/* Top Banner Starts */
.top-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.top-banner img {
  width: 100%;
}
.top-banner .top-banner-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.top-banner .top-banner-text h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
}
.top-banner .top-banner-text h6 {
  color: #d25826;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
}
.top-banner .top-banner-text i {
  color: #fff;
  margin: 0 3px;
}
.top-banner .top-banner-text a {
  color: #fff;
  text-decoration: none;
}
.top-banner .banner-layer{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.415);
  position: absolute;
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 576px) {
  .top-banner img{
      height: 8rem;
  }
  .top-banner .top-banner-text h1{
      font-size: 2.3rem;
  }
  .top-banner .top-banner-text h6{
      font-size: 0.9rem;
      margin-top: 0;
  }
}
/* Top Banner Ends */

/* Get In Touch Starts Here */
.get-in-touch {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
  overflow: hidden;
}
.get-in-touch-left {
  width: 50%;
  padding: 2rem 3rem 2rem 0;
}
.get-in-touch-left h6 {
  font-size: 1.4rem;
}
.get-in-touch-left h1 {
  font-size: 4.2rem;
  font-weight: 800;
  color: #d25826;
}
.get-in-touch-left .line {
  width: 4rem;
  height: 4px;
  background-color: #528363;
  margin-top: 1.2rem;
}
.get-in-touch-left p {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  color: rgb(106, 106, 106);
}
.get-in-touch-left button{
  color: #528363;
  background-color: #fff;
  border: 3px solid #528363;
  padding: 0.6rem 1.5rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.get-in-touch-left button:hover{
  color: #fff;
  background-color: #528363;
}
.get-in-touch-right {
  width: 50%;
  background-color: #f5f5f5;
  padding: 3rem;
  margin-top: 1.5rem;
}
.get-in-touch-right .input-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.get-in-touch-right input {
  width: 48%;
  height: fit-content;
  padding: 1rem;
  border: none;
  outline: 2px solid #cdcdcd;
  font-size: 1.1rem;
  font-weight: 500;
}
.get-in-touch-right input::placeholder {
  color: #bab9b9;
}
.get-in-touch-right textarea::placeholder {
  color: #bab9b9;
}
.get-in-touch-right input[type="number"]::-webkit-inner-spin-button{
  display: none;
}
.get-in-touch-right select {
  width: 48%;
  height: fit-content;
}
.get-in-touch-right select {
  color: #bab9b9;
}
.get-in-touch-right select:focus {
  color: #000;
}
.get-in-touch-right option {
  color: #bab9b9;
}
.get-in-touch-right option:first-of-type {
  color: #000;
}
.get-in-touch-right textarea {
  min-height: 8rem;
  max-height: 15rem;
  margin-top: -0.8rem;
}
.get-in-touch-right button {
  color: #fff;
  background-color: #528363;
  border: 3px solid #528363;
  padding: 0.6rem 1.5rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.get-in-touch-right button:hover {
  color: #528363;
  background-color: #fff;
}
.get-in-touch-right input:focus {
  outline: 3px solid #4d2740;
}
.get-in-touch-right textarea:focus {
  outline: 3px solid #4d2740;
}
.get-in-touch-right select:focus {
  outline: 3px solid #4d2740;
}

@media screen and (max-width: 576px) {
  .get-in-touch {
    flex-direction: column;
    padding: 1.5rem 0;
  }
  .get-in-touch-left {
    width: 100%;
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  .get-in-touch-left h6 {
    font-size: 1.2rem;
  }
  .get-in-touch-left h1 {
    font-size: 2.3rem;
  }
  .get-in-touch-left .line {
    width: 3.5rem;
    margin-top: 1rem;
  }
  .get-in-touch-left p {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
  .get-in-touch-right {
    width: 100%;
    padding: 1.5rem 0.5rem;
  }
  .get-in-touch-right .input-row {
    flex-direction: column;
    margin-bottom: 0;
  }
  .get-in-touch-right input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .get-in-touch-right select {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.8rem;
  }
  .get-in-touch-right button {
    padding: 0.5rem 1.3rem;
    font-size: 0.9rem;
    margin-top: 0.1rem;
  }
}
/* Get In Touch Ends Here */


/* Contact Boxes Start */
.contact-boxes{
    padding: 2rem 0 5rem 0;
    display: flex;
    justify-content: space-between;
}
.contact-boxes .contact-box{
   background-color: #f5f5f5;
   padding: 1.2rem 1rem;
   width: 31%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 5px;
   transition: all 0.2s ease;
   box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.contact-boxes .contact-box:hover{
   background-color: #f0f0f0;
}
.contact-boxes .contact-box-icon{
   width: 30%;
}
.contact-boxes .contact-box-icon i{
   background-color: #528363;
   width: 5.5rem;
   height: 5.5rem;
   border-radius: 50%;
   color: #fff;
   font-size: 2.5rem;
   line-height: 5.5rem;
   text-align: center;
}
.contact-boxes .contact-box-icon #fa-envelope{
   background-color: #d25826;
}
.contact-boxes .contact-box-desc{
   width: 70%;
}
.contact-boxes .contact-box-desc p{
   font-weight: 500;
   font-size: 1.2rem;
   color: #5b5b5b;
}
.contact-boxes .contact-box-desc a{
   font-weight: 800;
   font-size: 1.3rem;
   color: #1b4b60;
   display: block;
   text-decoration: none;
}

@media screen and (max-width: 576px) {
  .contact-boxes{
    padding: 1rem 0.5rem 1rem 0.5rem;
    flex-direction: column;
}
.contact-boxes .contact-box{
   padding: 1.1rem 1rem;
   width: 100%;
   margin-bottom: 1.5rem;
}
.contact-boxes .contact-box-icon i{
  width: 5rem;
  height: 5rem;
  font-size: 2rem;
  line-height: 5rem;
}
.contact-boxes .contact-box-desc p{
  font-size: 1.2rem;
}
.contact-boxes .contact-box-desc h5{
  font-weight: 800;
  font-size: 1.3rem;
  color: #1b4b60;
}
}
/* Contact Boxes End */


/*  Map Section Starts */
.contact-location{
    height: 80vh;
    margin-top: 1rem;
    padding: 0;
}

@media screen and (max-width: 576px) {
  .contact-location{
    padding: 0 0.5rem;
}
}
/*  Map Section Ends */


/* Footer Starts */
footer{
    margin-top: 1rem;
}

@media screen and (max-width: 576px) {
  footer{
    margin-top: 0.5rem;
}
}
/* Footer Ends */
