/* typography */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  *:before, *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

body {
  padding: 0;
  margin: 0;
  font-family: "Comfortaa", cursive;
  font-size: 14px;
  color: #5A8A8A;
  line-height: 1.5em; }

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2em;
  font-weight: 800;
  color: #44444D;
  font-family: "Poppins", sans-serif; }

h1 {
  font-size: 54px; }

h2 {
  font-size: 36px; }

h6 {
  margin-top: 0;
  font-size: 18px; }

.elnt-white {
  color: #fff; }

.elnt-suptitle {
  font-size: 14px; }

.elnt-text-center {
  text-align: center; }

/* wrappers and containers */
.elnt-page-wrapper {
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  background-color: #fafafa; }

.elnt-container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
  margin: 0 auto; }

.elnt-row {
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.elnt-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.elnt-col-60 {
  padding-left: 15px;
  padding-right: 15px;
  width: 60%; }

.elnt-col-40 {
  padding-left: 15px;
  padding-right: 15px;
  width: 40%; }

.elnt-col-50 {
  padding-left: 15px;
  padding-right: 15px;
  width: 50%; }

.elnt-col-25 {
  padding-left: 15px;
  padding-right: 15px;
  width: 25%; }

.elnt-col-100 {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%; }

@media only screen and (max-width: 920px) {
  .elnt-col-60 {
    width: 100%; }

  .elnt-col-40 {
    width: 100%; }

  .elnt-col-50 {
    width: 100%; }

  .elnt-col-25 {
    width: 50%; } }
@media only screen and (max-width: 768px) {
  .elnt-col-25 {
    width: 100%; } }
/* transitions */
/* quote */
blockquote {
  background-color: #EDEDF4;
  color: #44444D;
  font-size: 18px;
  padding: 20px 20px 20px 90px;
  border-radius: 5px;
  position: relative;
  margin: 0;
  -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
          box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
  blockquote:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10d";
    color: #fff;
    font-size: 22px;
    padding: 30px 19px;
    position: absolute;
    background-color: #2D8B8B;
    height: 100%;
    width: 60px;
    top: 0;
    left: 0;
    border-radius: 5px 0 0 5px; }

/* buttons */
.elnt-btn {
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
          box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
  font-family: "Comfortaa", cursive;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 30px;
  border: none;
  background-color: #5FAEA3;
  font-size: 11px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-right: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out; }
  .elnt-btn span {
    margin-top: 3px; }
  .elnt-btn:last-child {
    margin-right: 0; }
  .elnt-btn:focus {
    overflow: hidden; }
  .elnt-btn:hover {
    color: #fff;
    -webkit-filter: brightness(106%);
            filter: brightness(106%);
    text-decoration: none;
    -webkit-transform: translateY(-1px) scale(1.01);
            transform: translateY(-1px) scale(1.01); }
  .elnt-btn.elnt-btn-primary {
    background-color: #2D8B8B; }

/* space */
.elnt-p-100-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.elnt-p-0-100 {
  padding-bottom: 100px; }

.elnt-p-100-70 {
  padding-top: 100px;
  padding-bottom: 70px; }

.elnt-p-0-70 {
  padding-bottom: 70px; }

.elnt-mb-15 {
  margin-bottom: 15px; }

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

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

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

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

.elnt-mb-100 {
  margin-bottom: 100px; }

.elnt-menu {
  padding-top: 2px;
  position: fixed;
  width: 100%;
  z-index: 999999;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out; }
  .elnt-menu .elnt-logo div {
    font-weight: 800;
    color: #21427E;
    font-size: 22px;
    font-family: "Poppins", sans-serif; }
  .elnt-menu .elnt-logo img {
    width: 105px;
    margin: 0; }
  .elnt-menu .elnt-menu-content {
    height: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .elnt-menu .elnt-menu-content ul {
      padding: 0;
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .elnt-menu .elnt-menu-content ul li {
        list-style-type: none; }
        .elnt-menu .elnt-menu-content ul li a {
          position: relative;
          text-decoration: none;
          display: block;
          line-height: 42px;
          height: 40px;
          padding: 0 20px;
          border: none;
          font-size: 10px;
          text-transform: uppercase;
          color: #44444D;
          border-radius: 5px;
          font-weight: 700;
          letter-spacing: 1px;
          margin-right: 10px;
          -webkit-transition: color .1s;
          transition: color .1s;
          -webkit-transition: background-color 0.4s ease-in-out;
          transition: background-color 0.4s ease-in-out;
          -webkit-animation: hide .4s ease-in-out;
                  animation: hide .4s ease-in-out; }
          .elnt-menu .elnt-menu-content ul li a:hover {
            background-color: rgba(149, 9, 154, 0.05); }
        .elnt-menu .elnt-menu-content ul li.current-menu-item a {
          background-color: #2D8B8B;
          color: #fff;
          -webkit-animation: show .4s ease-in-out;
                  animation: show .4s ease-in-out;
          -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
                  box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
  .elnt-menu.elnt-active {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
    .elnt-menu.elnt-active .elnt-menu-content {
      height: 70px; }

@-webkit-keyframes show {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes show {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@-webkit-keyframes hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
/* ------------------------------

burger button

------------------------------ */
.elnt-burger-btn,
.elnt-burger-btn {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  display: none;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 8px 0 0 8px;
  width: 30px;
  height: 30px;
  margin-top: -2px; }
  .elnt-burger-btn span, .elnt-burger-btn span:after, .elnt-burger-btn span:before,
  .elnt-burger-btn span,
  .elnt-burger-btn span:after,
  .elnt-burger-btn span:before {
    content: "";
    display: block;
    width: 15px;
    height: 2.5px;
    border-radius: 1px;
    background: #44444D;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .elnt-burger-btn span,
  .elnt-burger-btn span {
    position: relative;
    margin: 5px 0 0; }
    .elnt-burger-btn span:after, .elnt-burger-btn span:before,
    .elnt-burger-btn span:after,
    .elnt-burger-btn span:before {
      position: absolute; }
    .elnt-burger-btn span:before,
    .elnt-burger-btn span:before {
      top: -5px; }
    .elnt-burger-btn span:after,
    .elnt-burger-btn span:after {
      top: 5px; }
  .elnt-burger-btn.elnt-active span,
  .elnt-burger-btn.elnt-active span {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
    .elnt-burger-btn.elnt-active span:before,
    .elnt-burger-btn.elnt-active span:before {
      -webkit-transform: translate(0px, 5px) rotate(-90deg);
              transform: translate(0px, 5px) rotate(-90deg); }
    .elnt-burger-btn.elnt-active span:after,
    .elnt-burger-btn.elnt-active span:after {
      -webkit-transform: translate(0px, -5px) rotate(-90deg);
              transform: translate(0px, -5px) rotate(-90deg); }
  .elnt-burger-btn:hover span, .elnt-burger-btn:hover span:after, .elnt-burger-btn:hover span:before,
  .elnt-burger-btn:hover span,
  .elnt-burger-btn:hover span:after,
  .elnt-burger-btn:hover span:before {
    background: #44444D; }

@media only screen and (max-width: 920px) {
  .elnt-burger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  .elnt-menu {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
    .elnt-menu .elnt-menu-content nav {
      border-top: solid 1px #eee;
      padding: 15px;
      position: absolute;
      background-color: #fff;
      width: 100%;
      left: 0;
      top: 102px;
      height: auto;
      opacity: 0;
      pointer-events: none;
      -webkit-transform: translateY(5px);
              transform: translateY(5px);
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
      .elnt-menu .elnt-menu-content nav.elnt-active {
        pointer-events: all;
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0); }
      .elnt-menu .elnt-menu-content nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .elnt-menu .elnt-menu-content nav ul li a {
          margin-right: 0;
          margin-bottom: 5px; }
    .elnt-menu.elnt-active nav {
      top: 72px; } }
.elnt-banner {
  position: relative; }
  .elnt-banner .elnt-banner-content {
    padding-top: 50px;
    height: 100vh;
    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; 
            position: relative;
            z-index: 1;
          }
    .elnt-banner .elnt-banner-content .elnt-main-title {
      position: relative;
      margin-bottom: 30px; }
  .elnt-banner .elnt-illustration {
    height: 100vh;
    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; }
    .elnt-banner .elnt-illustration .elnt-illutration-img {
      position: relative;
      width: 100%;
      height: 550px; }
      .elnt-banner .elnt-illustration .elnt-illutration-img img {
        position: absolute;
        right: 0;
        top: 0;
        width: 140%; }

@media only screen and (max-width: 920px) {
  .elnt-banner .elnt-illustration {
    display: none; } }
.elnt-about-illustration .elnt-illutration-img img {
  border-radius: 50%;
  width: 80%;
margin-left: 5%; }

@media only screen and (max-width: 920px) {
  .elnt-about-illustration .elnt-illutration-img img {
    width: 100%; } }
.elnt-about-content {
  height: 100%;
  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; }
  .elnt-about-content .elnt-about-title {
    position: relative;
    margin-bottom: 30px; }

.elnt-product {
  position: relative;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
          box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
  .elnt-product.elnt-product-new:after {
    content: 'NEW';
    z-index: 9;
    padding-top: 3px;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
    position: absolute;
    right: -45px;
    top: 15px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    width: 150px;
    height: 25px;
    background-color: #5FAEA3;
    color: #fff;
    text-align: center;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .elnt-product img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
  .elnt-product .elnt-slideshow {
    border-radius: 5px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .elnt-product .elnt-slideshow .swiper-wrapper {
      width: 100%;
      height: 100%; }
      .elnt-product .elnt-slideshow .swiper-wrapper .swiper-slide {
        height: 100%;
        width: 100%; }
        .elnt-product .elnt-slideshow .swiper-wrapper .swiper-slide img {
          position: relative;
          width: 100%; }
  .elnt-product .elnt-product-overlay {
    border-radius: 5px;
    pointer-events: none;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(31%, rgba(149, 9, 154, 0)), color-stop(79%, rgba(56, 5, 58, 0.82)), color-stop(99%, #44444D));
    background-image: linear-gradient(180deg, rgba(149, 9, 154, 0) 31%, rgba(56, 5, 58, 0.82) 79%, #44444D 99%);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
    .elnt-product .elnt-product-overlay .elnt-project-panel {
      margin-bottom: -20px;
      padding: 10px 30px;
      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;
      -webkit-transition: 0.4s ease-in-out;
      transition: 0.4s ease-in-out; }
      .elnt-product .elnt-product-overlay .elnt-project-panel a {
        color: #fff; }
      .elnt-product .elnt-product-overlay .elnt-project-panel h4 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 24px; }
      .elnt-product .elnt-product-overlay .elnt-project-panel .elnt-product-btn {
        text-align: center;
        font-weight: 900;
        background: #8CE15C;
        font-size: 36px;
        height: 50px;
        width: 50px;
        line-height: 53.5px;
        text-align: center;
        border-radius: 50%;
        color: #FFFFFF;
        -webkit-transition: 0.4s ease-in-out;
        transition: 0.4s ease-in-out; }
        .elnt-product .elnt-product-overlay .elnt-project-panel .elnt-product-btn:hover {
          color: #fff;
          -webkit-filter: brightness(106%);
                  filter: brightness(106%);
          text-decoration: none;
          -webkit-transform: translateY(-1px) scale(1.01);
                  transform: translateY(-1px) scale(1.01); }
  .elnt-product:hover img {
    -webkit-transform: scale(1.02);
            transform: scale(1.02); }
  .elnt-product:hover .elnt-slideshow {
    -webkit-transform: scale(1.02);
            transform: scale(1.02); }
    .elnt-product:hover .elnt-slideshow img {
      -webkit-transform: none;
              transform: none; }
  .elnt-product:hover .elnt-product-overlay {
    pointer-events: all;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }
    .elnt-product:hover .elnt-product-overlay .elnt-project-panel {
      margin-bottom: 0; }
      .elnt-product:hover .elnt-product-overlay .elnt-project-panel a {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg); }
  .elnt-product.elnt-product-sm .elnt-product-overlay .elnt-project-panel {
    padding: 0 20px; }
    .elnt-product.elnt-product-sm .elnt-product-overlay .elnt-project-panel h4 {
      font-size: 16px; }
    .elnt-product.elnt-product-sm .elnt-product-overlay .elnt-project-panel .elnt-product-btn {
      font-size: 24px;
      height: 30px;
      width: 30px;
      line-height: 33px; }

.elnt-testimonials-map {
  position: relative;
  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; }
  .elnt-testimonials-map .elnt-illutration-img {
    position: relative;
    width: 90%;
    height: 500px; }
    .elnt-testimonials-map .elnt-illutration-img img {
      position: absolute;
      right: -10%;
      top: 0;
      width: 190%; }

.elnt-tetimonial {
  padding-top: 5px;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 60px; }
  .elnt-tetimonial .elnt-customer {
    position: relative;
    width: 120px;
    margin: 0 auto 20px; }
    .elnt-tetimonial .elnt-customer img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
              box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
      object-fit: cover; }
    .elnt-tetimonial .elnt-customer:after {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f10d";
      color: #5FAEA3;
      font-size: 26px;
      position: absolute;
      top: -2px;
      right: 0; }
  .elnt-tetimonial .elnt-post {
    font-size: 11px;
    color: #44444D;
    margin-bottom: 20px; }
  .elnt-tetimonial:after {
    content: "";
    height: 5px;
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    background-color: #5FAEA3;
    border-radius: 5px; }

.swiper-slide {
  background-color: #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .swiper-slide.swiper-slide-active {
    -webkit-transition: 1s;
    transition: 1s; }

.swiper-pagination {
  width: 100%;
  height: 100%; }

.swiper-pagination-bullet {
  width: 90px;
  opacity: 1;
  height: 0;
  font-size: 0;
  color: transparent; }
  .swiper-pagination-bullet:focus {
    outline: inherit; }
  .swiper-pagination-bullet:after {
    border-radius: 50%;
    content: '';
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70px;
    width: 70px;
    position: absolute;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; }
  .swiper-pagination-bullet:nth-child(1):after {
    top: 0;
    right: 30%;
    background-image: url("../img/faces/Oskar Hanborg.webp"); }
  .swiper-pagination-bullet:nth-child(2):after {
    top: 50%;
    left: -20%;
    background-image: url("../img/faces/4.png"); }
  .swiper-pagination-bullet:nth-child(3):after {
    top: 100px;
    right: 0;
    background-image: url("../img/faces/3.png"); }
  .swiper-pagination-bullet:nth-child(4):after {
    top: 2%;
    right: 65%;
    background-image: url("../img/faces/ruben.jpeg"); }
  .swiper-pagination-bullet:nth-child(5):after {
    top: 30%;
    left: 5%;
    background-image: url("../img/faces/5.png"); }
  .swiper-pagination-bullet:nth-child(6):after {
    top: 35%;
    right: 50%;
    background-image: url("../img/faces/6.png"); }
  .swiper-pagination-bullet:nth-child(7):after {
    top: 60%;
    left: 15%;
    background-image: url("../img/faces/7.png"); }
  .swiper-pagination-bullet:nth-child(8):after {
    top: 50%;
    right: 20%;
    background-image: url("../img/faces/8.png"); }

.swiper-pagination-bullet-active:after {
  width: 120px;
  height: 120px;
  -webkit-box-shadow: 0 0 0 5px #2D8B8B;
          box-shadow: 0 0 0 5px #2D8B8B; }

@media only screen and (max-width: 920px) {
  .elnt-testimonials-map {
    display: none; } }
.elnt-form {
  position: relative; }
  .elnt-form input {
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: solid 2px #2D8B8B;
    padding: 0 30px;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
    .elnt-form input::-webkit-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif; }
    .elnt-form input:-ms-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif; }
    .elnt-form input::-ms-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif; }
    .elnt-form input::placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif; }
    .elnt-form input:focus {
      outline: inherit; }
  .elnt-form textarea {
    width: 100%;
    border-radius: 5px;
    border: solid 2px #2D8B8B;
    padding: 25px 30px;
    margin-bottom: 30px;
    height: 200px;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
    .elnt-form textarea::-webkit-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif;
      -webkit-transform: translateY(-3px);
              transform: translateY(-3px); }
    .elnt-form textarea:-ms-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif;
      transform: translateY(-3px); }
    .elnt-form textarea::-ms-input-placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif;
      transform: translateY(-3px); }
    .elnt-form textarea::placeholder {
      opacity: 0.3;
      font-size: 14px;
      overflow: visible;
      font-family: "Poppins", sans-serif;
      -webkit-transform: translateY(-3px);
              transform: translateY(-3px); }
    .elnt-form textarea:focus {
      outline: inherit; }
  .elnt-form .elnt-form-submit {
    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; }

.elnt-contact-illustration .elnt-illutration-img img {
  width: 100%; }

.elnt-input {
  position: relative; }
  .elnt-input i {
    font-style: normal;
    line-height: 60px;
    position: absolute;
    left: 25px;
    font-size: 18px;
    color: #2D8B8B;
    pointer-events: none; }
  .elnt-input input {
    padding: 0 30px 0 60px;
    font-size: 14px;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13); }
  .elnt-input textarea {
    padding: 22px 30px 30px 60px;
    font-size: 14px; }

.elnt-icon-box {
  text-align: center;
  margin-bottom: 30px; }
  .elnt-icon-box .elnt-icon-frame {
    margin: 0 auto 30px;
    position: relative;
    width: 110px;
    height: 110px;
    background-color: #2D8B8B;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
            box-shadow: 0 2px 4px rgba(68, 68, 77, 0.13);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
    .elnt-icon-box .elnt-icon-frame img {
      width: 60px; }
    .elnt-icon-box .elnt-icon-frame:before {
      position: absolute;
      bottom: 2px;
      right: 2px;
      content: '';
      height: 45px;
      width: 45px;
      background-color: #2D8B8B;
      opacity: 0.1;
      border-radius: 50%;
      -webkit-transform: translateZ(-1px);
              transform: translateZ(-1px); }
    .elnt-icon-box .elnt-icon-frame:after {
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      height: 55px;
      width: 55px;
      background-image: linear-gradient(59deg, #70D636 0%, #CBFBB3 100%);
      border-radius: 50%;
      -webkit-transform: translateZ(-1px);
              transform: translateZ(-1px); }
  .elnt-icon-box h3 {
    margin: 0; }

.elnt-footer {
  background-image: linear-gradient(179deg, #41414B 0%, #35353C 100%);
  -webkit-box-shadow: inset 0 7px 17px 0 rgba(0, 0, 0, 0.17);
          box-shadow: inset 0 7px 17px 0 rgba(0, 0, 0, 0.17);
  padding-top: 100px; }
  .elnt-footer .elnt-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .elnt-footer .elnt-container .elnt-footer-info {
      width: 100%;
      max-width: 400px; }
      .elnt-footer .elnt-container .elnt-footer-info p {
        color: rgba(255, 255, 255, 0.6); }
      .elnt-footer .elnt-container .elnt-footer-info .elnt-social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        margin: 0; }
        .elnt-footer .elnt-container .elnt-footer-info .elnt-social li {
          list-style-type: none;
          padding-right: 30px; }
          .elnt-footer .elnt-container .elnt-footer-info .elnt-social li:last-child {
            padding-right: 0; }
          .elnt-footer .elnt-container .elnt-footer-info .elnt-social li a {
            font-size: 22px;
            color: #fff;
            text-decoration: none;
            -webkit-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out; }
            .elnt-footer .elnt-container .elnt-footer-info .elnt-social li a:hover {
              text-decoration: none;
              color: #5FAEA3; }
    .elnt-footer .elnt-container .elnt-footer-links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame {
        padding-left: 150px; }
        .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame:first-child {
          padding-left: 0; }
        .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame ul {
          padding: 0;
          margin: 0; }
          .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame ul li {
            list-style-type: none;
            margin-bottom: 10px; }
            .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame ul li a {
              color: rgba(255, 255, 255, 0.6);
              -webkit-transition: 0.4s ease-in-out;
              transition: 0.4s ease-in-out; }
              .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame ul li a:hover {
                text-decoration: none;
                color: #5FAEA3; }
  .elnt-footer .elnt-footer-bottom {
    height: 55px;
    background-color: #2D2D34;
    margin-top: 100px;
    font-size: 12px; }
    .elnt-footer .elnt-footer-bottom .elnt-container {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }

@media only screen and (max-width: 920px) {
  .elnt-footer .elnt-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .elnt-footer .elnt-container .elnt-footer-info {
      margin-bottom: 60px; } }
@media only screen and (max-width: 768px) {
  .elnt-footer .elnt-container .elnt-footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame {
      padding-left: 0;
      margin-bottom: 60px; }
      .elnt-footer .elnt-container .elnt-footer-links .elnt-list-frame:last-child {
        margin-bottom: 0; } }

/*# sourceMappingURL=style.css.map */
.form__success {
    text-align: center;
    font-size: 13px;
    line-height: 21px;
    font-family: 'h-r';
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 72px rgba(0, 0, 0, 0.4);
    max-width: 240px;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; }
    .form__success p {
      margin: 0; }
    .form__success.active {
      display: block;
      animation: .3s ease showMessage; }
/*
     FILE ARCHIVED ON 02:25:19 May 02, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 22:16:37 Mar 21, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  exclusion.robots: 0.072
  exclusion.robots.policy: 0.062
  cdx.remote: 0.091
  esindex: 0.008
  LoadShardBlock: 260.399 (6)
  PetaboxLoader3.datanode: 321.57 (8)
  load_resource: 353.109
  PetaboxLoader3.resolve: 139.419
  loaddict: 100.651
*/