@import url("https://fonts.cdnfonts.com/css/axiforma");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  scroll-behavior: smooth;
  font-size: 62.5%; }
  @media (max-width: 750px) {
    html {
      font-size: 60%; } }
  @media (max-width: 650px) {
    html {
      font-size: 55%; } }
  @media (max-width: 430px) {
    html {
      font-size: 50%; } }

body {
  box-sizing: border-box; }

body {
  font-size: 1.6rem;
  font-family: "Axiforma", sans-serif;
  line-height: 1.5;
  font-weight: normal; }

.container {
  max-width: 128rem;
  margin: auto; }
  @media (max-width: 1400px) {
    .container {
      padding: 0 8rem; } }
  @media (max-width: 789px) {
    .container {
      padding: 0 5rem; } }
  @media (max-width: 600px) {
    .container {
      padding: 0 3rem; } }
  @media (max-width: 600px) {
    .container {
      padding: 0 1.8rem; } }

.txt-primary {
  color: #609f05; }

.txt-dark {
  color: #121212; }

.txt-pink {
  color: #e89982; }

.mb-2 {
  margin-bottom: 2rem; }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 300;
  font-size: 1.3rem; }
  .btn-md {
    padding: 0.7rem; }
  .btn-block {
    display: block;
    text-align: center; }
  .btn-primary {
    color: #fff;
    background: #609f05; }
    .btn-primary-outline {
      border: 1.5px solid #609f05;
      color: #609f05;
      transition: all 0.3s ease-in; }
      .btn-primary-outline:hover {
        background: #609f05;
        color: #fff; }
  .btn-light-outline {
    border: 1.5px solid #fff;
    color: #fff;
    transition: all 0.3s ease-in; }
    .btn-light-outline:hover {
      background: #fff;
      color: #121212; }
  .btn-dark {
    color: #fff;
    background: #121212; }
    .btn-dark-outline {
      border: 1.5px solid #121212;
      color: #121212; }
  .btn-pink {
    color: #fff;
    background: #e89982; }
    .btn-pink-outline {
      border: 1.5px solid #e89982;
      color: #e89982; }

.card {
  flex: 1;
  border-radius: 0.7rem;
  transition: all 0.3s ease-in;
  backface-visibility: hidden; }
  .card--shadow {
    box-shadow: 0 1rem 1.5rem #0000001a;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center; }
    @media (max-width: 1190px) {
      .card--shadow {
        flex-basis: 42%;
        flex-shrink: 0;
        flex-grow: 0; } }
    @media (max-width: 1043px) {
      .card--shadow {
        flex: 0 0 55%; } }
    @media (max-width: 900px) {
      .card--shadow {
        flex-basis: 65%; } }
    @media (max-width: 670px) {
      .card--shadow {
        flex-basis: 75%; } }
    @media (max-width: 517px) {
      .card--shadow {
        flex-basis: 85%; } }
    @media (max-width: 413px) {
      .card--shadow {
        flex-basis: 93%; } }
    .card--shadow .card__header {
      text-align: center; }
    .card--shadow:hover {
      transform: translateY(-2rem) scale(1.02);
      box-shadow: 0 1.3rem 1.5rem #00000027; }
    .card--shadow:hover .card__imgWrap img {
      -webkit-filter: brightness(70%);
      filter: brightness(70%); }
  .card__imgWrap {
    height: 23rem; }
    .card__imgWrap img {
      height: 100%;
      width: 100%;
      object-fit: fill;
      transition: all 0.3s ease-in; }
  .card__main {
    padding: 3rem 1.5rem; }
  .card__header {
    margin-bottom: 2rem; }
    .card__header p {
      font-size: 1.4rem; }
  .card__body p {
    margin: 0 0 2rem;
    font-weight: 300; }
  .card--borderless img {
    border-radius: 1.5rem; }
  .card--borderless .card__main {
    padding: 3rem 0; }

.newsletter {
  padding: 7rem 0; }
  .newsletter__form {
    width: 100%;
    background: url(../imgs/BG.svg) no-repeat;
    background-size: cover;
    padding: 5rem;
    border-radius: 2rem;
    color: #fff;
    text-align: center; }
    .newsletter__form h3 {
      font-size: 2.5rem;
      margin-bottom: 2rem; }
    .newsletter__form p {
      margin-bottom: 2rem; }

.accreditation {
  padding: 5rem 0; }
  @media (max-width: 750px) {
    .accreditation {
      padding: 5rem 0; } }
  .accreditation__header {
    text-align: center;
    font-size: 3rem;
    margin: 2rem 0; }
  .accreditation__wrap {
    display: flex;
    width: 70%;
    margin: 5rem auto;
    height: 8rem;
    justify-content: space-between; }
    @media (max-width: 1000px) {
      .accreditation__wrap {
        width: 100%; } }
    @media (max-width: 750px) {
      .accreditation__wrap {
        margin-bottom: 3rem;
        overflow-x: scroll; } }
    .accreditation__wrap::-webkit-scrollbar {
      display: none; }
  .accreditation__imgWrap {
    height: 100%; }
    @media (max-width: 750px) {
      .accreditation__imgWrap {
        min-width: 20rem; } }
    .accreditation__imgWrap img {
      height: 100%;
      width: 100%;
      object-fit: contain; }

.footer {
  background: #121212;
  padding: 5rem 0;
  color: #efefef;
  font-weight: 200; }
  @media (max-width: 1100px) {
    .footer {
      padding: 3rem 0; } }
  .footer__wrap {
    display: flex;
    gap: 2rem; }
    @media (max-width: 930px) {
      .footer__wrap {
        display: block; } }
  .footer__about, .footer__links, .footer__legal {
    flex: 1; }
    @media (max-width: 780px) {
      .footer__about, .footer__links, .footer__legal {
        flex: 0 0 45%; } }
    @media (max-width: 500px) {
      .footer__about, .footer__links, .footer__legal {
        flex: 100%; } }
  .footer__header {
    color: #fff;
    margin: 3rem 0; }
  .footer__brand {
    flex: 1.6; }
    .footer__brand p {
      margin: 2rem 0; }
    @media (max-width: 930px) {
      .footer__brand {
        margin-bottom: 2rem; } }
  .footer__group {
    flex: 3;
    display: flex; }
    @media (max-width: 930px) {
      .footer__group {
        gap: 1rem; } }
    @media (max-width: 780px) {
      .footer__group {
        flex-wrap: wrap;
        justify-content: space-between; } }
  .footer__flex {
    flex: 3;
    display: flex; }
  .footer__listLink {
    color: inherit;
    text-decoration: none; }
  .footer__listItem {
    list-style: none;
    padding: 0.5rem 0; }
  .footer__socials {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    align-items: center; }
  .footer__icons {
    display: flex;
    align-items: center;
    justify-content: center; }

.form-group {
  display: flex;
  justify-content: space-between;
  gap: 2rem; }

.input-group {
  padding: 0.2rem;
  width: 100%;
  margin: 1rem 0; }
  .input-group input,
  .input-group textarea {
    display: block;
    width: 100%;
    padding: 1.5rem;
    border-radius: 0.4rem;
    outline: none;
    border: 1px solid #cccccca8;
    font-size: inherit;
    font-family: inherit; }
    .input-group input:focus, .input-group input:valid,
    .input-group textarea:focus,
    .input-group textarea:valid {
      border: 1px solid #609f05; }
    .input-group input:focus:not(:valid),
    .input-group textarea:focus:not(:valid) {
      border: 1px solid #f1573c; }
  .input-group label {
    display: inline-block;
    margin-bottom: 1rem; }
  .input-group textarea {
    height: 20rem;
    resize: none; }

.header {
  height: 80vh;
  color: #fff;
  background: linear-gradient(0deg, #00000099 0%, #00000099 100%), linear-gradient(45deg, #3b6202 0%, #3f5b024a 50.04%, #da750578 100%), url(../imgs/banners/banner1.svg), lightgray 1.19px -243.518px/100% 218.831% no-repeat;
  background-size: cover;
  position: relative; }
  @media (max-width: 900px) {
    .header {
      height: 70vh; } }
  @media (max-width: 660px) {
    .header {
      height: 60vh; } }
  .header-sm {
    height: 60vh; }
    @media (max-width: 980px) {
      .header-sm {
        height: 55vh; } }
    @media (max-width: 630px) {
      .header-sm {
        height: 50vh; } }
    @media (max-width: 500px) {
      .header-sm {
        height: 40vh; } }
  .header__info {
    background: #000;
    text-align: center;
    padding: 2rem 0;
    text-align: center; }
  .header .banner__caption {
    position: relative;
    left: 0;
    top: 50%;
    transform: translateY(60%); }
    @media (max-width: 1100px) {
      .header .banner__caption {
        transform: translateY(80%); } }
    @media (max-width: 830px) {
      .header .banner__caption {
        width: 100%;
        text-align: center; } }
    @media (max-width: 355px) {
      .header .banner__caption {
        transform: translateY(50%); } }
    @media (max-width: 300px) {
      .header .banner__caption {
        transform: translateY(15%); } }
    .header .banner__caption h3 {
      font-size: 5rem;
      width: 60%;
      line-height: 1.2; }
      @media (max-width: 1100px) {
        .header .banner__caption h3 {
          font-size: 3.7rem; } }
      @media (max-width: 830px) {
        .header .banner__caption h3 {
          width: 90%;
          margin: auto;
          text-align: center; } }
      @media (max-width: 690px) {
        .header .banner__caption h3 {
          font-size: 3.5rem; } }
    .header .banner__caption p {
      font-size: 2rem;
      margin: 1rem 0; }
      @media (max-width: 830px) {
        .header .banner__caption p {
          width: 90%;
          margin: auto;
          text-align: center; } }
  .header-sm .banner__caption {
    position: relative;
    width: 80%;
    margin: auto;
    text-align: center;
    top: 40%;
    transform: translateY(-100%);
    left: 0; }
    @media (max-width: 980px) {
      .header-sm .banner__caption {
        transform: translateY(-90%); } }
    @media (max-width: 570px) {
      .header-sm .banner__caption {
        transform: translateY(-100%); } }
    @media (max-width: 360px) {
      .header-sm .banner__caption {
        width: 90%; } }
    .header-sm .banner__caption h3 {
      width: 100%; }
      @media (max-width: 950px) {
        .header-sm .banner__caption h3 {
          font-size: 3.5rem; } }
    @media (max-width: 950px) {
      .header-sm .banner__caption p {
        font-size: 1.7rem; } }

.navbar__wrap {
  padding: 2.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.navbar .nav {
  display: inline-flex;
  align-items: center;
  align-items: center;
  gap: 3rem; }
  @media (max-width: 920px) {
    .navbar .nav {
      display: none; } }
  .navbar .nav__item {
    list-style: none;
    align-items: center;
    justify-content: space-between; }
  .navbar .nav__link {
    text-decoration: none;
    color: inherit; }

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000ad;
  z-index: 10;
  padding: 2.3rem 8rem; }
  @media (max-width: 1400px) {
    .sticky {
      padding: 2.3rem 8rem; } }
  @media (max-width: 789px) {
    .sticky {
      padding: 2.3rem 5rem; } }
  @media (max-width: 600px) {
    .sticky {
      padding: 2.3rem 3rem; } }

.mobile_nav {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #3333338f;
  backdrop-filter: blur(10px);
  color: white;
  z-index: 1000000; }
  .mobile_nav_toogler {
    display: none; }
    @media (max-width: 920px) {
      .mobile_nav_toogler {
        display: flex;
        align-items: center;
        justify-content: center; } }
    .mobile_nav_toogler ion-icon {
      width: 2.5rem;
      height: 2.5rem; }
  .mobile_nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.7rem;
    padding: 3rem;
    background: #121212; }
  .mobile_nav_closer {
    display: flex;
    justify-content: center;
    align-items: center; }
    .mobile_nav_closer ion-icon {
      font-size: 2rem;
      font-weight: 500; }
  .mobile_nav_list {
    text-align: center;
    list-style: none;
    font-size: 1.3rem;
    font-weight: 600; }
    .mobile_nav_list li {
      line-height: 2.3; }
    .mobile_nav_list a {
      text-decoration: none;
      color: inherit;
      font-size: 2rem; }
    .mobile_nav_list_wrapper {
      height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
  .mobile_nav_btn {
    margin-top: 1.2rem; }

.hide {
  display: none; }

.project {
  background: #f0f7e6;
  padding: 7rem 0; }
  @media (max-width: 530px) {
    .project {
      padding: 7rem 3rem; } }
  .project__wrap {
    display: flex;
    align-items: center;
    gap: 3rem; }
    @media (max-width: 1260px) {
      .project__wrap {
        flex-direction: column; } }
  .project__caption {
    flex: 1; }
    .project__caption h3 {
      font-size: 3rem;
      margin: 2rem 0; }
    @media (max-width: 1260px) {
      .project__caption .btn-primary-outline {
        display: none;
        font-size: 3.5rem; } }
  .project__cards {
    flex: 4;
    display: flex;
    gap: 2rem; }
    @media (max-width: 900px) {
      .project__cards {
        flex-direction: column;
        width: 70%;
        gap: 3rem;
        margin: auto; } }
    @media (max-width: 650px) {
      .project__cards {
        width: 80%; } }
    @media (max-width: 530px) {
      .project__cards {
        width: 100%; } }

.Service {
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden; }
  @media (max-width: 1150px) {
    .Service {
      height: 70vh; } }
  @media (max-width: 878px) {
    .Service {
      height: auto;
      padding: 7rem 0; } }
  @media (max-width: 878px) {
    .Service--reverse .Service__wrap {
      flex-direction: column-reverse !important; } }
  .Service__wrap {
    display: flex;
    align-items: center;
    gap: 3.5rem; }
    @media (max-width: 878px) {
      .Service__wrap {
        flex-direction: column; } }
  .Service__main, .Service__imgWrap {
    flex: 1.3; }
    @media (max-width: 878px) {
      .Service__main, .Service__imgWrap {
        flex: 0 0; } }
  .Service__imgWrap {
    flex: 1;
    height: 55vh; }
    @media (max-width: 1150px) {
      .Service__imgWrap {
        height: 50vh; } }
    @media (max-width: 878px) {
      .Service__imgWrap {
        height: 40vh;
        width: 100%; } }
  .Service__main {
    padding: 0 2rem; }
    @media (max-width: 878px) {
      .Service__main {
        padding: 0; } }
  .Service__img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media (max-width: 878px) {
      .Service__img {
        width: unset; } }
    @media (max-width: 878px) {
      .Service__img {
        width: 100%; } }
  .Service__body p {
    margin: 2rem 0; }
  .Service__listItem {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0.7rem 0; }
    .Service__listItem p {
      margin: 0; }
  .Service__header {
    padding: 2rem 0 0; }
    .Service__header .txt-primary,
    .Service__header .txt-dark {
      margin-bottom: 1rem;
      font-size: 2rem; }
  .Service__title {
    font-size: 2.3rem;
    width: 80%; }

.whyUs {
  height: 60vh;
  text-align: center;
  background: linear-gradient(0deg, #00000099 0%, #00000099 100%), linear-gradient(45deg, #3b6202 0%, #3f5b024a 50.04%, #da750578 100%), url(../imgs/banners/resturant.jpg) bottom, lightgray 1.19px -243.518px/100% 218.831% no-repeat;
  background-size: cover;
  display: flex;
  color: #fff;
  align-items: center; }
  @media (max-width: 680px) {
    .whyUs {
      height: 45vh; } }
  .whyUs__wrap {
    width: 60%;
    margin: auto; }
    @media (max-width: 1043px) {
      .whyUs__wrap {
        width: 75%; } }
    @media (max-width: 800px) {
      .whyUs__wrap {
        width: 80%; } }
    @media (max-width: 460px) {
      .whyUs__wrap {
        width: 90%; } }
    .whyUs__wrap p {
      margin: 2rem 0;
      font-weight: 300; }
  .whyUs__header {
    font-size: 3.5rem;
    margin: 2rem 0; }
    @media (max-width: 900px) {
      .whyUs__header {
        font-size: 3rem; } }

.organization__wrap {
  display: flex;
  gap: 4rem;
  padding: 15rem 0;
  align-items: flex-start; }
  @media (max-width: 850px) {
    .organization__wrap {
      flex-direction: column; } }
  @media (max-width: 830px) {
    .organization__wrap {
      padding: 10rem 0; } }
  @media (max-width: 850px) {
    .organization__wrap img {
      height: 30rem; } }

.organization__imgWrap, .organization__caption {
  flex: 1; }

.organization__imgWrap img {
  height: 100%;
  width: 100%;
  object-fit: cover; }

.organization__header {
  font-size: 3rem;
  margin-bottom: 2rem; }

.organization__vision {
  background-color: #f0f7e6;
  display: flex;
  height: 35vh;
  align-items: center;
  text-align: center; }
  @media (max-width: 840px) {
    .organization__vision {
      height: 40vh; } }
  @media (max-width: 750px) {
    .organization__vision {
      padding: 5rem 0;
      height: auto; } }
  .organization__vision .visionWrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 70%;
    margin: auto;
    gap: 4rem; }
    @media (max-width: 930px) {
      .organization__vision .visionWrap {
        width: 80%;
        gap: 3rem; } }
    @media (max-width: 750px) {
      .organization__vision .visionWrap {
        flex-direction: column; } }
  .organization__vision .vision__item {
    flex: 1; }
  .organization__vision__header {
    margin-bottom: 2rem; }

.teams {
  padding: 10rem 0 0; }
  .teams__header {
    text-align: center;
    font-size: 3rem; }
  .teams__card {
    overflow: hidden;
    margin-top: 5rem;
    display: flex;
    box-shadow: 0 0 1rem #87868626;
    border-radius: 1rem;
    height: 50vh; }
    @media (max-width: 850px) {
      .teams__card {
        height: unset;
        flex-direction: column; } }
  .teams__imgWrap {
    flex: 1; }
    .teams__imgWrap img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media (max-width: 850px) {
        .teams__imgWrap img {
          max-height: 50rem;
          object-fit: contain; } }
  .teams__caption {
    flex: 2;
    padding: 3rem 2rem; }
    @media (max-width: 850px) {
      .teams__caption {
        flex: 1; } }
    @media (max-width: 850px) {
      .teams__caption {
        padding: 3rem 1rem; } }

.contact__wrap {
  display: flex;
  padding: 10rem 0;
  align-items: flex-start;
  gap: 3rem; }
  @media (max-width: 1270px) {
    .contact__wrap {
      flex-direction: column;
      row-gap: 5rem; } }
  @media (max-width: 870px) {
    .contact__wrap {
      padding: 5rem 0; } }
  @media (max-width: 530px) {
    .contact__wrap {
      padding: 5rem 0; } }

.contact__details {
  flex: 2 0; }
  @media (max-width: 1270px) {
    .contact__details {
      flex: 1 0 100%; } }
  .contact__details .txt-primary.txt-header {
    font-size: 2.5rem;
    margin: 2rem 0; }

.contact__subDetails {
  margin: 1.5rem 0; }

.contact__form {
  flex: 1.5 0; }
  @media (max-width: 1270px) {
    .contact__form {
      flex: 1 0 100%; } }

.contact .map {
  height: 60vh; }

.home .service {
  background: #f0f7e6; }
  .home .service__wrap {
    padding-top: 10rem;
    padding-bottom: 5rem;
    min-height: 60vh;
    text-align: center; }
    @media (max-width: 1187px) {
      .home .service__wrap {
        height: fit-content;
        padding-bottom: 10rem; } }
    @media (max-width: 580px) {
      .home .service__wrap {
        padding: 8.5rem 0; } }
    .home .service__wrap p {
      margin: 2rem 0 3rem; }
  .home .service__listing {
    background: #fff;
    padding: 0 0 10rem; }
    @media (max-width: 580px) {
      .home .service__listing {
        padding: 0 0 8rem; } }
  .home .service__header {
    font-size: 3.5rem;
    margin: 2rem 0; }
    @media (max-width: 900px) {
      .home .service__header {
        font-size: 3rem; } }
  .home .service__cards {
    display: flex;
    margin: auto;
    gap: 3rem;
    transform: translateY(-25%); }
    @media (max-width: 1187px) {
      .home .service__cards {
        transform: unset;
        padding: 8rem 0; } }
    @media (max-width: 1190px) {
      .home .service__cards {
        flex-wrap: wrap;
        justify-content: center; } }
  .home .service__footer {
    text-align: center;
    margin-top: -5rem; }
    @media (max-width: 1187px) {
      .home .service__footer {
        margin-top: 0; } }

.services__caption {
  padding: 8rem 0; }

.services__captionWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem; }
  @media (max-width: 950px) {
    .services__captionWrap {
      display: block;
      text-align: center; } }

.services__headerWrap {
  flex: 1; }

.services__header {
  font-size: 3rem; }
  @media (max-width: 950px) {
    .services__header {
      margin: 0 0 2rem; } }

.services__content {
  flex: 4; }

.services__health {
  background: #ffebe5; }

.services__food {
  background: #f0f7e6; }

/*# sourceMappingURL=styles.css.map */