:root {
  --gutter-x: 30px;
  --hamWidth: 30px;
  --hamHeight: 2px;
  --hamMargin: 6px;
  --hamTranslate: 8px;
  --hamTranslate3: -8px;
  --hamBg: $bcolor;
  --preloaderBg: $bcolor;
  --hamBg: #142c46;
  --preloaderBg: #142c46;
  --xxxxl: 300px;
  --xxxl: 75px;
  --xxxl2: 150px;
  --xxl: 60px;
  --xl: 50px;
  --lg: 40px;
  --lg2: 36px;
  --lg3: 30px;
  --lg4: 28px;
  --md: 24px;
  --md2: 20px;
  --md3: 18px;
  --sm: 16px;
  --xs: 14px;
  --xxs: 13px;
  --xxxs: 11px;
  --section: 100px;
}

@media (max-width: 1199px) {
  :root {
    --xxxxl: 225px;
    --xxxl2: 112px;
    --xxxl: 56px;
    --xxl: 45px;
    --xl: 37px;
    --lg: 30px;
    --lg2: 27px;
    --lg3: 22px;
    --lg4: 21px;
    --md: 18px;
    --md2: 15px;
    --md3: 15px;
    --section: 75px;
  }
}
@media (max-width: 991px) {
  :root {
    --xxxxl: 180px;
    --xxxl2: 90px;
    --xxxl: 45px;
    --xxl: 36px;
    --xl: 30px;
    --lg: 24px;
    --lg2: 22px;
    --lg3: 18px;
    --lg4: 17px;
    --md: 15px;
    --sm: 15px;
    --section: 60px;
  }
}
@media (max-width: 767px) {
  :root {
    --gutter-x: 20px;
  }
}
@media (max-width: 479px) {
  :root {
    --xxxxl: 144px;
    --xxxl2: 72px;
    --xxxl: 36px;
    --xxl: 29px;
    --xl: 27px;
    --lg: 20px;
    --lg2: 18px;
    --lg3: 17px;
    --lg4: 16px;
  }
}
h1 {
  font-family: "Lato", sans-serif;
  font-size: var(--xxl);
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

h2 {
  font-family: "Lato", sans-serif;
  font-size: var(--xl);
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-SemiBold.eot");
  src: url("../fonts/Lato-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-SemiBold.woff2") format("woff2"), url("../fonts/Lato-SemiBold.woff") format("woff"), url("../fonts/Lato-SemiBold.ttf") format("truetype"), url("../fonts/Lato-SemiBold.svg#Lato-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*===========================================================
 Common CSS
============================================================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  font-weight: 400;
  color: #2e2e2e;
  letter-spacing: normal;
  line-height: 1.6;
  overflow-x: hidden !important;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none !important;
}

*:active,
*:focus {
  outline: none;
  border: 0;
}

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

strong {
  font-weight: 700;
}

u {
  line-height: 1;
  text-decoration: unset;
}

.cboth {
  overflow: hidden;
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

button {
  background-color: transparent;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button:active,
button:focus {
  outline: 0;
  outline: 0;
}

/*===========================================================
 Placeholder Style
============================================================*/
::-webkit-input-placeholder {
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}

:-moz-placeholder {
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}

::-moz-placeholder {
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}

:-ms-input-placeholder {
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/
.go-top {
  bottom: 15px;
  display: none;
  position: fixed;
  right: 15px;
  z-index: 999;
}
.go-top img {
  width: 35px;
}
.go-top span {
  color: #58b8cb;
  cursor: pointer;
  float: right;
  font-size: var(--sm);
  font-weight: 400;
  line-height: 22px;
  padding: 5px 10px;
}

/*===========================================================
Containers
============================================================*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter-x) * -0.5);
  margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.container {
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}
/*===========================================================
Loader
===========================================================*/
.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99999999;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 2px solid #58b8cb;
  border-top: 3px solid var(--preloaderBg);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: 1s infinite spin;
  animation: 1s infinite spin;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#loading-msg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
  color: #58b8cb;
  font-size: 0.8em;
}

.loadingContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 40px 10px;
  width: auto;
  display: inline-block;
}
.loadingContainer div {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #000;
  float: left;
  margin: 0 3px;
}
.loadingContainer .ball1 {
  background: #f3541e;
  z-index: 1;
  -webkit-animation: bounce 3s infinite ease-in-out;
          animation: bounce 3s infinite ease-in-out;
}
.loadingContainer .ball2 {
  background: #58b8cb;
  -webkit-animation: bounce 3s infinite ease-in-out;
          animation: bounce 3s infinite ease-in-out;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loadingContainer .ball3 {
  background: #58b8cb;
  -webkit-animation: bounce 3s infinite ease-in-out;
          animation: bounce 3s infinite ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes bounce {
  0%, 15% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -30px);
            transform: translate(0, -30px);
  }
  85%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes bounce {
  0%, 15% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -30px);
            transform: translate(0, -30px);
  }
  85%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.text-center {
  text-align: center;
}

.seafoam-color {
  color: #58b8cb !important;
}

.orange-color {
  color: #f3541e;
}

.seafoam-bg {
  background-color: #58b8cb !important;
}

.dark-color {
  color: #2e2e2e !important;
}
.dark-color-alt {
  color: rgba(0, 0, 0, 0.7) !important;
}

.dark-bg {
  background-color: #2e2e2e !important;
}
.dark-bg:before {
  background-color: #2e2e2e !important;
}

.max-w-100 {
  max-width: 100% !important;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.pdb-120 {
  padding-bottom: 120px !important;
}
@media (max-width: 991px) {
  .pdb-120 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .pdb-120 {
    padding-bottom: 60px !important;
  }
}

.pdb-190 {
  padding-bottom: 190px;
}
@media (max-width: 991px) {
  .pdb-190 {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .pdb-190 {
    padding-bottom: 100px;
  }
}

.pdb-0 {
  padding-bottom: 0 !important;
}

.pd-0 {
  padding: 0 !important;
}

.mr-0 {
  margin: 0 !important;
}

.pd-100 {
  padding: var(--section) 0;
}

.pd-30 {
  padding: 30px 0;
}

.pdt-90 {
  margin-top: 90px !important;
}

@media (max-width: 1199px) {
  .hide-xl {
    display: none;
  }
}
@media (max-width: 991px) {
  .hide-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-md {
    display: none;
  }
}

.ohidden {
  overflow: hidden;
}

@media (min-width: 768px) {
  .show-md {
    display: none;
  }
}

.pos-relative {
  position: relative;
}

.banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.banner-area {
  padding: var(--section) 0;
  position: relative;
}
.banner-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media (max-width: 991px) {
  .banner-area::before {
    background: rgba(255, 255, 255, 0.75);
  }
}
.banner-left {
  position: relative;
  z-index: 10;
}
.banner-right {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.slick-list {
  overflow: visible;
}

.slick-arrow {
  top: -60px !important;
}
.slick-arrow img {
  width: 40px;
}

.slick-arrow.slick-disabled {
  opacity: 0;
}

.slick-left {
  position: absolute;
  right: 70px;
  z-index: 1;
}

.slick-right {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.banner-left h6 {
  color: #58b8cb;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.content-area {
  background-color: #2e2e2e;
  padding: var(--section) 0;
}
.content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.content-text {
  max-width: 675px;
  width: calc(100% - 430px);
  color: #eef7f9;
}
@media (max-width: 991px) {
  .content-text {
    width: calc(100% - 330px);
  }
}
@media (max-width: 767px) {
  .content-text {
    max-width: 100%;
    width: 100%;
  }
}
.content-text h2 {
  color: #eef7f9;
  font-weight: 900;
}
.content-img {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 991px) {
  .content-img {
    max-width: 330px;
  }
}
@media (max-width: 767px) {
  .content-img {
    max-width: 100%;
  }
}

.projekte-title {
  margin-top: 30px;
  margin-bottom: 50px;
}
.projekte-title h2 {
  font-weight: 900;
}

.bg-gray-top {
  position: relative;
}
.bg-gray-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: rgba(238, 247, 249, 0.5);
}

.counter-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 15px;
}
.counter-text {
  text-align: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.counter-text p {
  font-size: var(--sm);
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  text-align: center;
  color: #2e2e2e;
}
.counter-single {
  line-height: 1;
  text-align: center;
}
.counter-single .counter {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--xxl);
  font-weight: 600;
}
.counter-single span {
  font-size: var(--lg3);
  font-weight: 600;
}
.counter-2 span,
.counter-2 p {
  color: #eef7f9 !important;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background: #eef7f9;
  color: #000 !important;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: var(--xs);
  position: absolute;
  z-index: 1;
  padding: 8px;
  top: -120px;
  left: -110px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.slider-title {
  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;
}
.slider-title h1,
.slider-title h2,
.slider-title h4,
.slider-title h5,
.slider-title h6,
.slider-title h3 {
  margin: 0;
}

.title-arrow {
  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;
  gap: 20px;
}
.title-arrow div {
  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;
  cursor: pointer;
}
.title-arrow div img {
  min-width: 45px;
}
@media (max-width: 991px) {
  .title-arrow div img {
    min-width: 30px;
    width: 30px;
  }
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
  padding: 26px 0;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 9999;
}

.header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  left: 80px;
}
@media (max-width: 479px) {
  .menu-mode {
    left: 55px;
    gap: 5px;
  }
}
.menu-mode li {
  list-style: none;
}
.menu-mode li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .menu-left {
    width: 210px;
  }
}
.menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1299px) {
  .menu-wrap {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .menu-wrap {
    gap: 10px;
  }
}
.menu ul {
  margin: 0;
}
.menu ul li {
  list-style: none;
  display: inline-block;
  margin: 0 !important;
  line-height: 1;
}
@media (max-width: 1199px) {
  .menu ul li img {
    width: 32px;
  }
}
.menu ul li a {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.menu ul li a:hover {
  color: #f3541e;
}
.menu-contact-bttn {
  color: #fff !important;
  padding: 14px 40px;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  font-weight: 600;
  border-radius: 100px;
  text-align: center;
}
@media (max-width: 1199px) {
  .menu-contact-bttn {
    padding: 10px 15px;
  }
}
@media (max-width: 767px) {
  .menu-contact-bttn {
    margin-top: 15px;
  }
}
.menu-contact-bttn:hover {
  background: #f3541e !important;
}

.dropdown-menu {
  margin: 0 !important;
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: var(--sm);
  list-style: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
  display: none;
}

.panel-header {
  display: none;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #fff;
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.slideout-open .slideout-menu {
  background: #34495e;
}

.btn-hamburger {
  cursor: pointer;
}

.menu-section-list {
  padding: 25px 10px;
}

.menu-section-list li a:hover {
  color: #58b8cb;
}

.menu-section-list li a {
  line-height: 2;
  color: #fff;
}

.menu-section-list li {
  display: block;
}

.btn-hamburger img {
  width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */
.hamburger:hover {
  cursor: pointer;
}

.hamburger:hover .line {
  opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
  opacity: 0;
}

.slideout-open .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
          transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
          transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/
.hamburger .line {
  width: var(--hamWidth);
  height: var(--hamHeight);
  background-color: var(--hamBg);
  display: block;
  margin: var(--hamMargin) auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger .line:first-child {
  margin-top: 0;
}
.hamburger .line:last-child {
  margin-bottom: 0;
}

.hamburger:hover {
  cursor: pointer;
}

/* ONE */
.slideout-open .line:nth-child(2) {
  opacity: 0;
}

.slideout-open .line:nth-child(1) {
  -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
  transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
  -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
  transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
  display: block;
  position: relative;
}

.menu ul li .dropdown-menu li a {
  padding: 8px 15px;
  line-height: 1.2;
  display: block;
}

.dropdown-menu {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.dropdown a {
  position: relative;
}

.dropdown > a:hover::after {
  color: #f3541e;
}

.dropdown > a::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
  .dropdown:hover > a + .dropdown-menu {
    display: block;
  }
  .dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }
  .dropdown .dropdown > a::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-top: -4px;
  }
}
@media (max-width: 991px) {
  #main {
    padding-top: 0;
  }
  .pdt-90 {
    margin-top: 60px !important;
  }
  .header-area {
    display: none;
  }
  .mobile-logo {
    width: 200px;
  }
  .mobile-logo a {
    line-height: 1;
    display: block;
  }
  .dropdown-menu {
    padding-top: 0;
  }
  .menu ul li .dropdown-menu li {
    padding-left: 10px;
  }
  .menu ul li .dropdown-menu li a {
    padding-left: 0;
    padding-right: 0;
  }
  .dropdown-menu {
    width: 100%;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    position: unset;
    top: unset;
  }
  main .mobileMenuOpener {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    z-index: 10;
  }
  .menu ul li {
    display: block;
  }
  .menu ul li a {
    color: #fff;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 2;
  }
  .menu ul li .dropdown-menu li a {
    line-height: 2;
  }
  .dropdown > a::after {
    right: 10px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
  }
  /*Menu Activation*/
  .panel-header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    -webkit-box-shadow: 0px 1px 3px #eee;
            box-shadow: 0px 1px 3px #eee;
    padding: 20px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
  }
}
@media (max-width: 379px) {
  .mobile-logo {
    width: 180px;
  }
}
.footer-area {
  background-color: #2e2e2e;
  padding-top: 80px;
  position: relative;
  padding-bottom: var(--section);
}
@media (max-width: 767px) {
  .footer-area {
    padding-bottom: 0;
  }
}
.footer-area ul li {
  list-style: none;
  margin: 0 !important;
}
.footer-area ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
  text-decoration: none;
}
.footer-area ul li a:hover {
  color: #f3541e;
}
.footer-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  background-color: #fff;
  top: 0;
  left: 0;
  border-radius: 0 0 45px 45px;
}
@media (max-width: 767px) {
  .footer-area:before {
    border-radius: 0 0 30px 30px;
  }
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer-top {
    gap: 20px;
  }
}
.footer-middle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .footer-middle {
    padding-bottom: 30px;
  }
}
.footer-middle .bttn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  width: 100%;
  padding-left: 5px;
}
.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media (max-width: 767px) {
  .footer-left {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-left p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
  max-width: 330px;
}
.footer-contact a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: var(--lg3);
  font-weight: bold;
  display: block;
  text-align: right;
}
@media (max-width: 767px) {
  .footer-contact a {
    text-align: left;
  }
}
.footer-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--lg);
  font-weight: 500;
  color: #eef7f9;
  text-decoration: none;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 80px;
  }
}
.footer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
}
@media (max-width: 767px) {
  .footer-card {
    gap: 30px;
  }
}
.footer-card h6 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.footer-card a {
  display: inline-block;
  padding: 3px 0;
  position: relative;
}
.footer-card a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/green-dot.png);
  right: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}
.footer-card a:hover:before {
  opacity: 1;
}
.footer-card a.active:before {
  opacity: 1;
}
.footer-right {
  max-width: 250px;
  width: 100%;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
}
.footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.discuss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  gap: 50px;
}
.discuss div .man-1 {
  position: relative;
  z-index: 1;
}
.discuss div .man-2 {
  margin-left: -20px;
  position: absolute;
  z-index: 0;
}
.discuss p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: var(--xxs);
  width: 140px;
  line-height: 1.3;
}

.chart-area {
  padding-bottom: 70px;
}
.chart-inner {
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .chart-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.chart-itself {
  width: 470px;
  height: 470px;
}
@media (max-width: 991px) {
  .chart-itself {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .chart-itself {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 479px) {
  .chart-itself {
    width: 280px;
    height: 280px;
  }
}
.chart-legend h3 {
  font-size: var(--lg);
  font-weight: normal;
  color: #000;
}
.chart-legend h4 {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--md);
  font-weight: 900;
  line-height: 1.04;
  margin-top: 50px;
  margin-bottom: 20px;
}

.legendLi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.legendLi span {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
}

.modal {
  width: 1100px;
  max-width: calc(100% - 30px);
  border-radius: 10px;
  background-color: #fff;
  margin: 50px auto;
  border: 1px solid #bbb;
  padding: 30px;
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .modal {
    padding: 15px 10px;
    top: 15px;
    margin-top: 0;
  }
}
.modal-area {
  display: none;
  padding: 15px;
}
.modal-area.active {
  display: block;
}
@media (max-width: 767px) {
  .modal-area {
    padding-top: 0;
  }
}
.modal-inner {
  position: relative;
  padding-top: 80px;
}
.modal-inner textarea {
  height: 45px !important;
  padding: 0 15px !important;
}
@media (max-width: 767px) {
  .modal-inner {
    padding-top: 30px;
  }
}
.modal-number {
  position: absolute;
  top: 0;
  left: 0;
}
.modal-title p {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
  margin-bottom: 25px;
}
.modal-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .modal-radios {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .modal-radios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modal-scroll {
  width: 870px;
  max-width: 100%;
  position: absolute;
  top: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.modal-scroll img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 420px;
  -webkit-transition: 8s all ease;
  transition: 8s all ease;
}
.modal-scroll img:hover {
  -o-object-position: bottom;
     object-position: bottom;
}
.modal-loading-img {
  text-align: center;
  margin-top: 44px;
}
.modal-loading-title {
  text-align: center;
}
.modal-loading-title h3 {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--lg2);
  font-weight: normal;
}
.modal-loading-title P {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}
.modal .pricing-flex {
  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;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .modal .pricing-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.modal .pricing-left {
  max-width: 335px;
  width: 100%;
}
.modal .pricing-left ul li {
  list-style: none;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
  padding: 5px 0;
}
.modal .pricing-right {
  max-width: 365px;
  width: 100%;
}
.modal .pricing-right P {
  margin-bottom: 10px;
}

.references-card:hover .modal-scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cross {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.single-check {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  position: relative;
  padding: 16px 20px;
  text-align: center;
  width: 200px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .single-check {
    width: 100%;
  }
  .single-check img {
    height: 50px;
  }
}
.single-check label span span {
  display: block;
  margin-top: 10px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}

.single-check label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  border: solid 1px #ccc;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
}

.single-check span {
  position: relative;
  color: #212121;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  pointer-events: none;
}

.single-check input {
  display: none;
}

.single-check input:checked + label {
  border: solid 1px #f3541e;
  background-color: rgba(243, 84, 30, 0.05);
}

.single-check input:checked + label + span {
  color: #fafafa;
}

.check-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .check-bar {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.check-bar span {
  width: calc(25% - 10px);
  height: 6px;
  border-radius: 5px;
  background-color: #dff1f4;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.check-bar span.active {
  background-color: #f3541e;
}

.text-right {
  text-align: right;
}
.text-right button {
  cursor: pointer;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-area {
  padding-top: var(--section);
}
.contact-area-puppert {
  padding-top: 0;
  margin-top: -140px;
}
@media (max-width: 1399px) {
  .contact-area-alt .contact-left {
    max-width: calc(100% - 200px);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 15px;
  }
}
@media (max-width: 1399px) and (max-width: 767px) {
  .contact-area-alt .contact-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}
@media (max-width: 1399px) {
  .contact-area-alt .contact-right {
    max-width: 200px;
  }
}
@media (max-width: 1399px) and (max-width: 991px) {
  .contact-area-alt .contact-inner {
    padding: 15px;
  }
}
@media (max-width: 1399px) and (max-width: 767px) {
  .contact-area-alt .contact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
}
.contact-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 35px;
  background-color: #eef7f9;
  padding-left: 37px;
  min-height: 282px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-inner {
    padding: 30px 10px;
    border-radius: 30px;
  }
}
.contact-shadow {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .contact-shadow {
    display: none;
  }
}
.contact-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  max-width: calc(100% - 362px);
  width: 100%;
}
@media (max-width: 767px) {
  .contact-left {
    max-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-left h2 {
  font-family: "Lato", sans-serif;
  font-size: var(--xl);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.7);
}
.contact-left p {
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
  max-width: 400px;
  width: 100%;
}
.contact-right {
  max-width: 362px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .contact-right {
    max-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .contact-right p {
    text-align: left;
  }
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  border: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.file-upload-btn span {
  display: block;
  color: #2e2e2e;
}
.file-upload-btn:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
.file-upload-btn:active {
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.file-upload-content {
  display: none;
  position: relative;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  position: relative;
}

.image-title-wrap {
  color: #2e2e2e;
  width: 48px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.file-upload-name {
  padding: 15px;
}

.remove-image {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: none;
  text-transform: uppercase;
  cursor: pointer;
}
.remove-image:active {
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.card-review__wrapper {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.card-review__wrapper .slick-list {
  overflow: hidden;
}
.card-review__wrapper .slick-dots {
  width: 100%;
  max-width: 1100px;
  height: 6px;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #dff1f4;
  border-radius: 5px;
}
.card-review__wrapper .slick-dots li {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 6px;
  margin: 0;
}
.card-review__wrapper .slick-dots li button {
  padding: 0;
  width: 100%;
  margin: 0;
}
.card-review__wrapper .slick-dots li button::before {
  content: "";
  background: #f3541e;
  border-radius: 5px;
  height: 6px;
  width: 0%;
  opacity: 0;
}
.card-review__wrapper .slick-dots li.slick-active {
  display: block;
  width: 100%;
}
.card-review__wrapper .slick-dots li.slick-active button::before {
  content: "";
  background: #f3541e;
  border-radius: 5px;
  height: 6px;
  width: 100%;
  -webkit-transition: width 3s linear;
  transition: width 3s linear;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
  opacity: 1;
}

.card-review__slide {
  position: relative;
}
.card-review__slide h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: var(--md2);
  font-weight: bold;
  color: #fff;
  z-index: 10;
}
.card-review__slide img {
  width: 100%;
}

.testimonial-area {
  background-color: #2e2e2e;
  border-radius: 45px 45px 0 0;
  padding: var(--section) 0;
}
@media (max-width: 767px) {
  .testimonial-area {
    border-radius: 30px 30px 0 0;
  }
}
.testimonial-title {
  margin-bottom: 65px;
}
.testimonial-title h2 {
  color: #eef7f9;
  font-weight: 900;
}
.testimonial-text {
  position: relative;
  z-index: 10;
}
.testimonial-text p {
  color: rgba(238, 247, 249, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.testimonial-text a {
  color: #58b8cb;
  font-family: "Lato", sans-serif;
  font-size: var(--md2);
  font-weight: 900;
  text-decoration: none;
  display: block;
}
.testimonial-text div span {
  color: rgba(238, 247, 249, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  line-height: 1.5;
  padding-right: 20px;
}
.testimonial-card-inner {
  position: relative;
  padding: 0 var(--section) 0 50px;
}
@media (max-width: 1199px) {
  .testimonial-card-inner {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .testimonial-card-inner {
    padding-right: 0px;
    padding-left: 30px;
  }
}
.testimonial-card-inner .quote-icon {
  font-size: var(--xxxl2);
  font-weight: normal;
  line-height: 1;
  color: #dff1f4;
  position: absolute;
  left: 0;
  top: -35px;
}

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

.references-area {
  padding-top: var(--section);
}
.references-area .container {
  position: relative;
  z-index: 10;
}
.references-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  position: relative;
}
.references-title .intudstires-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 333;
  max-width: 430px;
  background: #eef7f9;
  padding: 40px 10px 0 40px;
  border-radius: 20px;
  display: none;
}
.references-title .intudstires-dropdown.active {
  display: block;
}
.references-title .intudstires-dropdown ul {
  height: 340px;
  overflow: auto;
  padding-right: 25px;
}
.references-title .intudstires-dropdown ul::-webkit-scrollbar {
  width: 6px;
}
.references-title .intudstires-dropdown ul::-webkit-scrollbar-thumb {
  background: #58b8cb;
  border-radius: 10px;
}
.references-title .intudstires-dropdown ul::-webkit-scrollbar-thumb:hover {
  background: #58b8cb;
}
.references-title .intudstires-dropdown ul::-webkit-scrollbar-track {
  border-radius: 10px;
}
.references-title .intudstires-dropdown ul li {
  list-style: none;
}
.references-title .intudstires-dropdown ul li button {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.references-title .intudstires-dropdown ul li button.active {
  color: #58b8cb;
}
.references-title .intudstires-dropdown ul li button:hover {
  color: #58b8cb;
}
.references-title h2 {
  font-weight: 900;
  margin: 0;
}
@media (max-width: 479px) {
  .references-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
.references-inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin: 0 -8px;
}
.references-card {
  width: calc(33.33% - 11px);
}
.references-card-inner {
  padding: 0 8px;
}
@media (max-width: 1199px) {
  .references-card {
    width: calc(50% - 8px);
    position: relative;
  }
}
@media (max-width: 767px) {
  .references-card {
    width: 100%;
  }
}
.references-card .topic {
  position: absolute;
  top: 18px;
  left: 23px;
  z-index: 10;
}
.references-card .topic span {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: var(--xxxs);
  font-weight: bold;
  border-radius: 999px;
  border: solid 1px #eef7f9;
  display: inline-block;
  padding: 5px 20px;
}
.references-img {
  position: relative;
}
.references-img > img {
  border-radius: 10px;
  display: block;
  width: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.references-img::before {
  border-radius: 10px;
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 46, 46, 0.4)), to(rgba(46, 46, 46, 0.9)));
  background-image: linear-gradient(to bottom, rgba(46, 46, 46, 0.4), rgba(46, 46, 46, 0.9));
}
.references-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 0 30px;
  z-index: 10;
}
.references-text h4 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: var(--md);
  font-weight: bold;
  line-height: 1.08;
}
.references-text P {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
}
.references-text a {
  color: #f3541e;
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
  font-weight: 500;
  border-bottom: 1px solid #f3541e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  line-height: 1.3;
  gap: 5px;
}

.erde-rund-slider {
  max-width: calc(100% - 310px);
  width: 100%;
  background: #fff;
  margin: 0 -12px;
}
.erde-rund-slider-area {
  padding-top: var(--section);
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .erde-rund-slider-area {
    padding-bottom: 0;
  }
}
.erde-rund-slider-title {
  margin-bottom: 15px;
  max-width: calc(100% - 335px);
  width: 100%;
  margin-left: auto;
}
.erde-rund-slider-title h5 {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--lg2);
  font-weight: normal;
  margin: 0;
}
@media (max-width: 991px) {
  .erde-rund-slider-title {
    max-width: calc(100% - 250px);
  }
}
@media (max-width: 767px) {
  .erde-rund-slider-title {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .erde-rund-slider {
    max-width: calc(100% - 280px);
  }
}
@media (max-width: 767px) {
  .erde-rund-slider {
    max-width: 100%;
  }
}
.erde-rund-slider-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.erde-rund-slider-text {
  max-width: 300px;
}
.erde-rund-slider-text h2 {
  font-family: "Lato", sans-serif;
  font-size: var(--xxxl);
  font-weight: 900;
}
.erde-rund-slider .slick-list {
  overflow: visible;
}
.erde-rund-slider .slick-arrow {
  top: -60px !important;
}
.erde-rund-slider .slick-arrow img {
  width: 40px;
}
.erde-rund-slider .slick-arrow.slick-disabled {
  opacity: 0;
}
.erde-rund-slider .slick-left {
  position: absolute;
  right: 70px;
  z-index: 1;
}
.erde-rund-slider .slick-right {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.erde-rund-single {
  padding: 0 12px;
}
.erde-rund-single-inner {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #fff;
  padding-bottom: 15px;
}
.erde-rund-text {
  padding-top: 10px;
}
.erde-rund-text h4 {
  font-size: var(--lg4);
  font-weight: normal;
  color: #000;
  margin: 0;
}
.erde-rund-text p {
  font-size: var(--sm);
  font-weight: normal;
  line-height: 1.63;
  color: rgba(0, 0, 0, 0.7);
}
.erde-rund-img img {
  width: 100%;
}

.service-area {
  background-color: #2e2e2e;
  padding: 50px 0;
  margin: 30px 0;
}
.service-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .service-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.service-text {
  max-width: 45%;
  width: 100%;
  padding-top: 85px;
}
@media (max-width: 767px) {
  .service-text {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .service-text {
    padding-top: 0;
  }
}
.service-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 25px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.service-text ul li {
  list-style: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
  font-weight: 500;
  margin: 0 !important;
  position: relative;
  padding-left: 15px;
}
.service-text ul li:first-child {
  padding-left: 0;
}
.service-text ul li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #dff1f4;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.service-text ul li:first-child {
  position: unset;
}
.service-text h2 {
  color: #fff;
  font-weight: 900;
}
.service-text p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}
.service-text div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
}
.service-text div a {
  color: #f3541e;
  font-family: "Montserrat", sans-serif;
  font-size: var(--sm);
  font-weight: 500;
  border-bottom: 1px solid #f3541e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  line-height: 1.3;
  gap: 5px;
}
.service-img {
  padding-left: 30px;
  max-width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .service-img {
    padding-left: 0;
    max-width: 100%;
  }
}
.aktuell-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aktuell-banner-area {
  padding-top: 70px;
  padding-bottom: 150px;
  background-color: rgba(238, 247, 249, 0.5);
}
@media (max-width: 1199px) {
  .aktuell-banner-area {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .aktuell-banner-area {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .aktuell-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.aktuell-banner-left {
  width: 50%;
}
@media (max-width: 767px) {
  .aktuell-banner-left {
    width: 100%;
  }
}
.aktuell-banner-left h1 {
  margin: 0;
}
.aktuell-banner-left h6 {
  color: #58b8cb;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.aktuell-banner-left p {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}
.aktuell-banner-right {
  width: 50%;
}
@media (max-width: 767px) {
  .aktuell-banner-right {
    width: 100%;
  }
}

.conscious-area.bg-lighter {
  background: rgba(238, 247, 249, 0.5);
}
.conscious-inner {
  width: 1098px;
  max-width: 100%;
  border-radius: 35px;
  background-color: #eef7f9;
  padding: 35px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .conscious-inner {
    border-radius: 30px;
  }
}
.conscious-inner.pr-0 {
  padding-right: 0;
}
@media (max-width: 767px) {
  .conscious-inner.pr-0 {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .conscious-inner {
    border-radius: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.conscious-inner.mrt-190 {
  margin-top: -190px;
}
@media (max-width: 991px) {
  .conscious-inner.mrt-190 {
    margin-top: -100px;
  }
}
.conscious-inner .shadow-left {
  position: absolute;
  left: 0;
  bottom: -6px;
}
.conscious-inner h3 {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--lg);
  font-weight: 900;
  line-height: 1.3;
}
.conscious-inner p {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}
.conscious-text {
  max-width: calc(100% - 470px);
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .conscious-text {
    max-width: calc(100% - 270px);
  }
}
@media (max-width: 767px) {
  .conscious-text {
    max-width: 100%;
  }
}
.conscious-img {
  max-width: 390px;
  width: 100%;
}
.conscious-img.guide-dog {
  max-width: 450px;
  position: relative;
  margin-bottom: -50px;
}
@media (max-width: 1199px) {
  .conscious-img.guide-dog {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .conscious-img.guide-dog {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .conscious-img.guide-dog {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .conscious-img {
    max-width: 250px;
  }
}

.bttn {
  border-radius: 999px;
  background-color: #f3541e;
  display: inline-block;
  text-decoration: none;
  gap: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: var(--xs);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 2px 5px 2px 28px;
  border: 1px solid transparent;
  z-index: 1;
  cursor: pointer;
}

.bttn-in {
  padding: 14px 25px;
  gap: 10px;
}

.btn-flat {
  border-radius: 999px;
  background-color: #f3541e;
  padding: 14px 0;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  min-width: 148px;
  text-align: center;
  text-decoration: none;
}

.monitoring-area {
  background-color: #2e2e2e;
  border-radius: 50px 50px 0 0;
}
@media (max-width: 767px) {
  .monitoring-area {
    border-radius: 30px 30px 0 0;
  }
}
.monitoring-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: var(--section) 0;
}
@media (max-width: 767px) {
  .monitoring-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.monitoring-img {
  max-width: 40%;
}
@media (max-width: 767px) {
  .monitoring-img {
    width: 100%;
    max-width: 100%;
  }
  .monitoring-img img {
    width: 100%;
  }
}
.monitoring-text {
  max-width: 57%;
  width: 100%;
}
@media (max-width: 767px) {
  .monitoring-text {
    max-width: 100%;
  }
}
.monitoring-text h2 {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--xl);
  font-weight: 900;
}
.monitoring-text p {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}

.digitale-post-area {
  padding-top: 70px;
  padding-bottom: var(--section);
}
@media (max-width: 1199px) {
  .digitale-post-area {
    padding-top: 50px;
  }
}
.digitale-post-area .bg-light {
  background-color: #eef7f9;
}
.digitale-post-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .digitale-post-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.digitale-post-img {
  max-width: 41%;
  width: 100%;
  background-color: #2e2e2e;
  border-radius: 15px;
  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;
  padding: 30px;
  gap: 30px;
}
@media (max-width: 767px) {
  .digitale-post-img {
    max-width: 100%;
    width: 100%;
  }
}
.digitale-post-text {
  max-width: calc(59% - 16px);
  background-color: #2e2e2e;
  border-radius: 15px;
  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;
}
@media (max-width: 767px) {
  .digitale-post-text {
    max-width: 100%;
    width: 100%;
    min-height: 200px;
  }
}
.digitale-post-text div {
  padding: 50px 40px;
}
@media (max-width: 1199px) {
  .digitale-post-text div {
    padding: 30px;
  }
}
.digitale-post-text h3 {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--lg);
  font-weight: 600;
  line-height: 1;
}
.digitale-post-text h3:last-child {
  margin-bottom: 0;
}
.digitale-post-text h3 span {
  background-color: #f3541e;
  display: inline-block;
  padding: 0 15px 5px 5px;
  font-family: "IBM Plex Serif", serif;
  font-size: var(--lg);
  font-weight: 600;
  font-style: italic;
}
.digitale-post-text p {
  text-align: left;
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.digitale-umzug-text h3 {
  color: #2e2e2e;
  line-height: 1.3;
}
.digitale-umzug-text h3 span {
  color: #2e2e2e;
  background-color: #58b8cb;
  padding: 0 15px 5px 5px;
}
.digitale-umzug-text p {
  color: #2e2e2e;
}

.puppets-banner-text-area {
  padding-top: var(--section);
  padding-bottom: 65px;
  background: #eef7f9;
}
.puppets-banner-text-area.no-bg {
  background: transparent;
}
.puppets-banner-text h6 {
  color: #58b8cb;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  font-weight: 600;
  text-transform: uppercase;
}
.puppets-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .puppets-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.puppets-text-area {
  padding: var(--section) 0;
  margin-top: -100px;
  border-radius: 100px;
  background: #fff;
}
@media (max-width: 767px) {
  .puppets-text-area {
    border-radius: 30px 30px 0 0;
    padding-bottom: 0;
  }
}
.puppets-text div {
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .puppets-text div {
    width: 100%;
  }
}
.puppets-text div h2 {
  font-family: "Lato", sans-serif;
  font-size: var(--xl);
  font-weight: 900;
}

.puppert-img {
  background-color: rgba(238, 247, 249, 0.5);
  padding-bottom: 180px;
  text-align: center;
  background: #eef7f9;
}

.about-area {
  background-color: #2e2e2e;
  border-radius: 45px 45px 0 0;
  padding: var(--section) 0 235px 0;
}
@media (max-width: 767px) {
  .about-area {
    border-radius: 30px 30px 0 0;
    padding-bottom: 175px;
  }
}
.about-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-single-2 {
  margin-top: -100px;
}
@media (max-width: 991px) {
  .about-single-2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .about-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-text {
  max-width: calc(51% - 15px);
  width: 100%;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .about-text {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .about-text {
    max-width: 100%;
    width: 100%;
  }
}
.about-text h2 {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--xl);
  font-weight: 900;
}
.about-text p {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.about-img {
  max-width: calc(49% - 15px);
  width: 100%;
}
@media (max-width: 767px) {
  .about-img {
    max-width: 100%;
    width: 100%;
  }
}

.puppets-text-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: var(--section);
}
@media (max-width: 991px) {
  .puppets-text-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .puppets-text-slider {
    margin-top: 0;
  }
}
.puppets-text-slider .ptp-left, .puppets-text-slider .ptp-right {
  position: absolute;
  top: 50% !important;
  cursor: pointer;
  z-index: 10;
}
.puppets-text-slider .ptp-left {
  left: 0;
}
@media (max-width: 991px) {
  .puppets-text-slider .ptp-left {
    left: 15px;
  }
}
.puppets-text-slider .ptp-right {
  left: 60px;
}
@media (max-width: 991px) {
  .puppets-text-slider .ptp-right {
    right: 15px;
    left: unset;
  }
}
.puppets-text-slider .puppets-slider-left {
  width: 50%;
  padding-right: 60px;
  position: relative;
}
@media (max-width: 991px) {
  .puppets-text-slider .puppets-slider-left {
    width: 100%;
    padding-right: 0;
  }
}
.puppets-text-slider .puppets-slider-left img {
  width: 100%;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform: 0.5s;
          transform: 0.5s;
}
.puppets-text-slider .puppets-slider-left .slick-active img {
  -webkit-transform: 0.5s;
          transform: 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.puppets-text-slider .puppets-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media (max-width: 991px) {
  .puppets-text-slider .puppets-text {
    width: 100%;
  }
}
.puppets-text-slider .puppets-text div {
  width: 100%;
}

.puppets-fluid-slider {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.puppets-fluid-slider-area {
  padding: 130px 0;
}
@media (max-width: 1199px) {
  .puppets-fluid-slider-area {
    padding: var(--section) 0;
  }
}

.pfs-single img {
  width: 100%;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform: 0.5s;
          transform: 0.5s;
}
.pfs-single.slick-active img {
  -webkit-transform: 0.5s;
          transform: 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.pfs-left.slick-arrow, .pfs-right.slick-arrow {
  position: absolute;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.pfs-left {
  left: 15px;
}
.pfs-right {
  right: 15px;
}

.ueber-banner {
  padding: var(--section) 0;
}

.experience-area {
  padding: 70px 0;
  background-color: #2e2e2e;
  border-radius: 45px 45px 0 0;
}
@media (max-width: 767px) {
  .experience-area {
    padding: 60px 0;
    border-radius: 30px 30px 0 0;
  }
}
.experience-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.experience-left {
  max-width: calc(100% - 360px);
  width: 100%;
}
@media (max-width: 1199px) {
  .experience-left {
    max-width: calc(100% - 300px);
  }
}
@media (max-width: 767px) {
  .experience-left {
    max-width: 100%;
  }
}
.experience-left h2 {
  color: #eef7f9;
  font-weight: 900;
}
.experience-left p {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.experience-right {
  max-width: 360px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1199px) {
  .experience-right {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .experience-right {
    max-width: 100%;
  }
}
.experience-right span {
  font-size: var(--lg3);
  font-weight: 600;
  color: #eef7f9;
  display: block;
}
.experience-right h2 {
  color: #f3541e;
  font-family: "IBM Plex Serif", serif;
  font-size: var(--xxxxl);
  font-weight: 600;
  line-height: 1;
}

.expertise-area {
  padding: var(--section) 0;
}
.expertise-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .expertise-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.expertise-img {
  max-width: calc(100% - 675px);
  width: 100%;
  text-align: center;
}
@media (max-width: 1199px) {
  .expertise-img {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .expertise-img {
    max-width: 100%;
  }
}
.expertise-text {
  max-width: 675px;
  width: 100%;
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .expertise-text {
    max-width: 55%;
  }
}
@media (max-width: 767px) {
  .expertise-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.expertise-text p {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.expertise-text p a {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}

.contact-form {
  max-width: 650px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  /* Hide default checkbox */
  /* Pulsating */
}
.contact-form form .checkbox-wrapper input[type=checkbox] {
  display: none;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.contact-form form #pulse + label {
  position: relative;
  padding-left: 37px;
  cursor: pointer;
}
.contact-form form #pulse + label:before {
  position: absolute;
  content: "";
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #f3541e;
  border-radius: 50%;
}
.contact-form form #pulse:checked + label:before {
  background: #2e2e2e;
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
  border: 2px solid #f3541e;
}
.contact-form form button {
  width: 100%;
}
.contact-form form .row {
  gap: 20px 15px;
  margin: 0;
}
@media (max-width: 575px) {
  .contact-form form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-form form .row .col {
  padding: 0;
}
@media (max-width: 575px) {
  .contact-form form .row .col {
    width: 100%;
  }
}
.contact-form form label {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
  margin-bottom: 5px;
  display: block;
}
.contact-form form .single-form input {
  width: 100%;
  border-radius: 10px;
  border: solid 1px #dff1f4;
  background-color: #fff;
  padding: 12px 15px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  line-height: 1.5;
}
.contact-form .textarea textarea {
  width: 100%;
  height: 90px;
  resize: none;
  border-radius: 10px;
  border: solid 1px #dff1f4;
  background-color: #fff;
  padding: 12px 15px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  line-height: 1.5;
}
.contact-form-area {
  padding: var(--section) 0;
  background: #eef7f9;
}
@media (max-width: 767px) {
  .contact-form-title br {
    display: none;
  }
}

.kontakt-area {
  background-color: #2e2e2e;
  padding: 70px 0;
}
.kontakt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kontakt-card {
  text-align: center;
}
.kontakt-icon {
  margin-bottom: 30px;
}
.kontakt-text address,
.kontakt-text a {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md2);
  font-weight: 900;
  text-decoration: none;
  font-style: normal;
}
.kontakt-text p {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  line-height: 1.5;
}
.kontakt-text p a {
  text-decoration: underline;
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--xs);
  line-height: 1.5;
}
.kontakt-testimonial {
  background-color: #fff;
}
.kontakt-testimonial h2,
.kontakt-testimonial p,
.kontakt-testimonial a,
.kontakt-testimonial span {
  text-align: left;
  color: rgba(0, 0, 0, 0.7);
}
.kontakt-testimonial .testimonial-text div span {
  color: rgba(0, 0, 0, 0.7);
}

.project-banner {
  position: absolute;
  bottom: 45px;
}
.project-banner-area {
  background-image: url(../img/project/banner.png);
  min-height: 580px;
  position: relative;
  position: relative;
}
.project-banner-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.project-banner h6 {
  color: #58b8cb;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  font-weight: 600;
  text-transform: uppercase;
}
.project-banner h1 {
  color: #eef7f9;
  word-break: break-all;
}
.project-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
  padding-bottom: 60px;
  padding-top: 120px;
}
@media (max-width: 991px) {
  .project-list {
    gap: 15px;
    padding-top: 60px;
  }
}
.project-card {
  max-width: 405px;
  width: 100%;
  background-color: #fff;
  padding: 15px 12px;
}
@media (max-width: 991px) {
  .project-card {
    max-width: calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .project-card {
    max-width: 100%;
  }
}
.project-card h4 {
  font-size: var(--md);
  font-weight: normal;
  color: #000;
}
.project-card ul {
  margin: 0;
}
.project-card ul li {
  list-style: none;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.project-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.project-description-area {
  background-color: #f7fbfc;
  padding-top: 90px;
}
@media (max-width: 991px) {
  .project-description-area {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .project-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.project-description-left {
  max-width: 330px;
  width: 100%;
}
.project-description-left h3 {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: var(--lg2);
  font-weight: normal;
}
.project-description-left div a {
  margin-top: 10px;
}
.project-description-right {
  max-width: calc(100% - 330px);
  width: 100%;
  padding-left: 70px;
}
@media (max-width: 991px) {
  .project-description-right {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .project-description-right {
    max-width: 100%;
  }
}
.project-img {
  padding-bottom: 50px;
  text-align: center;
}

.performance-title {
  margin-bottom: 45px;
}
.performance-title h2 {
  font-weight: 900;
}
.performance-title p {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
  max-width: 580px;
  width: 100%;
  margin: 0;
}
.performance-area {
  color: #fff;
  padding-bottom: 160px;
  padding-top: 280px;
  border-radius: 55px 55px 0 0;
  margin-top: -200px;
}
@media (max-width: 767px) {
  .performance-area {
    border-radius: 30px 30px 0 0;
  }
}
@media (max-width: 1199px) {
  .performance-area {
    padding-bottom: var(--section);
  }
}
.performance-inner {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.performance-card {
  width: calc(33.33% - 16px);
}
@media (max-width: 991px) {
  .performance-card {
    width: calc(50% - 12px);
  }
}
@media (max-width: 767px) {
  .performance-card {
    width: 100%;
  }
}
.performance-card-inner {
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  border: solid 1px rgba(255, 255, 255, 0.1);
}
.performance-card-inner h3 {
  color: #eef7f9;
  font-family: "Lato", sans-serif;
  font-size: var(--lg2);
  font-weight: normal;
}
.performance-card-inner p {
  color: rgba(238, 247, 249, 0.7);
  font-family: "Lato", sans-serif;
  font-size: var(--sm);
  line-height: 1.63;
}

.landing-project {
  padding-bottom: 120px;
  color: #fff;
}
@media (max-width: 1199px) {
  .landing-project {
    padding-bottom: var(--section);
  }
}
.landing-project .references-title p {
  color: rgba(238, 247, 249, 0.7);
  margin-top: 10px;
}
.landing-project .references-slider {
  margin-bottom: 35px;
}
.landing-project .references-slider .slick-arrow {
  top: -90px !important;
}

.graph {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .graph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.graph-left {
  width: calc(100% - 265px);
  max-width: 520px;
}
@media (max-width: 991px) {
  .graph-left {
    width: calc(100% - 200px);
  }
}
@media (max-width: 767px) {
  .graph-left {
    width: 100%;
  }
}
.graph-right {
  width: 265px;
}
@media (max-width: 991px) {
  .graph-right {
    width: 200px;
  }
}
.graph-inner {
  max-width: 955px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.graph-title h4 {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--lg2);
  font-weight: normal;
}
.graph-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shop-now {
  border-radius: 35px;
  background-color: #eef7f9;
  padding: 45px;
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .shop-now {
    padding: 25px 15px;
    border-radius: 30px;
  }
}
.shop-now-area {
  padding-top: 30px;
  padding-bottom: 110px;
}
.shop-now-text {
  max-width: 665px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.shop-now-text p {
  color: #2e2e2e;
  font-family: "Lato", sans-serif;
  font-size: var(--md3);
  line-height: 1.39;
}
.shop-now-img {
  position: absolute;
  right: 0;
}
@media (max-width: 991px) {
  .shop-now-img {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .shop-now-img {
    display: none;
  }
}

.our-analysis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
}
.our-analysis h2 {
  font-weight: 900;
}/*# sourceMappingURL=style.css.map */