/* Importing Fonts */
@font-face {
  font-family: "Lato";
  src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
  font-family: "Futura";
  src: url('../fonts/FuturaCyrillicBold.ttf');
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-VariableFont_wght.ttf");
}
/* Importing Fonts */

/* Basic Parameters */
:root {
  --color-1: #f6f6f6;
  --color-2: #111111;
  --color-3: #001f62;
  --color-4: #0033a0;
  --font-1: "Futura";
  --font-2: "Lato";
  --font-3: "EB Garamond";
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 70px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.5);
  border-radius: 70px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.7);
}

* {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
}

p {
  margin: 0;
}

a {
  color: var(--color-1);
}

a:hover {
  color: var(--color-1);
  text-decoration: underline;
}
/* Basic Parameters */

/* Header */
header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content.scrolled {
  background-color: var(--color-1);
  box-shadow: 4px 0px 30px var(--color-2);
  transition: all 300ms ease-in-out;
}

.header-content.scrolled .nav-item {
  color: var(--color-2) !important;
}

.header-content.scrolled .nav-item:hover {
  color: var(--color-3) !important;
}

.header-content {
  padding: 15px 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
}

.header-mobile {
  display: none;
}

.nav {
  display: flex;
  flex-direction: row;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: var(--color-1);
}

.nav-overlay-container * {
  color: var(--color-2);
  font-size: 20px;
  padding-right: 0 !important;
  padding: 10px 10px;
}

.cross {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 20px !important;
}

.header-logo {
  display: none;
}

.header-logo.visible {
  display: block;
}

.nav :not(:last-child) {
  padding-right: 50px;
}

.nav-item {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu li {
  padding-right: 10px !important;
  padding: 10px;
}

.dropdown-menu li p, .dropdown-menu li a {
  padding: 0px !important;
}

.ham {
  display: none;
}

.ham.visible {
  display: block;
}

.nav-item {
  padding: 5px 0;
  transition: all 200ms ease-in-out;
}

.dropdown {
  cursor: pointer;
}

.dropdown-elm {
  padding-right: 0px !important;
}

.dropdown-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.next-arr-2 {
  width: 10px;
  height: 10px;
  padding: 0 !important;
}

.dropdown-elm p {
  color: var(--color-1);
}

.dropdown-elm.scrolled p {
  color: var(--color-2);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.next-arr {
  padding: 0 !important;
}

.next-arr {
  display: none;
}

.next-arr.visible {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -40%;
  border-radius: 5px;
  background-color: var(--color-1);
  border: 1px solid rgba(0,0,0,.15);
  color: var(--color-2);
  list-style: none;
  margin: 0;
  min-width: 250px;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  border-radius: 5px;
  top: 0;
  min-width: 200px;
  list-style: none;
  background-color: var(--color-1);
  border: 1px solid rgba(0,0,0,.15);
  padding-left: 0 !important;
}

.sub-dropdown a:hover {
  color: var(--color-2) !important;
}

.dropdown-menu li:hover .sub-dropdown {
  display: block;
}

.dropdown-menu li a,
.sub-dropdown li a {
  text-decoration: none;
  color: var(--color-2);
  padding: 5px 10px;
}

.dropdown-menu li a:hover,
.sub-dropdown li a:hover {
  background-color: var(--color-1);
}

.nav-item a:hover {
  color: var(--color-1);
}
/* Header */

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: row;
  min-height: 85vh;
  background-image: linear-gradient(
      rgba(17, 17, 17, 0.7),
      rgba(17, 17, 17, 0.7)
    ),
    url("../images/backgrounds/hero-section-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5px 70px;
}

.separator {
  width: 90%;
  height: 1px;
  background: rgb(246, 246, 246);
  background: linear-gradient(
    90deg,
    rgba(246, 246, 246, 0) 0%,
    rgba(246, 246, 246, 1) 50%,
    rgba(246, 246, 246, 0) 100%
  );
}

.hero-col {
  height: 100%;
}

.first-hero,
.third-hero {
  width: 10%;
  min-height: calc(85vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.first-hero,
.second-hero,
.third-hero {
  margin-top: 110px;
  margin-bottom: 70px;
}

.prev,
.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(60px, 40%, 65px);
  aspect-ratio: 1 / 1;
  background-color: rgba(17, 17, 17, 0.8);
  transition: all 200ms ease-in-out;
  border-radius: 5px;
}

.prev:hover {
  background-color: rgba(0, 31, 98, 0.8);
  transform: rotate(45deg);
}

.prev img,
.next img {
  transition: all 200ms ease-in-out;
}

.prev:hover img {
  transform: rotate(-45deg);
}

.next:hover {
  background-color: rgba(0, 31, 98, 0.8);
  transform: rotate(-45deg);
}

.next:hover img {
  transform: rotate(45deg);
}

.second-hero {
  width: 80%;
  display: flex;
  flex-direction: column;
}

.row-hero {
  width: 100%;
}

.row-hero-1 {
  height: 85%;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
}

.row-hero-2 {
  height: 15%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.hero-element-container {
  background-color: rgba(0, 31, 98, 0.75);
  width: clamp(400px, 100%, 1000px);
  height: 100%;
  border-radius: 10px;
  padding: 60px 60px;
}

.hero-title {
  display: flex;
  align-items: center;
  font-family: var(--font-3);
  color: var(--color-1);
  font-size: 70px;
  font-weight: 600;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  margin-top: 20px;
  font-size: 23px;
}

.hero-button {
  padding: 50px 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.hero-button a {
  background-color: var(--color-1);
  padding: 15px 25px;
  border: solid 3px var(--color-1);
  font-family: var(--font-2);
  color: var(--color-3);
  font-size: 18px;
  font-weight: 600;
  transition: all 200ms ease-in-out;
  border-radius: 5px;
}

.hero-button a:hover {
  background-color: transparent;
  color: var(--color-1);
  text-decoration: none;
}

.change-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.change-elm {
  width: 20px;
  height: 20px;
  background-color: var(--color-3);
  border: solid 2px var(--color-1);
  opacity: 0.5;
  transform: rotate(45deg);
  transition: all 200ms ease-in-out;
}

.change-elm:hover {
  background-color: var(--color-1);
  opacity: 1;
}

.change-elm.active {
  background-color: var(--color-1);
  opacity: 1;
}
/* Hero Section */

/* About us Section */
.about-section {
  min-height: 85vh;
  background-color: var(--color-1);
  overflow-x: hidden;
  position: relative;
}

.shape1 {
  position: absolute;
  top: -25%;
  left: -10%;
}

.shape2 {
  position: absolute;
  top: -10%;
  left: 85%;
}

.shape3 {
  position: absolute;
  top: 70%;
  left: 15%;
}

.shape4 {
  position: absolute;
  top: 75%;
  left: 85%;
}

.about-container {
  margin: 100px 100px;
  min-width: calc(100% - 200px);
  min-height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.about-first-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-title {
  display: flex;
  align-items: center;
  font-family: var(--font-3);
  color: var(--color-3);
  font-size: 70px;
  font-weight: 600;
}

.about-text {
  display: flex;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-2);
  font-size: 30px;
}

.about-button {
  padding: 0 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.about-button a {
  background-color: var(--color-3);
  padding: 15px 25px;
  box-shadow: 8px 0px 40px rgba(17, 17, 17, 0.5);
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 18px;
  font-weight: 600;
  transition: all 200ms ease-in-out;
  border-radius: 5px;
}

.about-button a:hover {
  background-color: var(--color-4);
  text-decoration: none;
}

.about-second-content {
  margin-left: 70px;
  position: relative;
  width: 600px;
  height: 600px;
  overflow: hidden;
}

.about-image {
  position: absolute;
  mask-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.about-image:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  height: 100%;
}
/* About us Section */

/* Produits Section */

.produits-section {
  background-color: var(--color-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90vh;
}

.produits-separator {
  background: rgb(246, 246, 246);
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0) 0%,
    rgba(17, 17, 17, 1) 50%,
    rgba(17, 17, 17, 0) 100%
  );
}

.produits-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-3);
  color: var(--color-2);
  padding-top: 70px;
  font-size: 45px;
  font-weight: 600;
}

.produits-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-2);
  width: 80%;
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 20px;
}

.produits-list {
  width: 100%;
  padding: 0 60px;
}

.produit-container {
  height: 400px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.produit {
  width: 85%;
  height: 85%;
  background-image: linear-gradient(
      rgba(17, 17, 17, 0.7),
      rgba(17, 17, 17, 0.7)
    ),
    url("../images/backgrounds/hero-section-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  text-align: center;
  box-shadow: inset -30px -30px 20px rgba(17, 17, 17, 0.8),
    inset 30px 30px 20px rgba(17, 17, 17, 0.8);
  transition: all 300ms;
  overflow: hidden;
}

.produit:hover {
  box-shadow: none;
}

.prod-title {
  font-family: var(--font-1);
  color: var(--color-1);
  font-size: 35px;
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.produit:hover .prod-title {
  opacity: 0;
}

.prod-content {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 70%;
  height: 250px;
  color: var(--color-1);
  font-family: var(--font-2);
  font-size: 20px;
  font-weight: 400;
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 30px;
  gap: 20px;
  z-index: 2;
}

.produit:hover .prod-content {
  opacity: 1;
}

.prod-bottom-part {
  width: 100%;
  display: flex;
  justify-content: end;
}

.voir-plus {
  text-align: right;
  width: fit-content;
}
/* Produits Section */

/* Contact Section */
.contact-section {
  min-height: 90vh;
  width: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(0, 44, 138, 0.96) 0%,
      rgba(0, 31, 98, 0.96) 33%,
      rgba(0, 31, 98, 0.96) 67%,
      rgba(0, 44, 138, 0.96) 100%
    ),
    url("../images/backgrounds/contact-section-background.png");
}

.contact-container {
  padding: 70px 100px;
  display: flex;
  min-height: calc(100vh - 140px);
  flex-direction: column;
  gap: 80px;
}

.elms-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
}

.form-elm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
}

.form-elm label {
  color: var(--color-1);
  font-family: var(--font-2);
  font-size: 23px;
  font-weight: 400;
}

.form-elm input {
  background-color: #d6d6d6;
  color: var(--color-2);
  border: 0;
  border-radius: 5px;
  font-family: var(--font-2);
  padding: 5px 10px;
  font-size: 20px;
  outline: 0;
}

.form-elm textarea {
  background-color: #d6d6d6;
  color: var(--color-2);
  border: 0;
  border-radius: 5px;
  font-family: var(--font-2);
  padding: 5px 10px;
  font-size: 20px;
  outline: 0;
  resize: none;
}

.form-elm > * {
  width: 100%;
}

.elms-row.button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 10px 0;
}

.btn-submit {
  background-color: transparent;
  color: var(--color-1);
  border: solid 3px var(--color-1);
  font-family: var(--font-2);
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 200ms ease-in-out;
}

.btn-submit:hover {
  background-color: var(--color-1);
  color: var(--color-3);
  border: solid 3px var(--color-1);
}

.section-content {
  position: relative;
}

.contact-seperator {
  position: absolute;
  left: 57%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 450px;
  width: 1px;
  background: rgb(246, 246, 246);
  background: linear-gradient(
    0deg,
    rgba(246, 246, 246, 0) 0%,
    rgba(246, 246, 246, 1) 50%,
    rgba(246, 246, 246, 0) 100%
  );
}

.section-container {
  min-height: 70vh;
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.contact-title {
  width: 100%;
  font-family: var(--font-3);
  font-size: 60px;
  font-weight: 600;
  color: var(--color-1);
}

.infos-column {
  height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 180px;
  gap: 50px;
}

.info-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 25px;
  gap: 30px;
}

.info-link:hover {
  text-decoration: none;
}

.info-link:focus {
  text-decoration: none;
  color: var(--color-1);
}
/* Contact Section */

/* References Section */
.references-section {
  background-color: var(--color-1);
  padding: 30px 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.references-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-3);
  color: var(--color-2);
  padding-top: 50px;
  font-size: 50px;
  font-weight: 600;
}

.references-list {
  width: 100%;
}

.swiper {
  width: 100%;
  padding: 20px;
  overflow: hidden;
}

.swiper-slide {
  padding: 20px 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 200px;
  max-height: 65px;
  object-fit: contain;
}
/* References Section */

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  background-image: linear-gradient(
      rgba(17, 17, 17, 0.95),
      rgba(17, 17, 17, 0.95)
    ),
    url("../images/backgrounds/footer-image.png");
}

.footer-content {
  padding-right: 150px;
  padding-left: 150px;
  width: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo-desc {
  max-width: 450px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 16.5px;
  font-weight: 500;
  gap: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.footer-nav p {
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 16.5px;
  font-weight: 600;
}

.first-col,
.second-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link {
  display: flex;
  flex-direction: row;
}

.link p {
  margin: 0;
  font-family: var(--font-1);
  color: var(--color-1);
  font-size: 15.5px;
  font-weight: 650;
}

.link-icon {
  padding: 5px;
  border: solid 2px var(--color-1);
  transition: all 200ms ease-in-out;
}

.link:hover .link-icon {
  transform: rotate(45deg);
}

.link-icon img {
  transition: all 200ms ease-in-out;
}

.link:hover .link-icon img {
  transform: rotate(-45deg);
}

.link-name {
  display: none;
  padding-left: 15px;
}

.footer-end {
  padding: 0 100px;
  min-height: 90px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 18px;
  font-weight: 600;
}
/* Footer */

/* Media Queries */
@media screen and (max-width: 1440px) {
  .infos-column {
    padding-left: 150px;
  }

  .about-section {
    min-height: 70vh;
  }

  .about-title {
    font-size: 55px;
  }

  .about-text {
    font-size: 25px;
  }

  .about-image img {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .about-section {
    min-height: 65vh;
    overflow-y: hidden;
  }

  .col-lg-6:has(.about-second-content) {
    display: none;
  }

  .about-title {
    text-align: center;
    justify-content: center;
  }

  .about-text {
    text-align: center;
  }

  .about-button {
    justify-content: center;
  }

  .contact-title {
    text-align: center;
  }

  .infos-column {
    height: fit-content;
    padding-left: 20px;
    padding-top: 50px;
    flex-direction: row;
  }

  .contact-seperator {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .header-screen {
    display: none;
  }

  .header-mobile {
    display: flex;
    padding: 20px 50px;
  }

  .hero-section {
    padding: 5px 0;
  }

  .second-hero {
    width: 100%;
  }

  .custom-navigation {
    display: none;
  }

  .produits-title {
    font-size: 40px;
  }

  .produits-text {
    text-align: center;
  }

  .infos-column {
    gap: 100px;
  }

  .info-link {
    flex-direction: column;
    gap: 15px;
    font-size: 20px;
    text-align: center;
  }

  .footer-content {
    padding-right: 50px;
    padding-left: 50px;
  }

  .footer-nav {
    display: none;
  }

  .footer-end {
    padding: 0 50px;
  }
}

@media screen and (max-width: 900px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-button {
    padding: 30px;
  }

  .hero-button a {
    padding: 12px 20px;
  }
}

@media screen and (max-width: 700px) {
  .about-container {
    min-width: calc(100% - 100px);
    margin: 100px 20px;
  }
  .header-content {
    padding: 15px 50px;
  }

  .row-hero-1 {
    padding: 50px 50px;
  }

  .shape1 {
    display: none;
  }

  .shape2 {
    display: none;
  }

  .shape3 {
    display: none;
  }

  .shape4 {
    display: none;
  }

  .infos-column {
    gap: 50px;
  }

  .contact-container {
    padding: 70px 50px;
  }

  .references-section {
    padding: 30px 50px;
  }

  .references-title {
    padding-top: 20px;
  }

  .footer-end {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }

  .about-title {
    font-size: 45px;
  }

  .about-text {
    font-size: 22px;
  }

  .about-button a {
    padding: 12px 20px;
  }
}

@media screen and (max-width: 600px) {
  .elms-row.button {
    align-items: center;
  }

  .logo-desc p {
    display: none;
  }

  .social-links {
    flex-direction: row;
    gap: 30px;
  }
}

@media screen and (max-width: 450px) {
  .footer-content {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
/* Media Queries */
