@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  src: url("../fonts/Satoshi-Regular.eot") format("eot");
  src: url("../fonts/Satoshi-Regular.otf") format("woff");
  src: url("../fonts/Satoshi-Regular.ttf") format("true-type");
  src: url("../fonts/Satoshi-Regular.woff2") format("woff");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("../fonts/Satoshi-Black.woff2") format("woff2");
  src: url("../fonts/Satoshi-Black.eot") format("eot");
  src: url("../fonts/Satoshi-Black.otf") format("woff");
  src: url("../fonts/Satoshi-Black.ttf") format("true-type");
  src: url("../fonts/Satoshi-Black.woff2") format("woff");
  font-weight: Black;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Bold";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  src: url("../fonts/Satoshi-Bold.eot") format("eot");
  src: url("../fonts/Satoshi-Bold.otf") format("woff");
  src: url("../fonts/Satoshi-Bold.ttf") format("true-type");
  src: url("../fonts/Satoshi-Bold.woff2") format("woff");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Light";
  src: url("../fonts/Satoshi-Light.woff2") format("woff2");
  src: url("../fonts/Satoshi-Light.eot") format("eot");
  src: url("../fonts/Satoshi-Light.otf") format("woff");
  src: url("../fonts/Satoshi-Light.ttf") format("true-type");
  src: url("../fonts/Satoshi-Light.woff2") format("woff");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  src: url("../fonts/Satoshi-Medium.eot") format("eot");
  src: url("../fonts/Satoshi-Medium.otf") format("woff");
  src: url("../fonts/Satoshi-Medium.ttf") format("true-type");
  src: url("../fonts/Satoshi-Medium.woff2") format("woff");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}

/* Chrome, Edge, Safari */
::-webkit-input-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-family: "Satoshi-Light";
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-family: "Satoshi-Light";
}

/* Firefox 4 - 18 */
:-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-family: "Satoshi-Light";
}

/* Internet Explorer 10 - 11 */
:-ms-input-placeholder {
  color: #a3a3a3;
  font-family: "Satoshi-Light";
}

/* Microsoft Edge (Legacy) */
::-ms-input-placeholder {
  color: #a3a3a3;
  font-family: "Satoshi-Light";
}

/* Standard (Modern Browsers) */
::placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-family: "Satoshi-Light";
}

body {
  font-family: "Satoshi-Regular";
  color: #fff;
  overflow-x: hidden;
}

/*=========================================================
Variables
=========================================================*/

:root {
  --primary: #c4453c;
  --white: #ffffff;
  --black: #111111;
  --text: #e5e5e5;
}

/*=========================================================
Common CSS
=========================================================*/

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn {
  transition: 0.4s;
}
h1,
h2 {
  font-family: "Satoshi-Black";
}

/*=========================================================
Header Section Start
=========================================================*/

.header-area {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 999;
}

.navbar-brand img {
  max-height: 45px;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  color: #fff;
  font-size: 20px;
  font-family: "Satoshi-Medium";
}

.nav-link:hover {
  color: #fff;
}

.btn-outline-light {
  border-radius: 50px;
  padding: 10px 28px !important;
  font-size: 20px;
  font-family: "Satoshi-Medium";
}

.header-area ul.dropdown-menu a.dropdown-item:hover {
  background-color: transparent !important;
  color: #c4453c;
}
.header-area ul.dropdown-menu a.dropdown-item {
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-area ul.dropdown-menu {
  min-width: 345px !important;
  width: auto !important;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 25px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
}
.header-area ul.dropdown-menu a.dropdown-item:hover svg,
.header-area ul.dropdown-menu a.dropdown-item:hover svg path {
  color: #fff;
  fill: #fff;
  stroke: #fff;
}
.nav-link.dropdown-toggle.dropdown-toggle::after {
  vertical-align: 2px;
}

/*=========================================================
Hero Section Start
=========================================================*/

.hero-section {
  position: relative;
}
.home-banner {
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 64.61%,
    #c0392b 100%
  );
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content-on-banner {
  position: absolute;
  left: 0;
  right: 0;

  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.hero-subtitle {
  font-size: 20px;

  font-family: "Satoshi-Bold";
}

.hero-title {
  font-size: 72px;

  line-height: 1.05;

  font-weight: 900;

  max-width: 100%;
}

.hero-description {
  color: #fff;

  /*max-width: 800px;*/

  font-size: 26px;

  line-height: 120%;
}

.hero-btn {
  background: #c4453c;

  color: #fff;

  padding: 9px 41px;

  border-radius: 50px;

  font-family: "Satoshi-Bold";

  font-size: 20px;
}

.hero-btn:hover {
  background: #a53029;

  color: #fff;
}

svg#svg {
  width: min(900px, 95vw);
  height: auto;
  overflow: visible;
}
.label rect {
  fill: #fff;
  rx: 6;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18));
}
.label text {
  fill: #7b5b4a;
  font-size: 20px;
}
.logo {
  transform-origin: 450px 350px;
  animation: spin 12s linear infinite;
}
.spot {
  transform-origin: 450px 350px;
  animation: sector 14s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sector {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*=========================================================
Need For Climate Innovation
=========================================================*/

.climate-section {
  background: #f8f8f8;
}

.section-subtitle {
  color: #c4453c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 56px;
  font-family: "Satoshi-Black";
  line-height: 110%;
  color: #c23f3a;
}

.section-text {
  font-size: 20px;
  color: #666;
  line-height: 32px;
  font-family: "Satoshi-Regular";
}

.theme-btn {
  background: #c4453c;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
}

.theme-btn:hover {
  background: #a8312a;
  color: #fff;
}
/*=========================================
How To Use
=========================================*/

.how-to-use {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  font-size: 56px;
  color: #c84039;
  margin-bottom: 10px;
  font-family: "Satoshi-Black";
}

.section-subtitle {
  font-size: 26px;
  color: #262626;
  margin-bottom: 60px;
  text-transform: inherit;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  position: relative;

  background: #f7f3ee;

  border: 1px solid #c7a999;

  border-radius: 18px;

  padding: 29px 35px;

  overflow: hidden;

  transition: 0.35s;
}

.step-line {
  position: absolute;

  left: 16px;

  top: 18px;

  bottom: 18px;

  width: 5px;

  border-radius: 10px;

  background: #c84039;
}

.step-icon {
  width: 72px;

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.step-icon img {
  width: 58px;
}

.step-card h3 {
  color: #c84039;

  font-size: 28px;

  font-family: "Satoshi-Bold";

  margin-bottom: 15px;
}

.step-card p {
  font-size: 18px;
  color: #555;
  line-height: 160%;
  margin: 0;
  font-family: "Satoshi-Regular";
}

.step-badge {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  min-width: 105px;

  height: 48px;

  background: #c84039;

  color: #fff;

  border-radius: 40px;

  font-weight: 700;

  font-size: 18px;
}
/*=========================================================
    Opportunities Section Start
=========================================================*/

.opportunities {
  padding: 100px 0;
  background: #ffffff;
}

/*=========================================================
    Section Heading
=========================================================*/

.section-description {
  font-size: 26px;
  line-height: 150%;
  color: #262626;
  margin: 0;
  font-family: "Satoshi-Regular";
}

/*=========================================================
    View Button
=========================================================*/

.view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 50px;
  padding: 0 30px;
  border: 1.5px solid #d5534a;
  border-radius: 50px;
  color: #d5534a;
  font-size: 20px;
  font-family: "Satoshi-Bold";
  text-decoration: none;
  transition: all 0.35s ease;
}

.view-btn:hover {
  background: #d5534a;
  color: #fff;
}

/*=========================================================
    Opportunity Card
=========================================================*/

.opportunity-card {
  background: #f5f2ed;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
}

.opportunity-card:hover {
  /* transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);*/
}
.desktop-view {
  display: block !important;
}
.mobile-view {
  display: none !important;
}

/*=========================================================
    Card Image
=========================================================*/

.card-image {
  position: relative;
}
.card-image .card-img-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* z-index: 2; */
  /* Top fade */
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 48.26%);
}
.card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Red Strip */

.card-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #d6443d;
}

/*=========================================================
    Category Badge
=========================================================*/

.card-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-tag img {
  width: auto;
  height: auto;
}

.card-tag span {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

/*=========================================================
    Card Content
=========================================================*/

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: caLC(100% - 320px);
}
.card-content h3 {
  font-size: 20px;
  color: #c73d38;
  font-family: "Satoshi-Bold";
  line-height: 1.2;
  margin-bottom: 19px;
  min-height: 51px;
}

.card-content p {
  color: #252525;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 35px;
  min-height: 110px;
}

/*=========================================================
    Divider
=========================================================*/

.card-divider {
  width: 100%;
  height: 1px;
  background: #d87a73;
  margin: 12px 0;
}

/*=========================================================
    Bottom Info
=========================================================*/

.card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card-info span {
  color: #d55a52;
  font-size: 14px;
  line-height: 110%;
}

.card-info strong {
  color: #c73d38;
  font-size: 14px;
  font-family: "Satoshi-Medium";
}
.bottom .card-divider:last-child {
  margin-bottom: 0px;
}

/*=========================================================
    Bootstrap Gap Fix
=========================================================*/

.row.gy-4 {
  --bs-gutter-y: 2rem;
}

/*=========================================================
    Smooth Transition
=========================================================*/

.opportunity-card,
.view-btn,
.card-image img {
  transition: all 0.35s ease;
}

/*=========================================================
    Utilities
=========================================================*/

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.swiper-pagination-bullet-active {
  background-color: #d55a52;
}

.swiper.opportunitySlider {
  padding-bottom: 40px;
}

.swiper-slide {
  height: auto;
}

/*=========================================================
    End Opportunities Section
=========================================================*/
/*=========================================
Contact
=========================================*/

/*==================================================
    Connect Section
==================================================*/

.connect-section {
  padding: 100px 0;
  background: #ffffff;
}

/*==================================================
    Left Content
==================================================*/

.connect-content {
  padding-right: 40px;
}

.connect-content .section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  color: #c63f37;
  margin-bottom: 35px;
}

.connect-content p {
  font-size: 20px;
  line-height: 160%;
  color: #343434;
  margin: 0px;
}

/*==================================================
    Form Wrapper
==================================================*/

.connect-form {
  border-radius: 24px;
  padding: 0px;
}
h3.form-number {
  font-size: 24px;
  color: #252525;
  font-family: "Satoshi-Bold";
}

h3.form-number span {
  color: #c63f37;
}
/*==================================================
    Labels
==================================================*/

.connect-form label {
  display: block;
  font-size: 13px;
  font-family: "Satoshi-Bold";
  color: #222;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/*==================================================
    Inputs
==================================================*/

.connect-form .form-control,
.connect-form .form-select {
  height: 50px;

  border: 1px solid #a3a3a3;

  border-radius: 6px;

  background-color: #fff;

  box-shadow: none;

  font-size: 16px;

  padding: 12px 16px;

  color: #333;
}
.connect-form .form-select {
  padding-right: 35px;
}

.connect-form .form-control::placeholder {
  color: #8b8b8b;
}

.connect-form .form-control:focus,
.connect-form .form-select:focus {
  border-color: #c63f37;

  box-shadow: none;
}

.connect-form textarea.form-control.share {
  height: 410px;
}

select.form-select.search-item {
  height: 70px;
}

/*==================================================
    Textarea
==================================================*/

.connect-form textarea.form-control.ask {
  min-height: 80px;
  resize: none;
  padding-top: 15px;
  font-size: 14px;
}

/*==================================================
    Input Group
==================================================*/

.connect-form .input-group-text {
  background: #fff;

  border: 1px solid #a3a3a3;

  border-right: 0;

  border-radius: 6px 0 0 6px;

  font-size: 16px;

  color: #555;
}

.connect-form .input-group .form-control {
  border-left: 0;

  border-radius: 0 6px 6px 0;
}

.better-intro {
  color: #8a6f63;
}

.list-wrap li {
  color: #252525;
  font-size: 15px;
  font-family: "Satoshi-Regular";
  display: flex;
  align-items: center;
  margin: 5px 0px;
}

.list-wrap li input[type="checkbox"] {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.list-wrap .form-check-input:checked {
  background-color: #c63f37;
  border-color: #c63f37;
}

/*==================================================
    Select
==================================================*/

.connect-form .form-select {
  cursor: pointer;
}

.agree-state {
  background: #f5f2ed;
  border-radius: 12px;
  padding: 32px;
}
p.info {
  color: #8a6f63;
  font-style: italic;
  font-family: "Satoshi-Medium";
}
/*==================================================
    Submit Button
==================================================*/

.submit-btn {
  min-width: 400px;
  height: 67px;
  border: none;
  border-radius: 50px;
  background: #c63f37;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  max-width: 400px;
  font-family: "Satoshi-Black";
}

.submit-btn:hover {
  background: #a9302b;

  color: #fff;
}

/*=========================================================
    Footer Section Start
=========================================================*/

.footer-area {
  background: #c63f37;
  padding: 80px 0 35px;
  color: #fff;
  overflow: hidden;
}

/*=========================================================
Logo
=========================================================*/

.footer-logo img {
  max-width: 220px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-top: 45px;
  max-width: 360px;
}

.design-partner,
.design-partner a {
  font-size: 14px;
  color: #fff;
}

.design-partner strong {
  font-weight: 700;
}

/*=========================================================
Newsletter
=========================================================*/

.footer-newsletter h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  max-width: 620px;
}

.newsletter-box {
  position: relative;

  width: 100%;

  max-width: 620px;
}

.newsletter-box input {
  width: 100%;

  height: 72px;

  border: none;

  outline: none;

  border-radius: 50px;

  padding: 0 80px 0 30px;

  font-size: 20px;

  color: #222;
}

.newsletter-box button {
  position: absolute;

  right: 8px;

  top: 8px;

  width: 56px;

  height: 56px;

  border: none;

  background: transparent;

  font-size: 28px;

  color: #222;

  transition: 0.3s;
}

.newsletter-box button:hover {
  transform: translateX(5px);
}

/*=========================================================
Menu
=========================================================*/

.footer-menu {
  margin: 45px 0 40px;

  padding: 0;

  list-style: none;

  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.footer-menu li a {
  color: #fff;

  text-decoration: none;

  font-size: 20px;

  font-weight: 300;

  transition: 0.3s;
}

.footer-menu li a:hover {
  opacity: 0.8;
}

/*=========================================================
Partner Logos
=========================================================*/

.partner-logos {
  display: flex;

  align-items: center;

  gap: 45px;

  flex-wrap: wrap;
}

.partner-logos img {
  max-height: 60px;

  width: auto;
}

/*=========================================================
LinkedIn
=========================================================*/

.linkedin {
  color: #fff;

  font-size: 32px;

  text-decoration: none;
}

.linkedin:hover {
  color: #fff;
}

/*=========================================================
Bottom
=========================================================*/

.footer-bottom {
  margin-top: 40px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 18px;

  color: #fff;
}
p.copyright {
  margin-bottom: 0px;
  font-size: 14px;
}
/*=========================================================
Hover
=========================================================*/

.footer-menu a,
.linkedin,
.newsletter-box button {
  transition: 0.3s;
}

/* opportunities page css start */
.inner-banner {
  position: relative;
  background:
    linear-gradient(
      360deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 64.61%,
      #c0392b 100%
    ),
    url("../images/innerbanner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
section.inner-banner.opportunities-banner {
  background: url(../images/innerbanner.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 1080px;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.banner-subtitle {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.banner-title {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.banner-desc {
  max-width: 850px;
  margin: auto;
  color: #fff;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
}

.btn-scroll {
  width: 65px;
  height: 65px;
  background: #d84d43;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-top: 45px;
  font-size: 28px;
  transition: 0.3s;
}

.btn-scroll:hover {
  background: #b83932;
  color: #fff;
  transform: translateY(4px);
}

.intro-framework-section {
  padding: 40px 0px;
}

.search_wrap button {
  position: absolute;
  border: none;
  background: transparent;
  padding: 13px 15px;
}
.relative {
  position: relative;
}
select.form-select.search-select {
  height: 50px;
  border-color: #c23f3a;
}
.search_wrap input.form-control {
  padding-left: 50px;
  height: 50px;
  border-color: #c23f3a;
}
.card-image:hover .overlay {
  background: rgba(37, 37, 37, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}
.overlay {
  opacity: 0;
}
.overlay a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #c23f3a;
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
}
.intro-framework-section .section-description {
  font-size: 20px;
  line-height: 150%;
  color: #252525;
  margin: 0;
  font-family: "Satoshi-Light";
}
.intro-framework-section .section-description span {
  font-family: "Satoshi-Medium";
  color: #c23f3a;
}
.search_wrap {
  display: flex;
  width: 100%;
  gap: 10px;
}

.search_wrap button.searchBtn {
  position: relative;
  background: #c84039;
  color: #fff;
  border-radius: 50px;
  min-width: 50px;
  height: 50px;
}
section.opportunities.section-padding {
  padding: 50px 0;
}
/* opportunities page css end */

/* statement page css start */
section.hero-section.inner-page-banner {
  background:
    linear-gradient(
      360deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 64.61%,
      #c0392b 100%
    ),
    url(../images/water-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
section.hero-section.inner-page-banner.statement-banner {
}
.statement-banner .hero-title {
  font-size: 62px;
  line-height: 1.25;
}
section.problem-overview {
  padding: 50px 15px;
}
.badge label {
  background: #70ae6e;
  color: #10360f;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-family: "Satoshi-Medium";
}
.text-img {
  color: #c23f3a;
  font-size: 20px;
  font-family: "Satoshi-Bold";
  white-space: no-wrap;
}
button.download-pdf {
  font-size: 20px;
  color: #c23f3a;
  border: none;
  background-color: transparent;
  font-family: "Satoshi-Bold";
}
.section-heading {
  color: #c23f3a;
  font-family: "Satoshi-Medium";
  font-size: 30px;
}
.h5 {
  color: #252525;
  font-size: 20px;
  font-family: "Satoshi-Medium";
}
.three-block {
  border: 1px solid #8a6f63;
  padding: 20px;
  height: 100%;
  border-radius: 8px;
  background-color: #f5f2ed;
}
.innovation .three-block .h6 {
  font-size: 18px;
  color: #4b200d;
}
.three-block h6 {
  font-size: 16px;
  color: #000;
  font-family: "Satoshi-Bold";
}

.three-block label {
  color: #c23f3a;
  font-size: 14px;
}
.innovation .three-block {
  min-height: 185px;
}
.innovation .three-block p {
  font-size: 16px;
}
.three-block p {
  font-size: 14px;
  color: #000;
  font-family: "Satoshi-Light";
  margin-bottom: 0px;
}
.three-block .h6 {
  font-size: 20px;
  color: #4b200d;
}
.gradient-block {
  padding: 32px;
  background: linear-gradient(90deg, #0b1220 0%, #c23f3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.101961);
  box-shadow: 0px 12px 28px -10px rgba(0, 0, 0, 0.14902);
  border-radius: 16px;
  letter-spacing: 1px;
}
button.white-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.501961);
  box-shadow: 0px 6px 14px -6px rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  color: #c23f3a;
  font-size: 14px;
  font-family: "Satoshi-Medium";
}
button.white-btn i {
  font-size: 20px;
}
.left-side .border-top p {
  color: #252525;
  font-size: 14px;
}
/* rightsidebar css start */
.rightsidebar {
  border: 1px solid #8a6f63;
  padding: 34px 20px;
  border-radius: 16px;
  background: #f5f2ed;
}
.rightsidebar h4 {
  font-size: 22px;
  color: #c23f3a;
  font-family: "Satoshi-Bold";
}
ul.border-bottom {
  border-bottom: 1px solid #c23f3a !important;
  padding-bottom: 20px;
}
ul.border-bottom li {
  color: #c23f3a;
}
.rightsidebar label {
  color: #c23f3a;
  font-family: "Satoshi-Bold";
}
ul.border-bottom.border-0 {
  border: none !important;
}
.wrap-icon-text {
  background: #c23f3a;
  padding: 10px 15px;
  border-radius: 50px;
  justify-content: space-evenly;
}
.regular-block {
  padding: 24px 20px;
  background: #c23f3a;
  border-radius: 1rem;
}
.regular-block h4 {
  font-size: 22px;
  color: #ffffff;
  font-family: "Satoshi-Bold";
}
span.text-only {
  font-size: 14px;
  font-family: "Satoshi-Light";
}
.text-badge-icon {
  display: flex;
  gap: 10px;
}

.regular-block label {
  font-family: "Satoshi-Bold";
}

span.text-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 20);
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 30px;
}
strong.icon-heading {
  color: #c23f3a;
  font-size: 14px;
  font-family: "Satoshi-Bold";
  margin-bottom: 10px;
  display: block;
}
table.weightage-table {
  width: 100%;
  color: #c23f3a;
  margin-bottom: 20px;
}
.text-start span.dot {
  left: -2px;
}
ul.range {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
ul.range li {
  color: #c23f3a;
}
.text-end span.dot {
  right: -2px;
}
.weightage-table td:has(img) .dot {
  display: none;
}
.weightage-table td.text-end img {
  right: -6px;
}
.weightage-table td.text-start img {
  left: -6px;
}
tr.line {
  border-bottom: 1px solid #c23f3a;
}
span.dot {
  background: #c23f3a;
  height: 6px;
  width: 6px;
  display: inline-block;
  position: relative;
  border-radius: 20px;
  top: 11px;
}
tr.line img {
  position: relative;
  top: 10px;
}
.font-xs {
  font-size: 12px;
  color: #252525;
}
button.innovation-btn {
  color: #c23f3a;
  display: flex;
  border: 1px solid #c23f3a;
  align-items: center;
  background: #f5f2ed;
  padding: 6px 20px 6px 8px;
  border-radius: 100px;
  font-size: 14px;
}
button.innovation-btn.active {
  background: #c23f3a;
  color: #f5f2ed;
}
.register-btn {
  color: #f5f2ed;
  display: flex;
  border: 1px solid #c23f3a;
  background: #c23f3a;
  align-items: center;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 24px;
  width: 100%;
  height: 100px;
  margin-top: 20px;
  justify-content: center;
}
button.innovation-btn .circle-img {
  background: #f5f2ed;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-right: 5px;
  border: 1px solid #c23f3a;
}

button.innovation-btn .circle-img img {
  width: 20px;
  height: 20px;
}
.footnote li {
  color: #252525;
  font-size: 14px;
}

.footnote li a {
  color: #252525;
  text-decoration: underline;
}
.name-desi strong {
  color: #252525;
  font-size: 13px;
  font-family: "Satoshi-Bold";
}
.name-desi p {
  color: #252525;
  font-size: 12px;
  font-family: "Satoshi-Light";
  margin-bottom: 0px;
}
.range-slider {
  background-color: #f5f2ed;
}

.range-slider h6 {
  color: #c23f3a;
}
.range-slider {
  background-color: #f5f2ed;
  border-radius: 50px;
  padding: 10px 20px;
}
.four-step-line {
  background: #c23f3a;
  width: 100%;
  height: 1px;
}
.four-step-line {
  background: #c23f3a;
  width: 100%;
  height: 1px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.four-step-line span {
  width: 25%;
  display: inline-block;
  position: relative;
}
span.point.bigdot::before {
  width: 10px;
  height: 10px;
  top: -5px;
}
span.point::before {
  width: 5px;
  height: 5px;
  background: #c23f3a;
  content: "";
  position: absolute;
  border-radius: 100px;
  top: -2px;
  left: 0px;
}
span.point:last-child:before {
  left: auto;
  right: 0px;
}
span.point:nth-child(2)::before {
  left: 25%;
}
span.point:nth-child(3)::before {
  left: 50%;
}
.range-heading.range-slider {
  background: transparent;
}
.range-heading.range-slider ul li {
  color: #f5f2ed;
}

/* rightsidebar css end */
/* statement page css end */

/* Register modal css start */
.register-modal button.search-select {
  background: transparent;
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
}
.register-modal select.search-item {
  height: 65px;
}
.register-modal .label-title {
  font-size: 24px;
  color: #252525;
  margin-bottom: 5px;
  font-family: "Satoshi-Black";
}
.register-modal .modal-header {
  border-bottom: none !important;
}
.register-modal input.form-control {
  height: 50px;
}
label.label {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Satoshi-Bold";
}
.required {
  color: #c23f3a;
}
.form-check-input:checked {
  background-color: #c23f3a;
  border-color: #c23f3a;
}
.h-140 {
  height: 140px;
}
.register-modal .modal-dialog {
  max-width: 1450px;
}
.register-modal .modal-dialog .modal-content {
  padding: 120px;
}
.register-modal button.btn-close {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 1;
  background-color: #f5f2ed;
  opacity: 1;
  width: 75px;
  height: 75px;
  border-radius: 100px;
}
p.apply {
  color: #8a6f63;
}
/* Register modal css end */

/* contact us page css start */
section.contact-banner-section {
  height: 100vh;
  background: url(../images/contact-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 20px solid #c23f3a;
}
.contact-banner-section .hero-description {
  color: #ddd;
  max-width: 800px;
  font-size: 24px;
  line-height: 140%;
}
.faq-hero-description {
  margin-top: 70px;
}
/* contact us page css end */
/* Methodology page css start */
.methodology-banner {
  background:
    linear-gradient(0deg, rgba(194, 63, 58, 0) 34.98%, #c23f3a 84.39%),
    url(../images/hero-methodology-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 981px;
  background-position: top center;
}
.hero-methodology-description {
  max-width: 1000px;
  margin-top: 70px;
}
.hero-faq-description {
  max-width: 800px;
  margin-top: 70px;
}
.methodology-banner .content-on-banner {
  align-items: flex-start !important;
  padding-top: 200px;
}
.methodology-banner .hero-description {
  max-width: 100%;
  padding: 0 10%;
}
section.indentity-section {
  padding: 100px 0 60px 0;
}
h4.h4-title {
  color: #c84039;
  font-family: "Satoshi-Medium";
}
.evaluation-block {
  border: 1px solid #8a6f63;
  border-radius: 1rem;
  padding: 24px 20px;
  background: #f5f2ed;
}

.evaluation-block h6 {
  color: #c23f3a;
  min-width: 48px;
  text-align: center;
  font-family: "Satoshi-Black";
  font-size: 40px;
}

.evaluation-block p {
  color: #252525;
  margin-bottom: 0px;
}

.evaluation-block label {
  color: #c23f3a;
  font-family: "Satoshi-Medium";
}
section.detailed-section h4.h4-title {
  font-size: 32px;
}
.block-detail h3 {
  font-size: 1rem;
  color: #252525;
  font-family: "Satoshi-Black";
}

.block-detail {
  border: 1px solid #e0ddd8;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  height: 100%;
}

.block-detail .detail-text {
  font-size: 1rem;
  color: #252525;
  line-height: 160%;
}
.score-section h2 {
  color: #c23f3a;
}
.parameter-wrap {
  background-color: #c23f3a !important;
  padding: 32px;
  border-radius: 1rem;
}
.parameter-wrap .table > :not(caption) > * > * {
  background-color: transparent;
  border: none !important;
  color: #ffffff;
}
.img_heading {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 1rem;
  padding-right: 20px;
}
.parameter-wrap .table > thead {
  border-bottom: 1px solid #f5f2ed;
}
a.doe-btn {
  font-size: 1rem;
  color: #c23f3a;
  font-family: "Satoshi-Medium";
  display: flex;
  align-items: center;
}
a.doe-btn i {
  font-size: 22px;
}
/* Methodology page css end */

section.limit-section {
  background-color: #f5f2ed;
  padding: 60px 0;
  margin-top: 30px;
}
section.limit-section h2 {
  color: #c23f3a;
}
section.limit-section p {
  color: #252525;
  font-size: 1rem;
  line-height: 200%;
}

.gradient-read {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 48px;
  gap: 48px;
  background: linear-gradient(90deg, #0b1220 0%, #c23f3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.101961);
  box-shadow: 0px 12px 28px -10px rgba(0, 0, 0, 0.14902);
  border-radius: 16px;
  justify-content: space-between;
  height: 152px;
  margin: 60px 0;
}
.gradient-read h3 {
  font-family: "Satoshi-Black";
}

a.down-btn {
  background: #fff;
  padding: 10px;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 100px;
  color: #c23f3a;
  font-family: "Satoshi-Medium";
  white-space: nowrap;
}
.evaluation-section h2 {
  color: #c23f3a;
}
/* faq css start */
section.faq-banner {
  background: #c23f3a;
  height: 100vh;
}
.faq-banner h1 {
  font-size: 72px;
}
.faq-banner p {
  font-size: 24px;
}
button.nav-link.active {
  color: #c63f37 !important;
  border-bottom: 2px solid #c63f37 !important;
  border-top: none;
  border-left: none;
  border-right: none;
}
button.nav-link {
  color: #767676 !important;
  border-bottom: 2px solid #767676 !important;
}
.tab-faq .nav.nav-tabs {
  gap: 10px;
}
.tab-section {
  padding: 100px 0px;
}
/* faq css end */
/*=========================================================
Responsive
=========================================================*/
@media (max-width: 1600px) {
  .home-hero-title {
    font-size: 72px;
  }
  .hero-title {
    font-size: 58px;
  }
  section.inner-banner.opportunities-banner {
    min-height: 1000px;
  }
}

@media (max-width: 1450px) {
  section.hero-section.inner-page-banner.statement-banner {
  }
  .register-modal .modal-dialog .modal-content {
    padding: 50px;
  }
  .register-modal button.btn-close {
    width: 65px;
    height: 65px;
  }
  .register-modal .modal-dialog {
    max-width: 1150px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 1400px) {
  section.inner-banner.opportunities-banner {
  }
  section.contact-banner-section {
  }
  .methodology-banner {
  }
}
@media (max-width: 1366px) {
  section.inner-banner.opportunities-banner .banner-title {
    font-size: 52px;
  }
}
@media (max-width: 1300px) {
  .hero-title {
    font-size: 55px;
  }
  .hero-description {
    line-height: 150%;
  }
  .section-title {
    font-size: 50px;
  }
  section.hero-section.inner-page-banner.statement-banner {
  }
  .statement-banner .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 1280px) {
  .hero-section {
  }
  section.contact-banner-section {
  }
  .methodology-banner {
  }
}
@media (max-width: 1199px) {
  section.inner-banner.opportunities-banner {
  }
  .nav-link {
    font-size: 16px;
  }
  .btn-outline-light {
    padding: 8px 20px;
    font-size: 16px;
  }
  .inner-banner {
    min-height: 550px;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-description {
    font-size: 22px;
  }
  .banner-title {
    font-size: 58px;
  }

  .banner-desc {
    font-size: 20px;
  }
  .section-title {
    font-size: 44px;
  }
  h3.form-number {
    font-size: 18px;
    color: #252525;
    font-family: "Satoshi-Bold";
  }
  .connect-content .section-title {
    font-size: 52px;
  }

  .connect-content p {
    font-size: 20px;
  }
  .footer-newsletter h3 {
    font-size: 38px;
  }

  .footer-menu li a {
    font-size: 22px;
  }
  section.hero-section.inner-page-banner.statement-banner {
  }
  .statement-banner .hero-title {
    font-size: 40px;
  }
  .register-modal .modal-dialog {
    max-width: 1000px;
  }
  section.contact-banner-section {
    height: 660px;
    min-height: 660px;
  }
  .methodology-banner .hero-title {
    font-size: 46px;
  }
  .methodology-banner .content-on-banner {
    padding-top: 150px;
  }
}

@media (max-width: 1024px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .opportunities {
    padding: 50px 0;
    background: #ffffff;
  }
  section.inner-banner.opportunities-banner .banner-title {
    font-size: 46px;
    margin-bottom: 10px;
  }
  .opportunities-banner .banner-desc {
    font-size: 16px;
  }
  section.inner-banner.opportunities-banner {
    min-height: 650px;
  }
  .banner-subtitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
  section.hero-section.inner-page-banner.statement-banner {
  }
  section.hero-section.inner-page-banner.statement-banner .row {
    margin-top: 60px;
  }
  section.contact-banner-section {
    height: 550px;
    min-height: 550px;
  }
  .contact-banner-section .hero-title {
    font-size: 40px;
  }
  .contact-banner-section .hero-description {
    font-size: 18px;
  }
  section.connect-section.contact-us {
    padding: 50px 0;
  }
  .methodology-banner .hero-title {
    font-size: 40px;
  }
  .methodology-banner .hero-description {
    padding: 0 8%;
    font-size: 20px;
  }
  .methodology-banner {
    height: 660px;
    min-height: 660px;
  }
  .img_heading {
    min-width: 300px;
  }
}
@media (max-width: 991px) {
  .footer-area {
    text-align: center;
  }

  .footer-description {
    margin: 35px auto;
  }

  .newsletter-box {
    margin: auto;
  }

  .footer-menu {
    justify-content: center;

    gap: 20px;

    margin: 45px 0;
  }

  .partner-logos {
    justify-content: center;
  }

  .linkedin {
    display: inline-block;

    margin-top: 20px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-md-end {
    text-align: center !important;

    margin-top: 10px;
  }
  .connect-section {
    padding: 80px 0;
  }

  .connect-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .connect-content .section-title {
    font-size: 46px;
  }

  .connect-content p {
    font-size: 18px;
  }

  .connect-form {
    padding: 35px;
  }
  .inner-banner {
    min-height: 500px;
    padding: 175px 0 30px;
  }

  .banner-title {
    font-size: 48px;
  }

  .banner-desc {
    font-size: 18px;
  }

  .banner-subtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .step-card {
    padding: 30px 25px;
  }

  .step-badge {
    margin-top: 25px;
  }
  .hero-section {
    text-align: center;

    padding: 140px 0 80px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-description {
    margin: auto;
  }

  .navbar-collapse {
    background: #111;

    padding: 20px;

    margin-top: 20px;

    border-radius: 12px;
  }
  .browse-section select.form-select.search-select {
    margin-top: 12px;
  }
  .register-modal .modal-dialog {
    max-width: 700px;
  }
  .register-modal .modal-dialog .modal-content {
    padding: 15px;
  }
  .register-modal button.btn-close {
    width: 55px;
    height: 55px;
    right: 20px;
    top: 20px;
  }
  .methodology-banner {
  }
}

@media (max-width: 768px) {
  .connect-form {
    padding: 0px 35px;
  }
  section.inner-banner.opportunities-banner {
  }
  .inner-banner.opportunities-banner {
    padding: 80px 0 30px;
  }
  .statement-banner .badge {
    justify-content: center;
  }
  .statement-banner .hero-title {
    font-size: 32px;
  }
  section.hero-section.inner-page-banner.statement-banner {
  }
  section.contact-banner-section {
    border-bottom: 10px solid #c23f3a;
  }
}
@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }
  .hero-section {
    padding: 100px 0 50px;
  }
  .hero-section {
    min-height: 630px;
  }
  .connect-content .section-title {
    font-size: 32px !important;
    margin-bottom: 10px;
  }
  .connect-content .section-title {
    font-size: 38px;
  }

  .connect-form {
    padding: 25px;
  }

  .submit-btn {
    width: 100%;
  }
  .desktop-view {
    display: none !important;
  }
  .mobile-view {
    display: block !important;
    margin-top: 20px;
  }

  .step-card {
    text-align: center;
  }

  .step-line {
    display: none;
  }

  .step-icon {
    margin: 0 auto 20px;
  }

  .step-card h3 {
    font-size: 24px;
  }

  .step-card p {
    font-size: 17px;
  }

  .step-badge {
    margin-top: 25px;
  }
  .footer-area {
    padding: 60px 0 30px;
  }

  .footer-newsletter h3 {
    font-size: 30px;
  }

  .newsletter-box input {
    height: 60px;

    font-size: 16px;

    padding-left: 20px;
  }

  .newsletter-box button {
    width: 48px;

    height: 48px;

    font-size: 22px;
  }

  .footer-menu {
    flex-direction: column;

    gap: 15px;

    margin: 40px 0;
  }

  .footer-menu li a {
    font-size: 18px;
  }

  .partner-logos {
    gap: 25px;
  }

  .partner-logos img {
    max-height: 45px;
  }

  .footer-description {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 15px;

    margin-top: 50px;
  }
  .section-description {
    font-size: 16px;
  }
  .card-content {
    padding: 15px;
  }
  .inner-banner {
    min-height: 420px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .banner-subtitle {
    font-size: 17px;
  }

  .btn-scroll {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  .three-block {
    height: auto;
    margin-bottom: 10px;
  }
  .gradient-block {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  .register-modal .label-title {
    font-size: 18px;
  }
  .gradient-read {
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 15px;
    justify-content: center;
    height: auto;
    margin: 20px 0;
    text-align: center;
  }
  .methodology-banner {
    min-height: 480px;
    height: 480px;
  }
  .methodology-banner .hero-title {
    font-size: 28px;
    margin-top: 0 !important;
  }
  .methodology-banner .hero-description {
    padding: 0;
    font-size: 18px;
    line-height: 140%;
  }
  section.indentity-section {
    padding: 40px 0 10px 0;
  }
  section.detailed-section h4.h4-title {
    font-size: 20px;
  }
  .block-detail {
    padding: 15px;
  }
  section.limit-section {
    padding: 30px 0;
  }
  h4.h4-title {
    font-size: 18px;
  }
  .evaluation-block h6 {
    min-width: 40px;
    font-size: 30px;
  }
  .evaluation-block {
    padding: 15px 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .step-card {
    padding: 25px 20px;
  }

  .step-card h3 {
    text-align: left;
    font-size: 22px;
  }

  .step-card p {
    font-size: 15px;
    text-align: left;
  }
  .step-badge {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .step-card .row {
    text-align: right;
  }
  .submit-btn {
    min-width: 100%;
  }
  .connect-form textarea.form-control.share {
    height: 220px;
  }
  .agree-state {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .connect-section {
    padding: 20px 0 !important;
  }

  .connect-content .section-title {
    font-size: 34px;
  }

  .connect-content p {
    font-size: 16px;
  }

  .connect-form {
    padding: 0px;
  }

  .connect-form label {
    font-size: 14px;
  }

  .connect-form .form-control,
  .connect-form .form-select {
    height: 50px;

    font-size: 15px;
  }

  .connect-form textarea.form-control {
    min-height: 100px;
  }

  .submit-btn {
    height: 52px;

    font-size: 16px;
  }
  .banner-title {
    font-size: 30px;
  }

  .banner-desc {
    font-size: 15px;
  }
  .footer-logo img {
    max-width: 180px;
  }

  .footer-newsletter h3 {
    font-size: 24px;
  }

  .newsletter-box input {
    height: 55px;

    font-size: 15px;
  }

  .newsletter-box button {
    top: 4px;

    right: 4px;
  }

  .partner-logos {
    flex-direction: column;
  }
  section.inner-banner.opportunities-banner .banner-title {
    font-size: 26px;
  }
  .opportunities-banner .banner-desc {
    font-size: 14px;
    line-height: 140%;
  }
  section.inner-banner.opportunities-banner {
    min-height: 400px;
  }
  .btn-between {
    flex-direction: column;
    align-items: flex-start;
  }
  .problem-overview .section-heading {
    font-size: 22px;
  }
  .section-text {
    font-size: 16px;
    line-height: 150%;
  }
  .statement-banner .hero-title {
    font-size: 24px;
  }
  .badge label {
    font-size: 14px;
  }
  .contact-banner-section .hero-title {
    font-size: 30px;
  }
  .contact-banner-section .hero-description {
    font-size: 16px;
  }
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  section.faq-banner {
    height: auto !important;
  }
  section.contact-banner-section {
    height: auto !important;
  }
  .home-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  .navbar-brand img {
    max-height: 35px;
  }
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .hero-title {
    /* font-size: 18px;
    margin-top: 10px !important; */
  }
  .hero-description {
    font-size: 14px;
    margin-top: 10px !important;
  }
  .hero-btn {
    width: auto;
    padding: 8px 30px;
    font-size: 16px;
    margin-top: 10px !important;
  }
  .hero-section {
    min-height: auto;
    padding: 0;
  }
  section.inner-banner.opportunities-banner .banner-title {
    font-size: 24px;
  }
  .intro-framework-section .section-description {
    font-size: 16px;
  }
  .intro-framework-section {
    padding: 0px 0px 40px 0;
  }
  .intro-framework-section .row {
    gap: 20px;
  }
  section.opportunities.section-padding {
    padding: 0 0 50px 0;
  }
  .btn-scroll {
    width: 45px;
    height: 45px;
    margin-top: 10px;
  }
  .linkedin {
    margin-top: 0;
  }
  .footer-area .row.gy-5 {
    --bs-gutter-y: 15px;
  }
  .footer-menu {
    margin: 0px 0 30px;
  }
  .footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .header-area ul.dropdown-menu {
    min-width: 250px !important;
    padding: 10px 10px;
  }
  .header-area ul.dropdown-menu a.dropdown-item {
    gap: 1rem;
  }
  .header-area ul.dropdown-menu a.dropdown-item {
    font-size: 14px;
    gap: 1rem;
  }
  .statement-banner .hero-title {
    font-size: 20px;
  }
  section.hero-section.inner-page-banner.statement-banner {
  }
  .problem-overview .section-heading {
    font-size: 18px;
    margin-bottom: 10px !important;
  }
  .text-img,
  button.download-pdf {
    font-size: 16px;
  }
  section.problem-overview {
    padding: 30px 0px;
  }
  .left-side .row.pt-5 {
    padding-top: 20px !important;
  }
  .h5 {
    font-size: 16px;
  }
  .gradient-block {
    padding: 20px;
  }
  .gradient-block h2 {
    font-size: 20px;
  }
  .methodology-banner .content-on-banner {
    padding-top: 100px;
  }
  .methodology-banner {
    min-height: 300px;
  }
  .methodology-banner .hero-description {
    font-size: 16px;
    line-height: 130%;
    text-shadow: 1px 0px 1px #636363;
  }
  .methodology-banner .hero-title {
    font-size: 22px;
  }
}
@media (min-height: 700px) {
  section.hero-section-bg {
    height: 100vh;
  }
  section.hero-section-bg.opportunities-banner {
    height: auto !important;
    min-height: auto;
  }
  section.hero-section-bg.methodology-banner {
    height: auto !important;
  }
  section.hero-section-bg.aboutus-page-banner {
    height: auto !important;
  }
  section.hero-section-bg.faq-banner {
    height: auto !important;
  }
}
@media (min-width: 1200px) {
  .home-hero-title {
    font-size: 72px;
  }
}
