/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --airslv-font: 'Manrope', sans-serif;
  --airslv-font-two: 'Kumbh Sans', sans-serif;
  --airslv-reey-font: "reeyregular";
  --airslv-white: #ffffff;
  --airslv-white-rgb: 255, 255, 255;
  --airslv-base: #801F2F;
  --airslv-base-rgb: 245, 84, 90;
  --airslv-black: #090808;
  --airslv-black-rgb: 9, 8, 8;
  --airslv-primary: #4D93CE;
  --airslv-primary-rgb: 0, 92, 255;

}

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

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

body {
  font-family: var(--airslv-font);
  color: var(--airslv-black);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--airslv-black);
  margin: 0;
}

p {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thm-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 18px 56px 20px;
  background-color: #801f2f;
  color: var(--airslv-white);
  font-family: var(--airslv-font);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--airslv-white);
  background-color: #B11925;
}

/*.thm-btn:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--airslv-base);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:before {
  width: 100%;
}

.thm-btn:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 229px;
  height: 2px;
  content: "";
  background-color: var(--airslv-base);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: -1;
}

.thm-btn:hover:after {
  width: 100%;
  height: 100%;
  bottom: 0px;
  right: 0px;
} */

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

.section-title__tagline {
  font-size: 16px;
  color: var(--airslv-base);
  font-weight: 500;
  font-family: var(--airslv-font);
  position: relative;
  display: inline-block;
  padding-left: 40px;
  line-height: 36px;
}

.section-title__tagline:before {
  position: absolute;
  height: 3px;
  width: 9px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  left: 21px;
}

.section-title__tagline:after {
  position: absolute;
  height: 3px;
  width: 21px;
  background-color: #537D99;
  content: "";
  top: 17px;
  left: 0px;
}

.section-title__title {
  margin: 0;
  color: var(--airslv-black);
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  margin-top: -5px;
}

.section-title__title span {
  position: relative;
  display: inline-block;
}

.section-title-two {
  position: relative;
  display: block;
  margin-top: -10px;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--airslv-black);
  font-weight: 500;
  z-index: 1;
}

.section-title-two__tagline:before {
  position: absolute;
  top: 0;
  left: -4px;
  height: 30px;
  width: 30px;
  content: "";
  background-color: #f2e6e3;
  z-index: -1;
}

.section-title-two__tagline:after {
  position: absolute;
  top: -2px;
  left: -3px;
  height: 6px;
  width: 6px;
  content: "";
  background-color: var(--airslv-base);
  z-index: -1;
}

.section-title-two__title {
  margin: 0;
  color: var(--airslv-black);
  font-size: 65px;
  line-height: 70px;
  font-weight: 700;
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

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

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

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

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


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  z-index: 99;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: #495E77;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.main-header__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--airslv-white);
  border-radius: 50%;
  color: var(--airslv-black);
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-social a:hover {
  color: var(--airslv-white);
  background-color: var(--airslv-base);
}

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

.main-header__top-social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-header__top-social a+a {
  margin-left: 10px;
}

.main-header__top-review {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-header__top-review p {
  font-size: 15px;
  color: var(--airslv-white);
  opacity: .80;
  margin-left: 5px;
}

.main-header__top-review i {
  font-size: 22px;
  color: #efce4a;
}

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

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

.main-header__top-time span {
  font-size: 16px;
  color: var(--airslv-white);
}

.main-header__top-time p {
  font-size: 15px;
  color: var(--airslv-white);
  opacity: .80;
  margin-left: 15px;
}

.main-header__btn-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header__btn {
  font-size: 15px;
  color: var(--airslv-white);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--airslv-primary);
  padding: 13px 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__btn:hover {
  background-color: var(--airslv-base);
  color: var(--airslv-white);
}

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

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

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

.main-header__middle-logo {
  position: relative;
  display: block;
}

.main-header__middle-right {
  position: relative;
  display: block;
}

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

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

.main-header__contact-list li+li {
  margin-left: 55px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background-color: #f7f3f1;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li:hover .icon {
  background-color: var(--airslv-base);
}

.main-header__contact-list li .icon:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  bottom: 4px;
  border: 1px solid #eee8e8;
  border-radius: 50%;
  z-index: -1;
}

.main-header__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li:hover .icon span {
  color: var(--airslv-white);
}

.main-header__contact-list li .content {
  margin-left: 7px;
}

.main-header__contact-list li .content h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 8px;
}

.main-header__contact-list li .content p {
  font-size: 16px;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 20px;
}

.main-header__contact-list li .content p a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .content p a:hover {
  color: var(--airslv-base);
}

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

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  padding-left: 40px;
  padding-right: 3px;
}

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

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

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

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

.main-menu__search-form {
  position: relative;
  display: block;
}

.main-menu__search-form input[type="search"] {
  position: relative;
  display: block;
  outline: none;
  background-color: transparent;
  color: #fff;
  opacity: .60;
  font-size: 16px;
  font-weight: 300;
  padding-left: 0;
  height: 38px;
  width: 100%;
  padding-right: 80px;
  border: none;
  border-bottom: 1px solid #dbd3db;
}

.main-menu__search-form button[type="submit"] {
  background-color: #f7f3f1;
  color: var(--airslv-black);
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 2px;
  width: 70px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu__search-form button[type="submit"]:hover {
  color: var(--airslv-white);
    background-color: var(--airslv-base);
}

/*.main-menu__search-form button[type="submit"]:before {
  content: "";
  position: absolute;
  top: 2px;
  right: -2px;
  bottom: -2px;
  width: 2px;
  background-color: var(--airslv-base);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.main-menu__search-form button[type="submit"]:hover:before {
  width: 100%;
}

.main-menu__search-form button[type="submit"]:after {
  position: absolute;
  background-color: var(--airslv-base);
  left: 2px;
  right: 0px;
  bottom: -2px;
  height: 2px;
  content: "";
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.main-menu__search-form button[type="submit"]:hover:after {
  height: 100%;
} */

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

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



@media (min-width: 1200px) {

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

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

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

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

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

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

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

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

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

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

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--airslv-black);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--airslv-base);
  color: var(--airslv-white);
}

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

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


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

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

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

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

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

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

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

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

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

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--airslv-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  z-index: 999;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: #19517D;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
}

.main-header-two__top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--airslv-white);
  border-radius: 50%;
  color: var(--airslv-black);
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-social a:hover {
  color: var(--airslv-white);
  background-color: var(--airslv-base);
}

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

.main-header-two__top-social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-header-two__top-social a+a {
  margin-left: 10px;
}

.main-header-two__review-mail-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__review {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-header-two__review p {
  font-size: 15px;
  color: var(--airslv-white);
  opacity: .80;
  margin-left: 5px;
}

.main-header-two__review span {
  font-size: 21px;
  color: #ffffff;
}

.main-header-two__mail-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-header-two__mail-box span {
  font-size: 20px;
  color: var(--airslv-white);
}

.main-header-two__mail-box p {
  font-size: 15px;
  color: var(--airslv-white);
  opacity: .80;
  margin-left: 10px;
}

.main-header-two__mail-box p a {
  color: var(--airslv-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__mail-box p a:hover {
  color: var(--airslv-base);
}

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

.main-header-two__top-time {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-time span {
  font-size: 16px;
  color: var(--airslv-white);
}

.main-header-two__top-time p {
  font-size: 15px;
  color: var(--airslv-white);
  opacity: .80;
  margin-left: 15px;
}

.main-header-two__btn-box {
  position: relative;
  display: block;
  margin-left: 15px;
}

.main-header-two__btn {
  font-size: 15px;
  color: var(--airslv-white);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--airslv-primary);
  padding: 13px 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__btn:hover {
  background-color: var(--airslv-base);
  color: var(--airslv-white);
}

.main-header-two__btn.special {
  font-size: 15px;
  color: var(--airslv-black);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  padding: 2px 35px;
  margin: 10px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__btn.special:hover {
  background-color: #801F2F;
  color: var(--airslv-white);
}

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

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

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

.main-menu-two__logo {
  position: relative;
  display: block;
  float: left;
  padding: 22.5px 0;
  margin-right: 130px;
}

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

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

.main-menu-two__call-search {
  position: relative;
  display: flex;
  align-items: center;
  /*padding: 17.5px 0;*/
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 50px;
  padding: 5px 0;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: var(--airslv-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu-two__call-icon:hover {
  background-color: var(--airslv-primary);
}

.main-menu-two__call-icon:before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border: 1px solid #eee8e8;
  border-radius: 50%;
}

.main-menu-two__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--airslv-white);
}

.main-menu-two__call-content {
  margin-left: 20px;
}

.main-menu-two__call-content span {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 600;
  position: relative;
  display: block;
  line-height: 25px;
}

.main-menu-two__call-content p {
  font-size: 16px;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25px;
}

.main-menu-two__call-content p a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-content p a:hover {
  color: var(--airslv-base);
}

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


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

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

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

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

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

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

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

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--airslv-base);
  border: 0;
  font-size: 20px;
  color: var(--airslv-white);
}

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

.search-popup__content .thm-btn:before,
.search-popup__content .thm-btn:after {
  display: none;
}

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

.main-slider .swiper-slide {
  position: relative;
  background-color: #262525;
}

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

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

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

.main-slider__top-rate {
  position: absolute;
  top: 206px;
  right: 357px;
}

.main-slider__top-rate-inner {
  height: 215px;
  width: 215px;
  border-radius: 50%;
  background-color: rgb(195, 77, 68);
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: color-dodge;
  z-index: 1;
}

.main-slider__top-rate-img {
  position: absolute;
  display: block;
  height: 160px;
  width: 160px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.main-slider__top-rate-img:before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 4px;
  left: 4px;
  content: "";
  border-radius: 50%;
  background-color: rgba(87, 10, 9, .70);
  z-index: 1;
}

.main-slider__top-rate-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--airslv-white);
}

.main-slider__shape-1 {
  position: absolute;
  bottom: -210px;
  left: 0;
}

.main-slider__shape-1 img {
  width: auto;
}

.main-slider__shape-2 {
  position: absolute;
  top: -268px;
  right: 0;
}

.main-slider__shape-2 img {
  width: auto;
}

.main-slider__shape-3 {
  position: absolute;
  bottom: -25px;
  right: -20px;
}

.main-slider__shape-3 img {
  width: auto;
}

.main-slider__shape-4 {
  border-radius: 50%;
  background-color: rgb(60, 59, 59);
  position: absolute;
  left: 212px;
  top: -105px;
  width: 507px;
  height: 507px;
  mix-blend-mode: overlay;
  transform: translateY(-300px);
  opacity: 0;
}

.swiper-slide-active .main-slider__shape-4 {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1000ms ease;
}

.main-slider__shape-5 {
  border-radius: 50%;
  background-color: rgb(245, 84, 90);
  position: absolute;
  left: 352px;
  top: 90px;
  width: 427px;
  height: 427px;
  mix-blend-mode: overlay;
  transform: translateY(-300px);
  opacity: 0;
}

.swiper-slide-active .main-slider__shape-5 {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1200ms;
}

.main-slider__top-rate-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2;
}

.main-slider__top-rate-content p {
  font-size: 18px;
  color: var(--airslv-white);
  font-weight: 500;
  line-height: 24px;
}

.main-slider__top-rate-content h3 {
  font-size: 34px;
  color: var(--airslv-white);
  font-weight: 600;
  font-family: var(--airslv-font-two);
  line-height: 30px;
  margin-top: 7px;
}

.main-slider__top-rate-content span {
  position: relative;
  display: block;
  font-size: 11px;
  color: var(--airslv-white);
  line-height: 15px;
}

.main-slider__content {
  position: relative;
  display: block;
  margin-right: -15px;
}

.main-slider__title {
  position: relative;
  font-size: 95px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 100px;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__point {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 37px;
  margin-bottom: 49px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

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

.main-slider__point li+li {
  margin-left: 35px;
}

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

.main-slider__point li .icon span {
  position: relative;
  display: inline-block;
  font-size: 75px;
  color: var(--airslv-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.main-slider__point li:hover .icon span {
  transform: scale(0.9);
  color: var(--airslv-base);
}

.main-slider__point li .content {
  margin-left: 15px;
}

.main-slider__point li .content p {
  font-size: 20px;
  color: var(--airslv-white);
  line-height: 30px;
}

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

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

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

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--airslv-white);
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 30px 0;
}

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

.main-slider__nav .swiper-button-prev {
  margin-right: 70px;
}

.main-slider__nav .swiper-button-prev:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  right: 0;
  top: 0;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

.main-slider__nav .swiper-button-next i {
  position: relative;
  display: inline-block;
}

.main-slider__nav .swiper-button-next:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  right: -34px;
  top: 0;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-next:hover:before,
.main-slider__nav .swiper-button-prev:hover:before {
  background-color: var(--airslv-primary);
  opacity: 1;
}

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

.main-slider-two .swiper-slide {
  position: relative;
  background-color: #2e2e2ed5;
}

.main-slider-two .container {
  position: relative;
 /* padding-top: 180px;*/
  padding-bottom: 210px;
  z-index: 30;
}

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

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

.main-slider-two-overly-one {
  position: absolute;
  top: -232px;
  left: -142px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  mix-blend-mode: overlay;
  width: 507px;
  height: 507px;
  transform: translateY(-400px);
  opacity: 0;
}

.swiper-slide-active .main-slider-two-overly-one {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1000ms ease;
}

.main-slider-tow-overly-two {
  position: absolute;
  top: -282px;
  left: -127px;
  border-radius: 50%;
  background-color: rgb(255, 65, 72);
  mix-blend-mode: overlay;
  width: 477px;
  height: 477px;
  transform: translateY(-500px);
  opacity: 0;
}

.swiper-slide-active .main-slider-tow-overly-two {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1000ms ease;
  transition-delay: 1300ms;
}

.main-slider-two__shape-1 {
  position: absolute;
  bottom: -250px;
  left: 0;
  z-index: 1;
}

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

.main-slider-two__shape-2 {
  position: absolute;
  top: -65px;
  right: 0;
  z-index: 1;
}

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

.main-slider-two__shape-3 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: 1;
}

.main-slider-two__shape-3 img {
  width: auto;
}

.main-slider-two__content {
  /*position: relative;
  display: block;*/
    
 position: relative;
  z-index: 2;
  padding-top: 100px; /* o usa flexbox per centrare verticalmente */
  color: #fff;
}

.main-slider-two__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding-left: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__sub-title:before {
  position: absolute;
  height: 3px;
  width: 9px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  left: 21px;
}

.main-slider-two__sub-title:after {
  position: absolute;
  height: 3px;
  width: 21px;
  background-color: #537D99;
  content: "";
  top: 17px;
  left: 0px;
}

.main-slider-two__title {
  position: relative;
  font-size: 90px;
  color: #fff;
  font-weight: 800;
  line-height: 95px;
  margin-top: 18px;
  margin-bottom: 39px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__text {
  font-size: 20px;
  color: #fff;
  padding-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

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

.main-slider-two__btn {
  background-color: #801F2F;
}

.main-slider-two__btn:before {
  left: 0;
}

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

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

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--airslv-white);
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-two__nav .swiper-button-prev:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  left: -20px;
  top: 0;
  transition: all 500ms ease;
}

.main-slider-two__nav .swiper-button-next:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  right: -20px;
  top: 0;
  transition: all 500ms ease;
}

.main-slider-two__nav .swiper-button-next:hover:before,
.main-slider-two__nav .swiper-button-prev:hover:before {
  background-color: var(--airslv-primary);
  opacity: 1;
}

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

.main-slider-two__nav .swiper-button-prev {
  margin-bottom: 65px;
  left: 42px;
}

.main-slider-two__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

.main-slider-two__nav .swiper-button-next i {
  position: relative;
  display: inline-block;
}


#main-slider-pagination {
  z-index: 10;
  bottom: 46px;
  left: 50%;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  -webkit-transform: translate(-50%, calc(-50% + 95px));
  transform: translate(-50%, calc(0% + 0px));
  counter-reset: count;
  line-height: 0;
  text-align: left;
  margin: 0 auto;
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 30px;
  border-radius: 0%;
  opacity: 1;
  background-color: transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  height: 45px;
  width: 40px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  background-color: rgba(var(--airslv-white-rgb), .10);
  counter-increment: count;
  content: ""counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 31px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0px 0px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
}



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

.main-slider-three .swiper-slide {
  position: relative;
  background-color: #370002;
}

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

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

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

.main-slider-three__shape-1 {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 1;
}

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

.main-slider-three__shape-2 {
  position: absolute;
  top: -168px;
  right: 50px;
  z-index: 1;
}

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

.main-slider-three__shape-3 {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 1;
}

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

.main-slider-three__shape-4 {
  position: absolute;
  left: -332px;
  bottom: -224px;
  border-radius: 50%;
  background-color: rgb(255, 65, 72);
  width: 640px;
  height: 640px;
  mix-blend-mode: overlay;
}

.main-slider-three__shape-5 {
  position: absolute;
  bottom: -500px;
  left: 0;
  border-radius: 50%;
  background-color: rgb(255, 65, 72);
  width: 640px;
  height: 640px;
  mix-blend-mode: overlay;
}

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

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

.main-slider-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 15px;
  color: var(--airslv-white);
  background-color: var(--airslv-primary);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-three__video-icon:hover {
  background-color: var(--airslv-white);
  color: var(--airslv-base);
}

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

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

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

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

.main-slider-three__sub-title-box:before {
  position: absolute;
  height: 3px;
  width: 9px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  left: -20px;
}

.main-slider-three__sub-title-box:after {
  position: absolute;
  height: 3px;
  width: 21px;
  background-color: var(--airslv-primary);
  content: "";
  top: 17px;
  left: -41px;
}

.main-slider-three__sub-title-inner {
  position: relative;
  display: inline-block;
}

.main-slider-three__sub-title-inner:before {
  position: absolute;
  height: 3px;
  width: 9px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  right: -40px;
}

.main-slider-three__sub-title-inner:after {
  position: absolute;
  height: 3px;
  width: 21px;
  background-color: var(--airslv-primary);
  content: "";
  top: 17px;
  right: -31px;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-white);
}

.main-slider-three__title {
  position: relative;
  font-size: 95px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 100px;
  margin-top: 23px;
  margin-bottom: 59px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

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

.main-slider-three__btn {
  background-color: var(--airslv-primary);
}

.main-slider-three__btn:before {
  left: 0;
}

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


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

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--airslv-white);
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-prev:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  left: -20px;
  top: 0;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  background-color: rgba(160, 155, 155, .20);
  border-radius: 50%;
  right: -20px;
  top: 0;
  transition: all 500ms ease;
}

.main-slider-three__nav.swiper-button-next:hover:before,
.main-slider-three__nav .swiper-button-prev:hover:before {
  background-color: var(--airslv-primary);
  opacity: 1;
}

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

.main-slider-three__nav .swiper-button-prev {
  margin-bottom: 65px;
  left: 42px;
}

.main-slider-three__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

.main-slider-three__nav .swiper-button-next i {
  position: relative;
  display: inline-block;
}




/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.why-choose-one__left {
  position: relative;
  display: block;
  margin-right: 40px;
}

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

.why-choose-one__shape-1 {
  position: absolute;
  top: 35px;
  right: 10px;
}

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

.why-choose-one__shape-2 {
  position: absolute;
  bottom: 30px;
  left: 246px;
}

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

.why-choose-one__shape-3 {
  position: absolute;
  bottom: -3px;
  left: -242px;
}

.why-choose-one__shape-3 img {
  width: auto;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.why-choose-one__img-list-one {
  position: relative;
  display: block;
  float: left;
}

.why-choose-one__img-list-one li {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.why-choose-one__img-list-one li:nth-child(2) {
  margin-left: 21px;
}

.why-choose-one__img-list-one li>img {
  width: auto;
}

.why-choose-one__img-list-one--two {
  margin-left: 30px;
  margin-top: 70px;
}

.why-choose-one__img-list-one--two li:nth-child(2) {
  margin-left: 0px;
}

.why-choose-one__text {
  color: var(--airslv-black);
  opacity: .80;
}

.why-choose-one .section-title {
  margin-bottom: 25px;
}

.why-choose-one__points {
  position: relative;
  display: block;
  margin-top: 35px;
  margin-bottom: 40px;
}

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

.why-choose-one__points li+li {
  margin-top: 30px;
}

.why-choose-one__icon {
  width: 94px;
  height: 98px;
  background-color: var(--airslv-base);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}

.why-choose-one__icon span {
  font-size: 67px;
  color: var(--airslv-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.why-choose-one__points li:hover .why-choose-one__icon span {
  transform: scale(.9);
}

.why-choose-one__points .icon-two {
  background-color: var(--airslv-primary);
}

.why-choose-one__points .icon-two span {
  font-size: 58px;
}

.why-choose-one__title {
  font-size: 26px;
  font-weight: 500;
  color: var(--airslv-black);
  line-height: 40px;
  margin-left: 20px;
}

.why-choose-one__user {
  position: relative;
  display: flex;
  padding-top: 33px;
  border-top: 1px solid #dfdcdb;
  margin-right: 13px;
}

.why-choose-one__user-left {
  position: relative;
  display: block;
  margin-right: 25px;
}

.why-choose-one__user-name {
  font-size: 22px;
  font-weight: 600;
}

.why-choose-one__user-founder {
  font-size: 14px;
  font-weight: 400;
  color: #232323;
  opacity: .80;
  line-height: 17px;
}

.why-choose-one__user-sign-img {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-left: 18px;
}

.why-choose-one__user-sign-img img {
  width: 100%;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-right: -7px;
}

.why-choose-one__user-right {
  position: relative;
  display: block;
  align-items: center;
  margin-left: 30px;
  top: -6px;
}

.why-choose-one__user-right:before {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  height: 95px;
  width: 1px;
  background-color: #e7e6e5;
  content: "";
}

.why-choose-one__user-right li {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__user-right .user-icon {
  position: relative;
  display: block;
}

.why-choose-one__user-right .user-icon i {
  font-size: 11px;
  color: var(--airslv-base);
}

.why-choose-one__user-right .user-text {
  position: relative;
  display: block;
  margin-left: 10px;
}

.why-choose-one__user-right .user-text p {
  font-size: 18px;
  font-weight: 600;
  color: var(--airslv-black);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  background-color: #faf5f5;
  padding: 120px 0 90px;
  z-index: 1;
}

.counter-one-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: overlay;
  z-index: -1;
}

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

.counter-one__single:before {
  position: absolute;
  right: -2px;
  left: 2px;
  top: -2px;
  height: 2px;
  background-color: var(--airslv-primary);
  content: "";
}

.counter-one__single:after {
  position: absolute;
  bottom: 2px;
  right: -2px;
  top: 0;
  width: 2px;
  background-color: var(--airslv-primary);
  content: "";
}

.counter-one-inner {
  position: relative;
  display: block;
  background-color: #f5f4f4;
  padding-left: 40px;
  padding-bottom: 20px;
  padding-top: 20px;
}

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

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: var(--airslv-black);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  color: var(--airslv-base);
  transform: scale(.9);
}

.counter-one-inner__count-box {
  position: relative;
  display: flex;
  align-items: center;
 /* margin-top: 32px;*/
}

.counter-one-inner__count-box h3 {
  font-size: 65px;
  color: var(--airslv-base);
  font-weight: 800;
  line-height: 54px !important;
  font-family: var(--airslv-font) !important;
}

.counter-one-inner__plus {
  font-size: 25px;
  color: var(--airslv-base);
  font-weight: 800;
  line-height: 40px;
  font-family: var(--airslv-font);
  position: relative;
  bottom: -14px;
}

.counter-one-inner__text {
  font-weight: 500;
}

.counter-one-inner .plus-two {
  font-size: 65px;
  color: var(--airslv-base);
  font-weight: 800;
  line-height: 54px !important;
  font-family: var(--airslv-font) !important;
  top: -1px;
  left: -3px;
}

.counter-one__single-two:before {
  left: -2px;
  right: 2px;
}

.counter-one__single-two:after {
  position: absolute;
  bottom: 2px;
  left: -2px;
  top: 0;
  width: 2px;
  background-color: var(--airslv-primary);
  content: "";
}

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

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

.services-one .row {
  --bs-gutter-x: 20px;
}

.services-one .section-title {
  margin-bottom: 53px;
}

.services-one .section-title__title {
  color: var(--airslv-white);
}

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

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

.services-one__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--airslv-black-rgb), .30);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.services-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

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

.services-one__icon {
  width: 90px;
  height: 94px;
  left: 0;
  bottom: 0;
  background-color: var(--airslv-base);
  border-top-right-radius: 8px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.services-one__single:hover .services-one__icon {
  background-color: var(--airslv-primary);
}

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

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

.services-one__content {
  position: relative;
  display: block;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
}

.services-one__content-inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 0 12px;
  overflow: hidden;
}

.services-one__shape-1 {
  position: absolute;
  bottom: -16px;
  left: -15px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: var(--airslv-primary);
  z-index: 1;
}

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

.services-one__btn-box a {
  font-size: 16px;
  font-weight: 500;
  color: var(--airslv-black);
  line-height: 55px;
  padding: 29px 22px 29px;
  background-color: #e8ecf6;
  border-top-right-radius: 8px;
  transition: all 900ms ease;
}

.services-one__btn-box:hover a {
  color: var(--airslv-base);
}

.services-one__btn-box i {
  font-size: 14px;
  color: var(--airslv-black);
  margin-left: 9px;
  transition: all 900ms ease;
}

.services-one__btn-box:hover i {
  color: var(--airslv-base);
}

.services-one__title {
  position: relative;
  display: block;
  margin-left: 25px;
}

.services-one__title a {
  font-size: 22px;
  font-weight: 700;
  color: var(--airslv-black);
  transition: all 900ms ease;
}

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

.services-one__bottom {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 35px;
}

.services-one__bottom-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  color: var(--airslv-white);
  padding-bottom: 35px;
}

/*--------------------------------------------------------------
# Expect One
--------------------------------------------------------------*/
.expect-one {
  position: relative;
  display: block;
  z-index: 1;
  margin-top: 0;
  padding-bottom: 0;
}

.expect-one__wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.expect-one__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  background-color: #19517D;
  z-index: 1;
}

.expect-one__left:before {
  position: absolute;
  top: 0;
  bottom: 110px;
  right: 0;
  width: 2px;
  background-color: var(--airslv-base);
  content: "";
}

.expect-one__shape-1 {
  position: absolute;
  top: 155px;
  left: 0;
  z-index: -1;
}

.expect-one__shape-1 img {
  width: auto;
}

.expect-one__content-box {
  position: relative;
  display: block;
  max-width: 495px;
  width: 100%;
  float: right;
  margin-right: 58px;
  margin-top: 105px;
  margin-bottom: 107px;
}

.expect-one__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  color: var(--airslv-white);
}

.expect-one__subtitle {
  font-size: 37px;
  font-weight: 600;
  color: var(--airslv-base);
  line-height: 50px;
  margin-top: 18px;
  margin-bottom: 62px;
}

.expect-one__points {
  position: relative;
  display: block;
}

.expect-one__points li {
  position: relative;
  display: flex;
}

.expect-one__points li+li {
  margin-top: 42px;
}

.expect-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 67px;
  color: #fff2f2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-one__points li:hover .expect-one__icon span {
  transform: scale(0.9);
}

.expect-one__content {
  position: relative;
  display: block;
  margin-left: 34px;
}

.expect-one__content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #fdfdfd;
}

.expect-one__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
  padding-top: 17px;
}

.expect-one__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  min-height: 753px;
}

.expect-one__shape-two {
  position: absolute;
  top: -110px;
  right: -278px;
  width: 394px;
  height: 394px;
  border-radius: 50%;
  background-color: #d0474c;
  z-index: 1;
  mix-blend-mode: color;
}

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

.expect-one__video-link {
  position: relative;
  display: inline-block;
  top: 288px;
  left: 257px;
}

.expect-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  line-height: 135px;
  text-align: center;
  font-size: 40px;
  color: var(--airslv-white);
  background-color: var(--airslv-primary);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

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

.expect-one__video-icon:before {
  position: absolute;
  top: -22px;
  left: -22px;
  right: -22px;
  bottom: -22px;
  content: "";
  border: 2px solid rgba(var(--airslv-white-rgb), .30);
  border-radius: 50%;
  z-index: 1;
}

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

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

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

.expect-one__quality {
  position: absolute;
  display: flex;
  align-items: center;
  background-color: #537D99;
  padding: 32px 24px 20px;
  max-width: 580px;
  width: 100%;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  bottom: 0;
  left: -40px;
  z-index: 1;
}

.expect-one__quality-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #ff656b;
  border-radius: 50%;
}

.expect-one__quality-icon span {
  font-size: 49px;
  color: var(--airslv-white);
}

.expect-one__quality-text {
  position: relative;
  display: block;
  margin-left: 23px;
}

.expect-one__quality-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--airslv-white);
  opacity: .70;
  line-height: 30px;
}

.expect-one__quality-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--airslv-white);
}

/*--------------------------------------------------------------
# How It Work
--------------------------------------------------------------*/
.how-it-work {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.how-it-work .section-title {
  margin-bottom: 53px;
}

.how-it-work__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.how-it-work__inner {
  position: relative;
  display: block;
}

.how-it-work__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 117px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  background-color: #537D99;
  overflow: hidden;
  transition: all 400ms linear;
  z-index: 1;
}

.how-it-work__single:hover .how-it-work__icon {
  border: 1px solid #801F2F;
}

.how-it-work__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: #801F2F;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.how-it-work__single:hover .how-it-work__icon:before {
  transform: scaleX(1);
}

.how-it-work__icon i {
  font-size: 52px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.how-it-work__single:hover .how-it-work__icon i {
  transform: scale(0.9);
  color: var(--airslv-white);
}

.how-it-work__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: #f5f5f5;
  padding: 60px 25px 39px;
  border: 2px;
  margin-top: -60px;
}

.how-it-work__content::before {
  position: absolute;
  right: 0px;
  height: 95px;
  width: 2px;
  bottom: 0;
  background-color: #537D99;
  content: "";
  z-index: 1;
}

.how-it-work__content::after {
  position: absolute;
  right: 0px;
  left: 170px;
  height: 2px;
  bottom: 0;
  background-color: #537D99;
  content: "";
  z-index: 1;
}

.how-it-work__step {
  font-size: 16px;
  font-weight: 700;
  line-height: 53px;
  color: var(--airslv-base);
}

.how-it-work__title a {
  font-size: 22px;
  font-weight: 700;
  color: var(--airslv-black);
  line-height: 30px;
  transition: all 500ms linear;
}

.how-it-work__single:hover .how-it-work__title a {
  color: var(--airslv-base);
}

.how-it-work__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 32px;
}

.step-two:before {
  position: absolute;
  left: 0px;
  height: 95px;
  width: 2px;
  bottom: 0;
  background-color: #f55c62;
  content: "";
  z-index: 1;
}

.step-two:after {
  position: absolute;
  left: 0px;
  right: 170px;
  height: 2px;
  bottom: 0;
  background-color: #f55c62;
  content: "";
  z-index: 1;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
  position: relative;
  display: block;
  background-color: #d0cece;
  padding: 80px 0 80px;
  z-index: 1;
}

.project-one-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: -1;
}

.projeci-one__top {
  position: relative;
  display: block;
}

.project-one__left {
  position: relative;
  display: block;
  margin-right: 37px;
}

.project-one__left .section-title {
  margin-bottom: 52px;
}

.project-one__right {
  position: relative;
  display: block;
  margin-left: 15px;
  margin-right: 4px;
}

.project-one__right-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: #433838;
  opacity: .80;
}

.all-project {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.all-project__title {
  position: relative;
  display: block;
  margin-right: 12px;
}

.all-project__title:before {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #a2a1a1;
  content: "";
  transition: all 500ms ease;
}

.all-project__title:hover:before {
  background-color: var(--airslv-base);
}

.all-project__title a {
  font-size: 18px;
  font-weight: 600;
  line-height: 55px;
  color: var(--airslv-black);
  transition: all 500ms ease;
}

.all-project__title a:hover {
  color: #B11925;
}

.all-project__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #801F2F;
  border-radius: 50%;
  transition: all 500ms ease;
}

.all-project__arrow a:hover {
  background-color: #B11925;
}

.all-project__arrow i {
  font-size: 16px;
  color: var(--airslv-white);
}

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

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

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

.project-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), 0.30);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: 1;
}

.project-one__single:hover .project-one__img:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.project-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.project-one__single:hover .project-one__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.project-one__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--airslv-white);
  padding: 20px 12px 20px 12px;
  z-index: 1;
}

.project-one__content::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #537D99;
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  z-index: -1;
}

.project-one__single:hover .project-one__content::after {
  opacity: 0;

}

.project-one__content-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-image: -moz-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  background-image: -webkit-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  background-image: -ms-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.project-one__single:hover .project-one__content-border {
  transform: scale(1, 1);
  transform-origin: right center;
}

.project-one__content:before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: -8px;
  width: 53px;
  background-color: #e5e1e1;
  content: "";
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.project-one__single:hover .project-one__content:before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: -8px;
  width: 75px;
  background-color: #537D99;
  content: "";
}

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

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

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

.project-one__content-left {
  position: relative;
  display: block;
}

.project-one__title {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: var(--airslv-base);
}

.project-one__subtitle a {
  font-size: 20px;
  font-weight: 700;
  line-height: 16px;
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-one__subtitle a:hover {
  color: var(--airslv-base);
}

.project-one__content-right {
  position: relative;
  display: block;
  z-index: 2;
}

.project-one__content-right a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 3px;
  background-color: var(--airslv-base);
  font-size: 15px;
  color: var(--airslv-white);
}

.project-one__carousel.owl-carousel .owl-dots, .service-details__slide-carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -66px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot, .service-details__slide-carousel.owl-carousel .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px 10px;
  background-color: var(--airslv-base);
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot:before, .service-details__slide-carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  content: "";
  border: 1px solid #dbd8d8;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.project-one__carousel.owl-carousel .owl-dot.active:before, .service-details__slide-carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.project-one__carousel.owl-carousel .owl-dot:focus, .service-details__slide-carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span, .service-details__slide-carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  display: block;
  padding: 120px 0 186px;
}

.testimonials-one__top {
  position: relative;
  display: block;
}

.testimonials-one__top .section-title {
  margin-bottom: 53px;
}

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

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

.testimonials-one__inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 35px 0px rgba(195, 190, 190, 0.35);
  padding-left: 40px;
  padding-right: 32px;
  padding-top: 42px;
  padding-bottom: 47px;
  border-left: 1px solid var(--airslv-base);
}

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

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

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

.testimonials-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -66px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px 10px;
  background-color: var(--airslv-base);
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  content: "";
  border: 1px solid #dbd8d8;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonials-one__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.testimonials-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonials-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.testimonials-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-one__client-img {
  position: relative;
  display: block;
  max-width: 78px;
  width: 100%;
}

.testimonials-one__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonials-one__client-icon {
  position: absolute;
  bottom: 20px;
  left: -18px;
}

.testimonials-one__client-icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background-color: var(--airslv-primary);
  font-size: 16px;
  color: var(--airslv-white);
  border-radius: 50%;
}

.testimonials-one__client-content {
  position: relative;
  display: block;
  margin-left: 12px;
}

.testimonials-one__client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 31px;
}

.testimonials-one__client-sub-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  color: var(--airslv-black);
  opacity: .80;
}

.testimonials-one__text {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--airslv-font-two);
  color: var(--airslv-black);
  opacity: .80;
  line-height: 40px;
  border-top: 1px solid #dbd3d2;
  padding-top: 20px;
  margin-top: 35px;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  background-color: #1b1b1b;
  padding: 113px 0 198px;
  z-index: 1;
}

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

.team-one__top {
  position: relative;
  display: block;
}

.team-one__left {
  position: relative;
  display: block;
  margin-right: 37px;
}

.team-one .section-title__title {
  color: var(--airslv-white);
}

.team-one__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 4px;
}

.team-one__right-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--airslv-white);
  opacity: .80;
}

.all-Member {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.all-Member__btn {
  position: relative;
  display: block;
  margin-right: 12px;
}

.all-Member__btn:before {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #a7a7a7;
  content: "";
  transition: all 500ms ease;
}

.all-Member__btn:hover:before {
  background-color: var(--airslv-base);
}

.all-Member__btn a {
  font-size: 18px;
  font-weight: 600;
  line-height: 55px;
  color: var(--airslv-white);
  transition: all 500ms ease;
}

.all-Member__btn a:hover {
  color: var(--airslv-base);
}

.all-Member__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--airslv-primary);
  border-radius: 50%;
  transition: all 500ms ease;
}

.all-Member__arrow a:hover {
  background-color: var(--airslv-base);
}

.all-Member__arrow i {
  font-size: 16px;
  color: var(--airslv-white);
}

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

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

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

.team-one__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:after {
  transform: translateY(0);
  width: 100%;
}

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

.team-one__content {
  position: relative;
  display: flex;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  z-index: 2;
}

.team-one__content-left {
  position: relative;
  display: block;
  background-color: #e9ecf0;
  padding: 30px 25px 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__content-left {
  background-color: var(--airslv-primary);
}

.team-one__social-box {
  position: relative;
  display: inline-block;
}

.team-one__social-box li+li {
  margin-top: 8px;
}

.team-one__social-box li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--airslv-white);
  border-radius: 50%;
  font-size: 15px;
  color: #433838;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social-box li a:hover {
  color: var(--airslv-white);
  background-color: transparent;
}

.team-one__social-box li a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--airslv-base);
  border-radius: 50%;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.team-one__social-box li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.team-one__content-right {
  position: relative;
  display: block;
  padding: 39px 26px 32px;
}

.team-one__shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__shape-one {
  opacity: 1;
}

.team-one__shape-one img {
  width: 100%;
}

.team-one__shape-two {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__shape-two {
  opacity: 0;
}

.team-one__shape-two img {
  width: 100%;
}

.team-one__title-box {
  position: relative;
  display: block;
  top: -6px;
}

.team-one__sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 13px;
  color: var(--airslv-base);
}

.team-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 37px;
}

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

.team-one__title a:hover {
  color: var(--airslv-base);
}

.team-one__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 18px;
  font-family: var(--airslv-font-two);
}

/*--------------------------------------------------------------
# Support One
--------------------------------------------------------------*/
.support-one {
  position: relative;
  display: block;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.support-one .row {
  --bs-gutter-x: 0;
}

.support-one__left {
  position: relative;
  display: block;
  /*background-color: #35080a;*/
  padding: 62px 80px 72px;
  border-radius: 2px;
  z-index: 1;
}

.support-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  border-radius: 2px;
  z-index: -1;
}

.support-one__shape-one {
  position: absolute;
  top: 40px;
  left: 27px;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #f81012;
  mix-blend-mode: overlay;
  z-index: -1;
}

.support-one__shape-two {
  position: absolute;
  bottom: 67px;
  right: 112px;
  content: "";
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background-color: #b53a30;
  mix-blend-mode: color-dodge;
  z-index: -1;
}

.support-one__left-content {
  position: relative;
  display: block;
}

.support-one__left-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--airslv-white);
  line-height: 49px;
}

.support-one__left-subtitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--airslv-white);
}

.support-one__right {
  position: relative;
  display: block;
  z-index: 1;
}

.support-one__img {
  position: absolute;
  bottom: 14px;
  left: -111px;
  z-index: 2;
}

.support-one__img img {
  width: 100%;
  border-radius: 50%;
  border: 8px solid #1e6dfb;
}

.support-one__right-content {
  position: relative;
  display: block;
  background-color: var(--airslv-primary);
  padding-top: 60px;
  padding-bottom: 48px;
  padding-left: 142px;
  padding-right: 121px;
  border-radius: 2px;
  z-index: 1;
  overflow: hidden;
}

.support-one__shape-three {
  position: absolute;
  top: 36px;
  left: 112px;
  width: 45px;
  height: 197px;
  background-color: var(--airslv-white);
  border-radius: 16px;
  z-index: -1;
}

.support-one__shape-three:before {
  position: absolute;
  top: -1px;
  left: 4px;
  width: 53px;
  height: 200px;
  background-color: #1e6dfb;
  border-radius: 16px;
  content: "";
}

.support-one__shape-four {
  position: absolute;
  bottom: -51px;
  right: -57px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background-color: #1e6dfb;
  z-index: 2;
}

.support-one__right-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 33px;
  color: var(--airslv-white);
}

.support-one__call {
  position: relative;
  display: flex;
  margin-top: 12px;
  margin-bottom: 16px;
}

.support-one__call-icon {
  position: relative;
  display: block;
  top: 4px;
  margin-right: 10px;
}

.support-one__call-icon span {
  font-size: 25px;
  color: var(--airslv-white);
}

.support-one__call-number {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}

.support-one__call-number a {
  color: var(--airslv-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.support-one__call-number a:hover {
  color: var(--airslv-black);
}

.support-one__right-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--airslv-white);
  opacity: .80;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 252px 0 90px;
  margin-top: -132px;
}

.blog-one .section-title {
  margin-bottom: 53px;
}

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

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

.blog-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.blog-one__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

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

.blog-one__content {
  position: relative;
  display: block;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
}

.blog-one__date-and-comment-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.blog-one__date {
  height: 69px;
  width: 54px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--airslv-base);
  margin-right: 13px;
  border-radius: 2px;
  margin-top: -34px;
  z-index: 2;
}

.blog-one__date span {
  font-size: 26px;
  line-height: 25.6px;
  font-weight: 500;
  color: var(--airslv-white);
}

.blog-one__date p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18.6px;
  color: var(--airslv-white);
  margin-top: 2px;
}

.blog-one__comment-box {
  position: relative;
  display: flex;
  align-items: center;
  top: 4px;
}

.blog-one__comment-box .icon {
  position: relative;
  display: block;
  top: 6px;
  padding-right: 3px;
}

.blog-one__comment-box .icon span {
  font-size: 29px;
  color: #82818a;
}

.blog-one__comment-box p {
  font-size: 14px;
  font-weight: 400;
  color: #433838;
  opacity: .88;
  line-height: 25.6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__comment-box p:hover {
  color: var(--airslv-base);
}

.blog-one__title-box {
  position: relative;
  display: block;
  padding: 17px 20px 24px;
}

.blog-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
}

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

.blog-one__title a:hover {
  color: var(--airslv-base);
}

.blog-one__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #13121d;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 20px;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #13121d;
  padding: 0 17px 0;
}

.blog-one__tag p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24.6px;
  color: var(--airslv-white);
}

.blog-one__meta-box-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.blog-one__meta .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__meta .icon a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta a:hover {
  color: var(--airslv-base);
}

.blog-one__meta .icon a i {
  font-size: 22px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
}

.blog-one__meta-btn {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-one__meta-btn a {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: var(--airslv-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 20px 18px 24px;
  background-color: #f1f3f7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta-btn a:hover {
  background-color: #1e6dfb;
  color: var(--airslv-white);
}

.blog-one__meta-btn a i {
  font-size: 12px;
  color: var(--airslv-black);
  margin-left: 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta-btn a:hover i {
  color: var(--airslv-white);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  padding-top: 80px;
  background-color: #495E77;
  z-index: 1;
}

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

.site-footer__top {
  position: relative;
  display: block;
  padding-bottom: 50px;
}

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

.footer-widget__logo-box {
  position: relative;
  display: flex;
  align-items: center;
}

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

.footer-widget__logo a {
  position: relative;
  display: block;
}

.footer-widget__logo a img {
  width: 100%;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-top: 28px;
  margin-bottom: 38px;
}

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

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

.footer-widget__contact .icon {
  position: relative;
  display: block;
  top: 11px;
}

.footer-widget__contact .icon i {
  font-size: 26px;
  color: #fff;
}

.footer-widget__contact .icon-two i {
  color: var(--airslv-white);
}

.footer-widget__contact .text {
  position: relative;
  display: block;
  margin-left: 12px;
}

.footer-widget__contact .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.footer-widget__contact .text p a {
  position: relative;
  display: block;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact .text p a:hover {
  color: #E0211F;
}

.footer-widget__social-box {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__social-box li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__social-box li+li {
  margin-left: 10px;
}

.footer-widget__social-box a {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  border-radius: 50px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  z-index: 1;
  ;
}

.footer-widget__social-box a:hover {
  color: var(--airslv-white);
  background-color: var(--airslv-base);
}

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

.footer-widget__social-box a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.footer-widget__latest-post {
  position: relative;
  display: block;
  margin-right: 5px;
  margin-left: 39px;
}

.footer-widget__tag {
  font-size: 22px;
  font-weight: 700;
  color: var(--airslv-white);
  margin-bottom: 34px;
  text-transform: uppercase;
}

.footer-widget__content {
  position: relative;
  display: block;
  margin-top: -2px;
}

.footer-widget__content li {
  position: relative;
  display: block;
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 16px;
  padding-bottom: 20px;
}

.footer-widget__content li:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.footer-widget__content li span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #888888;
  font-weight: 400;
  line-height: 14px;
}

.footer-widget__content li p {
  font-size: 16px;
  font-weight: 600;
  color: var(--airslv-white);
  line-height: 32px;
}

.footer-widget__content li p a {
  color: var(--airslv-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__content li p a:hover {
  color: var(--airslv-base);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-right: -3px;
  margin-left: 45px;
}

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

.footer-widget__services-list li+li {
  margin-top: 5px;
}

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

.footer-widget__services-list li a:hover {
  color: #E0211F;
}

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

.footer-widget__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  padding-top: 2px;
}

.footer-widget__subscribe-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.footer-widget__subscribe-input-box {
  position: relative;
  display: block;
  background-color: transparent;
  border: 1px solid #fff;
}

.footer-widget__subscribe-input-box input[type="email"], 
.footer-widget__subscribe-input-box input[type="text"] {
  height: 45px;
  width: 100%;
  background-color: transparent;
  outline: none;
  font-size: 16px;
  color: #fff;
  border: none;
  padding-left: 20px;
}

.footer-widget__subscribe-btn {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 58px;
  height: 59px;
  border: none;
  background-color: var(--airslv-base);
  border-radius: 3px;
  font-size: 16px;
  color: var(--airslv-white);
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__subscribe-btn:hover {
  background-color: var(--airslv-white);
  color: var(--airslv-base);
}

.footer-widget__help {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.footer-widget__help .icon span {
  font-size: 27px;
  color: var(--airslv-white);
  width: 49px;
  height: 49px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--airslv-primary);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

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

.footer-widget__help-text p {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--airslv-font-two);
}

.footer-widget__help-text p a {
  color: var(--airslv-white);
  background-color: #252525;
  padding-left: 18px;
  padding-top: 12px;
  padding-bottom: 14px;
  padding-right: 36px;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__help-text p a:hover {
  color: var(--airslv-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
  padding: 38px 0 36px;
  background-color: #171616;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
}

.site-footer__bottom-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.why-choose-two .section-title {
  margin-bottom: 44px;
}

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

.why-choose-two__left-text-one {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  color: var(--airslv-black);
}

.why-choose-two__left-text-two {
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 26px;
  margin-bottom: 50px;
}

.why-choose-two .thm-btn {
  background-color: #801F2F;
  color: var(--airslv-white);
}

.why-choose-two .thm-btn:hover {
  color: var(--airslv-white);
  background-color: #B11925;
}

/*.why-choose-two .thm-btn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--airslv-base);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.why-choose-two .thm-btn:hover:before {
  width: 100%;
}*/

.why-choose-two__right {
  position: relative;
  display: block;
  margin-left: -45px;
  margin-right: 20px;
  margin-top: 10px;
}

.why-choose-two__content-box {
  position: relative;
  display: flex;
}

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

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

.why-choose-two__right-img img {
  width: auto;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.why-choose-two__experience {
  border-bottom-left-radius: 24px;
  position: absolute;
  left: -28px;
  bottom: -51px;
  background-color: #537D99;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 31px;
  padding-bottom: 33px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.why-choose-two__experience-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--airslv-white);
  line-height: 38px;
  margin-bottom: 15px;
}

.why-choose-two__experience-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--airslv-white);
  opacity: .80;
  line-height: 32px;
}

.why-choose-two__points {
  position: relative;
  display: block;
  margin-left: 59px;
  margin-top: 42px;
}

.why-choose-two__points li+li {
  margin-top: 50px;
}

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

.why-choose-two__right-icon span {
  font-size: 62px;
  color: var(--airslv-black);
}

.why-choose-two__right-small-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--airslv-base);
  border-radius: 50%;
  top: 19px;
  left: 49px;
  color: var(--airslv-white);
}

.why-choose-two__right-small-icon-two {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--airslv-base);
  border-radius: 50%;
  top: 35px;
  left: 39px;
  color: var(--airslv-white);
}

.why-choose-two__right-small-icon i {
  font-size: 22px;
}

.why-choose-two__right-text-box {
  position: relative;
  display: block;
  margin-top: 12px;
}

.why-choose-two__right-tag {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  color: var(--airslv-black);
}

.why-choose-two__right-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 31px;
  color: #232323;
  margin-top: 7px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  background-color: #d0cece;
  z-index: 1;
}

.services-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: -1;
}

.services-two .container {
  max-width: 1590px;
}

.services-two .row {
  --bs-gutter-x: 20px;
}

.services-two .section-title {
  margin-bottom: 53px;
}

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

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

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

.services-two__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--airslv-black-rgb), .30);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.services-two__single:hover .services-two__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.services-two__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.services-two__single:hover .services-two__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.services-two__content-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  z-index: 2;
}

.services-two__icon {
  position: relative;
  display: flex;
  width: 80px;
  height: 94px;
  background-color: #537D99;
  border-top-right-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-top: -14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon {
  background-color: #801F2F;
}

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

.services-two__single:hover .services-two__icon span {
  transform: scale(0.9);
}

.services-two__content {
  position: relative;
  display: flex;
  align-items: center;
}

.services-two__title {
  position: relative;
  display: block;
  margin-left: 18px;
}

.services-two__title h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.services-two__title h3 a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__title h3 a:hover {
  color: var(--airslv-base);
}

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

.services-two__arrow {
  position: relative;
  display: block;
  padding-top: 16px;
  padding-bottom: 14px;
  padding-left: 24px;
  padding-right: 30px;
  background-color: #e8ecf6;
  border-top-left-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__arrow {
  background-color: var(--airslv-base);
}

.services-two__arrow i {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__arrow i {
  color: var(--airslv-white);
}

.services-two__shape-1 {
  position: absolute;
  bottom: -24px;
  left: -22px;
  width: 37px;
  height: 37px;
  background-color: #537D99;
  border-radius: 50%;
  z-index: 2;
}

.services-two__bottom {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.services-two__bottom p {
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  color: #232020;
  margin-bottom: 35px;
}

.services-two .thm-btn {
  background-color: #801F2F;
  color: var(--airslv-white);
}

.services-two .thm-btn:hover {
  color: var(--airslv-white);
    background-color: #B11925;
}

/*.services-two .thm-btn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--airslv-base);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  z-index: -1;
}

.services-two .thm-btn:hover:before {
  width: 100%;
}*/

/*--------------------------------------------------------------
# Expect Two
--------------------------------------------------------------*/
.expect-two {
  position: relative;
  display: block;
  /*background-color: #19517D;*/
  background-color: #d0cece;
  padding: 80px 0 80px;
  z-index: 1;
}

.expect-two__shape-1 {
  position: absolute;
  top: 182px;
  left: 0;
  z-index: -1;
}

.expect-two__shape-1 img {
  width: auto;
}

.expect-two__shape-2 {
  position: absolute;
  top: 35px;
  right: 50px;
  z-index: -1;
}

.expect-two__shape-2 img {
  width: auto;
}

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

.expect-two__content-box {
  position: relative;
  display: block;
  margin-right: 76px;
}

.expect-two__title {
  font-size: 65px;
  font-weight: 700;
  line-height: 70px;
  color: var(--airslv-white);
}

.expect-two__subtitle {
  font-size: 37px;
  font-weight: 600;
  color: var(--airslv-base);
  line-height: 50px;
  margin-top: 8px;
  margin-bottom: 66px;
}

.expect-two__points {
  position: relative;
  display: block;
}

.expect-two__points li {
  position: relative;
  display: flex;
}

.expect-two__points li+li {
  margin-top: 62px;
}

.expect-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 67px;
  color: #537D99;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.expect-two__icon img.expect-two__img {
  width: 67px;
  height: 67px;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-two__points li:hover .expect-two__icon img.expect-two__img {
  transform: scale(0.9);
}

.expect-two__points li:hover .expect-two__icon span {
  transform: scale(0.9);
}

.expect-two__content {
  position: relative;
  display: block;
  margin-left: 34px;
}

.expect-two__content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #fdfdfd;
}

.expect-two__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
  padding-top: 17px;
}

.expect-two__right {
  position: relative;
  display: block;
  margin-right: 53px;
  margin-left: 41px;
  margin-top: 202px;
}

.expect-two__right-points {
  position: relative;
  display: flex;
}

.expect-two__right-icon span {
  position: relative;
  display: inline-block;
  font-size: 67px;
  color: #fff2f2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-two__right-points:hover .expect-two__right-icon span {
  transform: scale(0.9);
}

.expect-two__right-content {
  position: relative;
  display: block;
  margin-left: 34px;
}

.expect-two__right-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #fdfdfd;
}

.expect-two__right-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
  padding-top: 17px;
}

.expect-two__quality {
  position: relative;
  display: flex;
  background-color: var(--airslv-primary);
  padding: 32px 26px 20px;
  max-width: 580px;
  width: 100%;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  margin-top: 60px;
}

.expect-two__quality-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #ff656b;
  border-radius: 50%;
}

.expect-two__quality-icon span {
  font-size: 49px;
  color: var(--airslv-white);
}

.expect-two__quality-text {
  position: relative;
  display: block;
  margin-left: 23px;
}

.expect-two__quality-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--airslv-white);
  opacity: .70;
  line-height: 30px;
}

.expect-two__quality-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--airslv-white);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding: 100px 0 100px;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  line-height: 135px;
  text-align: center;
  font-size: 40px;
  color: var(--airslv-white);
  background-color: #537D99;
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
}

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

.video-one__video-icon:before {
  position: absolute;
  top: -22px;
  left: -22px;
  right: -22px;
  bottom: -22px;
  content: "";
  border: 2px solid rgba(var(--airslv-white-rgb), .30);
  border-radius: 50%;
  z-index: 1;
}

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

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

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

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  background-color: #d0cece;
  z-index: 1;
}

.project-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  z-index: -1;
}
.support-one {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  background-color: #d0cece;
  z-index: 1;
}
.support-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  z-index: -1;
}

.project-two .project-one__right {
  margin-left: 19px;
}

.project-two .all-project {
  margin-top: 6px;
}

.project-two__bottom {
  position: relative;
  display: block;
}

.project-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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


.project-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.project-two__single:hover .project-two__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.project-two__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease;
}

.project-two__single:hover .project-two__img img {
  transform: scale(1.05);
}

.project-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--airslv-white);
  padding: 20px;
  z-index: 1;
  margin-top: -80px;
  margin-left: 20px;
  margin-right: 20px;
}

.project-two__content::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  background-color: #537D99;
  content: "";
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.project-two__single:hover .project-two__content::after {
  opacity: 0;
}

.project-two__content-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: -moz-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  background-image: -webkit-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  background-image: -ms-linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.project-two__single:hover .project-two__content-border {
  transform: scale(1, 1);
  transform-origin: right center;
}

/*.project-two__content:before {
  content: "";
  position: absolute;
  border-bottom: 125px solid #e8ecf7;
  border-left: 65px solid transparent;
  bottom: 0;
  right: 0;
  z-index: -1;
}*/

.project-two__content-left {
  position: relative;
  display: block;
}

.project-two__title {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: var(--airslv-base);
}

.project-two__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.project-two__subtitle a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__subtitle a:hover {
  color: var(--airslv-base);
}

.project-two__content-right {
  position: relative;
  display: block;
  z-index: 2;
}

.project-two__content-right a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 3px;
  background-color: #537D99;
  font-size: 15px;
  color: var(--airslv-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-two__content-right a:hover {
  background-color: var(--airslv-base);
  color: var(--airslv-white);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 193px;
}

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

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

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

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

.testimonial-two__client-details {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  max-width: 78px;
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-two__client-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 33px;
  height: 33px;
  background-color: #3960cb;
  border-radius: 50%;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.testimonial-two__client-icon span {
  font-size: 16px;
  color: var(--airslv-white);
}

.testimonial-two__client-info {
  position: relative;
  display: block;
  margin-left: 12px;
  top: 4px;
}

.testimonial-two__client-content {
  position: relative;
  display: block;
}

.testimonial-two__client-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--airslv-black);
  line-height: 27px;
}

.testimonial-two__client-sub-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: var(--airslv-black);
  opacity: .80;
}

.testimonial-two__client-review {
  position: relative;
  display: block;
}

.testimonial-two__client-review i {
  font-size: 16px;
  color: var(--airslv-base);
}

.testimonial-two__client-review i:last-child {
  color: #d9cdce;
}

.testimonial-two__client-review i+i {
  margin-left: 2px;
}

.testimonial-two__client-text {
  position: relative;
  display: block;
  border: 1px solid #c8c8c8;
  padding: 53px 40px 53px;
  margin-top: 54px;
  z-index: 1;
}

.testimonial-two__client-text:before {
  content: "";
  position: absolute;
  left: 45px;
  top: -1px;
  height: 1px;
  width: 38px;
  background-color: #fff;
}

.testimonial-two__shape-1 {
  position: absolute;
  top: -21px;
  left: 45px;
  height: 21px;
  width: 38px;
}

.testimonial-two__client-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: var(--airslv-black);
  opacity: .80;
}

.testimonial-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -67px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px 10px;
  background-color: var(--airslv-base);
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  content: "";
  border: 1px solid #dbd8d8;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonial-two__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.testimonial-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonial-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/* Testimonial Three */

.testimonial-three {
  background-color: #f0f0f0;
}

.testimonial-three .testimonial-two__client-text:before {
  background-color: #f0f0f0;
}



/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  background-color: #1b1b1b;
  padding: 120px 0 90px;
  z-index: 1;
}

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

.team-two__top {
  position: relative;
  display: block;
}

.team-two .section-title {
  margin-bottom: 50px;
}

.team-two__left {
  position: relative;
  display: block;
  margin-right: 37px;
}

.team-two .section-title__title {
  color: var(--airslv-white);
}

.team-two__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 4px;
}

.team-two__right-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--airslv-white);
  opacity: .80;
}

.team-two__all-Member {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.team-two__all-Member-btn {
  position: relative;
  display: block;
  margin-right: 12px;
}

.team-two__all-Member-btn:before {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #a7a7a7;
  content: "";
  transition: all 500ms ease;
}

.team-two__all-Member-btn:hover:before {
  background-color: var(--airslv-base);
}

.team-two__all-Member-btn a {
  font-size: 18px;
  font-weight: 600;
  line-height: 55px;
  color: var(--airslv-white);
  transition: all 500ms ease;
}

.team-two__all-Member-btn a:hover {
  color: var(--airslv-base);
}

.team-two__all-Member-arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--airslv-primary);
  border-radius: 50%;
  transition: all 500ms ease;
}

.team-two__all-Member-arrow a:hover {
  background-color: var(--airslv-base);
}

.team-two__all-Member-arrow i {
  font-size: 16px;
  color: var(--airslv-white);
}

.team-two__bottom {
  position: relative;
  display: block;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

.team-two__img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-two__single:hover .team-two__img:after {
  transform: translateY(0);
  width: 100%;
}

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

.team-two__content {
  position: relative;
  display: flex;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  z-index: 2;
}

.team-two__content-left {
  position: relative;
  display: block;
  background-color: #e9ecf0;
  padding: 30px 25px 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__single:hover .team-two__content-left {
  background-color: var(--airslv-primary);
}

.team-two_social-box {
  position: relative;
  display: inline-block;
}

.team-two__social-box li+li {
  margin-top: 8px;
}

.team-two__social-box li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--airslv-white);
  border-radius: 50%;
  font-size: 15px;
  color: #433838;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-two__social-box li a:hover {
  color: var(--airslv-white);
  background-color: transparent;
}

.team-two__social-box li a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--airslv-base);
  border-radius: 50%;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.team-two__social-box li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.team-two__content-right {
  position: relative;
  display: block;
  padding: 38px 26px 32px;
}

.team-two__shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__shape-one img {
  width: auto;
}

.team-two__single:hover .team-two__shape-one {
  opacity: 1;
}

.team-two__shape-two {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__single:hover .team-two__shape-two {
  opacity: 0;
}

.team-two__shape-two img {
  width: auto;
}

.team-two__title-box {
  position: relative;
  display: block;
}

.team-two__sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--airslv-base);
}

.team-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 37px;
}

.team-two__title a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__title a:hover {
  color: var(--airslv-base);
}

.team-two__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 18px;
  font-family: var(--airslv-font-two);
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.blog-two .section-title {
  margin-bottom: 52px;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

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

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

.blog-two__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.blog-two__single:hover .blog-two__img:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.blog-two__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05);
}

.blog-two__date {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__date {
  height: 69px;
  width: 65px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--airslv-base);
  border-radius: 2px;
  z-index: 2;
  bottom: -5px;
  left: 22px;
}

.blog-two__date span {
  font-size: 26px;
  line-height: 25.6px;
  font-weight: 500;
  color: var(--airslv-white);
}

.blog-two__date p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18.6px;
  color: var(--airslv-white);
  margin-top: 2px;
}

.blog-two__content {
  position: relative;
  display: block;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
}

.blog-two__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #13121d;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 20px;
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #13121d;
  padding: 0 17px 0;
}

.blog-two__tag p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--airslv-white);
}

.blog-two__meta-box-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.blog-two__meta .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__meta .icon a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__meta a:hover {
  color: var(--airslv-base);
}

.blog-two__meta .icon a i {
  font-size: 22px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
}

.blog-two__meta-btn {
  position: relative;
  display: block;
  margin-right: 2px;
}

.blog-two__meta-btn a {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 20px 18px 24px;
  background-color: #537D99;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__meta-btn a:hover {
  background-color: var(--airslv-base);
  color: var(--airslv-white);
}

.blog-two__meta-btn a i {
  font-size: 12px;
  color: var(--airslv-white);
  margin-left: 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__meta-btn a:hover i {
  color: var(--airslv-white);
}

.blog-two__title-box {
  position: relative;
  display: block;
  padding: 18px 20px 18px;
}

.blog-two__title {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  min-height: 90px;
}

.blog-two__title a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__title a:hover {
  color: var(--airslv-base);
}

.blog-two__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 19px;
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background-color: #faf5f5;
  z-index: 1;
}

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

.services-three .section-title {
  margin-bottom: 53px;
}

.services-three__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 38px 0px rgba(212, 209, 209, 0.5);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 42px;
  margin-bottom: 30px;
}

.services-three__details-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-three__icon {
  position: relative;
  height: 94px;
  width: 80px;
  background-color: #537D99;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 8px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon {
  background-color: var(--airslv-base);
}

.services-three__icon span {
  font-size: 41px;
  color: var(--airslv-white);
}
.services-three__icon img {
  height: 50px;
  width: 50px;
  color: var(--airslv-white);
}

.services-three__read-more {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 230px;
  width: 100%;
}

.services-three__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e8ecf6;
  padding-top: 13px;
  padding-bottom: 14px;
  padding-left: 52px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--airslv-black);
  border-top-right-radius: 8px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__read-more a:hover {
  color: var(--airslv-base);
}

.services-three__read-more a i {
  width: 37px;
  height: 37px;
  background-color: var(--airslv-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--airslv-white);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__read-more a i:hover {
  background-color: var(--airslv-base);
}

.services-three__content {
  position: relative;
  display: block;
  margin-top: 27px;
}

.services-three__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 33px;
}

.services-three__title a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__title a:hover {
  color: var(--airslv-base);
}

.services-three__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 31px;
}

/*--------------------------------------------------------------
# Expect Three
--------------------------------------------------------------*/
.expect-three {
  position: relative;
  display: block;
  background-color: #171616;
  padding: 105px 0 113px;
  overflow: hidden;
  z-index: 1;
}

.expect-three__shape-1 {
  position: absolute;
  top: 180px;
  left: 0;
}

.expect-three__shape-1 img {
  width: auto;
}

.expect-three__shape-2 {
  position: absolute;
  top: 50px;
  right: 0;
}

.expect-three__shape-2 img {
  width: auto;
}

.expect-three__shape-3 {
  position: absolute;
  bottom: -635px;
  right: 130px;
}

.expect-three__shape-3 img {
  width: auto;
}

.expect-three__left {
  position: relative;
  display: block;
  margin-right: 73px;
}

.expect-three__content-box {
  position: relative;
  display: block;
}

.expect-three__title {
  font-size: 65px;
  font-weight: 700;
  line-height: 75px;
  color: var(--airslv-white);
}

.expect-three__points {
  position: relative;
  display: block;
  margin-top: 68px;
}

.expect-three__points li {
  position: relative;
  display: flex;
}

.expect-three__points li+li {
  margin-top: 47px;
}

.expect-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 67px;
  color: #fff2f2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-three__points li:hover .expect-three__icon span {
  transform: scale(0.9);
}

.expect-three__content {
  position: relative;
  display: block;
  margin-left: 34px;
}

.expect-three__content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #fdfdfd;
}

.expect-three__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
  padding-top: 17px;
}

.expect-three__right {
  position: relative;
  display: block;
  margin-right: 68px;
  margin-left: 26px;
  margin-top: 50px;
}

.expect-three__right-points {
  position: relative;
  display: flex;
}

.expect-three__right-icon span {
  position: relative;
  display: inline-block;
  font-size: 67px;
  color: #fff2f2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-three__right-points:hover .expect-three__right-icon span {
  transform: scale(0.9);
}

.expect-three__right-content {
  position: relative;
  display: block;
  margin-left: 34px;
}

.expect-three__right-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #fdfdfd;
}

.expect-three__right-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--airslv-white);
  opacity: .80;
  padding-top: 17px;
}

.expect-three__quality {
  position: relative;
  display: flex;
  background-color: #537D99;
  padding: 32px 21px 20px;
  max-width: 580px;
  width: 100%;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  border-bottom-left-radius: 19px;
  margin-top: 57px;
}

.expect-three__quality-two {
  margin-top: 50px;
}

.expect-three__quality-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: var(--airslv-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.expect-three__quality:hover .expect-three__quality-icon {
  background-color: var(--airslv-black);
}

.expect-three__quality-icon span {
  position: relative;
  display: inline-block;
  font-size: 49px;
  color: var(--airslv-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.expect-three__quality:hover .expect-three__quality-icon span {
  transform: scale(0.9);
}

.expect-three__quality-text {
  position: relative;
  display: block;
  margin-left: 23px;
}

.expect-three__quality-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--airslv-white);
  opacity: .70;
  line-height: 30px;
}

.expect-three__quality-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--airslv-white);
}
.expect-three__quality-text h3 a{
  font-size: 28px;
  font-weight: 600;
  color: var(--airslv-white);
}
.expect-three__quality-text h3 a:hover {
  color: var(--airslv-black);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  /*padding: 131px 0 157px;*/
  padding: 40px 0 45px;
  background-color: #495E77;
  overflow: hidden;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  /*mix-blend-mode: overlay;*/
  z-index: -1;
  background-color: var(--airslv-primary);
}

.page-header__shape-1 {
  position: absolute;
  top: 90px;
  left: 0;
}

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

.page-header__shape-2 {
  position: absolute;
  top: -140px;
  right: -30px;
}

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

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}
.page-header__inner h1 {
  font-size: 60px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 100px;
  margin-bottom: 2px;
}

.page-header__inner h2 {
  font-size: 80px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 100px;
  margin-bottom: 2px;
}

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

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 45px;
}

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

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

.thm-breadcrumb li.active {
  color: #BDDBED;
}

.thm-breadcrumb li:before {
  position: absolute;
  height: 3px;
  width: 14px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  left: -24px;
}

.thm-breadcrumb li:after {
  position: absolute;
  height: 3px;
  width: 16px;
  background-color: #BDDBED;
  content: "";
  top: 17px;
  left: -40px;
}

.thm-breadcrumb li:first-child:before,
.thm-breadcrumb li:first-child:after {
  display: none;
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__inner {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.blog-list__img-box {
  position: relative;
  display: block;
}

.blog-list__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-list__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.blog-list__single:hover .blog-list__img:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.blog-list__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.blog-list__single:hover .blog-list__img img {
  transform: scale(1.05);
}

.blog-list__date {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-list__date {
  height: 69px;
  width: 54px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--airslv-base);
  border-radius: 2px;
  z-index: 2;
  bottom: 0;
  left: 22px;
}

.blog-list__date span {
  font-size: 26px;
  line-height: 25.6px;
  font-weight: 500;
  color: var(--airslv-white);
}

.blog-list__date p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18.6px;
  color: var(--airslv-white);
  margin-top: 2px;
}

.blog-list__content {
  position: relative;
  display: block;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
}

.blog-list__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #13121d;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 20px;
  padding-right: 2px;
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-list__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #13121d;
  padding: 0 17px 0;
}

.blog-list__tag p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24.6px;
  color: var(--airslv-white);
}

.blog-list__meta-box-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.blog-list__meta-box-two .user {
  position: relative;
  display: block;
}

.blog-list__meta-box-two .user a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__meta-box-two .user a:hover {
  color: var(--airslv-base);
}

.blog-list__meta-box-two .user a i {
  font-size: 21px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
}

.blog-list__meta-box-two .comment-box {
  position: relative;
  display: block;
  margin-left: 18px;
}

.blog-list__meta-box-two .comment-box a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--airslv-font) !important;
}

.blog-list__meta-box-two .comment-box a:hover {
  color: var(--airslv-base);
}

.blog-list__meta-box-two .comment-box a i {
  position: relative;
  font-size: 24px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
  top: 2px;
}

.blog-list__meta-btn {
  position: relative;
  display: block;
}

.blog-list__meta-btn a {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: var(--airslv-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 20px 18px 24px;
  background-color: #f1f3f7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__meta-btn a:hover {
  background-color: #1e6dfb;
  color: var(--airslv-white);
}

.blog-list__meta-btn a i {
  font-size: 12px;
  color: var(--airslv-black);
  margin-left: 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__meta-btn a:hover i {
  color: var(--airslv-white);
}

.blog-list__title-box {
  position: relative;
  display: block;
  padding: 37px 20px 25px;
}

.blog-list__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}

.blog-list__title a {
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__title a:hover {
  color: var(--airslv-base);
}

.blog-list__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 17px;
}

.blog-page__pagination {
  position: relative;
  display: block;
  padding: 12px 0 0px;
}

.blog-page__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 6px;
}

.blog-page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.blog-page__pagination .pg-pagination li a {
  height: 50px;
  width: 60px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  color: #433838;
  background-color: #faf6f6;
  border-top-right-radius: 7px;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--airslv-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-page__pagination .pg-pagination li a:hover {
  background-color: var(--airslv-primary);
  color: var(--airslv-white);
}

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

.sidebar__search {
  position: relative;
  display: block;
  padding: 35px 30px 35px;
  background-color: #f5f5f5;
  z-index: 1;
}

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

.sidebar__search-form:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--airslv-primary);
  content: "";
  z-index: 1;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: #f5f5f5;
  color: #25242e;
  opacity: .80;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  height: 70px;
  width: 100%;
  padding-right: 60px;
  border: 1px solid #e7e7e7;
}

.sidebar__search-form button[type="submit"] {
  color: var(--airslv-black);
  font-size: 19px;
  position: absolute;
  top: 0;
  right: 2px;
  bottom: 0;
  width: 50px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.sidebar__category {
  position: relative;
  display: block;
  background-color: #f5f8fe;
  padding: 44px 30px 50px;
  z-index: 1;
}

.sidebar__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--airslv-black);
  margin-left: 42px;
}

.sidebar__title:before {
  position: absolute;
  height: 3px;
  width: 19px;
  background-color: var(--airslv-base);
  content: "";
  top: 17px;
  left: -23px;
}

.sidebar__title:after {
  position: absolute;
  height: 3px;
  width: 12px;
  background-color: var(--airslv-primary);
  content: "";
  top: 17px;
  left: -35px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin-top: 30px;
}

.sidebar__category-list li {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e7e7e7;
}

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

.sidebar__category-list li:before {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 1px;
  background-color: var(--airslv-primary);
  content: "";
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__category-list li:hover:before,
.sidebar__category-list li.active:before {
  opacity: 1;
}

.sidebar__category-list li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--airslv-black);
  margin-left: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 15px 11px;
}

.sidebar__category-list li:hover a,
.sidebar__category-list li.active a {
  color: var(--airslv-primary);
}

.sidebar__category-list li a i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  font-size: 16px;
  background-color: #e6e8ec;
  border-radius: 50%;
  color: var(--airslv-black);
  margin-right: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__category-list li:hover a i,
.sidebar__category-list li.active a i {
  background-color: var(--airslv-primary);
  color: var(--airslv-white);
}

.sidebar__post {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding-top: 48px;
  padding-left: 35px;
  padding-right: 23px;
  padding-bottom: 20px;
  z-index: 1;
}

.sidebar__post-list {
  margin-top: 24px;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li {
  border-bottom: 1px solid #e2e4e3;
  padding-bottom: 23px;
  margin-bottom: 25px;
}

.sidebar__post-image {
  margin-right: 24px;
}

.sidebar__post-image>img {
  width: 83px;
}

.sidebar__post-content {
  position: relative;
  display: block;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 29px;
}

.sidebar__post-content h3 a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--airslv-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-top: 4px;
}

.sidebar__post-list li .sidebar__post-content h3 a:hover {
  color: var(--airslv-primary);
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--airslv-font);
}

.sidebar__post-content-meta i {
  color: var(--airslv-base);
  font-size: 19px;
  padding-right: 3px;
  position: relative;
  top: 3px;
}

.sidebar__cetagory-two {
  position: relative;
  display: block;
  padding: 37px 23px 50px 23px;
  background-color: #f5f8fe;
}

.sidebar__cetagory-two .sidebar__title {
  margin-bottom: 20px;
}

.sidebar__cetagory-list a {
  font-size: 15px;
  color: var(--airslv-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #e7e7e7;
  display: inline-block;
  padding: 0 13px 0 13px;
  margin-left: 7px;
  font-weight: 500;
  line-height: 30px;
}

.sidebar__cetagory-list a+a {
  margin-left: 7px;
  margin-top: 10px;
}

.sidebar__cetagory-list a:hover {
  color: var(--airslv-white);
  background-color: var(--airslv-base);
  border: 1px solid var(--airslv-base);
}

.sidebar__call-box {
  position: relative;
  display: block;
  padding: 55px 40px 60px;
  background-color: #af2026;
  z-index: 1;
  border-radius: 3px;
}

.sidebar__call-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
  border-radius: 3px;
  z-index: -1;
}

.sideber__call-content {
  position: relative;
  display: block;
}

.sideber__call-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: var(--airslv-white);
}

.sideber__call-number {
  position: relative;
  display: block;
  margin-top: 7px;
  margin-bottom: 56px;
}

.sideber__call-number p {
  color: var(--airslv-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.sideber__call-number h3 {
  font-size: 26px;
  font-weight: 600;
}

.sideber__call-number a {
  color: var(--airslv-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sideber__call-button {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.sideber__call-button-shape {
  position: absolute;
  bottom: -23px;
  left: -15px;
  border-radius: 50%;
  background-color: var(--airslv-primary);
  width: 79px;
  height: 79px;
  z-index: -1;
}

.sideber__call-button a {
  font-size: 16px;
  font-weight: 700;
  color: var(--airslv-white);
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sideber__call-button a:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 21px;
  right: 0;
  height: 1px;
  background-color: #8b8a95;
}

.sideber__call-button a i {
  position: relative;
  display: inline-block;
  top: 1px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/

.blog-details {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__inner {
  position: relative;
  display: block;
}

.blog-details__img-box {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-details__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--airslv-black-rgb), .30);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: top center;
  z-index: 1;
}

.blog-details__inner:hover .blog-details__img:before {
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.blog-details__img img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.blog-details__inner:hover .blog-details__img img {
  transform: scale(1.05);
}

.blog-details__date {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__date {
  height: 69px;
  width: 54px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--airslv-base);
  border-radius: 2px;
  z-index: 2;
  bottom: -1px;
  left: 20px;
}

.blog-details__date span {
  font-size: 26px;
  line-height: 25.6px;
  font-weight: 500;
  color: var(--airslv-white);
}

.blog-details__date p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18.6px;
  color: var(--airslv-white);
  margin-top: 2px;
}

.blog-details__content {
  position: relative;
  display: block;
  background-color: var(--airslv-white);
  box-shadow: 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
}

.blog-details__meta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #13121d;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 2px;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #13121d;
  padding: 0 17px 0;
}

.blog-details__tag p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24.6px;
  color: var(--airslv-white);
}

.blog-details__meta-box-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.blog-details__meta-box-two .user {
  position: relative;
  display: block;
}

.blog-details__meta-box-two .user a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta-box-two .user a:hover {
  color: var(--airslv-base);
}

.blog-details__meta-box-two .user a i {
  font-size: 21px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
}

.blog-details__meta-box-two .comment-box {
  position: relative;
  display: block;
  margin-left: 18px;
}

.blog-details__meta-box-two .comment-box a {
  font-size: 14px;
  position: relative;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 25.6px;
  display: flex;
  align-items: center;
  font-family: var(--airslv-font) !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta-box-two .comment-box a:hover {
  color: var(--airslv-base);
}

.blog-details__meta-box-two .comment-box a i {
  font-size: 24px;
  color: var(--airslv-black);
  opacity: .80;
  margin-right: 6px;
  position: relative;
  top: 2px;
}

.blog-details__meta-btn {
  position: relative;
  display: block;
}

.blog-details__meta-btn a {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: var(--airslv-black);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 20px 18px 14px;
  background-color: #f0eae8;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta-btn a:hover {
  background-color: #1e6dfb;
  color: var(--airslv-white);
}

.blog-details__meta-btn a i {
  font-size: 25px;
  color: var(--airslv-black);
  margin-left: 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta-btn a:hover i {
  color: var(--airslv-white);
}

.blog-details__title-one {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  color: var(--airslv-black);
  /*margin-top: 30px;*/
  margin-bottom: 30px;
}

.blog-details__text-one {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
}

.blog-details__text-two {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 24px;
  margin-bottom: 29px;
}

.blog-details__text-three {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 15px;
}

.blog-details__title-two {
  font-size: 28px;
  font-weight: 700;
  line-height: 50px;
  color: var(--airslv-black);
}

.blog-details__factors {
  position: relative;
  display: block;
  margin-top: 36px;
}

.blog-details__factors-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 50px;
}

.blog-details__sub-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 15px;
}

.blog-details__factors-points {
  position: relative;
  display: block;
  margin-top: 25px;
}

.blog-details__factors-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__factors-points li+li {
  margin-top: 20px;
}

.blog-details__factors-icon {
  position: relative;
  display: flex;
  /*background-color: #f1f3f7;*/
  transform: rotate(90deg);
  /*width: 38px;
  height: 38px;*/
  align-items: center;
  justify-content: center;
}

.blog-details__factors-icon span {
  font-size: 18px;
  color: #537D99;
}

.blog-details__factors-text {
  position: relative;
  display: block;
  margin-left: 19px;
}

.blog-details__factors-text p {
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 31px;
}

.blog-details__quote {
  position: relative;
  display: flex;
  margin-top: 70px;
}

.blog-details__quote-left {
  position: relative;
  display: block;
}

.blog-detail__quote-img {
  position: relative;
  display: block;
}

.blog-detail__quote-img img {
  width: auto;
}

.blog-details__quote-right {
  position: relative;
  display: block;
  top: -8px;
}

.blog-details__quote-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
}

.blog-details__admin-details-box {
  position: relative;
  display: block;
  margin-top: 40px;
  padding-left: 21px;
}

.blog-details__admin-details-box:before {
  position: absolute;
  top: 8px;
  bottom: 5px;
  width: 1px;
  background-color: var(--airslv-base);
  content: "";
  left: 0;
}

.blog-details__admin-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  line-height: 32px;
}

.blog-details__admin-details {
  position: relative;
  display: block;
  margin-top: 21px;
}

.blog-details__quote-left {
  position: relative;
  display: block;
  margin-right: 40px;
}

.blog-details__admin-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: var(--airslv-black);
  opacity: .80;
}

.blog-details__tags {
  position: relative;
  display: block;
  margin-top: 84px;
  border-bottom: 1px solid #f1f3f7;
  padding-bottom: 55px;
}

.blog-details__tags p {
  font-size: 20px;
  font-weight: 700;
  color: var(--airslv-black);
}

.blog-details__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.blog-details__tags-list a {
  font-size: 15px;
  font-weight: 500;
  color: var(--airslv-black);
  padding: 0 15px 0;
  line-height: 30px;
  border: 1px solid #e7e7e7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags-list a+a {
  margin-left: 10px;
}

.blog-details__tags-list a:hover {
  background-color: var(--airslv-base);
  border: 1px solid var(--airslv-base);
  color: var(--airslv-white);
}

.back-news {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  margin-top: 43px;
  margin-bottom: 53px;
}

.back-news__left {
  position: relative;
  display: flex;
  align-items: center;
}

.back-news__left:before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  height: 1px;
  width: 265px;
  background-color: #63564f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.back-news__left:hover:before {
  background-color: var(--airslv-primary);
}

.back-news__arrow {
  position: relative;
  display: block;
}

.back-news__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--airslv-black);
  width: 33px;
  height: 40px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.back-news__left:hover .back-news__arrow a {
  color: var(--airslv-white);
}

.back-news__arrow a:before {
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
  right: 0;
  content: "";
  background-color: #f6f6f6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.back-news__left:hover .back-news__arrow a:before {
  background-color: var(--airslv-primary);
}

.back-news__content {
  margin-left: 20px;
}

.back-news__content p {
  font-size: 20px;
  color: var(--airslv-black);
  font-weight: 600;
  line-height: 34px;
}

.back-news__right {
  position: relative;
  display: flex;
  align-items: center;
}

.back-news__right:before {
  content: "";
  position: absolute;
  bottom: -27px;
  right: 0;
  height: 1px;
  width: 280px;
  background-color: #63564f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.back-news__right:hover:before {
  background-color: var(--airslv-primary);
}

.back-news__right:hover .back-news__arrow a {
  color: var(--airslv-white);
}

.back-news__right .back-news__content {
  margin-left: 0;
  margin-right: 20px;
}

.back-news__right .back-news__arrow a:before {
  background-color: #f6f6f6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.back-news__right:hover .back-news__arrow a:before {
  background-color: var(--airslv-primary);
}

.comment-one {
  position: relative;
  display: block;
  background-color: #f6f6f6;
  padding: 50px 20px 46px 25px;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--airslv-black);
  font-size: 26px;
  margin-bottom: 50px;
  font-weight: 700;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 30px;
  margin-bottom: 36px;
}

.comment-one__single--two {
  margin-left: 60px;
}

.comment-one__content {
  position: relative;
  margin-left: 20px;
  top: -4px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--airslv-black);
  margin-bottom: 14px;
  font-weight: 700;
}

.comment-one__content p {
  font-size: 16px;
  line-height: 32px;
  opacity: .80;
  margin: 0;
}

.comment-one__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 9px;
}

.comment-one__date span {
  display: block;
  font-size: 14px;
  color: var(--airslv-black);
  font-weight: 500;
}

.comment-one__date {
  position: relative;
  display: block;
  margin-right: 10px;
}

.comment-one__btn a {
  padding: 3px 8px;
  background-color: var(--airslv-base);
  font-size: 12px;
  color: var(--airslv-white);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn a:hover {
  background-color: var(--airslv-primary);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form {
  padding-top: 13px;
}

.comment-form .comment-form__title {
  margin-bottom: 23px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
  background-color: var(--airslv-white);
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"],
.comment-form__input-box input[type="tel"] {
  height: 70px;
  width: 100%;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  color: var(--airslv-black);
  opacity: .60;
  display: block;
  border-radius: 3px;
  background-color: #fff;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--airslv-black);
  height: 215px;
  opacity: .60;
  width: 100%;
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 3px;
    background-color: #fff;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn {
  position: relative;
  display: block;
  border: none;
  font-size: 16px;
  color: var(--airslv-white);
  background-color: var(--airslv-base);
  width: 100%;
  font-weight: 500;
  padding: 10px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-form__btn:hover {
  background-color: var(--airslv-primary);
  color: var(--airslv-white);
}

.comment-form__input-box.text-message-box {
  height: 215px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.project-details__sideber {
  position: relative;
  display: block;
  margin-right: 10px;
}

.project-details__top {
  position: relative;
  display: block;
  margin-bottom: 80px;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
}

.project-details__bottom {
  position: relative;
  display: block;
}

.project-details__left {
  position: relative;
  display: block;
}

.project-details__sidebar-single+.project-details__sidebar-single {
  margin-top: 40px;
}

.project-details__sidebar {
  position: relative;
  display: block;
  margin-right: 10px;
}

.project-details__details-box {
  position: relative;
  display: block;
  background-color: #f5f8fe;
  padding: 48px 43px 50px 30px;
  margin-bottom: 40px;
  z-index: 1;
}

.project-details__details-box:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--airslv-primary);
  content: "";
  z-index: -1;
}

.project-details__title {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 8px;
}

.project-details__title:before {
  position: absolute;
  top: 5px;
  left: -8px;
  width: 5px;
  height: 19px;
  background-color: var(--airslv-base);
  content: "";
}

.project-details__list {
  position: relative;
  display: block;
  margin-top: 40px;
}

.project-details__list li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 26px;
  padding-bottom: 25px;
}

.project-details__list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-details__list .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 35px;
  color: #433838;
}

.icon-chevron {
  transform: rotate(90deg);
}

.project-details__list .content {
  margin-left: 15px;
}

.project-details__list .content span {
  font-size: 16px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .70;
  display: block;
  line-height: 20px;
}

.project-details__list .content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--airslv-black);
  line-height: 25px;
  padding-top: 6px;
}

.project-details__right {
  position: relative;
  display: block;
  margin-top: -15px;
}

.project-details__right-content {
  position: relative;
  display: block;
}

.project-details__right .title-one {
  font-size: 50px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 29px;
}

.project-details__right .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
}

.project-details__right .title-two {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 37px;
  margin-bottom: 18px;
}

.cooling-services {
  position: relative;
  display: flex;
  margin-top: 64px;
}

.cooling-services__content {
  position: relative;
  display: block;
  margin-top: -4px;
}

.cooling-services__title {
  font-size: 28px;
  font-weight: 700;
}

.cooling-services__text {
  line-height: 31px;
  margin-top: 17px;
  margin-bottom: 32px;
}

.cooling-services__points {
  position: relative;
  display: block;
  margin-left: 33px;
}

.cooling-services__points li {
  position: relative;
  display: block;
}

.cooling-services__points li+li {
  margin-top: 15px;
}

.cooling-services__points li p {
  font-size: 16px;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .80;
}

.cooling-services__points li p:before {
  position: absolute;
  left: -27px;
  top: 16px;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--airslv-base);
  border-radius: 50%;
  z-index: 1;
}

.cooling-services__points li p:after {
  position: absolute;
  left: -35px;
  top: 8px;
  content: "";
  width: 24px;
  height: 24px;
  background-color: #e9e9e9;
  border-radius: 50%;
}

.cooling-services__img {
  position: relative;
  display: block;
}

.cooling-services__img img {
  width: auto;
}

.project-details__challenges {
  position: relative;
  display: block;
  background-color: #f8f8f8;
  padding: 43px 30px 50px;
  margin-top: 50px;
  border-bottom: 1px solid var(--airslv-primary);
}

.project-details__challenges-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 35px;
}

.project-details__challenges-content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.clallenges-box__left {
  position: relative;
  display: block;
}

.clallenges-box__left--two {
  margin-left: 14px;
}

.challenges-box__left-content {
  position: relative;
  display: flex;
}

.challenges-box__left-content .icon {
  margin-right: 5px;
}

.challenges-box__left-content .icon span {
  font-size: 19px;
  color: #433838;
}

.challenges-box__left-content .tagline p {
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  color: var(--airslv-primary);
  margin-bottom: 8px;
}

.challenges-box__left-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  margin-left: 20px;
}

.project-details__result {
  position: relative;
  display: block;
  margin-top: 40px;
}

.project-details__result-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 64px;
}

.project-details__result-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 2px;
  margin-bottom: 37px;
}

.project-details__ac-repaires-box {
  position: relative;
  display: block;
  border: 1px solid #13121d;
  padding: 28px 28px 30px 26px;
}

.project-details__ac-repairs {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__ac-repairs .icon {
  position: relative;
  display: block;
  margin-right: 16px;
}

.project-details__ac-repairs .icon span {
  font-size: 36px;
  color: var(--airslv-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: var(--airslv-primary);
  border-radius: 50%;
}

.project-details__ac-repairs .title h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.project-details__ac-repairs-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: var(--airslv-black);
  opacity: .80;
  margin-top: 25px;
}

.project-details__ac-repaires-box+.project-details__ac-repaires-box {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

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

.service-details__brochures-box {
  position: relative;
  display: block;
  background-color: #f5f8fe;
  padding: 44px 30px 45px;
  z-index: 1;
}

.service-details__brochures-list {
  margin: 0;
  margin-top: 30px;
}

.service-details__brochures-list li a {
  color: var(--airslv-black);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  padding: 11px 15px 11px;
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
}

.service-details__brochures-list li:hover a {
  color: var(--airslv-base);
}

.service-details__brochures-list li a i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  background-color: #537D99;
  border-radius: 50%;
  color: var(--airslv-white);
  font-size: 20px;
  margin-right: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__brochures-list li:hover a i {
  background-color: var(--airslv-base);
}

.service-details__brochures-list li a span {
  font-size: 14px;
  font-weight: 400;
  color: var(--airslv-black);
  opacity: .70;
  padding-left: 7px;
  position: relative;
  top: 2px;
}

.service-details__slide {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 38px 0px rgb(212 209 209 / 50%);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.service-details__slide .services-three__single {
  box-shadow: none;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.service-details__slide .services-three__icon {
  background-color: var(--airslv-base);
}

.service-details__slide .services-three__single:hover .services-three__icon {
  background-color: var(--airslv-primary);
}

.service-details__slide .services-three__read-more a i {
  background-color: var(--airslv-base);
}

.service-details__slide .services-three__read-more a:hover i {
  background-color: var(--airslv-primary);
}

.service-details__slide-carousel {
  position: relative;
  display: block;
}
/*
.service-details__slide-carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -82px;
  left: 0px;
  right: 0px;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details__slide-carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  background-color: #e0e0e0;
  border-radius: 50%;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.service-details__slide-carousel.owl-carousel .owl-dot.active {
  background-color: transparent;
}

.service-details__slide-carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  border: 3px solid var(--airslv-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.service-details__slide-carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.service-details__slide-carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.service-details__slide-carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
*/

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

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

.services-details__img img {
  width: 100%;
}

.services-details__content-one {
  position: relative;
  display: block;
  margin-top: 10px;
}

.services-details__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 23px;
}

.services-details__text-1 {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
}

.services-details__text-2 {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
  padding-top: 28px;
  padding-bottom: 30px;
}

.services-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.services-details__text-3 {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
  padding-top: 30px;
  padding-bottom: 30px;
}

.services-details__title-3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 30px;
}

.services-details__text-4 {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
}

.service-details__points-box {
  position: relative;
  display: block;
  margin-top: 39px;
  margin-bottom: 19px;
}

.service-details__points-single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fcf8f8;
  padding: 30px 25px 30px;
  margin-bottom: 30px;
}

.service-details__points-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  background-color: var(--airslv-black);
  border-radius: 50%;
}

.service-details__points-icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--airslv-white);
}

.service-details__points-text {
  margin-left: 15px;
}

.service-details__points-text p {
  font-size: 20px;
  color: var(--airslv-black);
  font-weight: 700;
  line-height: 32px;
}

.services-details__text-5 {
  font-size: 16px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
}

.services-details__title-4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 56px;
  margin-bottom: 21px;
}

.services-details__text-6 {
  font-size: 18px;
  color: var(--airslv-black);
  font-weight: 500;
  opacity: .80;
}

.services-details__points-two {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}

.services-details__points-two li {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--airslv-black);
  opacity: .80;
  padding-left: 30px;
}

.services-details__points-two li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 15px;
  width: 15px;
  border: 3px solid #537D99;
  border-radius: 50%;
}

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

.services-details__tab-box .tab-buttons {
  position: relative;
  display: block;
}

.services-details__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
  float: left;
}

.services-details__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  color: var(--airslv-black);
  padding: 10px 65px 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  border: 1px solid #f7f7f7;
}

.services-details__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--airslv-black);
  border: 1px solid #e8ecf6;
}

.services-details__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: #e8ecf6;
  transition: all 0.3s ease;
  z-index: -1;
}

.services-details__tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.services-details__tab-box .tab-buttons .tab-btn span:after {
  content: "\e922";
  font-family: 'icomoon' !important;
  font-weight: normal;
  font-size: 13px;
  color: var(--airslv-white);
  position: absolute;
  top: 50%;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  height: 30px;
  width: 30px;
  background-color: #dbdde2;
  border-radius: 50%;
}

.services-details__tab-box .tab-buttons .tab-btn.active-btn span:after {
  content: "\e91e";
  color: var(--airslv-white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--airslv-black);
}


.services-details__tab-box .tabs-content {
  position: relative;
  display: block;
  margin-top: 29px;
}

.services-details__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.services-details__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);

}

.services-details__tab-content {
  position: relative;
  display: block;
}

.services-details__tab-text {
  color: var(--airslv-black);
  font-size: 16px;
  opacity: .80;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Project V-1 Page
--------------------------------------------------------------*/
.project-v-1-page {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.project-v-1-page .project-one__single {
  margin-bottom: 38px;
}

/*--------------------------------------------------------------
# Project V-2 Page
--------------------------------------------------------------*/
.project-v-2-page {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

/*--------------------------------------------------------------
# Services Modern
--------------------------------------------------------------*/
.services-modern {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

/*--------------------------------------------------------------
# Services Classic
--------------------------------------------------------------*/
.services-classic {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  background-color: #faf5f5;
  z-index: 1;
}

/*--------------------------------------------------------------
# Services Classic
--------------------------------------------------------------*/
.testimonial-four {
  padding-top: 0;
}

/*--------------------------------------------------------------
# Technician Page
--------------------------------------------------------------*/
.technician-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Address
--------------------------------------------------------------*/
.address {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.address__single {
  position: relative;
  display: block;
  background-color: #f6f6f6;
  text-align: center;
  padding: 50px 5px 50px;
  margin-bottom: 30px;
  border-radius: 3px;
}
.address__single.address__single-2{
  position: relative;
  display: block;
  background-color: #ffffff;
  text-align: center;
  padding: 20px 0 20px;
  margin-bottom: 30px;
  border-radius: 3px;
}

.address__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  margin: 0 auto;
  border: 1px solid #ececec;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.address__single:hover .address__icon {
  background-color: #ececec;
}

.address__icon span {
  position: relative;
  display: inline-block;
  font-size: 38px;
  color: var(--airslv-black);
}

.address__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.address__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 13px;
}

.address__phone-email {
  position: relative;
  display: block;
}

.address__phone-email p {
  font-size: 18px;
  color: #504f56;
  line-height: 30px;
  opacity: .88;
}

.address__phone-email p a {
  color: #504f56;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.address__phone-email p a:hover {
  color: #B11925;
}


/*--------------------------------------------------------------
# Contact Form Box
--------------------------------------------------------------*/
.contact-form-box {
  position: relative;
  display: block;
  padding: 0 0 80px;
}

.contact-form-box__left {
  position: relative;
  display: block;
  margin-top: -11px;
}

.contact-form__title-box {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.contact-form__title-box span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #13121d;
  line-height: 18px;
  opacity: .80;
}

.contact-form__title-box h3 {
  font-size: 36px;
  color: var(--airslv-black);
  line-height: 50px;
  font-weight: 700;
  margin-top: 8px;
}

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

.contact-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 46px;
}

.contact-form__input-box p {
  font-size: 15px;
  color: #433838;
  opacity: .70;
  line-height: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"] {
  height: 50px;
  border: 0;
  width: 100%;
  font-size: 16px;
  color: var(--airslv-black);
  border-bottom: 1px solid var(--airslv-black);
  font-weight: 500;
  outline: none;
}

.contact-form__input-box textarea {
  height: 150px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--airslv-black);
  color: #433838;
  opacity: .70;
  font-size: 15px;
  outline: none;
  margin-top: -8px;
}

.contact-form__input-box.text-message-box {
  height: 150px;
}

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

.contact-form__btn {
  padding: 9px 35px 9px;
  border: none;
  color:#000;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.contact-form__btn:hover {
  color:#ffffff;
  background-color: #537D99;
}

.contact-form__btn:before {
  left: 0;
}

.contact-form-box__right {
  position: relative;
  display: block;
}

.google-map {
  position: relative;
  display: block;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 661px;
  width: 100%;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 82px 0 120px;
  background-color: var(--airslv-white);
  z-index: 1;
}

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

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 265px;
  line-height: 265px;
  font-weight: 800;
  color: var(--airslv-black);
  z-index: 2;
}

.error-page__title .clr-primary {
  color: var(--airslv-primary);
}

.error-page__title .clr-base {
  color: var(--airslv-base);
}

.error-page__tagline {
  font-size: 46px;
  line-height: 46px;
  font-weight: 600;
  color: var(--airslv-black);
  margin-top: 28px;
  margin-bottom: 6px;
}

.error-page__text {
  font-size: 20px;
  color: var(--airslv-black);
  opacity: .80;
  font-weight: 500;
}

.error-page__btn {
  background-color: transparent;
  border: 2px solid var(--airslv-primary);
  color: var(--airslv-primary);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 11px 60px 11px;
  margin-top: 60px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.error-page__btn:hover {
  color: var(--airslv-white);
  background-color: var(--airslv-primary);
}

.btn-clear.thm-btn {
    background-color: #eeeeee;
    color: var(--airslv-black);
}
.btn-clear.thm-btn:hover {
    color: var(--airslv-white);
}
.btn-clear.thm-btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--airslv-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    z-index: -1;
}
.btn-clear.thm-btn:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 229px;
    height: 2px;
    content: "";
    background-color: var(--airslv-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: -1;
}
.btn-clear.thm-btn:hover:after {
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
}
.btn-clear.thm-btn:hover:before {
    width: 100%;
}
.form-select{
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #801F2F;
    border: none;
}
.form-select.contatti{
    display: block;
    width: 100%;
    padding: 1.375rem 2.25rem 1.375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--airslv-black);
    background-color: #fff;
    border: none;
    margin-bottom: 20px;
}
.form-select:focus{
    border-color: none;
    box-shadow: none;
}

/* MODIFICHE SLIDER */

.image-layer-two {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}
.main-slider-two {
  position: relative;
  width: 100%;
  height: 100vh; /* oppure 800px */
  overflow: hidden;
}
.thm-swiper__slider,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}
.swiper-slide {
  position: relative;
}
/* FINE MODIFICHE SLIDER */

.counter-one__icon.img-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px; /* oppure la dimensione attuale dell'icona */
  width: 150px;
  margin: 0 auto 0px auto;
}

.counter-one__img-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.site-footer__top-image {
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
  text-align: center;
  z-index: 3;
}

.site-footer__top-image img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  position: relative;
  overflow: hidden; 
}


.address .row {
  display: flex;
  flex-wrap: wrap; 
}

.address .col-xl-4,
.address .col-lg-4 {
  display: flex;
}

.address__single {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
a:hover {
    color: var(--airslv-base);
}

.project-two__img {
  height: 250px; /* desktop */
}

.project-two__img img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* ritaglia mantenendo proporzioni */
}

/* Altezza fissa box contenuti */
.project-two__content {
  height: 120px; /* desktop */
  display: flex;
  align-items: center;       /* centra verticalmente */
  justify-content: space-between;
}

/* Responsive tablet */
@media (max-width: 992px) {
  .project-two__img {
    height: 200px;
  }
  .project-two__content {
    height: 100px;
  }
.page-header__inner h1 {
  font-size: 70px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 70px;
  margin-bottom: 2px;
}
}
@media (max-width: 767px) {
.page-header__inner h1 {
  font-size: 55px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 55px;
  margin-bottom: 2px;
}
}

/* Responsive mobile */
@media (max-width: 576px) {
  .project-two__img {
    height: 160px;
  }
  .project-two__content {
    height: auto; /* lascia libero, meglio per testi più lunghi */
    padding: 15px 0;
  }
    .page-header__inner h1 {
  font-size: 45px;
  color: var(--airslv-white);
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 2px;
}
}

/* timeline orizzontale */
.horizontal-timeline .items {
  border-top: 3px solid #e9ecef;
  display: flex;
  align-items: flex-start;
}

.horizontal-timeline .items .items-list {
  display: block;
  position: relative;
  text-align: center;
  padding-top: 70px;
  margin-right: 0;
}

.horizontal-timeline .items .items-list:before {
  content: "";
  position: absolute;
  height: 36px;
  border-right: 2px dashed #dee2e6;
  top: 0;
}

.horizontal-timeline .items .items-list .event-date {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 75px;
  margin: 0 auto;
  font-size: 0.9rem;
  padding-top: 8px;
}

@media (min-width: 1140px) {
  .horizontal-timeline .items .items-list {
    display: inline-block;
    width: 33%;
    padding-top: 45px;
  }

  .horizontal-timeline .items .items-list .event-date {
    top: -40px;
  }
}

.bg-danger {
    background-color: #537D99 !important;
}

.text-dark {
    color: var(--airslv-black) !important;
}

/*megamenù */

@media (min-width: 1200px) {

  /* il mega menu deve poter avere larghezza grande */
  .main-menu .main-menu__list > li.dropdown--mega,
  .stricky-header .main-menu__list > li.dropdown--mega {
    position: static;
  }

  /* pannello mega (override del submenu classico) */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu {
    left: 51.5%;
    right: auto;
    width: min(1200px, calc(100vw - 60px));
    min-width: 0;

    padding: 28px 30px;
    display: grid;
    gap: 22px 28px;

    /* mantieni logica show/hide del dropdown */
    transform: translateX(-50%) scaleY(0) translateZ(100px);
    transform-origin: top center;
  }

  .main-menu .main-menu__list > li.dropdown--mega:hover > ul.mega-menu,
  .stricky-header .main-menu__list > li.dropdown--mega:hover > ul.mega-menu {
    transform: translateX(-50%) scaleY(1) translateZ(0px);
  }

  /* 3 colonne */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu--3,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu--3 {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  /* 4 colonne */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu--4,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu--4 {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }

  /* colonna */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li.mega-menu__col,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li.mega-menu__col {
    width: auto;
  }

  /* titolo colonna */
  .main-menu .main-menu__list > li.dropdown--mega ul.mega-menu > li > a.mega-menu__title,
  .stricky-header .main-menu__list > li.dropdown--mega ul.mega-menu > li > a.mega-menu__title {
    padding: 0 0 12px 0;
    margin: 0;
    background: transparent;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;

    /* su desktop è solo “titolo” */
    pointer-events: none;
  }

  /* lista interna: statica (non submenu laterale) */
  .main-menu .main-menu__list > li.dropdown--mega ul.mega-menu > li > ul,
  .stricky-header .main-menu__list > li.dropdown--mega ul.mega-menu > li > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;

    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  /* link dentro colonne */
  .main-menu .main-menu__list > li.dropdown--mega ul.mega-menu > li > ul > li > a,
  .stricky-header .main-menu__list > li.dropdown--mega ul.mega-menu > li > ul > li > a {
    padding: 6px 0;
    background: transparent;
    line-height: 1.35;
  }
}

@media (min-width: 1200px) {

  /* TITOLI COLONNA: azzurri -> rossi (senza bg) */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li > a.mega-menu__title,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li > a.mega-menu__title {
    color: var(--airslv-primary);
    background-color: transparent;
    pointer-events: auto; /* se prima avevi messo none */
    transition: color 500ms ease;
  }

  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li:hover > a.mega-menu__title,
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li > a.mega-menu__title:hover,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li:hover > a.mega-menu__title,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li > a.mega-menu__title:hover {
    color: var(--airslv-base);
    background-color: transparent; /* evita il bg rosso del dropdown classico */
  }

  /* VOCI MENU (dentro le colonne): nere -> bianche con sfondo rosso */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li > ul > li > a,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li > ul > li > a {
    color: var(--airslv-black);
  }

  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu > li > ul > li:hover > a,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu > li > ul > li:hover > a {
    color: var(--airslv-white);
    background-color: var(--airslv-base);
  }
}

@media (min-width: 1200px) {

  /* 2 colonne */
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu--2,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu--2 {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  /* pannello meno largo SOLO per il 2-colonne:*/
  .main-menu .main-menu__list > li.dropdown--mega > ul.mega-menu--2,
  .stricky-header .main-menu__list > li.dropdown--mega > ul.mega-menu--2 {
    width: min(850px, calc(100vw - 60px));
  }
  
}
@media (max-width: 1199.98px) {
  .stricky-header {
    display: block !important;  
  }
}
.stricky-header {
  z-index: 100; 
}

/* FAQ*/

.faq-acc {
  position: relative;
  display: block;
}

.faq-acc__list {
  position: relative;
  display: block;
}

.faq-acc__item {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  background-color: var(--airslv-white);
  border-radius: 3px;
  overflow: hidden;
}

/* rimuove marker default */
.faq-acc__summary {
  list-style: none;
  cursor: pointer;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-color: var(--airslv-white);
  padding: 20px;
  border-radius: 3px;
  outline: none;
}

.faq-acc__summary::-webkit-details-marker { display: none; }
.faq-acc__summary::marker { content: ""; }

/* linea nera sotto (stile project-two__content::after) */
.faq-acc__summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #537D99;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 0;
}

/* gradiente animato (stile project-two__content-border) */
.faq-acc__border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;
  background-image: linear-gradient(-178deg, rgb(189, 219, 237) 10%, rgb(177, 25, 37) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 0;
}

.faq-acc__left,
.faq-acc__right {
  position: relative;
  z-index: 1;
}

.faq-acc__left {
  display: block;
  padding-right: 18px;
}

.faq-acc__tag {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: var(--airslv-base);
}

.faq-acc__question {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: var(--airslv-black);
}

/* bottone a destra (stile project-two__content-right a) */
.faq-acc__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 3px;
  background-color: #537D99;
  color: var(--airslv-white);
  font-size: 15px;

  transition: all 500ms ease;
}

.faq-acc__btn i {
  display: inline-block;
  transition: transform 500ms ease;
}

/* hover/open: sparisce linea nera e appare gradiente */
.faq-acc__summary:hover::after,
.faq-acc__item[open] > .faq-acc__summary::after {
  opacity: 0;
}

.faq-acc__summary:hover .faq-acc__border,
.faq-acc__item[open] > .faq-acc__summary .faq-acc__border {
  transform: scaleX(1);
  transform-origin: right center;
}

/* hover/open: bottone diventa base (rosso) */
.faq-acc__summary:hover .faq-acc__btn,
.faq-acc__item[open] > .faq-acc__summary .faq-acc__btn {
  background-color: var(--airslv-base);
}

/* open: ruota icona */
.faq-acc__item[open] > .faq-acc__summary .faq-acc__btn i {
  transform: rotate(90deg);
}

/* contenuto */
.faq-acc__answer {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(var(--airslv-black-rgb), 0.08);
}

.faq-acc__answer p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--airslv-black);
  opacity: 0.80;
}

/* responsive */
@media (max-width: 576px) {
  .faq-acc__summary {
    padding: 16px;
  }
  .faq-acc__btn {
    width: 44px;
    height: 44px;
  }
}

/* Solo per la sezione prodotti */
.product-section{
  position: relative;
  display: block;
  padding: 70px 0 70px;
}
.product-text{
  padding: 40px;
}
.product-box{
  background-color: #f5f5f5;
  position: relative;
}
/* Bordo rosso prodotto
.product-box::before{
  position: absolute;
    right: 0px;
    height: 95px;
    width: 2px;
    bottom: 0;
    background-color: #f55c62;
    content: "";
    z-index: 1;
}
.product-box::after{
  position: absolute;
    right: 0px;
    left: 170px;
    height: 2px;
    bottom: 0;
    background-color: #f55c62;
    content: "";
    z-index: 1;
} */

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.pb-120 {
  padding-bottom: 120px;
}
p, .text-muted, .project-one__text, .why-choose-one__text{
  font-size: 18px;
  font-weight: 500;
}

.text-black{
  color: var(--airslv-black)!important;
}
/* pag cataloghi */
.sidebar__post-content{
  flex: 1;
  min-width: 0; 
}

.sidebar__post-download .all-project{
  margin-left: auto;      
  white-space: nowrap;    
  padding: 8px 14px;      
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 576px){
  .sidebar__post-list li{
    flex-wrap: wrap;
  }

  .sidebar__post-download{
    margin-left: auto;
    margin-top: 10px;
  }
}

.img-cover {
  object-fit: cover;
    min-height: 100%;
}


.blog-two__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden; 
}

.blog-two__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* mantiene 16:9 tagliando se serve */
  object-position: center; 
}

/* Immagine in rapporto fisso (es. 16:9) */
.blog-details__img{
  width: 100%;
  aspect-ratio: 16 / 9;   /* cambia qui: 4/3, 1/1, ecc. */
  overflow: hidden;       
}

.blog-details__img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 500ms ease;
}

.blog-two__title{
  height: 90px;        /* fisso (prima era min-height: 90px) */
  overflow: hidden;

  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


.services-one__img{
  width: 100%;
  aspect-ratio: 16 / 9;   /* cambia qui: 4/3, 3/2, 1/1... */
  overflow: hidden;
}

.services-one__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;      
  display: block;
}

@media (max-width: 767.98px){
  .services-one__img{
    aspect-ratio: 1 / 1;  /* esempio: quadrato su mobile */
  }
}

@supports not (aspect-ratio: 1 / 1){
  .services-one__img{
    position: relative;
    height: 0;
    padding-top: 56.25%;  /* 16:9 -> (9/16)*100 */
  }
  .services-one__img img{
    position: absolute;
    inset: 0;
  }
}
.services-one__img.is-4x3 { aspect-ratio: 4 / 3; }
.services-one__img.is-square { aspect-ratio: 1 / 1; }

.services-details__img.macro-soluzioni {
  width: 100%;
  aspect-ratio: 1 / 1;   /* desktop = quadrato */
  overflow: hidden;
}

.services-details__img.macro-soluzioni img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* mobile */
@media (max-width: 992px){
  .services-details__img.macro-soluzioni {
    aspect-ratio: 16 / 9; /* mobile = 16:9 */
  }
}


/* WHY CHOOSE ONE - immagini responsive SENZA ritaglio */
.why-choose-one__img-box.img-servizi{
  display: flex;
  gap: 30px;            /* distanza tra le due colonne immagini */
  align-items: flex-start;
}

.why-choose-one__img-list-one.list-servizi{
  float: none;          /* disattiva il float del tema */
  flex: 1;              /* 50% + 50% */
  margin: 0;            /* azzera margini base */
}

.why-choose-one__img-list-one--two.list-servizi{
  margin-left: 0;       /* il gap gestisce lo spazio orizzontale */
  margin-top: 70px;     /* mantiene lo “sfalsamento” verticale */
}

.why-choose-one__img-list-one.list-servizi li{
  margin-bottom: 0;     /* hai una sola <li>, quindi non serve 30px */
}

.why-choose-one__img-list-one.list-servizi li > img{
  display: block;
  max-width: 100%;      /* si riduce se serve */
  height: auto;         /* mantiene proporzioni */
}


/*timeline*/
.timeline {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
}

.timeline .timeline-item {
  position: relative;
}

.timeline .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .timeline-item:after {
  background-color: hsl(0, 0%, 90%);
  left: -38px;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
}


/* pag cataloghi download MOBILE: niente immagine, titolo sopra, bottone/area download sotto (stile invariato) */
@media (max-width: 576px) {

  
  .sidebar__post-image {
    display: none !important;
  }

  .sidebar__post-list li {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sidebar__post-content {
    width: 100%;
    top: 0; 
    text-align: center;
  }

  .sidebar__post-download {
    width: 100%;
    margin-left: 0;
  }

  .sidebar__post-download .all-project {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    white-space: normal; 
  }
}

/* --- Modifiche Sticky Menu --- */

.main-menu .main-header__middle-logo {
    display: none;
}

.stricky-header.stricky-fixed .main-header__middle-logo {
    display: block !important;
    margin: 8px auto 0 auto; 
    text-align: center;
}

.stricky-header.stricky-fixed .main-menu__wrapper-inner {
    flex-direction: column !important; 
    justify-content: center !important;
    align-items: center !important;
}

.stricky-header.stricky-fixed .main-menu__list {
    justify-content: center !important;
    width: 100%;
}
.sticky-logo-container {
    display: none;
}


@media (max-width: 1200px) {
    /* Mostra il logo solo quando è sticky */
    .stricky-header.stricky-fixed .sticky-logo-container {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }

    .stricky-header.stricky-fixed .sticky-logo-container img {
        width: 180px;
    }

    .stricky-header.stricky-fixed .main-menu__wrapper-inner {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 20px 0 !important;
    }

    .stricky-header.stricky-fixed .main-menu__right {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .stricky-header.stricky-fixed .main-menu__wrapper-inner {
        flex-direction: row !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        height: 70px !important;
    }

   
    .stricky-header.stricky-fixed .sticky-logo-container {
        display: block;
        margin-bottom: 0;
    }

    .stricky-header.stricky-fixed .sticky-logo-container img {
        width: 120px; 
    }

    .stricky-header.stricky-fixed .main-menu__left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px;
    }

    .stricky-header.stricky-fixed .mobile-nav__toggler {
        display: block !important;
        order: 2;
    }

   
    .stricky-header.stricky-fixed .main-menu__right {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .stricky-header.stricky-fixed .thm-btn {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .stricky-header.stricky-fixed .main-header__middle-logo {
        display: none !important;
    }
}

