@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-family: "Sharp Sans";
  src: url("../fonts/SharpSans-Bold.woff2") format("woff2"), url("../fonts/SharpSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
header {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  padding-top: 40px;
}
@media (max-width: 992px) {
  header {
    padding-top: 20px;
  }
}
header .desktop-header {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s all;
}
header .desktop-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: 0.5s;
  animation-name: smooth;
  background-color: #a27154;
  padding: 10px 35px;
  z-index: 100;
}
@keyframes smooth {
  from {
    top: 5%;
  }
  to {
    top: 0%;
  }
}
header .desktop-header .main-logo {
  max-width: 20%;
  flex: 0 0 20%;
  text-align: center;
}
header .desktop-header .main-logo .navbar-brand {
  margin-right: 0;
}
header .desktop-header .main-logo .navbar-brand img {
  width: 125px;
}
header .desktop-header .navbar-left {
  max-width: 80%;
  flex: 0 0 80%;
}
header .desktop-header .navbar-nav {
  justify-content: center;
}
header .desktop-header .navbar-nav .nav-item {
  margin-right: 80px;
}
header .desktop-header .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
header .desktop-header .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
header .desktop-header .navbar-nav .nav-item .nav-link.active {
  color: #E1E667;
}
header .desktop-header .navbar-nav .nav-item .nav-link.active.dark {
  color: #DF854F !important;
}
header .desktop-header .navbar-nav .nav-item .nav-link:hover {
  color: #E1E667;
  text-decoration: underline;
}
header .mobile-header {
  position: absolute;
  left: 0;
  top: -20px;
  background: #004750;
  width: 100%;
  padding: 15px;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.3s all ease;
}
header .mobile-header .close {
  position: absolute;
  right: 15px;
  top: 10px;
}
header .mobile-header .close a {
  color: #fff;
  text-decoration: none;
}
header .mobile-header.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
}
header .mobile-header.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .navbar-nav {
    padding-top: 100px;
    text-align: center;
  }
  .navbar-nav .nav-link {
    font-size: 35px;
    color: #fff !important;
    font-family: "Sharp Sans";
  }
  .navbar-toggler {
    padding: 5px 8px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .mobile-actions .navbar-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-right: 0;
  }
  .mobile-actions .navbar-brand img {
    width: 60%;
  }
}
.content-wrapper .main-banner {
  background-image: url(../images/bg-home.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner {
    min-height: 600px;
  }
}
.content-wrapper .main-banner__content {
  max-width: 55%;
  margin: 15px auto 0;
  text-align: center;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content {
    max-width: 100%;
    padding-top: 100px;
  }
}
.content-wrapper .main-banner__content__heading {
  font-size: 80px;
  color: #fff;
  line-height: 80px;
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__heading {
    font-size: 40px;
    line-height: normal;
  }
}
.content-wrapper .main-banner__content__text {
  font-size: 16px;
  color: #fff;
  max-width: 75%;
  margin: 0 auto 56px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__text {
    max-width: 100%;
  }
}
.content-wrapper .main-banner__content__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner__content__btn {
    padding: 8px 20px;
  }
}
.content-wrapper .main-banner__content .btn-actions-group .main-banner__content__btn {
  margin-bottom: 0;
}
.content-wrapper .main-banner__content .btn-actions-group .main-banner__content__btn:first-child {
  margin-right: 12px;
}
.content-wrapper .main-banner.services {
  background-image: url(../images/services-bg.png);
  background-position: bottom;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services {
    background-color: rgba(0, 0, 0, 0.5607843137);
  }
}
.content-wrapper .main-banner.services .main-banner__content {
  max-width: 60%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services .main-banner__content {
    max-width: 100%;
  }
}
.content-wrapper .main-banner.services .main-banner__content__heading {
  color: #E1E667;
}
.content-wrapper .main-banner.services .main-banner__content__text {
  max-width: 60%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.services .main-banner__content__text {
    max-width: 100%;
  }
}
.content-wrapper .main-banner.team {
  background-color: #FEFFEA;
  background-image: url(../images/team-bg.png);
  background-position: bottom;
}
.content-wrapper .main-banner.team .main-banner__content {
  max-width: 60%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.team .main-banner__content {
    max-width: 100%;
    padding-top: 100px;
  }
}
.content-wrapper .main-banner.team .main-banner__content__text {
  max-width: 100%;
}
.content-wrapper .main-banner.self-help {
  background-image: url(../images/b1.png);
  background-position: bottom;
}
.content-wrapper .main-banner.self-help .main-banner__content {
  max-width: 65%;
}
@media (max-width: 992px) {
  .content-wrapper .main-banner.self-help .main-banner__content {
    max-width: 100%;
  }
}
.content-wrapper .main-banner.self-help .main-banner__content__heading {
  color: #E1E667;
}
.content-wrapper .main-banner.self-help .main-banner__content__text {
  margin-bottom: 0;
}
.content-wrapper .depth-section {
  padding-top: 0;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section {
    padding-top: 30px;
  }
}
.content-wrapper .depth-section__main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__main {
    display: block;
  }
}
.content-wrapper .depth-section__left {
  padding-right: 40px;
}
.content-wrapper .depth-section__right {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__content {
    margin: 0 15px;
    padding: 30px 0;
  }
}
.content-wrapper .depth-section__content .logo-mark {
  margin-bottom: 35px;
}
.content-wrapper .depth-section__content__heading {
  color: #004750;
  font-size: 56px;
  line-height: 67.2px;
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .content-wrapper .depth-section__content__heading {
    font-size: 42px;
    line-height: normal;
  }
}
.content-wrapper .depth-section__content__text {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #004750;
}
.content-wrapper .img-text-main {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main {
    padding: 80px 0;
  }
}
.content-wrapper .img-text-main .container {
  max-width: 1140px;
}
.content-wrapper .img-text-main__image {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__image {
    margin-bottom: 15px;
  }
}
.content-wrapper .img-text-main__image img {
  max-width: 80%;
  margin: 0 auto;
}
.content-wrapper .img-text-main__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content {
    align-items: center;
  }
}
.content-wrapper .img-text-main__content__heading {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 37px;
  color: #004750;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content__heading {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.content-wrapper .img-text-main__content__heading span {
  color: #DF854F;
  font-family: "Sharp Sans";
}
.content-wrapper .img-text-main__content__text {
  font-size: 14px;
  line-height: 21px;
  color: #004750;
  max-width: 72%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main__content__text {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 {
    padding-top: 0 !important;
  }
}
.content-wrapper .img-text-main.v2 .img-text-main__content {
  margin-left: 100px;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 .img-text-main__content {
    margin-left: 0;
    text-align: center;
  }
}
.content-wrapper .img-text-main.v2 .img-text-main__content__text {
  max-width: 98%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v2 .img-text-main__content__text {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v3 {
    padding-bottom: 0 !important;
  }
}
.content-wrapper .img-text-main.v3 .img-text-main__content__text {
  max-width: 83%;
}
@media (max-width: 992px) {
  .content-wrapper .img-text-main.v3 .img-text-main__content__text {
    max-width: 100%;
    text-align: center;
  }
}
.content-wrapper .mini-banner {
  background-image: url(../images/6.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 51px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner {
    padding-top: 0;
  }
}
.content-wrapper .mini-banner::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -14.58%, #00464F 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.content-wrapper .mini-banner__main {
  max-width: 50%;
  flex: 0 0 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 65px;
  position: relative;
  z-index: 100;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__main {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -14.58%, #00464F 100%);
  }
}
.content-wrapper .mini-banner__content {
  z-index: 1;
  position: relative;
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content {
    margin-bottom: 0;
    padding: 50px 0;
  }
}
.content-wrapper .mini-banner__content__heading {
  font-size: 80px;
  line-height: 96px;
  color: #004750;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content__heading {
    font-size: 40px;
    color: #fff;
    line-height: normal;
  }
}
.content-wrapper .mini-banner__content__text {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
  max-width: 83%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__content__text {
    max-width: 100%;
    color: #fff;
    padding: 0 15px;
  }
}
.content-wrapper .mini-banner__actions {
  z-index: 1;
  position: relative;
  padding-bottom: 73px;
}
.content-wrapper .mini-banner__actions .logo-mark {
  margin-bottom: 35px;
}
.content-wrapper .mini-banner__main-img {
  z-index: 1;
  position: absolute;
  max-width: 100%;
  flex: 0 0 100%;
  right: -23%;
  height: 100%;
}
@media (max-width: 992px) {
  .content-wrapper .mini-banner__main-img {
    right: 0;
  }
}
.content-wrapper .mini-banner__main-img img {
  height: calc(100% - 51px);
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrapper .mini-banner__wrapper {
  display: flex;
}
.content-wrapper .tool-section {
  padding: 167px 0;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section {
    padding: 80px 0;
  }
}
.content-wrapper .tool-section .container {
  max-width: 1120px;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content {
    margin-bottom: 30px;
    text-align: center;
  }
}
.content-wrapper .tool-section__content__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 47px;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content__heading {
    font-size: 36px;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.content-wrapper .tool-section__content__text {
  font-size: 14px;
  line-height: 21px;
  color: #004750;
  margin-bottom: 20px;
  max-width: 73%;
}
@media (max-width: 992px) {
  .content-wrapper .tool-section__content__text {
    max-width: 100%;
  }
}
.content-wrapper .tool-section__imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.content-wrapper .tool-section__imgs .secondary-img {
  position: absolute;
  right: 0;
  bottom: -110px;
}

.main-services .container {
  max-width: 1120px;
}
.main-services__main-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #ffffff;
  padding: 30px;
}
.main-services__main-items:first-child {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.main-services__main-items:last-child {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media (max-width: 992px) {
  .main-services__main-items {
    display: block;
  }
}
.main-services__main-items__item {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
  margin-bottom: 67px;
}
@media (max-width: 992px) {
  .main-services__main-items__item {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}
.main-services__main-items__item__heading {
  font-size: 47px;
  line-height: 57.6px;
  color: #004750;
  margin-bottom: 29px;
}
@media (max-width: 992px) {
  .main-services__main-items__item__heading {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.main-services__main-items__item__heading.small {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.main-services__main-items__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #DF854F;
}
.main-services__main-items__item__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.main-services__main-items__item__action__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .main-services__main-items__item__action__btn {
    padding: 8px 20px;
  }
}

.sec-section {
  background-image: url(../images/s2.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}
@media (max-width: 992px) {
  .sec-section {
    min-height: 600px;
  }
}
.sec-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 117px;
}
.sec-section__content .logo-mark {
  margin-bottom: 35px;
}
.sec-section__content__btn {
  margin-bottom: 19px;
  border-radius: 36px;
  padding: 8px 25px;
}
@media (max-width: 992px) {
  .sec-section__content__btn {
    padding: 8px 20px;
  }
}
.sec-section__text {
  text-align: center;
}
.sec-section__text p {
  max-width: 40%;
  margin: 0 auto 42px;
}
@media (max-width: 992px) {
  .sec-section__text p {
    max-width: 100%;
  }
}

.main-team {
  background-color: #FEFFEA;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}
@media (max-width: 992px) {
  .main-team {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}
.main-team__content {
  text-align: center;
}
.main-team__content .logo-mark {
  margin-bottom: 35px;
}
.main-team__content__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
}
@media (max-width: 992px) {
  .main-team__content__heading {
    font-size: 36px;
    line-height: normal;
  }
}
.main-team__members-main {
  display: flex;
  justify-content: center;
  margin-top: 108px;
}
@media (max-width: 992px) {
  .main-team__members-main {
    display: block;
    margin-top: 50px;
  }
}
.main-team__members-main__item {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  text-align: center;
  margin-bottom: 152px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-team__members-main__item {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
.main-team__members-main__item__img {
  margin-bottom: 39px;
}
.main-team__members-main__item__img img {
  width: 374px;
  border-radius: 50%;
  height: 374px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-team__members-main__item__img img.j-head {
  -o-object-position: 0 -10px;
     object-position: 0 -10px;
}
.main-team__members-main__item__heading {
  font-size: 35px;
  line-height: 40px;
  color: #DF854F;
  text-align: center;
}
@media (max-width: 992px) {
  .main-team__members-main__item__heading {
    font-size: 30px;
    line-height: normal;
  }
}
.main-team__members-main__item .verif-badge {
  display: flex;
  justify-content: center;
}

.therapist-about {
  margin: 125px 0 0;
}
.therapist-about__main-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .therapist-about__main-about {
    display: block;
    text-align: center;
  }
}
.therapist-about__main-about__img {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__main-about__img {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__main-about__details {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__main-about__details {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 30px;
  }
}
.therapist-about__main-about__details__name {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .therapist-about__main-about__details__name {
    font-size: 36px;
    line-height: normal;
  }
}
.therapist-about__main-about__details__designation {
  font-size: 32px;
  color: #DF854F;
  line-height: 38.4px;
  font-weight: 700;
  margin-bottom: 36px;
}
.therapist-about__main-about__details__about {
  font-size: 16px;
  line-height: 21px;
  color: #004750;
  max-width: 85%;
}
@media (max-width: 992px) {
  .therapist-about__main-about__details__about {
    max-width: 100%;
  }
}
.therapist-about__content__cards-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main {
    display: block;
  }
}
.therapist-about__content__cards-main .right-cards {
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main .right-cards {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__content__cards-main .right-cards .therapist-about__content__card {
  margin-bottom: 79px;
}
@media (max-width: 992px) {
  .therapist-about__content__cards-main .right-cards .therapist-about__content__card {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.therapist-about__content__card {
  background-color: #FEFFEA;
  padding: 40px 30px;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .therapist-about__content__card {
    padding: 40px 20px;
  }
}
.therapist-about__content__card.left-card {
  margin-top: 67px;
  max-width: calc(50% - 57px);
  flex: 0 0 calc(50% - 57px);
}
@media (max-width: 992px) {
  .therapist-about__content__card.left-card {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.therapist-about__content__card__heading {
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 24px;
  color: #004750;
}
.therapist-about__content__card__text {
  font-size: 16px;
  line-height: 30px;
  color: #004750;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .therapist-about__content__card__text {
    font-size: 16px;
    line-height: normal;
  }
}
.therapist-about__content__card__text:last-child {
  margin-bottom: 0;
}
.therapist-about__content__card__text .f-14 {
  font-size: 14px;
  line-height: 25px;
}
.therapist-about__content__card #therapist-email {
  color: #004750;
}
.therapist-about__content__card__lists {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
}
.therapist-about__content__card__lists__list-item {
  max-width: 50%;
  flex: 0 0 50%;
  font-size: 16px;
  line-height: 30px;
  color: #004750;
}
@media (max-width: 992px) {
  .therapist-about__content__card__lists__list-item {
    font-size: 16px;
    line-height: normal;
  }
}

.carrers-main header .desktop-header .navbar-nav .nav-item .nav-link {
  color: #004750;
}
@media (max-width: 992px) {
  .carrers-main .navbar-toggler {
    color: #000;
    border-color: #000;
  }
}
.carrers-main .navbar-toggler-icon {
  filter: brightness(0);
}
.carrers-main .content-wrapper .main-carrers {
  background-color: #FEFFEA;
  padding-top: 220px;
  margin-bottom: 89px;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers {
    padding-top: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}
.carrers-main .content-wrapper .main-carrers__heading {
  font-size: 80px;
  line-height: 80px;
  color: #004750;
  font-weight: 700;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__heading {
    font-size: 60px;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content {
  padding-bottom: 82px;
}
.carrers-main .content-wrapper .main-carrers__content__info__heading {
  font-size: 40px;
  line-height: 48px;
  color: #DF854F;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__heading {
    font-size: 36px;
    line-height: normal;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg {
  margin-bottom: 39px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg {
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side {
    display: block;
    text-align: center;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side .main-carrers__content__info__msg__text {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
  max-width: calc(100% - 334px);
  flex: 0 0 calc(100% - 334px);
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg.side-by-side .main-carrers__content__info__msg__text {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg__founder {
  max-width: 215px;
  flex: 0 0 215px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg__founder {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}
.carrers-main .content-wrapper .main-carrers__content__info__msg__text {
  max-width: 92%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__content__info__msg__text {
    max-width: 100%;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions {
  margin-bottom: 110px;
}
.carrers-main .content-wrapper .main-carrers__open-positions img {
  padding-right: 47px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions img {
    padding-right: 0;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #DF854F;
  margin-bottom: 59px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__heading {
    font-size: 36px;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
  }
  .carrers-main .content-wrapper .main-carrers__open-positions__heading br {
    display: none;
  }
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__content {
    margin-top: 30px;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__main-heading {
  font-size: 40px;
  line-height: 48px;
  color: #004750;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .carrers-main .content-wrapper .main-carrers__open-positions__content__main-heading {
    font-size: 32px;
    line-height: normal;
  }
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__heading {
  font-size: 24px;
  line-height: 28.8px;
  color: #004750;
  margin-bottom: 23px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__heading.orange {
  color: #DF854F;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content ul {
  padding-left: 18px;
  margin-bottom: 25px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content ul li {
  color: #004750;
  font-size: 16px;
  line-height: 24px;
}
.carrers-main .content-wrapper .main-carrers__open-positions__content__text {
  color: #004750;
}

.main-self-help__heading {
  font-size: 80px;
  line-height: 80px;
  color: #004750;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .main-self-help__heading {
    font-size: 56px;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
  }
}
.main-self-help__main-items-wrapper {
  max-width: 1120px;
  margin: 0 auto;
}
.main-self-help__main-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .main-self-help__main-items {
    display: block;
    margin-bottom: 15px;
  }
}
.main-self-help__main-items__item {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
}
@media (max-width: 992px) {
  .main-self-help__main-items__item {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.main-self-help__main-items__item__heading {
  font-size: 40px;
  line-height: 48px;
  color: #DF854F;
}
@media (max-width: 992px) {
  .main-self-help__main-items__item__heading {
    font-size: 32px;
    line-height: normal;
  }
}
.main-self-help__main-items__item__text {
  padding-left: 20px;
}
.main-self-help__main-items__item__text li {
  font-size: 16px;
  line-height: 24px;
  color: #004750;
}
.main-self-help__tools {
  background-color: #D3ECE3;
  padding: 97px 0 50px;
}
@media (max-width: 992px) {
  .main-self-help__tools {
    padding: 50px 0;
  }
}
.main-self-help__tools__heading {
  font-size: 56px;
  line-height: 67.2px;
  color: #004750;
  margin-bottom: 52px;
}
@media (max-width: 992px) {
  .main-self-help__tools__heading {
    font-size: 32px;
    text-align: center;
    line-height: normal;
  }
}
.main-self-help__tools__items-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .main-self-help__tools__items-main {
    display: block;
  }
}
.main-self-help__tools__items {
  max-width: calc(50% - 83.5px);
  flex: 0 0 calc(50% - 83.5px);
  text-align: center;
}
@media (max-width: 992px) {
  .main-self-help__tools__items {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
.main-self-help__tools__items__img {
  margin-bottom: 31.15px;
}
.main-self-help__tools__items__label {
  font-size: 40px;
  line-height: 48px;
  color: #004750;
}
@media (max-width: 992px) {
  .main-self-help__tools__items__label {
    font-size: 32px;
    line-height: normal;
  }
}
.main-self-help__tools__items__link {
  color: #DF854F;
  font-size: 16px;
  line-height: 24px;
}
.main-self-help__tools__items__link:hover {
  color: #004750;
}

.contact-us header .desktop-header .navbar-nav .nav-item .nav-link {
  color: #004750;
}
@media (max-width: 992px) {
  .contact-us .navbar-toggler {
    color: #000;
    border-color: #000;
  }
}
.contact-us .navbar-toggler-icon {
  filter: brightness(0);
}
.contact-us .main-contact {
  background-color: #FEFFEA;
}
.contact-us .main-contact__heading {
  font-size: 80px;
  color: #004750;
  line-height: 80px;
}
@media (max-width: 992px) {
  .contact-us .main-contact__heading {
    font-size: 56px;
    margin-bottom: 50px;
    text-align: center;
    line-height: normal;
  }
}
.contact-us .main-contact__content {
  padding-top: 238px;
  padding-bottom: 67px;
}
@media (max-width: 992px) {
  .contact-us .main-contact__content {
    padding-top: 100px;
  }
}
.contact-us .main-contact__form .form-group {
  margin-bottom: 27px;
}
.contact-us .main-contact__form .form-control:not(textarea) {
  height: 56px;
}
.contact-us .main-contact__form .form-control {
  background-color: #D3ECE3;
  border-color: #D3ECE3;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #004750;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 1024px) {
  .contact-us .main-contact__form .form-control {
    font-size: 14px;
    line-height: normal;
  }
}
.contact-us .main-contact__form .form-control::-moz-placeholder {
  color: #004750;
}
.contact-us .main-contact__form .form-control::placeholder {
  color: #004750;
}
.contact-us .main-contact__form .form-control:focus {
  box-shadow: none;
}
.contact-us .main-contact__form .btn-primary {
  background-color: #E1E667;
  border-color: #E1E667;
  color: #004750;
  font-size: 16px;
  font-weight: 400;
  border-radius: 36px;
  transition: 0.2s all ease;
}
.contact-us .main-contact__form .btn-primary:hover {
  background-color: #dae12a;
  border-color: #dae12a;
  color: #004750;
}
.contact-us .footer-main {
  padding-top: 78px;
}

.footer-main {
  margin-bottom: 67px;
}
@media (max-width: 769px) {
  .footer-main {
    margin-top: 67px;
    margin-bottom: 20px;
  }
}
.footer-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #004750;
  margin-bottom: 19px;
}
@media (max-width: 769px) {
  .footer-main-wrapper {
    display: block;
  }
}
.footer-main__content {
  display: flex;
  align-items: center;
}
@media (max-width: 769px) {
  .footer-main__content {
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .footer-main__content {
    display: block;
  }
}
.footer-main__content__label {
  color: #004750;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-main__content__label {
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-main__content__label br {
    display: none;
  }
}
.footer-main__content ul {
  display: flex;
  align-items: center;
  color: #004750;
  margin-left: 45px;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-main__content ul {
    justify-content: center;
    margin-left: 0;
  }
}
.footer-main__content ul li {
  margin-right: 45px;
}
.footer-main__content ul li a {
  color: #004750;
  font-size: 26px;
}
.footer-main__content ul li:last-child {
  margin-right: 0;
}
.footer-main__quick-links ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 769px) {
  .footer-main__quick-links ul {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-main__quick-links ul {
    display: block;
  }
}
.footer-main__quick-links ul li {
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .footer-main__quick-links ul li {
    margin-right: 12px;
  }
}
.footer-main__quick-links ul li:last-child {
  margin-right: 0;
}
.footer-main__quick-links ul li a {
  color: #004750;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  line-height: 18px;
  background-color: transparent;
  border-color: transparent;
  padding: 8px 25px;
  border-radius: 36px;
}
@media (max-width: 1024px) {
  .footer-main__quick-links ul li a {
    padding: 8px 8px;
  }
}
@media (max-width: 769px) {
  .footer-main__quick-links ul li a {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 3px;
    display: inline-block;
  }
}
.footer-main__quick-links ul li a:hover {
  background-color: #E1E667;
  border-color: #E1E667;
}
.footer-main .copyright-main {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .footer-main .copyright-main {
    display: block;
    text-align: center;
  }
}
.footer-main .copyright-main .copyright-text {
  color: #004750;
  font-size: 12px;
  line-height: 14.52px;
  margin-bottom: 0;
}
.footer-main.services {
  background-color: #D3ECE3;
  margin-bottom: 0;
  padding: 67px 0;
}
@media (max-width: 992px) {
  .footer-main.services {
    padding: 30px 0;
    margin-top: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #FEFFEA;
}
body.bg-blue {
  background-color: #D3ECE3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sharp Sans";
}

.btn-primary {
  background-color: #E1E667;
  border-color: #E1E667;
  color: #004750;
  font-size: 16px;
  font-weight: 400;
  transition: 0.2s all ease;
}
@media (max-width: 992px) {
  .btn-primary {
    font-size: 14px;
  }
}
.btn-primary:hover {
  background-color: #dae12a;
  border-color: #dae12a;
  color: #004750;
}
.btn-primary:focus, .btn-primary:active {
  background-color: #dae12a;
  border-color: #dae12a;
  box-shadow: none;
  color: #004750;
  outline: none;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E1117;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffa804;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Hide loader when content is loaded */
body.loaded .loader-wrapper {
  display: none;
}

.content {
  display: none;
}

body.loaded .content {
  display: block;
}/*# sourceMappingURL=main.css.map */