

/* body,
html {
    overflow-x: hidden;
} */
:root {
  --primary-color: #D42027;
  --secondary-color: #000000;
  --secondary-text-color: #3C3C3C;
  --white-color: #ffffff;
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Nunito", sans-serif;
  --secondary-bg-color: #ECECEC;
  --border-color: #FF5959;
  --footer-para-color:#242424;
}

body,
html {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--white-color);
}

::-moz-selection {
  background-color: var(--secondary-text-color);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background-color: var(--secondary-text-color);
  color: var(--white-color);
  text-shadow: none;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--secondary-text-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
}
/* Container styling */
.language-toggle {
  display: flex;
  align-items: center;
  border: 3px solid #FFF;
  border-radius: 20px;
  overflow: hidden;
  width: 80px;
  height: 41px;
  cursor: pointer;
  background: #FFF;
  margin-left: auto;
}

/* Individual option styling */
.language-toggle .option {
  flex: 1;
  text-align: center;
  font-size: 14px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background-color: #fff;
  font-family:var(--secondary-font);
  transition: background-color 0.3s, color 0.3s;
}

/* Active option styling */
.language-toggle .option.active {
  background-color: #d32f2f; /* Red color */
  color: #fff;
  border-radius: 100%;
}

.c-lang-sec{
  width: 100%;
  position:absolute;
  top:40px;
  z-index:9;
}
.c-main-banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120vh;
  padding: 134px 0 307px;
}

.c-main-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.4;
}

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

.c-banner-content {
  max-width: 650px;
}

.c-banner-content h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.28;
  color: var(--white-color);
  margin: 0 0 35px;
  font-family: var(--secondary-font);
}

.c-banner-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  color: var(--white-color);
  margin: 0 0 54px;
}

.c-cmn-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--primary-color);
  line-height: 1;
  padding: 17px 20px;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
}

.c-cmn-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.c-border-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline !important;
  color: var(--white-color);
  display: inline-block;
}

.c-border-btn:hover {
  color: var(--primary-color);
}

.c-banner-content .c-btn-group .c-border-btn {
  margin-left: 29px;
}

.c-why-matter-sec {
  background-color: var(--secondary-bg-color);
  border-radius: 100px 100px 0 0;
  margin-top: -127px;
  position: relative;
  padding-bottom: 110px;
}

.c-why-matter-sec {
  display: flex;
  flex-direction: column;
}

.c-why-matter-top {
  width: 100%;
  margin-top: -120px;
}

.c-why-matter-top-wpr {
  background-color: var(--primary-color);
  padding: 60px 70px 60px 65px;
  border-radius: 80px;
  display: flex;
  flex-wrap: wrap;
}

.c-why-matter-item {
  position: relative;
}

.c-why-matter-item:first-child {
  width: 34.44%;
  padding-right: 72px;
}

.c-why-matter-item:nth-child(2) {
  width: 33.31%;
  padding: 0 72px;
}

.c-why-matter-item:last-child {
  width: 32.25%;
  padding-left: 72px;
}

.c-why-matter-item:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--border-color);
}

.c-why-matter-item h2 {
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: var(--white-color);
  margin: 0 0 13px;

}

.c-why-matter-item p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 0;

}

.c-why-matter-bottom {
  padding: 67px 0 60px;
  width: 100%;
}

.c-why-matter-bottom-wpr {
  display: flex;
  flex-wrap: wrap;
}

.c-why-matter-bottom-left {
  width: 435px;
  padding-right: 30px;
}

.c-why-matter-bottom-right {
  width: calc(100% - 435px)
}

.c-why-matter-bottom-left h2 {
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: var(--secondary-color);
  margin: 0;
}

.c-why-matter-bottom-left h2 span {
  color: var(--primary-color);
}

.c-why-matter-bottom-right h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
  margin: 0 0 23px;
}

.c-why-matter-bottom-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-text-color);
  margin: 0 0 23px;

}

.c-why-matter-bottom-right p:last-child {
  margin: 0;
}

.c-loadmore{
  color: var(--primary-color);
  font-size:16px;
  font-weight:500;
  border:none;
  background-color:transparent;
  margin-top:45px;
  text-decoration:underline;
  display:none;
}

@media (min-width:1600px) {
  .container {
    max-width: 1454px;
  }

  .big-container {
    max-width: 1584px;
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1440px;
  }

  .big-container {
    max-width: 1560px;
  }
}

@media (max-width:1600px) {
  .c-why-matter-item:first-child {
    padding-right: 42px;
  }

  .c-why-matter-item:nth-child(2) {
    padding: 0 42px;
  }

  .c-why-matter-item:last-child {
    padding-left: 42px;
  }

  .c-why-matter-item h2 {
    font-size: 21px;
  }
}

@media (max-width:1199.98px) {
  .c-main-banner {
    min-height: 65vh;
  }
}


@media (max-width:991px) {
  .c-why-matter-top-wpr {
    padding: 40px 58px 40px 45px;
    border-radius: 40px;
  }

  .c-why-matter-item:first-child,
  .c-why-matter-item:nth-child(2),
  .c-why-matter-item:last-child {
    width: 100%;
    padding: 0 0 30px;
  }

  .c-why-matter-item:last-child {
    padding-bottom: 0;
  }

  .c-why-matter-item h2 {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 10px;
  }

  .c-why-matter-item::before {
    display: none;
  }

  .c-why-matter-sec {
    border-radius: 50px 50px 0 0;
    padding-bottom: 90px;
  }

  .c-why-matter-bottom-left {
    width: 100%;
    padding: 0 0 17px;
  }

  .c-why-matter-bottom-right {
    width: 100%;
  }

  .c-why-matter-bottom {
    padding: 30px 16px 60px;
    width: 100%;
  }
}

@media (max-width:767px) {
  .c-banner-content h1 {
    margin: 0 0 35px;
    font-size: 40px;
    line-height: 44px;
    max-width: 370px;
  }

  .c-banner-content p {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 45px;
  }

  .c-banner-content .c-btn-group .c-border-btn {
    margin: 20px 0 0;
  }

  .c-why-matter-top-wpr {
    padding: 40px 28px 40px 20px;
  }
  .c-why-matter-bottom-left h2{
    font-size:24px;
  }
}

@media (max-width:575.98px) {
  .c-main-banner {
    min-height: 858px;
    background-position: 52% 0px;
  }
  .c-why-matter-top {
    margin-top: -88px;
    padding: 0 5px;
  }
}



@media (min-width: 992px) {
.c-sponsor-logo-area .col-lg-2{
    flex: 0 0 auto;
    width: 20%;
}
}
.c-sponsor-logo-area{
  padding: 50px 0;
  border-radius: 100px 100px 0 0;
  margin-top: -110px;
  z-index: 9;
  position: relative;
  background:var(--white-color);
}
.c-section-heading{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 30px;
    font-family:var(--secondary-font);
    line-height: normal;
    margin: 0 0 10px;
}
.c-section-heading span{
    color: var(--primary-color);
}
.c-each-sponsor-logo{
    width:100%;
    max-width:240px;
    min-height:165px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
}

.c-provider-sec{
    background-position:top center;
    background-size:cover;
    min-height:928px;
    display:flex;
    align-items:flex-end;
    border-radius:100px 100px 0 0;
    overflow:hidden;
}
.c-provider-sec .container{
   max-width: 1430px;
}
.c-provider-sec__content{
    width:100%;
    min-height:340px;
    border-radius:100px 100px 0 0;
    padding:55px 20px;
    background-color:rgba(36, 36, 36, 0.6);
}
.c-provider-sec__content h2{
    color:var(--white-color);
    font-weight:500;
    font-family: var(--secondary-font);
    font-size:30px;
    line-height:normal;
    margin:0 0 10px;
}
.c-provider-sec__content p{
    font-size:16px;
    line-height:28px;
    color:var(--white-color);;
    margin:0;
}

.c-footerbox-content{
    background-color:var(--primary-color);
    padding:55px 60px;
    border-radius:60px;
    height:100%;
}
.c-footerbox-content h2{
    color:var(--white-color);
    font-weight:500;
    font-family: var(--secondary-font);
    font-size:30px;
    line-height:normal;
    margin:0 0 10px;
}
.c-footerbox-content p{
    font-size:16px;
    line-height:28px;
    color:var(--white-color);
    margin:0 0 15px;
}
.c-footerbox-content p:last-child{
    margin:0;
}

.o-footer-area{
    padding:58px 0 0;
    background-color:var(--secondary-bg-color);
    border-radius:100px 100px 0 0;
    margin-top:-135px;
    z-index:9;
    position:relative;
}
.o-footer-area .container{
  max-width:1560px;
}
.o-footer_bar{
    padding:10px 60px;
}

.o-footer_bar p{
    color:var(--footer-para-color);
    font-size:12px;
    font-weight:400;
    margin:0;
}


@media (max-width:1199.98px) {
.c-footerbox-content h2 {
    font-size: 24px;
}
.c-footerbox-content {
    padding: 38px 20px;
    border-radius: 40px;
}
.o-footer_bar {
    padding: 10px 20px;
}
}


@media (max-width:991.98px) {
.c-sponsor-logo-area {
    padding: 50px 16px;
}
.c-sponsor-logo-area,
.c-provider-sec__content,
.o-footer-area{
    border-radius:50px 50px 0 0;
}
.c-section-heading {
    font-size: 24px;
    margin: 0 0 30px;
}

.c-provider-sec__content h2 {
    font-size: 24px;
}
.c-footerbox-content{
    margin-bottom:20px;
    height: calc(100% - 20px);
}
.o-footer-area {
    padding: 20px 0 0;
}
}

@media (max-width:767.98px) {
    .c-provider-sec{
        border-radius: 50px 50px 0 0;
    }
    .c-each-sponsor-logo {
        min-height: 85px;
        margin-bottom:18px;
    }
    .c-loadmore{
      display:inline-block;
    }
}

@media (max-width:575.98px) {
    .c-provider-sec {
        background-position: 69% 0;
        min-height: 725px;
    }
    .c-provider-sec__content {
        padding: 45px 5px 80px;
    }
    .o-footer-area {
        margin-top: -50px;
    }
}