@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap");
@import url(reset.css);
* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Better Grade";
  src: url("../fonts/BetterGrade.eot");
  src: url("../fonts/BetterGrade.eot?#iefix") format("embedded-opentype"),
    url("../fonts/BetterGrade.woff2") format("woff2"),
    url("../fonts/BetterGrade.woff") format("woff"),
    url("../fonts/BetterGrade.ttf") format("truetype"),
    url("../fonts/BetterGrade.svg#BetterGrade") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --cursive-font: "Better Grade", cursive;
  --blue: #0148a7;
  --dark-blue: #00295c;
  --body-color: #414141;
  --green: #00beaf;
  --highlight-bg: #00beaf;
  --l-blue: #0448a7;
  --max-width: 960px;
  --fs-hero: clamp(3.5rem, 6vw, 5rem);
  --fs-xl: clamp(2.7rem, 5vw, 4rem);
  --fs-lg: clamp(2rem, 4.25vw, 3.55rem);
  --fs-l: clamp(1.35rem, 2.5vw, 2rem);
  --fs-m: clamp(1rem, 1.35vw, 1rem);
  --fs-r: clamp(1rem, 1.5vw, 1rem);
  --fs-s: clamp(0.725rem, 1.35vw, 0.75rem);
  --primary-color: #0f3250;
  --secondary-color: #0148a7;
  --footer-color: #e7e7e7;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --gray-bg: #e7e7e7;
}

html,
body {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--body-color);
}

@media (min-width: 1680px) {
  :root {
    --max-width: 1280px;
  }

  html {
    font-size: 16.5px;
  }
}
body.main {
  background-size: 100% auto;
}
body.forum {
  background: url("../img/forum_hero_bg.jpg") left top no-repeat #02234c;
  background-size: 100% auto;
}
body.sponsor {
  background: url("../img/newdesign/spon_bg.jpg") left top no-repeat white;
  background-size: 100% auto;
}

div h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

div a {
  text-decoration: none;
}

.section-bg-light {
  background: rgba(231, 231, 231, 0.5);
}

.section-bg-gray-light {
  background: #f3f3f3;
}

.section-bg-gray {
  background: #f7f7f7;
}

.divider-border-color {
  border-color: #595959;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: white;
  padding: 0 2rem;
}
header .container {
  display: flex;
  padding: 1.5rem 0 0.85rem 0;
}
header .organizers {
  flex: 1;
  display: flex;
  align-items: center;
}
header .organizers .each_organizer {
  position: relative;
}
header .organizers .each_organizer small {
  color: #707070;
  font-size: var(--fs-s);
  position: absolute;
  bottom: calc(100% + 0.25rem);
}
header .organizers .each_organizer img {
  height: 3rem;
}
header .organizers .each_organizer.right {
  margin-left: auto;
}

.to_green_btn {
  background: white;
  color: var(--l-blue);
  transition: all 0.15s;
}
.to_green_btn:hover {
  background: #12b9be !important;
  color: white;
}

.to_green_btn_border {
  border: 2px solid white;
  transition: all 0.15s;
  color: #fff;
  font-size: var(--fs-m);
  padding: 0.65rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.to_green_btn_border:hover {
  background: #12b9be !important;
  border: 2px solid #12b9be;
  color: white;
}

nav {
  margin: 0 0 0 auto;
  position: relative;
}
nav .menu {
  display: flex;
}
nav .menu > li {
  display: inline-block;
  position: relative;
  margin: 0 1rem;
}
nav a {
  color: white;
  display: inline-block;
  padding: 1.25rem 0.4rem;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
}
@media screen and (max-width: 1200px) and (min-width: 992px) {
  nav a {
    font-size: 12px;
  }
}

nav a.active {
  font-weight: 800;
  cursor: default;
}
nav ul.sub-menu {
  display: none;
  width: max-content;
  padding: 0rem;
  border-radius: 10px;
  background: white;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
}
nav ul.sub-menu:after {
  width: 0;
  height: 0;
  --thickness: 10px;
  border-left: var(--thickness) solid transparent;
  border-right: var(--thickness) solid transparent;
  border-bottom: var(--thickness) solid white;
  content: "";
  position: absolute;
  left: calc(50% - calc(var(--thickness) / 2));
  bottom: 100%;
}
nav ul.sub-menu > li {
  display: block;
}
nav ul.sub-menu a {
  font-weight: 500;
  color: var(--body-color);
  padding: 0.85rem 1.2rem;
  position: relative;
  display: block;
  transition: all 0.15s linear;
}
nav ul.sub-menu a:last-of-type {
  margin-bottom: 0;
}
nav ul.sub-menu a:hover {
  background: rgba(188, 188, 188, 0.25);
  border-radius: 10px;
  text-decoration: underline !important;
}
nav ul.sub-menu a.active {
  cursor: default;
  font-weight: 600;
  background: none;
}
nav ul.sub-menu a.coming_soon {
  opacity: 0.5;
  cursor: default;
  background: none;
}

.page_nav {
  isolation: isolate;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform: none;
}
.page_nav .pin-me.active {
  box-shadow: var(--shadow);
}
.page_nav.on_white nav > ul > li > a {
  color: #414141;
}
.page_nav.on_white .mobile_menu svg path {
  fill: #414141;
}
.page_nav.on_white .reg_btn.to_green_btn {
  background: var(--blue);
  color: white;
}
.page_nav.on_white .reg_btn.to_green_btn:hover {
  background: var(--green);
}
.page_nav.on_white .pin-me.active .hide_this {
  opacity: 0;
}
.page_nav .mobile_menu {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0.5rem;
  margin-right: 1rem;
  display: none;
  margin-left: auto;
}
.page_nav .mobile_menu svg {
  height: auto;
}
.page_nav .mobile_menu svg path {
  stroke: transparent;
}
.page_nav .container {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
}
.page_nav .container .logo {
  position: relative;
}
.page_nav .container .logo img {
  width: 320px;
}
.page_nav .container .logo .hide_this {
  display: none;
  width: 270px;
}
.page_nav a.reg_btn {
  font-size: 0.875rem;
  padding: 0.55rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  margin: 0 0 0 1.2rem;
}
.page_nav a.reg_btn:active {
  transform: translateY(1px);
}

.page_nav a.reg_btn.disabled,
.page_nav a.reg_btn:disabled,
.to_blue_btn_border.disabled,
.to_blue_btn_border:disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  border-color: #6c757d;
  color: #6c757d !important;
}

.Zebra_Pin.on_white .reg_btn.to_green_btn_border.disabled {
  background-color: #6c757d;
  color: #fff;
}

/* Sticky Nav */
.pin-me {
  padding: 0 2rem;
  transition: all 0.15s;
  background: transparent;
}
.pin-me:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  z-index: -1;
  background: white;
  transform: scaleY(0);
  transition: all 0.25s ease-out;
}
.pin-me.active:after {
  transform: scaleY(1);
}
.pin-me.active nav > ul > li > a {
  color: #414141;
}
.pin-me.active .container .logo .show_this {
  display: none;
}
.pin-me.active .container .logo .hide_this {
  display: block;
}
.pin-me.active a.reg_btn {
  background: var(--blue);
  color: white;
  font-weight: 600;
}
.pin-me.active a.reg_btn:hover {
  background: var(--green);
  color: white;
}
/* End: Sticky Nav */

.main_hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  background: #091c2d;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  &.home {
    background-image: url("../img/home/hero_bg.webp");

    @media screen and (min-width: 1600px) {
      background-size: 100%;
      background-position: center 5%;
    }
  }
  &.about {
    background-image: url("../img/about/hero-bg.jpg");
  }
  &.about_event_theme {
    padding: 10rem 0;
    background-image: url("../img/about/event_hero_bg.jpg");
    background-position: center;
  }
  &.programme {
    padding: 10rem 0;
    background-image: url("../img/programme/hero_bg.jpg");
    background-position: center;
  }
  &.sponsor {
    padding: 12rem 0;
    background-image: url("../img/sponsorship/hero_bg.jpg");
    background-position: center bottom;
  }
  &.contact {
    padding: 10rem 0;
    background-image: url("../img/contact/contact_bg.jpg");
    background-position: center;

    @media screen and (min-width: 1200px) {
      padding: 15rem 0;
    }
  }

  &.country {
    background-color: #ffffff;
    background-image: url("../img/countries/country_hero_bg.jpg");
  }
}

.overlay_gradient {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 80%;
    background: #414141;
    background: linear-gradient(
      90deg,
      rgba(65, 65, 65, 1) 0%,
      rgba(65, 65, 65, 1) 40%,
      rgba(16, 50, 80, 0) 100%
    );
    mix-blend-mode: multiply;
    opacity: 0.76;
  }
}

.overlay_full {
  position: relative;
  &::before {
    content: "";
    background: #414141;
    opacity: 0.8;
    position: absolute;
    mix-blend-mode: multiply;
    inset: 0;
  }
}

.section_bg {
  position: relative;
  background-image: url("../img/section_bg.jpg");
  background-position: center 63%;
  background-size: 160%;

  &.contact {
    background-position: center;
  }
}

.white-bg-box {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 30px;
  max-width: 1054px;
  margin: 0 auto;
}

.main_hero .hero_text,
.main_hero .hero_img_wrapper {
  color: white;
  padding-top: 3rem;
  @media screen and (min-width: 992px) {
    padding-top: 8rem;
  }
  @media screen and (min-width: 1200px) {
    padding-top: 7rem;
  }
  @media screen and (min-width: 1600px) {
    padding-top: 10rem;
  }
}
.main_hero .hero_text h1 {
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(3rem, 5vw, 3rem);
  position: relative;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;

  @media screen and (min-width: 992px) {
    font-size: clamp(3.5rem, 5vw, 4rem);
  }
  @media screen and (min-width: 1200px) {
    font-size: var(--fs-hero);
  }
}

.main_hero .hero_text h1 small {
  height: 6px;
  max-width: 10rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
}
.main_hero .hero_text h1:after {
  height: 6px;
  width: 10rem;
  border-radius: 3rem;
  content: "";
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
}
.main_hero .hero_tagline {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  @media screen and (min-width: 768px) {
    font-size: 20px;
  }
}
.main_hero.about .hero_tagline {
  @media screen and (min-width: 768px) {
    font-size: 1.3rem;
    max-width: 400px;
  }
}
.description-lg {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 1.5;

  @media screen and (min-width: 768px) {
    font-size: 1.8rem;
  }
}

p {
  line-height: 1.6;
}

.logos {
  background-color: white;
  padding-left: 2rem;
  padding-right: 2rem;
}
.logos h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  position: relative;
  margin-bottom: 5rem;
}
.logos h2 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 130%;
}
.logos .organisation,
.logos .sponsor {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #bcbcbc;
}
.logos .organisation.no_border {
  padding-bottom: 0;
  border-bottom: 0;
}
.logos .partner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.logos .logos_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
.logos .organisation .logos_container .group_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 3rem; */
}
.logos .organisation .logos_container .group_2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18rem;
}
.logos .partner .logos_container {
  justify-content: center;
  gap: 6rem;
}
.logos .logos_container .each {
  /* width: 30%; */
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 3rem;
}
.logos .logos_container .each.center_y {
  align-items: center;
}
.logos .logos_container .each > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.logos .logos_container .each .wrap {
  flex-wrap: wrap;
}
.logos .logos_container .each .more_gap {
  gap: 5rem;
}
.logos .logos_container .each .move_down {
  margin-top: 3rem;
}
.logos .logos_container .each > p {
  text-align: center;
  margin-bottom: 2rem;
}
.logos .sponsor .logos_container .group {
  display: flex;
  gap: 10rem;
}

.sponsor_meaning {
  background-color: white;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.sponsor_meaning h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  position: relative;
  margin-bottom: 4rem;
  width: 38%;
}
.sponsor_meaning h2 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 130%;
}
.sponsor_meaning h2 + p {
  width: 60%;
}
.sponsor_meaning .sponsor_meaning_block {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 9rem;
}
.sponsor_meaning .sponsor_meaning_block .each_meaning {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sponsor_meaning .sponsor_meaning_block .each_meaning img {
  margin-bottom: 2rem;
}
.sponsor_meaning .sponsor_meaning_block .each_meaning p {
  text-align: center;
}

.sponsor_opp {
  background-color: #f7f7f7;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.sponsor_opp h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  position: relative;
  margin-bottom: 4rem;
  width: 40%;
}
.sponsor_opp h2 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 130%;
}
.sponsor_opp a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
}

.forum_registration {
  background-color: white;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.forum_registration .form_container {
  margin-left: 7rem;
  margin-right: 7rem;
}
.forum_registration .form_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.forum_registration .form_group label {
  margin-bottom: 0.5rem;
}
.forum_registration .form_group input {
  height: 3rem;
  padding-left: 0.3rem;
}
.forum_registration .submit_btn {
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: var(--fs-m);
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: block;
  margin-top: 2rem;
  margin-left: auto;
}
.forum_registration .submit_btn.to_green_btn:hover {
  background: #12b9be;
}
.form_error_mess {
  color: #ff0000;
}
/* Chrome, Safari, Edge, Opera */
.forum_registration .form_group input::-webkit-outer-spin-button,
.forum_registration .form_group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.forum_registration .form_group input[type="number"] {
  -moz-appearance: textfield;
}

.sg {
  background-image: url("../img/sg_bg.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: white;
}
.sg img {
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  pointer-events: none;
}
.sg .container {
  position: absolute;
  padding: 5rem 2rem;
  left: 50%;
  width: 100%;
  top: 0;
  transform: translateX(-50%);
}
.sg strong {
  font-family: var(--cursive-font);
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: normal;
  line-height: 1;
  display: inline-block;
}
.sg .sg_inner_des {
  width: 80%;
  margin-top: -5%;
  margin-left: auto;
  margin-right: auto;
}
.sg .sg_inner_des h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.sg .sg_inner_des p {
  display: block;
}
.blue_link {
  color: #0148a7;
  text-decoration: underline;
}
.blue_btn {
  background: var(--blue);
  color: white;
  transition: all 0.15s;
  font-size: var(--fs-m);
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  display: inline-block;
}
.blue_btn.white {
  background: white;
  color: var(--blue);
}
.blue_btn:active {
  transform: translateY(1px);
}
.blue_btn:hover {
  background: var(--green);
  color: white;
}

.white_btn {
  background: white;
  color: var(--blue);
  transition: all 0.15s;
  font-size: var(--fs-m);
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  display: inline-block;
}
.white_btn:active {
  transform: translateY(1px);
}
.white_btn:hover {
  background: var(--green);
  color: white;
}

footer {
  background: var(--footer-color);
  padding: 0 2rem;
}
.footer-logo img {
  width: 300px;
}
.footer_navigation_link {
  font-weight: 500;
  text-decoration: underline;
  color: var(--body-color);
}

footer .footer-bottom {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}
footer .container .social a img {
  width: 42px;
}
footer .container .footnote {
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: var(--body-color);
}

.white_deco {
  position: absolute;
  left: 100%;
  top: 25%;
  bottom: 0;
  width: clamp(7rem, 25vw, 14rem);
  opacity: 0.25;
}

.organisers_top {
  background: url("../img/organiser_top.jpg") right center no-repeat #fafafa;
  background-size: contain;
  position: relative;
  padding: 0 2rem;
}
.organisers_top .osg {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.organisers_top .osg img {
  visibility: hidden;
  width: clamp(15rem, 25vw, 18rem);
  margin: 5rem auto 3rem auto;
}

.organisers_bottom {
  background: url("../img/organiser_bottom.jpg") left top no-repeat;
  background-size: contain;
  padding: 6rem 2rem 10rem;
}
.organisers_bottom .resolute {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.organisers_bottom .resolute img {
  visibility: hidden;
  width: clamp(16.5rem, 25vw, 20rem);
  margin: 2rem auto;
}

.programme_learn_more {
  background: #fafafa;
  padding: 0 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.programme_learn_more .learn_more_content {
  padding: 5rem 3rem;
}
.programme_learn_more p {
  display: block;
  padding: 0.5rem 0;
  line-height: 1.4;
}
.programme_learn_more p a {
  text-decoration: underline;
  font-weight: 600;
  color: var(--blue);
}
.programme_learn_more p a:hover {
  text-decoration: none;
}

.contact_mid {
  position: relative;
  background: #fafafa;
  padding: 0 2rem;
}
.contact_mid.__is_spons_page .container {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: none;
}
.contact_mid.__is_spons_page .contact_mid_content {
  padding: 0 2rem;
}
.contact_mid.__is_spons_page .contact_mid_content .contact_segment_row {
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact_mid.__is_spons_page .contact_mid_content > strong {
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  color: var(--body-color);
  font-weight: 800;
}
.contact_mid.__is_spons_page .contact_mid_content .each_contact_block strong {
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
}
.contact_mid.__is_spons_page .contact_mid_content .each_contact_block span {
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.contact_mid.__is_spons_page .contact_mid_content .more_info {
  margin-top: 4rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.contact_mid.__is_spons_page .contact_mid_content .more_info a {
  color: var(--blue);
  text-decoration: underline;
}
.contact_mid.__is_spons_page .contact_mid_content .more_info a:hover {
  text-decoration: none;
}
.contact_mid {
  background-image: url(../img/newdesign/up_ele_blue.png);
  background-position: center;
  background-size: cover;
}
.contact_mid .white_curvey_ele {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: calc(100% - 1px);
  pointer-events: none;
  z-index: 0;
}
.contact_mid .contact_mid_content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}
.contact_mid .contact_mid_content > strong {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  color: var(--blue);
  margin-bottom: 2rem;
  font-weight: 600;
  display: block;
}
.contact_mid .contact_mid_content .contact_segment_row {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  display: flex;
  position: relative;
}
.contact_mid .contact_mid_content .contact_segment_row:after {
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 1px;
  background-color: #707070;
}
.contact_mid .contact_mid_content .contact_segment_row.active:after {
  width: 100%;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}
.contact_mid .contact_mid_content .contact_segment_row:last-of-type:after {
  display: none;
}
.contact_mid .contact_mid_content .each_contact_block {
  width: 50%;
  padding-right: 3rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.contact_mid .contact_mid_content .each_contact_block strong {
  font-weight: bold;
  font-size: clamp(1.1rem, 2.15vw, 1.7rem);
}
.contact_mid .contact_mid_content .each_contact_block span {
  display: block;
  margin-bottom: 2rem;
}
.contact_mid .contact_mid_content .each_contact_block a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.contact_mid .contact_mid_content .each_contact_block a:hover {
  text-decoration: none;
}
.contact_mid .contact_mid_content .each_contact_block:nth-of-type(2) {
  margin-left: auto;
}

.timeline {
  font-size: clamp(1.15rem, 1.5vw, 1.25rem);
  display: none;
}
.timeline table {
  margin: 0 auto;
  width: 80%;
}
.timeline td {
  position: relative;
}
.timeline td:nth-of-type(1) {
  width: 40%;
  text-align: right;
  padding-right: 3.5rem;
}
.timeline td:nth-of-type(2) {
  width: 60%;
}
.timeline td:nth-of-type(2) span {
  padding-left: 4rem;
}
.timeline td:nth-of-type(2) span:after {
  height: 100%;
  position: absolute;
  left: 6.5px;
  top: 0;
  content: "";
  width: 2px;
  background: var(--highlight-bg);
}
.timeline td:nth-of-type(2) span:before {
  width: 15px;
  height: 15px;
  background: var(--highlight-bg);
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.timeline td:nth-of-type(2) span.first:after {
  height: 50%;
  top: 50%;
}
.timeline td:nth-of-type(2) span.last:after {
  height: 50%;
  bottom: 50%;
}
.timeline td span {
  display: block;
  padding: 1rem 0;
}

.font-weight-600 {
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  color: #0f3250;
  text-align: left;
  display: block;
  margin-top: 3rem;
  font-weight: 700;
}

.prob_statements {
  background: #fafafa;
  padding: 0 2rem;
  color: #00142e;
}
.prob_statements .container {
  padding: 6rem 2rem;
}
.prob_statements h1 {
  text-transform: uppercase;
  line-height: 1.05;
  font-size: var(--fs-lg);
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.prob_statements h1 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
}
.prob_statements .prob_statements_block {
  padding: 4rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.prob_statements .prob_statements_block > div:nth-child(1) {
  margin-bottom: 5rem;
}
.prob_statements .prob_statements_block h2 {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: var(--fs-l);
}
.prob_statements .prob_statements_block h2 + p {
  margin-bottom: 1rem;
  display: block;
  color: #00142e;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.15vw, 1.7rem);
  line-height: 110%;
}
.prob_statements .prob_statements_block ul {
  padding-left: 2rem;
}
.prob_statements .prob_statements_block ul li {
  display: list-item;
  list-style-position: outside;
  padding: 0.65rem 0;
  padding-left: 0.4rem;
  color: var(--body-color);
  list-style-image: url("../img/bullet.svg");
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.prob_statements .prob_statements_block ul li strong {
  font-weight: 600;
}

.startathon_rules {
  padding: 0 2rem;
  background: #fafafa;
  display: none;
}
.startathon_rules .container {
  padding: 6rem 2rem;
}
.startathon_rules .startathon_rules_block {
  padding: 4rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}
.startathon_rules .startathon_rules_block .startathon_rules_block_inner {
  width: 90%;
  margin: auto;
}
.startathon_rules .startathon_rules_block p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  display: block;
  text-align: center;
  margin-bottom: 4rem;
}
.startathon_rules .startathon_rules_block h2 {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--blue);
  font-size: var(--fs-l);
}
.startathon_rules .startathon_rules_block_btn {
  display: flex;
  justify-content: center;
}
.startathon_rules .startathon_rules_block_btn a {
  font-size: var(--fs-m);
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  background: var(--blue);
  color: white;
  transition: all 0.15s;
}
.startathon_rules .startathon_rules_block_btn a:hover {
  background: var(--green);
}

.sponsor_mid,
.faq_mid {
  position: relative;
  background: #fafafa;
  padding: 0 2rem;
}
.sponsor_mid .white_curvey_ele,
.faq_mid .white_curvey_ele {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: calc(100% - 1px);
  pointer-events: none;
  z-index: 0;
}
.sponsor_mid .sponsor_mid_content,
.faq_mid .sponsor_mid_content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}
.sponsor_mid .sponsor_mid_content .title h1,
.faq_mid .sponsor_mid_content .title h1 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  position: relative;
  display: block;
}
.sponsor_mid .sponsor_mid_content .packages,
.faq_mid .sponsor_mid_content .packages {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  margin-bottom: 5rem;
}
.sponsor_mid .sponsor_mid_content .packages .each_package,
.faq_mid .sponsor_mid_content .packages .each_package {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  border-radius: 1rem;
  padding: 2rem;
  cursor: pointer;
  background: white;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}
.sponsor_mid .sponsor_mid_content .packages .each_package:active,
.faq_mid .sponsor_mid_content .packages .each_package:active {
  transform: translateY(2px);
}
.sponsor_mid .sponsor_mid_content .packages .each_package:hover span,
.faq_mid .sponsor_mid_content .packages .each_package:hover span {
  text-decoration: none;
}
.sponsor_mid .sponsor_mid_content .packages .each_package span,
.faq_mid .sponsor_mid_content .packages .each_package span {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}
.sponsor_mid .sponsor_mid_content .packages .each_package h3,
.faq_mid .sponsor_mid_content .packages .each_package h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
}
.sponsor_mid .sponsor_mid_content .packages .each_package h3.gold,
.faq_mid .sponsor_mid_content .packages .each_package h3.gold {
  color: #ebbe00;
}
.sponsor_mid .sponsor_mid_content .packages .each_package h3.silver,
.faq_mid .sponsor_mid_content .packages .each_package h3.silver {
  color: #b5b5b5;
}
.sponsor_mid .sponsor_mid_content .packages .each_package h3.bronze,
.faq_mid .sponsor_mid_content .packages .each_package h3.bronze {
  color: #ac8917;
}
.sponsor_mid .sponsor_mid_content strong,
.faq_mid .sponsor_mid_content strong {
  display: block;
}
.sponsor_mid .sponsor_mid_content > p,
.faq_mid .sponsor_mid_content > p {
  margin-bottom: 5rem;
}
.sponsor_mid .sponsor_mid_content > p strong,
.faq_mid .sponsor_mid_content > p strong {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  line-height: normal;
}
.sponsor_mid .sponsor_mid_content > p b,
.faq_mid .sponsor_mid_content > p b {
  font-weight: 600;
  color: var(--green);
}
.sponsor_mid .sponsor_mid_content > p a,
.faq_mid .sponsor_mid_content > p a {
  margin-top: 1.5rem;
}
.sponsor_mid .sponsor_mid_content .sponsor_icons,
.faq_mid .sponsor_mid_content .sponsor_icons {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
.sponsor_mid .sponsor_mid_content .sponsor_icons.sponsor_02,
.faq_mid .sponsor_mid_content .sponsor_icons.sponsor_02 {
  padding: 2rem 0;
}
.sponsor_mid .sponsor_mid_content .sponsor_icons.sponsor_02 .each_sponsor_icon,
.faq_mid .sponsor_mid_content .sponsor_icons.sponsor_02 .each_sponsor_icon {
  width: 22%;
}
.sponsor_mid
  .sponsor_mid_content
  .sponsor_icons.sponsor_02
  .each_sponsor_icon
  img,
.faq_mid .sponsor_mid_content .sponsor_icons.sponsor_02 .each_sponsor_icon img {
  height: clamp(5rem, 7.5vw, 5rem);
}
.sponsor_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon,
.faq_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28%;
}
.sponsor_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon img,
.faq_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon img {
  margin-bottom: 1.5rem;
  height: clamp(4rem, 6.5vw, 5rem);
}
.sponsor_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon h2,
.faq_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--green);
  padding: 1rem 0;
}
.sponsor_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon p,
.faq_mid .sponsor_mid_content .sponsor_icons .each_sponsor_icon p {
  text-align: center;
}
.sponsor_mid .sponsor_mid_content .drawers,
.faq_mid .sponsor_mid_content .drawers {
  margin: 4rem 0 2rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer,
.faq_mid .sponsor_mid_content .drawers .each_drawer {
  border-bottom: 1px solid var(--body-color);
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer:first-of-type,
.faq_mid .sponsor_mid_content .drawers .each_drawer:first-of-type {
  border-top: 1px solid var(--body-color);
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_head,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head {
  padding: 0.7rem 0;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.sponsor_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_head:hover
  strong,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head:hover strong {
  text-decoration: none;
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_head strong,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head strong {
  text-decoration: underline;
}
.sponsor_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_head.active
  strong,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head.active strong {
  text-decoration: none;
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_head.active svg,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head.active svg {
  transform: rotate(180deg);
}
.sponsor_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_head.active
  svg
  path,
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_head.active
  svg
  path {
  fill: #0148a7;
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_head svg,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head svg {
  height: auto;
  margin-left: auto;
  margin-right: 1rem;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_content,
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_content {
  display: none;
}
.sponsor_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content,
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content {
  padding: 0.7rem 0 1.25rem;
}
.sponsor_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  p,
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  p {
  line-height: 1.6;
}

.sponsor_mid .sponsor_mid_content > p {
  margin-bottom: 0;
  font-size: 16px;
}
.sponsor_mid .sponsor_mid_content > p a {
  font-weight: 500;
}

.sponsor_mid .sponsor_mid_content .sponsor_icons {
  margin-top: 2rem;
}

.faq_mid {
  background: none;
}
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_content {
  display: block;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  table {
  margin-top: 0.5rem;
  border: 1px solid var(--body-color);
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  table
  td {
  padding: 1.5rem;
  border: 1px solid var(--body-color);
  vertical-align: top;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  table
  td:first-of-type {
  width: 35%;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  table
  td
  ul
  li {
  display: list-item;
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  table
  td
  ul
  li:last-of-type {
  margin-bottom: 0;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  p
  a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: bold;
}
.faq_mid
  .sponsor_mid_content
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  p
  a:hover {
  text-decoration: none;
}
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head {
  cursor: default;
  padding-bottom: 0;
}
.faq_mid .sponsor_mid_content .drawers .each_drawer .drawer_head strong {
  padding-top: 1rem;
  text-decoration: none;
}

.block {
  display: block;
}

.pop_sponsor {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 46, 0.85);
  z-index: 8;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  padding: 8rem 2rem 2rem;
  overflow: auto;
  transition: all 0.15s linear 0.1s;
}
.pop_sponsor .pop_sponsor_close_block {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 1;
}
.pop_sponsor.called {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all 0.25s linear;
}
.pop_sponsor.called .inner_pop_sponsor {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0px);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}
.pop_sponsor.called .inner_pop_sponsor .close_pop {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1.5rem;
  z-index: 1;
  cursor: pointer;
}
.pop_sponsor.called .inner_pop_sponsor .close_pop:hover {
  opacity: 0.5;
}
.pop_sponsor.called .inner_pop_sponsor .close_pop img {
  width: 1.25rem;
}
.pop_sponsor .inner_pop_sponsor {
  transform: translateY(10%);
  background: white;
  width: 100%;
  margin: auto;
  filter: blur(20px);
  position: relative;
  max-width: calc(var(--max-width) + 5rem);
  padding: 3rem;
  border-radius: 1rem;
  opacity: 0;
  z-index: 3;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
  margin-top: 4rem;
}

.sponsor_pop_content {
  display: none;
}
.sponsor_pop_content.active {
  display: block;
}
.sponsor_pop_content .top {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.sponsor_pop_content .top .left {
  font-size: clamp(1.45rem, 2.35vw, 1.75rem);
  flex-shrink: 0;
}
.sponsor_pop_content .top .left h3 {
  color: #ebbe00;
  font-weight: 900;
}
.sponsor_pop_content .top .left h3.gold {
  color: #ebbe00;
  font-weight: 900;
}
.sponsor_pop_content .top .left h3.silver {
  color: #b5b5b5;
  font-weight: 900;
}
.sponsor_pop_content .top .left h3.bronze {
  color: #ac8917;
  font-weight: 900;
}
.sponsor_pop_content .top .right {
  flex: 1;
  border-left: 1px solid var(--body-color);
  margin-left: 2rem;
  padding-left: 2rem;
}
.sponsor_pop_content .top .right p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
}
.sponsor_pop_content .bottom {
  display: flex;
  justify-content: space-between;
}
.sponsor_pop_content .bottom .col_divider {
  width: 5%;
  position: relative;
}
.sponsor_pop_content .bottom .col_divider:after {
  height: 100%;
  width: 1px;
  background: #707070;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
}
.sponsor_pop_content .bottom .each_col {
  width: 30%;
}
.sponsor_pop_content .bottom .each_col:last-of-type {
  border-right: none;
}
.sponsor_pop_content .bottom .each_col .each_block {
  display: block;
  margin-bottom: 1.5rem;
}
.sponsor_pop_content .bottom .each_col .each_block:last-of-type {
  margin-bottom: 0;
}
.sponsor_pop_content .bottom .each_col .each_block h5 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--blue);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}
.sponsor_pop_content .bottom .each_col .each_block ul {
  padding-left: 1rem;
}
.sponsor_pop_content .bottom .each_col .each_block ul li {
  display: list-item;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  line-height: 1.4;
  list-style-image: url("../img/bullet.svg");
}
.sponsor_pop_content .bottom .each_col .each_block ul li:last-of-type {
  margin-bottom: 0;
}

.be_a_sponsor {
  /* background: var(--dark-blue); */
  background: url(../img/newdesign/reach_spon_bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 0 2rem;
}
.be_a_sponsor .be_a_sponsor_content {
  padding: 5rem 3rem;
  color: white;
}
.be_a_sponsor .be_a_sponsor_content strong {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  display: block;
  margin-bottom: 2rem;
}
.be_a_sponsor .be_a_sponsor_content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.be_a_sponsor .be_a_sponsor_content a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.be_a_sponsor .be_a_sponsor_content a:hover {
  text-decoration: none;
}

.overview_wrapper {
  position: relative;
  padding: 7rem 5rem;
  margin: 120px auto 1rem;
  text-align: center;
  color: #ffffff;
  z-index: 1;

  @media screen and (min-width: 1500px) {
    margin: 160px auto 1rem;
  }
}
/* Pseudo-element for blended radial background */
.overview_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: radial-gradient(
    circle,
    rgba(16, 50, 80, 0.65) 0%,
    rgba(16, 50, 80, 0.65) 40%,
    rgba(16, 50, 80, 0.35) 100%
  );
  mix-blend-mode: multiply;
  z-index: -1;
}
.overview_content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.overview_content .number {
  font-size: 50px;
  font-weight: 800;
}
.highlightblue {
  color: #05e4fe;
  font-weight: bold;
}

.bg-none {
  background: transparent !important;
}
.programme_mid {
  position: relative;
  background: white;
  background: hsla(182, 90%, 27%, 1);
  background: linear-gradient(
    360deg,
    hsla(182, 90%, 27%, 1) 0%,
    hsla(208, 68%, 19%, 1) 100%
  );
  /* background-image: url("../img/up_ele_tran.svg"), url("../img/up_ele_tran.svg");
  background-position: 90% 15%, 85% 102%;
  background-size: clamp(10rem, 14vw, 12rem) auto, clamp(14rem, 18vw, 16rem) auto;
  background-repeat: no-repeat; */
}
.programme_mid.__is_spons_page {
  padding: 6rem 2rem;
  /* background-image: url("../img/up_ele_blue_tran.svg"); */
  background-position: 0% 10%;
  background-size: clamp(14rem, 18vw, 16rem) auto;
  background-repeat: no-repeat;
  /* display: none; */
}
.programme_mid.__is_spons_page .container {
  padding: 0 2rem;
}
.programme_mid.__is_spons_page strong {
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
  color: #0f3250;
  text-align: left;
  display: block;
  margin-top: 3rem;
}
.programme_mid.__is_spons_page .sponsor_logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}
.programme_mid.__is_spons_page .sponsor_logos.space_bottom {
  margin-bottom: 4rem;
}
.programme_mid.__is_spons_page .sponsor_logos.gap {
  gap: 7rem;
}
.programme_mid.__is_spons_page .sponsor_logos a {
  margin: 3rem 0px;
  width: 33.33%;
  text-align: center;
  height: 100px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  display: flex;
}
.programme_mid.__is_spons_page .sponsor_logos a img {
  max-width: 100%;
  max-height: 100%;
}
.programme_mid .blue_curvey_ele {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: calc(100% - 1px);
  pointer-events: none;
  z-index: 0;
}
.programme_mid .programme_top {
  padding: 3rem;
  padding-top: 6rem;
}
.programme_mid .programme_top strong {
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: block;
}
.programme_mid .programme_top p {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  color: white;
  margin-bottom: 2.5rem;
  display: block;
}
.programme_mid .programme_top .flags {
  display: flex;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  padding-bottom: 3rem;
  margin-bottom: 0;
  border-bottom: 1px solid white;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}
.programme_mid .programme_top .flags .each_flag {
  width: calc(100% / 7);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  justify-content: center;
  text-align: center;
  align-content: center;
  flex-wrap: nowrap;
}
.programme_mid .programme_top .flags .each_flag:hover img {
  transform: translateY(-6px);
}
.programme_mid .programme_top .flags .each_flag img {
  margin-bottom: 1rem;
  border-radius: 10rem;
  width: clamp(5.5rem, 12vw, 6.65rem);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.programme_mid .programme_top .flags .each_flag span {
  display: inline-block;
  text-decoration: underline;
}
.programme_mid .programme_top .flags .each_flag small {
  margin-top: 0.35rem;
  opacity: 0.33;
}
.programme_mid .programme_mid_content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  padding-bottom: 5rem;
  color: white;
}
.programme_mid .programme_mid_content > p {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: 5rem;
}
.programme_mid .programme_mid_content > p span {
  display: block;
}
.programme_mid .programme_mid_content > p a {
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
}
.programme_mid .programme_mid_content > p a:hover {
  text-decoration: none;
}
.programme_mid .each_segment {
  margin-bottom: 5rem;
}
.programme_mid .each_segment:last-of-type {
  margin-bottom: 2rem;
}
.programme_mid .each_segment small {
  margin-top: 1rem;
  display: block;
}
.programme_mid .each_segment h6 {
  font-weight: 600;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.programme_mid .each_segment .des {
  position: relative;
}
.programme_mid .each_segment .des .fly_left_no {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translateX(-90%);
  width: clamp(4rem, 10vw, 8rem);
}
.programme_mid .each_segment .des strong {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--green);
  display: block;
  margin-bottom: 2rem;
}
.programme_mid .each_segment .des p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.programme_mid .each_segment .des p a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.programme_mid .each_segment .des p a:hover {
  text-decoration: none;
}
.programme_mid .each_segment .des p b {
  font-weight: 600;
}
.programme_mid .each_segment .drawers {
  margin: 2rem 0 1rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.programme_mid .each_segment .drawers .each_drawer {
  border-bottom: 1px solid white;
}
.programme_mid .each_segment .drawers .each_drawer:first-of-type {
  border-top: 1px solid white;
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head {
  padding: 0.7rem 0;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head:hover strong {
  text-decoration: none;
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head strong {
  text-decoration: underline;
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head.active strong {
  text-decoration: none;
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head.active svg {
  transform: rotate(180deg);
}
.programme_mid
  .each_segment
  .drawers
  .each_drawer
  .drawer_head.active
  svg
  path {
  fill: var(--green);
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head svg {
  height: auto;
  margin-left: auto;
  margin-right: 1rem;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.programme_mid .each_segment .drawers .each_drawer .drawer_head svg path {
  fill: var(--green);
}
.programme_mid .each_segment .drawers .each_drawer .drawer_content {
  display: none;
}
.programme_mid
  .each_segment
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content {
  padding: 0.7rem 0 1.25rem;
}
.programme_mid
  .each_segment
  .drawers
  .each_drawer
  .drawer_content
  .drawer_inner_content
  p {
  line-height: 1.6;
}

.india_speakers {
  background: var(--dark-blue);
  padding: 0 2rem;
  color: white;
}
.india_speakers .container {
  padding: 6rem 2rem;
}
.india_speakers h1 {
  text-transform: uppercase;
  line-height: 1.05;
  font-size: var(--fs-lg);
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.india_speakers h1 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
}
.india_speakers .speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(31rem, 50%), 1fr));
  gap: 4rem;
  margin-top: 6rem;
}
.india_speakers .speakers .each {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.india_speakers .speakers .each .image {
  flex-shrink: 0;
}
.india_speakers .speakers .each .text p {
  font-size: clamp(0.75rem, 2vw, 1.75rem);
  line-height: 1.3;
}
.india_speakers .speakers .each .text .name,
.india_speakers .speakers .each .text .name a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
}

.india_mentors {
  background: white;
  padding: 0 2rem;
  color: #00142e;
}
.india_mentors .container {
  padding: 6rem 2rem;
}
.india_mentors h1 {
  text-transform: uppercase;
  line-height: 1.05;
  font-size: var(--fs-lg);
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.india_mentors h1 small {
  height: 6px;
  max-width: 10rem;
  width: 100%;
  border-radius: 3rem;
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
}
.india_mentors .mentors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 30%), 1fr));
  gap: 4rem;
  margin-top: 6rem;
}
.india_mentors .mentors .each {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.india_mentors .mentors .each .image {
  flex-shrink: 0;
}
.india_mentors .mentors .each .text p {
  font-size: clamp(0.75rem, 2vw, 1.75rem);
  line-height: 1.3;
  text-align: center;
}
.india_mentors .mentors .each .text p:not(.name) {
  font-size: clamp(0.75rem, 2vw, 1.3rem);
}
.india_mentors .mentors .each .text .name,
.india_mentors .mentors .each .text .name a {
  color: #00142e;
  font-weight: 800;
  text-decoration: underline;
}

.country_round_sponsor {
  border-radius: 1rem;
  background: white;
  padding: 3rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  display: flex;
  margin: 5rem 0 7rem;
  position: relative;
}
.country_round_sponsor .left {
  width: 35%;
  flex-shrink: 0;
}
.country_round_sponsor .right {
  flex: 1;
  padding-left: 4rem;
}
.country_round_sponsor .right ul li {
  display: list-item;
  list-style-position: outside;
  padding: 0.65rem 0;
  list-style-image: url("../img/bullet.svg");
}
.country_round_sponsor h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--blue);
}
.country_round_sponsor strong {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--body-color);
}
.country_round_sponsor p {
  font-size: clamp(1.15rem, 1.5vw, 1.15rem);
  font-weight: 600;
}

.event_theme_mid {
  position: relative;
}
.event_theme_mid p {
  width: 89.5%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: 0;
}
.event_theme_mid p b {
  font-weight: 600;
  color: var(--green);
}
.event_theme_mid .event_theme_curvey_ele {
  position: absolute;
  width: 100%;
  height: auto;
  pointer-events: none;
  left: 0;
  bottom: calc(100% - 1px);
}

.interested {
  background: #fafafa;
  padding: 0 2rem;
}
.interested .short_des {
  width: 60%;
  padding: 5rem 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.interested .short_des p {
  text-align: center;
  display: block;
  font-weight: 600;
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  margin-bottom: 2rem;
}
.interested .short_des p span {
  display: block;
}

.why_participate {
  /* background: url(../img/about_bottom_bg.jpg) left bottom no-repeat #0150AF; */
  background: url(../img/newdesign/about_bottom_bg.svg);
  background-size: cover;
  position: relative;
  color: white;
  padding: 360px 2rem 6rem;
  margin-top: -120px;
}
/* .why_participate:after {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  content: '';
  width: 100%;
  height: 40rem;
  background: linear-gradient(to bottom, #1E8FB4, #0350AE00);
} */
.why_participate .container {
  position: relative;
  z-index: 2;
}
.why_participate .floating_puzzle {
  position: absolute;
  right: -12rem;
  top: -12rem;
  z-index: 5;
  width: clamp(17rem, 32vw, 35rem);
}
.why_participate .title {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}
.why_participate .title strong {
  font-size: clamp(2.7rem, 5vw, 4rem);
  font-weight: 500;
}
.why_participate .title h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  position: relative;
}
.why_participate .title p {
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.why_participate .icon_bottom {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  justify-content: space-around;
}
.why_participate .icon_bottom > small {
  text-align: center;
}
.why_participate .icon_bottom .each_icon_bottom {
  width: 47%;
  padding: 3rem 1.5rem;
  background: white;
  color: var(--body-color);
  flex-direction: column;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.why_participate .icon_bottom .each_icon_bottom img {
  margin-bottom: 1.5rem;
  align-self: center;
  height: 65px;
}
.why_participate .icon_bottom .each_icon_bottom p {
  display: block;
  text-align: center;
}
.why_participate .icon_bottom .each_icon_bottom p small {
  display: block;
  margin-top: 0.5em;
}
.why_participate .icon_bottom .each_icon_bottom p small.absolute {
  width: 100%;
  position: absolute;
  text-align: center;
  left: 0;
  bottom: 0;
  padding: 1rem;
}
.each_icon {
  text-align: center;
}
.each_icon img {
  max-width: 80px;
  max-height: 80px;
  margin: 0 auto;
}
.each_icon h2 {
  font-size: clamp(2rem, 4.25vw, 3rem);
  color: #00beaf;
  font-weight: 700;
  margin: 10px auto;
}
.each_icon p {
  margin: 10px auto;
  max-width: 150px;
}
.why_participate .gradient_curve_ele {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
.colum-boxparticipate {
  text-align: center;
}
.colum-boxparticipate h3 {
  color: #00beaf;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  padding: 0.7rem 0;
}
.organisers_mission {
  background: #fafafa;
  padding: 3rem 2rem;
}
.organisers_mission .container {
  padding: 2rem 0 5rem;
}
.organisers_mission h1 {
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  position: relative;
  display: block;
}
.organisers_mission h1:after {
  height: 6px;
  width: 10rem;
  border-radius: 3rem;
  content: "";
  background: linear-gradient(to right, #1fb9be, #0448a7);
  position: absolute;
  left: 0;
  top: 100%;
}
.organisers_mission .mission_items {
  display: flex;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  padding: 5rem 0 2rem;
}
.organisers_mission .mission_items .each_mission_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23%;
  margin: 0 1%;
}
.organisers_mission .mission_items .each_mission_item img {
  height: clamp(6rem, 8.5vw, 8rem);
}
.organisers_mission .mission_items .each_mission_item h2 {
  font-size: clamp(3rem, 3.5vw, 3.5rem);
  color: var(--green);
  padding: 1rem 0;
}
.organisers_mission .mission_items .each_mission_item span {
  text-align: center;
}

body.student_reg {
  background: url("../img/student_bg.jpg") center top no-repeat #02234c;
  background-size: 100% auto;
}
.student_reg .hero_text img {
  margin-inline: auto;
}
.student_form {
  background-color: white;
  padding: 5rem;
  font-size: clamp(1rem, 1.5vw, 1.625rem);
}
.student_form a {
  text-decoration: underline;
}
.student_form form {
  font-size: clamp(1rem, 1.2vw, 1.375rem);
  font-weight: 500;
  color: body-color;
  margin-top: 4rem;
}
.student_form form h2 {
  font-size: clamp(1rem, 1.5vw, 1.625rem);
  font-weight: 600;
  color: #bcbcbc;
  margin-bottom: 4rem;
}
.student_form form a,
.student_form a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}
.student_form form .error {
  font-size: clamp(0.85rem, 1.2vw, 1.2rem);
  margin-top: 0.5rem;
  display: none;
}
.student_form .divider {
  border: 0;
  border-top: 1px solid #bcbcbc;
  opacity: 0.5;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.student_form .field {
  display: flex;
  margin-bottom: 3rem;
  column-gap: 3rem;
}
.student_form .field + p {
  margin-bottom: 3rem;
}
.student_form .field .left {
  width: 42%;
}
.student_form .field .right {
  width: 58%;
}
.student_form .field .right.two_cols {
  display: flex;
  gap: 1rem;
}
.student_form .field .right.two_cols > * {
  flex: 1;
}
.student_form .field .right .option_container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 3rem;
}
.student_form .field .right .option_container .option {
  display: flex;
  align-items: center;
  /* width: 23%; */
  flex-shrink: 0;
}
.student_form .field .right .option_container .option label {
  margin: 0;
}
.student_form .field .indicate {
  margin-top: 1rem;
}
.student_form .field .form_note {
  font-size: clamp(0.875rem, 1.1vw, 1.25rem);
  margin-top: 0.5rem;
}
.student_form .field input,
.student_form .field select {
  width: 100%;
  border: 0;
  border: 1px solid #7e7e7e;
  border-radius: 3px;
  background-color: white;
  padding: 0.5rem 1.2rem;
}
.student_form .field select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17.647" height="15" viewBox="0 0 17.647 15"><path id="Polygon_1" data-name="Polygon 1" d="M8.824,0l8.824,15H0Z" transform="translate(17.647 15) rotate(180)"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}
.student_form .field input[type="radio"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 4px solid #ffffff;
  outline: 1px solid #707070;
  margin-right: 1rem;
  padding: 0;
}
.student_form .field input:checked[type="radio"] {
  background-color: #707070;
  border: 5px solid #ffffff;
}
.student_form .field input[type="radio"]:focus {
  outline: 2px solid #707070;
}
.student_form .field.upload input {
  border: 0;
  padding: 0;
}
.student_form .field.upload .file {
  display: flex;
  align-items: center;
}
.student_form .field.upload .file input {
  display: none;
}
.student_form .field.upload .file .file_name {
  width: 40%;
  overflow: hidden;
}
.student_form .field.upload .file .file_name {
  border: 1px solid #7e7e7e;
  border-radius: 3px;
  background-color: white;
  padding: 0.5rem 1.2rem;
  margin-right: 1rem;
}
.student_form .field.upload .file .file_choose {
  border: 1px solid #7e7e7e;
  border-radius: 3px;
  background: linear-gradient(180deg, #ffffff, #f0f0f0);
  padding: 0.5rem 3rem;
  cursor: pointer;
}
.student_form .field.upload .file .file_choose:active {
  scale: 0.98;
}
.student_form .pdpa,
.student_form .liability {
  margin-top: 5rem;
}
.student_form .tnc_container,
.student_form .pdpa_container {
  height: 450px;
  overflow-y: scroll;
  padding: 2rem 5rem;
  background-color: #ffffff;
  border: 1px solid #a7a8aa;
}
.student_form ol,
.student_form li {
  list-style: decimal;
}
.student_form li {
  margin-bottom: 2rem;
  padding-left: 1rem;
}
.student_form .field_check {
  display: flex;
  font-weight: 700;
  margin-top: 3rem;
}
.student_form .field_check input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}
.student_form .submit {
  margin-top: 4rem;
  margin-inline: auto;
  display: block;
  padding: 0.8rem 3.5rem;
  border: 0;
  border-radius: 10px;
  background-color: var(--blue);
  color: white;
  font-weight: 600;
}

.student_reg #size_chart {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  width: 70%;
  max-width: 930px;
  transform: translate(-50%, -50%);
  background-color: white;
  color: var(--awsgrey);
  border: 2px solid body-color;
  border-radius: 10px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  scale: 0.2;
  transition: all 200ms ease-in;
}
.student_reg #size_chart > * {
  margin-bottom: 2rem;
}
.student_reg #size_chart .close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.chart_visible {
  scale: 1 !important;
  opacity: 1 !important;
  z-index: 100 !important;
}
.clr_red {
  color: #ff0000;
}
.main_swiper {
  background-color: #fff;
  padding: 40px;
}
.registration_swiper {
  padding: 20rem 2rem;
  position: relative;
  background: url(../img/newdesign/group-member.jpg) left top no-repeat #0f3250;
  background-size: cover;
}
.registration_swiper .swiper-row {
  display: flex;
  width: 100%;
}
.registration_swiper .swiper-slide .swiper-left {
  /* width: 55%; */
  border-right: 1px solid #707070;
}
.registration_swiper .swiper-slide .swiper-right {
  /* width: 45%; */
  padding: 0 15px;
}
.registration_swiper h1 {
  font-size: 36px;
  text-transform: uppercase;
}
.swiper-right .block-left {
  /* width: 50%; */
  float: left;
  text-align: center;
}
.swiper-right .block-left img {
  margin: 0 auto;
  display: block;
  margin-top: 43px;
  height: 74px;
}
.swiper-left h1 {
  font-size: clamp(2rem, 4.25vw, 3.55rem);
  color: #0f3250;
  margin-bottom: 20px;
}
.swiper-left p {
  margin-bottom: 20px;
}
.blue_btn_border {
  display: inline-block;
  border: 2px solid #0a78dc;
  transition: all 0.15s;
  color: #0a78dc;
  font-size: var(--fs-m);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.blue_btn_border:hover {
  background-color: #0a78dc;
  color: #fff;
}
.swiper-right h1 {
  font-size: clamp(2rem, 4.25vw, 3.55rem);
  color: #00beaf;
  margin: 10px auto;
}
.swiper-left p {
  margin-bottom: 20px;
}
div .pb-6 {
  padding: 50px 70px;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -5px !important;
}
div .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 13px;
  background: #00beaf;
}
.swiper-button-next.swiper-button-disabled img,
.swiper-button-prev.swiper-button-disabled img {
  filter: grayscale(1);
}
.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.country-section {
  padding: 120px 0px;
  text-align: center;
}
.country-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #0148a7;
  text-transform: uppercase;
}
.country-section h3 {
  font-size: 30px;
  font-weight: 500;
  color: #00beaf;
}
.country-section p {
  font-size: 20px;
  margin-bottom: 60px;
}
.country-section .col-lg-2 {
  flex: 0 0 auto;
}
.country-box {
  min-height: 130px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 0 0 !important;
  transition: 0.2s ease-in-out;
}
.country-box img {
  object-position: center;
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.2s ease-in-out;
}
.box-upside {
  padding: 15px;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 130px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.box-upside h1 {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.country-box:hover img {
  transform: scale(1.1) rotate(2deg);
  transition: 0.3s ease-in-out;
}
.welcome-section {
  padding: 8rem 2rem 20rem;
  background: url(../img/newdesign/welcome-bg.jpg);
  background-size: cover;
  color: #fff;
  text-align: center;
}
.welcome-section h1 {
  font-size: 10vw;
  font-weight: 300;
  font-family: "Better Grade";
  line-height: 80px;
  margin-bottom: 70px;
  margin-top: 90px;
  max-width: 640px;
  text-shadow: 0 7px 10px rgb(0 0 0 / 35%);
}
.welcome-section h1 span {
  text-transform: uppercase;
  padding-left: 220px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-size: 5.2vw;
}

.welcome-section p {
  text-shadow: 0 7px 10px rgb(0 0 0 / 35%);
  font-size: 18px;
}
.sm-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}
.md-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}
.organisers-section {
  text-align: center;
  padding: 60px 0;
  background-color: #f7f7f7;
}
.organisers-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #0148a7;
  text-transform: uppercase;
  margin: 20px auto;
}
.organisers-section h2 {
  font-size: 36px;
  font-weight: 500;
  color: #414141;
  text-transform: uppercase;
}
.organisers-section h3 {
  font-size: 52px;
  font-weight: 800;
  color: #00beaf;
  text-transform: uppercase;
  margin: 15px auto 5px;
}
.organisers-section img {
  max-width: 220px;
  margin: 0 auto;
}
.organisers-section p {
  line-height: 2;
  font-size: 18px;
}
.our-resolute.border-top {
  border-top: 2px solid #c1c1c1 !important;
}
.our-impact img {
  max-height: 80px;
}
div .our-resolute img {
  max-height: 140px;
  max-width: inherit;
}
section.about-white {
  padding: 40px;
}
div .border-top {
  border-color: #707070;
}

.on_white .reg_btn.to_green_btn_border {
  border-color: #0048a7;
  color: #0048a7 !important;
}
.Zebra_Pin.on_white .reg_btn.to_green_btn_border {
  color: #fff !important;
}

.aciyls {
  background: url(../img/newdesign/group-member.jpg);
  min-height: 100vh;
  background-size: cover;
}
.aciyls-video {
  background: rgba(0, 0, 0, 0.7);
  min-height: calc(100vh - 52px);
  align-content: center;
  justify-content: center;
}

.flagboxrg {
  width: 52px;
  height: 52px;
  display: inline-block;
  transform: translate(0px, 5px);
  border-radius: 72px;
  box-shadow: 0 1rem 1rem rgb(0 0 0 / 40%);
}
.to_blue_btn_border {
  border: 2px solid #0148a7;
  color: var(--l-blue);
  transition: all 0.15s;
  color: #0148a7 !important;
  font-size: var(--fs-m);
  padding: 0.65rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.to_blue_btn_border:hover {
  border: 2px solid #0148a7;
  background-color: #0148a7;
  color: #fff !important;
}
.thanksbox_text {
  text-align: center;
  max-width: 600px;
  font-weight: 400;
  margin: 0 auto;
}
.country_bg {
  background-size: cover !important;
  padding-top: 9rem;
  background-position: center !important;
}
.brunei_bg {
  background: url(../img/newdesign/brunei_bg.jpg);
}
.cambodia_bg {
  background: url(../img/newdesign/cambodia_bg.jpg);
}
.china_bg {
  background: url(../img/newdesign/china_bg.jpg);
}
.india_bg {
  background: url(../img/newdesign/india_bg.jpg);
}
.indonesia_bg {
  background: url(../img/newdesign/indonesia_bg.jpg);
}
.laos_bg {
  background: url(../img/newdesign/laos_bg.jpg);
}
.malaysia_bg {
  background: url(../img/newdesign/malaysia_bg.jpg);
}
.myanmar_bg {
  background: url(../img/newdesign/myanmar_bg.jpg);
}
.philippines_bg {
  background: url(../img/newdesign/philippines_bg.jpg);
}
.singapore_bg {
  background: url(../img/newdesign/singapore_bg.jpg);
}
.thailand_bg {
  background: url(../img/newdesign/thailand_bg.jpg);
}
.vietnam_bg {
  background: url(../img/newdesign/vietnam_bg.jpg);
}
.other_countries_bg {
  background: url(../img/newdesign/other_countries_bg.jpg);
}

.green-text {
  color: var(--green);
  font-weight: 600;
}

.prog_gradientbg.prob_statements {
  background: hsla(182, 90%, 27%, 1);
  background: linear-gradient(
    360deg,
    hsla(182, 90%, 27%, 1) 0%,
    hsla(208, 68%, 19%, 1) 100%
  );
}
.prog_gradientbg h3 {
  color: #00beaf;
  font-weight: 700;
}
.prog_gradientbg h4 {
  color: #fff;
  font-weight: 600;
}
.prog_gradientbg p {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.white_border_btn {
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.15s;
  color: #fff;
  font-size: var(--fs-m);
  padding: 0.65rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.white_border_btn:hover {
  color: #414141;
  background-color: #fff;
}
.blueheading {
  font-weight: 800;
  color: var(--blue);
}
p.dark-text {
  color: #595959;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.grey-h4 {
  color: #414141;
  font-weight: 600;
  font-size: calc(1.275rem + 0.3vw);
}
.blue-text {
  color: #0a78dc;
}
.pl-40 {
  padding-left: 40px;
}

.page_nav.on_white nav > ul.id-clear > li > a {
  text-align: center;
  font-size: 12px;
  padding: 3px 10px;
  max-width: 140px;
  border: 1px solid #595959;
  border-radius: 10px;
  height: 38px;
  line-height: normal;
  justify-content: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.prog_gradientbg p a.linkblue {
  color: #00beaf;
  text-decoration: underline;
}

@media (min-width: 1400px) {
  div.container,
  div.container-lg,
  div.container-md,
  div.container-sm,
  div.container-xl,
  div.container-xxl {
    max-width: 1350px;
  }
  .country-section .col-lg-2 {
    width: 20%;
  }
}
@media (max-width: 1680px) {
  :root {
    --max-width: 1100px;
  }

  .logos .sponsor .logos_container {
    justify-content: flex-start;
    gap: 5rem;
  }
  .logos .logos_container .each {
    margin-bottom: 1rem;
  }

  .journey > .container {
    padding-top: 0;
    padding-bottom: 10rem;
  }
  .journey .text_container:nth-of-type(1) {
    width: 75%;
  }
  .journey .text_container:nth-of-type(2) {
    width: 70%;
  }
  .journey .text_container:nth-of-type(3) {
    width: 60%;
  }
  .journey .text_container:nth-of-type(4) {
    width: 40%;
  }
  .journey .text_container:nth-of-type(1) p {
    width: 75%;
  }

  .prizes .prize_block_container .prize_block img {
    height: 80px;
  }

  .challenge {
    background-position: -60% bottom;
  }

  .highlights .highlight_block_container .highlight_block img {
    height: 80px;
  }
}
@media (max-width: 1520px) {
  .challenge {
    background-position: -15rem bottom;
  }

  .why_participate .floating_puzzle {
    right: 1rem;
  }
}
@media (max-width: 1440px) {
  :root {
    --max-width: 1100px;
  }

  .challenge {
    background-position: -12rem bottom;
  }

  .logos .organisation .logos_container .group {
    flex-wrap: wrap;
  }
  .logos .organisation .logos_container .group_2 {
    gap: 15rem;
  }
  .logos .logos_container .each.long {
    height: auto;
  }
  .logos .logos_container .each.long > div {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }

  .logos .logos_container {
    justify-content: center !important;
    gap: 4rem;
  }
  .logos .organisation .logos_container .group_2 {
    justify-content: center;
  }
  .logos .logos_container .each {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .logos .logos_container .each > div {
    gap: 4rem;
  }

  .programme_mid .programme_top {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .programme_mid {
    background-position: 95% 15%, 85% 105%;
    background-size: clamp(8rem, 12vw, 10rem) auto,
      clamp(12rem, 16vw, 14rem) auto;
  }
  .programme_mid .programme_mid_content {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  nav ul.sub-menu {
    width: 280px;
  }

  .journey {
    padding-top: 10rem;
  }

  .main_swiper .swiper-slide .right .slide_right_content {
    padding: 0 1rem;
  }

  nav .menu > li {
    margin: 0 0.35rem;
  }

  .student_form .tnc_container,
  .student_form .pdpa_container {
    height: 250px;
  }
}
.mobile_nav {
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-100%);
  max-width: 420px;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  background: white;
  z-index: 9999;
  height: 100%;
}
.mobile_nav .menu_content {
  display: none;
}

.mobile_nav_overlay {
  background: #00295ca6;
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 11;
  left: 0;
  top: 0;
  backdrop-filter: blur(8px);
}

@media (max-width: 1024px) {
  html {
    font-size: 13.5px;
  }

  .sg .sg_inner_des {
    margin-top: -2.5rem;
  }
  .sg .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .interested .short_des p span {
    display: inline-block;
  }
  .interested .short_des p span:last-of-type {
    margin-left: 0.5rem;
  }

  .sg strong {
    font-size: clamp(8rem, 14vw, 12rem);
  }
  .sg .sg_inner_des h1 {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .challenge .right h1 {
    font-size: clamp(3rem, 8vw, 4rem);
  }
  .challenge .right h3 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .page_nav .container {
    padding: 1rem 0;
  }

  .pin-me.active .mobile_menu svg path {
    fill: var(--blue);
  }
  .page_nav.on_white nav > ul.id-clear > li > a {
    text-align: center;
    font-size: 10px;
    padding: 2px 5px;
    max-width: 140px;
    height: 34px;
  }
}
@media (max-width: 960px) {
  .logos .logos_container .each {
    align-items: center;
  }
  .logos .logos_container .each .more_gap {
    gap: 5rem;
  }
  .logos .organisation .logos_container .group_1,
  .logos .organisation .logos_container .group_2 {
    justify-content: center;
    gap: 5rem;
  }

  .summit .block.left,
  .summit .block.right {
    flex-direction: column;
  }
  .summit .block .text {
    width: 100%;
  }
  .summit .block.right .text {
    text-align: left;
  }
  .summit .forum_btn {
    margin-left: 0;
    margin-right: auto;
  }

  .sponsor_mid .sponsor_mid_content .packages .each_package {
    padding: 3rem 4rem;
  }

  .programme_mid .programme_top .flags .each_flag {
    width: calc(100% / 4);
  }

  .student_form .field .right .option_container .option {
    display: flex;
    align-items: center;
    /* width: 47%; */
    flex-shrink: 0;
  }
}
@media (max-width: 992px) {
  .page_nav .mobile_menu {
    display: block;
  }

  .uniting .block.left,
  .uniting .block.right {
    flex-direction: column;
  }
  .uniting .block .text {
    width: 100%;
  }
  .uniting .block.right .text {
    text-align: left;
  }

  .highlights {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .highlights .highlight_block_container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .highlights .highlight_block_container .highlight_block {
    width: 47%;
  }
  .highlights .highlight_block_container .highlight_block .big {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  .highlights .highlight_block_container .highlight_block img {
    height: 80px;
  }

  .prob_statements .prob_statements_block {
    padding: 2.5rem;
  }
  .prob_statements .prob_statements_block > div:nth-child(1) {
    margin-bottom: 2.5rem;
  }

  .startathon_rules .container,
  .contact_mid.__is_spons_page .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .startathon_rules .startathon_rules_block {
    padding: 2.5rem;
  }
  .startathon_rules .startathon_rules_block h2 {
    margin-bottom: 1.5rem;
  }
  .startathon_rules .startathon_rules_block p {
    margin-bottom: 2.5rem;
  }

  .programme_mid.__is_spons_page {
    padding: 3rem 2rem;
  }
  .programme_mid.__is_spons_page strong {
    margin-bottom: 1rem;
  }
  .programme_mid.__is_spons_page .sponsor_logos a {
    width: 28%;
  }

  .programme_learn_more .learn_more_content {
    padding: 3rem;
  }

  .programme_mid .each_segment .drawers .each_drawer .drawer_head svg,
  .sponsor_mid .sponsor_mid_content .drawers .each_drawer .drawer_head svg {
    width: 2rem;
  }

  .organisers_mission .container {
    padding-bottom: 0;
  }
  .organisers_mission .mission_items {
    padding-top: 2rem;
    width: 100%;
    flex-wrap: wrap;
  }
  .organisers_mission .mission_items .each_mission_item {
    width: 48%;
    padding: 3rem;
    background: white;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    border-radius: 1rem;
  }

  .organisers_bottom {
    padding-bottom: 8rem;
  }

  .organisers_top .osg {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .why_participate .icon_bottom {
    width: 90%;
  }

  .why_participate .title {
    width: 80%;
  }

  .interested .short_des {
    width: 90%;
    padding: 3rem 0;
  }

  .page_nav .container .logo img,
  .page_nav .container .logo .hide_this {
    width: 230px;
  }

  .mobile_nav {
    display: flex;
    flex-direction: column;
    transition: all 0.15s;
    overflow: auto;
  }
  .mobile_nav small {
    display: flex;
    color: rgba(0, 0, 0, 0.25);
    padding-left: 3rem;
    align-items: center;
  }
  .mobile_nav .close_mobile_nav {
    padding: 2rem;
    cursor: pointer;
    display: inline-block;
    margin-left: auto;
    transition: all 0.15s;
  }
  .mobile_nav .close_mobile_nav:hover {
    opacity: 0.5;
  }
  .mobile_nav .close_mobile_nav img {
    width: 1.5rem;
  }
  .mobile_nav.called {
    display: flex;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .mobile_nav .footer_menu {
    margin-top: auto;
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
    background: #fafafa;
  }
  .mobile_nav .footer_menu .social {
    display: flex;
  }
  .mobile_nav .footer_menu .social a {
    margin-right: 1.5rem;
  }
  .mobile_nav .footer_menu .social a img {
    width: 2rem;
  }
  .mobile_nav .footer_menu .social a:last-of-type {
    margin-right: 0;
  }
  .mobile_nav .footer_menu > a {
    display: inline-block;
    color: var(--blue);
    margin-left: auto;
  }
  .mobile_nav .inner_mobile_nav {
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .mobile_nav .inner_mobile_nav .each_block {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .mobile_nav .inner_mobile_nav .each_block strong {
    font-weight: 800;
    font-size: clamp(1.45rem, 2.75vw, 2.35rem);
    color: #414141;
    padding: 0.5rem 0;
    display: block;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
  }
  .mobile_nav .inner_mobile_nav .each_block strong:hover {
    opacity: 0.75;
  }
  .mobile_nav .inner_mobile_nav .each_block strong.active {
    color: var(--blue);
    opacity: 1 !important;
  }
  .mobile_nav .inner_mobile_nav .each_block ul {
    position: relative;
    padding-left: 2rem;
  }
  .mobile_nav .inner_mobile_nav .each_block ul:after {
    height: calc(100% - 1rem);
    position: absolute;
    width: 1px;
    left: 0;
    top: 0.75rem;
    content: "";
    background: #e0e0e0;
  }
  .mobile_nav .inner_mobile_nav .each_block ul li {
    padding: 0.75rem 0;
  }
  .mobile_nav .inner_mobile_nav .each_block a {
    color: #414141;
    font-size: clamp(1.35rem, 2.5vw, 1.5rem);
    width: 100%;
    display: block;
    font-weight: 600;
  }
  .mobile_nav .inner_mobile_nav .each_block a.active {
    font-weight: 800;
    cursor: default;
  }
  .mobile_nav .inner_mobile_nav .each_block a.coming_soon {
    opacity: 0.5;
    cursor: default;
  }

  nav {
    display: none;
  }

  .overview_wrapper {
    padding: 7rem 5rem 3rem;
  }
}
@media (max-width: 820px) and (orientation: portrait) {
  body.journey_pg {
    background: linear-gradient(to bottom, white, #ebebeb);
  }
  body.forum {
    background: url("../img/forum_hero_bg_mb.jpg");
    background-size: 100% auto;
  }
  body.sponsor {
    background: url("../img/sponsor_hero_bg_mb.jpg");
    background-size: 100% auto;
  }
  body.student_reg {
    background-image: url("../img/student_bg_mb.jpg");
  }

  .organisers_top {
    background-image: url("../img/organiser_top_mobile.jpg");
    background-size: cover;
  }

  .organisers_bottom {
    background-image: url("../img/organiser_bottom_mobile.jpg");
    background-size: cover;
  }

  .main_hero {
    width: 100%;
  }

  .asia {
    padding-right: 5rem;
    padding-left: 5rem;
  }
  .asia .container {
    flex-direction: column;
    align-items: center;
  }
  .asia .left,
  .asia .right {
    width: 100%;
  }
  .asia .left {
    margin-bottom: 1.5rem;
  }

  .country_carousel {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .summit > div {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .summit h2 {
    width: 100%;
  }

  .prizes {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .prizes .prize_block_container {
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .prizes .prize_block_container .prize_block img {
    height: 80px;
  }

  .challenge .left {
    order: 2;
    /* width: 55%; */
    padding-top: 0;
    margin-top: 0rem;
    align-self: flex-end;
    padding-bottom: 1rem;
  }
  .challenge .right {
    order: 1;
    width: 100%;
    padding-left: 0;
  }
  .challenge .container {
    padding-top: 0;
    flex-direction: column;
  }

  .uniting > div {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .uniting h2 {
    width: 100%;
  }

  .logos {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .logos h2 {
    margin-bottom: 6rem;
  }
  .logos .logos_container .each > p {
    margin-bottom: 2.5rem;
  }

  .forum .discover {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .discover h2 {
    width: 100%;
  }
  .discover .discover_block_each {
    width: 100%;
  }
  .discover .discover_un_each .head img {
    max-width: 70px;
    height: 45px;
  }

  .sponsor_meaning {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .sponsor_meaning h2,
  .sponsor_meaning h2 + p {
    width: 100%;
  }
  .sponsor_meaning .sponsor_meaning_block {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5rem;
  }

  .sponsor_opp {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .sponsor_opp h2 {
    width: 100%;
  }

  .forum_registration .form_container {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .forum_registration .submit_btn {
    margin-left: auto;
    margin-right: auto;
  }

  .main_swiper .swiper_wrap {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .main_swiper .swiper .swiper-pagination {
    bottom: 2rem;
  }

  .main_swiper .swiper-slide {
    flex-direction: column;
  }
  .main_swiper .swiper-slide .left {
    width: 100%;
    margin-right: 0;
    padding: 3rem 5rem 5rem;
    order: 2;
  }
  .main_swiper .swiper-slide .right {
    width: 100%;
    padding: 4rem 5rem;
    order: 1;
  }
  .main_swiper .swiper-slide .right:after {
    top: auto;
    bottom: 0;
    left: -100%;
  }
  .main_swiper .swiper-slide .right .slide_right_content {
    width: 100%;
    padding: 0;
  }
  .main_swiper .swiper-slide .right .slide_right_content .each_content h2 {
    font-size: clamp(3rem, 4.5vw, 4rem);
  }

  .sg .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .sg img {
    opacity: 1;
    content: url("../img/sg_bg_mobile.jpg");
  }
}
@media (max-width: 768px) {
  .faq_mid {
    padding: 0;
  }

  .extra_des {
    margin-top: 1rem;
  }
  .extra_des .container p {
    width: 100%;
  }

  .highlights .highlight_block_container .highlight_block > div {
    margin-bottom: 3rem;
  }

  .logos .logos_container .each > div {
    flex-direction: column;
    gap: 2rem !important;
  }
  .logos .sponsor .logos_container .group {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .programme_mid .programme_top {
    padding-bottom: 1rem;
  }
  .programme_mid .programme_top .flags {
    padding-bottom: 2rem;
    justify-content: space-between;
  }
  .programme_mid .programme_top .flags .each_flag {
    padding: 1rem 0rem;
    width: 28%;
  }

  .programme_mid .programme_top strong {
    margin-bottom: 1.75rem;
  }

  .journey {
    margin-bottom: 0;
  }

  .sponsor_mid .sponsor_mid_content > p {
    margin-bottom: 1rem;
  }

  .sponsor_mid {
    background-position: 95% 45%;
  }

  .sponsor_mid .sponsor_mid_content .sponsor_icons.sponsor_02 {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .sponsor_mid
    .sponsor_mid_content
    .sponsor_icons.sponsor_02
    .each_sponsor_icon {
    width: 46%;
    padding-bottom: 4rem;
  }

  .sponsor_mid .sponsor_mid_content .sponsor_icons {
    padding: 0;
  }

  .programme_mid .each_segment {
    margin-bottom: 3rem;
  }
  .programme_mid .each_segment:last-of-type {
    margin-bottom: 0;
  }

  .programme_mid .each_segment h6 {
    margin-bottom: 1.5rem;
  }

  .main_swiper .swiper-slide .slide_btn,
  .blue_btn,
  .page_nav a.reg_btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .why_participate .icon_bottom,
  .interested .short_des {
    width: 100%;
  }

  .student_form form h2 {
    margin-bottom: 2.5rem;
  }
  .student_form .field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .student_form .field .right,
  .student_form .field .left {
    width: 100%;
  }
  .overview_wrapper {
    padding: 2rem 2rem 0;
    margin: 2rem auto 1rem;
  }
  .overview_content .number {
    font-size: 35px;
  }
  .registration_swiper .swiper-slide .swiper-left {
    border-right: none;
  }
  .challenge .left img {
    position: relative;
    max-width: 100%;
    margin-top: 0;
    transform: none;
  }
  .challenge {
    padding-bottom: 7rem;
  }
  .welcome-section h1 span {
    padding-left: 50px;
  }
  div .pb-6 {
    padding: 50px 10px;
  }
  .registration_swiper {
    padding: 20rem 1rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    background: #0f3250;
    height: 30px;
  }
  .swiper-button-next img,
  .swiper-button-prev img {
    width: 8px;
  }
  .swiper-left {
    text-align: center;
  }
  .to_blue_btn_border {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 12.5px;
  }

  .logos .organisation .logos_container .group_2 {
    flex-direction: column;
    gap: 4rem;
  }

  .discover .discover_un {
    flex-direction: column;
  }
  .discover .discover_un_each {
    width: 100%;
    margin-bottom: 1rem;
  }

  .prob_statements .prob_statements_block {
    padding: 2rem;
  }

  .startathon_rules .startathon_rules_block {
    padding: 2rem;
  }

  .startathon_rules .startathon_rules_block .startathon_rules_block_inner {
    width: 100%;
  }

  .programme_mid.__is_spons_page,
  .startathon_rules {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .programme_mid.__is_spons_page .container,
  .contact_mid.__is_spons_page .contact_mid_content {
    padding: 0 1rem;
  }

  .startathon_rules .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .programme_mid.__is_spons_page .sponsor_logos a {
    width: 33.33%;
  }
  .programme_mid.__is_spons_page .sponsor_logos.gap {
    gap: 3rem;
  }

  .why_participate .title {
    padding-top: 0;
  }

  .faq_mid .sponsor_mid_content {
    padding: 2rem;
  }

  .mobile_nav .close_mobile_nav {
    padding: 1.5rem;
  }

  .pop_sponsor .inner_pop_sponsor {
    padding: 2rem;
  }

  .organisers_mission h1:after,
  .main_hero .hero_text h1 small,
  .main_swiper .swiper-slide h1:after,
  .challenge .right h1:after,
  .why_participate .title h1:after,
  .sponsor_mid .sponsor_mid_content .title h1:after {
    height: 4px;
  }

  .sponsor_mid .sponsor_mid_content .packages {
    margin-bottom: 3rem;
  }

  .sponsor_pop_content .top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--body-color);
    padding-bottom: 1.5rem;
  }
  .sponsor_pop_content .top .right {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .sponsor_pop_content .top .left {
    margin-bottom: 1rem;
  }
  .sponsor_pop_content .bottom {
    flex-direction: column;
  }
  .sponsor_pop_content .bottom .each_col {
    width: 100%;
    border: none;
    margin-bottom: 1.5rem;
  }

  .be_a_sponsor .be_a_sponsor_content {
    padding: 3rem 1rem;
  }
  .be_a_sponsor .be_a_sponsor_content strong {
    margin-bottom: 1rem;
  }

  .sponsor_mid .sponsor_mid_content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sponsor_mid .sponsor_mid_content .packages .each_package {
    padding: 3rem;
  }

  .contact_mid .contact_mid_content .contact_segment_row:last-of-type {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact_mid.__is_spons_page
    .contact_mid_content
    .contact_segment_row:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .contact_mid .contact_mid_content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .programme_mid .programme_top {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .programme_mid .programme_mid_content {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .why_participate {
    padding-bottom: 3rem;
  }
  .why_participate .floating_puzzle {
    right: 0;
  }
  .why_participate .title {
    padding-bottom: 2rem;
  }
  .why_participate .icon_bottom .each_icon_bottom {
    padding: 4rem 3rem;
  }
  .why_participate .icon_bottom .each_icon_bottom img {
    height: clamp(6rem, 10vw, 8rem);
  }

  header .organizers .each_organizer img {
    height: 1.8rem;
  }

  header {
    padding: 0 1.5rem;
  }

  .main_hero .hero_text h1 {
    font-size: 3.25rem;
  }

  .pin-me,
  header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  footer .footer-top {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
  footer .footer-top .navigation {
    width: 100%;
    margin-top: 2rem;
  }
  footer .footer-top .navigation a {
    text-align: center;
  }
  footer .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  footer .container .footnote {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  footer .container .social {
    margin-bottom: 0.5rem;
    width: auto;
  }
  footer .container .social a {
    margin: 0 1rem !important;
  }
  footer .container .footer_links {
    width: auto;
  }

  .main_hero,
  .main_swiper .swiper_wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .sg .container {
    padding: 3rem;
  }
  .sg .sg_inner_des {
    width: 100%;
    margin-top: -2%;
  }
}
@media (max-width: 640px) and (orientation: landscape) {
  .discover .discover_block {
    gap: 0rem;
  }
}
@media (max-width: 540px) and (orientation: portrait) {
}
@media (max-width: 540px) {
  .page_nav .container .logo img,
  .page_nav .container .logo .hide_this {
    width: 180px;
  }
  .mobile_nav .inner_mobile_nav {
    padding: 0 2rem;
  }

  .mobile_nav .footer_menu {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .mobile_nav .footer_menu .social a {
    margin-right: 1rem;
  }

  .programme_mid .programme_top {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .programme_mid .programme_mid_content {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .india_speakers .speakers .each .image {
    flex-shrink: 0;
    width: 40%;
  }
  .india_speakers .speakers {
    gap: 2rem;
  }

  .india_mentors .mentors {
    gap: 2rem;
  }

  .country_round_sponsor {
    flex-direction: column;
    margin: 3rem 0 5rem;
  }
  .country_round_sponsor .left,
  .country_round_sponsor .right {
    width: 100%;
  }
  .country_round_sponsor .right {
    margin-top: 2rem;
    padding-left: 1.5rem;
  }

  .main_hero,
  .main_swiper .swiper_wrap,
  .challenge,
  .sg .container,
  .uniting > div,
  .highlights,
  .logos,
  .asia,
  .country_carousel,
  .summit > div,
  .prizes,
  .forum .discover,
  .sponsor_meaning,
  .sponsor_opp {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .why_participate .icon_bottom .each_icon_bottom {
    width: 100%;
  }

  .programme_learn_more .learn_more_content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .why_participate .title {
    width: 90%;
  }

  .challenge {
    padding-top: 2rem;
  }
  .challenge:after {
    height: 20%;
  }
  .challenge .left {
    margin-top: 3rem;
  }

  .main_hero .hero_text h1 {
    font-size: 3rem;
  }
  .main_hero .hero_text h3 {
    font-size: 2rem;
  }

  .sg {
    background-image: url("../img/sg_bg_mobile_540.jpg");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .sg img {
    content: url("../img/sg_bg_mobile_540.jpg");
  }
}
@media (max-width: 480px) {
  :root {
    --fs-hero: clamp(3rem, 6vw, 5rem);
  }

  .faq_mid .sponsor_mid_content {
    padding-left: 0;
    padding-right: 0;
  }

  .journey .text_container:nth-of-type(1) {
    width: 100%;
  }
  .journey .text_container:nth-of-type(2) {
    width: 90%;
  }
  .journey .text_container:nth-of-type(3) {
    width: 80%;
  }
  .journey .text_container:nth-of-type(4) {
    width: 70%;
  }
  .journey .text_container {
    width: 100% !important;
  }
  .journey .text_container p {
    width: 100% !important;
  }

  .country_carousel .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 0;
    right: auto;
  }
  .country_carousel .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
  }
  .country_carousel .swiper-button-prev img,
  .country_carousel .swiper-button-next img {
    max-width: 15px;
  }
  .country_carousel .swiper .swiper-pagination-bullet {
    height: 5px;
  }
  .country_carousel .swiper .swiper-slide:nth-of-type(odd) {
    padding-left: 0;
  }
  .country_carousel .swiper .swiper-slide:nth-of-type(even) {
    padding-right: 0;
  }
  .country_carousel .swiper .swiper-slide img {
    object-fit: contain;
  }
  .country_carousel .swiper .swiper-slide a:first-child img {
    padding-left: 2rem;
  }
  .country_carousel .swiper .swiper-slide a:last-child img {
    padding-right: 2rem;
  }

  .prizes .prize_block_container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .prizes .prize_block > p {
    margin-bottom: 0;
  }

  .challenge .challenge_icons {
    flex-direction: column;
    align-items: center;
  }
  .challenge .challenge_icons .each_challenge_icon {
    width: 100%;
    margin-bottom: 2rem;
  }

  .highlights .highlight_block_container .highlight_block {
    width: 100%;
  }
  .highlights .highlight_block strong {
    margin-bottom: 3rem;
  }

  .forum_registration .form_container {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  .sg .container {
    top: auto;
    bottom: 0;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .mobile_nav {
    max-width: 80%;
  }

  .sponsor_mid .sponsor_mid_content .packages {
    flex-direction: column;
  }
  .sponsor_mid .sponsor_mid_content .packages .each_package {
    padding: 1.75rem 2.25rem;
    width: 100%;
    margin-bottom: 1rem;
    align-items: center;
    flex-direction: row;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  }
  .sponsor_mid .sponsor_mid_content .packages .each_package h3 {
    /* margin: 0; */
    font-weight: 600;
    color: #414141;
  }
  .sponsor_mid .sponsor_mid_content .packages .each_package span {
    text-decoration: none;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #f2f2f2;
    margin-left: auto;
    border-radius: 0.5rem;
  }

  .pop_sponsor {
    padding: 1.5rem;
  }

  .contact_mid.__is_spons_page .contact_mid_content .each_contact_block .top {
    margin-bottom: 0;
  }
  .contact_mid.__is_spons_page .contact_mid_content .more_info {
    margin-top: 2.5rem;
  }

  .contact_mid .contact_mid_content > strong {
    margin-bottom: 1rem;
    width: 75%;
  }
  .contact_mid .contact_mid_content .contact_segment_row {
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .contact_mid .contact_mid_content .each_contact_block {
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  .contact_mid .contact_mid_content .each_contact_block .top {
    margin-bottom: 1rem;
  }
  .contact_mid .contact_mid_content .each_contact_block span {
    margin-bottom: 0;
  }
  .contact_mid .contact_mid_content .each_contact_block:nth-of-type(2) {
    margin-left: 0;
  }

  footer .container .social a {
    margin: 0 0.75rem !important;
  }

  .why_participate .icon_bottom .each_icon_bottom {
    margin-bottom: 1rem;
  }

  .main_hero .hero_text h1 {
    font-size: clamp(2.5rem, 3.5vw, 2.7rem);
    padding-bottom: 2rem;
  }

  .main_swiper .swiper_nav_wrapper .swiper-button-next {
    right: 0.35rem;
  }
  .main_swiper .swiper_nav_wrapper .swiper-button-next img {
    width: 1.5rem;
  }
  .main_swiper .swiper_nav_wrapper .swiper-button-prev {
    left: 0.35rem;
  }
  .main_swiper .swiper_nav_wrapper .swiper-button-prev img {
    width: 1.5rem;
  }

  .main_swiper .swiper-slide .left,
  .main_swiper .swiper-slide .right {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .pin-me,
  header,
  .main_hero,
  .main_swiper .swiper_wrap,
  .challenge,
  .sg .container,
  .why_participate,
  .sponsor_mid,
  .faq_mid,
  .be_a_sponsor,
  .contact_mid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .student_form {
    padding: 5rem 2rem;
  }
  .student_form .tnc_container,
  .student_form .pdpa_container {
    padding: 2rem 3rem;
  }
  .student_form .field_check input {
    width: 18px;
    height: 18px;
  }
  .student_form .field.upload .file .file_choose {
    padding: 0.5rem 3rem;
  }
  .student_reg #size_chart {
    width: 90%;
    padding: 1rem;
  }
}
@media (max-width: 420px) {
  .main_hero .hero_text h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 380px) {
  .timeline td:nth-of-type(1) {
    padding-right: 2rem;
  }
  .timeline td:nth-of-type(2) span {
    padding-left: 2rem;
  }
}

.partner_logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .partner_logos {
    gap: 40px;
  }
}

.partner_logos a {
  display: flex;
  max-width: 250px;
}

ul,ol {
  li {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }
}

ol.list-styletype-lower-alpha {
  list-style: lower-alpha;
  padding-left: 1.2rem;
}

ol.list-styletype-lower-alpha li {
  list-style: lower-alpha;
  color: #414141;
  padding-left: 0.5rem;
}

ol.list-styletype-lower-alpha-bracket {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 1.5rem;
}

ol.list-styletype-lower-alpha-bracket li {
  position: relative;
  counter-increment: list-counter;
  color: #414141;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

ol.list-styletype-lower-alpha-bracket li::before {
  content: counter(list-counter, lower-alpha) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

.contact_mid.remove_bg_img {
  background-image: none;
}

ol.list-styletype-number {
  list-style: decimal;
  padding-left: 1.2rem;
}

ol.list-styletype-number li {
  list-style: decimal;
  color: #414141;
  padding-left: 0.5rem;
}

ol.list-style-accent > li::before,
ol.list-style-accent > li::marker {
  font-weight: 700;
  color: var(--highlight-bg);
}

ul.list-style-disc {
  padding-left: 1.3rem;
}
ul.list-style-disc > li {
  list-style-type: disc;
}

a.linkblue {
  color: #00beaf;
  text-decoration: underline;
}

.page_nav a.info-and-register-btn {
  max-width: 120px;
  font-size: 0.875rem;
  text-align: center;
}

.logo-section {
  padding: 80px 0;
}

.logo-title {
  color: #0148a7;
  font-weight: 800;
}

.logo-img {
  max-width: 200px;
}

.logo-img-xs {
  max-width: 120px;
}
.logo-img-sm {
  max-width: 150px;
}
.logo-img-md {
  max-width: 250px;
}
.logo-img-lg {
  max-width: 300px;
}
.logo-img-xl {
  max-width: 400px;
}

.bg-image-none {
  background-image: none;
}

.mentor_and_judges_section {
  background: #f7f7f7;
}

.mentor_and_judges_section .container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mentor-block {
  margin-bottom: 6rem;
}

.mentor-name {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

.mentor-img {
  max-width: 200px;
  margin: auto;
  width: 100%;
}

.mentor-desc {
  color: #000000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}

.mentor-details .modal-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.mentor-details .mentor-name {
  font-size: clamp(22px, 2vw, 26px);
}
.mentor-details .mentor-desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: revert;
}
.mentor-details .mentor-specification {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #000000;
  flex-grow: 1;
  overflow: auto;
  min-height: 200px;
}

.mentor-details .swiper-slide {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .swiper.SpeakerDetailsSwiper {
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 576px) {
  .mentor-details.modal-xl {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .mentor-details .modal-body {
    overflow: hidden;
  }
  .mentor-details .mentor-specification {
    margin-top: 20px;
    margin-bottom: 0;
    min-height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .mentor-details.modal-xl {
    max-width: 1140px;
  }
}

/* Video Section */
.video-wrapper {
  padding: 0 0 6rem;
}

/* ACIYLS 2023 */
.aciyls-video {
  position: relative;
  align-content: flex-start;
  min-height: 100%;
}
.aciyls-video video {
  object-position: center;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.aciyls-video::after {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.about-img {
  height: 80px;
}
.section-divider {
  margin-top: 8rem;
  border-bottom: 1px solid #707070;
}
.separator {
  height: 10px;
  width: 170px;
  background-color: #0448a7; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, #1fb9be, #0448a7);
  border-radius: 30px;
}
@media screen and (max-width: 576px) {
  .separator {
    width: 100px;
  }
}
.section-padding {
  padding: 4rem 0;
  @media screen and (min-width: 992px) {
    padding: 6rem 0;
  }
}
.event-hilight-section {
  background-image: url("../img/newdesign/event-hilight-bg.jpg");
  background-repeat: no-repeat;
  height: 100%;
  background-position: top right;
  background-size: cover;
}
.section-header .title {
  color: #414141;
  font-weight: 700;
}
.event-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.event-card .card-title {
  color: #0148a7;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.event-card .card-desc {
  color: #000000;
}
.event-card .card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card .card-icon img {
  vertical-align: bottom;
  height: 100%;
}
.event-card .card-number {
  font-size: 90px;
  line-height: 74px;
  font-weight: 900;
  color: #12b9be;
  opacity: 0.15;
}

@media screen and (min-width: 576px) {
  .event-card .card-body {
    flex: 0 0 calc(100% - 130px);
  }
}
.event-card .card-footer {
  flex-grow: 1;
}

.delegates-section {
  background-color: #e7e7e7;
}

.aciyls-section {
  background-image: url("../img/newdesign/aciyls-section-bg.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Registration Page */
.registration-hero-section {
  background-image: url("../img/newdesign/registration/hero-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 620px;
}
.logo-wrapper {
  padding-top: 50px;
  max-width: 300px;
}
.hero-logo-wrapper {
  max-width: 500px;
  padding: 70px 0 90px;
}
.font-weight-semibold {
  font-weight: 600;
}
.font-weight-bold {
  font-weight: 700;
}
.font-weight-extrabold {
  font-weight: 800;
}
.text-blue {
  color: #0148a7;
}
.text-gold {
  color: #ebbe01;
}
.text-silver {
  color: #b5b5b5;
}
.text-bronze {
  color: #ac8917;
}
.text-light-blue {
  color: #12b9be;
}
.bg-light-yellow {
  background-color: #fcc30d;
}
.bg-dark-yellow {
  background-color: #f89c26;
}
.mh-60 {
  max-height: 60px;
}
/* Registration Page */

/* dimentions_of_discovery */
.section_content_wrapper {
  position: relative;
  padding: 4rem 5rem;
  z-index: 1;
}
.section_content_wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 70%;
  top: 0;
  left: -40px;
  background: #103250;
  background: radial-gradient(
    circle,
    rgba(16, 50, 80, 1) 0%,
    rgba(16, 50, 80, 0.6) 100%
  );
  border-radius: 30px;
  mix-blend-mode: multiply;
  z-index: -1;
}
.big_section_title {
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  max-width: 680px;
}
.section_desc {
  color: #ffffff;
  max-width: 550px;
}
@media screen and (max-width: 1200px) {
  .section_content_wrapper::before {
    width: 80%;
  }
  .big_section_title {
    font-size: clamp(3rem, 8vw, 4rem);
  }
}
@media screen and (max-width: 992px) {
  .section_content_wrapper::before {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .section_content_wrapper::before {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .section_content_wrapper {
    padding: 3rem 1rem;
  }
  .big_section_title {
    font-size: clamp(2rem, 8vw, 4rem);
  }
  .section_content_wrapper::before {
    left: -10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

/* Tips Section */
.tips_section {
  background: rgb(16, 50, 80);
  background: radial-gradient(
    circle,
    rgba(0, 72, 167, 1) 0%,
    rgba(16, 50, 80, 1) 100%
  );
  padding: 7rem 0;
  color: #ffffff;
}
.tipsSwiper .img-wrapper {
  max-width: 40%;
}
@media screen and (max-width: 767px) {
  .tipsSwiper .img-wrapper {
    max-width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .tipsSwiper .img-wrapper {
    max-width: 100%;
  }
}
.tipsSwiper .number {
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 700;
}
.tipsSwiper .tips_content {
  font-size: clamp(1.25rem, 1vw, 2.5rem);
}
/* End: Tips Section */

/* about_ommiii_section */
.about_ommiii_section p {
  color: #414141;
}
/* about_ommiii_section */

/* Video Container */
.video-container {
  width: 100%;
  height: 150px;
  margin: auto;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 400px) {
  .video-container {
    max-width: 400px;
    height: 225px;
  }
}
@media screen and (min-width: 575px) {
  .video-container {
    max-width: 530px;
    height: 298px;
  }
}
@media screen and (min-width: 767px) {
  .video-container {
    max-width: 640px;
    height: 360px;
  }
}
@media screen and (min-width: 992px) {
  .video-container {
    max-width: 854px;
    height: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .video-container {
    max-width: 1024px;
    height: 576px;
  }
}
@media screen and (min-width: 1600px) {
  .video-container {
    max-width: 1366px;
    height: 768px;
  }
}
/* End: Video Container */

/* Winner Section */
.winner-section-content {
  background-image: url("../img/newdesign/winner-section-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  max-height: 1600px;
}
.swiper-bg-light {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  padding: 25px 1rem;
}
.bg-dark .swiper-pagination-bullet,
.swiper-bg-light .swiper-pagination-bullet {
  background: #cdcdcd;
  opacity: 1;
}
.bg-dark .swiper-pagination-bullet-active,
.swiper-bg-light .swiper-pagination-bullet-active {
  background: #1fb9be;
}
@media screen and (min-width: 992px) {
  .swiper-bg-light {
    padding: 25px 3rem;
  }
  .swiper-bg-light .finalWinnerSwiper,
  .swiper-bg-light .scholarshipAwardSwiper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* End: Winner Section */

/* Feature Section */
.feature_section {
  background-color: #f7f7f7;
  padding: 60px 0;
}
@media screen and (min-width: 992px) {
  .feature_content {
    max-width: 70%;
    margin: auto;
  }
}
.feature_icon {
  height: 70px;
  display: flex;
  justify-content: center;
}
.cursor-pointer {
  cursor: pointer;
}
/* End: Feature Section */

/* ScrollBar */
*::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track {
  background: #efefef; /* color of the tracking area */
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
  background-color: #aaaaaa; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #efefef; /* creates padding around scroll thumb */
}

/* About Section */
.about-img-wrapper {
  border-radius: 46px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .content-wrapper {
    width: 70%;
    margin: auto;
  }
}
/* About Section */

.section-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--primary-color);

  @media screen and (min-width: 992px) {
    font-size: 2.5rem;
  }
  @media screen and (min-width: 1400px) {
    font-size: 3rem;
  }

  &.font-extra-bold {
    font-weight: 800;
  }

  &.text-blue {
    color: var(--secondary-color);
  }
}

.title_with_circle {
  position: relative;
  display: inline-block;
  padding: 15px 15px 15px 0;

  &::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../img/title_circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.title_with_large_circle {
  position: relative;
  display: inline-block;
  padding: 1.1rem 2rem 1.1rem 0;

  &::after {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../img/title_circle_lg.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.section-title .highlight_bg {
  background-color: var(--highlight-bg);
  color: #ffffff;
  font-weight: 800;
}

.title_with_divider {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 36px;
    background: url("../img/title_divider.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.blue_divider_line {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 36px;
    background: url("../img/title_divider_blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.title_with_accent_divider {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    width: 100%;
    height: 100%;
    background: url("../img/title_divider_accent.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--body-color);

  &.text-accent {
    color: var(--green);
  }

  &.font-bold {
    font-weight: 700;
  }
}

.section-title-blue {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

/* Mission */
.mission_section {
  background-image: url("../img/home/mission-bg.jpg");
  background-size: cover;
  background-position: top center;
  position: relative;
}
.mission_content {
  .section-description {
    @media screen and (min-width: 768px) {
      max-width: 430px;
    }
  }
}
/* End: Mission */

/* Gateway Event */
.event-img-wrapper {
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-bottom: 3rem;
}
.event-title {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}
/* End: Gateway Event */

/* Gallery */
.gallery-img {
  border-radius: 25px;
}
/* End: Gallery */

.link-img-wrapper {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.border-color-accent {
  border-color: #04beaf;
}

/* About */
.about_hero_wrapper,
.country_hero_wrapper {
  padding-left: 15px;
  padding-right: 15px;

  @media screen and (min-width: 576px) {
    padding-left: calc((100% - 540px) / 2);
    padding-right: calc((100% - 540px) / 2);
  }
  @media screen and (min-width: 768px) {
    padding-left: calc((100% - 720px) / 2);
    padding-right: calc((100% - 720px) / 2);
  }
  @media screen and (min-width: 992px) {
    padding-left: calc((100% - 960px) / 2);
    padding-right: calc((100% - 960px) / 2);
  }
  @media screen and (min-width: 1200px) {
    padding-left: calc((100% - 1140px) / 2);
    padding-right: calc((100% - 1140px) / 4);
  }
  @media screen and (min-width: 1400px) {
    padding-left: calc((100% - 1350px) / 2);
    padding-right: calc((100% - 1350px) / 4);
  }
  @media screen and (min-width: 1900px) {
    max-width: 1900px;
    margin: auto;
    padding-left: calc((1900px - 1350px) / 2);
    padding-right: calc((1900px - 1350px) / 4);
  }
}

.hero_img_wrapper {
  position: relative;
  overflow: hidden;
  flex-grow: 1;

  img {
    border-radius: 26px;
    @media screen and (min-width: 768px) {
      border-radius: 46px;
    }
  }
}

.country_hero_wrapper {
  .hero_text,
  .hero_img_wrapper {
    padding-top: 7%;
  }

  .hero_text h1 {
    color: var(--primary-color);
    @media screen and (min-width: 1200px) {
      font-size: clamp(3.5rem, 6vw, 4rem);
    }
  }
  .hero_tagline {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.5rem;
  }
  .hero_img_wrapper {
    flex-grow: initial;
    display: flex;
    margin-left: auto;
  }
}

.title {
  font-size: 2rem;
}

.description {
  font-size: 1.1rem;
}

/* Finalist */
.finalist_content {
  padding-bottom: 5rem;
  @media screen and (min-width: 768px) {
    padding-bottom: 8rem;
  }
}
.finalist_image {
  border-radius: 46px;
}
.finalist_divider {
  border-color: #707070;
  opacity: 1;
}

/* Goal */
.goal-section {
  background-image: url("../img/about/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.goal_content_wrapper {
  border: 2px solid #04beaf;
  border-radius: 20px;
  padding: 1rem 1rem 2rem;
  height: 100%;
  @media screen and (min-width: 768px) {
    padding: 2rem 2rem 5rem;
    border-radius: 30px;
  }
}

.goal_icon_wrapper {
  border-radius: 15px;
  padding: 1rem 1.5rem;
  height: 85px;
  display: flex;

  &.bg-accent {
    background: #04beaf;
  }
  &.bg-blue {
    background: #0779dc;
  }
}

.goal_title {
  text-transform: uppercase;
}

.card_bg_dark_gray {
  background-color: #e4e4e4;
}

.img_wrapper_radius_lg,
.radius_lg {
  overflow: hidden;
  border-radius: 26px;
  @media screen and (min-width: 768px) {
    border-radius: 46px;
  }
}

/* Programme */
.mw-lg-500 {
  @media screen and (min-width: 1200px) {
    max-width: 500px;
  }
}
.mw-lg-55 {
  @media screen and (min-width: 1200px) {
    max-width: 55%;
  }
}
.qualify_round_img_2 {
  border: 5px solid #f3f3f3;
  max-width: 80%;
  position: relative;
  transform: translateY(-20%);

  @media screen and (min-width: 1200px) {
    max-width: 450px;
    border-width: 10px;
    transform: translate(-70px, -126px);
  }
}

.country_section {
  background-image: url("../img/programme/country_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 200px;
}
.country_item {
  .country_img {
    transform: translateY(0);
    transition: transform 0.2s ease-in-out;
  }
  &:hover {
    .country_img {
      transform: translateY(-5px);
    }
  }
}
.country_name {
  font-weight: 600;
  text-decoration: underline;
  color: var(--primary-color);
}

.prospectus_section {
  background: url("../img/sponsorship/prospectus_section_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.prospectus_content {
  position: relative;
  padding: 3rem 5rem;
  z-index: 1;

  @media screen and (min-width: 1200px) {
    padding: 5rem 14rem;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0f3250;
    opacity: 0.41;
    mix-blend-mode: multiply;
    z-index: -1;
  }
}

/* Gallery */
.gallerySwiper .swiper-slide img {
  border-radius: 20px;
  @media screen and (min-width: 768px) {
    border-radius: 25px;
  }
}
.gallerySwiper .swiper-button-prev {
  left: 0;
}
.gallerySwiper .swiper-button-next {
  right: 0;
}

/* Country Navigation */
.country_nav {
  .menu {
    display: flex;
    align-items: stretch;
    list-style: none;
    padding: 0;
    gap: 10px;
  }
  .menu_item {
    margin: 0;
  }
  .menu_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 45px;
    border: 2px solid #595959;
    border-radius: 15px;
    color: #414141;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
    padding: 0 8px;
    transition: all 300ms ease-in-out;

    &:hover {
      background-color: rgba(231, 231, 231, 0.5);
    }

    &.register_btn {
      margin-left: 10px;
      font-weight: 700;
      font-size: 0.9125rem;
      color: var(--secondary-color);
      border-color: var(--secondary-color);

      @media screen and (max-width: 768px) {
        width: auto;
      }

      &:hover {
        background-color: var(--secondary-color);
        color: #ffffff;
      }
    }
  }
}

.mw-150 {
  max-width: 150px;
}

.outline-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border: 2px solid var(--secondary-color);
  border-radius: 15px;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.15s ease-in;
  cursor: pointer;

  &:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
  }
}

.country-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.masterclass-bg {
  background-image: url("../img/countries/masterclass_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;

  @media screen and (min-width: 992px) {
    padding: 100px 0;
  }
}

/* Common style */
.text-accent {
  color: #00beaf;
}

.svg-oval-wrapper {
  position: relative;
  display: inline-block;
}

.svg-oval {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 115%;
  height: auto;
  z-index: 1;
  transform: translateY(-50%);
}
/*# sourceMappingURL=newstyle.css.map */
