/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@500;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
:focus {
  outline: none;
}
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

a[class$="__link"] {
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}
a[class*="__link"]:link,
a[class*="__link"]:hover,
a[class*="__link"]:visited {
  text-decoration: none !important;
  color: currentColor;
}
/* 
input[class*="__input"] {
  border: none;
  outline: none;
  border-radius: 5px;
} */

/* CSS Reset Ends */

:root {
  /* Color Variables */
  --esg-color-primary: #29387e;
  --esg-color-grey-1: #231f20;
  --esg-color-grey-2: #202020;
  --esg-color-grey-3: #333333;
  --esg-color-grey-4: #484848;
  --esg-color-grey-5: #707070;
  --esg-color-grey-6: #cccccc;
  --esg-color-grey-7: #efefef;
  --esg-color-bluish: #00000026;
  --color-white: #fff;
  --esg-linear-gr-primary: linear-gradient(0deg, #39bcf7 -8%, #0f70a1 85.63%);
  --esg-linear-gr-secondary: linear-gradient(#006395, #216a8f);
  /* Font Size Variables */
  --esg-fs-900: clamp(1.5rem, 1.18rem + 1.83vw, 3.38rem);
  --esg-fs-800: clamp(1rem, 0.81rem + 1.1vw, 2.13rem);
  --esg-fs-700: clamp(1.5rem, 0.84rem + 0.7vw, 2rem);
  --esg-fs-600: clamp(1.2rem, 0.84rem + 0.7vw, 1.5rem);
  --esg-fs-500: clamp(1rem, 0.64rem + 0.61vw, 1.38rem);
  --esg-fs-400: clamp(1rem, 0.96rem + 0.24vw, 1rem);
  /* Padding */
  --esg-pd-container: clamp(1.38rem, 1.18rem + 1.1vw, 2.5rem);
  /* Others */
  --pd-btn-primary: clamp(0.31rem, 0.27rem + 0.24vw, 0.56rem)
    clamp(0.44rem, 0.39rem + 0.24vw, 0.69rem) clamp(0.31rem, 0.27rem + 0.24vw, 0.56rem)
    clamp(1.25rem, 1.15rem + 0.55vw, 1.81rem);
  /* Grid Variables*/
  --esg-grid-col-5: repeat(auto-fit, minmax(500px, 1fr));
}

@media (max-width: 1024px) {
  :root {
    --esg-grid-col-5: 1fr;
  }
  
/* Header */
.header-esg--esg {
  background-image: url("../../assets/images/esg-bg-only.png") !important;
}
}
@media (max-width: 992px) {
  :root {
    --esg-toggle-navbar: none;
  }
}

.esg__body {
  font-family: "Rubik", sans-serif !important;
  color: var(--esg-color-grey-5) !important;
}

.esg-heading {
  text-align: center;
  margin-top: 2rem;
  padding: 0 20px;
}
.esg-heading--highlight {
  color: var(--color-white);
  font-weight: 300;
  font-size: var(--esg-fs-800);
}
.esg-heading--primary {
  font-size: var(--esg-fs-900);
  font-weight: 600;
  color: var(--color-white);
}
.esg-heading--secondary {
  font-size: var(--esg-fs-600);
  font-weight: 600;
  line-height: 1.6;
}

.esg-text-default {
  font-weight: 300;
  font-size: var(--esg-fs-400);
  line-height: 1.7;
}

/* Layouts Start*/

/* Main Container */
.landing_esg-container {
  max-width: 1345px;
  margin: 0 auto;
  padding: 0 var(--esg-pd-container);
}

/* Header */
.header-esg {
  padding: clamp(18px, 10vw, 26px) 0 clamp(50px, 10vw, 170px) 0;
  background-image: url("../../assets/images/ESG_assets/esg-header-bg-darken.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.header-esg__btn-group {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(18px, 2vw, 26px);
  margin-top: clamp(30px, 10vw, 70px);
}


/* Navigation Starts*/
.esg-mob-navigation {
  padding: 30px;
  min-height: 100vh;
  width: 100%;
  position: fixed;
  top: -220%;
  left: 0;
  z-index: 1000;
  background-image: url("../../assets/images/ESG_assets/esg-header-bg.png");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
  height: 100%;
  overflow: auto;
}
.esg-mob-navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.esg-mob-navigation__item {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.esg-mob-navigation__item:hover {
  /* -webkit-transform: translateX(7%);
  transform: translateX(7%); */
}

.esg-mob-navigation__item:not(:last-of-type) {
  margin-bottom: clamp(1.25rem, 1.14rem + 0.61vw, 1.88rem);
}
.esg-mob-navigation__item:first-of-type {
  margin-bottom: clamp(2.38rem, 2.25rem + 0.73vw, 3.13rem);
}

.logo__photo--mob {
  width: clamp(12rem, 6rem + 7.62vw, 20rem);
}

.esg-mob-navigation__link {
  font-size: clamp(1.2rem, -0.12rem + 7.43vw, 1.2rem);
  text-transform: capitalize;
  font-weight: 300;
  color: #d2d6da !important;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.esg-mob-navigation__link:hover {
  text-decoration: none;
}
.esg-mob-navigation__toggler {
  position: absolute;
  top: 3%;
  right: 5%;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.esg-mob-navigation__btn-group {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 1.04rem + 1.22vw, 2.5rem);
}

/* Secction Welcome */
.section-welcome {
  background: #f7f7f7;
}
.section-welcome > .esg-container {
  /* display: flex; */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.section-welcome__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.section-welcome__left {
  flex: 2;
  flex-basis: 500px;
}

.section-welcome__left .esg-text-default:not(:last-of-type) {
  margin-bottom: 20px;
}

.section-welcome__right {
  flex: 1 1 400px;
  align-self: stretch;
}
.section-welcome__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1009px) {
  .section-welcome__photo {
    min-height: clamp(9.38rem, 0.38rem + 51.41vw, 32.19rem);
  }
}

/*Section Features*/
.esg-section-features__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.esg-section-features__features > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}

/*Section News Letter*/
.esg-section-news-letter {
  background: var(--esg-linear-gr-primary);
  padding: clamp(1.88rem, 1.42rem + 2.62vw, 4.56rem) 0;
}

/*Section Watch*/
/*Section Watch*/
.esg-section-watch {
  padding: clamp(0.06rem, -0.14rem + 1.16vw, 1.25rem);
}
.esg-section-watch__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  padding: 20px;
  background: #e3e3e3;
  border: 1px solid #c9c9c9;
  border-radius: 7px;
}

.esg-section-watch__text {
  font-size: var(--esg-fs-400);
  font-style: italic;
  font-weight: 500;
  color: var(--esg-color-grey-5);
}

/* Section Pricing Table */
.section-pricing-table {
  padding: 0 0 clamp(1.88rem, 1.6rem + 1.59vw, 3.5rem) 0;
}

/* ICN FOOTER STARTS */
.footer {
  background-color: #2a2a2a;
}

.icn-logo__photo {
  max-width: 100%;
}

.social-media li {
  display: inline-block;
  padding: 10px;
  font-size: 20px;
}
.social-media li a {
  color: rgba(255, 255, 255, 0.555);
}
.social-media li a:hover {
  color: #fff;
}
.Resources span,
.Products span,
.Contact span {
  color: #cecece;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: block;
  font-size: 20px;
  letter-spacing: 1px;
}
.icn-wrapper p {
  font-size: 18px;
  padding: 10px 10px !important;
  line-height: 30px;
}

.icn-resources ul li a,
.icn-products ul li a {
  font-size: 12px;
  color: #ffffffa6;
  line-height: 38px;
}
ul.Contact li {
  font-size: 12px;
  line-height: 34px;
}
ul.Contact li a {
  color: inherit;
}
ul.Contact li a:hover {
  color: #fff;
  padding-left: 10px;
}
.footer-bottom {
  border-top: 1px solid #ffffff2e;
  padding: 0;
  margin: 0;
}
p.copyright {
  font-size: 12px;
}
ul.footer-extra {
  width: 100%;
}
ul.footer-extra li {
  display: inline-block;
  margin-right: 25px;
  font-size: 12px;
}
.icn-resources ul li a:hover,
.icn-products ul li a:hover {
  color: #fff;
  padding-left: 10px;
}
ul.footer-extra li a {
  color: inherit;
}
ul.footer-extra li a:hover {
  color: #fff;
}
.file-input:hover .fake-btn {
  box-shadow: 3px 4px 6px 1px rgba(0, 0, 0, 0.6);
  background: #fff;
}
.file-input:hover {
  background: #27387f;
  color: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
}
/* ICN FOOTER ENDS */

/* Layouts End */

/* Components Start*/
.logo__photo_desk {
  width: clamp(6.88rem, 5.83rem + 5.98vw, 13rem);
}

/* Buttons */
.landing_esg-btn {
  background: transparent;
  border-radius: 40px;
  border: none;
  outline: none !important;
  text-align: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: var(--esg-fs-500);
  font-family: inherit;
  text-transform: uppercase;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.esg-mob-navigation__btn {
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.landing_esg-btn:focus {
  outline: none !important;
}

.landing_esg-btn:hover {
  -webkit-filter: contrast(1.4);
  filter: contrast(1.4);
  -webkit-transform: translateX(4%);
  transform: translateX(4%);
  color: #fff;
}
.esg-btn--primary,
.esg-btn--secondary {
  background: var(--esg-color-grey-6);
  padding: var(--pd-btn-primary);
  color: var(--esg-color-grey-3);
  font-size: clamp(0.88rem, 0.79rem + 0.49vw, 1.14rem);
  border-radius: 100px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1.5rem, 0.37rem + 0.73vw, 1.25rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.esg-btn--primary {
  background: var(--esg-color-primary);
  color: #fff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-filter: contrast(1);
  filter: contrast(1);
}
.esg-btn--secondary:hover {
  background: var(--esg-color-primary);
  color: #fff;
  -webkit-filter: contrast(1.4);
  filter: contrast(1.4);
  -webkit-transform: translateX(2%);
  transform: translateX(2%);
}
.esg-btn--secondary:hover > .esg-btn__icon {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  background: var(--esg-color-primary);
}
.esg-btn--secondary:hover .esg-btn__icon--outter {
  background: linear-gradient(135deg, #3f5e6c 2.86%, #294654 97.14%);
}
.esg-btn--secondary:hover .esg-btn__icon--line {
  width: clamp(1.13rem, 1.1rem + 0.12vw, 1.25rem);
  background: #fff;
}
.esg-btn--secondary:hover .esg-btn__icon--inner {
  background: var(--esg-color-primary);
}
.esg-btn--secondary:hover .esg-btn__icon--photo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.esg-btn__icon {
  background: var(--color-white);
  background: transparent;
  height: clamp(2.5rem, 2.23rem + 1.52vw, 4.06rem);
  width: clamp(2.5rem, 2.23rem + 1.52vw, 4.06rem);
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.esg-btn__icon--outter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.esg-btn__icon--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: var(--esg-color-grey-6);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.esg-btn__icon--inner-primary {
  background: var(--esg-color-primary);
}
.esg-btn__icon--outter-primary {
  background: linear-gradient(135deg, #3f5e6c 2.86%, #294654 97.14%);
}
.esg-btn__icon--photo {
  width: 10px;
}
.esg-btn__icon--photo-primary {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.esg-btn__icon--line {
  width: 0;
  border-radius: 4px;
  position: relative;
  left: 15%;
  height: 2.5px;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}
.esg-btn__icon--line-primary {
  width: clamp(1.13rem, 1.1rem + 0.12vw, 1.25rem);
  background: #fff;
}
.esg-btn--subscribe,
.esg-btn--submit {
  padding: clamp(10px, 1vw, 10px) clamp(20px, 2.2vw, 30px);
  font-size: 16px;
  border: 1px solid var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.esg-btn--submit-icon {
  margin-left: clamp(7px, 0.7vw, 10px);
}
.esg-btn--submit {
  background: var(--esg-color-primary);
  border: none;
}
.esg-btn--subscribe {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.esg-btn--subscribe:hover {
  background: var(--color-white);
  color: var(--esg-color-primary);
}
.esg-btn--buy {
  background: var(--esg-color-primary);
  width: 100%;
  padding: 16px 10px;
  max-width: 340px;
}

.esg-btn--readmore {
  text-transform: uppercase;
  color: var(--esg-color-primary);
}

/* Navbar */
.esg-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 14px;
  background: var(--color-white);
  padding: 0 0 0 clamp(1.5rem, -0.1rem + 2.59vw, 3rem);
  overflow: hidden;
}

.esg-navbar__hamburger {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.esg-navbar__hamburger:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.esg-navbar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
.esg-navbar__list > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 max-content;
  flex: 1 1 max-content;
}
.esg-navbar__list > :last-child > a {
  margin-left: auto;
  color: var(--color-white);
  text-decoration: none;
  font-size: clamp(0.94rem, 0.06rem + 1.42vw, 1.25rem);
  font-weight: 300;
  text-align: center;
  background: var(--esg-color-primary);
}
.esg-navbar__item {
  display: inline-block;
}
.esg-navbar__link {
  display: inline-block;
  padding: clamp(1.03rem, 0.8rem + 0.38vw, 1.25rem);
  font-size: clamp(0.7rem, 0.06rem + 1vw, 1.1rem);
  color: var(--esg-color-grey-5);
}
.esg-navbar__link:hover {
  color: var(--esg-color-grey-2);
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 2 version
*/

.esg-navbar__link--help {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.esg-navbar__link--help > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.esg-navbar__link--assistant,
.esg-navbar__link--support {
  grid-column: 1/-1;
  grid-row: 1/-1;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.esg-navbar__link--support {
  font-weight: 500;
}
.esg-navbar__link--support {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}

.esg-navbar__link--help:hover > .esg-navbar__link--support {
  opacity: 1;
  pointer-events: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.esg-navbar__link--help:hover > .esg-navbar__link--assistant {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

.esg-navbar__link:last-of-type {
  line-height: 1.7;
}
.esg-navbar__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
}

.esg-navbar__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.esg-navbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: var(--esg-toggle-navbar) !important;
}

/* ESG Dropdown */
.esg-dropdown {
  position: absolute;
  background: var(--color-white);
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 200px;
  z-index: 300000000000000000000;
  -webkit-box-shadow: 0px 25px 80px var(--esg-color-bluish);
  box-shadow: 0px 25px 80px var(--esg-color-bluish);
  border-radius: 2px;
}

.esg-dropdown__link {
  display: block;
  font-weight: 300;
  padding: 11px 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.esg-dropdown__link:hover {
  background: var(--esg-color-primary);
  color: var(--color-white) !important;
}
.adt-d-link:hover {
  background: #acacb1 !important;
  color: var(--color-white) !important;
}

.esg-navbar__link--products {
  position: relative;
}

@media (min-width: 992px) {
  .esg-navbar__link--products:hover + .esg-dropdown,
  .esg-dropdown:hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .esg-navbar__link--products:hover > .esg-navbar__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.esg-navbar__arrow {
  -webkit-transition: all 0.4s;
  opacity: 0.7;
  transition: all 0.4s;
}

.esg-navbar__arrow--white {
  filter: invert(1);
}

/* ESG Contact */
.esg-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #ddd5d5;
  padding: 12px 0;
  padding: 12px 20px 12px 0;
}
.esg-contact__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.esg-socical__link,.esg-contact__social-links{
  display: var(--esg-toggle-navbar) !important;
}
.esg-contact__social-links > :not(:last-child) {
  margin-right: clamp(1.75rem, -2.11rem + 6.23vw, 3.13rem);
}

/* Esg Language*/
.esg-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 0 10px;
  border-radius: 3px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: relative;
}
.esg-lang__group {
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.esg-lang__group > :not(:last-of-type) {
  width: clamp(1.06rem, 0.71rem + 0.57vw, 1.19rem);
  margin-right: clamp(0.19rem, -4.21rem + 7.04vw, 0.81rem);
}
.esg-lang__group > :last-of-type {
  margin-right: 6px;
}
.esg-lang__option {
  background: #eeeeee;
  padding: 3px 7px;
  border-radius: 3px;
  cursor: pointer;
}


.esg-lang__photo--arrow {
  margin-left: clamp(0.2rem, -0.8rem + 1vw, 0.53rem);
}

/* Esg Feature*/
.esg-feature {
  -webkit-box-shadow: 6px 5px 12px #00000033;
  box-shadow: 6px 5px 12px #00000033;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.esg-feature__bg {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 102%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  background: var(--esg-color-primary);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  overflow: auto;
}

/* Custom Scroller */
.esg-feature__bg::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  background-color: #f5f5f5;
}

.esg-feature__bg::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}

.esg-feature__bg::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--esg-color-primary);
}

.esg-feature-bg__text {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}
.esg-feature:hover > .esg-feature__description {
  -webkit-transform: translateY(-4%);
  transform: translateY(-4%);
  -webkit-box-shadow: 10px 0px 40px #fff;
  box-shadow: 10px 0px 40px #fff;
  background: var(--esg-color-primary);
  color: var(--color-white);
}
.esg-feature:hover .esg-btn--readmore {
  color: var(--color-white);
  text-decoration: underline;
}
.esg-feature:hover > .atd-BG {
  -webkit-transform: translateY(-4%);
  transform: translateY(-4%);
  -webkit-box-shadow: 10px 0px 40px #fff;
  box-shadow: 10px 0px 40px #fff;
  background: #2d2e48 !important;
  color: var(--color-white);
}
.esg-feature__photo {
  width: 100%;
  height: clamp(8.75rem, 7.81rem + 5.37vw, 14.25rem);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.esg-feature__description {
  padding: clamp(15px, 5vw, 30px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-height: 100%;
  background: var(--color-white);
}
.esg-feature__title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.93rem + 0.43vw, 1.44rem);
}
.esg-feature__text {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
}

/* Pricing Table */
.esg-pricing-table {
  -webkit-box-shadow: 6px 3px 14px #00000033;
  box-shadow: 6px 3px 14px #00000033;
  border-radius: 10px;
  padding: clamp(1.25rem, 0.75rem + 2.87vw, 4.19rem) clamp(1rem, 0.79rem + 1.22vw, 2.25rem);
}
.esg-pricing-table__sub-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.esg-pricing-table__hr {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  height: 1px;
  background: var(--esg-color-grey-5);
}
.esg-pricing-table__name {
  font-size: clamp(0.94rem, 0.48rem + 0.95vw, 1.63rem);
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--esg-color-grey-4);
  text-transform: uppercase;
}
.esg-pricing-table__price {
  color: var(--esg-color-grey-3);
  font-size: clamp(1rem, 0rem + 2.08vw, 2.5rem);
  -webkit-box-flex: 0;
  flex: 0 0 60px;
  text-align: right;
  -ms-flex: 0 0 max-content;
  flex: 0 0 max-content;
}
.esg-pricing-table__header {
  background: var(--esg-color-primary);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: clamp(1.88rem, 1.66rem + 1.22vw, 3.13rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.esg-pricing-table__logo {
  max-width: 100%;
}


#esg-pricing-table__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.88rem, 1.66rem + 1.22vw, 3.13rem);
}

@media (max-width: 600px) {
  #esg-pricing-table__list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

@media (min-width: 1094px) {
  #esg-pricing-table__list.esg-pricing-table__list > :nth-child(18),
  #esg-pricing-table__list.esg-pricing-table__list > :nth-child(19) {
    order: 1;
  }
}

#esg-pricing-table__list>.esg-pricing-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: clamp(1rem, 0.83rem + 0.35vw, 1.25rem);
  font-weight: 400;
}

.esg-pricing-table__icon {
  width: clamp(1.56rem, 1.48rem + 0.49vw, 2.06rem);
  margin-right: clamp(0.75rem, 0.61rem + 0.79vw, 1.56rem);
}

/* News Letter */
.esg-news-letter {
  padding: clamp(40px, 4vw, 100px) clamp(20px, 2.2vw, 46px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: var(--color-white);
}
.esg-news-letter > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 max-content;
  flex: 1 1 max-content;
}
.esg-news-letter__title {
  font-size: var(--esg-fs-800);
  text-transform: uppercase;
  font-weight: 700;
}
.esg-news-letter__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(12px, 1vw, 30px);
  margin-bottom: 13px;
}
.esg-news-letter__input-group > :nth-child(1) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
}
.esg-news-letter__input-group > :nth-child(2) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 max-content;
  flex: 0 0 max-content;
}
.esg-news-letter__input {
  background: var(--color-white);
  padding: clamp(12px, 0.8vw, 14px) clamp(12px, 1.2vw, 24px);
  -webkit-box-shadow: inset 0 0 8px #0000005d;
  box-shadow: inset 0 0 8px #0000005d;
  width: 100%;
}

/* Custom Checkbox */
.esg-custom-checkbox__input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.esg-custom-checkbox__label {
  position: relative;
  cursor: pointer;
}

.esg-custom-checkbox__label:before {
  content: "";
  -webkit-appearance: none;
  background: var(--color-white);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.esg-custom-checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 7px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* POPUP MODAL */
#esg-video-popup {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

#esg-video-popup iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.esg-modal-close {
  background: 0 0;
  position: absolute;
  right: 0;
  opacity: 1;
  text-shadow: none;
  color: #fff;
  opacity: 1 !important;
  top: -25px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/* Additional Customization Starts*/
.add-customization {
  background: -webkit-gradient(linear, left top, left bottom, from(#58c7ff), to(#3387b1));
  background: var(--esg-linear-gr-secondary);
  padding: clamp(1.25rem, 0.87rem + 2.2vw, 3.5rem) clamp(1rem, 0.46rem + 3.11vw, 4.19rem);
  border-radius: 20px;
}
.add-customization__title {
  font-size: var(--esg-fs-600);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.6;
}
.add-customization__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
}
.add-customization__lists > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}
.add-customization__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 300;
  font-size: var(--esg-fs-400);
}

.add-customization__item:not(:last-of-type) {
  margin-bottom: clamp(1.56rem, 1.3rem + 1.52vw, 3.13rem);
}
.add-customization__icon {
  max-width: clamp(3.13rem, 2.59rem + 3.05vw, 6.25rem);
  margin-right: clamp(0.63rem, 0.41rem + 1.22vw, 1.88rem);
}


/* Before Line */
.esg-before-line {
  width: 100%;
  max-width: 30px;
  height: 2px;
  margin-right: 15px;
  margin-top: 15px;
  background: var(--esg-color-grey-5);
}


/* Components End */

/* Utilities Classes Starts */
/* Margin Classes */
.u-esg-mt-56 {
  margin-top: clamp(1.88rem, 1.6rem + 1.59vw, 3.5rem);
}

.u-esg-mt2 {
  margin-top: clamp(0.75rem, 0.54rem + 0.91vw, 1.63rem);
}

.u-esg-mt3 {
  margin-top: 30px;
}

.u-esg-mb {
  margin-bottom: 13px;
}

/* Padding Classes*/
.u-esg-p60 {
  padding: clamp(1.88rem, 1.55rem + 1.83vw, 3.75rem) 0;
}

.u-esg-pbn {
  padding-bottom: 0;
}


/* Others */
.u-esg-cw {
  color: var(--color-white);
}

.u-esg-bgbl {
  background: var(--esg-color-primary);
}
.esg-feature__bg > .atd-bg-ul {
  background: #2d2e48 !important
}
.esg-tt-up {
  text-transform: uppercase;
}

.u-esg-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-esg-c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-esg-fs {
  font-size: var(--esg-fs-700);
}

.u-esg-dbn {
  display: none;
}

.u-esg-dblock {
  display: block;
}

.u-esg-opac-none {
  opacity: 0;
}

/* Utilities Classes End */

/* Dynamic CSS via JS */
.esg-show-navigation {
  top: 0;
}

.esg-show-feature {
  top: 0;
  opacity: 1;
  z-index: 100;
}

.esg-navigation-link-anim {
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.esg-lang-animation {
  opacity: 1;
}

.esg-lang-bg {
  background: #eeeeee;
}

.esg-show-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px) !important;
}

.rotate-drop-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.u-esg-mx-height {
  max-height: 1000px !important;
}

/* Scroll Reveal */
.c-scrollreveal {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.u-landing-logo{
  max-width: 340px;
  margin-bottom: 32px;
}

.fadeInBottom {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.form_body .company{
  display: block;
}

.esg__body .newsletter_containers{
  display: none;
}
.esg_suite_form .wpcf7-not-valid{
  margin-top: 10px !important;
}
.esg_suite_form .ajax-loader{
  margin-top: 10px !important;
  display: block !important;
}
#bookdemoModal .ajax-loader{
  margin-top: 10px !important;
}

.u-esg-dpt {
  display: none;
}

/* Media Query 992 */

@media (max-width: 992px) {
  .u-esg-dpt {
    display: flex;
  }
  .u-esg-dbn {
    display: flex;
  }
  .u-esg-pdh-none {
    padding: 90px 0 0 0;
  }
  .esg-contact {
    border: none;
  }
  .esg-contact__left {
    justify-content: flex-end;
  }
  .esg-navbar {
    margin: 0;
    padding: 20px;
    border-radius: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
  }
  .esg-navbar {
    overflow: visible;
  }
  .header-esg {
    padding-top: 0;
  }
  .header-esg {
    padding-top: 0;
  }
}

/* Media Query 767 */

@media (max-width: 767px) {
  .u-landing-logo{
    max-width: 260px;
    margin-bottom: 20px;
  }
  .esg-pricing-table__header {
    padding: 20px;
    border-radius: 6px;
  }
  .esg-before-line {
    display: none;
  }
  .add-customization__title {
    text-align: center;
  }
  .add-customization__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .add-customization__icon {
    max-width: 80px;
  }
  .adt-sign-up {
    font-weight: 400 !important;
    color: #cccccc !important;
    font-size: 22px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: 1px Solid #ccc !important;
    padding: 16px 27px !important;
    border-radius: 50px !important;
    font-size: clamp(0.88rem, 0.79rem + 0.49vw, 1.14rem) !important;
    
}
.esg-heading--highlight--adt {
  font-size: 18px !important;
}
.sign-ux {
  margin-left: 20px !important;
  margin-top: 35px !important;
  display: block !important;
}
.landing_esg-container.u-esg-pdh-none.adt-pt {
  padding-top: 30px !important;
}
.logo__photo_desk--adt {
  width: 100%;
  margin-right: 232px !important;
}
.esg-heading--primary--adt {
  padding-top: 20px !important;
}
}

/* Media Query 600 */

@media (max-width: 600px) {
  .esg-lang__group {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 30px;
    display: flex;
    flex-direction: column;
    left: 0;
    background: #eeeeee;
    width: 100%;
    display: flex;
    border-radius: 4px;
    border-radius: 0 0 2px 2px;
    padding-left: 7px;
  }
  .esg-lang__group > :not(:last-of-type) {
    width: 100%;
    margin-right: 0;
    margin-top: 6px;
  }
  .esg-lang__group > :not(:first-of-type) {
    width: 100%;
    margin-right: 0;
  }
  .esg-lang__group > :last-of-type {
    margin-right: 0;
    margin-bottom: 4px;
  }
  .esg-lang__group > :first-child {
    margin-top: 2px;
  }
  .esg-lang-animation {
    max-height: 1200px;
  }

  .esg-lang__option {
    border-radius: 3px 3px 0 0;
  }

  .esg-lang__photo--arrow {
    transform: rotate(270deg);
  }

  .esg-lang {
    padding: 0;
  }

  .section-welcome__photo {
    object-fit: fill;
  }
}


/* Adtargeting Styles Starts Here */
.header-esg--adt {
  background-image: url("../../assets/images/ESG_assets/adt-hero-bg.png");
}

.esg-navbar--adt {
  background: #2d2e47;
  padding: 12px;
  overflow: hidden;
}

.esg-heading--primary--adt {
  font-size:   clamp(2.00rem, calc(1.73rem + 1.38vw), 3.38rem);
  text-shadow: 0 4px 8px rgb(0 0 0 / 66%);
  max-width: 600px;
}

.esg-heading--highlight--adt {
  color: var(--color-white);
  font-weight: 300;
  font-size: 26px;
}
.esg-btn--primary--adt {
  font-weight: 400;
  color: #2e2e46;
  background: #cccccc;
}
.esg-btn--primary--adt:hover{
color: currentColor !important;
}
.esg-btn__icon--outter-primary--adt {
  background: linear-gradient(135deg, #ffffff 2.86%, #294654 97.14%);
}
.esg-btn__icon--inner-primary--adt {
  background: #2c2e49;
}

.esg-navbar__list--adt > :last-child > a {
  border-radius: 40px !important;
  background: #97999b !important;
  font-size: 16px !important;
}

.esg-navbar__link--adt{
padding: 12px !important;
}
.logo__photo_desk--adt {
  width: 100%;
  margin-right: 97px;
}

.esg-navbar__right--adt{
  display: flex;
  justify-content: flex-end;
}

.section-welcome__left--adt {
  flex-basis: 394px;
}

.add-customization--adt{
  background: #2c2e49 !important;
}

.esg-pricing-table__header--adt{
  background: #2c2e49 !important;
}

.esg-section-news-letter--adt{
  background: linear-gradient(-90deg, #959799 -8%, #2e2e47 85.63%) !important;
}

.u-d-iblock{
display: inline-block;
}

.u-invert {
  filter: invert(1);
}
.u-obj-contain{
  object-fit: contain;
}
.u-bg-adt{
  background: #2d2e48 !important;
}
.u-tt-as{
  text-transform: none !important;
}

.sign-ux {
  margin-left: 25px;
}
.adt-sign-up {
  font-weight: 400;
  color: #cccccc;
  font-size: 22px;
  text-transform: uppercase;
  border: 1px Solid #ccc;
  padding: 20px 63px;
  border-radius: 50pc;
  font-size: clamp(0.88rem, 0.79rem + 0.49vw, 1.14rem) !important;
}
a.adt-sign-up:hover {
  color: #363637 !important;
    background: #cccccc;
    filter: contrast(1);
}
.line-h {
  line-height: 34px;
}
/* Adtargeting Styles Ends Here */