/****************************************************************************************/
/*************************** GLOBAL *****************************************************/
/****************************************************************************************/
.website-header {
  position: relative;
  z-index: 50;
}
.website-header .website-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(353deg, #494a94, rgb(177, 188, 241));
}
.website-header .website-logo-title img {
  width: 220px;
}
.website-header {
  /*************************** HEADER TOP ********************************************/
}
.website-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  position: relative;
  z-index: 20;
  background: linear-gradient(353deg, #5051a0, rgb(177, 188, 241));
}
.website-header {
  /*************************** BURGER ********************************************/
}
.website-header .burger-menu {
  background-color: #050816;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 55px;
  height: 65px;
  cursor: pointer;
}
.website-header .burger-menu .burger-icon {
  font-size: 1.5rem;
  color: white;
}
.website-header .burger-menu span {
  color: white;
}
.website-header {
  /*************************** NAV LINKS ***************************/
}
.website-header .nav-links {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.website-header .nav-links a {
  color: #050816;
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 1rem 1.5rem;
  text-decoration: none;
}
.website-header .nav-links .buy-dvd {
  color: rgb(234, 28, 28);
  font-weight: bold;
}
.website-header .nav-links.active {
  max-height: 700px;
}
.website-header {
  /*************************** HEADER RIGHT **************************************/
}
.website-header .header-right {
  display: flex;
  gap: 5px;
  align-items: center;
}
.website-header .header-right .search-bar,
.website-header .header-right .change-language {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 65px;
  background-color: #050816;
  color: white;
  position: relative;
  cursor: pointer;
}
.website-header .header-right .search-bar .search-close {
  display: none;
}
.website-header .header-right .search-bar.active .search-toggle {
  display: none;
}
.website-header .header-right .search-bar.active .search-close {
  display: block;
}
.website-header .header-right .search-bar.active .search-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.website-header .header-right .search-bar .search-menu {
  position: absolute;
  top: 65px;
  right: -85px;
  width: calc(100vw - 1rem);
  background: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.3s ease;
}
.website-header .header-right .search-bar .search-menu form {
  display: flex;
}
.website-header .header-right .search-bar .search-menu form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  outline: none;
}
.website-header .header-right .search-bar .search-menu form button {
  padding: 0 1rem;
  border: none;
  background-color: #050816;
  color: white;
  cursor: pointer;
}
.website-header .header-right .change-language .language-close {
  display: none;
}
.website-header .header-right .change-language .language-menu {
  position: absolute;
  top: 65px;
  right: 0;
  width: 250px;
  display: flex;
  flex-direction: column;
  background-color: #050816;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.website-header .header-right .change-language .language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}
.website-header .header-right .change-language .language-menu img {
  width: 18px;
  height: 18px;
}
.website-header .header-right .change-language.active .language-toggle {
  display: none;
}
.website-header .header-right .change-language.active .language-close {
  display: block;
}
.website-header .header-right .change-language.active .language-menu {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

/*************************** FOOTER *****************************************************/
.site-footer {
  background: linear-gradient(353deg, #5051a0, rgb(177, 188, 241));
  color: #000;
  padding: 3rem 1rem 1rem;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.site-footer .footer-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer-column h4 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #000;
}
.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-column li {
  margin-bottom: 0.6rem;
}
.site-footer .footer-column a,
.site-footer .footer-column p {
  color: #000;
  text-decoration: none;
}
.site-footer .footer-column a:hover {
  color: #050816;
}
.site-footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .footer-logo img {
  width: 140px;
  height: auto;
  display: block;
}
.site-footer .footer-bottom {
  text-align: center;
  font-weight: bold;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
}

/****************************************************************************************/
/*************************** TABLET *****************************************************/
/****************************************************************************************/
@media (min-width: 768px) {
  .website-header .header-top {
    padding: 0 1rem;
  }
  .website-header .burger-menu {
    width: 70px;
  }
  .site-footer .footer-container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .site-footer .footer-column {
    flex: 1;
    align-items: flex-start;
  }
  .site-footer .footer-logo {
    justify-content: flex-start;
  }
  .site-footer .footer-logo img {
    width: 160px;
  }
}
/****************************************************************************************/
/*************************** DESKTOP ****************************************************/
/****************************************************************************************/
@media (min-width: 1023px) {
  .website-header .header-top {
    padding: 0 3rem;
  }
  .website-header .burger-menu {
    display: none;
  }
  .website-header .nav-links {
    max-height: none;
    overflow: visible;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
  }
  .website-header .nav-links a {
    border: none;
    padding: 0;
  }
  .website-header .header-right {
    align-items: center;
    gap: 15px;
    margin-left: auto;
  }
  .website-header .search-bar,
  .website-header .change-language {
    flex-direction: row;
    width: auto;
    padding: 0 1rem;
  }
  .site-footer .footer-container {
    justify-content: space-between;
  }
  .site-footer .footer-column {
    flex: 1;
  }
  .site-footer .footer-logo img {
    width: 170px;
  }
}
/****************************************************************************************/
/*************************** GLOBAL *****************************************************/
/****************************************************************************************/
.burger-menu,
.search-bar,
.change-language {
  cursor: pointer;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.auth-page .auth-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.auth-page .auth-card h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.auth-page .auth-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-page .auth-card form label {
  color: #f0f4ff;
}
.auth-page .auth-card form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #bfcfff;
  background: #ffffff;
  color: #10204f;
  outline: none;
  transition: 0.3s;
}

.auth-card input:focus {
  border-color: #C19E1D;
  box-shadow: 0 0 5px rgba(193, 158, 29, 0.4);
}

.auth-card button {
  margin-top: 10px;
  padding: 10px;
  background: #C19E1D;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
}

.auth-card button:hover {
  background: #a88416;
  transform: translateY(-2px);
}

.error {
  color: #ffd6d6;
  margin-top: 5px;
}

.auth-card a {
  margin-top: 10px;
  text-align: center;
  color: #ffe082;
}

.auth-card a:hover {
  text-decoration: underline;
}

/****************************************************************************************/
/********************************* MOBILE FIRST  ****************************************/
/****************************************************************************************/
.team-title {
  text-align: center;
  color: white;
  margin-bottom: 1.8rem;
  position: relative;
  padding: 0 20px;
  padding-top: 4rem;
}

.team-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: white;
  margin: 12px auto 0;
  opacity: 0.5;
}

.team-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 20px;
}
.team-members .team-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-members .team-card h2 {
  color: white;
  margin-bottom: 12px;
  font-weight: 500;
}
.team-members .team-card img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.team-members .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/****************************************************************************************/
/******************************* MOD TABLET ********************************************/
/****************************************************************************************/
@media (min-width: 768px) {
  .team-title {
    margin-bottom: 2rem;
  }
  .team-members {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    align-content: start;
  }
}
/****************************************************************************************/
/******************************* MOD DESKTOP ********************************************/
/****************************************************************************************/
@media (min-width: 1023px) {
  .team-title {
    margin-bottom: 2.2rem;
  }
  .team-members {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    align-content: start;
  }
  .team-members .team-card {
    padding: 22px;
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .team-members .team-card:hover {
    transform: scale(1.1) translateY(-6px);
  }
  .team-members .team-card img {
    height: 420px;
  }
}
/****************************************************************************************/
/********************************* MOBILE FIRST  ****************************************/
/****************************************************************************************/
.team-detail {
  padding: 1.25rem;
}
.team-detail .team-detail-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  overflow: hidden;
  color: white;
  padding: 1.25rem;
  text-align: center;
}
.team-detail .team-detail-card h1 {
  margin-bottom: 0.5rem;
}
.team-detail .team-detail-card h2 {
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.team-detail .team-detail-card video,
.team-detail .team-detail-card img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}
.team-detail .team-detail-card video {
  display: block;
}
.team-detail .team-detail-card img {
  object-position: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.team-detail .team-detail-card p {
  text-align: left;
  line-height: 1.8;
}

/****************************************************************************************/
/******************************** MOD TABLET ********************************************/
/****************************************************************************************/
@media (min-width: 768px) {
  .team-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
  }
  .team-detail .team-detail-card .team-medias {
    display: flex;
    gap: 1.5rem;
    padding: 0 1.5rem;
    align-items: stretch;
  }
  .team-detail .team-detail-card .team-medias video,
  .team-detail .team-detail-card .team-medias img {
    width: 50%;
    height: 450px;
    object-fit: contain;
  }
}
/****************************************************************************************/
/******************************** MOD DESKTOP *******************************************/
/****************************************************************************************/
@media (min-width: 1023px) {
  .team-detail {
    max-width: 1100px;
  }
  .team-detail .team-detail-card {
    padding: 2rem;
  }
  .team-detail .team-detail-card .team-medias video,
  .team-detail .team-detail-card .team-medias img {
    height: 550px;
  }
}
.dvd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.dvd-card {
  display: flex;
  flex-direction: column;
  background-color: #252e4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  color: white;
  transition: transform 0.3s ease;
}
.dvd-card:hover {
  transform: translateY(-5px);
}
.dvd-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.dvd-card h2 {
  margin-bottom: 0.5rem;
}
.dvd-card p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.dvd-card form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dvd-card input[type=number] {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  width: 80px;
}
.dvd-card button {
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  background-color: #4f5bd5;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dvd-card button:hover {
  background-color: #3d49b1;
}

/* TABLET */
@media screen and (min-width: 768px) {
  .dvd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/* DESKTOP */
@media screen and (min-width: 1023px) {
  .dvd-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }
}
.cinema-page {
  padding: 2rem 1rem;
}
.cinema-page h1 {
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}
.cinema-page h2 {
  color: white;
  text-align: center;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.cinema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.movie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  background-color: #252e4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}
.movie-card:hover {
  transform: translateY(-5px);
}
.movie-card h3 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}
.movie-card a {
  display: block;
  width: 100%;
}
.movie-card img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.movie-card:hover img {
  transform: scale(1.02);
}

/*******************************************************************************/
/***************************** TABLET MOD **************************************/
/*******************************************************************************/
@media screen and (min-width: 768px) {
  .cinema-page {
    padding: 3rem 2rem;
  }
  .cinema-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/*******************************************************************************/
/***************************** DESKTOP MOD *************************************/
/*******************************************************************************/
@media screen and (min-width: 1023px) {
  .cinema-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  .cinema-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.movie-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
.movie-detail h1 {
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}
.movie-detail .movie-gallery {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.movie-detail .movie-gallery .gallery-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.movie-detail .movie-gallery .gallery-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.movie-detail .movie-gallery .gallery-container img.active {
  opacity: 1;
}
.movie-detail .movie-gallery .gallery-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: background 0.3s ease;
}
.movie-detail .movie-gallery .gallery-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}
.movie-detail .movie-gallery .gallery-btn.prev {
  left: 10px;
}
.movie-detail .movie-gallery .gallery-btn.next {
  right: 10px;
}
.movie-detail p {
  color: white;
  max-width: 900px;
  margin: 1rem auto 0;
  line-height: 1.7;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .movie-detail {
    padding: 2rem;
  }
  .movie-detail .movie-gallery .gallery-btn {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1023px) {
  .movie-detail {
    padding: 3rem 0;
  }
  .movie-detail .movie-gallery {
    max-width: 900px;
  }
}

.events-page {
  padding: 2rem 1rem;
}
.events-page h1 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.event-card {
  width: 100%;
  max-width: 350px;
  text-align: center;
}
.event-card h2 {
  color: white;
  margin-bottom: 1rem;
}
.event-card a {
  display: block;
  width: 100%;
}
.event-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.event-card:hover img {
  transform: scale(1.02);
}

/*******************************************************************************/
/***************************** TABLET MOD **************************************/
/*******************************************************************************/
@media screen and (min-width: 768px) {
  .events-page {
    padding: 3rem 2rem;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*******************************************************************************/
/***************************** DESKTOP MOD *************************************/
/*******************************************************************************/
@media screen and (min-width: 1023px) {
  .events-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*******************************************************************************/
/***************************** MOBILE FIRST ************************************/
/*******************************************************************************/
.event-detail-page {
  padding: 2rem 1rem;
}
.event-detail-page h1 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}
.event-detail-page .gallery {
  column-count: 1;
  column-gap: 1rem;
}
.event-detail-page .gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.event-detail-page .gallery img:hover {
  transform: scale(1.02);
}

/*******************************************************************************/
/***************************** TABLET MOD **************************************/
/*******************************************************************************/
@media screen and (min-width: 768px) {
  .event-detail-page {
    padding: 3rem 2rem;
  }
  .event-detail-page .gallery {
    column-count: 2;
    column-gap: 1.5rem;
  }
  .event-detail-page .gallery img {
    margin-bottom: 1.5rem;
  }
}
/*******************************************************************************/
/***************************** DESKTOP MOD *************************************/
/*******************************************************************************/
@media screen and (min-width: 1023px) {
  .event-detail-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  .event-detail-page .gallery {
    column-count: 3;
    column-gap: 2rem;
  }
  .event-detail-page .gallery img {
    margin-bottom: 2rem;
  }
}
/**********************************************************************/
/************************ DISTRIBUTION PAGE ***************************/
/**********************************************************************/
.distribution-page {
  padding: 2rem 1rem;
  color: white;
}
.distribution-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.distribution-page {
  /************************ INTRO ************************/
}
.distribution-page .distribution-introduction {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
}
.distribution-page .distribution-introduction h2 {
  margin-bottom: 1rem;
}
.distribution-page .distribution-introduction p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.distribution-page {
  /************************ CARD ************************/
}
.distribution-page .distribution-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.distribution-page .distribution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.distribution-page .distribution-card {
  /************************ IMAGE ************************/
}
.distribution-page .distribution-card .distribution-image {
  width: 100%;
  flex-shrink: 0;
}
.distribution-page .distribution-card .distribution-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}
.distribution-page .distribution-card {
  /************************ LOGO IMAGE ************************/
}
.distribution-page .distribution-card .distribution-image-logo img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  display: block;
}
.distribution-page .distribution-card {
  /************************ CONTENT ************************/
}
.distribution-page .distribution-card .distribution-content {
  display: flex;
  flex-direction: column;
}
.distribution-page .distribution-card .distribution-content h2 {
  margin-bottom: 0.75rem;
}
.distribution-page .distribution-card .distribution-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.distribution-page .distribution-card .distribution-content a {
  color: #4da3ff;
  text-decoration: underline;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
  word-break: break-word;
  transition: color 0.2s ease;
}
.distribution-page .distribution-card .distribution-content a:hover {
  color: #7fc1ff;
}
.distribution-page .distribution-card .distribution-content a:visited {
  color: #b38cff;
}
.distribution-page .distribution-card .distribution-content ul {
  padding-left: 1.5rem;
}
.distribution-page .distribution-card .distribution-content ul li {
  line-height: 1.8;
  margin-bottom: 0.6rem;
  opacity: 0.95;
}
.distribution-page {
  /************************ CONTACT ************************/
}
.distribution-page .distribution-contact {
  max-width: 900px;
  margin: 3rem auto 0 auto;
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
}
.distribution-page .distribution-contact h2 {
  margin-bottom: 1rem;
}
.distribution-page .distribution-contact p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.distribution-page .distribution-contact a {
  color: #4da3ff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.distribution-page .distribution-contact a:hover {
  color: #7fc1ff;
}
.distribution-page .distribution-contact a:visited {
  color: #b38cff;
}

/**********************************************************************/
/************************ TABLET **************************************/
/**********************************************************************/
@media (min-width: 768px) {
  .distribution-page {
    padding: 3rem 2rem;
  }
  .distribution-page .distribution-card {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }
  .distribution-page .distribution-card .distribution-image {
    width: 40%;
  }
  .distribution-page .distribution-card .distribution-image img {
    height: 100%;
    min-height: 260px;
  }
  .distribution-page .distribution-card .distribution-image-logo img {
    max-height: 260px;
  }
  .distribution-page .distribution-card .distribution-content {
    width: 60%;
    justify-content: center;
  }
  .distribution-page .distribution-contact {
    padding: 2.5rem 2rem;
  }
}
/**********************************************************************/
/************************ DESKTOP *************************************/
/**********************************************************************/
@media (min-width: 1023px) {
  .distribution-page {
    max-width: 1200px;
    margin: 0 auto;
  }
  .distribution-page .distribution-card {
    padding: 1.5rem;
  }
  .distribution-page .distribution-card .distribution-image {
    width: 38%;
  }
  .distribution-page .distribution-card .distribution-image img {
    min-height: 320px;
  }
  .distribution-page .distribution-card .distribution-image-logo img {
    max-height: 320px;
  }
  .distribution-page .distribution-card .distribution-content {
    width: 62%;
  }
  .distribution-page .distribution-contact {
    padding: 3rem 2rem;
  }
}
/**********************************************************************/
/************************ COMMUNICATION PAGE **************************/
/**********************************************************************/
.communication-page {
  padding: 2rem 1rem;
  color: white;
  /************************ HEADER ************************/
}
.communication-page .communication-header {
  text-align: center;
  margin-bottom: 3rem;
}
.communication-page .communication-header h1 {
  margin-bottom: 0.5rem;
}
.communication-page .communication-header h2 {
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.communication-page {
  /************************ SECTION ************************/
}
.communication-page .communication-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.communication-page .communication-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.communication-page .communication-section {
  /************************ IMAGE ************************/
}
.communication-page .communication-section .communication-image {
  width: 100%;
  flex-shrink: 0;
}
.communication-page .communication-section .communication-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.communication-page .communication-section .communication-image-movie img {
  max-height: 230px;
}
.communication-page .communication-section {
  /************************ CONTENT ************************/
}
.communication-page .communication-section .communication-content {
  display: flex;
  flex-direction: column;
}
.communication-page .communication-section .communication-content h3 {
  margin-bottom: 1rem;
}
.communication-page .communication-section .communication-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.communication-page .communication-section .communication-content ul {
  padding-left: 1.5rem;
}
.communication-page .communication-section .communication-content ul li {
  line-height: 1.8;
  margin-bottom: 0.6rem;
  opacity: 0.95;
}
.communication-page .communication-contact {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem;
  border-radius: 14px;
}
.communication-page .communication-contact h2 {
  margin-bottom: 1rem;
}
.communication-page .communication-contact p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.communication-page .communication-contact a {
  color: #4da3ff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.communication-page .communication-contact a:hover {
  color: #7fc1ff;
}
.communication-page .communication-contact a:visited {
  color: #b38cff;
}

/**********************************************************************/
/************************ TABLET MOD **********************************/
/**********************************************************************/
@media (min-width: 768px) {
  .communication-page {
    padding: 3rem 2rem;
  }
  .communication-page .communication-section {
    flex-direction: row;
    gap: 2rem;
  }
  .communication-page .communication-section.reverse {
    flex-direction: row-reverse;
  }
  .communication-page .communication-section .communication-image {
    margin: auto;
    width: 40%;
  }
  .communication-page .communication-section .communication-image-movie img {
    max-height: 280px;
  }
  .communication-page .communication-section .communication-content {
    width: 60%;
    justify-content: center;
  }
  .communication-page .communication-contact {
    padding: 2.5rem 2rem;
  }
}
/**********************************************************************/
/************************ DESKTOP MOD *********************************/
/**********************************************************************/
@media (min-width: 1023px) {
  .communication-page {
    max-width: 1200px;
    margin: 0 auto;
  }
  .communication-page .communication-section {
    padding: 1.5rem;
  }
  .communication-page .communication-section .communication-image {
    width: 38%;
  }
  .communication-page .communication-section .communication-content {
    width: 62%;
  }
  .communication-page .communication-contact {
    padding: 3rem 2rem;
  }
}
.cart-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  color: white;
}
.cart-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.cart-page p {
  margin-bottom: 0.5rem;
}
.cart-page .cart-empty {
  text-align: center;
  opacity: 0.8;
}
.cart-page .cart-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cart-page .cart-items .cart-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  background: #252e4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.cart-page .cart-items .cart-item:hover {
  transform: translateY(-3px);
}
.cart-page .cart-items .cart-item .cart-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}
.cart-page .cart-items .cart-item .cart-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-page .cart-items .cart-item .cart-info h2 {
  margin-bottom: 0.5rem;
}
.cart-page .cart-items .cart-item .cart-info .cart-price {
  font-weight: bold;
}
.cart-page .cart-items .cart-item .cart-info .cart-subtotal {
  color: #b8c0ff;
}
.cart-page .cart-items .cart-item .cart-info form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.cart-page .cart-items .cart-item .cart-info form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}
.cart-page .cart-items .cart-item .cart-info form input[type=number] {
  width: 70px;
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  text-align: center;
}
.cart-page .cart-items .cart-item .cart-info form button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  background: #4f5bd5;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
.cart-page .cart-items .cart-item .cart-info form button:hover {
  background: #3d49b1;
}
.cart-page .cart-items .cart-item .cart-info .cart-remove {
  margin-top: 0.8rem;
  color: #ff7b7b;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.cart-page .cart-items .cart-item .cart-info .cart-remove:hover {
  color: #ff4444;
  text-decoration: underline;
}
.cart-page .cart-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-page .cart-summary .cart-total {
  font-weight: bold;
}
.cart-page .cart-summary a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  background: #4f5bd5;
  color: white;
  transition: background 0.3s;
}
.cart-page .cart-summary a:hover {
  background: #3d49b1;
}
.cart-page {
  /************************ TABLET ************************/
}
@media (min-width: 768px) {
  .cart-page .cart-items .cart-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  .cart-page .cart-items .cart-item .cart-img {
    width: 280px;
    margin: 0;
    flex-shrink: 0;
  }
  .cart-page .cart-items .cart-item .cart-info {
    flex: 1;
  }
  .cart-page .cart-items .cart-item .cart-info form {
    justify-content: flex-start;
  }
  .cart-page .cart-summary {
    text-align: right;
  }
}
.cart-page {
  /************************ DESKTOP ************************/
}
@media (min-width: 1023px) {
  .cart-page .cart-items .cart-item .cart-img {
    width: 320px;
  }
}

.order-details-page {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  color: white;
}
.order-details-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.order-details-page h2 {
  margin-bottom: 1rem;
}
.order-details-page p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.order-summary,
.delivery-infos {
  background-color: #252e4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background-color: #252e4f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.order-item:hover {
  transform: translateY(-3px);
}
.order-item h3 {
  margin-bottom: 1rem;
}

.order-img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-subtotal {
  color: #b8c0ff;
  font-weight: bold;
}

.order-error {
  text-align: center;
}

/*************************************************************/
/********************** MOD MOBILE ****************************/
/*************************************************************/
@media screen and (max-width: 767px) {
  .order-item {
    flex-direction: column;
    text-align: center;
  }
  .order-img {
    width: 280px;
  }
  .order-item-info {
    align-items: center;
  }
}
/*************************************************************/
/********************** MOD TABLET ****************************/
/*************************************************************/
@media screen and (min-width: 768px) {
  .order-details-page {
    padding: 2rem;
  }
  .order-img {
    width: 260px;
  }
}
/*************************************************************/
/********************** MOD DESKTOP ***************************/
/*************************************************************/
@media screen and (min-width: 1023px) {
  .order-summary,
  .delivery-infos,
  .order-item {
    padding: 2rem;
  }
  .order-img {
    width: 300px;
  }
}
.checkout-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.checkout-page h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: white;
}
.checkout-page form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.checkout-page input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  color: #333;
  transition: all 0.2s ease;
}
.checkout-page input::placeholder {
  font-weight: bold;
  color: #020202;
}
.checkout-page input:focus {
  outline: none;
  border-color: #d4b24c;
  box-shadow: 0 0 0 2px rgba(212, 178, 76, 0.15);
}
.checkout-page button {
  margin-top: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 2px;
  background: #4f5bd5;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkout-page button:hover {
  background: #b99632;
}
.checkout-page button:active {
  transform: scale(0.98);
}

/****************************
TABLET
*****************************/
@media (min-width: 768px) {
  .checkout-page form {
    padding: 2rem;
    gap: 1.2rem;
  }
}
/****************************
DESKTOP
*****************************/
@media (min-width: 1023px) {
  .checkout-page form {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}
/*************************************************************/
/*********************** HOME PAGE ***************************/
/*************************************************************/
.home-page {
  color: white;
  padding: 2rem 1rem;
}
.home-page .home-intro {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}
.home-page .home-intro h2 {
  margin-bottom: 1.5rem;
}
.home-page .home-intro p {
  line-height: 1.8;
}
.home-page {
  /*****************************************************/
  /* MOVIES SCROLL SECTION */
  /*****************************************************/
}
.home-page .movies-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.home-page .movies-list h2 {
  margin-bottom: 1.5rem;
}
.home-page .movies-list .movies-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-page .movies-list .movies-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 1rem 3.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-page .movies-list .movies-scroll::-webkit-scrollbar {
  display: none;
}
.home-page .movies-list .movie-card {
  flex: 0 0 260px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.home-page .movies-list .movie-card:hover {
  transform: translateY(-5px);
}
.home-page .movies-list .movie-card a {
  display: flex;
  flex-direction: column;
  color: white;
}
.home-page .movies-list .movie-card img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000;
}
.home-page .movies-list .movie-card h3 {
  padding: 1rem;
  text-align: center;
  background: #252e4f;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .movies-list .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.home-page .movies-list .scroll-btn:hover {
  background: #4f5bd5;
}
.home-page .movies-list .scroll-btn.left {
  left: 0.5rem;
}
.home-page .movies-list .scroll-btn.right {
  right: 0.5rem;
}
.home-page .movies-list .scroll-btn i {
  font-size: 1.1rem;
}
.home-page .discover-more-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  background-color: #4f5bd5;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.home-page .discover-more-btn:hover {
  background-color: #3d49b1;
}
.home-page .services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.home-page .services .services-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background-color: #252e4f;
  transition: transform 0.3s ease;
}
.home-page .services .services-card:hover {
  transform: translateY(-5px);
}
.home-page .services .services-card .services-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.home-page .services .services-card .services-title i {
  font-size: 35px;
  color: #4f5bd5;
  flex-shrink: 0;
}
.home-page .services .services-card .services-title h3 {
  margin: 0;
}
.home-page .services .services-card p {
  flex: 1;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.home-page .services .services-card a {
  align-self: flex-start;
  padding: 0.8rem 1.3rem;
  border-radius: 8px;
  background-color: #4f5bd5;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.home-page .services .services-card a:hover {
  background-color: #3d49b1;
}
.home-page .discover-more h2 {
  margin-bottom: 2rem;
  text-align: center;
}
.home-page .discover-more .discover-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.home-page .discover-more .discover-grid .to-discover-card {
  overflow: hidden;
  border-radius: 12px;
  background-color: #252e4f;
  transition: transform 0.3s ease;
}
.home-page .discover-more .discover-grid .to-discover-card:hover {
  transform: translateY(-5px);
}
.home-page .discover-more .discover-grid .to-discover-card a {
  display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
}
.home-page .discover-more .discover-grid .to-discover-card a .discover-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.home-page .discover-more .discover-grid .to-discover-card a .discover-title i {
  font-size: 1.3rem;
  color: black;
}
.home-page .discover-more .discover-grid .to-discover-card a .discover-title h3 {
  margin: 0;
  line-height: 1.4;
}
.home-page .discover-more .discover-grid .to-discover-card a img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.home-page .discover-more .discover-grid .to-discover-card a:hover img {
  transform: scale(1.05);
}
.home-page .discover-more .btn-discover-more-documentaries {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  background-color: #4f5bd5;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.home-page .discover-more .btn-discover-more-documentaries:hover {
  background-color: #3d49b1;
}

/*************************************************************/
/********************** MOD TABLET ***************************/
/*************************************************************/
@media screen and (min-width: 768px) {
  .home-page .services {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-page .discover-more .discover-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .home-page .discover-more .discover-grid .to-discover-card a .discover-title {
    padding: 1.25rem;
  }
  .home-page .discover-more .discover-grid .to-discover-card a .discover-title i {
    font-size: 1.4rem;
  }
}
/*************************************************************/
/********************** MOD DESKTOP **************************/
/*************************************************************/
@media screen and (min-width: 1023px) {
  .home-page {
    max-width: 1400px;
    margin: 0 auto;
  }
  .home-page .services {
    gap: 2.5rem;
  }
  .home-page .services .services-card {
    padding: 2.5rem;
  }
  .home-page .discover-more .discover-grid .to-discover-card a .discover-title i {
    font-size: 1.5rem;
  }
}
.formulas-services-page {
  color: white;
}
.formulas-services-page h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.formulas-services-page .formulas-services-introduction p {
  text-align: center;
}
.formulas-services-page .drone-services {
  padding: 2rem 1rem;
  text-align: center;
}
.formulas-services-page .drone-services img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 4px;
}
.formulas-services-page .drone-services h2 {
  margin-bottom: 1rem;
  color: #fddb8f;
}
.formulas-services-page .drone-services p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.formulas-services-page .three-service-types {
  padding: 3rem 1rem;
  text-align: center;
}
.formulas-services-page .three-service-types h2 {
  margin-bottom: 2rem;
  color: #fddb8f;
}
.formulas-services-page .three-service-types .three-services-types-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.formulas-services-page .three-service-types .three-service-types-card {
  border: 1px solid #222;
  padding: 1.5rem;
  background: white;
  color: black;
}
.formulas-services-page .three-service-types .three-service-types-card h3 {
  margin-bottom: 1rem;
}
.formulas-services-page .three-service-types .three-service-types-card p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.formulas-services-page .video-quality {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.formulas-services-page .video-quality .video-quality-text {
  max-width: 900px;
}
.formulas-services-page .video-quality .video-quality-text p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
.formulas-services-page .video-quality .video-quality-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.formulas-services-page .video-quality .video-quality-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.formulas-services-page .formal-reportage {
  padding: 4rem 1rem;
  text-align: center;
}
.formulas-services-page .formal-reportage h2 {
  margin-bottom: 2rem;
  color: #fddb8f;
}
.formulas-services-page .formal-reportage .formal-reportage-content {
  max-width: 900px;
  margin: 0 auto;
}
.formulas-services-page .formal-reportage .formal-reportage-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}
.formulas-services-page {
  /**********************************************************************/
  /************************* TABLET MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 768px) {
  .formulas-services-page .drone-services {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .formulas-services-page .drone-services img {
    flex: 1;
    max-width: 50%;
    margin: 0;
  }
  .formulas-services-page .drone-services .drone-content {
    flex: 1;
  }
  .formulas-services-page .drone-services h2 {
    text-align: center;
  }
  .formulas-services-page .drone-services p {
    text-align: center;
    margin: 0;
  }
  .formulas-services-page .three-service-types {
    padding: 4rem 1rem;
  }
  .formulas-services-page .three-service-types .three-services-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .formulas-services-page .three-service-types .three-service-types-card {
    padding: 2rem;
  }
  .formulas-services-page .video-quality {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .formulas-services-page .video-quality .video-quality-text {
    flex: 1;
  }
  .formulas-services-page .video-quality .video-quality-text p {
    max-width: 750px;
    text-align: center;
  }
  .formulas-services-page .video-quality .video-quality-image {
    flex: 1;
  }
  .formulas-services-page .formal-reportage {
    padding: 5rem 1rem;
  }
  .formulas-services-page .formal-reportage .formal-reportage-content p {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
.formulas-services-page {
  /**********************************************************************/
  /************************ DESKTOP MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 1023px) {
  .formulas-services-page .drone-services img {
    max-width: 420px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }
  .formulas-services-page .drone-services .drone-content {
    max-width: 650px;
  }
  .formulas-services-page .video-quality {
    padding: 3rem 8rem;
    gap: 1rem;
  }
  .formulas-services-page .video-quality .video-quality-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.additional-services-page {
  color: white;
}
.additional-services-page h2 {
  text-align: center;
  color: #fddb8f;
  margin-bottom: 2rem;
}
.additional-services-page p {
  line-height: 1.7;
  text-align: center;
}
.additional-services-page .must-package-formula {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.additional-services-page .must-package-formula .must-package-content {
  max-width: 900px;
}
.additional-services-page .must-package-formula .must-package-content p {
  margin-bottom: 1.5rem;
}
.additional-services-page .must-package-formula .must-package-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.additional-services-page .must-package-formula .must-package-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.additional-services-page .special-event-hotel {
  padding: 4rem 1rem;
}
.additional-services-page .special-event-hotel p {
  max-width: 900px;
  margin: 0 auto;
}
.additional-services-page .hotel-website {
  padding: 4rem 1rem;
}
.additional-services-page .hotel-website .hotel-website-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.additional-services-page .hotel-website .hotel-website-case {
  background: white;
  color: black;
  padding: 2rem;
  border: 1px solid #222;
}
.additional-services-page .hotel-website .hotel-website-case h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.additional-services-page .hotel-website .hotel-website-case p {
  text-align: center;
  margin-bottom: 1rem;
}
.additional-services-page {
  /**********************************************************************/
  /************************* TABLET MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 768px) {
  .additional-services-page .must-package-formula {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .additional-services-page .must-package-formula .must-package-content {
    flex: 1;
  }
  .additional-services-page .must-package-formula .must-package-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .additional-services-page .must-package-formula .must-package-image {
    flex: 1;
  }
  .additional-services-page .hotel-website .hotel-website-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .additional-services-page .hotel-website .hotel-website-case {
    padding: 2.5rem;
  }
}
.additional-services-page {
  /**********************************************************************/
  /************************ DESKTOP MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 1023px) {
  .additional-services-page .must-package-formula {
    padding: 5rem 2rem;
    gap: 2rem;
  }
  .additional-services-page .must-package-formula .must-package-content {
    max-width: 650px;
  }
  .additional-services-page .must-package-formula .must-package-image img {
    max-width: 550px;
  }
  .additional-services-page .special-event-hotel p {
    max-width: 850px;
  }
  .additional-services-page .hotel-website {
    padding: 5rem 2rem;
  }
  .additional-services-page .hotel-website .hotel-website-grid {
    gap: 3rem;
  }
}

.distribution-prog-page {
  color: white;
}
.distribution-prog-page h2 {
  text-align: center;
  color: #fddb8f;
  margin-bottom: 2rem;
}
.distribution-prog-page h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.distribution-prog-page p {
  text-align: center;
  line-height: 1.7;
}
.distribution-prog-page {
  /********************** INTRODUCTION **********************************/
}
.distribution-prog-page .distribution-introduction {
  padding: 3rem 1rem;
}
.distribution-prog-page .distribution-introduction p {
  max-width: 900px;
  margin: 0 auto;
}
.distribution-prog-page {
  /********************** DOUBLE DIFFUSION ******************************/
}
.distribution-prog-page .double-distribution {
  padding: 4rem 1rem;
}
.distribution-prog-page .double-distribution .double-distribution-content {
  max-width: 900px;
  margin: 0 auto;
}
.distribution-prog-page .double-distribution .double-distribution-content p {
  margin-bottom: 1.5rem;
}
.distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.distribution-prog-page {
  /********************** BROADCAST SECTIONS ****************************/
}
.distribution-prog-page .luxe-tv-broadcast,
.distribution-prog-page .france-three-broadcast {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.distribution-prog-page .luxe-tv-broadcast .luxe-tv-image img,
.distribution-prog-page .luxe-tv-broadcast .france-three-image img,
.distribution-prog-page .france-three-broadcast .luxe-tv-image img,
.distribution-prog-page .france-three-broadcast .france-three-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.distribution-prog-page .luxe-tv-broadcast .luxe-tv-content p,
.distribution-prog-page .luxe-tv-broadcast .france-three-content p,
.distribution-prog-page .france-three-broadcast .luxe-tv-content p,
.distribution-prog-page .france-three-broadcast .france-three-content p {
  margin-bottom: 1.5rem;
}
.distribution-prog-page .luxe-tv-broadcast .luxe-tv-image img {
  max-width: 700px;
  object-fit: cover;
}
.distribution-prog-page .france-three-broadcast .france-three-image img {
  max-width: 200px;
  object-fit: contain;
}
.distribution-prog-page {
  /************************* REPORTS SECTION ****************************/
}
.distribution-prog-page .editorial-reports {
  padding: 4rem 1rem;
}
.distribution-prog-page .editorial-reports p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.distribution-prog-page {
  /********************** QUALITY SECTION *******************************/
}
.distribution-prog-page .broadcast-quality {
  padding: 4rem 1rem;
}
.distribution-prog-page .broadcast-quality p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.distribution-prog-page {
  /**********************************************************************/
  /************************* TABLET MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 768px) {
  .distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images {
    flex-direction: row;
    justify-content: center;
  }
  .distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images img {
    max-width: 380px;
  }
  .distribution-prog-page .luxe-tv-broadcast,
  .distribution-prog-page .france-three-broadcast {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .distribution-prog-page .luxe-tv-broadcast .luxe-tv-image,
  .distribution-prog-page .luxe-tv-broadcast .luxe-tv-content {
    flex: 1;
  }
  .distribution-prog-page .france-three-broadcast {
    flex-direction: row-reverse;
  }
  .distribution-prog-page .france-three-broadcast .france-three-image,
  .distribution-prog-page .france-three-broadcast .france-three-content {
    flex: 1;
  }
  .distribution-prog-page .france-three-broadcast .france-three-image img {
    max-width: 220px;
  }
}
.distribution-prog-page {
  /**********************************************************************/
  /************************ DESKTOP MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 1023px) {
  .distribution-prog-page .distribution-introduction {
    padding: 5rem 2rem;
  }
  .distribution-prog-page .double-distribution {
    padding: 5rem 2rem;
  }
  .distribution-prog-page .double-distribution .double-distribution-content {
    max-width: 850px;
  }
  .distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images {
    gap: 2rem;
  }
  .distribution-prog-page .double-distribution .double-distribution-content .double-distribution-images img {
    max-width: 450px;
  }
  .distribution-prog-page .luxe-tv-broadcast,
  .distribution-prog-page .france-three-broadcast {
    padding: 5rem 2rem;
    gap: 2rem;
  }
  .distribution-prog-page .luxe-tv-broadcast .luxe-tv-image {
    flex: 0 0 420px;
  }
  .distribution-prog-page .luxe-tv-broadcast .luxe-tv-image img {
    max-width: 420px;
  }
  .distribution-prog-page .luxe-tv-broadcast .luxe-tv-content {
    max-width: 650px;
  }
  .distribution-prog-page .france-three-broadcast .france-three-image {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
  }
  .distribution-prog-page .france-three-broadcast .france-three-image img {
    max-width: 250px;
  }
  .distribution-prog-page .france-three-broadcast .france-three-content {
    max-width: 650px;
  }
  .distribution-prog-page .editorial-reports,
  .distribution-prog-page .broadcast-quality {
    padding: 5rem 2rem;
  }
}

.documentaries-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: white;
}
.documentaries-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.documentaries-page p {
  text-align: center;
  opacity: 0.8;
}
.documentaries-page .documentary-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.documentaries-page .documentary-category .category-title {
  color: white;
  margin: 0;
  text-align: center;
}
.documentaries-page .documentary-category .documentaries-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem;
  background-color: #252e4f;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card h2 {
  margin: 0;
  text-align: center;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card .cover-img-documentary {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #000;
  border-radius: 10px;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card a {
  display: inline-block;
  width: fit-content;
  margin: auto;
  padding: 0.6rem 1rem;
  background: white;
  color: black;
  border-radius: 6px;
  transition: 0.2s ease;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card a:hover {
  background: #ddd;
}
.documentaries-page .documentary-category .documentaries-list .documentary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.documentaries-page {
  /**********************************************************************/
  /************************ TABLET MOD *********************************/
  /**********************************************************************/
}
@media (min-width: 768px) {
  .documentaries-page .documentary-category .documentaries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.documentaries-page {
  /**********************************************************************/
  /************************ DESKTOP MOD ********************************/
  /**********************************************************************/
}
@media (min-width: 1023px) {
  .documentaries-page .documentary-category .documentaries-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .documentaries-page .documentary-category .documentaries-list .documentary-card {
    padding: 2rem;
  }
}

/*************************************************************/
/**************** DOCUMENTARY DETAIL PAGE *********************/
/*************************************************************/
.documentary-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: white;
}
.documentary-detail-page h1 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.documentary-detail-page p {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: justify;
  line-height: 1.8;
  opacity: 0.9;
}
.documentary-detail-page .video-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.documentary-detail-page .video-container iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}

/*************************************************************/
/********************** TABLET MOD ****************************/
/*************************************************************/
@media screen and (min-width: 768px) {
  .documentary-detail-page {
    padding: 3rem 2rem;
  }
  .documentary-detail-page p {
    margin-bottom: 3rem;
  }
  .documentary-detail-page .video-container {
    border-radius: 16px;
  }
}
/*************************************************************/
/********************** DESKTOP MOD ***************************/
/*************************************************************/
@media screen and (min-width: 1023px) {
  .documentary-detail-page {
    padding: 4rem 2rem;
  }
  .documentary-detail-page .video-container {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.search-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: white;
}
.search-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.search-page h2 {
  text-align: center;
  margin: 2rem 0 1rem;
  padding-left: 0.8rem;
}
.search-page p {
  text-align: center;
  opacity: 0.8;
}
.search-page .search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.search-page .search-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.search-page .search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.search-page .search-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
}
.search-page .search-card h3 {
  text-align: center;
  padding: 1rem;
  background: #252e4f;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-page .search-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  background: #000;
}
.search-page {
  /****************************
   TABLET
  *****************************/
}
@media (min-width: 768px) {
  .search-page .search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .search-page .search-card img {
    height: 260px;
  }
}
.search-page {
  /****************************
   DESKTOP
  *****************************/
}
@media (min-width: 1023px) {
  .search-page .search-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .search-page .search-card img {
    height: 300px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/**********************************************************************/
/************************ TYPOGRAPHY GLOBAL ***************************/
/**********************************************************************/
h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
}

p,
li {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
}

a {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: "Nunito", sans-serif;
  font-size: 1.25rem;
}

/**********************************************************************/
/************************ TYPOGRAPHY TABLET ***************************/
/**********************************************************************/
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.35rem;
  }
  p,
  li,
  a,
  button,
  input,
  textarea,
  select {
    font-size: 1.3rem;
  }
}
/**********************************************************************/
/************************ TYPOGRAPHY DESKTOP **************************/
/**********************************************************************/
@media screen and (min-width: 1023px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  p,
  li,
  a,
  button,
  input,
  textarea,
  select {
    font-size: 1.25rem;
  }
}
main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, #1b2a6b, #0f1d4d 100%);
}

/* main stars layer */
main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 10px 20px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(1px 1px at 60px 80px, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 120px 40px, rgba(255, 255, 255, 0.7), transparent), radial-gradient(2px 2px at 180px 160px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(1px 1px at 220px 90px, rgba(255, 255, 255, 0.6), transparent), radial-gradient(2px 2px at 300px 200px, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 350px 50px, rgba(255, 255, 255, 0.7), transparent), radial-gradient(1px 1px at 400px 180px, rgba(255, 255, 255, 0.9), transparent), radial-gradient(1px 1px at 500px 120px, rgba(255, 255, 255, 0.6), transparent), radial-gradient(2px 2px at 600px 60px, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 700px 200px, rgba(255, 255, 255, 0.7), transparent), radial-gradient(1px 1px at 800px 140px, rgba(255, 255, 255, 0.9), transparent);
  background-repeat: repeat;
  background-size: 900px 500px;
  opacity: 0.6;
}

/* secondary finer layer for depth */
main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px, rgba(255, 255, 255, 0.5) 60%, transparent 61%);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* content above */
main > * {
  position: relative;
  z-index: 1;
}

main::before,
main::after {
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
