﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html, root, body
{
  width: 100vw;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #161616;
  overflow-x: hidden;
}

body
{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, p, span, a
{
  margin: 0;
  color: white;
  text-decoration: none;
}

header
{
  display: flex;
  justify-content: center;
}

.header-logo-container
{
  width: -webkit-fill-available;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 50px;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.header-text-container
{
  display: flex;
  flex-direction: column;
}

.header-text-container h4
{
  font-size: clamp(16px, 2vw + 1rem, 36px);
}

.header-text-container span
{
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: normal;
  font-style: italic;
}

main
{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

main .container
{
  width: -webkit-fill-available !important;
  margin: 50px;
}

main .container h1
{
  width: fit-content;
  position: relative;
  margin-bottom: 50px;
}

main .container h1::after
{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 125%;
  height: 3px;
  background-color: white;
}

main .container a
{
  text-decoration: underline;
  color: #d2ab67;
}

.news-title-container
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 10px;
}

.news-title-container span
{
  color: darkgray;
}

.images-container
{
  position: relative;
  width: 100vw;
  height: 500px;
  overflow: hidden;
}

.slide
{
  position: absolute;
  width: -webkit-fill-available !important;
  height: 100%;
  object-fit: cover;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
  z-index: 1;
}

.slide.active
{
  transform: translateX(0);
  z-index: 2;
}

.slide.exit
{
  transform: translateX(-100%);
  z-index: 1;
}

footer
{
  padding-top: 80px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ec2027;
}

footer .container
{
  width: -webkit-fill-available !important;
  margin: 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.footer-section-container
{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section-container p, span, a
{
  font-size: 14px;
}

.footer-section-container h3
{
  width: fit-content;
  position: relative;
}

.footer-section-container h3::after
{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 125%;
  height: 3px;
  background-color: white;
}

.footer-section-content-container
{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-logo-container
{
  max-width: 500px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-separator
{
  width: 100%;
  height: 1px;
  margin-top: 80px;
  margin-bottom: 20px;
  background-color: #d2ab67;
}

.copyright-message
{
  font-size: 12px;
}

@media (min-width: 1400px)
{
  .container
  {
    max-width: 1440px;
  }
}

@media (max-width: 1160px) and (min-width: 989px)
{
  footer > .container > :last-child
  {
    margin-left: 122.3px;
  }
}

@media (max-width: 586px)
{
  footer > .container > :first-child
  {
    flex-wrap: wrap;
  }
}

@media (max-width: 759px) and (min-width: 587px)
{
  footer > .container > :last-child
  {
    margin-left: 122.3px;
  }
}

@media (max-width: 988px) and (min-width: 587px)
{
  footer > .container > :nth-child(2)
  {
    margin-left: 122.3px;
  }
}