.heading {
  font-weight: 600;
  font-size: 3rem;
  line-height: 2.5rem;
  color: whitesmoke;
  letter-spacing: 0.4rem;
  text-align: center;
}
   
/*===========================================CONTACT PAGE===================================*/
.contact {
  height: 100%;
  width: 100%;
}
   
.contact .layout {
  height: 700px;
  max-height: 80vh;
  width: 100%;
  position: relative;
  z-index: 0;
}

.contact .layout .container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact .layout .container img {
  filter: brightness(100%);
  height: 100%;
  width: 100%;

  object-fit: cover;
}

.contact .layout .container .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 5;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #093d0f25;
}

@media only screen and (max-width: 1000px) {
  .contact .layout {
    height: 50vh;
  }

  .contact .layout h1 {
    font-weight: 600;
    font-size: 33px;
    color: white;
    letter-spacing: 7px;
  }
}

@media only screen and (max-width: 600px) {
  .contact .layout {
    height: 50vh;
    width: 100%;
    position: relative;
    z-index: 0;
  }
}

/* ================================================ */
.main-section {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.main-section .image {
  position: absolute;
  left: 0;
  bottom: 0;

  height: 100%;
  width: 100%;

  z-index: -5;
}

.main-section .image img {
  height: 110%;
  width: auto;
  /* 
  object-position: right;
  object-fit: cover; */
}

.main-section .container {
  width: 100%;
  max-width: 1400px;

  display: flex;
  justify-content: space-between;
  align-items: stretch;

  gap: 2rem;
  box-sizing: border-box;

  padding: 3rem 1rem;
}

.main-section .container .heading {
}

.main-section .container .headings h2 {
  text-align: start;
  font-weight: 600;
  font-size: 2rem;

  color: #34643b;
}

.main-section .container h3 {
  text-align: start;
  font-weight: 400;
  font-size: 1.3rem;

  padding: 1rem 0;

  color: #000;
}

.main-section .container .headings p {
  text-align: start;
  padding: 1rem 0;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8rem;

  /* border-bottom: 1px solid #90a393; */
}

.main-section .container .form {
  width: 50%;

  padding: 0 1rem;
  box-sizing: border-box;

  border-radius: 5px;

  background-color: white;
  opacity: 98%;
  box-shadow: 1px 1px 5px 0px #e4e8ee;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.forminator-row {
  width: 100%;
}

.main-section .container .content {
  width: 50%;
}

.main-section .container .content .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}

.main-section .container .content .grid {
  display: flex;

  padding-top: 1rem;

  gap: 0.5rem;
}

.main-section .container .content .grid .card {
  width: 33.3%;
  height: auto;

  cursor: pointer;

  padding: 1.5rem 0.5rem;

  display: flex;
  flex-direction: column;

  white-space: normal;

  align-items: center;
  background-color: white;
  box-shadow: 1px 1px 10px 1px rgb(223, 217, 217);

  box-sizing: border-box;
  border-radius: 5px;
  text-decoration: none;
}

.main-section .container .content .grid .card:hover {
  background-color: #34643b;
  transition: 0.3s ease;
  color: white !important;
}

.main-section .container .content .grid .card:hover i {
  color: #34643b;
  background-color: white;
}

.main-section .container .content .grid .card:hover h3 {
  color: #fff;
}

.main-section .container .content .grid .card:hover p {
  color: white;
}

.main-section .container .content .grid .card i {
  font-size: 1.4rem;
  color: #fff;

  /* color: #34643b; */

  background-color: #34643b;

  height: 55px;
  width: 55px;
  border-radius: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.main-section .container .content .grid .card h3 {
  padding: 0;
  margin: 0;

  font-size: 1.1rem;
  padding: 1rem 0 0.3rem 0;
  box-sizing: border-box;
  text-align: center !important;
}

.main-section .container .content .grid .card p {
  font-size: 0.85rem;
  color: #817c7c;
  font-weight: 400;
  text-align: center;
  width: 100%;
  line-height: normal;
  word-wrap: break-word;

  padding-top: 0rem;
}

.main-section .container .content .grid .card .line {
  width: 70%;
  height: 2px;
  /* background-color: #dcebde; */
  background-color: #e4e8ee;
  margin: 1rem 0 0 0;
}


.main-section .container .content .map {
  width: 100%;
  height: 350px;
}

.main-section .container .content .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

@media only screen and (max-width: 1000px) and (min-width: 768px) {
  .main-section .container .content .grid .card.hide-ipads {
    display: none;
  }

  .main-section .container .content .grid .card {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .main-section .container {
    width: 100%;
    height: auto;
    max-width: 1400px;

    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: stretch;

    gap: 1rem;
    box-sizing: border-box;

    padding: 0rem 0.4rem;
  }

  .main-section .image {
    display: none;
  }
  .main-section .container .headings h2 {
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    color: #34643b;

    padding-top: 2rem;
  }

  .main-section .container .headings p {
    text-align: start;
    padding: 0.5rem 0;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.8rem;
  }

  .main-section .container .form {
    width: 100%;
    height: 100%;

    margin-bottom: 2rem;

    padding: 0 0.2rem;
    box-sizing: border-box;

    background-color: white;
    box-shadow: 1px 1px 10px 1px rgb(214, 214, 214);
    opacity: 90%;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-section .container .content {
    width: 100%;
    height: 100%;
  }

  .main-section .container .content .grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-top: 1rem;

    gap: 0.5rem;
  }

  .main-section .container .content .grid .card {
    width: 98%;
    height: auto;

    cursor: pointer;

    padding: 4rem 0.5rem;

    display: flex;
    flex-direction: column;

    white-space: normal;

    align-items: center;
    background-color: white;
    box-shadow: 1px 1px 10px 1px rgb(223, 217, 217);

    box-sizing: border-box;
    border-radius: 5px;
    text-decoration: none;
  }

  .main-section .container .content .grid .card p {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    width: 100%;
    line-height: normal;
    word-wrap: break-word;

    padding-top: 0.5rem;
  }

  .main-section .container .content .grid .card i {
    font-size: 1.8rem;
    color: #fff;

    background-color: #34643b;

    height: 60px;
    width: 60px;
    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
  }
}


/* =======================Form========================= */
.main-section .container .form {
  /* width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */
}

.main-section .container .form form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.main-section .container .form .form-row {  
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.main-section .container .form .form-row input {
  width: 100%;
  height: 45px;
  padding: 0rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 300 !important;
  border: 1px solid #272727;
  font-family: "arialroundedmtbold", sans-serif !important;
}

.main-section .container .form .form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  min-height: 150px;
  font-size: 1rem !important;
  font-weight: 300 !important;
  font-family: "arialroundedmtbold", sans-serif !important;
}

.main-section .container .form  button {
  width: auto !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 5px;
  height: auto !important;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  font-family: "arialroundedmtbold", sans-serif !important;
}