* {
  margin: 0;
  padding: 0;
}

.esg_header {
  background: #fff;
  padding: 8px 30px;
  overflow: hidden;
}

body { font-family: DM Sans;}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.esg_logo {
  width: 230px;
  height: auto;
  display: block;
}

.hamburger_icon {
  width: 20px;
  height: 20px;
}

.menu_links li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #282828;
  transition: 0.3s;
}

.menu_links li a:hover {
  color: #369e48;
}

.menu_links li a.active {
  color: #369e48;
}

.esg_dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 180px;
  padding: 8px 0;
  list-style: none;
  transition: 0.3s;
}

.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu li a {
  font-size: 14px;
  color: #333;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.call_button {
  background: #269b40;
  font-weight: 500;
  font-size: 18px;
  color: #ffff;
  padding: 12px 25px;
  text-decoration: none;
}

.call_button img {
  width: 18px;
  height: 20px;
}

/* footer */
.esg_footer {
  background: #ffffff;
  font-family: DM Sans;
  padding: 45px 50px;
  overflow: hidden;
}

.footer_logo {
  width: 250px;
}

.footer_title {
  font-size: 20px; margin-bottom: 15px;
  font-weight: 700;
}

.footer_title::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: #28a745;
  margin-top: 5px;
}

.footer_links {
  list-style: none;
  text-decoration: none;
  line-height: 1.6;
}

.footer_links a {
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  color: #000;
}

.footer_location_links {
  list-style: none;
  text-decoration: none;
  line-height: 3;
}

.footer_location_links a {
  font-size: 15px;
  cursor: pointer;
  line-height: 1.8;
  text-decoration: none;
  font-weight: 400;
  color: #000;
}

.footer_bottom {
  font-size: 14px;
  border-top: 2px solid #e3e3e3;
  padding-top: 30px;
}

@media (max-width: 1329px) and (min-width: 991px) {
  .esg_header {
    padding: 8px 50px;
  }

  .esg_logo {
    width: 200px;
  }

  .menu_links li a {
    font-size: 14px;
  }

  .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 180px;
    padding: 8px 0;
    list-style: none;
    transition: 0.3s;
  }

  .call_button {
    background: #269b40;
    font-weight: 500;
    font-size: 15px;
    color: #ffff;
    padding: 10px 22px;
    text-decoration: none;
  }

  .call_button img {
    width: 12px;
    height: 15px;
  }
}

@media (max-width: 992px) {
  .menu_links {
    text-align: center;
  }

  .call_button {
    justify-content: center;
    width: 100%;
  }

  .esg_logo {
    width: 150px;
  }

  .esg_footer .col-md-6,
  .esg_footer .col-lg-3 {
    text-align: center;
  }

  .footer_logo {
    margin: 0 auto;
    display: block;
  }

  .social_icons {
    justify-content: center;
  }

  .esg_footer p {
    justify-content: center;
  }

  .footer_links,
  .footer_location_links {
    padding-left: 0;
  }

  .footer_title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .footer_title {
    font-size: 18px;
  }

  .footer_links a,
  .footer_location_links a {
    font-size: 14px;
  }

  .footer_logo {
    width: 180px;
  }

  .footer_bottom {
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .call_button {
    font-size: 14px;
    padding: 8px 15px;
  }

  .esg_footer {
    padding: 30px 15px;
  }

  .footer_links {
    line-height: 1.8;
  }

  .footer_location_links {
    list-style: none;
    text-decoration: none;
    line-height: 2;
  }
}


/* top banner */
#main_content {
  overflow: hidden;
}

.esg_top_banner {
  background-size: cover;
  min-height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esg_top_banner.contact {
  background-image:
    linear-gradient(#00430c99, #00430c99),
    url("assets/images/contact_us_bg.jpg");
}

.esg_top_banner.partner {
  background-image:
    linear-gradient(#00430c99, #00430c99), url("assets/images/partner_bg.jpg");
}

.esg_banner_title {
  color: #ffffff;
  font-weight: 700;
  font-size: 60px;
}

.esg_contact_section {
  background: #f4f4f4;
  padding: 0 50px;
}

.esg_contact_para {
  max-width: 450px;
}

.contact_form_label {
  margin-bottom: 5px;
  color: #282828;
  font-weight: 600;
  font-size: 16px;
}

.contact_form_input {
  border-radius: 8px;
  border: 2px solid #a0a0a066;
  padding: 8px;
}

.contact_form_input::placeholder {
  color: #acacac;
  font-size: 16px;
}

.contact_Submit_btn {
  background: #269b40;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 40px;
  border: none;
  border-radius: 25px;
  color: #ffff;
}

@media (max-width: 768px) {
  .esg_banner_title {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .esg_banner_title {
    font-size: 40px;
  }

  .esg_contact_section {
    padding: 0 20px;
  }

  .contact_form_label {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .contact_form_input {
    padding: 5px;
  }

  .contact_form_input::placeholder {
    font-size: 13px;
  }

  .contact_Submit_btn {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
  }
}



.esg_partner_section {
  background: #f4f4f4;
}

.esg_partner_para {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #282828;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 260px;
  line-height: 1.3;
}

.trusted_section_title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.trusted_card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 47px;
  height: 100%;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.trusted_logo {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

.trusted_logo_2 {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.trusted_title {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 10px;
}

.trusted_text {
  font-size: 17px;
  color: #282828;
  margin: 0;
}

.accreditations_section_title {
  text-align: center;
  font-weight: 600;
  color: #999;
  margin-bottom: 30px;
}

.accreditation_card {
  width: 170px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  flex-shrink: 0;
}

.accreditation_logo {
  max-width: 80px;
  max-height: auto;
  object-fit: contain;
}

.accreditation_card_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1329px) and (min-width: 991px) {
  .accreditation_card_wrapper {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 992px) {
  .esg_banner_title {
    font-size: 42px;
  }

  .esg_partner_para {
    padding: 10px 80px;
    font-size: 20px;
  }

  .trusted_section_title {
    font-size: 32px;
  }

  .trusted_card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .trusted_logo,
  .trusted_logo_2 {
    width: 120px;
    height: auto;
  }

  .accreditation_card_wrapper {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 768px) {
  .esg_banner_title {
    font-size: 32px;
    text-align: center;
  }

  .esg_partner_para {
    padding: 10px 20px;
    font-size: 18px;
  }

  .trusted_section_title {
    font-size: 28px;
  }

  .trusted_card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .trusted_logo,
  .trusted_logo_2 {
    width: 120px;
    height: auto;
  }

  .accreditation_card_wrapper {
    flex-wrap: wrap !important;
  }

  .accreditation_card {
    width: 150px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .esg_banner_title {
    font-size: 26px;
  }

  .esg_partner_para {
    font-size: 16px;
    padding: 10px 15px;
  }

  .trusted_section_title {
    font-size: 24px;
  }

  .trusted_title {
    font-size: 18px;
  }

  .trusted_text {
    font-size: 15px;
  }

  .trusted_logo,
  .trusted_logo_2 {
    width: 120px;
  }

  .accreditation_card {
    width: 130px;
    height: 80px;
  }

  .accreditation_logo {
    max-width: 70px;
  }
}



/* privacy-style */
.privacy-content {
  padding: 0 50px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
}

h2 .sub-text {
  font-size: 20px;
  color: #333;
  font-weight: normal;
}

h5 {
  font-weight: 600;
  margin-top: 25px;
}

p {
  font-size: 16px;
  color: #333;
}

ul {
  padding-left: 0;
  list-style: none;
}

ul li {
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: start;
}

ul li i {
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

.section {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .container-box {
    padding: 20px;
  }

  .privacy-content {
    padding:  20px;
  }

  h1 {
    font-size: 22px;
  }

  h5 {
    font-size: 16px;
  }
}

@media (max-width: 576px){
  .privacy-content {
    padding: 15px;
  }
  h2{
    font-size: 22px;
  }
}