:root {
  --black: #272831;
  --white: #fff;
  --orange: #ec5242;
  --gray: #d3d3d3;
}

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

html {
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: normal;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-containers {
  background: url('../assets/images/backgrounds/header.png') no-repeat;
  background-size: cover;
  padding: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  min-width: 100%;
  z-index: 2;
}

.socials {
  display: none;
}

.logo-desktop {
  display: none;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: var(--black);
  backdrop-filter: blur(8px);
  display: block;
  transition: all 1s ease;
  z-index: 2;
}

.active {
  width: 100%;
}

.bars {
  color: var(--black);
  font-size: 25px;
}

.times {
  color: var(--orange);
  font-size: 25px;
  margin-top: 40px;
  margin-left: 80%;
}

.nav-list-items {
  margin-top: 70px;
  margin-left: 28px;
  margin-right: 28px;
}

.nav-list-items li {
  margin-bottom: 20px;
  padding: 5px 0;
}

.nav-list-items li a {
  font-weight: 600;
  font-size: 24px;
  color: var(--orange);
}

.nav-list-items li:hover {
  border-radius: 15px;
  border-bottom: 3px solid var(--orange);
}

.intro-section {
  margin-top: 50px;
}

.intro-section span {
  color: var(--orange);
  line-height: 20px;
  font-size: 24px;
}

.intro-section h1 {
  color: var(--orange);
  font-family: 'COCOGOOSE', sans-serif;
  padding: 10px 0;
  background-image: url('../assets/images/backgrounds/text-background.jpg');
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 900;
}

.header-description {
  line-height: 24px;
  border: 3px solid var(--white);
  padding: 10px;
  margin: 20px 0;
}

.intro-section small {
  font-size: 18px;
}

.event-day {
  font-family: 'COCOGOOSE', sans-serif;
  font-size: 24px;
}

.partners-section {
  background-color: rgba(21, 20, 20, 0.871);
  padding: 20px;
}

.partners-section h2 {
  text-align: center;
  color: var(--gray);
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--gray);
  gap: 20px;
}

footer p {
  font-family: 'COCOGOOSE', sans-serif;
  font-size: 18px;
}

.partners p {
  font-size: 24px;
  font-family: 'COCOGOOSE', sans-serif;
}

.partner-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.partner-title span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2px;
  width: 50px;
  background-color: var(--orange);
}

footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
  background-color: #f7f7f9;
}

@media only screen and (min-width: 768px) {
  .header-containers {
    padding: 0;
  }

  .socials {
    background: var(--black);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 100px;
    gap: 10px;
    font-size: 12px;
    color: var(--gray);
  }

  .socials li a {
    color: var(--gray);
    font-size: 12px;
  }

  .navbar {
    padding-left: 80px;
    padding-right: 80px;
    background: var(--white);
  }

  .logo-desktop {
    display: block;
    font-weight: bolder;
    color: var(--black);
    font-family: 'COCOGOOSE', sans-serif;
    line-height: 20px;
  }

  .nav-list-items {
    margin-top: 10px;
    margin-left: initial;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-list-items li {
    margin-top: 5px;
  }

  .nav-list-items li a {
    font-size: 15px;
    line-height: 20px;
    color: var(--black);
    font-weight: 400;
  }

  .nav-list-items li:hover {
    border-bottom: none;
  }

  .nav-list-items li:hover a {
    color: var(--orange);
  }

  #campaign-link {
    border: 5px solid var(--orange);
    padding: 10px 15px;
  }

  .menu {
    position: initial;
    min-width: initial;
    height: initial;
    background: initial;
    backdrop-filter: initial;
    mix-blend-mode: initial;
    transition: initial;
  }

  .bars {
    display: none;
  }

  .times {
    display: none;
  }

  .active {
    display: block;
    transform: initial;
  }

  .sextion-intro h1 {
    font-size: 32px;
  }

  .intro-section span {
    font-size: 28px;
  }

  .intro-section {
    margin-top: 80px;
    padding: 20px 200px;
  }

  .event-day {
    font-size: 28px;
  }

  .nav-list-items li .actived {
    color: red;
  }
}
