/* ==========================================================================
   Fonts
   ========================================================================== */
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Demi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Italic variants */
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G  Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Demi Italic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Bold Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/Avenir/Avenir Next W1G Heavy Italic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   Variables & Theme
   ========================================================================== */
:root {
  --color-white: #ffffff;
  --color-black: #000000;

  --color-bg-light: #ffffff;
  --color-bg-dark: #161616;
  --color-bg-darker: #000000;
  --color-bg-gray: #1b1b1b;
  --color-bg-cards: #f8f8f8;

  --color-text-dark: #3c3c3c;
  --color-text-light: #ffffff;
  --color-text-muted: #646464;
  --color-text-body: #323232;

  --color-accent-orange: #ff6200;
  --color-accent-orange-hover: #e05600;
  --color-accent-cyan: #00c2ff;
  --color-accent-cyan-hover: #00a8e0;
  --color-accent-blue: #4da6ff;
  --color-accent-gold: #ffb800;

  --gradient-hero: linear-gradient(180deg, #161616 0%, #000000 100%);
  --gradient-benefits: linear-gradient(135deg, #00c2ff 0%, #0a2540 100%);
  --gradient-experts: linear-gradient(180deg, #161616 0%, #000000 100%);
  --gradient-partners: linear-gradient(180deg, #ffffff 0%, #e2e2e2 100%);

  --font-primary: 'Avenir Next', sans-serif;
  --font-body: 'Avenir Next', sans-serif;

  --container-max-width: 1320px;
  --container-padding: clamp(1rem, 5vw, 2rem);
  --section-padding-y: clamp(4rem, 8vw, 6rem);

  --transition-base: 0.3s ease-in-out;
  --card-radius: 10px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding-y) 0;
}

.section--dark {
  background: var(--gradient-hero);
  color: var(--color-text-light);
}

.section--dark-stripe {
  background: var(--gradient-hero);
  color: var(--color-text-light);
}

.section--benefits {
  background: url('../assets/images/benefits-bg.png') center center / cover no-repeat;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding: 160px 220px 130px;
}

.section--benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.35) 0%, transparent 70%);
  z-index: 0;
}

.section--benefits>.container {
  position: relative;
  z-index: 1;
}

.section--benefits .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.section--experts {
  background: var(--gradient-experts);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.section--experts>.container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title--left {
  text-align: left;
}

.section-title--cyan {
  color: var(--color-accent-cyan);
}

.section-title--orange {
  color: var(--color-accent-orange);
}

.section-title--dark {
  color: var(--color-text-dark);
}

.section-title--light {
  color: var(--color-text-light);
}

/* ==========================================================================
   UI Components
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 0.25rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--orange {
  background-color: rgba(255, 98, 0, 1);
  color: var(--color-text-light);
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow:
    inset 0px -2px 1px 0px rgba(0, 0, 0, 0.2),
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.51),
    0px 4px 16px 0px rgba(255, 98, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.btn--orange:hover {
  background-color: rgba(230, 88, 0, 1);
  box-shadow:
    inset 0px -2px 1px 0px rgba(0, 0, 0, 0.2),
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.51),
    0px 6px 20px 0px rgba(255, 98, 0, 0.6);
}

.btn--partner {
  width: 330.25px;
  max-width: 100%;
}

.btn--cyan {
  background-color: var(--color-accent-cyan);
  color: var(--color-text-light);
}

.btn--cyan:hover {
  background-color: var(--color-accent-cyan-hover);
}

/* Lists */
.list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list__item {
  position: relative;
  padding-left: 1.75rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
}

.list--square .list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-white);
}

.list--dot .list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--color-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/images/primary-bg.png') center center / cover no-repeat;
  overflow: hidden;
  text-align: center;
  padding: var(--section-padding-y) 0;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  filter: blur(50px);
  opacity: 0.4;
  border-radius: 50%;
}

.hero__shape--blue {
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--color-accent-cyan);
}

.hero__shape--orange {
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--color-accent-orange);
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.logo__icon {
  width: clamp(100px, 15vw, 150px);
  height: auto;
}

.logo__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  line-height: 1;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 2vw, 1.5rem);
  font-weight: 400;
  font-family: var(--font-primary);
  letter-spacing: 0.1rem;
  color: var(--color-text-light);
  opacity: 0.9;
  text-transform: uppercase;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */
.intro {
  text-align: center;
  background-color: var(--color-white);

  padding-top: 160px;
  padding-bottom: 160px;
}

.intro__container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

  background: url('../assets/images/intro-bg.png') center center / cover no-repeat;
}

.intro__text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--color-text-body);
}

.intro__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   Stages Section
   ========================================================================== */
.timeline {
  position: relative;
}

/* 3-row subgrid: titles | dots-line | dates, repeated 4 columns */
.timeline__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  position: relative;
}

/* Each item occupies one column, spans all 3 rows via display:contents */
.timeline__item {
  display: contents;
}

.timeline__item:nth-child(1) .timeline__title,
.timeline__item:nth-child(1) .timeline__dot,
.timeline__item:nth-child(1) .timeline__date {
  grid-column: 1;
}

.timeline__item:nth-child(2) .timeline__title,
.timeline__item:nth-child(2) .timeline__dot,
.timeline__item:nth-child(2) .timeline__date {
  grid-column: 2;
}

.timeline__item:nth-child(3) .timeline__title,
.timeline__item:nth-child(3) .timeline__dot,
.timeline__item:nth-child(3) .timeline__date {
  grid-column: 3;
}

.timeline__item:nth-child(4) .timeline__title,
.timeline__item:nth-child(4) .timeline__dot,
.timeline__item:nth-child(4) .timeline__date {
  grid-column: 4;
}

/* Row 1: titles — bottom-aligned so dots always sit at same level */
.timeline__title {
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  font-weight: 800;
  color: var(--color-accent-orange);
  line-height: 1.35;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0.75rem 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 7rem;
  grid-row: 1;
}

/* Row 2: dot row — contains both dot and line */
.timeline__dot {
  grid-row: 2;
  width: 69px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  justify-self: center;
}

.timeline__dot img {
  display: block;
  width: 69px;
  height: 69px;
}


/* Row 3: dates */
.timeline__date {
  grid-row: 3;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 400;
  color: var(--color-text-light);
  text-align: center;
  padding: 1.5rem 0.5rem 0;
  opacity: 0.85;
}

.timeline {
  position: relative;
}

/* Horizontal line absolutely positioned:
   - vertical: title min-height (7rem) + half dot (34.5px) = dot centre
   - horizontal: from centre of col-1 (12.5%) to centre of col-4 (87.5%) */
.timeline__list {
  position: relative;
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: calc(7rem + 34.5px);
  height: 2px;
  background-color: var(--color-accent-cyan);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .timeline__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .timeline__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
  }

  .timeline__title {
    min-height: auto;
    padding: 0;
    align-items: center;
    order: 2;
    flex: 1;
  }

  .timeline__dot {
    order: 1;
    flex-shrink: 0;
    justify-self: auto;
  }

  .timeline__dot::before,
  .timeline__dot::after {
    display: none;
  }

  .timeline__date {
    padding: 0;
    order: 3;
    white-space: nowrap;
  }
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits__container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.benefits__content {
  width: 100%;
  max-width: 880px;
  text-align: left;
}

@media (max-width: 1200px) {
  .section--benefits {
    padding: 100px 80px 90px;
  }

  .benefits__content {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .section--benefits {
    padding: 64px 32px 56px;
  }

  .benefits__content {
    width: 100%;
  }
}

.benefits__subtitle {
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefits__subtitle--center {
  text-align: center;
}

.benefits__lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.benefits__text .list {
  gap: 0;
}

.benefits__text .list__item {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-white);
  padding-left: 1.5rem;
}

.benefits__text .list--dot .list__item::before {
  width: 6px;
  height: 6px;
  top: 0.5rem;
  background-color: var(--color-white);
}

/* ==========================================================================
   Nominations Section
   ========================================================================== */
.nominations {
  background-color: var(--color-bg-cards);
  padding-top: 160px;
  padding-bottom: 160px;
}

.nominations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .nominations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nominations__grid {
    grid-template-columns: 1fr;
  }
}

.nomination-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 32.212%, rgba(250, 250, 250, 1) 100%);
  border: none;
  border-bottom: 5px solid rgba(207, 207, 207, 1);
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 6px 10.8px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 37px;
  height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 19px;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nomination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nomination-card__icon {
  width: 39px;
  height: 43px;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.nomination-card__icon img {
  width: 39px;
  height: 43px;
  display: block;
}

.nomination-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.nomination-card__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  line-height: 1.2;
}

.nomination-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.nominations__grand {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.nomination-card--grand {
  background: linear-gradient(180deg, rgba(51.49, 51.49, 51.49, 1) 0%, rgba(29.42, 29.42, 29.42, 1) 100%);
  border: none;
  border-bottom: 5px solid rgba(0, 0, 0, 1);
  width: calc(33.333% - 1rem);
  padding: 30px 37px;
  height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 19px;
  box-sizing: border-box;
  box-shadow: 0px 6px 10.8px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .nomination-card--grand {
    width: calc(50% - 0.75rem);
  }
}

@media (max-width: 600px) {
  .nomination-card--grand {
    width: 100%;
  }
}

.nomination-card__title--gold {
  color: var(--color-accent-gold);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.nomination-card__desc--light {
  color: #e6e6e6;
}

/* ==========================================================================
   Conditions Section
   ========================================================================== */

.conditions {
  background: url('../assets/images/conditions-bg.png') center center / cover no-repeat;
}

.conditions__container {
  max-width: 1000px;
}

.conditions__list {
  margin-bottom: 3.5rem;
}

.conditions__list .list__item {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: normal;
}

.conditions__list .list__item a {
  color: var(--color-accent-cyan);
  text-decoration: underline;
}

.conditions__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.btn--conditions {
  flex: 1;
  max-width: 330px;
  background: rgba(0, 194, 255, 1);
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  padding: 21px 40px 20px 40px;
  border-radius: 10px;
  box-shadow:
    inset 0px -2px 1px 0px rgba(0, 0, 0, 0.2),
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.51),
    0px 4px 16px 0px rgba(0, 194, 255, 0.15);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.btn--conditions:hover {
  background: rgba(0, 180, 240, 1);
  box-shadow:
    inset 0px -2px 1px 0px rgba(0, 0, 0, 0.2),
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.51),
    0px 6px 20px 0px rgba(0, 194, 255, 0.25);
}

@media (max-width: 768px) {
  .conditions__actions {
    flex-wrap: wrap;
  }

  .btn--conditions {
    flex: 1 1 200px;
  }
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
  background: var(--gradient-partners);
}

.partners__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.partners__actions {
  align-self: center;
}

/* ==========================================================================
   Committee & Experts Sections
   ========================================================================== */
.committee {
  background: url('../assets/images/committee-bg.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 160px;
}

.committee__container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.committee__title {
  margin-bottom: 5.625rem;
}

.committee-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.committee-member__avatar {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.committee-member__avatar--white {
  border: 4px solid var(--color-white);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.63);
}

.committee-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.committee-member__name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.committee-member__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

/* ==========================================================================
   Team Grids
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.experts {
  background: url('../assets/images/experts-bg.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 160px;
}

.experts__container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member__avatar {
  width: clamp(120px, 15vw, 160px);
  height: clamp(120px, 15vw, 160px);
  border-radius: 50%;
  padding: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-member__avatar--cyan {
  border: 4px solid var(--color-accent-cyan);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.63);
}

.team-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member__name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.team-member__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: url(../assets/images/footer-bg2.png) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}