:root {
  --theme-color1-rgb: 255, 238, 2;
  --theme-color2-rgb: 0, 0, 0;
  --theme-color-light-rgb: 255, 255, 255;
  --theme-color-dark-rgb: 0, 0, 0;
  --theme-color1: #3baa34;                    /* theme color */
  --theme-color2: #000000;
  --review-color: #fdc009;
  --theme-color-light: #FFFFFF;
  --theme-color-dark: #000000;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --text-color-bg-theme-color1: #000;
  --text-color-bg-theme-color2: #fff;
  --text-color-bg-theme-color3: #fff;
  --text-color: #000;
  --headings-color: var(--theme-color-dark);
  --link-color: var(--theme-color-dark);
  --link-hover-color: var(--theme-color-dark);
  --title-font: "Lexend", sans-serif;
  --text-font: "Epilogue", sans-serif;
  --style-font: "Archivo", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 30px;
  --body-line-height-stretch: 22px;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.3em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 84px;
  --h2-font-size: 46px;
  --h3-font-size: 34px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --h1-font-weight: 600;
  --h2-font-weight: 600;
  --h3-font-weight: 600;
  --h4-font-weight: 600;
  --h5-font-weight: 400;
  --h6-font-weight: 400;
  --sec-title-subtitle-color: #141414;
  --sec-title-subtitle-font-size: 16px;
  --sec-title-subtitle-font-family: var(--title-font);
  --sec-title-subtitle-font-weight: 500;
  --sec-title-subtitle-line-height: 24px;
  --sec-title-color: var(--theme-color-dark);
  --sec-title-font-size: 55px;
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #131313;
  --container-width: 1200px;
  --small-container-width: 1050px;
  --large-container-width: 1800px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * -----------------------------------------------
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

.text-stretch {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height-stretch);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dd,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * -----------------------------------------------
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

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

section > .container {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pb);
}

.container-custom {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

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

.form-control {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder {
  color: #686a6f;
}

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

/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.title a {
  color: inherit;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #000000;
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color1);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--theme-color-dark);
  color: var(--theme-color-light);
}

/*=== List Style One ===*/
.list-style-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
}
.list-style-one li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-right: 76px;
  padding-top: 5px;
  font-family: var(--text-font);
  color: var(--theme-color-dark);
}
.list-style-one li:last-child {
  margin-right: 0;
}
.list-style-one li i {
  position: relative;
  color: var(--theme-color-dark);
  font-size: 24px;
  line-height: 1em;
  margin-right: 5px;
  margin-top: -5px;
}
.list-style-one li a {
  display: block;
  font-weight: 500;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-one li a:hover {
  text-decoration: underline;
}
.list-style-one.light li,
.list-style-one.light a {
  color: var(--theme-color-light) !important;
}
.list-style-one.light a:hover {
  text-decoration: underline;
}
.list-style-one.light i {
  color: var(--theme-color1);
}

/*=== List Style Two ===*/
.list-style-two {
  position: relative;
}
.list-style-two li {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  padding-left: 28px;
  margin-bottom: 10px;
  font-family: var(--text-font);
  color: var(--theme-color-dark);
}
@media (max-width: 575.98px) {
  .list-style-two li {
    padding-left: 20px;
    font-size: 14px;
  }
}
.list-style-two li:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #b5b5b5;
  background-color: var(--theme-color-light);
}
.list-style-two.light li {
  color: var(--theme-color-light) !important;
}

/*Social Icon One*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.social-icon-one li {
  margin-left: 22px;
  padding-left: 27px;
  border-left: 1px solid #424242;
  display: inline-block;
}
.social-icon-one li:first-child {
  margin-left: 0;
  border-left: none;
}
.social-icon-one li a {
  position: relative;
  display: block;
  color: var(--theme-color-light);
  font-size: 17px;
  line-height: 1em;
}
.social-icon-one li a:hover {
  color: var(--theme-color1);
}

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

.bg-pattern-2 {
  background-image: url(../images/background/experience-background-mb-taxi.webp);
  aspect-ratio: 1923 / 799;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-pattern-3 {
  background-image: url(../images/background/flow-background-mb-taxi.webp);
  aspect-ratio: 1927 / 755;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-pattern-7 {
  background-image: url(../images/background/services-background-mb-taxi.webp);
  aspect-ratio: 1923 / 1060;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-pattern-8 {
  background-image: url(../images/background/about-background-mb-taxi.webp);
  aspect-ratio: 1920 / 892;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

/*======================
    Media Play Button 
======================*/
.play-btn {
  position: relative;
  display: inline-block;
}
.play-btn:hover .icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.play-btn .icon-triangle {
  background-color: var(--theme-color-light);
  border: 6px solid var(--theme-color1);
  border-radius: 50%;
  color: var(--theme-color-dark);
  font-size: 30px;
  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;
  height: 93px;
  width: 93px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}

.default-navs .owl-nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.default-navs .owl-next,
.default-navs .owl-prev {
  position: relative;
  margin: 0 -70px;
  margin-top: -150px;
  display: block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #7f7f7f;
  color: var(--theme-color-dark);
  background: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 0;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
}

.default-dots .owl-dots {
  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: 100%;
}
.default-dots .owl-dots .owl-dot {
  position: relative;
  width: 73px;
  height: 7px;
  border: 1px solid #c1c1c1;
  background-color: transparent;
  margin: 0 4.5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots .owl-dots .owl-dot.active {
  background-color: var(--light-color0);
  border: 2px solid var(--light-color0);
}

.default-dots-two .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.default-dots-two .owl-dots .owl-dot {
  border-radius: 50%;
  position: relative;
  width: 10px;
  height: 10px;
  border: 2px solid var(--theme-color1);
  background-color: transparent;
  margin: 0 4.5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots-two .owl-dots .owl-dot.active {
  background-color: var(--theme-color-dark);
  border-color: var(--theme-color-dark);
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--theme-color-dark);
  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;
}
.preloader h2 {
  position: relative;
  color: rgba(255, 255, 255, 0.3);
  font-size: 5em;
  letter-spacing: 0.01em;
  line-height: 1em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .preloader h2 {
    font-size: 4em;
  }
}
.preloader h2:before {
  content: attr(data-text);
  position: absolute;
  margin-top: 2px;
  max-width: 120%;
  white-space: nowrap;
  overflow: hidden;
  color: var(--theme-color1);
  -webkit-animation: loading 5s linear infinite;
          animation: loading 5s linear infinite;
  font-family: var(--title-font);
}
.preloader h2:after {
  position: absolute;
  right: 0;
  bottom: -10px;
  content: "Loading...";
  font-size: 18px;
  line-height: 1em;
  color: var(--theme-color-light);
  font-weight: 500;
  letter-spacing: 0.005em;
}
@media (max-width: 575.98px) {
  .preloader h2:after {
    font-size: 14px;
  }
}

@-webkit-keyframes loading {
  0% {
    max-width: 0;
  }
}

@keyframes loading {
  0% {
    max-width: 0;
  }
}

.theme-btn {
  position: relative;
  display: block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.theme-btn .btn-title {
  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;
  z-index: 1;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  padding: 24px 90px 20px 60px;
  font-weight: 700;
  color: var(--theme-color-dark);
  background-color: var(--theme-color1);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.btn-style-one:before {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  width: 7px;
  height: 100%;
  -webkit-transform: skewX(-21deg);
          transform: skewX(-21deg);
  background-color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.btn-style-one:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.btn-style-one i {
  position: relative;
  top: 1px;
  display: block;
  margin-left: 10px;
}
.btn-style-one:hover {
  color: var(--theme-color-light);
}
.btn-style-one:hover:after {
  width: 100%;
  right: auto;
  left: 0;
  z-index: -1;
}
.btn-style-one:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.btn-style-one.dark-line:before {
  background-color: var(--theme-color-dark);
}
.btn-style-one.dark-line:hover:before {
  background-color: var(--theme-color-light);
}

/*** 

====================================================================
  Anim Icons
====================================================================

***/
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: left;
          transform-origin: left;
}

[text-split] {
  opacity: 0;
}

.word {
  overflow: hidden;
  margin-bottom: -0.1em;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.icon-triangle {
  width: 8px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
}

.sub-icon {
  width: 26px;
  height: 54px;
  background-image: url(../images/icons/icon-blue.webp);
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes zoom-one {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@-webkit-keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom-two {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.overlay-anim {
  position: relative;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*** 

====================================================================
Main Header
====================================================================

***/

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

.header-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top .inner-container {
  position: relative;
  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;
  width: 100%;
  padding: 0 80px;
}
@media (max-width: 1399.98px) {
  .header-top .inner-container {
    padding: 0 20px;
  }
}
.header-top .top-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header .header-lower {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .header-lower .logo-box {
  position: relative;
  padding: 20px 0;
}

.main-header {
  width: 100%;
  z-index: 999;
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-header .main-box .nav-outer {
  position: relative;
  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;
  width: 100%;
}

.main-menu {
  position: relative;
}
@media (max-width: 991.98px) {
  .main-menu {
    display: none;
  }
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 14px 0px;
  margin-right: 48px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0%;
  height: 2px;
  margin-top: 10px;
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
.main-menu .navigation > li:hover:before, .main-menu .navigation > li.current:before {
  left: 0;
  width: 100%;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: var(--theme-color-light);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > a .icon {
  position: relative;
  font-size: 22px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}
.main-menu .navigation > li.current > a {
  color: var(--theme-color1);
}
.main-menu .navigation > li.dropdown > a {
  padding-right: 14px;
  margin-right: -14px;
}
.main-menu .navigation > li.dropdown > a:after {
  content: "\f107";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 20px;
  display: block;
  line-height: 24px;
  font-size: 12px;
  z-index: 5;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-top: -2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 10px 0 0;
  background-color: #ffffff;
  margin-top: 30px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebf1f5;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0px;
  line-height: 29px;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color-dark);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: var(--theme-colo-dark);
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 11px;
  display: block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0px;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 220px;
  z-index: 100;
  display: none;
  background-color: #ffffff;
  opacity: 0;
  padding: 10px 0 0;
  margin-top: 10px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ebf1f5;
  width: 100%;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color-dark);
  text-align: left;
  margin: 0 30px;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--theme-colo-dark);
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.main-header .outer-box .theme-btn {
  margin-left: 40px;
}

.main-header .info-btn {
  position: relative;
  font-size: 16px;
  padding-left: 44px;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
  line-height: 20px;
  margin-left: 40px;
}
.main-header .info-btn small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color1);
}
.main-header .info-btn .icon {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  line-height: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1em;
  margin-right: 20px;
  padding-right: 20px;
}
.main-header .info-btn:hover {
  color: var(--theme-color-light);
}

/*** 

====================================================================
    Header Style One
====================================================================

***/
.header-style-one {
  position: relative;
}
.header-style-one .header-top {
  position: relative;
  background-color: var(--theme-color-dark);
}
.header-style-one .header-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--theme-color1);
}
.header-style-one .header-top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 100%;
  background-color: var(--theme-color1);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media (max-width: 991.98px) {
  .header-style-one .header-top {
    display: none;
  }
}
.header-style-one .header-top .inner-container {
  padding: 0;
}
.header-style-one .header-lower {
  position: relative;
  background-color: var(--theme-color-dark);
}
.header-style-one .header-lower .main-box .logo-box {
  position: relative;
  margin-right: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .header-style-one .header-lower .main-box .logo-box {
    padding: 10px 0;
  }
}
.header-style-one .header-lower .main-box .nav-outer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-style-one .header-lower .main-box .outer-box {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*** 

====================================================================
    Sticky Header
====================================================================

***/
.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 99999;
  background: #ffffff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .sticky-header {
    padding: 5px 0;
  }
}

.sticky-header.fixed-header {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}

.sticky-header .logo {
  padding: 5px 0;
}
.sticky-header .logo img {
  max-height: 90px;
}
.sticky-header .nav-outer {
  position: relative;
  background: none;
}
.sticky-header .inner-container {
  position: relative;
  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;
}

.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-left: 60px;
  padding: 20px 0;
}

.sticky-header .main-menu .navigation > li > a {
  color: var(--theme-color-dark);
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--theme-color-dark);
}

.sticky-header .outer-box {
  display: none;
}

.sticky-header .mobile-nav-toggler {
  color: var(--theme-color-light);
}

@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}
/*** 

====================================================================
      Mobile Menu
====================================================================

***/
.mobile-nav-toggler {
  position: relative;
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  color: var(--theme-color-dark);
  display: none;
  margin-left: 20px;
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
@media (max-width: 991.98px) {
  .mobile-nav-toggler {
    display: block;
  }
}
.mobile-nav-toggler.light {
  color: var(--theme-color-light);
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  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;
  width: 100%;
  padding: 20px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  text-align: center;
  font-size: 18px;
  color: var(--theme-color1);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 70px;
}
.mobile-menu .menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background-color: #000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
  color: var(--theme-color1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}

.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
  width: 100%;
}
.contact-list-one li {
  position: relative;
  padding-left: 54px;
  min-height: 50px;
  margin-bottom: 20px;
}
.contact-list-one li .icon {
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 34px;
  line-height: 40px;
  color: var(--theme-color1);
}
.contact-list-one li .title {
  display: block;
  font-size: 14px;
  color: var(--theme-color-dark);
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-list-one li .text {
  font-size: 14px;
  line-height: 24px;
  color: var(--theme-color-dark);
}
.contact-list-one li .text a {
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-one li .text a:hover {
  color: var(--theme-color1);
}
.contact-list-one.light li .text,
.contact-list-one.light li .title {
  color: var(--theme-color-light);
}
.contact-list-one.light li .text a,
.contact-list-one.light li .title a {
  color: var(--theme-color-light);
}

.mobile-menu .social-links {
  position: relative;
  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;
  background: var(--theme-color-dark);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--theme-color2);
}

/*** 

====================================================================
    Section Title
====================================================================

***/
.sec-title {
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .sec-title br {
    display: none;
  }
}
.sec-title .sub-icon {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 5px;
}
.sec-title .sub-title {
  position: relative;
  display: block;
  font-size: var(--sec-title-subtitle-font-size);
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  color: var(--sec-title-subtitle-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sec-title h1 {
  position: relative;
  font-size: var(--h1-font-size);
  line-height: 1.09;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .sec-title h1 {
    font-size: 84px;
  }
}
@media (max-width: 991.98px) {
  .sec-title h1 {
    font-size: 72px;
  }
}
@media (max-width: 767.98px) {
  .sec-title h1 {
    font-size: 68px;
  }
}
@media (max-width: 575.98px) {
  .sec-title h1 {
    font-size: 36px;
  }
}
.sec-title h2 {
  position: relative;
  font-size: var(--sec-title-font-size);
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  margin-bottom: 0;
  letter-spacing: -0.03em;
  line-height: 1.09;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .sec-title h2 {
    line-height: 1em;
  }
}
@media (max-width: 575.98px) {
  .sec-title h2 {
    font-size: 46px;
  }
  .sec-title h2 br {
    display: none;
  }
}
.sec-title .text {
  position: relative;
  color: var(--theme-color-dark);
  margin-top: 20px;
}
@media (max-width: 575.98px) {
  .sec-title .text {
    font-size: 16px;
  }
}
.sec-title.light .sub-title {
  color: var(--theme-color-light);
}
.sec-title.light .sub-title:before {
  background: var(--theme-color1);
}
.sec-title.light .text {
  color: var(--theme-color-light);
}
.sec-title.light h2,
.sec-title.light h1 {
  color: var(--theme-color-light);
}

/*** 

====================================================================
    Main Slider
====================================================================

***/
#rev_slider_one_wrapper {
  min-height: 715px;
}

.main-slider {
  position: relative;
  min-height: 715px;
}

.main-slider .tp-dottedoverlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-color: var(--theme-color-dark);
}
.main-slider .tp-dottedoverlay:after {
  content: "";
  position: absolute;
  top: -127px;
  right: 50px;
  width: 837px;
  height: 842px;
}
@media only screen and (max-width: 1699px) {
  .main-slider .tp-dottedoverlay:after {
    right: 0;
  }
}
@media (max-width: 1399.98px) {
  .main-slider .tp-dottedoverlay:after {
    right: -100px;
  }
}
@media (max-width: 1199.98px) {
  .main-slider .tp-dottedoverlay:after {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .main-slider {
    min-height: auto;
  }
}
.main-slider h1 {
  position: relative;
  display: block;
  color: var(--theme-color-light);
  font-size: 74px;
  line-height: 1.2em;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .main-slider h1 {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .main-slider h1 {
    font-size: 44px;
  }
  .main-slider h1 br {
    display: none;
  }
}
.main-slider .text {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 34px;
  color: var(--theme-color-light);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .main-slider .text {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .main-slider .text {
    font-size: 18px;
  }
}
/* ----------------------- */
/* Desktop */
.desktop-only { display: inline-block; }
.mobile-only { display: none; }

/* Mobile */
@media (max-width: 767.98px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }
}
/* ----------------------- */

.accordion-box {
  position: relative;
}
.accordion-box .block {
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  position: relative;
}
.accordion-box .block .acc-btn {
  border-bottom: 1px solid #fff;
  color: var(--headings-color);
  cursor: pointer;
  font-size: 20px;
  font-family: var(--title-font);
  font-weight: var(--h4-font-weight);
  padding: 20px 30px;
  padding-right: 70px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn .icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  height: 35px;
  line-height: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
  background-color: var(--bg-theme-color2);
  color: var(--theme-color-light);
}
.accordion-box .block .acc-btn.active .icon {
  color: var(--text-color-bg-theme-color2);
}
.accordion-box .block .acc-btn.active .icon:before {
  content: "\f068";
}
.accordion-box .block .acc-content {
  display: none;
  position: relative;
}
.accordion-box .block .acc-content .content {
  padding: 25px 30px;
  position: relative;
}
.accordion-box .block .acc-content .content .text {
  display: block;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
.accordion-box .block .acc-content.current {
  display: block;
}

.banner-carousel .owl-nav {
  position: relative;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .banner-carousel .owl-nav {
    display: none !important;
  }
}
.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
  margin-bottom: -20px;
  display: block;
  height: 54px;
  width: 54px;
  line-height: 54px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 60px;
  color: var(--theme-color-light);
  background-color: transparent;
  border: 1px solid var(--theme-color-light);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--theme-color-dark);
}

/*** 

====================================================================
    Benefit Section
====================================================================

***/
.benefit-section {
  position: relative;
  padding: 120px 0 80px;
}
.benefit-section .sec-title .sub-title {
  margin-bottom: 5px;
}
.benefit-section:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1100px;
  height: 100%;
  background-color: var(--theme-color1);
  clip-path: polygon(18% 0, 100% 0, 80% 100%, 0% 100%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .benefit-section:before {
    display: none;
  }
}
.benefit-section .image-column {
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .benefit-section .image-column {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.benefit-section .image-column .inner-column {
  position: relative;
  margin-top: -85px;
  margin-left: -35px;
  margin-right: -45px;
  
  /* --- AGGIUNTA per centrare l'immagine --- */                       
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 991.98px) {
  .benefit-section .image-column .inner-column {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.benefit-section .image-column .inner-column .image {
  position: relative;
  display: block;
  margin-bottom: 0;
  clip-path: polygon(31% 0, 100% 0, 69% 100%, 0% 100%);
}
@media (max-width: 991.98px) {
  .benefit-section .image-column .inner-column .image {
    clip-path: none;
    margin: 0 auto;
  }
}
.benefit-section .blocks-column {
  position: relative;
  z-index: 2;
}
.benefit-section .blocks-column.style-two .inner-column {
  margin-left: 20px;
}
@media (max-width: 991.98px) {
  .benefit-section .blocks-column.style-two .inner-column {
    margin-left: 0;
  }
}

.benefit-block {
  margin-bottom: 65px;
}
@media (max-width: 767.98px) {
  .benefit-block {
    margin-bottom: 30px;
  }
}
.benefit-block .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.benefit-block .inner-box .icon {
  position: relative;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 2px;
  color: var(--theme-color1);
  background-color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;

  /* --- AGGIUNTA per impedire il deformarsi/ridimenasionarsi dell'icona --- */
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
}
.benefit-block .inner-box .title {
  position: relative;
  font-size: 30px;
  margin-bottom: 5px;
}
.benefit-block .inner-box .text {
  position: relative;
  max-width: 265px;
  margin-bottom: 0;
}

/*** 
====================================================================
  About Section
====================================================================
***/
.about-section {
  padding: 120px 0 70px;
  position: relative;
}
.about-section .content-column {
  margin-bottom: 50px;
}
.about-section .content-column .inner-column {
  padding-left: 80px;
  padding-top: 56px;
  position: relative;
}
@media only screen and (max-width: 1699px) {
  .about-section .content-column .inner-column {
    padding-left: 30px;
  }
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column {
    padding-left: 0;
    padding-top: 0;
  }
}
.about-section .content-column .inner-column .sec-title {
  margin-bottom: 20px;
}
.about-section .content-column .inner-column .sec-title .text {
  padding-right: 30px;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .sec-title .text {
    padding-right: 0;
  }
}
.about-section .content-column .inner-column .bottom-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -2px;
  padding-top: 55px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .bottom-box {
    margin-left: 0;
    padding-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .bottom-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-section .content-column .inner-column .bottom-box .info-btn {
  position: relative;
}
.about-section .content-column .inner-column .bottom-box .info-btn small {
  color: var(--theme-color-dark);
  display: block;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 0;
  position: relative;
  text-transform: uppercase;
}
.about-section .content-column .inner-column .bottom-box .info-btn strong {
  color: var(--theme-color-dark);
  display: block;
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 1.4em;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.about-section .content-column .inner-column .bottom-box .info-btn strong:hover {
  text-decoration: underline;
}
.about-section .content-column .inner-column .bottom-box .author-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 57px;
  position: relative;
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .bottom-box .author-box {
    margin-left: 0;
    margin-top: 10px;
  }
}
.about-section .content-column .inner-column .bottom-box .author-box .author-image {
  position: relative;
}
.about-section .content-column .inner-column .bottom-box .author-box .author-image img {
  position: relative;
  z-index: 1;
}
.about-section .content-column .inner-column .bottom-box .author-box .author-image:before {
  background-color: var(--theme-color1);
  clip-path: polygon(45% 0, 100% 0, 55% 100%, 0% 100%);
  content: "";
  height: 108px;
  left: -2px;
  position: absolute;
  top: -9px;
  width: 100px;
}
.about-section .content-column .inner-column .bottom-box .author-box .author-info {
  padding-left: 16px;
  padding-top: 5px;
  position: relative;
}
.about-section .content-column .inner-column .bottom-box .author-box .author-info .name {
  color: var(--theme-color-dark);
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1px;
  position: relative;
}
.about-section .content-column .inner-column .bottom-box .author-box .author-info .designation {
  color: var(--theme-color-dark);
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
}
.about-section .image-column {
  margin-bottom: 50px;
}
.about-section .image-column .inner-column {
  margin-bottom: 82px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.about-section .image-column .inner-column:before {
  background-color: var(--theme-color1);
  content: "";
  height: 678px;
  left: 80px;
  position: absolute;
  top: -50px;
  -webkit-transform: skewX(-23deg);
          transform: skewX(-23deg);
  width: 350px;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column:before {
    display: none;
  }
}
.about-section .image-column .inner-column .image,
.about-section .image-column .inner-column .image-2 {
  display: inline-block;
  margin-bottom: 0;
  position: relative;
}
.about-section .image-column .inner-column .image img,
.about-section .image-column .inner-column .image-2 img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column .image {
    height: 600px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .inner-column .image {
    height: auto;
  }
}
.about-section .image-column .inner-column .image-2 {
  position: absolute;
  right: -12px;
  top: 30px;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column .image-2 {
    display: none;
  }
}
.about-section .image-column .inner-column .video-box {
  bottom: -93px;
  position: absolute;
  right: 50px;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column .video-box {
    display: none;
  }
}
.about-section .image-column .inner-column .video-box .play-btn {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*** 

====================================================================
    Funfacts Section
====================================================================

***/
.funfact-section {
  position: relative;
  padding: 10px 0 30px;
}

.counter-block {
  margin-bottom: 90px;
}
.counter-block:last-child .inner-box:before {
  display: none;
}
.counter-block .inner-box {
  position: relative;
  text-align: center;
}
.counter-block .inner-box:before {
  content: "";
  position: absolute;
  bottom: 35px;
  right: -40px;
  width: 26px;
  height: 54px;
  background-image: url(../images/icons/icon-white.webp);
}
.counter-block .inner-box:hover .icon-box .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.counter-block .inner-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.counter-block .inner-box .icon-box.two:before {
  right: auto;
  left: -17px;
}
.counter-block .inner-box .icon-box.three:before {
  right: 50%;
  -webkit-transform: translate(50%);
          transform: translate(50%);
}
.counter-block .inner-box .icon-box:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -7px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: var(--theme-color1);
}
.counter-block .inner-box .icon-box .icon {
  position: relative;
  display: inline-block;
  color: var(--theme-color-dark);
  font-size: 105px;
  line-height: 1em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .counter-block .inner-box .icon-box .icon {
    font-size: 80px;
  }
}
.counter-block .inner-box .counter-one {
  position: relative;
  font-size: 90px;
  line-height: 1em;
  letter-spacing: 0.04em;
  font-family: var(--title-font);
  color: var(--theme-color-dark);
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .counter-block .inner-box .counter-one {
    font-size: 60px;
  }
}
.counter-block .inner-box .counter-text {
  position: relative;
  font-size: 20px;
  line-height: 1em;
  color: var(--theme-color-dark);
  margin-bottom: 0;
  margin-top: -10px;
  text-transform: uppercase;
}

/*** 

====================================================================
    Testimonials Section
====================================================================

***/
.testimonial-section {
  position: relative;
  padding: 120px 0 120px;
  z-index: 3;
}
.testimonial-section:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 800px;
  background-color: var(--theme-color1);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 2% 100%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .testimonial-section:before {
    display: none;
  }
}
.testimonial-section .sec-title {
  margin-bottom: -141px;
}
@media (max-width: 1199.98px) {
  .testimonial-section .sec-title {
    margin-bottom: 23px;
  }
}
.testimonial-section .owl-nav {
  display: none;
}
.testimonial-section .default-dots .owl-dots {
  margin-top: 38px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -5px;
}

.testimonial-block {
  position: relative;
  z-index: 3;
}
.testimonial-block .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--theme-color-light);
    padding: 10px 10px;
  }
}
.testimonial-block .inner-box .image {
  position: absolute;
  bottom: 0px;
  right: -5px;
  display: block;
  margin-bottom: 46px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 477px;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .testimonial-block .inner-box .image {
    right: 0;
    height: auto;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box .image {
    position: relative;
    clip-path: none;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}
.testimonial-block .inner-box .image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block .inner-box .content {
  position: relative;
  margin-top: 162px;
  width: 93%;
  padding: 45px 500px 40px 80px;
  background-color: var(--theme-color-light);
}
@media (max-width: 1399.98px) {
  .testimonial-block .inner-box .content {
    padding-left: 50px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial-block .inner-box .content {
    margin-top: 0;
    padding-left: 30px;
    padding-right: 430px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .testimonial-block .inner-box .content {
    padding: 30px 20px;
  }
}
@media (max-width: 575.98px) {
  .testimonial-block .inner-box .content {
    padding: 30px 5px 10px;
  }
}
.testimonial-block .inner-box .content .text {
  position: relative;
  color: var(--theme-color-dark);
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 33px;
}
@media (max-width: 575.98px) {
  .testimonial-block .inner-box .content .text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.testimonial-block .inner-box .content .author-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .testimonial-block .inner-box .content .author-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial-block .inner-box .content .author-box .icon {
  position: relative;
  width: 73px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 15px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color1);
}
.testimonial-block .inner-box .content .author-box .author-info {
  position: relative;
  padding-top: 19px;
}
.testimonial-block .inner-box .content .author-box .author-info .name {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1px;
  font-family: var(--text-font);
}
.testimonial-block .inner-box .content .author-box .author-info .designation {
  position: relative;
  display: block;
  color: #161616;
}
.testimonial-block .inner-box .content .author-box .author-info .rating {
  position: relative;
  padding-top: 11px;
  margin-left: -2px;
}
@media (max-width: 575.98px) {
  .testimonial-block .inner-box .content .author-box .author-info .rating {
    margin-left: 0;
    padding-top: 5px;
  }
}
.testimonial-block .inner-box .content .author-box .author-info .rating i {
  position: relative;
  color: #101010;
  font-size: 12px;
  margin-right: 2px;
}

/*** 

====================================================================
    Testimonials Section Three
====================================================================

***/
.testimonial-section-three {
  background-color: #f5f5f5;
  position: relative;
  padding: 201px 0 120px;
  z-index: 3;
}
.testimonial-section-three .bg-image {
  background-image: url(../images/background/testimonials-background-mb-taxi.webp);
  pointer-events: none;
}
.testimonial-section-three:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 280px;
  height: 100%;
  width: 585px;
  background-color: var(--theme-color1);
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .testimonial-section-three:before {
    display: none;
  }
}
.testimonial-section-three:after {
  content: "";
  position: absolute;
  top: 267px;
  left: 198px;
  height: 238px;
  width: 190px;
  background-color: var(--theme-color-dark);
  clip-path: polygon(35% 0, 100% 0, 67% 100%, 0% 100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .testimonial-section-three:after {
    display: none;
  }
}
.testimonial-section-three .sec-title {
  margin-bottom: 27px;
  padding-left: 80px;
}
.testimonial-section-three .sec-title h2 {
  font-size: 40px;
}
.testimonial-section-three .owl-nav {
  display: none;
}
.testimonial-section-three .default-dots-two .owl-dots {
  margin-top: 48px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 80px;
}

.testimonial-block-three {
  position: relative;
  z-index: 3;
}
.testimonial-block-three .inner-box {
  position: relative;
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .testimonial-block-three .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--theme-color-light);
    padding: 10px 10px;
  }
}
.testimonial-block-three .inner-box .content {
  position: relative;
}
.testimonial-block-three .inner-box .content .text {
  border-bottom: 1px solid rgba(22, 23, 26, 0.15);
  position: relative;
  color: var(--theme-color-dark);
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 45px;
  padding-bottom: 37px;
  padding-left: 13px;
}
@media (max-width: 575.98px) {
  .testimonial-block-three .inner-box .content .text {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.testimonial-block-three .inner-box .content .text:before {
  background-color: var(--theme-color1);
  content: "";
  position: absolute;
  height: calc(100% - 52px);
  width: 3px;
  left: 0;
  top: 7px;
}
.testimonial-block-three .inner-box .content .box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.testimonial-block-three .inner-box .content .author-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .testimonial-block-three .inner-box .content .author-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonial-block-three .inner-box .content .author-box .author-image {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 30px;
}
.testimonial-block-three .inner-box .content .author-box .author-info {
  position: relative;
  padding-top: 6px;
}
.testimonial-block-three .inner-box .content .author-box .author-info .name {
  position: relative;
  font-size: 24px;
  letter-spacing: -0.2px;
  margin-bottom: 1px;
}
.testimonial-block-three .inner-box .content .author-box .author-info .designation {
  position: relative;
  display: block;
}
.testimonial-block-three .inner-box .content .author-rating {
  margin-left: 3px;
  /*padding-top: 13px;*/
}
.testimonial-block-three .inner-box .content .author-rating .rating-title {
  color: #16171A;
  font-size: 20px;
  font-family: var(--title-font);
  line-height: 1;
}
.testimonial-block-three .inner-box .content .author-rating .rating {
  position: relative;
  padding-top: 3px;
  margin-left: -2px;
}
@media (max-width: 575.98px) {
  .testimonial-block-three .inner-box .content .author-rating .rating {
    margin-left: 0;
    padding-top: 5px;
  }
}
.testimonial-block-three .inner-box .content .author-rating .rating i {
  position: relative;
  color: #FFEE02;
  font-size: 12px;
  margin-right: 2px;
}

/*** 
====================================================================
  Work Section
====================================================================
***/
.work-section {
  padding: 120px 0 120px;
  position: relative;
  color: #000 !important;
}
@media (max-width: 991.98px) {
  .work-section {
    padding-bottom: 90px;
  }
}
.work-section .sec-title {
  margin-bottom: 85px;
}

.work-block {
  margin-bottom: 30px;
}
.work-block .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  position: relative;
}
@media (max-width: 991.98px) {
  .work-block .inner-box {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .work-block .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.work-block .inner-box::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 65px;
  width: 155px;
  height: 304px;
  opacity: 0.3;
  background-color: var(--theme-color1);
  -webkit-transform: skewX(-24deg);
          transform: skewX(-24deg);
}
@media (max-width: 991.98px) {
  .work-block .inner-box::before {
    display: none;
  }
}
.work-block .inner-box:hover .icon {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.work-block .inner-box .icon {
  position: relative;
  width: 110px;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 60px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  color: var(--theme-color-dark);
  background-color: var(--theme-color-light);
  border: 1px solid var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .work-block .inner-box .icon {
    margin-right: 0;
    margin: 0 auto 10px;
  }
}
.work-block .inner-box .content {
  position: relative;
  padding-top: 5px;
}
.work-block .inner-box .content .title {
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.work-block .inner-box .content .text {
  position: relative;
  padding-right: 10px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .work-block .inner-box .content .text {
    padding-right: 0;
  }
}

/*** 

====================================================================
    Clients Section
====================================================================

***/
.clients-section {
  position: relative;
  padding: 120px 0;
  background-color: #eef0f6;
}
.clients-section--light  { 
  background-color: #fff; 
}
@media (max-width: 991.98px) {
  .clients-section .default-navs .owl-nav {
    display: none !important;
  }
}
.clients-section .sponsors-outer {
  position: relative;
  margin-right: -20px;
}
@media (max-width: 1199.98px) {
  .clients-section .sponsors-outer {
    margin-right: 0;
  }
}

.client-block {
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 3;
}
.client-block .image {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 181px;
  min-height: 160px;
  background-color: #f4f4f4;
  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;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.client-block img {
  position: relative;
  max-height: 140px;
  width: auto !important;
  display: inline-block !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/***
==================================================================
	Main Footer
==================================================================
***/
.main-footer {
  position: relative;
}
.main-footer .widgets-section {
  padding: 100px 0 60px;
  position: relative;
}
.main-footer .footer-column {
  margin-bottom: 50px;
  position: relative;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  color: var(--theme-color-light);
  display: block;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 37px;
  margin-bottom: 40px;
  padding-bottom: 2px;
  position: relative;
  text-transform: uppercase;
}
.main-footer .widget-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #212121;
}
.main-footer .widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--theme-color1);
}
.main-footer .about-widget .logo {
  margin-bottom: 28px;
}
.main-footer .about-widget .text {
  color: #b7b7b7;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}

.contact-list-two {
  padding: 0;
  position: relative;
}
.contact-list-two li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 575.98px) {
  .contact-list-two li br {
    display: none;
  }
}
.contact-list-two li i {
  background-color: var(--theme-color1);
  color: var(--theme-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  height: 44px;
  margin-right: 45px;
  min-width: 44px;
  position: relative;
  width: 44px;
}
.contact-list-two li i:after {
  background-color: var(--theme-color1);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: -21px;
  width: 21px;
}
.contact-list-two li:last-child {
  margin-bottom: 0;
}
.contact-list-two li a {
  color: var(--theme-color-dark);
  display: inline-block;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-two.light li {
  color: #b7b7b7;
}
.contact-list-two.light a {
  color: #b7b7b7;
}
.contact-list-two.light a:hover {
  color: var(--theme-color1);
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
  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;
  border-top: 2px solid #212121;
  padding: 35px 0;
}
@media (max-width: 767.98px) {
  .footer-bottom .inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .footer-bottom .inner-container {
    padding: 15px 0;
  }
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--theme-color-light);
  margin-bottom: 0px;
}
@media (max-width: 575.98px) {
  .footer-bottom .copyright-text {
    font-size: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer-bottom .copyright-text a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-light);
  text-decoration: underline;
}
.footer-bottom .footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .footer-bottom .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bottom .footer-nav li {
  margin-left: 45px;
}
@media (max-width: 767.98px) {
  .footer-bottom .footer-nav li {
    margin-left: 0;
    margin: 0 20px;
  }
}
.footer-bottom .footer-nav li a {
  position: relative;
  color: #b7b7b7;
  text-decoration: underline;
}
.footer-bottom .footer-nav li a:hover {
  text-decoration: none;
  color: var(--theme-color1);
}
.footer-bottom .footer-nav li i {
  margin-right: 5px;
}

/***

==================================================================
	Main Footer
==================================================================

***/
.footer-style-one {
  position: relative;
}
.footer-style-one .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: var(--theme-color-dark);
}
.footer-style-one .widgets-section {
  padding: 120px 0 55px;
}
@media (max-width: 575.98px) {
  .footer-style-one .widgets-section {
    padding-bottom: 20px;
  }
}
.footer-style-one .about-widget .text {
  padding-right: 10px;
}

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

/***

====================================================================
        Contact
====================================================================

***/
.contact-details2 {
  background-color: #000000;
}

.contact-details {
  background-color: #eef0f6;
}
.contact-details__info {
  position: relative;
  display: block;
  margin-top: 41px;
}
.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-details__info li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--theme-color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .icon span {
  color: var(--text-color-bg-theme-color1);
  font-size: 25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li:hover .icon {
  background-color: var(--theme-color2);
}
.contact-details__info li:hover .icon span {
  color: var(--theme-color-light);
}
.contact-details__info li:hover .text a {
  color: var(--notech-base);
}
.contact-details__info li:hover .text a span {
  color: var(--notech-gray);
}
.contact-details__info li .text {
  margin-left: 30px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 18px;
  color: var(--notech-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .text span {
  font-size: 20px;
  color: var(--notech-black);
}
.contact-details__info li + li {
  margin-top: 19px;
}

/***
==================================================================
	Main Footer
==================================================================
***/
.main-footer {
  position: relative;
}
.main-footer .widgets-section {
  padding: 100px 0 60px;
  position: relative;
}
.main-footer .footer-column {
  margin-bottom: 50px;
  position: relative;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  color: var(--theme-color-light);
  display: block;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 37px;
  margin-bottom: 40px;
  padding-bottom: 2px;
  position: relative;
  text-transform: uppercase;
}
.main-footer .widget-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #212121;
}
.main-footer .widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--theme-color1);
}
.main-footer .about-widget .logo {
  margin-bottom: 28px;
}
.main-footer .about-widget .text {
  color: #b7b7b7;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}

.contact-list-two {
  padding: 0;
  position: relative;
}
.contact-list-two li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 575.98px) {
  .contact-list-two li br {
    display: none;
  }
}
.contact-list-two li i {
  background-color: var(--theme-color1);
  color: var(--theme-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  height: 44px;
  margin-right: 45px;
  min-width: 44px;
  position: relative;
  width: 44px;
}
.contact-list-two li i:after {
  background-color: var(--theme-color1);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: -21px;
  width: 21px;
}
.contact-list-two li:last-child {
  margin-bottom: 0;
}
.contact-list-two li a {
  color: var(--theme-color-dark);
  display: inline-block;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-two.light li {
  color: #b7b7b7;
}
.contact-list-two.light a {
  color: #b7b7b7;
}
.contact-list-two.light a:hover {
  color: var(--theme-color1);
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
  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;
  border-top: 2px solid #212121;
  padding: 35px 0;
}
@media (max-width: 767.98px) {
  .footer-bottom .inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .footer-bottom .inner-container {
    padding: 15px 0;
  }
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--theme-color-light);
  margin-bottom: 0px;
}
@media (max-width: 575.98px) {
  .footer-bottom .copyright-text {
    font-size: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-light);
}
.footer-bottom .footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .footer-bottom .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-bottom .footer-nav li {
  margin-left: 45px;
}
@media (max-width: 767.98px) {
  .footer-bottom .footer-nav li {
    margin-left: 0;
    margin: 0 20px;
  }
}
.footer-bottom .footer-nav li a {
  position: relative;
  color: #b7b7b7;
  text-decoration: underline;
}
.footer-bottom .footer-nav li a:hover {
  text-decoration: none;
  color: var(--theme-color1);
}
.footer-bottom .footer-nav li i {
  margin-right: 5px;
}

/***

==================================================================
	Main Footer
==================================================================

***/
.footer-style-one {
  position: relative;
}
.footer-style-one .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: var(--theme-color-dark);
}
.footer-style-one .widgets-section {
  padding: 120px 0 55px;
}
@media (max-width: 575.98px) {
  .footer-style-one .widgets-section {
    padding-bottom: 20px;
  }
}
.footer-style-one .about-widget .text {
  padding-right: 10px;
}

/***

==================================================================
	CUSTOM
==================================================================

***/

/* ----------------------------------------------------
   BOOK FORM: color for messange box in case of error
---------------------------------------------------- */

#book_form label.error {
    color: #e67d7d;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* ----------------------------------------------------
   FOOTER: mobile layout
---------------------------------------------------- */

@media (max-width: 767.98px) {
    /* The two columns become a single column */
    .footer-widget .row > .widget-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Columnized contact list */
    .contact-list-two li {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    /* Each number goes on one row */
    .contact-list-two li a {
        display: block;
        margin-bottom: 6px;
    }
}

/* ----------------------------------------------------
   TESTIMONIAL TITLE: allinea al centro in mobile
---------------------------------------------------- */

@media (max-width: 767.98px) {
    .testimonial-section-three .sec-title {
        padding-left: 0 !important;
        text-align: center !important;
    }
}

/* ----------------------------------------------------
   LANGUAGE SWITCH (next to Instagram)
---------------------------------------------------- */
/* Layout inline */
.social-icon-one {
    display: flex;
    align-items: center;
}

.social-icon-one li {
    padding-left: 13px;
    margin-left: 0;
}

/* space between Instagram amd languages */
.social-icon-one .lang-spacer {
    width: 50px;
}

/* Lingue */
.social-icon-one .lang-switch a {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color-dark);
    margin-left: 1px;
    transition: color 0.3s ease;
}

/* Hover lingue */
.social-icon-one .lang-switch a:hover {
    color: var(--theme-color1);
}

/* Flags */
.lang-flag {
    width: 22px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
}

/* ----------------------------------------------------
   Error Page
---------------------------------------------------- */
.sad-face {
    color: var(--theme-color1);
}

/* 
-----------------------------------------------------------------------------------------------------------------------------------------
   DARK STYLE
----------------------------------------------------------------------------------------------------------------------------------------- 
*/
:root {
  --dark-color1: #111111;
  --dark-color2: #232323;
  --dark-color3: #343434;
  --dark-color4: #212529;
  --light-color0: #ffffff;
}

body,
.sticky-header.fixed-header,
.page-wrapper {
  background-color: var(--dark-color1);
}

.testimonial-block .inner-box .content .author-box .author-info .rating i {
  color: var(--theme-color1);
}

.testimonial-block .inner-box .content,
.client-block .image {
  background-color: var(--dark-color2);
}

.default-dots .owl-dots .owl-dot,
.default-navs .owl-next, .default-navs .owl-prev {
  border-color: var(--light-color0) !important;
}

.list-style-one li,
.main-header .header-top .inner-container .top-left .list-style-one li a {
  color: var(--text-color);
}

.main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a,
.about-section .content-column .inner-column .bottom-box .author-box .author-info .name,
.about-section .content-column .inner-column .bottom-box .info-btn strong,
.counter-block .inner-box .counter-one,
.counter-block .inner-box .icon-box .icon,
.testimonial-block .inner-box .content .author-box .author-info .name,
.list-style-one li i {
  color: #fff;
}

.clients-section.alternate {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.list-style-two li,
.about-section .content-column .inner-column .bottom-box .author-box .author-info .designation,
.about-section .content-column .inner-column .bottom-box .info-btn small,
.sticky-header .main-menu .navigation > li > a,
.counter-block .inner-box .counter-text,
.testimonial-block .inner-box .content .text,
.testimonial-block .inner-box .content .author-box .author-info .designation,
.work-block .inner-box .content .text {
  color: rgba(255, 255, 255, 0.5) !important;
}

.work-block .inner-box .content .text-stretch {
    color: rgba(0, 0, 0, 0.5) !important;
    font-style: italic !important;
}

.work-block .inner-box .icon,
.default-navs .owl-next,
.default-navs .owl-prev,
.play-btn .icon-triangle {
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
}

.counter-block .inner {
  background-image: unset;
}

.testimonial-section .bg-pattern-2,
.faqs-section .bg-pattern-2{
  opacity: 0.55;
}

/***

==================================================================
	CUSTOM
==================================================================

***/

/* ----------------------------------------------------
   Booking form - Privacy checkbox
---------------------------------------------------- */
#book .form-check-label {
  color: #fff;
}

#book .form-check-label a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

#book .form-check-label a:hover,
#book .form-check-label a:focus {
  text-decoration: underline;
}

/* ----------------------------------------------------
   Contact form - Privacy checkbox
---------------------------------------------------- */
#contact .contact-check-label a {
  font-weight: 700;
  text-decoration: none;
}

#contact .contact-check-label a:hover,
#contact .contact-check-label a:focus {
  text-decoration: underline;
}

/* ----------------------------------------------------
   Google Places Autocomplete
---------------------------------------------------- */

.pac-container {
  width: auto !important;
  min-width: 280px;
  z-index: 99999 !important;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */

/* CONTACT LIST FIX (anchors + line breaks) */
.contact-list-two li{
  display: grid !important;
  grid-template-columns: 44px 1fr;
  column-gap: 45px;
  align-items: flex-start !important;
}
.contact-list-two li > i{
  margin-right: 0 !important;
  margin-top: 7px;
  min-width: 44px;
  width: 44px;
  height: 44px;
}
.contact-list-two li .contact-text{
  display: block;
}
.contact-list-two li .contact-text a{
  display: block;
  margin-bottom: 0;
}
.contact-list-two li .contact-text a:last-child{
  margin-bottom: 0;
}
@media (max-width: 575.98px){
  .contact-list-two li br{
    display: inline !important;
  }
}

.privacy-section {
  background-color: var(--theme-color-light);
  color: var(--theme-color-darkt) !important;
}