@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
/*************************/
html, html body {
  font-family: "Alexandria", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
  height: 100%;
  scroll-behavior: smooth;
  color: #236478;
  font-size: 14px;
}
html body {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
html body.modal-open, html body.swal2-shown {
  padding: 0 !important;
  overflow-y: auto !important;
}
html body ::-moz-selection {
  background-color: #000;
  color: #fff;
}
html body ::selection {
  background-color: #000;
  color: #fff;
}
html body ul {
  list-style: none;
}
html body a,
html body a:hover,
html body a:visited,
html body a:link {
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
html body article,
html body aside,
html body details,
html body figcaption,
html body figure,
html body footer,
html body header,
html body hgroup,
html body menu,
html body nav,
html body section {
  display: block;
}
html body div, html body body div,
html body span,
html body body span,
html body object,
html body body object,
html body iframe,
html body body iframe,
html body h1,
html body body h1,
html body h2,
html body body h2,
html body h3,
html body body h3,
html body h4,
html body body h4,
html body h5,
html body body h5,
html body h6,
html body body h6,
html body p,
html body body p,
html body blockquote,
html body body blockquote,
html body pre,
html body body pre,
html body abbr,
html body body abbr,
html body address,
html body body address,
html body cite,
html body body cite,
html body code,
html body body code,
html body del,
html body body del,
html body dfn,
html body body dfn,
html body em,
html body body em,
html body img,
html body body img,
html body ins,
html body body ins,
html body kbd,
html body body kbd,
html body q,
html body body q,
html body samp,
html body body samp,
html body small,
html body body small,
html body strong,
html body body strong,
html body sub,
html body body sub,
html body sup,
html body body sup,
html body var,
html body body var,
html body b,
html body body b,
html body i,
html body body i,
html body dl,
html body body dl,
html body dt,
html body body dt,
html body dd,
html body body dd,
html body ol,
html body body ol,
html body ul,
html body body ul,
html body li,
html body body li,
html body fieldset,
html body body fieldset,
html body form,
html body body form,
html body label,
html body body label,
html body legend,
html body body legend,
html body table,
html body body table,
html body caption,
html body body caption,
html body tbody,
html body body tbody,
html body tfoot,
html body body tfoot,
html body thead,
html body body thead,
html body tr,
html body body tr,
html body th,
html body body th,
html body td,
html body body td,
html body article,
html body body article,
html body aside,
html body body aside,
html body canvas,
html body body canvas,
html body details,
html body body details,
html body figcaption,
html body body figcaption,
html body figure,
html body body figure,
html body footer,
html body body footer,
html body header,
html body body header,
html body hgroup,
html body body hgroup,
html body menu,
html body body menu,
html body nav,
html body body nav,
html body section,
html body body section,
html body summary,
html body body summary,
html body time,
html body body time,
html body mark,
html body body mark,
html body audio,
html body body audio,
html body video,
html body body video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
}
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  font-family: inherit;
  font-weight: normal;
  line-height: 1.3;
}
html body textarea {
  resize: none;
}
html body p {
  line-height: 1.7;
}
html body.invert {
  filter: invert(1);
}

.row {
  row-gap: 24px;
}

.btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  background: #2ab193;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 7px;
  border: 2px solid transparent;
}
@media (max-width: 480px) {
  .btn {
    height: 35px;
    font-size: 12px;
    padding: 0 10px;
  }
}
.btn.btn-outline {
  background: transparent;
  border-color: #236478;
  color: #ffffff;
}
.btn.btn-outline:hover {
  background-color: #236478;
}
.btn:hover {
  color: #fff;
  background-color: #236478;
}

.main-head {
  padding-block: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  .main-head {
    padding-block: 30px;
  }
}
@media (max-width: 768px) {
  .main-head {
    padding-block: 20px;
  }
}
@media (max-width: 1200px) {
  .main-head .logo img {
    width: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 480px) {
  .main-head .logo img {
    width: 120px;
  }
}
.main-head .main-nav {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
}
@media (max-width: 1024px) {
  .main-head .main-nav {
    display: none;
  }
}
.main-head .main-nav ul {
  gap: 50px;
}
@media (max-width: 1200px) {
  .main-head .main-nav ul {
    gap: 20px;
  }
}
.main-head .main-nav li a {
  color: #236478;
  font-weight: 600;
  transition: 0.3s;
}
.main-head .main-nav li a:hover {
  color: #2ab193;
}
.main-head .main-nav li a.active {
  color: #2ab193;
  font-weight: 800;
}
.main-head .actions .nav-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 1024px) {
  .main-head .actions .nav-toggler {
    display: flex;
  }
}
.main-head .actions .nav-toggler span {
  width: 25px;
  height: 2px;
  background-color: #236478;
  border-radius: 2px;
  transition: 0.3s;
}
.main-head .actions .nav-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.main-head .actions .nav-toggler.active span:nth-child(2) {
  opacity: 0;
}
.main-head .actions .nav-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.main-head .sidebar {
  position: absolute;
  top: 90%;
  left: 50%;
  translate: -50% 0;
  background-color: #f5f5f5;
  width: 95%;
  border-radius: 30px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .main-head .sidebar {
    border-radius: 15px;
  }
}
.main-head .sidebar.active {
  opacity: 1;
  visibility: visible;
  top: 120%;
}
@media (max-width: 480px) {
  .main-head .sidebar.active {
    top: 160%;
  }
}
.main-head .sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
}
.main-head .sidebar ul li a {
  color: #236478;
  font-weight: 600;
  transition: 0.3s;
}
.main-head .sidebar ul li a:hover {
  color: #2ab193;
}
.main-head .sidebar ul li a.active {
  color: #2ab193;
  font-weight: 800;
}

.hero {
  background: linear-gradient(180deg, #2ab193 0%, #246477 100%);
  padding-block: 100px;
  padding-inline-start: 16%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .hero {
    padding-inline-start: 9%;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding-inline-start: 10%;
    padding-block: 70px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-inline-start: 5%;
    padding-block: 50px;
  }
}
.hero .info h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero .info h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .hero .info h1 {
    font-size: 20px;
  }
}
.hero .info p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  max-width: 200px;
}
@media (max-width: 768px) {
  .hero .info p {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero .info p {
    font-size: 14px;
  }
}
.hero .info .btn {
  background-color: #fff;
  border-color: #fff;
  color: #236478;
  margin-top: 30px;
}
.hero .info .btn:hover {
  background-color: #236478;
  border-color: #236478;
  color: #fff;
}
.hero .img {
  height: 400px;
}
@media (max-width: 768px) {
  .hero .img {
    height: 300px;
    margin-top: -50px;
  }
}
@media (max-width: 480px) {
  .hero .img {
    height: 190px;
    margin-top: -20px;
  }
}
.hero .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.skelton {
  position: absolute;
  left: 16%;
  top: 50px;
  display: flex;
}
@media (max-width: 1800px) {
  .skelton {
    left: 9%;
  }
}
@media (max-width: 1200px) {
  .skelton {
    left: 10%;
  }
}
@media (max-width: 768px) {
  .skelton {
    left: 5%;
  }
}
@media (max-width: 480px) {
  .skelton {
    display: none;
  }
}
.skelton span {
  height: 60px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 70px;
  display: flex;
}
@media (max-width: 768px) {
  .skelton span {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.skelton span:nth-child(1) {
  translate: -20px 50px;
  background-color: rgba(255, 255, 255, 0.15);
}
.skelton span:nth-child(2) {
  margin-inline-start: 15px;
}
.skelton span:nth-child(3) {
  translate: 5px 50px;
  background-color: rgba(255, 255, 255, 0.15);
}
.skelton span.big {
  width: 215px;
}
@media (max-width: 768px) {
  .skelton span.big {
    width: 150px;
  }
}

.about-us {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .about-us {
    padding-block: 50px;
  }
}
.about-us .info {
  padding-inline-start: 100px;
}
@media (max-width: 768px) {
  .about-us .info {
    padding-inline-start: 20px;
    margin-bottom: 100px;
  }
}
.about-us .info h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
  color: #236478;
}
@media (max-width: 768px) {
  .about-us .info h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.about-us .info ul li {
  padding: 15px;
  border: 1px solid #246478;
  border-radius: 15px;
}
.about-us .info ul li:not(:last-child) {
  margin-bottom: 20px;
}
.about-us .info ul li .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 10px;
  transform: rotate(-180deg);
  margin-inline-start: -40px;
}
@media (max-width: 768px) {
  .about-us .info ul li .icon {
    width: 40px;
    height: 40px;
  }
}
.about-us .info ul li .text p {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .about-us .info ul li .text p {
    font-size: 14px;
  }
}
.about-us .img {
  overflow: hidden;
  border-radius: 50px;
  padding-top: 70%;
  position: relative;
}
@media (max-width: 768px) {
  .about-us .img {
    border-radius: 30px;
  }
}
.about-us .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message {
  padding-block: 0 80px;
}
@media (max-width: 768px) {
  .message {
    padding-block: 0 50px;
  }
}
.message .img {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.message .img .inner {
  border-radius: 50px;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  width: 360px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.message .img .inner img {
  margin-top: -100px;
  width: 300px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.message .img .skelton {
  top: auto;
  bottom: 0;
}
@media (max-width: 480px) {
  .message .img .skelton {
    display: none;
  }
}
.message .img .skelton span {
  background-color: #236478;
}
.message .info .item:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .message .info .item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.message .info .item h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  color: #236478;
}
@media (max-width: 768px) {
  .message .info .item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.message .info .item p {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .message .info .item p {
    font-size: 14px;
  }
}
.message .info .item ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .message .info .item ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.message .info .item ul li .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 10px;
}
.message .info .item ul li .text {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .message .info .item ul li .text {
    font-size: 14px;
  }
}

.g-head {
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .g-head {
    margin-bottom: 30px;
  }
}
.g-head h2 {
  font-weight: 700;
  font-size: 30px;
  color: #236478;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .g-head h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .g-head h2 {
    font-size: 20px;
  }
}
.g-head p {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
  margin-top: 30px;
  max-width: 70%;
}
@media (max-width: 768px) {
  .g-head p {
    font-size: 14px;
    max-width: 100%;
  }
}

.services {
  padding-block: 0 80px;
}
@media (max-width: 768px) {
  .services {
    padding-block: 0 50px;
  }
}
.services .service-item {
  border-radius: 20px;
  background-color: #2ab193;
  padding: 40px 25px;
  height: 100%;
  position: relative;
  max-width: 90%;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .services .service-item {
    max-width: 100%;
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .services .service-item {
    min-height: 241px;
  }
}
.services .service-item .title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .services .service-item .title {
    margin-bottom: 20px;
  }
}
.services .service-item .title h3 {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 15px;
  line-height: 1.4;
  max-width: 150px;
}
@media (max-width: 768px) {
  .services .service-item .title h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .services .service-item .title h3 {
    font-size: 16px;
    max-width: 100%;
  }
}
.services .service-item .title a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .services .service-item .title a {
    font-size: 13px;
  }
}
.services .service-item .icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services .service-item .number {
  position: absolute;
  left: -1px;
  bottom: -1px;
}
.services .service-item .number::before, .services .service-item .number::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0px;
  height: 30px;
  width: 30px;
  border-radius: 0 0 0 20px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0 15px 0 0 #ffffff;
}
.services .service-item .number::after {
  top: inherit;
  bottom: 1px;
  right: -29px;
  left: 0;
}
.services .service-item .number .inner {
  border-radius: 0 30px 0 0;
  padding-block: 10px 0;
  padding-inline: 10px 0;
  background-color: #fff;
}
.services .service-item .number .inner span {
  width: 50px;
  height: 50px;
  background-color: #f1f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 300;
  font-size: 15px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
.services .service-item.view-all .title {
  margin: 0;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.services .service-item.view-all .title a {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
}
.services .service-item.view-all .title img {
  width: 50px;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .services .service-item.view-all .title img {
    width: 30px;
  }
}
.services .service-item.view-all:hover {
  scale: 1;
}
.services .service-item.view-all:hover .title img {
  translate: -10px -5px;
}
.services .service-item.text-dark .title h3,
.services .service-item.text-dark .title a {
  color: #236478;
}
.services .service-item.text-dark .icon img {
  filter: brightness(0);
}
.services .service-item:hover {
  scale: 0.97;
}
.services .service-item:hover .number .inner span {
  background-color: #2ab193;
  color: #fff;
  rotate: -20deg;
}

.programs {
  padding-block: 80px;
  background-color: #236478;
}
@media (max-width: 768px) {
  .programs {
    padding-block: 50px;
  }
}
.programs .g-head h2 {
  color: #fff;
}
.programs .g-body {
  position: relative;
}
.programs .g-body .programs-next {
  right: -50px;
}
.programs .g-body .programs-next img {
  scale: -1;
}
@media (max-width: 768px) {
  .programs .g-body .programs-next {
    display: none;
  }
}
.programs .g-body .programs-prev {
  left: -50px;
}
@media (max-width: 768px) {
  .programs .g-body .programs-prev {
    display: none;
  }
}
.programs .swiper {
  padding-bottom: 50px;
}
.programs .swiper .swiper-pagination {
  bottom: 0;
}
.programs .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  transition: 0.3s;
}
.programs .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6fc5cc;
}
.programs .program-item {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}
.programs .program-item .img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding-top: 80%;
}
.programs .program-item .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.programs .program-item .info {
  padding-block: 22px;
  padding-inline: 22px 70px;
}
@media (max-width: 768px) {
  .programs .program-item .info {
    padding-inline: 15px 50px;
  }
}
.programs .program-item .info a {
  font-size: 17px;
  color: #236478;
  font-weight: 600;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .programs .program-item .info a {
    font-size: 14px;
  }
}
.programs .program-item .info a:hover {
  color: #2ab193;
}
.programs .program-item .arrow {
  position: absolute;
  left: -1px;
  bottom: -1px;
}
.programs .program-item .arrow a {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #6fc5cc;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  transition: 0.3s;
}
.programs .program-item .arrow svg {
  fill: #236478;
}
.programs .program-item:hover .arrow a {
  rotate: 360deg;
  border-radius: 100%;
  background-color: #2ab193;
  translate: -3px -3px;
}

.sw-btn {
  position: absolute;
  top: calc(50% - 30px);
  translate: 0 -50%;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  z-index: 4;
}
.sw-btn img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sw-btn.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.news {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .news {
    padding-block: 50px;
  }
}
.news .news-item .img {
  border-radius: 15px;
  overflow: hidden;
  padding-top: 70%;
  position: relative;
}
.news .news-item .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-item .info {
  padding: 20px;
}
.news .news-item .info .content {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .news .news-item .info .content {
    margin-bottom: 10px;
  }
}
.news .news-item .info .content span {
  min-width: 90px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #f1f7f3;
  font-weight: 300;
  font-size: 12px;
  padding-inline: 20px;
}
.news .news-item .info .content .date {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}
.news .news-item a {
  font-size: 20px;
  font-weight: 300;
  color: #236478;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news .news-item a {
    font-size: 16px;
  }
}
.news .news-item a:hover {
  color: #2ab193;
}

.blog {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .blog {
    padding-bottom: 50px;
  }
}
.blog .blog-item {
  position: relative;
  padding-top: 130%;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}
@media (max-width: 480px) {
  .blog .blog-item {
    padding-top: 100%;
  }
}
.blog .blog-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.blog .blog-item .caption {
  position: absolute;
  inset: 15px;
  top: auto;
  width: calc(100% - 30px);
  padding: 15px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8.75659px);
          backdrop-filter: blur(8.75659px);
  border-radius: 8.75659px;
}
.blog .blog-item .caption span {
  display: inline-flex;
  padding: 3px 10px;
  background: #ffffff;
  box-shadow: inset 1.75132px 1.75132px 3.50264px #ccdbe8, inset -1.75132px -1.75132px 3.50264px 0.583773px rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  color: #236478;
  font-size: 11px;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
}
.blog .blog-item .caption a {
  display: inline-flex;
  margin-top: 5px;
  font-weight: 600;
  font-size: 13px;
  color: #236478;
  transition: 0.3s;
}
.blog .blog-item .caption a:hover {
  color: #2ab193;
}
.blog .blog-item:hover img {
  scale: 1.05;
}

.load-more {
  text-align: center;
  margin-top: 40px;
}
.load-more .btn {
  font-size: 16px;
}

.main-footer {
  background-color: #236478;
}
.main-footer .footer-top {
  padding-block: 40px 70px;
}
@media (max-width: 768px) {
  .main-footer .footer-top {
    padding-block: 30px;
  }
}
.main-footer .footer-top .map-area {
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-footer .footer-top .map-area {
    height: 300px;
    border-radius: 15px;
  }
}
.main-footer .footer-top .map-area iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.main-footer .footer-top .quick-links {
  padding-top: 100px;
  padding-inline-start: 30px;
}
@media (max-width: 768px) {
  .main-footer .footer-top .quick-links {
    padding-inline-start: 0;
    padding-top: 0;
  }
}
.main-footer .footer-top .quick-links h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}
.main-footer .footer-top .quick-links ul li:not(:last-child) {
  margin-bottom: 10px;
}
.main-footer .footer-top .quick-links ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  transition: 0.3s;
}
.main-footer .footer-top .quick-links ul li a:hover {
  color: #2ab193;
  padding-inline: 5px;
}
.main-footer .footer-top .newsletter {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .main-footer .footer-top .newsletter {
    padding-top: 0;
  }
}
.main-footer .footer-top .newsletter h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}
.main-footer .footer-top .newsletter p {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 12px;
}
.main-footer .footer-top .newsletter .form-group {
  position: relative;
}
.main-footer .footer-top .newsletter .form-group input {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  padding-inline: 20px;
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 13px;
}
.main-footer .footer-top .newsletter .form-group button {
  position: absolute;
  left: 10px;
  top: 5px;
  background-color: #2ab193;
  border: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-footer .footer-top .newsletter .form-group button img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer-top .contact-us {
  padding-top: 30px;
  padding-inline-start: 30px;
}
@media (max-width: 768px) {
  .main-footer .footer-top .contact-us {
    padding-inline-start: 0;
  }
}
@media (max-width: 480px) {
  .main-footer .footer-top .contact-us {
    padding-top: 0;
  }
}
.main-footer .footer-top .contact-us .item .icon {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2ab193;
  flex-shrink: 0;
}
.main-footer .footer-top .contact-us .item .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer-top .contact-us .item .text h5 {
  font-weight: 200;
  font-size: 12px;
  margin-bottom: 7px;
  color: #fff;
}
.main-footer .footer-top .contact-us .item .text a {
  font-size: 12px;
  color: #fff;
  font-weight: 200;
  direction: ltr;
  display: inline-block;
}
.main-footer .footer-top .contact-us .item .text span {
  color: #fff;
  font-size: 12px;
  font-weight: 200;
}
@media (max-width: 768px) {
  .main-footer .footer-top .sm-column-reverse {
    flex-direction: column-reverse !important;
  }
}
.main-footer .footer-bottom {
  text-align: center;
}
.main-footer .footer-bottom p {
  background-color: #fff;
  padding: 12px;
  border-radius: 20px 20px 0 0;
  position: relative;
  font-size: 12px;
  font-weight: 300;
  width: 40%;
  margin: 0 auto;
  color: #444444;
  direction: ltr;
}
@media (max-width: 768px) {
  .main-footer .footer-bottom p {
    width: 80%;
  }
}
.main-footer .footer-bottom p::before, .main-footer .footer-bottom p::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../assets/rights.svg") no-repeat center bottom/contain;
  right: -19px;
  bottom: 0;
}
.main-footer .footer-bottom p::after {
  left: -19px;
  right: inherit;
  scale: -1 1;
}

.px-0 {
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .px-0 {
    padding-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .px-0 {
    padding-bottom: 120px;
  }
}
.px-0 .skelton {
  right: 16%;
  left: auto;
  top: 180px;
}
@media (max-width: 1800px) {
  .px-0 .skelton {
    right: 9%;
  }
}
@media (max-width: 1600px) {
  .px-0 .skelton {
    right: 6%;
  }
}
@media (max-width: 1200px) {
  .px-0 .skelton {
    right: 4%;
    top: 150px;
  }
}
.px-0 .skelton span:nth-child(1) {
  translate: 0 100px;
}
.px-0 .skelton span:nth-child(2) {
  margin: 0;
  translate: 0 50px;
}
.px-0 .skelton span:nth-child(3) {
  translate: 0 0;
}

.contactUs {
  padding-block: 120px;
}
@media (max-width: 768px) {
  .contactUs {
    padding-block: 80px;
  }
}
@media (max-width: 480px) {
  .contactUs {
    padding-block: 60px;
  }
}
.contactUs .inner {
  padding: 30px;
  border-radius: 50px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background-color: #fff;
  margin-top: -250px;
}
@media (max-width: 768px) {
  .contactUs .inner {
    margin-top: -150px;
    border-radius: 30px;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .contactUs .inner {
    margin-top: -140px;
  }
}
.contactUs .inner .info {
  border-radius: 30px;
  padding: 50px;
  background: linear-gradient(180deg, #2ab193 0%, #246477 100%);
}
@media (max-width: 768px) {
  .contactUs .inner .info {
    padding: 20px;
    border-radius: 20px;
  }
}
.contactUs .inner .info h3 {
  margin-bottom: 50px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contactUs .inner .info h3 {
    margin-bottom: 30px;
  }
}
.contactUs .inner .info ul li:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .contactUs .inner .info ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contactUs .inner .info ul li .icon {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #236478;
  flex-shrink: 0;
}
.contactUs .inner .info ul li .text h5 {
  font-weight: 200;
  font-size: 12px;
  margin-bottom: 7px;
  color: #fff;
}
.contactUs .inner .info ul li .text a,
.contactUs .inner .info ul li .text span {
  font-size: 12px;
  color: #fff;
  font-weight: 200;
  direction: ltr;
  display: inline-block;
}
.contactUs .inner .info .skelton {
  position: relative;
  translate: 0 0;
  left: auto;
  top: auto;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contactUs .inner .info .skelton {
    margin-top: 30px;
  }
}
.contactUs .inner .info .skelton span:nth-child(1) {
  flex-shrink: 0;
  translate: 0 0;
}
.contactUs .inner .info .skelton span:nth-child(2) {
  margin-inline: 0;
  margin-top: 50px;
  width: 100%;
}
.contactUs .inner .form-area .form-group:not(:last-child) {
  margin-bottom: 25px;
}
.contactUs .inner .form-area .form-group .form-control {
  border: 0;
  border-bottom: 2px solid #2ab193;
  padding: 0;
  height: 50px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
}
.contactUs .inner .form-area .form-group .form-control::-moz-placeholder {
  color: #236478;
}
.contactUs .inner .form-area .form-group .form-control::placeholder {
  color: #236478;
}
.contactUs .inner .form-area .form-group textarea.form-control {
  height: 120px;
}

.blog-list {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .blog-list {
    padding-block: 50px;
  }
}

.latest {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .latest {
    padding-bottom: 50px;
  }
}
.latest .img {
  position: relative;
  padding-top: 80%;
  overflow: hidden;
  border-radius: 20px;
}
.latest .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest .info {
  padding-inline-start: 30px;
}
@media (max-width: 768px) {
  .latest .info {
    padding-inline-start: 0;
  }
}
.latest .info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #236478;
  margin-bottom: 25px;
}
.latest .info .desc p {
  color: #444444;
  font-weight: 300;
}
.latest .info .desc p:not(:last-child) {
  margin-bottom: 20px;
}

.subscribe {
  padding-block: 50px;
  background: linear-gradient(180deg, #2ab193 0%, #246477 100%);
}
.subscribe .info h3 {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
  max-width: 200px;
  margin-bottom: 25px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .subscribe .info h3 {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.subscribe .info p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 40px;
}
.subscribe .info .form-group .form-control {
  border-radius: 10px;
  box-shadow: none;
  height: 50px;
  padding: 0 20px;
  border: 0;
  font-weight: 500;
  color: #236478;
}
.subscribe .info .form-group .form-control::-moz-placeholder {
  color: rgba(35, 100, 120, 0.5);
}
.subscribe .info .form-group .form-control::placeholder {
  color: rgba(35, 100, 120, 0.5);
}
.subscribe .info .form-group .btn {
  height: 50px;
  border-radius: 10px;
  background-color: #fff;
  color: #236478;
  flex-shrink: 0;
}
.subscribe .info .form-group .btn:hover {
  background-color: #236478;
  color: #fff;
}
.subscribe .img {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .subscribe .img {
    height: 200px;
  }
}
.subscribe .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.subscribe .img .skelton {
  right: 0;
  z-index: -1;
  top: 140px;
}
@media (max-width: 768px) {
  .subscribe .img .skelton {
    top: 100px;
  }
}
.subscribe .img .skelton span.big {
  width: 100%;
}

.single-blog .inner {
  padding: 25px;
  background-color: rgba(226, 243, 245, 0.2);
  border-radius: 30px;
  margin-top: -200px;
  position: relative;
}
@media (max-width: 768px) {
  .single-blog .inner {
    margin-top: -150px;
    border-radius: 20px;
    padding: 15px;
  }
}
.single-blog .inner .post-img {
  overflow: hidden;
  position: relative;
  padding-top: 50%;
  margin-bottom: 40px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .single-blog .inner .post-img {
    border-radius: 20px;
    margin-bottom: 30px;
  }
}
.single-blog .inner .post-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-blog .inner .post-content {
  padding-inline: 50px;
}
@media (max-width: 768px) {
  .single-blog .inner .post-content {
    padding-inline: 20px;
  }
}
@media (max-width: 480px) {
  .single-blog .inner .post-content {
    padding-inline: 0;
  }
}
.single-blog .inner .post-content h1 {
  color: #236478;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .single-blog .inner .post-content h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .single-blog .inner .post-content h1 {
    font-size: 18px;
  }
}
.single-blog .inner .post-content p {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single-blog .inner .post-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.single-blog .inner .post-content h4,
.single-blog .inner .post-content h3,
.single-blog .inner .post-content h2,
.single-blog .inner .post-content h5,
.single-blog .inner .post-content h6 {
  color: #236478;
  margin-bottom: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 300px !important;
  }
}
@media (max-width: 480px) {
  .inner-hero {
    min-height: 230px !important;
  }
}
.inner-hero .skelton {
  flex-direction: row-reverse;
}
.inner-hero .skelton span {
  margin: 0;
}
.inner-hero .skelton span:nth-child(1) {
  translate: 0 50px;
}
.inner-hero .skelton:last-child {
  right: 16%;
  left: auto;
  bottom: 50px;
  top: auto;
}
@media (max-width: 1600px) {
  .inner-hero .skelton:last-child {
    right: 6%;
  }
}
@media (max-width: 1200px) {
  .inner-hero .skelton:last-child {
    right: 4%;
    top: 50px;
    bottom: auto;
  }
}
.inner-hero .skelton:last-child span {
  translate: 0 0;
}

.mission {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .mission {
    padding-block: 50px;
  }
}
.mission .block {
  text-align: center;
  padding-inline: 50px;
  border-inline-end: 1px solid #dcdcdc;
  height: 100%;
}
@media (max-width: 768px) {
  .mission .block {
    padding-inline: 20px;
    border-inline-end: none;
  }
}
.mission .block .icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #2ab193;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .mission .block .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }
}
.mission .block .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .mission .block .icon img {
    width: 30px;
    height: 30px;
  }
}
.mission .block .text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #236478;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mission .block .text h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.mission .block .text p {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
}
@media (max-width: 768px) {
  .mission .block .text p {
    font-size: 14px;
  }
}
.mission .col-lg-4:last-child .block {
  border-inline-end: none;
}
.mission .recycle {
  margin-top: 70px;
  border-radius: 15px;
  padding: 50px;
  background-color: #e2f3f5;
}
@media (max-width: 768px) {
  .mission .recycle {
    padding: 30px;
    margin-top: 50px;
  }
}
.mission .recycle h3 {
  font-size: 24px;
  font-weight: 700;
  color: #236478;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mission .recycle h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.mission .recycle p {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
}
@media (max-width: 768px) {
  .mission .recycle p {
    font-size: 14px;
  }
}

.sectors {
  padding-block-end: 80px;
}
@media (max-width: 768px) {
  .sectors {
    padding-block-end: 50px;
  }
}
.sectors .img {
  border-radius: 20px;
  overflow: hidden;
  padding-top: 90%;
  position: relative;
}
.sectors .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sectors .info {
  padding-inline-start: 30px;
}
@media (max-width: 768px) {
  .sectors .info {
    padding-inline-start: 0;
  }
}
.sectors .info ul li:not(:last-child) {
  margin-bottom: 50px;
}
.sectors .info ul li .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 10px;
}
.sectors .info ul li .text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #236478;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .sectors .info ul li .text h4 {
    font-size: 16px;
  }
}
.sectors .info ul li .text p {
  font-size: 14px;
  font-weight: 300;
  color: #444444;
}

.commitment {
  padding-block: 80px;
  background: linear-gradient(180deg, #2ab193 0%, #246477 100%);
}
@media (max-width: 768px) {
  .commitment {
    padding-block: 50px;
  }
}
.commitment .g-head h2,
.commitment .g-head p {
  color: #fff;
}
.commitment .block {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
}
@media (max-width: 768px) {
  .commitment .block {
    padding: 15px;
  }
}
.commitment .block .top {
  margin-bottom: 25px;
  gap: 30px;
}
@media (max-width: 480px) {
  .commitment .block .top {
    margin-bottom: 15px;
    gap: 15px;
  }
}
.commitment .block .top .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 10px;
}
@media (max-width: 480px) {
  .commitment .block .top .icon {
    width: 40px;
    height: 40px;
  }
}
.commitment .block .top .text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #236478;
}
@media (max-width: 480px) {
  .commitment .block .top .text h4 {
    font-size: 16px;
  }
}
.commitment .block p {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
}
@media (max-width: 768px) {
  .commitment .block p {
    font-size: 14px;
  }
}
.commitment .img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .commitment .img {
    border-radius: 15px;
  }
}
.commitment .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .team {
    padding-block: 50px;
  }
}
.team .member .img {
  border-radius: 20px;
  overflow: hidden;
  padding-top: 100%;
  position: relative;
}
.team .member .img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team .member .img .icons {
  position: absolute;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  width: 50px;
  padding: 12px 0;
  border-radius: 50px;
  bottom: 60px;
  right: 60px;
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
  text-align: center;
}
.team .member .img .icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  margin: 0 auto;
}
.team .member .img .icons a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team .member .img .share-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
  padding: 15px;
  padding-bottom: 0;
}
.team .member .img .share-icon::before, .team .member .img .share-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 31px;
  width: 15px;
  box-shadow: 0 20px 0 0 #ffffff;
}
.team .member .img .share-icon::before {
  border-radius: 0 0 30px 0;
  right: 98%;
}
.team .member .img .share-icon::after {
  border-radius: 0 0 0 30px;
  left: 98%;
}
.team .member .img .share-icon span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 100%;
}
.team .member .img .share-icon span img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team .member .info {
  padding-top: 20px;
}
.team .member .info h4 {
  font-size: 20px;
  font-weight: 300;
  color: #236478;
  margin-bottom: 5px;
}
.team .member .info span {
  font-size: 14px;
  font-weight: 300;
  color: #444444;
}
.team .member:hover .img .icons {
  opacity: 1;
  translate: 0 -10px;
}
.team .g-body {
  position: relative;
}
.team .team-prev,
.team .team-next {
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  border: 0;
  z-index: 4;
  position: absolute;
  top: calc(50% - 20px);
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-prev img,
.team .team-next img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team .team-prev.swiper-button-disabled,
.team .team-next.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.team .team-next {
  right: -50px;
  scale: -1;
}
@media (max-width: 1200px) {
  .team .team-next {
    right: -10px;
  }
}
.team .team-prev {
  left: -50px;
}
@media (max-width: 1200px) {
  .team .team-prev {
    left: -10px;
  }
}

.partners .inner {
  background-color: #e2f3f5;
  border-radius: 30px;
  padding: 50px;
}
@media (max-width: 768px) {
  .partners .inner {
    border-radius: 20px;
    padding: 30px;
  }
}
.partners .inner .title {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .partners .inner .title {
    margin-bottom: 30px;
  }
}
.partners .inner .title h2 {
  color: #236478;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .partners .inner .title h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.partners .inner .title p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #236478;
}
@media (max-width: 768px) {
  .partners .inner .title p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.partners .inner .title ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  font-weight: 300;
  color: #444444;
}
.partners .inner .title ul li:not(:last-child) {
  margin-bottom: 5px;
}
.partners .inner .title ul li::before {
  content: "-";
}
.partners .inner .items .item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .partners .inner .items .item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
}
.partners .inner .items .item .img {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  height: 160px;
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .partners .inner .items .item .img {
    width: 100%;
  }
}
.partners .inner .items .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .partners .inner .items .item .info {
    width: 100%;
  }
}
.partners .inner .items .item .info p {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
}
@media (max-width: 768px) {
  .partners .inner .items .item .info p {
    font-size: 14px;
  }
}

.appointment {
  padding-block: 80px 100px;
}
@media (max-width: 768px) {
  .appointment {
    padding-block: 20px 50px;
  }
}
.appointment .inner {
  background: linear-gradient(0deg, #2ab193 0%, #246477 100%);
  border-radius: 30px;
  padding: 50px;
}
@media (max-width: 768px) {
  .appointment .inner {
    padding: 30px;
    border-radius: 20px;
  }
}
.appointment .imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  direction: ltr;
}
.appointment .imgs .item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding-top: 60%;
}
@media (max-width: 768px) {
  .appointment .imgs .item {
    border-radius: 15px;
  }
}
.appointment .imgs .item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.appointment .imgs .item.v1 {
  grid-area: 1/3/6/5;
}
.appointment .imgs .item.v2 {
  grid-area: 1/2/3/3;
  background-color: #6fc5cc;
  border-radius: 15px;
}
.appointment .imgs .item.v3 {
  grid-area: 3/1/6/3;
}
.appointment .info {
  padding-inline-end: 30px;
}
@media (max-width: 768px) {
  .appointment .info {
    padding-inline-end: 0;
  }
}
.appointment .info h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .appointment .info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.appointment .info p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 768px) {
  .appointment .info p {
    font-size: 14px;
  }
}
.appointment .info .btn {
  margin-top: 30px;
  background-color: #fff;
  color: #236478;
}
@media (max-width: 768px) {
  .appointment .info .btn {
    margin-top: 20px;
  }
}

.faqs {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .faqs {
    padding-bottom: 50px;
  }
}
.faqs .accordion-item {
  border-radius: 10px;
  background-color: #e2f3f5;
  padding: 25px 75px;
  border: 0;
}
@media (max-width: 768px) {
  .faqs .accordion-item {
    padding: 20px;
  }
}
.faqs .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.faqs .accordion-item .accordion-button {
  padding: 0;
  background-color: transparent;
  border: 0;
  position: relative;
  box-shadow: none;
  font-weight: 600;
  font-size: 18px;
  color: #252432;
}
@media (max-width: 768px) {
  .faqs .accordion-item .accordion-button {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .faqs .accordion-item .accordion-button {
    font-size: 14px;
  }
}
.faqs .accordion-item .accordion-button::after {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  content: "-";
  background: transparent;
  font-size: 40px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqs .accordion-item .accordion-button.collapsed::after {
  content: "+";
}
.faqs .accordion-item .accordion-body {
  border: 0;
  padding: 16px 0 0;
  font-size: 14px;
  color: #8987a1;
  font-weight: 300;
  line-height: 1.7;
}

.service-sectors {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .service-sectors {
    padding-top: 50px;
  }
}

.service-desc {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .service-desc {
    padding-bottom: 30px;
  }
}
.service-desc h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #236478;
}
@media (max-width: 768px) {
  .service-desc h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.service-desc p {
  font-size: 16px;
  font-weight: 300;
  color: #444444;
}
@media (max-width: 768px) {
  .service-desc p {
    font-size: 14px;
  }
}
.service-desc p:not(:last-child) {
  margin-bottom: 20px;
}

.video {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .video {
    padding-bottom: 50px;
  }
}
.video .box {
  position: relative;
  padding-top: 35%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .video .box {
    border-radius: 15px;
    padding-top: 50%;
  }
}
.video .box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video .box a {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  border: 2px solid #fff;
}
@media (max-width: 768px) {
  .video .box a {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .video .box a {
    width: 50px;
    height: 50px;
  }
}

.packages {
  background-color: transparent;
  padding-bottom: 0;
  margin-top: -150px;
  position: relative;
}
@media (max-width: 768px) {
  .packages {
    margin-top: -100px;
  }
}
.packages .box {
  border-radius: 50px;
  padding: 50px;
  background-color: #236478;
  box-shadow: 0 0 0 20px rgba(226, 243, 245, 0.2);
}
@media (max-width: 768px) {
  .packages .box {
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 0 0 10px rgba(226, 243, 245, 0.2);
  }
}
.packages .program-item .row {
  row-gap: 0;
}
@media (max-width: 768px) {
  .packages .program-item .img {
    padding-top: 50%;
  }
}
.packages .program-item .info a {
  font-size: 20px;
}
@media (max-width: 768px) {
  .packages .program-item .info a {
    font-size: 16px;
  }
}
.packages .program-item .info ul {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .packages .program-item .info ul {
    margin-top: 20px;
  }
}
.packages .program-item .info ul li {
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: start;
  gap: 10px;
  color: #236478;
}
@media (max-width: 768px) {
  .packages .program-item .info ul li {
    font-size: 13px;
  }
}
.packages .program-item .info ul li::before {
  content: "·";
}
.packages .program-item .info ul li:not(:last-child) {
  margin-bottom: 10px;
}
.packages .program-item:not(:last-child) {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */