@font-face {
  font-family: roboto_bold_i;
  src: url(../fonts/Roboto-BlackItalic.ttf); }
@font-face {
  font-family: roboto_bold;
  src: url(../fonts/Roboto-Bold.ttf); }
@font-face {
  font-family: roboto_medium;
  src: url(../fonts/Roboto-Medium.ttf); }
@font-face {
  font-family: roboto_medium_i;
  src: url(../fonts/Roboto-MediumItalic.ttf); }
@font-face {
  font-family: roboto_regular;
  src: url(../fonts/Roboto-Regular.ttf); }
@font-face {
  font-family: roboto_light;
  src: url(../fonts/Roboto-Light.ttf); }
@font-face {
  font-family: roboto_i;
  src: url(../fonts/Roboto-Italic.ttf); }
:root {
  --font_primary: "Plus Jakarta Sans", sans-serif;
  --color_primary: #2a2a2a;
  --color_secondary: #4e4e4e;
  --color_patches: #4e4e4e;
  --color_outline: #4e4e4e;
  --color_btn_primary: #74bf2a;
  --color_btn_secondary: #c71414;
  --color_black: #3b3b3b;
  --color_white: #ffffff;
  --container_width: 100%;
  --transition: ease all 300ms;
  --container_left_space: calc((100% - var(--container_width)) / 2); }
  @media (min-width: 768px) and (max-width: 991px) {
    :root {
      --container_width: 750px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    :root {
      --container_width: 970px; } }
  @media (min-width: 1200px) and (max-width: 1440px) {
    :root {
      --container_width: 1170px; } }
  @media (min-width: 1441px) {
    :root {
      --container_width: 1360px; } }

::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  background: #292727; }
  @media (max-width: 767px) {
    ::-webkit-scrollbar {
      height: 0;
      background: transparent; } }

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #74bf44;
  border-radius: 0; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #68ae3c; }

.container-fluid, .container {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px; }

.container {
  margin: 0 auto;
  width: var(--container_width); }
  .container.container_right0 {
    width: 100%;
    padding: 0 0 0 var(--container_left_space); }
  .container.container_left0 {
    width: 100%;
    padding: 0 0 0 var(--container_left_space); }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

body {
  margin: 0; }

* {
  box-sizing: border-box; }

.hide {
  display: none; }

.hidden {
  display: none !important; }

.visible-xs {
  display: none !important; }
  @media (max-width: 767px) {
    .visible-xs {
      display: block !important; } }

.hidden-xs {
  display: block; }
  @media (max-width: 767px) {
    .hidden-xs {
      display: none !important; } }

.visible-md {
  display: none !important; }
  @media (max-width: 991px) {
    .visible-md {
      display: block !important; } }

.hidden-md {
  display: block; }
  @media (max-width: 991px) {
    .hidden-md {
      display: none !important; } }

h2 {
  font-family: roboto_bold;
  color: var(--color_primary);
  font-size: 42px;
  line-height: 1.4;
  margin: 0;
  padding-bottom: 20px; }
  @media screen and (max-width: 1199px) {
    h2 {
      font-size: 45px;
      line-height: 1.2; } }
  @media screen and (max-width: 991px) {
    h2 {
      font-size: 40px; } }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 30px; } }

h3 {
  font-family: roboto_medium;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color_primary);
  margin: 0; }
  @media screen and (max-width: 1199px) {
    h3 {
      font-size: 35px;
      line-height: 1.2; } }
  @media screen and (max-width: 991px) {
    h3 {
      font-size: 30px; } }
  @media screen and (max-width: 767px) {
    h3 {
      font-size: 25px; } }

p {
  font-family: roboto_regular;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color_primary);
  margin: 0 0 15px; }
  @media screen and (max-width: 767px) {
    p {
      font-size: 16px; } }

.slick-arrow {
  bottom: -60px; }

.next-arrow {
  right: calc(var(--container_left_space) + 15px);
  cursor: pointer;
  position: absolute; }

.prev-arrow {
  right: calc(var(--container_left_space) + 65px);
  cursor: pointer;
  position: absolute;
  transform: rotate(-180deg); }

.btn_primary a {
  font-family: roboto_medium;
  font-size: 14px;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--color_btn_primary);
  border-radius: 21px;
  text-decoration: none;
  gap: 10px;
  text-transform: uppercase;
  color: var(--color_white); }

.progress {
  display: block;
  margin-left: 0;
  margin-top: 42px;
  width: calc(100% - 100px);
  height: 2px;
  overflow: hidden;
  background-color: rgba(96, 96, 96, 0.1);
  background-image: linear-gradient(to right, #606060, #606060);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out; }
  @media only screen and (max-width: 991px) {
    .progress {
      margin-top: 41px;
      margin-left: 0; } }
  @media only screen and (max-width: 767px) {
    .progress {
      margin-left: 0;
      width: calc(100% - 110px); } }

#runforzero_page .initiative_sec {
  position: relative; }
  #runforzero_page .initiative_sec .initiative_banner {
    width: 100%; }
  #runforzero_page .initiative_sec .initiative_info {
    position: absolute;
    right: var(--container_left_space);
    top: 50%;
    transform: translateY(-50%);
    width: 46%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(20px) brightness(1);
    padding: 40px 40px 10px 40px; }
    @media screen and (max-width: 1600px) {
      #runforzero_page .initiative_sec .initiative_info {
        width: 55%;
        padding: 30px 30px 10px 30px;
        right: 50px; } }
    @media screen and (max-width: 1400px) {
      #runforzero_page .initiative_sec .initiative_info {
        width: 60%;
        padding: 30px 30px 10px 30px; } }
    @media only screen and (max-width: 1320px) {
      #runforzero_page .initiative_sec .initiative_info {
        position: relative;
        margin: 0 auto;
        width: var(--container_width);
        top: inherit;
        right: inherit;
        transform: inherit;
        padding: 30px 15px 0px; } }
    @media only screen and (max-width: 767px) {
      #runforzero_page .initiative_sec .initiative_info {
        padding: 30px 15px 10px 15px; } }
#runforzero_page .leaderboard_sec {
  padding-top: 100px;
  padding-bottom: 50px; }
  #runforzero_page .leaderboard_sec h2 {
    padding-bottom: 0; }
  #runforzero_page .leaderboard_sec .leaderboard_main {
    border-top: 1px solid rgba(96, 96, 96, 0.1);
    border-bottom: 1px solid rgba(96, 96, 96, 0.1); }
    #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex {
      display: flex; }
      @media screen and (max-width: 991px) {
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex {
          flex-direction: column; } }
      #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public {
        padding: 30px 20px 40px 0;
        border-right: 1px solid rgba(96, 96, 96, 0.1); }
      #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .vedanta {
        padding: 30px 0 40px 20px; }
      #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com {
        width: 50%; }
        @media screen and (max-width: 991px) {
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com {
            width: 100%;
            padding: 40px 0;
            border: none; } }
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .progress {
          margin-top: 35px; }
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 10px; }
          @media screen and (max-width: 767px) {
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex {
              grid-template-columns: repeat(1, 1fr); } }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card {
            padding: 20px 15px;
            border-radius: 10px; }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card .name {
              font-family: roboto_bold;
              font-size: 16px;
              margin-bottom: 5px; }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card .amount {
              font-family: roboto_bold;
              font-size: 16px; }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card .rank_no {
              font-size: 30px;
              font-family: roboto_bold; }
              #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card .rank_no span {
                font-size: 20px; }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top_card .contri {
              font-size: 16px;
              margin-bottom: 0; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top1_card {
            border: 1px solid rgba(116, 191, 42, 0.2);
            background: linear-gradient(155deg, #f6f6f6 0%, #f8fef1 100%); }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top1_card .rank_no {
              color: #74bf2a; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top2_card {
            border: 1px solid rgba(0, 99, 168, 0.2);
            background: linear-gradient(155deg, #f6f6f6 0%, #ddf1ff 100%); }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top2_card .rank_no {
              color: #0063a8; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top3_card {
            border: 1px solid rgba(249, 176, 0, 0.2);
            background: linear-gradient(155deg, #f6f6f6 0%, #ffead1 100%); }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top3_flex .top3_card .rank_no {
              color: #f9b000; }
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list {
          display: flex;
          padding: 10px 40px 10px 20px;
          justify-content: space-between;
          background-color: #f6f6f6;
          margin-bottom: 10px;
          border-radius: 5px; }
          @media screen and (max-width: 767px) {
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list {
              padding: 10px;
              flex-direction: column; } }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list .name {
            width: 180px;
            font-family: roboto_medium;
            font-size: 18px;
            margin-bottom: 0px; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list .amount {
            font-family: roboto_medium;
            font-size: 18px;
            padding-right: 10px; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list .rank_no {
            font-size: 18px;
            font-family: roboto_bold;
            color: #606060; }
            #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list .rank_no span {
              font-size: 14px; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list .contri {
            width: 150px;
            font-size: 14px;
            margin-bottom: 0; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .top10_list p {
            margin-bottom: 0; }
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav,
        #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav1 {
          padding-top: 20px; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav .slick-arrow,
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav1 .slick-arrow {
            width: 30px;
            bottom: -50px; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav .next-arrow,
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav1 .next-arrow {
            right: 0;
            cursor: pointer;
            position: absolute; }
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav .prev-arrow,
          #runforzero_page .leaderboard_sec .leaderboard_main .public_vedanta_flex .public_vedanta_com .slider-nav1 .prev-arrow {
            right: 40px;
            cursor: pointer;
            position: absolute;
            transform: rotate(-180deg); }
#runforzero_page .contribute_sec {
  padding: 60px 0; }
  #runforzero_page .contribute_sec .line {
    position: relative;
    width: 100%;
    top: 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    @media screen and (max-width: 991px) {
      #runforzero_page .contribute_sec .line {
        top: 320px; } }
    @media screen and (max-width: 767px) {
      #runforzero_page .contribute_sec .line {
        display: none; } }
  #runforzero_page .contribute_sec .contribute_box {
    background-color: var(--color_primary);
    padding: 60px 90px;
    border-radius: 10px; }
    @media screen and (max-width: 1199px) {
      #runforzero_page .contribute_sec .contribute_box {
        padding: 40px; } }
    @media screen and (max-width: 991px) {
      #runforzero_page .contribute_sec .contribute_box {
        padding: 40px 20px; } }
    #runforzero_page .contribute_sec .contribute_box h2 {
      color: var(--color_white); }
    #runforzero_page .contribute_sec .contribute_box p {
      color: var(--color_white); }
    #runforzero_page .contribute_sec .contribute_box .contribute_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      padding-top: 30px;
      padding-bottom: 40px; }
      @media screen and (max-width: 1199px) {
        #runforzero_page .contribute_sec .contribute_box .contribute_grid {
          gap: 40px;
          padding-bottom: 0px; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .contribute_sec .contribute_box .contribute_grid {
          gap: 25px; } }
      @media screen and (max-width: 767px) {
        #runforzero_page .contribute_sec .contribute_box .contribute_grid {
          grid-template-columns: repeat(1, 1fr); } }
      #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item {
        transition: all 0.5s; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item .icons {
          padding-bottom: 40px; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item .steps {
          font-family: roboto_medium;
          font-size: 18px;
          margin: 0 0 12px; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item .title {
          font-family: roboto_bold;
          font-size: 20px;
          margin: 0 0 10px; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item:nth-child(1) {
          opacity: 0.8; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item:nth-child(2) {
          opacity: 0.6;
          transition-delay: 0.5s; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item:nth-child(3) {
          opacity: 0.3;
          transition-delay: 1s; }
        #runforzero_page .contribute_sec .contribute_box .contribute_grid .contribute_grid_item.opac {
          opacity: 1; }
  #runforzero_page .contribute_sec .end_line {
    font-family: roboto_i;
    font-size: 16px; }
#runforzero_page .social_slider_sec .mt {
  margin-top: 35px; }
@media screen and (max-width: 767px) {
  #runforzero_page .social_slider_sec .social_slider {
    padding: 0 15px; } }
#runforzero_page .social_slider_sec .social_slider .s_slider_item {
  width: 376px;
  padding: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  margin-right: 10px; }
  @media screen and (max-width: 767px) {
    #runforzero_page .social_slider_sec .social_slider .s_slider_item {
      margin-right: 0px; } }
  #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_top {
    display: flex;
    justify-content: space-between; }
    #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_top .username {
      display: flex;
      align-items: center;
      gap: 10px; }
      #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_top .username .username_id p {
        font-size: 16px;
        margin-bottom: 0; }
        #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_top .username .username_id p:first-child {
          font-family: roboto_bold; }
  #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_btm img {
    padding-top: 20px;
    padding-bottom: 10px; }
  #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_btm p {
    font-size: 14px;
    line-height: 21px; }
  #runforzero_page .social_slider_sec .social_slider .s_slider_item .ss_item_btm .tag_line {
    font-family: roboto_medium; }
#runforzero_page .social_slider_sec .progress {
  width: 100%; }
  @media screen and (max-width: 767px) {
    #runforzero_page .social_slider_sec .progress {
      width: calc(100% - 100px); } }
#runforzero_page .social_slider_sec .slick-arrow {
  top: -70px; }
  @media screen and (max-width: 767px) {
    #runforzero_page .social_slider_sec .slick-arrow {
      top: auto;
      bottom: -60px; } }
#runforzero_page .social_slider_sec .next-arrow {
  right: calc(var(--container_left_space) + 15px);
  cursor: pointer;
  position: absolute; }
#runforzero_page .social_slider_sec .prev-arrow {
  right: calc(var(--container_left_space) + 65px);
  cursor: pointer;
  position: absolute;
  transform: rotate(-180deg); }
#runforzero_page .leadership_sec {
  padding: 60px 0; }
  #runforzero_page .leadership_sec .leadership_slider {
    padding-top: 10px; }
    @media screen and (max-width: 1199px) {
      #runforzero_page .leadership_sec .leadership_slider {
        padding-top: 20px; } }
    #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      gap: 30px; }
      @media screen and (max-width: 1199px) {
        #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item {
          justify-content: space-between;
          gap: 0; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item {
          flex-direction: column;
          gap: 30px; } }
      #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_img {
        width: 27%; }
        @media screen and (max-width: 1199px) {
          #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_img {
            width: 39%; } }
        @media screen and (max-width: 991px) {
          #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_img {
            width: 100%; } }
        @media screen and (max-width: 991px) {
          #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_img img {
            margin: 0 auto; } }
      #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_quote {
        width: 56%; }
        @media screen and (max-width: 991px) {
          #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_quote {
            width: 100%; } }
        #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_quote span {
          font-family: roboto_medium; }
        #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_quote .name_designation {
          padding-top: 15px; }
          #runforzero_page .leadership_sec .leadership_slider .leadership_flex_item .person_quote .name_designation .person_name {
            font-family: roboto_medium;
            margin-bottom: 0; }
#runforzero_page .nandghar_sec {
  padding: 60px 0; }
  #runforzero_page .nandghar_sec .nandghar_flex {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 991px) {
      #runforzero_page .nandghar_sec .nandghar_flex {
        flex-direction: column;
        gap: 30px; } }
    #runforzero_page .nandghar_sec .nandghar_flex .nandghar_info {
      width: 42%; }
      @media screen and (max-width: 1199px) {
        #runforzero_page .nandghar_sec .nandghar_flex .nandghar_info {
          width: 48%; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .nandghar_sec .nandghar_flex .nandghar_info {
          width: 100%; } }
    #runforzero_page .nandghar_sec .nandghar_flex .nandghar_img {
      width: 56%; }
      @media screen and (max-width: 1199px) {
        #runforzero_page .nandghar_sec .nandghar_flex .nandghar_img {
          width: 48%; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .nandghar_sec .nandghar_flex .nandghar_img {
          width: 100%; } }
      #runforzero_page .nandghar_sec .nandghar_flex .nandghar_img img {
        width: 100%;
        border-radius: 10px; }
#runforzero_page .img_slider_sec {
  overflow: hidden;
  padding: 60px 0; }
  #runforzero_page .img_slider_sec p {
    margin-bottom: 0; }
  #runforzero_page .img_slider_sec .text_info {
    text-align: center;
    padding-bottom: 30px; }
    #runforzero_page .img_slider_sec .text_info h2 {
      padding-bottom: 0; }
  #runforzero_page .img_slider_sec .count_flex {
    display: flex;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      #runforzero_page .img_slider_sec .count_flex {
        flex-direction: column;
        align-items: center;
        gap: 20px; } }
    #runforzero_page .img_slider_sec .count_flex .count_item {
      width: 230px;
      text-align: center;
      padding: 0 25px; }
      #runforzero_page .img_slider_sec .count_flex .count_item:nth-child(2) {
        border-right: 1px solid rgba(96, 96, 96, 0.1);
        border-left: 1px solid rgba(96, 96, 96, 0.1); }
        @media screen and (max-width: 767px) {
          #runforzero_page .img_slider_sec .count_flex .count_item:nth-child(2) {
            border: none; } }
      #runforzero_page .img_slider_sec .count_flex .count_item .number {
        margin-bottom: 0; }
  #runforzero_page .img_slider_sec .slider {
    padding-top: 40px; }
    @media screen and (max-width: 767px) {
      #runforzero_page .img_slider_sec .slider {
        padding-left: 15px;
        padding-right: 15px; } }
    #runforzero_page .img_slider_sec .slider .slider_item {
      padding: 0 15px; }
      @media screen and (max-width: 767px) {
        #runforzero_page .img_slider_sec .slider .slider_item {
          padding: 0; } }
      #runforzero_page .img_slider_sec .slider .slider_item img {
        border-radius: 5px; }
        @media screen and (max-width: 767px) {
          #runforzero_page .img_slider_sec .slider .slider_item img {
            width: 100%; } }
#runforzero_page .register_sec {
  padding: 60px 20px 0 20px; }
  #runforzero_page .register_sec .register_flex {
    display: flex;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #005ca4 0%, #76b729 100%);
    position: relative; }
    @media screen and (max-width: 767px) {
      #runforzero_page .register_sec .register_flex {
        flex-direction: column; } }
    #runforzero_page .register_sec .register_flex .bgg_img {
      position: absolute;
      top: 0;
      left: 0;
      display: none; }
      @media screen and (max-width: 767px) {
        #runforzero_page .register_sec .register_flex .bgg_img {
          width: 100%; } }
    #runforzero_page .register_sec .register_flex .register_info {
      width: 55%;
      padding: 100px 0px 100px 0px;
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 1440px) {
        #runforzero_page .register_sec .register_flex .register_info {
          padding: 50px 0px 50px 0px; } }
      @media screen and (max-width: 1280px) {
        #runforzero_page .register_sec .register_flex .register_info {
          width: 60%; } }
      @media screen and (max-width: 1199px) {
        #runforzero_page .register_sec .register_flex .register_info {
          width: 65%;
          padding: 30px 0px 30px 0px; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .register_sec .register_flex .register_info {
          width: 60%;
          padding-left: 15px; } }
      @media screen and (max-width: 767px) {
        #runforzero_page .register_sec .register_flex .register_info {
          width: 100%;
          padding: 30px 15px; } }
      #runforzero_page .register_sec .register_flex .register_info h2 {
        color: var(--color_white);
        padding-bottom: 40px; }
        @media screen and (max-width: 1280px) {
          #runforzero_page .register_sec .register_flex .register_info h2 {
            padding-bottom: 20px; } }
    #runforzero_page .register_sec .register_flex .register_img {
      width: 45%;
      min-height: 100%; }
      @media screen and (max-width: 1280px) {
        #runforzero_page .register_sec .register_flex .register_img {
          width: 40%; } }
      @media screen and (max-width: 1199px) {
        #runforzero_page .register_sec .register_flex .register_img {
          width: 35%; } }
      @media screen and (max-width: 991px) {
        #runforzero_page .register_sec .register_flex .register_img {
          width: 40%; } }
      @media screen and (max-width: 767px) {
        #runforzero_page .register_sec .register_flex .register_img {
          width: 100%; } }
      #runforzero_page .register_sec .register_flex .register_img img {
        width: 100%;
        border-top-right-radius: 10px;
        height: 100%;
        object-fit: cover; }
        @media screen and (max-width: 767px) {
          #runforzero_page .register_sec .register_flex .register_img img {
            border-radius: 0; } }
  #runforzero_page .register_sec .border_btm {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #76b729 0%, #005ca4 100%); }
#runforzero_page footer {
  padding: 0 20px 20px 20px; }
  #runforzero_page footer .btmSec {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    color: #ffffff;
    align-items: center;
    padding-left: calc(var(--container_left_space) - 5px);
    padding-right: calc(var(--container_left_space) - 5px);
    background-color: #f6f6f6;
    border-radius: 10px; }
    @media screen and (max-width: 1199px) {
      #runforzero_page footer .btmSec {
        padding: 20px; } }
    @media (max-width: 991px) {
      #runforzero_page footer .btmSec {
        justify-content: space-between; } }
    @media (max-width: 767px) {
      #runforzero_page footer .btmSec {
        flex-wrap: wrap;
        row-gap: 20px; } }
    #runforzero_page footer .btmSec .text_xs {
      font-size: 14px;
      margin-bottom: 0; }
    #runforzero_page footer .btmSec .btmSecItem .btmSecItem_inside {
      display: flex;
      align-items: center;
      gap: 10px; }

.hidden {
  display: none !important; }

.header {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05); }
  @media only screen and (min-width: 992px) {
    .header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      transform: translateY(-100%);
      transition: all 0.5s;
      transition-delay: 0.8s; } }
  @media only screen and (min-width: 992px) {
    .header.headerAnim {
      transform: translateY(0%); } }
  .header h1 {
    margin: 0; }
  .header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: auto; }
  .header .burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 40px;
    height: auto;
    border: none;
    opacity: 1;
    visibility: visible;
    background-color: unset; }
    @media only screen and (min-width: 992px) {
      .header .burger {
        display: none;
        opacity: 0;
        visibility: hidden; } }
    .header .burger-line {
      display: block;
      cursor: pointer;
      width: 100%;
      height: 2px;
      margin: 6px auto;
      transform: rotate(0deg);
      transition: all 0.3s ease-in-out;
      background-color: #000; }
  .header .sidebar-logo {
    display: none; }
    @media screen and (max-width: 991px) {
      .header .sidebar-logo {
        display: block !important;
        margin: 0 0 0 15px;
        padding: 10px 15px; } }
  .header .menu {
    position: fixed;
    top: 0;
    left: -19rem;
    width: 90%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    background-color: white;
    display: flex;
    align-items: center; }
    @media only screen and (min-width: 992px) {
      .header .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none; } }
    @media only screen and (max-width: 992px) {
      .header .menu {
        display: block; } }
    .header .menu .cross {
      position: absolute;
      right: 10px;
      top: 10px; }
      @media only screen and (min-width: 992px) {
        .header .menu .cross {
          display: none; } }
    .header .menu.is-active {
      left: 0rem;
      opacity: 1;
      visibility: visible; }
    .header .menu-block {
      height: auto; }
      @media only screen and (min-width: 992px) {
        .header .menu-block {
          margin: 0 auto; } }
      @media only screen and (max-width: 992px) {
        .header .menu-block {
          padding: 0; } }
      @media only screen and (min-width: 992px) and (max-width: 1440px) {
        .header .menu-block {
          padding: 0; } }
    .header .menu-item {
      display: block;
      margin: 0 0 0 15px; }
      @media only screen and (max-width: 992px) {
        .header .menu-item:last-child {
          display: inline-block;
          margin-top: 10px; } }
      @media only screen and (min-width: 992px) {
        .header .menu-item {
          position: relative;
          display: inline-block;
          margin: 0 4px; } }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .header .menu-item {
          margin: 0 2px; } }
      .header .menu-item::after {
        content: "";
        width: 1px;
        height: 14px;
        position: absolute;
        top: 50%;
        right: -7px;
        transform: translateY(-50%);
        background-image: url(../img/line.svg);
        background-repeat: no-repeat; }
      .header .menu-item:nth-last-child(1)::after, .header .menu-item:nth-last-child(2)::after {
        content: unset; }
    .header .menu-link {
      font-size: 14px;
      color: #2a2a2a;
      font-weight: 500;
      display: inline-block;
      list-style: none;
      padding: 25px 10px;
      text-decoration: none;
      font-family: roboto_regular; }
      @media only screen and (max-width: 1200px) {
        .header .menu-link {
          padding: 20px 5px; } }
      @media only screen and (max-width: 992px) {
        .header .menu-link {
          padding: 10px 15px;
          font-size: 20px; } }
      @media only screen and (max-width: 767px) {
        .header .menu-link {
          font-size: 18px; } }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .header .menu-link {
          font-size: 13px;
          padding: 20px 3px; } }
      .header .menu-link.btnHead {
        padding: 10px 25px;
        background-color: #76b729;
        color: #fff;
        border-radius: 50px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px; }
        @media only screen and (min-width: 992px) and (max-width: 1200px) {
          .header .menu-link.btnHead {
            padding: 10px 15px; } }
  .header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.35s ease-in-out; }
    .header .overlay.is-active {
      display: block;
      opacity: 1;
      visibility: visible; }

.intro {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  transform: scaleY(1);
  transition: all 0.5s;
  transform-origin: top; }
  .intro .logoCenter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    animation: fadeInOut 4s forwards; }
@keyframes fadeInOut {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }
  .intro.introAnim {
    transform: scaleY(0); }

.introBanner {
  overflow: hidden;
  position: relative;
  padding-top: 67px; }
  @media only screen and (max-width: 1200px) {
    .introBanner {
      padding-top: 59px; } }
  .introBanner .bannerHead {
    font-size: 130px;
    color: #fff;
    font-family: roboto_bold_i;
    position: absolute;
    left: 50%;
    bottom: 10vh;
    transform: translateX(-50%);
    margin: 0; }
    @media only screen and (max-width: 1200px) {
      .introBanner .bannerHead {
        font-size: 90px; } }
    @media only screen and (max-width: 992px) {
      .introBanner .bannerHead {
        font-size: 60px; } }
    @media only screen and (max-width: 767px) {
      .introBanner .bannerHead {
        font-size: 35px; } }
  .introBanner .introSlider {
    margin-bottom: 0 !important; }
    .introBanner .introSlider .introItem {
      position: relative; }
      .introBanner .introSlider .introItem img {
        width: 100%;
        object-fit: cover; }
    .introBanner .introSlider .slick-dots {
      bottom: 0;
      width: auto;
      right: var(--container_left_space);
      padding: 0 10px 10px;
      backdrop-filter: saturate(180%) blur(10px);
      background-color: #f7fcff26;
      border-radius: 20px 20px 0px 0px; }
      .introBanner .introSlider .slick-dots li {
        width: 10px;
        height: 10px; }
        .introBanner .introSlider .slick-dots li button {
          width: 10px;
          height: 10px; }
          .introBanner .introSlider .slick-dots li button::before {
            content: "";
            width: 8px;
            height: 8px;
            background-color: transparent;
            border-radius: 50px;
            border: 2px solid #fff;
            opacity: 1; }
        .introBanner .introSlider .slick-dots li.slick-active button::before {
          background-color: #fff; }
  .introBanner .timer_main {
    position: absolute;
    top: -100%;
    right: 0;
    text-transform: uppercase;
    transition: all 1.8s; }
    .introBanner .timer_main.timer_mainAnim {
      top: var(--headerHeight); }
    @media only screen and (max-width: 992px) {
      .introBanner .timer_main {
        top: var(--headerHeight); } }
    .introBanner .timer_main .timerMin {
      background-color: #2a2a2a;
      padding: 10px 0; }
      .introBanner .timer_main .timerMin .timer {
        display: flex; }
        .introBanner .timer_main .timerMin .timer .timerItem {
          color: #fff;
          padding: 0 20px;
          text-align: center;
          font-size: 20px;
          font-family: roboto_medium; }
          .introBanner .timer_main .timerMin .timer .timerItem span {
            display: block;
            font-size: 10px; }
          .introBanner .timer_main .timerMin .timer .timerItem:nth-child(2) {
            position: relative; }
            .introBanner .timer_main .timerMin .timer .timerItem:nth-child(2)::after {
              content: "";
              position: absolute;
              right: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 4px;
              height: 18px;
              background-image: url(../img/dots.svg); }
            .introBanner .timer_main .timerMin .timer .timerItem:nth-child(2)::before {
              content: "";
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              width: 4px;
              height: 18px;
              background-image: url(../img/dots.svg); }
    .introBanner .timer_main .btmTxt {
      padding: 5px 0;
      font-size: 14px;
      font-family: roboto_medium;
      color: #fff;
      text-align: center;
      background: #005ca4;
      background: linear-gradient(90deg, #005ca4 23%, #76b729 81%);
      border-radius: 0 0 0 15px; }
  .introBanner .dropDown {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); }

.mealsContributed {
  position: relative; }
  .mealsContributed .counterBg {
    position: absolute;
    left: 0;
    top: 0; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .counterBg {
        width: 200px; } }
  .mealsContributed .mealsContributedFlex {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .mealsContributedFlex {
        flex-wrap: wrap; } }
    .mealsContributed .mealsContributedFlex .counterWrapper {
      padding-left: var(--container_left_space);
      flex: 1;
      text-align: center; }
      @media only screen and (max-width: 992px) {
        .mealsContributed .mealsContributedFlex .counterWrapper .conterSec {
          padding: 30px 0; } }
      .mealsContributed .mealsContributedFlex .counterWrapper .conterSec .counterHeads {
        margin: 0;
        font-size: 32px;
        font-family: roboto_medium;
        font-weight: 500;
        color: #2a2a2a; }
        @media only screen and (max-width: 1200px) {
          .mealsContributed .mealsContributedFlex .counterWrapper .conterSec .counterHeads {
            font-size: 20px; } }
      .mealsContributed .mealsContributedFlex .counterWrapper .conterSec .counterMain .counter {
        background: #005ca4;
        background: linear-gradient(to right, #005ca4 0%, #76b729 53%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 60px;
        margin: 0;
        padding: 0;
        letter-spacing: 20px;
        font-family: roboto_medium; }
        @media only screen and (max-width: 1200px) {
          .mealsContributed .mealsContributedFlex .counterWrapper .conterSec .counterMain .counter {
            font-size: 50px;
            letter-spacing: 20px; } }
  .mealsContributed .marquee-wrapper {
    height: 815px;
    position: relative; }
    .mealsContributed .marquee-wrapper::after, .mealsContributed .marquee-wrapper::before {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 100px;
      background: white;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 47%, white 100%); }
    .mealsContributed .marquee-wrapper::before {
      top: 0;
      z-index: 1;
      transform: rotate(180deg); }
    .mealsContributed .marquee-wrapper::after {
      bottom: 0; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .marquee-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between; } }
  .mealsContributed .marquee-inner span {
    height: 50%; }
  .mealsContributed .marquee-wrapper .marquee-block {
    width: 255px;
    height: 815px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    padding: 30px 0;
    float: left; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .marquee-wrapper .marquee-block {
        width: 48%; } }
  .mealsContributed .marquee-inner {
    display: block;
    height: 200%;
    width: 255px;
    position: absolute; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .marquee-inner {
        width: 100%; } }
  .mealsContributed .marquee-item {
    margin: 20px 0; }
    .mealsContributed .marquee-item img {
      display: block;
      max-width: 100%;
      height: auto; }
      @media only screen and (max-width: 992px) {
        .mealsContributed .marquee-item img {
          width: 100%; } }
  .mealsContributed .marquee-item p {
    font-weight: 800;
    font-size: 30px;
    padding: 100px;
    font-family: cursive; }
  .mealsContributed .marquee-inner.to-left {
    animation: marqueeTop 25s linear infinite; }
  .mealsContributed .marquee-inner.to-right {
    animation: marqueeBottom 25s linear infinite; }
  .mealsContributed .marquee-block:nth-child(1) {
    margin-right: 25px; }
    @media only screen and (max-width: 992px) {
      .mealsContributed .marquee-block:nth-child(1) {
        margin-right: 0; } }
@keyframes marqueeTop {
  0% {
    top: 0; }
  100% {
    top: -100%; } }
@keyframes marqueeBottom {
  0% {
    top: -100%; }
  100% {
    top: 0; } }
.toTop[data-scroll] {
  transition: all 0.5s ease-out; }
.toTop[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0); }
.toTop[data-scroll="out"] {
  opacity: 0;
  transform: translateY(100px); }

.toBottom[data-scroll] {
  transition: all 0.5s ease-out; }
.toBottom[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0); }
.toBottom[data-scroll="out"] {
  opacity: 0;
  transform: translateY(-100px); }

.toLeft[data-scroll] {
  transition: all 0.5s ease-out; }
.toLeft[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0); }
.toLeft[data-scroll="out"] {
  opacity: 0;
  transform: translateX(-100px); }

.toRight[data-scroll] {
  transition: all 0.5s ease-out; }
.toRight[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0); }
.toRight[data-scroll="out"] {
  opacity: 0;
  transform: translateX(100px); }

.toFade[data-scroll] {
  transition: all 0.5s ease-out; }
.toFade[data-scroll="in"] {
  opacity: 1; }
.toFade[data-scroll="out"] {
  opacity: 0; }

.pledgeSection {
  padding: 50px 0; }
  @media screen and (max-width: 767px) {
    .pledgeSection {
      padding: 50px 15px; } }
  .pledgeSection .pledgeSecBx {
    margin-left: calc(var(--container_left_space) / 2);
    margin-right: calc(var(--container_left_space) / 2);
    background-color: var(--color_primary);
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: calc(var(--container_left_space) / 2);
    padding-right: calc(var(--container_left_space) / 2); }
    @media screen and (max-width: 991px) {
      .pledgeSection .pledgeSecBx {
        padding-top: 40px;
        padding-bottom: 40px; } }
    @media screen and (max-width: 767px) {
      .pledgeSection .pledgeSecBx {
        padding: 40px 15px;
        margin: auto; } }
    .pledgeSection .pledgeSecBx .pledge_flex {
      display: flex;
      align-items: center; }
      @media screen and (max-width: 1199px) {
        .pledgeSection .pledgeSecBx .pledge_flex {
          justify-content: center; } }
      @media screen and (max-width: 767px) {
        .pledgeSection .pledgeSecBx .pledge_flex {
          flex-direction: column;
          gap: 20px; } }
      .pledgeSection .pledgeSecBx .pledge_flex .pledge_title {
        width: 50%; }
        @media screen and (max-width: 1199px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_title {
            width: 48%; } }
        @media screen and (max-width: 991px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_title {
            width: 55%; } }
        @media screen and (max-width: 767px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_title {
            width: 100%; } }
        .pledgeSection .pledgeSecBx .pledge_flex .pledge_title h2 {
          color: var(--color_white); }
        .pledgeSection .pledgeSecBx .pledge_flex .pledge_title p {
          color: var(--color_white);
          margin-bottom: 40px; }
      .pledgeSection .pledgeSecBx .pledge_flex .pledge_count {
        width: 50%; }
        @media screen and (max-width: 1199px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_count {
            width: 48%; } }
        @media screen and (max-width: 991px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_count {
            width: 45%; } }
        @media screen and (max-width: 767px) {
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_count {
            width: 100%; } }
        .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper {
          padding-left: var(--container_left_space);
          flex: 1;
          text-align: center; }
          @media only screen and (max-width: 992px) {
            .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec {
              padding: 30px 0; } }
          @media screen and (max-width: 767px) {
            .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec {
              padding-bottom: 0; } }
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterHeads {
            margin: 0;
            color: #ffffff; }
            @media only screen and (max-width: 1200px) {
              .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterHeads {
                font-size: 20px; } }
          .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterMain {
            margin-bottom: 20px; }
            .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterMain .counter {
              color: var(--color_white);
              font-size: 70px;
              margin: 0;
              padding: 0;
              font-family: roboto_medium; }
              .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterMain .counter span {
                padding: 0 10px;
                border: 1px solid rgba(233, 233, 233, 0.2);
                border-radius: 5px;
                margin-right: 10px; }
              @media only screen and (max-width: 1200px) {
                .pledgeSection .pledgeSecBx .pledge_flex .pledge_count .counterWrapper .conterSec .counterMain .counter {
                  font-size: 50px; } }

.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  backdrop-filter: blur(10px);
  z-index: 100000000000000000; }
  .popup .overlay {
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: absolute; }
  .popup .popupBx {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    .popup .popupBx .moadalFlex1 {
      width: 440px;
      background-color: #fff;
      display: flex;
      border-radius: 5px;
      box-shadow: 0px 4px 10px #dedede;
      flex-direction: column;
      align-items: center;
      margin: 0 auto;
      position: relative; }
      @media screen and (max-width: 992px) {
        .popup .popupBx .moadalFlex1 {
          flex-wrap: wrap;
          margin: 0 auto; } }
      @media screen and (max-width: 767px) {
        .popup .popupBx .moadalFlex1 {
          margin: 0 0;
          width: auto; } }
      .popup .popupBx .moadalFlex1 .popup_img img {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px; }
      .popup .popupBx .moadalFlex1 .popup_form {
        padding: 30px;
        width: 100%; }
        .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field {
          position: relative;
          margin-bottom: 20px; }
          @media (max-width: 767px) {
            .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field {
              width: 100%;
              margin-bottom: 30px; } }
          .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field input[type="text"],
          .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field input[type="email"] {
            width: 100%;
            border: 0;
            outline: 0;
            padding: 3px 0;
            border-bottom: 1px solid rgba(96, 96, 96, 0.1);
            box-shadow: none;
            color: #111;
            font-family: roboto_regular;
            font-size: 18px;
            line-height: 27px; }
          .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field input:focus + .label,
          .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field input.has-value + .label {
            top: -20px;
            font-size: 14px;
            color: var(--color_btn_primary); }
          .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field .label {
            position: absolute;
            top: 0;
            left: 0px;
            width: 100%;
            color: black;
            transition: all 0.2s;
            cursor: text;
            pointer-events: none;
            font-family: roboto_regular;
            font-size: 18px;
            line-height: 27px; }
            @media (max-width: 767px) {
              .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field .label {
                font-size: 16px;
                line-height: 20px; } }
            .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field .label .grey {
              color: #d3d3d3; }
            .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .form_field .label span {
              color: red; }
        .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .error {
          color: red;
          font-family: roboto_regular;
          font-size: 14px;
          margin-bottom: 10px;
          display: inline-block; }
          @media (max-width: 767px) {
            .popup .popupBx .moadalFlex1 .popup_form #pledgeForm .error {
              font-size: 10px; } }

.btn_primary button {
  cursor: pointer;
  font-family: roboto_medium;
  font-size: 14px;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--color_btn_primary);
  border-radius: 21px;
  text-decoration: none;
  gap: 10px;
  text-transform: uppercase;
  color: var(--color_white);
  border: none; }

.cancel {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  cursor: pointer; }
  @media screen and (max-width: 767px) {
    .cancel {
      top: 10px;
      right: 10px; } }

.overflow {
  overflow: hidden; }

.pb_30 {
  padding-bottom: 30px; }

/*# sourceMappingURL=runforzero.css.map */
