@import url(https://db.onlinewebfonts.com/c/82b778d1b069157bf6b2e32dc4e1e3f1?family=Neue+Machina);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-primary: #03190c;
  --color-secondary: #3153de;
  --color-white: #fff;
  --color-third: #191919;
  --color-bg: #f5f5f5;
  --text-secondary: #79797a;
  --text-primary: #00020a;
}

html,
body {
  width: 100%;
  height: auto;
  /* overflow-x: hidden; */
}

body {
  background-color: #f9fafb;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-family: "Neue Machina";
}

html {
  scroll-behavior: smooth;
}

main {
  min-height: 100vh;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

.container-site {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: linear-gradient(
      0deg,
      rgba(10, 128, 68, 0.7),
      rgba(10, 128, 68, 0.7)
    ),
    url("/assets/front/images/bg-left.png"), url("/assets/front/images/bg-right.png");
  background-position: 0 0, 0 0, 100% 0;
  background-size: 100% 100%, 49.306% 100%, 50.764% 100%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-blend-mode: hue, normal, normal, normal;
  padding: 27px 0 0 0;
}

header {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.header-container {
  background-color: var(--color-primary);
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 8px 24px;
  align-items: center;
  border-radius: 12px;
}
.ds-nav {
  display: flex;
  gap: 40px;
}
.nav-menu ul li a {
  color: var(--color-white);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0d1b12;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  min-width: 100px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  display: block;
  background-color: #1f3525;
}

.logo {
  cursor: pointer;
}
.logo img {
  width: 40px;
  height: 47px;
}
.btn-spc {
  color: black;
  background-color: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.btn-spc2 {
  color: var(--color-white);
  background-color: rgb(0, 0, 0, 0);
  border: 1px solid var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.burger-menu {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  display: none;
}

.burger-bar {
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -500px;
  width: 80%;
  max-width: 200px;
  height: 100vh;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 60px;
  z-index: 999;
  transition: 0.5s;
}

.mobile-nav.active {
  transform: translateX(0px);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin: 15px 0;
}

.mobile-nav ul li a {
  color: rgb(255, 255, 255, 0.8);
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 1.87rem;
  color: var(--color-white);
  cursor: pointer;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}
#overlay.active {
  display: block;
}

.hero-sec {
  width: 50%;
  margin: auto;
  text-align: center;
}
.hero-text h1 {
  font-size: 3rem;
  color: var(--color-white);
  font-weight: 800;
}
.hero-text p {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  margin: 12px 0 24px 0;
}
.btn-hero {
  display: flex;
  justify-content: center;
  gap: 9px;
}
.head-sponsors {
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 20px 0;
}
.head-sponsors a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.head-sponsors img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
.about-head {
  text-align: center;
  margin-top: 60px;
}
.h2-spc {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
}
.about-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.card-abt {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  width: 32%;
  background: #f0f0f0;
  border-radius: 12px;
}
.card-head {
  border-radius: 12px;
  background: #16a34a;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.card-head img {
  width: 24px;
  height: 24px;
}

.card-main p {
  color: #09090b;
  font-size: 20px;
  font-weight: 800;
}
.card-main span {
  color: #71717a;
  font-weight: 400;
}
.card-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-section {
  width: 100%;
  display: flex;
  margin-top: 60px;
  align-items: center;
  gap: 24px;
  background-color: var(--color-white);
  border-radius: 12px;
}

.chart-image {
  width: 50%;
}
.chart-image img {
  width: 100%;
  height: 550px;
  border-radius: 12px;
}
.chart-description {
  width: 49%;
  margin-right: 24px;
  color: #09090b;
}

.cup-sec {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.cup-main {
  position: relative;
  background-color: var(--color-primary);
  border-radius: 12px;
  width: 100%;
  height: 679px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cup-main img {
  width: 442px;
  height: 471px;
}

.cup-main p {
  position: absolute;
  display: inline-flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #e6fed7;
  font-size: 20px;
  color: #09090b;
}

.cup-main .top {
  top: 8%;
  left: 50%;
  transform: translate(-50%, 0);
}

.cup-main .left {
  top: 22%;
  left: 20%;
}

.cup-main .right {
  top: 22%;
  right: 21%;
}

.cup-main .bottom-left {
  bottom: 24%;
  left: 24%;
}

.cup-main .bottom-right {
  bottom: 24%;
  right: 21%;
}

.cup-btn a {
  display: inline-flex;
  color: #fff;
  height: 44px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #22c55e;
}

.spn-btn a {
  display: inline-flex;
  color: #fff;
  height: 44px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #22c55e;
  font-size: 14px;
}
.sponsor-sec {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  margin-top: 60px;
  background-color: var(--color-white);
  z-index: 10;
  border-radius: 12px;
  margin-bottom: 60px;
}
.relativ {
  position: relative;
  overflow: hidden;
}
.shadow1 img {
  position: absolute;
  max-width: 700px;
  left: -450px;
  top: -100px;
  z-index: -1;
}
.shadow2 img {
  position: absolute;
  max-width: 700px;
  right: -450px;
  top: -100px;
  z-index: -1;
}
.shadow3 img {
  position: absolute;
  max-width: 700px;
  left: -400px;
  top: -200px;
  z-index: -1;
}
.sponsor-top {
  width: 100%;
}
.top-txt1 {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
}
.top-txt2 {
  width: 50%;
  margin-bottom: 16px;
}
.sponsor-btm {
  display: flex;
  gap: 88px;
  flex-wrap: wrap;
  justify-content: center;
}

.company-logo {
  width: fit-content;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.compimg1 {
  width: 44px;
  height: 44px;
}
.compimg2 {
  width: 100%;
  height: 50px;
}
.last-section {
  width: 100%;
  height: 355px;
  background-image: url("/assets/front/images/path.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}

.last-container {
  margin: auto;
  display: flex;
  width: 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 8%;
}
.last-top p {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}
footer {
  background-color: var(--color-primary);
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 50px 0 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-social p {
  color: #b9b3b3;
  font-size: 18px;
  margin-bottom: 32px;
}
.icons ul {
  display: flex;
  gap: 15px;
}
.icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4b4b4b;
  padding: 11px 12px;
  font-size: 22px;
  color: var(--color-white);
  border-radius: 50px;
}
.ilk-link{
    padding: 10px 15px !important;
}

.icons ul li a:hover {
  background-color: #2b59ff;
}
.footer-subscribe {
  display: flex;
  gap: 12px;
  color: white;
}
.footer-subscribe p {
  color: #fafafa;
  font-size: 18px;
  font-weight: 600;
}
.footer-btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #22c55e;
  color: var(--color-white);
}
.input-footer {
  color: #71717a;
  text-overflow: ellipsis;
  font-size: 14px;
  outline: none;
  padding: 8px 12px;
  border-radius: 6px;
}
.inpt-btn {
  display: flex;
  gap: 8px;
}

.line-footer {
  width: 100%;
  height: 1px;
  background: #8a8a8a;
}

.footer-btm p {
  color: #fafafa;
  text-align: center;
  font-size: 14px;
  padding:0 0 20px 0;
}
.custom-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 4px solid transparent;
  background-image: linear-gradient(to right, #ff2de7, #0083f7, #f1641e);
  background-size: 100% 4px;
  background-repeat: no-repeat;
  background-position: bottom;
  text-decoration: none;
  color: white;
}



@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  header {
    gap: 100px;
  }
  .btn-header {
    display: none;
  }
  .head-sponsors {
    gap: 30px;
    padding: 10px 0;
  }
  .card-abt {
    width: 45%;
  }
  .cup-main {
    width: 85%;
  }
  .chart-section {
    flex-direction: column;
  }
  .chart-image {
    width: 100%;
  }
  .chart-image img {
    object-fit: contain;
    height: auto;
  }
  .chart-description {
    width: 100%;
    margin: 0;
  }
  .about-head {
    margin-top: 24px;
  }
  .chart-section {
    margin-top: 24px;
  }
  .cup-sec {
    margin-top: 24px;
  }
  .sponsor-sec {
    margin-top: 24px;
  }
  .top-txt2 {
    width: 100%;
  }
  .h2-spc {
    font-size: 20px;
  }
  .top-txt1 {
    margin-bottom: 20px;
  }
  .sponsor-btm {
    gap: 50px;
    justify-content: center;
    align-items: center;
  }
  .hero-sec {
    width: 70%;
  }
  .last-section {
    margin-bottom: 0;
  }
  .about-cards {
    margin-bottom: 24px;
  }
}

@media (max-width: 900px) {
  .cup-main {
    width: 90%;
  }
  .cup-main img {
    width: 380px;
    height: 400px;
  }
  .cup-main p {
    font-size: 18px;
    padding: 8px;
  }
  .last-container {
    width: 100%;
    gap: 52px;
    padding-top: 20%;
  }
  .last-top p {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  header {
    gap: 70px;
  }
  .head-sponsors {
    gap: 15px;
    padding: 5px 0;
  }
  .card-abt {
    width: 100%;
  }

  .cup-main {
    height: 550px;
  }
  .cup-main img {
    width: 320px;
    height: 360px;
  }
  .cup-main .top {
    top: 5%;
  }
  .cup-main .left {
    top: 18%;
    left: 7%;
  }
  .cup-main .right {
    top: 18%;
    right: 7%;
  }
  .cup-main .bottom-left {
    bottom: 16%;
    left: 10%;
  }
  .cup-main .bottom-right {
    bottom: 16%;
    right: 8%;
  }
  .cup-main p {
    font-size: 16px;
  }
  .head-sponsors img {
    width: 70%;
  }
}

@media (max-width: 500px) {
  .cup-main {
    height: 480px;
  }
  .cup-main img {
    width: 260px;
    height: 310px;
  }
  .cup-main .top {
    top: 8%;
  }
  .cup-main .left {
    top: 18%;
    left: 2%;
  }
  .cup-main .right {
    top: 18%;
    right: 2%;
  }
  .cup-main .bottom-left {
    bottom: 16%;
    left: 7%;
  }
  .cup-main .bottom-right {
    bottom: 16%;
    right: 2%;
  }
  .cup-main p {
    font-size: 10px;
    padding: 6px;
  }
  .last-container {
    width: 100%;
    gap: 52px;
    padding-top: 30%;
  }
  .last-top p {
    font-size: 20px;
  }
  .footer-social {
    width: 100%;
  }
  .footer-subscribe {
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-container {
    padding: 50px 0 0 0;
  }
  .header-container {
    width: 90%;
    padding: 5px 12px;
  }
  .sponsor-btm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
    align-self: center;
  }
  .compimg1 {
    width: 25px;
    height: 25px;
  }
  .compimg2 {
    height: 40px;
  }

  .icons ul li a {
    padding: 10px 10px;
    font-size: 15px;
  }
  .ilk-link {
      padding: 10px 13px !important;
  }

}

@media (max-width: 400px) {
  .cup-main {
    height: 430px;
  }
  .cup-main img {
    width: 230px;
    height: 280px;
  }
  .cup-main .top {
    top: 4%;
  }
  .cup-main .left {
    top: 17%;
    left: 4%;
  }
  .cup-main .right {
    top: 17%;
    right: 4%;
  }
  .cup-main .bottom-left {
    bottom: 14%;
    left: 6%;
  }
  .cup-main .bottom-right {
    bottom: 14%;
    right: 5%;
  }
  .cup-main p {
    font-size: 8px;
    padding: 6px;
  }
  .hero-sec {
    width: 90%;
  }
}

@media (max-width: 350px) {
  .cup-main {
    height: 400px;
  }
  .cup-main img {
    width: 200px;
    height: 250px;
  }
  .cup-main .top {
    top: 4%;
  }
  .cup-main .left {
    top: 17%;
    left: 3%;
  }
  .cup-main .right {
    top: 17%;
    right: 3%;
  }
  .cup-main .bottom-left {
    bottom: 12%;
    left: 5%;
  }
  .cup-main .bottom-right {
    bottom: 12%;
    right: 4%;
  }
  .cup-main p {
    font-size: 12px;
    padding: 4px;
  }
}
