
.intro img{
  display:block;
  margin:auto;
  max-width: 42.625em;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire container */
  z-index: -1; /* Send the image to the back */
}

.contactus-content{
  margin: auto;
  width: 70%;
}


.inner-header {
  font-weight: 500;
  font-size: 2.8125em;
}

.title-header {
  font-weight: 600;
  font-size: 3.44em;
}


.intro {
  padding: 3.125em 0;
}


.get_in_touch_content {
  background-color: rgb(202,213,181);
  display: flex;
  height: fit-content;
  border-radius: 10px;
}

.contact-info {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contact-img{
  width: 70%;
}

.emails {
  height: 25%;
  display: grid;
  place-items: center;
}

.get_in_touch {
  max-width: 100%;
  border-top-left-radius: 10px; 
  border-bottom-left-radius: 10px; 
}

#main-title{
  font-size: 2.5em;
  font-weight: 500;
}

#sub-title{
  font-size: 1.125em;
  font-weight: 700;
}

.card-img {
  max-width: 60%;
}


.card-items {
  width: 37%; /* Adjust as needed */
  flex-direction: column; /* Make content stack vertically */
  justify-content: space-between; /* Push the button to the bottom */
  text-align: left;
  margin: auto 0;

}

.left-text{
  margin-right: auto;
  margin-left: 0;
}

.right-text{
  margin-left: auto;
  margin-right: 0;
}
.card-text{
  margin-top: auto;
}

.button-outline.bottom {
  align-self: flex-start; /* This keeps the button aligned with the content */
  margin-top: auto; /* Push the button to the bottom */
}

.newsletter-section{
  background-color: rgb(186,206,226);
  padding: 3%;
  margin-bottom: 4%;
  margin-top: 4%;
}

.newsletter-content{
  margin: auto;
  width: 72vw;
  font-family: 'Poppins' !important ;
  display: flex;
  height: fit-content;
  position: relative; /* Make sure the child elements can be positioned relative to this */
  max-width: 78.125em;
}

.newsletter-content img{
  max-width: 49%;
}

.link-card {
  display: flex;
  height: fit-content;
  position: relative; /* Make sure the child elements can be positioned relative to this */
  margin: 5% auto; 
}


.newsletter-items {
  width: 49%; /* Adjust as needed */
  flex-direction: column; /* Make content stack vertically */
  text-align: left;
  margin-left: auto;
  margin-right: 0;
}

.newsletter-items .subscribe_form input,
.subscribe_form textarea {
    width: 100%;
}

#newsletter-title{
  font-size: 1.25em;
  font-weight:bold;
}

.mobile{
  display: none;
}


.newsletter-items .subscribe_form .secondary-button:hover{
  animation: none;
  color: #F5F7F2;
}


/* Media query for tablets */
@media (width <= 1000px) {

}

@media (width <= 600px) {
  .web{
    display: none;
  }
  .mobile{
    display: block;
  }
  .get_in_touch_content {
    display: inline-block;
    height: fit-content;
    border-radius: 0px;
  }
  .contactus-content{
    width: 100%;
  }
  .contact-img{
    width: 85%;
    margin: 0 auto;
  }
  .get_in_touch {
    max-width: 100%;
    border-radius: 10px; 
  }
  .link-card {
    display: block;
    width: 85%;
  }
  .card-items {
    width: 100%; /* Adjust as needed */
  }
  .card-img{
    max-width: 100%;
  }
  .newsletter-content{
    display: block;
  }
  .newsletter-content img{
      max-width: 100%;
  }
  .newsletter-items {
    width: 100%; /* Adjust as needed */
    margin: 5% auto auto auto;
  }
  .inner-header {
    font-size: 2em;
  }

}

/* Media query for mobile devices */
@media (width <=  480px) {
  
}