/* Hero Block CSS */
.hero--block {
  background-color: #0C5358;
}

.hero__banner-img {
  position: relative;
  overflow: hidden;
  padding-top: 37.2%;
}

.hero__banner-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__banner {
  position: relative;
}

.hero__banner .container {
  position: static;
}

.hero__banner-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  bottom: auto;
  max-width: 720px;
  padding-top: 150px;
}

.hero__banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #C9DC86;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.hero__banner-content span {
  color: #5CBFCA;
}

.hero__banner-content p {
  font-size: 25px;
  font-weight: 300;
  color: #ffffff;
}

/* Hero Block CSS */
/* Breadcrumb CSS */
.breadcrumb {
  margin: 20px 0;
}

.breadcrumb .divider {
  margin: 0 10px;
}

.breadcrumb li, .breadcrumb a {
  font-size: 16px;
  font-weight: 700;
  color: #C9DC86;
}

.breadcrumb li a:hover, .breadcrumb a a:hover {
  color: #5CBFCA;
}

/* Breadcrumb CSS */
/* About Block CSS */
.about--block {
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.about--block:after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background-color: #C9DC86;
  border-radius: 50%;
  opacity: 0.26;
  z-index: -9;
  -webkit-animation: simple-move 2s 2s linear infinite alternate;
          animation: simple-move 2s 2s linear infinite alternate;
}

.about__content h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about__content p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 690px;
  margin-bottom: 40px;
}

.service__box {
  padding: 50px 40px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service__box:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service__box .service__icon {
  min-width: 50px;
  width: 50px;
}

.service__box .service__des {
  margin-left: 60px;
}

.service__box .service__des h4, .service__box .service__des p {
  font-size: 20px;
  font-weight: 700;
  opacity: 0.8;
}

.service__box .service__des p {
  width: 580px;
  font-weight: 400;
  margin: 0;
}

/* About Block CSS */
/* Team Block CSS */
main {
  overflow: hidden;
  margin-bottom: -7%;
}

.team--block {
  margin-top: 65px;
  background: transparent linear-gradient(65deg, #1DB1BB 0%, #B7E793 100%);
  padding: 50px 0 10%;
  position: relative;
}

.team--block:before {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 240px;
  height: 260px;
  border: 13px solid #75BDC8;
  border-radius: 300px;
  z-index: -9;
  -webkit-animation: simple-move 2s 2s linear infinite alternate;
          animation: simple-move 2s 2s linear infinite alternate;
}

.team--block:after {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 300px;
  height: 350px;
  border: 6px solid #245257;
  border-radius: 300px;
  z-index: -9;
  -webkit-animation: simple-move 2s 2s linear infinite alternate;
          animation: simple-move 2s 2s linear infinite alternate;
}

.team--block .main__title {
  width: 890px;
  margin: 0 auto 60px;
}

.team--block .main__title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team--block .main__title p {
  font-size: 18px;
  opacity: 0.8;
  margin: 0;
}

.team__slider {
  padding: 0 60px;
}

.team__slider .swiper-button:after {
  color: #0C5358;
  font-weight: 900;
  font-size: 36px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__slider .swiper-button:hover:after {
  color: #5CBFCA;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__slider .swiper-button-next {
  right: 0;
}

.team__slider .swiper-button-prev {
  left: 0;
}

.team__slider .team__member {
  position: relative;
}

.team__slider .team__member:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0C5358;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__slider .team__member:hover:before {
  opacity: 0.81;
  visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__slider .team__member .team__img img {
  display: block;
  width: 100%;
}

.team__slider .team__member .team__des {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: auto;
  bottom: auto;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team__slider .team__member .team__des h4 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 3px;
}

.team__slider .team__member .team__des p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
}

.team__slider .team__member .team__des .btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.team__slider .team__member:hover .team__des {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* Team Block CSS */
/* Modal Popup CSS */
.popup-open {
  overflow: hidden;
}

.popup-open .modal {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 999;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}

.modal .modal__content {
  max-width: 1320px;
  margin: 1.75rem auto;
  min-height: calc(100% - (1.75rem * 2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: auto;
}

.modal .modal__content .modal__body {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  border-radius: 87px;
  padding: 90px 70px 90px 50px;
  position: relative;
}

.modal .close__modal {
  position: absolute;
  top: 60px;
  right: 70px;
  left: auto;
  bottom: auto;
  font-size: 40px;
  color: #020203;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.modal .close__modal:hover {
  color: #5CBFCA;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.modal .team__member-info .member__img {
  max-width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.modal .team__member-info .member__des {
  max-width: 60%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  padding-left: 90px;
}

.modal .team__member-info .member__des h3 {
  color: #C9DC86;
  font-size: 30px;
  font-weight: 600;
}

.modal .team__member-info .member__des h5 {
  font-size: 16px;
  font-weight: 600;
  color: #5CBFCA;
  margin-bottom: 30px;
}

.modal .team__member-info .member__des p {
  font-size: 20px;
  font-weight: 700;
  opacity: 0.8;
  margin: 0;
}

.modal .team__member-info .member__des .contact__info {
  margin-top: 50px;
}

.modal .team__member-info .member__des .contact__info h4 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 3px solid #31C1CD;
}

.modal .team__member-info .member__des .contact__info a {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #0C5358;
}

.modal .team__member-info .member__des .contact__info a:hover {
  color: #5CBFCA;
}

/* Modal Popup CSS */
/* Awards Section CSS */
.award--block {
  padding-bottom: 220px;
}

.award--block h2 {
  margin-bottom: 50px;
}

.award--block .award__item {
  height: 130px;
  position: relative;
}

.award--block .award__item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Awards Section CSS */
@media (min-width: 2500px) {
  /* Hero Block CSS */
  .container {
    max-width: 65%;
  }
  /* Hero Block CSS */
}

@media (max-width: 1600px) {
  /* Hero Block CSS */
  .hero__banner-content {
    max-width: 420px;
  }
  .hero__banner-content h1 {
    font-size: 32px;
  }
  .hero__banner-content p {
    font-size: 18px;
  }
  /* Hero Block CSS */
  /* About Block CSS */
  .about__content h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .about__content p {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service__box {
    padding: 25px 30px;
  }
  .service__box .service__des {
    margin-left: 40px;
  }
  .service__box .service__des h4, .service__box .service__des p {
    font-size: 16px;
  }
  .service__box .service__des p {
    width: 100%;
  }
  /* About Block CSS */
  /* Team Block CSS */
  .team--block .main__title {
    width: 800px;
  }
  .team--block .main__title h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .team--block .main__title p {
    font-size: 16px;
  }
  .team__slider .team__member .team__des h4 {
    font-size: 20px;
  }
  .team__slider .team__member .team__des p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .team__slider .team__member .team__des .btn {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
  /* Team Block CSS */
  /* Modal Popup CSS */
  .modal .modal__content {
    max-width: 900px;
  }
  .modal .modal__content .modal__body {
    padding: 40px 50px 40px 30px;
    border-radius: 30px;
  }
  .modal .close__modal {
    top: 20px;
    right: 60px;
    font-size: 32px;
  }
  .modal .team__member-info .member__des {
    padding-left: 40px;
  }
  .modal .team__member-info .member__des h3 {
    font-size: 22px;
  }
  .modal .team__member-info .member__des h5 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .modal .team__member-info .member__des p {
    font-size: 15px;
  }
  .modal .team__member-info .member__des .contact__info {
    margin-top: 30px;
  }
  .modal .team__member-info .member__des .contact__info h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .modal .team__member-info .member__des .contact__info a {
    font-size: 15px;
  }
  /* Modal Popup CSS */
}

@media (max-width: 1199px) {
  /* Hero Block CSS */
  .hero__banner-img {
    padding-top: 65%;
  }
  .hero__banner-content {
    left: 15px;
  }
  /* Hero Block CSS */
  /* About Block CSS */
  .about--block .col--50 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .about__content {
    margin-top: 40px;
  }
  .service__box {
    margin-bottom: 15px;
    padding: 10px 15px;
  }
  /* About Block CSS */
  /* Team Block CSS */
  .team--block .main__title {
    width: 100%;
  }
  /* Team Block CSS */
  /* Awards Section CSS */
  .award--block {
    padding-bottom: 120px;
  }
  /* Awards Section CSS */
}

@media (max-width: 991px) {
  /* About Block CSS */
  .about--block {
    padding-top: 50px;
  }
  .about--block:after {
    width: 110px;
    height: 110px;
    top: -50px;
    right: -50px;
  }
  /* About Block CSS */
  /* Team Block CSS */
  .team__slider {
    padding: 0;
  }
  /* Team Block CSS */
  /* Modal Popup CSS */
  .modal .modal__content {
    max-width: 90%;
  }
  .modal .team__member-info .member__img {
    max-width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .modal .team__member-info .member__des {
    max-width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    padding-left: 30px;
  }
  /* Modal Popup CSS */
}

@media (max-width: 767px) {
  /* Hero Block CSS */
  .hero--block:before {
    left: -70px;
    width: 150px;
    height: 150px;
  }
  .hero__banner-img {
    padding-top: 0;
  }
  .hero__banner-img img {
    position: static;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
    display: block;
    height: auto;
  }
  .hero__banner-content {
    position: static;
    padding: 0;
    max-width: 100%;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 20px;
  }
  .hero__banner-content h1 {
    width: 100%;
  }
  /* Hero Block CSS */
  /* Team Block CSS */
  .team--block:after, .team--block:before {
    display: none;
  }
  .team__slider .swiper-button::after {
    font-size: 26px;
  }
  .team__slider .team__member {
    width: 80%;
    margin: 0 auto;
  }
  .team__slider .team__member .team__des p {
    margin-bottom: 10px;
  }
  /* Team Block CSS */
  /* Modal Popup CSS */
  .modal .modal__content {
    max-width: 90%;
  }
  .modal .modal__content .modal__body {
    padding: 30px;
  }
  .modal .close__modal {
    right: 30px;
  }
  .modal .team__member-info .member__img, .modal .team__member-info .member__des {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .modal .team__member-info .member__des {
    padding: 30px 0 0;
  }
  /* Modal Popup CSS */
  /* Awards Section CSS */
  .award--block h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .award--block .col--20 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .award--block .award__item {
    margin-bottom: 30px;
  }
  .award--block .award__item img {
    width: 160px;
  }
  /* Awards Section CSS */
}

@media (max-width: 500px) {
  /* Hero Block CSS */
  .hero__banner-content {
    margin-bottom: 20px;
  }
  .hero__banner-content h1 {
    font-size: 26px;
  }
  .hero__banner-content p {
    font-size: 16px;
  }
  /* Hero Block CSS */
}
/*# sourceMappingURL=about.css.map */