* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial";
}

body {
  background: rgb(59, 68, 75);
}

.header {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  width: 120px;
}

nav ul {
  list-style: none;
  display: flex;
  margin-left: 40px;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none !important;
  color: #fff;
  font-size: 17px;
}

nav ul li a:hover {
  color: #fff; /* Replace with your desired hover color */
}

.header_text {
  text-align: center;
}

.header_text h1 {
  font-size: 10vw;
  color: #fff;
  font-weight: 600;
  transition: 0.5s;
  pointer-events: none;
  font-family: "Kanit", sans-serif;
}

.header_text h3 {
  font-size: 5vw;
  color: #fff;
  font-weight: 300;
  pointer-events: none;
  font-family: "Poppins, sans-serif";
}

.header_text a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 70px;
  border-radius: 50px;
  margin-top: 20px;
  z-index: 999;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-play-button {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none;
}

.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(59, 68, 75, 0) 60%, rgb(59, 68, 75) 100%);
}

@media (max-width: 820px) {
  
  nav .logo {
    width: 80px;
  }
  
  .header_text a {
    padding: 5px 20px;
    font-size: 20px;
  }
}
@media (max-width: 540px) {
  
  .header_text a {
    padding: 4px 10px;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  
  .header_text a {
    padding: 4px 10px;
    font-size: 19px;
  }
}
@media (max-width: 428px) {
  
  .header_text a {
    padding: 4px 10px;
    font-size: 14px;
  }
  nav ul {
    list-style: none;
    margin-left: 20px;
  }
  nav ul li a {
    font-size: 10px;
  }
  .header {
    height: 70vh;
  }
}
@media (max-width: 425px) {
  
  .header_text a {
    padding: 4px 10px;
    font-size: 14px;
  }
  nav ul {
    list-style: none;
    margin-left: 20px;
  }
  nav ul li a {
    font-size: 10px;
  }
}
/*------------------------CONTENT----------------*/
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px;
  border-radius: 15px;
  padding: 10px;
  margin: 40px;
  overflow: hidden;
  transition: max-height 0.5s;
}

.section#section_aboutus {
  background: rgb(52, 76, 76);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section#section_flotte {
  background: rgb(52, 76, 76);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.squadParagraphe {
  text-align: center;
}

.section#section_oursquad {
  background: rgb(52, 76, 76);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
}

.squad-section {
  width: 100%; /* Take up full width */
  display: flex;
  justify-content: center; /* Center content horizontally */
}

.carousel-wrapper {
  width: 600px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 20px rgba(46, 61, 73, 0.2);
  border-radius: 14px;
  margin: 0 auto;
}

.carousel-container {
  width: 600px;
  height: 350px;
  overflow: hidden;
  margin: 0 auto;
}

.carousel {
  display: flex;
  width: 3000px;
  animation: sliding 16s infinite;
}
.carousel div {
  width: 600px;
  height: 350px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}
.carousel .image-one {
  background-image: url("src/squad1.jpg");
}
.carousel .image-two {
  background-image: url("src/squad2.jpg");
}
.carousel .image-three {
  background-image: url("src/squad3.jpg");
}
.carousel .image-four {
  background-image: url("src/squad4.jpg");
}
.carousel .image-five {
  background-image: url("src/squad5.jpg");
}

@keyframes sliding {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-600px);
  }
  45% {
    transform: translateX(-600px);
  }
  50% {
    transform: translateX(-1200px);
  }
  70% {
    transform: translateX(-1200px);
  }
  75% {
    transform: translateX(-1800px);
  }
  85% {
    transform: translateX(-1800px);
  }
  95% {
    transform: translateX(-2400px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .carousel-wrapper {
    width: 312px;
    height: 210px;
  }
  .carousel-container {
    width: 240px;
    height: 150px;
  }
  .carousel {
    width: 1200px;
  }
  .carousel > div {
    width: 240px;
    height: 150px;
  }
  @keyframes sliding {
    0% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-240px);
    }
    45% {
      transform: translateX(-240px);
    }
    50% {
      transform: translateX(-480px);
    }
    70% {
      transform: translateX(-480px);
    }
    75% {
      transform: translateX(-720px);
    }
    85% {
      transform: translateX(-720px);
    }
    95% {
      transform: translateX(-960px);
    }
    100% {
      transform: translateX(0);
    }
  }
}
.image-container img {
  width: 100%;
  height: auto;
  flex: 1;
}

.image-container {
  flex: 0 0 45%;
}

.image-container {
  flex: 0 0 45%;
}

.image-container#aboutus {
  flex: 0 0 60%;
}

.phone-text {
  text-decoration: none;
}

a:link {
  color: white;
  text-decoration: none;
}

.text-container {
  flex: 1;
  color: #f3f3f3;
}

.flotte_text {
  color: #f3f3f3;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  height: 0px;
}

.aboutus_second {
  color: #f3f3f3;
}

#language-select:focus {
  outline: none;
  box-shadow: none;
}

#language-select {
  background: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: rgba(255, 255, 255, 0.9215686275);
}

.flotte_text-more--open {
  display: block;
  opacity: 1;
  height: 100%;
}

.flotte_text-more {
  display: block;
  opacity: 0;
  height: 0px;
}

.read-more-btn-ourfleet {
  display: inline-block;
  color: var(--accent);
  background-color: transparent;
  font-size: 1em;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  cursor: pointer;
}

.read-more-btn-ourfleet:hover {
  background-color: transparent;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.card__read-more {
  display: block;
  opacity: 0;
  height: 0px;
  transition: all 0.5s;
}

.card__read-more--open {
  display: block;
  opacity: 1;
  height: 100%;
}

.read-more-btn {
  display: inline-block;
  color: var(--accent);
  background-color: transparent;
  font-size: 1em;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: transparent;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.firstParagraph {
  margin-left: 50px;
  margin-right: 50px;
  color: #f3f3f3;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s;
}

.section h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section p {
  font-size: 20px;
  line-height: 1.6;
  white-space: pre-line;
}

.bullet-list {
  padding-top: 10px;
  padding-left: 20px;
}

.bullet-list li {
  font-size: 20px;
}


/*------------------------COLLABORATORS----------------*/
.collaborators-section {
  text-align: center;
  padding: 20px;
}

.collaborators-section h2 {
  color: #f3f3f3;
}

.squad-section {
  text-align: center;
  padding: 20px;
}

.squad-section h2 {
  color: #f3f3f3;
}


.logo-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
  gap: 20px; /* Spacing between logos */
  margin: 70px 0; /* Top and bottom margins for the entire line */
}

.logo {
  width: 150px; /* Default width */
  height: 150px; /* Default height */
  object-fit: contain; /* Maintain aspect ratio */
  flex: 0 1 auto; /* Ensure logos resize appropriately */
}

.logo {
  width: 150px; /* Set desired width */
  height: 150px; /* Set desired height */
  object-fit: contain; /* Ensures the aspect ratio is preserved */
  flex: 0 1 auto; /* Ensure logos resize appropriately */
}


/*------------------------FOOTER----------------*/
.contact-div {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: rgb(52, 76, 76);
}

.contact-buttons {
  margin-top: 20px;
}

.footer-section {
  background: rgb(52, 76, 76);
  position: relative;
  border-radius: 10px;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
  margin-top: 10px;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

#phone-icon {
  color: red; /* Change the color to your desired value */
}

@media (max-width: 768px) {

  .logo {
    width: 100px; /* Smaller size for mobile screens */
    height: 100px;
  }

  .logo-line {
    gap: 15px; /* Reduce spacing for smaller screens */
    margin: 30px 0;
  }
  /* Styles for screens up to 768px wide */
  .firstParagraph h2 {
    font-size: 30px;
  }
  .image-container {
    margin-left: 0px;
  }
  .firstParagraph p {
    font-size: 16px;
  }
  .firstParagraph {
    margin: 0px;
  }
  .aboutus_second p {
    font-size: 16px; /* Adjust the value as needed */
  }
  .flotte_text {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px;
  }
  .aboutus_second {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px;
  }
  .bullet-list li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {

  .logo {
    width: 80px; /* Even smaller size for very narrow screens */
    height: 80px;
  }

  .logo-line {
    gap: 10px;
    margin: 20px 0;
  }


  .flotte_text p {
    font-size: 14px;
  }
  .firstParagraph h2 {
    font-size: 30px;
  }
  .bullet-list li {
    font-size: 14px;
  }
  .flotte_text {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }
  .image-container {
    flex: 1 0 45%;
  }
  .image-container#aboutus {
    flex: 1 0 60%;
  }
}

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