/* Default CSS Code */

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

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

:focus * {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}

button:focus {
  outline: 0;
}

ul,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

label {
  display: block;
  cursor: pointer;
}

input {
  width: 100%;
}

img,
svg {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.overflow {
  overflow: hidden;
}

/* 

font-family: "Conduit ITC";

*/

body {
  font-family: "Conduit ITC";
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  background: #000;
  color: #fff;
  letter-spacing: 1px;
}

/* Default CSS Code */

/* Reusable CSS */

.container {
  width: 100%;
  max-width: 1302px;
  margin-left: auto;
  margin-right: auto;
}

.custom-btn {
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 90px;
  height: 90px;
  display: flex;
  text-align: center;
  padding: 8px;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.custom-btn--outline {
  border: 1px solid #fff;
}

.custom-btn--outline:hover {
  background: #fff;
  color: #000;
}

.custom-btn--outline-black {
  border: 1px solid #000;
  color: #000;
}

.custom-btn--outline-black:hover {
  background: #000;
  color: #fff;
}

.custom-btn--red {
  color: #fff;
  background: #f91947;
}

.custom-btn--center {
  margin-left: auto;
  margin-right: auto;
}

.confirm__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.input-style {
  background: transparent;
  box-shadow: none;
  outline: none;
  border: 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 18px;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 3px;
}

::-webkit-input-placeholder {
  color: #fff;
  text-transform: uppercase;
}
::-moz-placeholder {
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
}
:-ms-input-placeholder {
  color: #fff;
  text-transform: uppercase;
}
:-moz-placeholder {
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
}

.custom-checkbox {
  display: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}

.checkbox-icon {
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
}

.checkbox-text {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.custom-checkbox:checked + .checkbox-label .checkbox-icon {
  background-image: url(../images/tick.png);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Reusable CSS */

/* Header Area */

.header {
  padding: 34px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background-color 0.6s ease;
  -webkit-transition: background-color 0.6s ease;
  -moz-transition: background-color 0.6s ease;
  -ms-transition: background-color 0.6s ease;
  -o-transition: background-color 0.6s ease;
}

.header.is-active {
  background-color: #000;
}

.nav,
.nav__left,
.nav__links {
  display: flex;
  align-items: center;
}

.nav {
  position: relative;
  justify-content: space-between;
}

.nav__left {
  gap: 70px;
}

.nav__logo {
  width: fit-content;
  height: 46px;
}

.nav__links {
  gap: 46px;
}

.nav__link {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.nav__link:hover {
  color: #00ffe6;
}

.nav__supporters {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__supporter {
  display: inline-flex;
  align-items: center;
  height: 40px;
  width: auto;
  display: block;
}

.nav__supporter1 {
  height: 35px;
}

.nav__supporter2 {
  height: 38px;
}

.navbar__toggler {
  position: absolute;
  top: 17px;
  right: 0;
  width: 22px;
  height: 17px;
  display: none;
}

.toggle-bar {
  margin-bottom: 4px;
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  border-radius: 1.5px;
  -webkit-border-radius: 1.5px;
  -moz-border-radius: 1.5px;
  -ms-border-radius: 1.5px;
  -o-border-radius: 1.5px;
}

.toggle-bar:last-of-type {
  margin-bottom: 0;
}

.navbar__toggler.change .bar1 {
  margin-bottom: 0;
  transform: rotate(-40deg) translate(-3px, 3px);
  -webkit-transform: rotate(-40deg) translate(-3px, 3px);
  -moz-transform: rotate(-40deg) translate(-3px, 3px);
  -ms-transform: rotate(-40deg) translate(-3px, 3px);
  -o-transform: rotate(-40deg) translate(-3px, 3px);
}

.navbar__toggler.change .bar2 {
  margin-bottom: 0;
  opacity: 0;
}

.navbar__toggler.change .bar3 {
  margin-bottom: 0;
  transform: rotate(40deg) translate(-1px, -1px);
  -webkit-transform: rotate(40deg) translate(-1px, -1px);
  -moz-transform: rotate(40deg) translate(-1px, -1px);
  -ms-transform: rotate(40deg) translate(-1px, -1px);
  -o-transform: rotate(40deg) translate(-1px, -1px);
}

/* Header Area */

/* Hero Area */
.hero {
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero__object {
  position: absolute;
  top: -300px;
  left: 186px;
  width: 960px;
  height: 1037px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  z-index: 10;
}

.hero .container {
  position: relative;
  z-index: 20;
}

.hero__content {
  padding-top: 110px;
}

.hero__content h1 {
  font-size: 200px;
  line-height: 148px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.hero__content h1 span {
  display: block;
}

.hero__bottom {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 70px;
  padding: 54px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 137px;
  padding-right: 50px;
}

.hero__bottom-left h2 {
  font-size: 48px;
  line-height: 50px;
  color: #f91947;
}

.hero__bottom-left h2 span {
  display: block;
}

.hero__bottom-right h3 {
  font-size: 32px;
  line-height: 34px;
}

.hero__bottom-right h3 span {
  display: block;
}
/* Hero Area */

/* Initiative Area */
.initiative {
  padding-top: 70px;
}

.initiative__items {
  margin-top: 118px;
  display: flex;
  gap: 68px;
}

.initiative__item {
  border-left: 1px solid #fff;
  padding-left: 15px;
}

.initiative__item2 {
  padding-top: 117px;
}

.initiative__item4 {
  padding-top: 74px;
}

.initiative__card {
  width: 100%;
  max-width: 260px;
  margin-bottom: 130px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}

.initiative__card--reverse {
  flex-direction: column-reverse;
}

.initiative__card.disable {
  opacity: 0.25;
}

.initiative__card:hover,
.initiative__card.is-active {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.initiative__card.is-active {
  opacity: 1;
}

.initiative__item2 .initiative__card {
  margin-bottom: 164px;
}

.initiative__card:last-of-type {
  margin-bottom: 0 !important;
}

.initiative__card img {
  width: 260px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.initiative__card .initiative__card-text {
  width: 100%;
}

.initiative__card h3 {
  --bg-color: transparent;
  --text-color: #000;

  color: #000;
  display: inline;
  padding: 10px 10px;
  font-size: 36px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;

  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.initiative__card1 .initiative__card-text {
  max-width: 154px;
}

.initiative__card1 h3 {
  --bg-color: #00ffe6;
  --text-color: #000;

  background: #00ffe6;
}

.initiative__card2 .initiative__card-text {
  max-width: 152px;
}

.initiative__card2 h3 {
  --bg-color: #971c70;
  --text-color: #fff;

  background: #971c70;
  color: #fff;
}

.initiative__card3 .initiative__card-text {
  max-width: 152px;
}

.initiative__card3 h3 {
  --bg-color: #0000ff;
  --text-color: #fff;

  background: #0000ff;
  color: #fff;
}

.initiative__card4 .initiative__card-text {
  max-width: 260px;
}

.initiative__card4 h3 {
  --bg-color: #f91947;
  --text-color: #fff;

  background: #f91947;
  color: #fff;
}

.initiative__card5 .initiative__card-text {
  max-width: 155px;
}

.initiative__card5 h3 {
  --bg-color: #6900ff;
  --text-color: #fff;

  background: #6900ff;
  color: #fff;
}

.initiative__card6 .initiative__card-text {
  max-width: 260px;
}

.initiative__card6 h3 {
  --bg-color: #ffff10;
  --text-color: #000;

  background: #ffff10;
}

.initiative__card7 .initiative__card-text {
  max-width: 155px;
}

.initiative__card7 h3 {
  --bg-color: #ff00e7;
  --text-color: #000;

  background: #ff00e7;
}

.initiative__card8 .initiative__card-text {
  max-width: 260px;
}

.initiative__card8 h3 {
  --bg-color: #30ff00;
  --text-color: #000;

  background: #30ff00;
}

/* Animation */
@keyframes textBlinkLoop {
  /* blink 1 */
  0% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  5% {
    background-color: transparent;
    color: var(--bg-color);
  }

  /* blink 2 */
  10% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  15% {
    background-color: transparent;
    color: var(--bg-color);
  }

  /* blink 3 */
  20% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  25% {
    background-color: transparent;
    color: var(--bg-color);
  }

  /* blink 4 */
  30% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  35% {
    background-color: transparent;
    color: var(--bg-color);
  }

  /* blink 5 */
  40% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  45% {
    background-color: transparent;
    color: var(--bg-color);
  }

  50% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  /* pause */
  100% {
    background-color: var(--bg-color);
    color: var(--text-color);
  }
}

.initiative__card.is-active h3 {
  animation: textBlinkLoop 3.5s linear infinite;
  -webkit-animation: textBlinkLoop 3.5s linear infinite;
}

/* Animation */

/* Initiative Area */

/* Confirm Area */
.confirm {
  padding-top: 140px;
  padding-bottom: 100px;
}

.section-heading {
  font-size: 48px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.confirm__form-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.confirm__social {
  flex: 1;
}

.confirm__form > h3 {
  font-size: 24px;
  line-height: 32px;
  color: #00ffe6;
  text-transform: uppercase;
  text-align: center;
}

.confirm__form-main {
  width: 100%;
  max-width: 616px;
}

.confirm__form {
  margin-top: 115px;
  margin-bottom: 124px;
}

.confirm__social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.confirm__form .custom-btn--red {
  margin-top: 65px;
}

.confirm__items {
  border-top: 1px solid #fff;
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.confirm__item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.confirm__item h4 {
  width: max-content;
  font-size: 24px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.confirm__item p {
  flex: 1;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
}

/* Confirm Area */

/* Event Area */
.event {
  background: #fff;
  padding: 80px 0;
}

.event__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 90px;
}

.event__content h3,
.event__content h2 {
  color: #000;
}

.event__content h3 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  width: fit-content;
  letter-spacing: 2px;
}

.event__content h2 {
  font-size: 48px;
  line-height: 50px;
  flex: 1;
}

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

/* Event Area */

/* Footer Area */
.footer {
  background: #0000ff;
}

.footer__main {
  display: flex;
  align-items: center;
  gap: 97px;
  padding: 64px 0;
}

.footer__logo {
  width: fit-content;
  height: 270px;
}

.footer__cam-logo {
  width: fit-content;
  height: 100px;
}

.footer__contact,
.footer__contact-items {
  display: flex;
  align-items: flex-end;
}

.footer__contact {
  gap: 112px;
}

.footer__contact-items {
  gap: 80px;
}

.footer__contact-item h2,
.footer__contact-item a {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2px;
}

.footer__contact-item a {
  margin-top: 24px;
}

.footer__right-bottom {
  display: flex;
  align-items: flex-end;
  margin-top: 67px;
  justify-content: space-between;
}

.footer__modifier,
.footer__modifier:hover {
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__partner-social {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.footer__partner {
  text-align: center;
}

.footer__partner h3 {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 13px;
  letter-spacing: 2px;
}

.footer__partner img {
  width: fit-content;
  height: 26px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link {
  width: fit-content;
  height: 30px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: #000;
}

.marquee-track {
  font-size: 24px;
  display: inline-flex;
  gap: 40px;
  animation: marquee 60s linear infinite;
  -webkit-animation: marquee 60s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Footer Area */
