@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
@import url("./assets/fonts/font.css");

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Avenir LT Pro", "Montserrat", sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  scroll-behavior: smooth;
}

:root {
  --blue: #15354e;
  --white: #ffffff;
  --yellow: #f99d22;
  --hovered: #ff7716;
}

.logo {
  height: 40px;
  filter: brightness(0) saturate(100%) invert(200%) sepia(0%) saturate(2626%) hue-rotate(126deg) brightness(97%) contrast(98%);
}

.whiteIcon{
  filter: brightness(0) saturate(100%) invert(200%) sepia(0%) saturate(2626%) hue-rotate(126deg) brightness(97%) contrast(98%) !important;
}

.blueLogo {
  filter: none;
}

h1,
h2 {
  font-size: 48px;
  font-weight: 900;
  min-width: max-content;
}

.nav {
  padding: 10px 10%;
  position: fixed;
  z-index: 999;
  width: 100vw;
  background-color: #d0d7dc6b;
  backdrop-filter: blur(8px);
  /* -webkit-backdrop-filter: blur(10px); */
  top: 0;
  min-height: 65px;
  max-height: 65px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px; */
  margin: auto;
}

#firstPage .container{
  margin-top: 85px;
}
.menu-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: var(--white);
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;

  position: fixed;
  top: 0;
  z-index: 999;
  margin: auto;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  min-height: 65px;
  align-items: start;
}

.nav-menu li {
  margin: 0 15px;
  min-width: 62px;
}

.nav-menu a {
  line-height: 65px;
  text-decoration: none;
  color: var(--blue);
  font-size: 14px;
  transition: color 0.3s ease-in-out;
  min-width: max-content;

}

.nav-menu a:hover {
  font-weight: 700;
}

.langSpan {
  color: var(--blue);
}

button:not(.owl-dot):not(#menu-btn) {
  font-family: "Avenir LT Pro", "Montserrat", sans-serif;

  background: var(--yellow);
  border: 0;
  border-radius: 50px;
  align-items: center;
  display: flex;
  padding: 8px 16px;
  gap: 7px;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  min-width: max-content;

  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

button:not(.owl-dot):not(#menu-btn)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: var(--hovered);
  transform: translateX(-50%);
  transition: width 1.2s ease;
  z-index: -1;
}

button:not(.owl-dot):not(#menu-btn):hover::before {
  width: 200%;
}

button:not(.owl-dot):not(#menu-btn):hover {
  color: var(--white);
}

.section {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}
.section:not(:nth-of-type(1)) {
  overflow: hidden;
}

/* first section */
.section:nth-of-type(1) {
  background: url("./assets/first2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  width: 90vw;
  max-width: 90vw;
}

.container {
  display: flex;
  align-items: start;
  margin-left: 120px;
  margin-bottom: 60px;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  width: 80vw;
}

.title {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  max-width: 600px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.title span:nth-child(1) {
  font-weight: 900;
  font-size: 80px;
}
.title span:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}

.title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: curtainReveal 1s ease-out forwards;
}

/* Animate each letter with a delay for the "line by line" effect */
.title span:nth-child(1) {
  animation-delay: 0.1s;
}
.title span:nth-child(2) {
  animation-delay: 0.2s;
}
.title span:nth-child(3) {
  animation-delay: 0.3s;
}
.title span:nth-child(4) {
  animation-delay: 0.4s;
}
.title span:nth-child(5) {
  animation-delay: 0.5s;
}
.title span:nth-child(6) {
  animation-delay: 0.6s;
}
.title span:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes curtainReveal {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.controls span {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

/* second section */
/* .section:nth-of-type(2) {
  width: max-content;
} */
.section:nth-of-type(2) .panel_item {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 120px;
}
.section:nth-of-type(1) .secondImage {
  width: 100%;
  max-width: 760px;
  z-index: 2;

  position: fixed;
  left: 90vw;
  top: 0;
  height: 100%;
  transition: left 2s linear;

  /* transition: opacity 3s; */
}
.section:nth-of-type(2) .secondImage {
  display: none;
}
.section:nth-of-type(2) .content {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-left: 50vw;
  transition: margin-left 1s linear; /* Ensures text moves at the same speed */
}

.section:nth-of-type(2) .text {
  display: flex;
  margin-right: 35px;
  gap: 50px;
  transition: margin-left 1s linear; /* Ensures text moves at the same speed */
}
.section:nth-of-type(2) .text h1 {
  min-width: max-content;
  font-size: 64px;
  font-weight: 900;
  line-height: 70px;
}
.section:nth-of-type(2) .text p {
  word-wrap: anywhere;
  max-width: 580px;
  line-height: 30px;
  text-align: justify;
}
.statisticsTable {
  display: flex;
  margin-left: 100px;
  transition: margin-left 1s linear; /* Ensures text moves at the same speed */
}

.sliderBrandsContainer {
  max-width: 100%;
  display: none;
}
.pcBrandsTable {
  display: flex;
}

.section:nth-of-type(2) .content .statisticsTable .box:nth-of-type(4) {
  background-color: #15354e;
}
.section:nth-of-type(2) .content .statisticsTable .box:nth-of-type(4) h2,
.section:nth-of-type(2) .content .statisticsTable .box:nth-of-type(4) span {
  color: #fff;
}

.statisticsTable .box {
  border: 1px solid #d0d7dc;
  height: max-content;
  padding: 32px;
  min-width: 290px;
  min-height: 290px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
}
.statisticsTable .box h2 {
  font-size: 48px;
  font-weight: 900;
}



.brandPage h1 {
  font-weight: 750;
  font-size: 32px;
}

.statisticsTable .box span {
  font-size: 20px;
  font-weight: 700;
}

/* third panel */
.section:nth-of-type(3) p {
  margin-top: 10px;
  color: #000;
  text-align: justify;
  line-height: 150%;
  word-spacing: -2px;
}

.section:nth-of-type(8) p {
  text-align: justify;
  line-height: 140%;
  font-size: 14px;
}

.section:nth-of-type(3) .panel_item {
  justify-content: center;
  align-items: center;
  /* gap: 35px; */
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
}

.section:nth-of-type(3) .panel_item .image_container {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: end;
  position: relative;
}

.section:nth-of-type(3) .panel_item .image_container #thirdImage {
  max-width: 740px;
  max-height: 400px;
  min-width: 740px;
  min-height: 400px;
  position: absolute;
  right: -185px;
  display: none;
}

.section:nth-of-type(3) img {
  /* max-height: 65%; */
  /* margin-bottom: auto; */
  /* margin-top: auto; */
  /* position: absolute; */
  /* top: 0; */
  /* right: 550px; */
  /* display: none; */
  transition: top 1s linear, right 1s linear, left 1s linear, margin-top 1s linear;
}
.section:nth-of-type(3) .content {
  background: #d1d2d4;
  height: 100%;
  display: flex;
  width: 100%;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-left: 240px;
  padding-right: 170px;
  transition: padding 1s linear;
  /* max-width: 460px;
  margin-left: 500px;
  transition: margin-left 1s linear; Ensures text moves at the same speed */
}
.section:nth-of-type(3) .content h1 {
  font-size: 28px;
}
.brandPage span {
  font-size: 32px;
  color: #a6a6a6;
}
.section:nth-of-type(8) span,
.section:nth-of-type(3) span {
  color: #738695;
  font-size: 42px;
  font-weight: 400;
}

/* section four & five*/
.brandPage {
  z-index: 4;
  transform: translate3d(0px, 0px, 0px);
  /* background: url("./assets/brandsBack1.png") center center / cover no-repeat;
  backdrop-filter: blur(8px); */
}
.brandPage1 {
  background: url("./assets/brand1Back.jpg") center center / cover no-repeat !important;
}
.brandPage2 {
  background: url("./assets/brand2back.jpg") center center / cover no-repeat !important;
}

.brandPage3 {
  background: url("./assets/brand3back.jpg") center center / cover no-repeat !important;
}

.brandPage4 {
  background: url("./assets/brand4back.jpg") center center / cover no-repeat !important;
}

#brandPic2,
#brandPic3,
#brandPic4 {
  transition: clip-path 0.5s linear;
}

#brandContent2,
#brandContent3,
#brandContent4 {
  transition: margin 0.5s linear;
}

.overlay {
  position: absolute;
  background-color: #d1d2d4;
  width: 20vw;
  right: 0;
  top: 0;
  height: 100%;
}

.overlay-1 {
  background-color: #031b2da3; /* semi-transparent */
}

.overlay-2 {
  background-color: #000000a3; /* semi-transparent */
}

.brandPage .panel_item {
  display: flex;
  justify-content: center;
  color: white;
  height: 100%;
  position: relative;
  align-items: center;
}

.brandPage .panel_item .content #textContent {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.brandPage .panel_item .content {
  max-width: 364px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  justify-content: start;
  gap: 36px;
  background: #fff;
  color: #607682;
  padding: 53px;
  padding-top: 64px;
  max-height: 60%;
  margin-right: 50%;
  min-height: 458px;
  transition: clip-path 0.5s linear;
}

.section:nth-of-type(8) .content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  justify-content: center;
  gap: 20px;
  margin: 0 0 0 auto;
  margin: 0;
}

.section:nth-of-type(8) #fifthImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandPage .slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-left: auto;
  flex-direction: column;
  width: 760px;
  margin-left: auto;
}

.brandPage .owl-carousel {
  display: flex;
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  position: relative;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.brandPage .owl-carousel {
  display: flex;
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  justify-content: center;
  /* height: 100%; */
}

.brandPage .owl-stage,
.section:nth-of-type(2) .owl-stage {
  height: 100% !important;
  min-width: max-content;
}
.owl-theme .owl-dots .owl-dot {
  background: unset;
  border: 0;
}
.owl-nav.disabled {
  visibility: hidden;
}
.section:nth-of-type(2) .owl-stage {
  max-height: 230px;
}
.brandPage .owl-carousel .owl-stage-outer,
.section:nth-of-type(2) .owl-carousel .owl-stage-outer {
  height: 100%;
}

.brandPage .owl-item {
  height: 100%;
  background: lightblue;
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: bold;
  background: url("./assets/sliderback.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 715px;
  min-width: 715px;
  /* padding-left: 20px; */
}

/* #panelItem {
  background-color: #15354e;
  color: #fff;
} */

.section:nth-of-type(2) .owl-item {
  height: 230px;
  width: 230px !important;
  border: 1px solid #d0d7dc;
}
.section:nth-of-type(2) .owl-item .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
}

.brandPage p {
  min-height: 35px;
  line-height: 1.35;
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
  word-spacing: -0.02em;
  /* hyphens: auto; */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
  margin: 0 auto;
}

.brandPage .owl-item .item {
  margin-top: auto;
}
.section:nth-of-type(2) .owl-item img {
  width: 47px;
  height: 40px;
}

.brandPage .owl-item p {
  font-size: 64px;
  font-weight: 900;
  margin-top: auto;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: 40px;
}

.brandPage .socials {
  display: flex;
  gap: 10px;
}

.brandPage .socials img {
  width: 34px;
}

.brandPage .brandsControls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

/* section five */
.section:nth-of-type(8) {
  background: white;
  color: #000;
}

.section:nth-of-type(8) .panel_item {
  display: flex;
  height: 100%;
  gap: 70px;
  justify-content: center;
  align-items: center;
}

.section:nth-of-type(8) .panel_item h1 {
  font-size: 28px;
  color: #000;
}

.section:nth-of-type(8) .content {
  color: var(--blue);
}

.section:nth-of-type(8) .fifthPicture {
  /* max-height: 90%;
  height: 90%;
  position: absolute;
  bottom: 0; */
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s linear;
  width: 100%;
}

.image-container {
  height: 100%;
  position: relative;
  width: 45%;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: end;
}

/* last section - form secion */
.section:nth-of-type(9) {
  background-color: white;
}

.section:nth-of-type(9) span,
.section:nth-of-type(3) span {
  font-size: 42px;
  font-weight: 400;
  color: #dbdbdb;
}

.section:nth-of-type(9) .content {
  z-index: 2;
  color: var(--white);
  margin-left: 150px;
}

.section:nth-of-type(9) .panel_item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  gap: 75px;
  max-width: 100%;
}

.section:nth-of-type(9) .panel_item {
  z-index: 2;
}

.section:nth-of-type(9) form {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #d0d7dc;
  gap: 20px;
  padding: 36px 34px;
  z-index: 2;
  min-width: 500px;
  min-height: 550px;
}

.section:nth-of-type(9) form input,
.section:nth-of-type(9) form textarea {
  background-color: rgba(228, 228, 228, 0.3);
  border: 0;
  padding: 18px;
  outline: none;
  color: #0a142f;
  border-radius: 5px;
}

.section:nth-of-type(9) form input::placeholder,
.section:nth-of-type(9) form textarea::placeholder {
  color: rgba(#0a142f, 0.6);
}

input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  padding: 0 !important;
}

.panel.from form input::placeholder {
  opacity: 60%;
}

.section:nth-of-type(9) form textarea {
  font-family: "Avenir LT Pro", "Montserrat", sans-serif;
  min-height: 150px;
}

.section:nth-of-type(9) button {
  /* background: #15354e; */
  width: max-content;
  margin-left: auto;
}

.section:nth-of-type(9) label {
  color: #303030;
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
}

.section:nth-of-type(9) label span {
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 400;
}

.section:nth-of-type(9) .lastBack {
  position: absolute;
  width: 100%;
  margin-top: 70px;
}

.section:nth-of-type(9) .content {
  transition: margin-left 0.5s linear; /* Ensures text moves at the same speed */
}

p {
  font-size: 16px;
  font-weight: 400;
}

.owl-theme .owl-nav {
  position: absolute;
}

.mobileSection {
  display: none !important;
}

#mobileStats {
  display: none;
}

/* footer styles */

footer {
  min-height: 100vh;
  position: relative;
  background: var(--blue);

}

footer .linesContainer {
  position: absolute;
  min-height: 100vh;
  min-width: 100%;
  bottom: 0;
  left: 0;
  padding: 5% 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

footer .linesContainer .line {
  border-left: 1px solid #aaaaaa29;
}

footer .linesContainer .line:last-child {
  border-right: 1px solid #aaaaaa29;
}

footer .content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
padding: 100px 10%;
  z-index: 998;
}

footer.container {
  align-items: center;
  margin: auto;
  justify-content: space-between;
  position: relative;
width: 100vw;
}

footer .logo {
  width: 120px;
  filter: none;
  height: auto;
}
footer .links {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(6, 1fr);
  gap: 46px;
}

footer .links .link:nth-of-type(1),
footer .links .link:nth-of-type(4){
grid-column: span 2;
}

footer .links .link {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .links .link ul {
  font-size: 14px;
   color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

footer .links .link ul li {
  list-style: none;
}
footer .links .link ul li h2 {
  font-size: 16px;
}
footer .links .link ul li a {
  text-decoration: none;
    color: var(--white);

}
footer .links .link h3 {
  font-size: 14px;
  color: #708597;
  font-weight: 700;
}
footer .links .link p {
  font-size: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: justify;
}
footer .links .link p span {
  font-size: 14px;
  color: #708597;
  font-weight: 700;
}
footer .socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
footer .socials span {
  color: var(--white);
  font-size: 14px;
}
footer .socials .icons {
  min-width: 240px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .socials .icons img {
  cursor: pointer;
}
footer .socials .links {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #708597;
  text-decoration: none;
  width: 240px;
  align-items: center;
  gap: 0;
}
footer .socials .links a {
  text-decoration: none;
  color: #708597;
}
  .truncate-mobile {
    -webkit-line-clamp: unset;
    display: block;
  }
.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  min-width: 130px;
  position: absolute;

}

.submenu a{
  line-height: initial;
}

.submenu li {
 list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  max-width: unset;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.submenu li a{
  color: var(--blue);
    flex-direction: column;
  line-height: 180%;
}
.submenu li span{
    font-size: 14px;
  font-weight: 400;
  color: #A1AEB8;
}


.has-submenu a{
  display: flex;
}
.has-submenu.active .submenu {
background-color: #ffffff;
  /* backdrop-filter: blur(8px); */
    max-height: max-content;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  min-width: 264px;
  
}

@media screen and (max-width: 768px) {


  .has-submenu.active .submenu {
  background-color: transparent;
  position: relative;
padding: 0;
gap: 8px;
  }

  .has-submenu a{
    display: flex;
  align-items: center;
  justify-content: space-between;
}

  html,
  body {
    overflow: auto !important;
  }

  #fifthPage{
  margin-top: 100vh;
}
.truncate-mobile {
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 14);
  transition: max-height 0.3s ease;
}

  .section:nth-of-type(2) .secondImage {
    visibility: hidden;
  }

  .panel_item {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  #mobileStats {
    display: block;
    max-width: calc(100vw - 35px);
  }
  #statistics {
    display: none;
  }
  .section:nth-of-type(1) {
    background: url("./assets/firstMobile2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    max-width: 100vw;
  }

  .title {
    max-width: calc(100vw - 50px);
  }
  .title span:nth-child(1) {
    font-size: 24px;
    font-weight: 750;
  }
  .title span:nth-child(2) {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
  }

  .container {
    margin-left: 0;
    margin-bottom: 0px;
    max-width: 100vw;
    width: 100vw;
    background: url("./assets/firstTextBack.png");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-left: 25px;
    padding-top: 30px;
  }

  .controls {
    flex-direction: column;
    justify-content: start;
    margin-top: auto;
  }

  .section:nth-of-type(1) button {
    margin-right: auto;
  }

  .controls span {
    margin: 30px auto;
    margin-top: 30px;
    margin-top: 70px;
    font-size: 18px;
  }

  .controls span img {
    transform: rotate(90deg);
  }

  .menu-btn {
    display: block;
    order: 3;
    padding: 0 8px;
    color: var(--blue);
  }

  .nav-container a {
    order: 2;
  }

  .logo {
    order: 2;
    filter: none;
  }

  .whiteLogo {
    filter: none;
  }
  .langSpan {
    padding: 0px 8px;
    order: 1;
    color: var(--blue);
  }

  .nav {
    padding-right: 15px;
    padding-left: 15px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: center;
    display: flex;
    margin: 0;
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    color: var(--blue);
    background: rgba(208, 215, 220, 0.5);
    backdrop-filter: blur(8px);
    z-index: 999;
  }

  .nav-menu li {
    margin: 15px 0;
    text-align: left;
    min-width: max-content;
    padding: 0 25px;
    width: 100%;
  }
  .submenu li {
padding: 0;
margin: 6px 0;
}

  .nav-menu.open {
    align-items: start;
    transform: translateY(65px);
    opacity: 1;
  }
  .nav-menu a {
    line-height: unset;
  }

  .nav-menu.open a {
    color: var(--blue) !important;
    line-height: 150%;
    align-items: start;
  }

  .mobileSection {
    display: table !important;
  }

  .mobileSection img {
    height: 100vh;
    max-width: 100vw;
    width: 100vw;
  }
  .section:nth-of-type(1) .secondImage {
    left: 100vw;
    width: 100vw;
    transition: left 1s linear;
    display: none;
  }

  .section:nth-of-type(2) {
    width: 100%;
  }

  .section:nth-of-type(3) {
    min-height: 100vh;
    max-height: unset;
    height: max-content;
    display: flex;
    align-items: center;
  }

  .section:nth-of-type(2) .content {
    gap: 30px;
    max-width: 120vw;
    margin-left: 20px !important;
    color: var(--blue);
    /* margin-top: 90px; */
    justify-content: center;
    height: 100vh;
  }

  .section:nth-of-type(2) .text {
    flex-direction: column;
    gap: 10px;
  }
  .section:nth-of-type(2) .text h1 {
    font-size: 28px;
    line-height: 140%;
  }
  .section:nth-of-type(2) .text p {
    max-width: calc(100vw - 40px);
    font-size: 14px;
  }

  .section:nth-of-type(3) .panel_item {
    flex-direction: column;
    justify-content: center;
    margin: 0;
    align-items: center;
    padding: 0 10px;
    width: 100vw;
    gap: 60px;
    min-height: max-content;
    max-height: max-content;
    height: max-content;
    grid-template-columns: repeat(1, 1fr);
  }
  .section:nth-of-type(3) .panel_item .image_container #thirdImage {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    position: initial;
  }

  .brandPage .panel_item {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    min-height: 100vh;
    transition: padding-left 1.5s;
  }
  .brandPage .panel_item .content {
    margin: 0;
    margin-left: 20px;
    gap: 10px;
  }

  .brandPage .panel_item h1 {
    font-size: 18px;
    font-weight: 750;
  }

  .brandPage .panel_item span {
    font-size: 16px;
  }
  .brandPage p {
    font-size: 15px;
  }

  #brandPic1,
  #brandPic2,
  #brandPic3,
  #brandPic4,
  #panelForthContent img {
    max-width: 50%;
    margin: 0 auto;
  }

  .brandPage .owl-item p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .brandPage .panel_item .content #textContent {
    margin: 0;
    min-width: 100%;
  }
  .brandPage .panel_item #panelForthContent {
    margin: 0;
    /* margin-left: 15px; */
    width: calc(100% - 30px);
  }

  .brandPage .slider-container {
    max-width: calc(100vw - 15px);
    width: calc(100vw - 15px);
    max-height: 410px;
    margin-left: 15px;
  }

  .brandPage .brandsControls {
    flex-direction: row;
    align-items: center;
  }
  .brandPage .socials {
    order: 2;
  }

  .brandPage .owl-item {
    padding: 0;
    width: 100%;
    /* flex: 0 0 318px !important; */
    max-width: 318px;
    min-width: 318px;
  }

  .section:nth-of-type(8) {
    position: relative;
  }

  .section:nth-of-type(8) .panel_item {
    flex-direction: column;
    align-items: center;
    justify-content: start;
    max-width: 100vw;
    gap: 0;
  }
  .image-container {
    min-height: 450px;
    margin-top: 0;
    height: max-content;
    width: 100vw;
    max-width: calc(100vw - 40px);
    display: flex;
    justify-content: center;
  }

  .section:nth-of-type(8) .content {
    margin: 20px;
    margin-top: 20px;
    max-width: 100%;
    margin-top: 90px;
    gap: 10px;
  }
  .section:nth-of-type(8) #fifthImage {
    align-items: start;
  justify-content: start;
  }
  .section:nth-of-type(8) .fifthPicture {
    position: absolute;
    /* min-height: 450px; */
    /* height: 100%; */
    clip-path: inset(0 0% 0 0);
  }

  .section:nth-of-type(3) .panel_item img {
    margin-top: 10px;
    max-width: 340px;
    margin-bottom: 0;
    display: block;
    position: initial;
  }
  .section:nth-of-type(3) .content {
    max-width: 100%;
    margin: 0;
    color: var(--blue);
    /* margin-left: 90px; */
    width: 340px;
    margin-bottom: 50px;
    background: none;
    padding: 0;
  }

  .section:nth-of-type(8) h1 {
    font-size: 32px;
  }

  .section:nth-of-type(3) .content h1 {
    font-size: 28px;
  }

  .section:nth-of-type(2) .owl-carousel {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 0;
    justify-content: center;
  }

  .section:nth-of-type(2) .owl-carousel .item h2 {
    font-weight: 700;
    font-size: 24px;
  }

  .section:nth-of-type(2) .owl-carousel .item span {
    font-size: 14px;
    font-weight: 700;
  }

  .section:nth-of-type(3) span {
    font-size: 18px;
    color: #738695;
  }
  .section:nth-of-type(8) span {
    font-size: 20px;
  }
  .section:nth-of-type(8) p {
    font-size: 14px;
    margin-top: 10px;
  }
  .section:nth-of-type(3) p {
    font-size: 14px;
    line-height: 25px;
  }

  .section:nth-of-type(9) {
    background: url("./assets/formback.png");
    background-color: rgba(0, 0, 0, 0);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-position: center 45%;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: white;
  }
  .section:nth-of-type(9) .panel_item {
    flex-direction: column;
    max-width: 90%;
    justify-content: start;
    align-items: start;
    margin: auto;
    padding-top: 50px;
    gap: 10px;
  }

  .section:nth-of-type(9) .panel_item h1 {
    font-size: 32px;
    color: #15354e;
  }
  .section:nth-of-type(9) .panel_item span {
    font-size: 20px;
    font-weight: 400;
    color: #738695;
  }
  .section:nth-of-type(9) .lastBack {
    display: none;
  }
  .section:nth-of-type(9) .content {
    margin-left: 0;
  }
  .section:nth-of-type(9) form {
    width: 100%;
    min-width: calc(100vw - 90px);
    padding: 15px 15px;
    min-height: 440px;
    margin-top: 40px;
    transition: margin-top 1.5s;
    gap: 5px;
  }
  .section:nth-of-type(9) form input,
  .section:nth-of-type(9) form textarea {
    /* color: #0a142f;
    opacity: 60%; */
    font-size: 14px;
  }
  .section:nth-of-type(9) form textarea {
    min-height: 150px;
  }

  .section:nth-of-type(9) .panel_item label span {
    font-size: 14px;
  }
  .section:nth-of-type(9) button {
    width: 100%;
    justify-content: center;
  }
  button:not(.owl-dot):not(#menu-btn) {
    font-size: 18px;
    padding: 8px 16px;
  }

  .section:nth-of-type(2) .item {
    height: 177px;
    border: 1px solid #d0d7dc;
    padding: 12px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-around;
  }
  footer {
    gap: 35px;
    padding-bottom: 30px;
  }

  footer .content {
    padding: 0px 0px 30px 0px;
  }
  footer .linesContainer {
    padding: 0 10px;
    grid-template-columns: repeat(4, 1fr);
  }
  footer .linesContainer .line:nth-of-type(4) {
    border-right: 1px solid #aaaaaa29;
  }

  footer .linesContainer .line:nth-of-type(5),
  footer .linesContainer .line:nth-of-type(6) {
    display: none;
  }

  footer .links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  footer .links .link:nth-of-type(1) {
    grid-column: span 2;
  }
  footer .links .link:nth-of-type(4) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 2;
  }
  footer .links .link:nth-of-type(4) p:nth-of-type(3) {
    grid-column: span 2;
  }

  footer .socials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  footer .socials span {
    order: 3;
  }

  footer .socials .icons {
    order: 2;
  }

  footer .logo {
    display: none;
  }

  footer.container {
    background: var(--blue);
    background-position: center;
    width: 100vw;
    padding: 0 15px;
    padding-bottom: 0px;
   padding-top: 35px;
  }

  footer .links .link {
    gap: 12px;
  }

  footer .links .link ul {
    gap: 12px;
  }
}

@media screen and (min-width: 1780px) {
  .section:nth-of-type(2) {
    min-width: 100vw;
  }
  .brandPage .slider-container {
    width: 890px;
  }
  .brandPage .owl-item {
    max-width: 850px;
    min-width: 850px;
  }
}

/* Content sections */
.content-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  font-family: Arial, sans-serif;
}
/* Carousel wrapper - NO position relative needed */
.carousel-wrapper {
  height: 400vh; /* 4 slides × 100vh */
}

/* Carousel track - sticky positioning */
.carousel-track {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Individual slides */
.carousel-slide {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Slide positions */
.carousel-slide.active {
  transform: translateX(0) !important;
  z-index: 2;
}

.carousel-slide.next {
  transform: translateX(100%);
  z-index: 1;
}

.carousel-slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

#fifthPage .toggleButton{
  display: none;
  font-size: 14px;
  font-weight: bold;
}
#fifthPage .truncate-mobile.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}
@media screen and (max-width: 768px) {
#fifthPage .toggleButton{
  display: block;
}
}