@font-face {
  font-family: "Abel";
  src: url("../fonts/Abel-Regular.ttf") format("truetype");
}
:root {
  --color-first: #b3a55b;
  --color-bg: #fcfcfc;
  --color-text: black;
  --color-text-secondary: #555;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --transition-default: all 0.3s ease;
}

* {
  font-family: "Abel", sans-serif;
  box-sizing: border-box;
  /* margin: 0;
  padding: 0; */
}
html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
ul.list {
  list-style-type: initial;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}
strong {
  font-weight: bold;
}

.lucide {
  width: 70px;
  height: 70px;
  stroke: black;
}
.input-error {
  border: 1px solid red !important;
}

.title {
  color: var(--color-first);
  text-align: center;
  margin: 30px 0 50px;
  font-size: 40px;
  font-weight: 200;
  text-transform: uppercase;
}

.title__sub {
  color: var(--color-first);
  font-size: 25px;
  font-weight: 200;
}

.header__lang {
  width: auto;
  min-width: 40px;
  padding: 2px 5px;
  font-size: 14px;
  cursor: pointer;
  border-color: #ddd;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  text-align: center;
}

.header__lang:focus {
  border-color: var(--color-first);
  box-shadow: 0 0 0 0.25rem rgba(179, 165, 91, 0.25);
}

/* Content container */
.content {
  color: var(--color-text);
  font-size: 18px;
  background-color: var(--color-bg);
  padding: 50px;
  min-height: 100vh;
}

.content-container {
  padding: 0 100px;
}
.text-warning {
  color: var(--color-first);
}
strong {
  font-weight: 800;
  color: inherit;
}

hr {
  width: 20%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: var(--color-first);
  border: none;
}

@media screen and (max-width: 768px) {
  .header__nav__list {
    gap: 10px;
    margin-top: 15px;
  }
  
  .header__lang {
    margin-left: 0;
  }

  .title {
    font-size: 30px;
    margin: 20px 0;
  }
  .title__sub {
    font-size: 20px;
  }
  .content {
    padding: 20px;
  }
  .content-container {
    padding: 0 20px;
  }
}

/* ==========================================================================
   COMPONENTS - HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background-color: white !important;
  transition: var(--transition-default);
}

.header .nav-link:not(.button) {
  color: black !important;
}

.header .nav-link:not(.button):hover {
  color: var(--color-first) !important;
}

.scrolled .header {
  border-bottom: 1px solid #ddd;
}
.header__logo {
  width: 230px;
  height: 55px;
}

.header__nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.header__nav .button {
  display: block;
  position: relative;
  border: 0;
  padding: 8px 15px;
  color: white !important;
  background-color: var(--color-first);
  z-index: 1;
  overflow: hidden;
}

.header__nav .button::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -20px;
  background-color: var(--color-first);
  filter: brightness(0.7);
  height: 150px;
  width: 150px;
  z-index: -1;
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-default);
}

.header__nav .button:hover::after {
  transform: scale(100%);
}

/* ==========================================================================
   COMPONENTS - FOOTER
   ========================================================================== */
.footer {
  text-align: center;
  width: 680px;
  margin: 100px auto 0;
}
.footer__container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.footer__social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 30px;
}
.footer__social {
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.footer__logo {
  width: 300px;
}
.footer__podcast {
  width: 120px;
  height: fit-content;
  border-radius: 5px;
}
.footer__expertcyber {
  width: 150px;
  height: fit-content;
}
.footer .lucide {
  width: 40px;
  height: 40px;
  fill: black;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media screen and (max-width: 768px) {
  .content-container {
    padding: 0 20px;
  }

  .header img {
    width: 170px;
  }
  .footer {
    width: 100%;
  }
  .footer__container {
    flex-direction: column;
  }
}
