/* COLORS */

.blue {
  color: rgb(57, 112, 216);
}

.black {
  color: rgb(37, 37, 39);
}

/* FONTS */


@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Thin.otf') format('opentype');
  font-weight: 100; /* Thin */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-ExtraLight.otf') format('opentype');
  font-weight: 200; /* Extra Light */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Light.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Regular.otf') format('opentype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Medium.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-SemiBold.otf') format('opentype');
  font-weight: 600; /* SemiBold */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Bold.otf') format('opentype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Black.otf') format('opentype');
  font-weight: 900; /* Black */
  font-style: normal;
}


/* HTML */

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "MADECarvingSoft", sans-serif;
  font-weight: 400;
  color: rgb(37, 37, 39);
  background-color: rgb(37, 37, 39);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: all 200ms ease;
  color: white;
}

a:hover {
  color: rgb(57, 112, 216);
}

li {
  list-style: none;
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100vw;
  align-items: center; 
  justify-content: center;
  min-height: 20vh;
  width: 100vw;
  background-color: rgb(37, 37, 39);
}

section {
  flex: 1;  
}


/* CONTAINER */

.main__container {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: url("../assets/bg-desktop.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section__container {
  width: 60vw;
  padding: 0vh 5vw 8vh 5vw;
  margin-top: 8vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.news__container {
  width: 60vw;
  padding: 5% 2%;
  margin-top: 8vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.news__content-box {
  padding: 0 3%;
  max-width: 50%;
  text-align: justify;
}

.title__container {
  width: 50vw;
  padding: 8vh 5vw;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.content__container--news {
  display: flex;
  flex-direction: row;
}

.content__container--row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.content__container--col {
  display: flex;
  flex-direction: column;
}

.indexing__container {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 1rem 1rem;
  gap: 1rem;
}

.section__header {
  padding: 7vh 0;
  cursor: default;
}

.hidden-box {
  height: 10vh;
  width: 50vw;
}

/* FLEX BOX */

.center {
  justify-content: center;
}

.span {
  justify-content: space-between;
}

.even {
  justify-content: space-evenly;
}

.end {
  justify-content: end;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

/* SPACING */

.my-2 {
  margin: 2 rem 0;
}

.px-2 {
  padding: 0 2rem;
}

.g-05 {
  gap: 0.5rem;
}

.g-1 {
  gap: 1rem;
}

.g-5 {
  gap: 5rem;
}

/* CURSORS */

.pointer {
  cursor: pointer;
}

/* TEXT STYLES */
.t-title {
  font-size: 3rem;
  text-align: center;
}

.t-title--news {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.t-date {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.t-bullet {
  font-size: 1.5rem;
  font-weight: 900;
}

.t-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 1rem 0;
}

.t-text {
  font-size: 1.25rem;
}

.t-link {
  font-weight: 500;
  color: rgb(58, 107, 214);;
}

.t-link:hover {
  color: rgb(156, 186, 250);;
}

.t-footer {
  font-size: 0.75rem;
  color: white;
}

.t-copyright {
  font-size: 0.75rem;
  color: #919191;
}

.t-l {
  font-size: 1.3rem;
}

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

.t--end {
  text-align: end;
}

.t--justify {
  text-align: justify;
}

.t--w-500 {
  font-weight: 500;
}

.t--w-700 {
  font-weight: 700;
}

.t--w-900 {
  font-weight: 900;
}

.colored {
  color: white;
}

/* IMAGES */

.img__header--container {
  width: 100vw;
  height: 70vh;
}

.img__container--footer {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img__container--title {
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.img__container--contact {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.img__container--news {
  width: 100%;
  display: flex;
}

.img__container {
  /* height: 600px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.img--fit {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.invert {
  filter: invert(1);
}

.img--rounded {
  border-radius: 15px;
}

.logo {
  height: 5rem;
  width: auto;
  transition: 0.3s ease;
}

.logo:hover {
  filter: invert(0%);
  border-radius: 10%;
  background-color: transparent;
}

.img--invert {
  filter: invert(100%);
  background-color: #f4fffdff;
}

/* EMBEDDED VIDEO */

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 3rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-container {
  position: relative;
  height: 100vh; /* Full height of the viewport */
  overflow: hidden;
}

.background-image {
  position: fixed;
  top: 0vh;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/title-02.png") no-repeat center center/cover;
  z-index: 1;
  transition: filter 0.3s ease;
}

.content {
  height: 100vh;
  position: relative;
  z-index: 10;
}

.title__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  background: url("../assets/bg-mobile.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text__container--title {
  width: 60vw;
  margin: 2rem 0;
  color: white;
}

.t-landing-big {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin: 0.5rem 0;
}

.t-landing-bigger {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  margin: 0.5rem 0;
}

.t-landing-small {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}

.link-title {
  color: rgb(255, 0, 242);
}

.link-title:hover {
  color: rgb(141, 25, 135);
  font-size: 3.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  text-align: end;
  width: 30vw;
}

.footer-right {
  display: flex;
  flex-direction: column;
  width: 30vw;
}

.display-copyright {
  display: none;
}

.landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}