@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Neue-Montreal";
  src: url("/website/assets/font/NeueMontreal-Regular.otf");
}
:root {
  --primary_color: #006b4f !important;
  --secondary_color: #ee2d43 !important;
  --border_color: #ccc9c9 !important;
  --white_color: #ffffff !important;
  --text_color: #333 !important;
  --red_color: #ce2e28 !important;
  --green_color: #00312d !important;
  --lightGreen_color: #94d227;
  --yellow_color: #daac50;
  --primary_font: "Poppins" !important;
  --secondary_font: "Inter" !important;
  --tarnary_font: "Neue-Montreal" !important;
}

.footerSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white_color);
  font-family: var(--primary_font);
}

.footerContainer {
  margin-top: 5rem;
  margin-bottom: 3rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =======  footerTopContainer ============= */
.footerTopContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footerTopHeading h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: var(--primary_color);
}

.footerTopHeading p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text_color);
  margin-top: 0.5rem;
}

.footerTopButtons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.footerButtonBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footerTopButtons .footerButtonBox .contactBtn {
  width: 180px;
  height: 45px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary_color);
  border: 1px solid var(--secondary_color);
  background-color: var(--white_color);
  border-radius: 30px;
}
.footerTopButtons .footerButtonBox .contactBtnItems {
  width: 180px;
  height: 45px;
  padding: 15px;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white_color);
  background-color: var(--secondary_color);
  border-radius: 30px;
}

.footerTopButtons .footerButtonBox i {
  font-size: 24px;
}

.footerForm {
  margin-top: 1rem;
  width: 380px;
  height: 55px;
  background-color: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  border-radius: 30px;
  border: 1px solid var(--border_color);
}

.footerForm .subscribeBtn {
  border-radius: 30px;
  height: 100%;
  width: 120px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  color: var(--white_color);
  background-color: var(--secondary_color);
  border: none;
  cursor: pointer;
}

.deviders {
  width: 100%;
  border-bottom: 1px solid var(--border_color);
}

/* =======  footerMidContainer ============= */
.footerMidContainer {
  width: 100%;
  margin: 3rem 0;
  display: flex;
}
/* =======  footerMidBox25 ============= */
.footerMidBox25 {
  width: 25%;
}
.footerMidBox25 .logo {
  height: 50px;
}
.footerMidBox25 .boldtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text_color);
}
.footerMidBox25 .regulartitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text_color);
  text-decoration: none;
}

.followUsBox {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-us-icons {
  width: 45px;
  height: 45px;
  transition: 0.5s;
}
.follow-us-icons:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

/* =======  footerMidBox55 ============= */
.footerMidBox55 {
  width: 70%;
  display: flex;
  justify-content: space-around;
}

.footerMidBox55 .linkItemBox {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footerMidBox55 .boldtitle {
  margin: 0;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text_color);
}

.footerMidBox55 .regulartitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text_color);
  text-decoration: none;
  transition: 0.5s;
}
.footerMidBox55 .regulartitle:hover {
  color: var(--secondary_color);
  transition: 0.5s;
}

.footerButtomContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerButtomContainer .regulartitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text_color);
  text-decoration: none;
  transition: 0.5s;
}
.footerButtomContainer .regulartitle:hover {
  color: var(--secondary_color);
  transition: 0.5s;
}

@media screen and (max-width: 1280px) {
  .footerMidBox55 {
    width: 75%;
  }
  .followUsBox {
    flex-wrap: wrap;
  }
  .footerTopContainer p br {
    display: none;
  }
}
@media screen and (max-width: 990px) {
  .footerMidBox55 {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .linkItemBox {
    width: calc(33% - 2rem) !important;
  }
}
@media screen and (max-width: 768px) {
  .linkItemBox {
    width: calc(50% - 2rem) !important;
  }
}

@media screen and (max-width: 600px) {
  .footerMidBox55 {
    gap: 1rem;
  }
  .linkItemBox {
    width: calc(50% - 1rem) !important;
  }
  .followUsBox .follow-us-icons {
    width: 35px;
    height: 35px;
  }
  .footerForm .subscribeBtn {
    width: 120px;
  }
  .footerButtomContainer .footerButtonBox {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .footerTopHeading h3 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 425px) {
  .linkItemBox {
    width: 100% !important;
  }
  .footerForm {
    /* width: 350px; */
    width: 100%;
  }
  .footerTopButtons .footerButtonBox .contactBtn {
    width: 130px;
    padding: 10px;
  }
  .footerTopButtons .footerButtonBox .contactBtnItems {
    width: 180px;
    padding: 10px;
  }
}

@media screen and (max-width: 394px) {
  .footerButtomContainer .regulartitle {
    font-size: 12px !important;
  }
}
