* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
}

body,
html {
  width: 100%;
  height: 100%;
  background-color: #101010;
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #101010;
}
@media (max-width: 768px) {
  .main-container {
    height: auto;
    min-height: 100svh;
  }
}
.main-container .cookie-consent {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.main-container .cookie-consent .cookie-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 95%;
  background-color: #FFFFFF;
  border-radius: 2px;
  padding: 30px;
}
.main-container .cookie-consent .cookie-content p {
  color: #696969;
  font-size: 0.813rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.main-container .cookie-consent .cookie-content p a {
  color: #3860BE;
  font-weight: 700;
}
.main-container .cookie-consent .cookie-content .cookie-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.main-container .cookie-consent .cookie-content .cookie-buttons button {
  background-color: #004EB4;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  min-width: 135px;
  padding: 12px 10px;
  font-size: 0.813rem;
  font-weight: 700;
  border-radius: 2px;
}
.main-container .cookie-consent .cookie-content .cookie-buttons button:hover {
  opacity: 0.8;
}

.container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex: 1;
  background-color: #101010;
  height: calc(100vh - 54px);
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: 100svh;
  }
}
.container .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container a {
  height: calc(100vh - 54px);
  width: 33.2%;
}
@media (max-width: 768px) {
  .container a {
    height: 33.33333svh;
    width: 100%;
  }
}
.container a .section {
  flex: 1;
  position: relative;
  height: 100%;
}
.container a .section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container a .section .desktop {
  display: block;
}
@media (max-width: 768px) {
  .container a .section .desktop {
    display: none;
  }
}
.container a .section .mobile {
  display: none;
}
@media (max-width: 768px) {
  .container a .section .mobile {
    display: block;
  }
}
.container a .section .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
}
@media (max-width: 768px) {
  .container a .section .overlay {
    top: 46%;
  }
}
.container a .section .overlay #studio-tour-logo,
.container a .section .overlay #newsroom-logo,
.container a .section .overlay #max-logo {
  transition: transform 0.3s ease-in-out;
  max-width: 100%;
}
@media (max-width: 768px) {
  .container a .section .overlay #studio-tour-logo,
  .container a .section .overlay #newsroom-logo,
  .container a .section .overlay #max-logo {
    transition: transform 0.5s ease-in-out;
  }
}
.container a .section .overlay #studio-tour-logo {
  width: 160px;
}
@media (max-width: 768px) {
  .container a .section .overlay #studio-tour-logo {
    width: 110px;
  }
}
.container a .section .overlay #newsroom-logo {
  width: 255px;
}
@media (max-width: 768px) {
  .container a .section .overlay #newsroom-logo {
    width: 240px;
  }
}
.container a .section .overlay #max-logo {
  width: 175px;
}
@media (max-width: 768px) {
  .container a .section .overlay #max-logo {
    width: 130px;
  }
}
@media (max-width: 768px) {
  .container a .section #overlay-1 {
    top: 40%;
  }
}
.container a .section:hover .overlay img {
  transform: scale(1.25);
}
.container a .section:hover .shadow {
  opacity: 1;
}
.container a .section:hover .arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .container a .section:hover .overlay img {
    transform: none;
  }
  .container a .section:hover .shadow {
    opacity: 0;
  }
  .container a .section:hover .arrow {
    opacity: 0;
  }
}
.container a .section .text-container {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .container a .section .text-container {
    bottom: 20px;
  }
}
.container a .section .text-container p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1920px) {
  .container a .section .text-container p {
    font-size: 18px;
  }
}
@media (max-width: 1440px) {
  .container a .section .text-container p {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .container a .section .text-container p {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .container a .section .text-container p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .container a .section .text-container p {
    font-size: 16px;
  }
}
.container a .section .text-container .text-transition {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
  font-size: 12px;
  font-weight: 400;
  margin: 6px 0;
}
@media (max-width: 1920px) {
  .container a .section .text-container .text-transition {
    font-size: 12px;
  }
}
@media (max-width: 1440px) {
  .container a .section .text-container .text-transition {
    font-size: 10px;
  }
}
@media (max-width: 1280px) {
  .container a .section .text-container .text-transition {
    font-size: 9px;
  }
}
@media (max-width: 1024px) {
  .container a .section .text-container .text-transition {
    font-size: 8px;
  }
}
@media (max-width: 768px) {
  .container a .section .text-container .text-transition {
    font-size: 10px;
  }
}
.container a .section .text-container .see-more-container {
  display: none;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .container a .section .text-container .see-more-container {
    display: flex;
    margin-top: unset;
  }
  .container a .section .text-container .see-more-container img {
    width: 10px;
    transition: transform 0.3s ease-in-out;
  }
  .container a .section .text-container .see-more-container p {
    font-size: 12px;
    font-weight: 400;
  }
}
.container a .section .shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .container a .section .shadow {
    height: 100%;
  }
}
.container a .section .arrow {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: auto;
  height: 62px;
}
@media (max-width: 768px) {
  .container a .section .arrow {
    display: none;
  }
}
.container a .section #arrow-1 {
  bottom: 18%;
}
.container a .section #arrow-2 {
  bottom: 18%;
}
.container a .section #arrow-3 {
  bottom: 22.5%;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #101010;
  color: #ffffff;
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 54px;
}
@media (max-width: 768px) {
  footer {
    position: relative;
    padding: 0 12px;
    flex-direction: column;
    justify-content: center;
    height: unset;
  }
}
footer .copyright-container {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  footer .copyright-container {
    gap: 12px;
    order: 2;
    padding-bottom: 20px;
  }
}
footer .copyright-container img {
  width: 28px;
}
@media (max-width: 768px) {
  footer .copyright-container img {
    width: 20px;
  }
}
footer .copyright-container p {
  font-size: 9px;
  font-weight: 300;
}
footer .socials-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  footer .socials-container {
    gap: 40px;
    order: 1;
    padding: 20px 0;
  }
}
footer .socials-container a img {
  height: 19px;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  footer .socials-container a img {
    height: 20px;
  }
}
footer .socials-container a:hover img {
  transform: scale(1.3);
}/*# sourceMappingURL=style.css.map */