@font-face {
  font-family: "Tungsten Book";
  src: url(fonts/Tungsten-Book.ttf);
}

@font-face {
  font-family: "Tungsten Compressed Book";
  src: url(fonts/TungstenCompressed-Book.ttf);
}

@font-face {
  font-family: "Tungsten";
  src: url(fonts/Tungsten-Bold.ttf);
}

@font-face {
  font-family: "Noto Sans SemiBold";
  src: url(fonts/NotoSans-SemiBold.ttf);
}

:root {
  --cPrimary: #eb6431;
  --cWhite: #fff;
  --cBlack: #000;
  --fTungsten: "Tungsten";
  --fTungstenCompBook: "Tungsten Compressed Book";
  --fTungstenBook: "Tungsten Book";
  --fNotoSansSemiBold: "Noto Sans SemiBold";
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= FULL SITE =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

* {
  padding: 0;
  margin: 0;
}

section {
  overflow: hidden;
  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cPrimary);
}

::-webkit-scrollbar-thumb {
  background: var(--cBlack);
}

::-webkit-scrollbar-thumb:hover {
  background: gray;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= SECTIONS =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.welcome {
  background: url(images/backgrounds/bg-1.png) center / cover no-repeat;
  height: 97vh;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= WELCOME-nav =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--cWhite);
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  height: 100px;
}

nav img {
  height: 7cap;
}

nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 25px;
}

nav .logo p {
  font-size: 1.3rem;
  font-family: var(--fNotoSansVariable);
  font-weight: 400;
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--cBlack);
  margin: 0 2.5px 0;
  font-size: 2.2rem;
  font-family: var(--fTungsten);
}

.btn-hidden {
  display: none;
}

nav button {
  background-color: var(--cPrimary);
  border-radius: 50px;
  border: none;
  height: 50px;
  width: 230px;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--cWhite);
  font-weight: bold;
  font-family: var(--fTungsten);
  cursor: pointer;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= INFO SLIDER =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.n-info-slider {
  background: rgb(2, 0, 36);
  background: linear-gradient(270deg, rgba(2, 0, 36, 1) 0%, rgba(253, 88, 20, 1) 80%);
  color: var(--cWhite);
  padding: 0.1% 0;
}

.n-info-slider-wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.n-info-slider-wrapper span {
  font-size: 2rem;
  font-family: var(--fTungsten);
  color: var(--cWhite);
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap;
  -webkit-animation: marquee 5s linear infinite;
  animation: marquee 5s linear infinite;
  max-width: none;
  margin-right: 1.5%;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= WHEN =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.when {
  background: url(images/backgrounds/bg-2.jpg) center / cover no-repeat;
  position: relative;
  padding: 100px 0;
  min-height: calc(100% + 150px);
}

.when-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.when h1 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 10%;
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
}

.when span {
  color: var(--cPrimary);
}

.when h1 span:last-of-type {
  color: var(--cPrimary);
  text-decoration: underline;
}

.when p {
  color: var(--cWhite);
  font-size: 1.3rem;
  width: 800px;
  font-family: var(--fNotoSansSemiBold);
}

.when p span {
  color: var(--cPrimary);
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= SHORT INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.short-info {
  background-color: var(--cPrimary);
}

.short-info-wrapper {
  display: flex;
  justify-content: space-evenly;
  padding: 1.5% 0;
}

.short-info-wrapper h3 {
  color: white;
  font-size: 2rem;
  font-family: var(--fTungsten);
}

.s-i-icon {
  height: 200px;
  background-color: red;
}

.date,
.time,
.location {
  display: inline-flex;
  gap: 20px;
  align-items: center;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= VIDEO section =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.video-wrapper {
  width: 100%;
  height: 400px;
  background-color: blue;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--fTungsten);
  font-size: 5rem;
  color: var(--cPrimary);
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= HOST & SPONSORS section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.host-sponsors {
  background: url(images/backgrounds/bg-3.jpg) center / cover no-repeat;
  position: relative;
  padding: 130px 0;
  min-height: calc(100% + 150px);
}

.host-sponsors h1 {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
  text-align: center;
}

.host-sponsors h1 span {
  color: var(--cPrimary);
}

.h-s-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 100px;
}

.h-s-img-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.hsiw {
  width: 300px;
  height: 300px;
  background-color: var(--cWhite);
  position: relative;
  border: 2px solid var(--cPrimary);
}

.hsiw img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h-s-1 {
  position: relative;
}

.h-s-sl {
  position: absolute;
  top: 0;
  left: 0;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=  PARTY PHOTO section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.party-photo {
  background: url("images/backgrounds/bg-4.jpg") center / cover no-repeat;
  position: relative;
  padding: 50px 0;
  min-height: calc(100% + 150px);
}

.p-p-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 5%;
  gap: 100px;
}

.party-photo h1 {
  color: var(--cBlack);
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
}

.party-photo h1 span {
  color: var(--cPrimary);
}

.p-p-image-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: fit-content;
  gap: 50px;
  margin: 0 auto;
}

.p-p-image {
  width: fit-content;
  position: relative;
}

.p-p-image h4 {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: var(--cWhite);
  text-transform: uppercase;
  font-family: var(--fTungstenCompBook);
  letter-spacing: 2px;
  font-size: 2.2rem;
}

.spinner-logo {
  position: absolute;
  left: 100%;
  top: 0;
  transform: translate(-50%, -50%);
}

.spinner {
  position: absolute;
  left: 60%;
  top: -38%;
  transform: translate(-50%, -50%);
  height: 23cap;
  animation: animName 25s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner-logo {
  height: 10cap;
}

.pp1 .spinner,
.pp1 .spinner-logo,
.pp2 .spinner,
.pp2 .spinner-logo {
  display: none;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=  JOIN EXCLUSIVE section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.exclusive {
  background: url(images/backgrounds/bg-5.jpg) bottom / cover no-repeat;
  position: relative;
  padding-bottom: 250px;
  min-height: calc(100% + 150px);
}

.exclusive-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 5%;
}

.exclusive-wrapper h1 {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 90%;
}

.exclusive-wrapper h1 span {
  color: var(--cPrimary);
}

.exclusive-wrapper h2 {
  color: var(--cWhite);
  font-size: 1.5rem;
  font-family: var(--fNotoSansSemiBold);
  width: 1133px;
  text-align: center;
}

.exclusive-wrapper a {
  background-color: var(--cPrimary);
  color: var(--cWhite);
  border-radius: 150px;
  font-family: var(--fTungstenBook);
  font-weight: bold;
  text-decoration: none;
  padding: 17px 113px;
  font-size: 2.6rem;
  text-transform: uppercase;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= THE VENUE section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.venue {
  background-color: var(--cBlack);
  color: var(--cWhite);
}

.venue-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.venue-wrapper h1 {
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
}

.venue-wrapper h2 {
  color: var(--cWhite);
  font-size: 4rem;
  font-family: var(--fTungstenBook);
  letter-spacing: 3px;
  margin-bottom: 4%;
}

.venue-des {
  width: 55%;
  font-family: var(--fNotoSansSemiBold);
  font-size: 1.2rem;
}

.venue-des p {
  margin-bottom: 2%;
}

.venue-des p:last-of-type {
  font-weight: bolder;
  font-size: 1.4rem;
  color: var(--cPrimary);
}

.venue-wrapper h1 span {
  color: var(--cPrimary);
}

html {
  scroll-behavior: auto !important;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= WHY ATTEND section =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.why-attend {
  background: url(images/backgrounds/bg-6.jpg) center / cover no-repeat;
  position: relative;
  padding: 50px 0 200px 0;
  min-height: calc(100% + 150px);
}

.w-a-wrapper h1:nth-child(1) {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 5% 0;
}

.w-a-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.w-a-card-wrapper h1 {
  color: var(--cPrimary);
  font-family: var(--fTungsten);
  font-size: 3.2rem;
  text-align: center;
  min-height: 130px;
}

.w-a-card-wrapper p {
  color: var(--cWhite);
  font-family: var(--fNotoSansSemiBold);
  font-size: 1.1rem;
  text-align: center;
}

.w-a-image-wrapper {
  height: 100px;
  width: 100%;
  position: relative;
}

.w-a-image-wrapper img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.card {
  position: relative;
  width: 280px;
  height: 400px;
  border: 2px solid var(--cPrimary);
  border-radius: 15px;
  padding: 30px 15px;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= WITH WHO section =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.with-who {
  background: url(images/backgrounds/bg-7.jpg) center / cover no-repeat;
  position: relative;
  padding: 100px 0 300px;
  min-height: calc(100% + 150px);
}

.w-h-wrapper {
  color: var(--cWhite);
}

.w-h-left {
  width: min(520px, 50%);
  padding-left: 65%;
  transform: translateX(-50%);
}

.w-h-left h1 {
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
  padding: 5% 0;
}

.w-h-left span {
  color: var(--cPrimary);
  font-weight: bold;
}

.w-h-left p {
  color: var(--cWhite);
  font-family: var(--fNotoSansSemiBold);
  font-size: 1.5rem;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= AGENDA section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.agenda {
  background: url("images/backgrounds/bg-8.jpg") top left / cover no-repeat;
  padding: 100px 0;
  min-height: calc(100% + 150px);
  position: relative;
  overflow-y: visible;
}

.a-g-wrapper {
  display: flex;
  flex-direction: column;
}

.a-text-wrapper {
  width: min(630px, 50%);
  position: relative;
  left: 52%;
  padding: 5% 0;
}

.a-text-wrapper h1 {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-weight: 600;
  font-size: 5rem;
  padding-bottom: 1%;
  text-transform: uppercase;
}

.a-text-wrapper p {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-size: 3rem;
  padding: 10% 0;
}

.a-text-wrapper p span {
  color: var(--cPrimary);
  font-weight: bold;
}

.a-text-wrapper p:nth-child(3),
.a-text-wrapper p:nth-child(4) {
  padding: 8% 0;
  border-top: 3px solid var(--cPrimary);
  border-bottom: 3px solid var(--cPrimary);
}

.a-g-wrapper a {
  background-color: var(--cPrimary);
  color: var(--cWhite);
  border-radius: 150px;
  font-family: var(--fTungstenBook);
  font-weight: bold;
  text-decoration: none;
  padding: 17px 113px;
  font-size: 2.6rem;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= TELEGRAM GROUP section =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.telegram-group {
  background-color: var(--cPrimary);
  position: relative;
  padding: 5% 0;
}

.tg-wrapper {
  color: var(--cWhite);
  position: relative;
  width: 100%;
  text-align: center;
}

.tg-wrapper h1 {
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 7rem;
  text-transform: uppercase;
  padding-top: 5%;
}

.tg-wrapper p {
  color: var(--cWhite);
  font-size: 1.5rem;
  width: 60%;
  font-family: var(--fNotoSansSemiBold);
  margin: 0 auto;
  padding-top: 4%;
}

.tg-link {
  padding: 6% 0;
}

.tg-wrapper a {
  color: var(--cWhite);
  border: 2px solid var(--cWhite);
  border-radius: 150px;
  font-family: var(--fTungstenBook);
  font-weight: bold;
  text-decoration: none;
  padding: 17px 113px;
  font-size: 2.6rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 5%;
}

.telegram-group img {
  position: absolute;
  top: 5%;
  left: 85%;
  transform: translate(-50%, -50%);
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= FAQS section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.faqs {
  background: url(images/backgrounds/bg-9.jpg) top left / cover no-repeat;
  padding: 10px 0;
  min-height: calc(100% + 150px);
  position: relative;
  overflow-y: hidden;
}

.f-wrapper {
  color: var(--cWhite);
  width: 100%;
  margin: 0 auto;
  max-width: 1061px;
  padding: 5% 0;
}

.f-wrapper h1 {
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 4.8rem;
  text-transform: uppercase;
  padding-bottom: 3%;
  text-align: center;
}

.f-wrapper span {
  color: var(--cPrimary);
}

.details {
  --padding: 25px;
  border-radius: 4px;
  background-color: var(--cPrimary);
  width: min(100% - 50px, 768px);
  margin: 0 auto;
}

.details + .details {
  margin-top: 15px;
}

.details__title {
  --width: 20px;
  --height: 3px;
  --radius: 1px;
  --color: currentColor;
  font-family: var(--fTungstenBook);
  font-weight: bold;
  font-size: 41px;
  letter-spacing: 2px;
  line-height: 31px;
  margin: 0;
  padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.details__title:before,
.details__title:after {
  content: "";
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all 0.2s ease-in-out;
  border: 0.5px solid var(--cWhite);
  border-radius: 50%;
}

.details__title:after {
  rotate: 90deg;
}

.details__container[open] .details__title:before {
  rotate: 135deg;
}

.details__container[open] .details__title:after {
  rotate: 225deg;
}

.details__summary::marker {
  content: "";
}

.details__desc {
  font-family: var(--fTungstenBook);
  font-size: 35px;
  letter-spacing: 0px;
  visibility: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc {
  visibility: visible;
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner {
  min-height: 0;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=  SECURE YOUR SPOT section =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.secure-spot {
  background: url(images/backgrounds/bg-10.jpg) center / cover no-repeat;
  padding: 6% 0;
}

.s-s-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  width: 100%;
  text-align: center;
}

.s-s-wrapper h1 {
  color: var(--cWhite);
  font-family: var(--fTungstenBook);
  font-weight: 700;
  font-size: 9rem;
  text-transform: uppercase;
  line-height: 90%;
}

.s-s-wrapper h1 span {
  color: var(--cPrimary);
}

.s-s-wrapper h2 {
  color: var(--cWhite);
  font-size: 1.5rem;
  width: 70%;
  font-family: var(--fNotoSansSemiBold);
  margin: 0 auto;
}

.s-s-wrapper a {
  background-color: var(--cPrimary);
  color: var(--cWhite);
  border-radius: 150px;
  font-family: var(--fTungstenBook);
  font-weight: bold;
  text-decoration: none;
  padding: 17px 113px;
  font-size: 2.6rem;
  text-transform: uppercase;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= FOOTER(MEDIA, PARTNERS, CONTACTS) section  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.media {
  background-color: var(--cBlack);
}

.media-wrapper h3 {
  background-color: var(--cPrimary);
  font-family: var(--fTungstenBook);
  font-size: 2.4rem;
  padding: 0.5% 0;
  position: relative;
  left: 20%;
  text-indent: 20px;
}

.media-img-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  float: right;
  padding: 50px 0;
  width: 80%;
}

.media-img-wrapper .media-img img {
  width: 100%;
  height: 100px;
}

/* =-=-=-=-=-=-=-=-=-=-= CONTACT  =-=-=-=-=-=-=-=-=-=-= */

.contact {
  background-color: var(--cBlack);
}

.contact-wrapper h3 {
  background-color: var(--cPrimary);
  font-family: var(--fTungstenBook);
  font-size: 2.4rem;
  padding: 0.5% 0;
  position: relative;
  left: 20%;
  text-indent: 20px;
}

.contact-wrapper p,
.contact-wrapper a {
  padding: 50px 0 15px;
  color: var(--cWhite);
  font-family: var(--fNotoSansSemiBold);
  font-size: 1.4rem;
  text-indent: 20%;
}

.contact-social-wrapper {
  display: flex;
  align-items: start;
  gap: 25px;
}

.contact-social-wrapper {
  display: flex;
  gap: 25px;
  position: relative;
  left: 20%;
  padding: 25px 0 120px;
}

.contact-social-wrapper .social {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-color: red;
}

.contact-social-wrapper .social img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
