html,
body {
  background-color: #2c2c2c;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
}

* {
  font-family: "Lato";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("css/fa-solid-900.woff2") format('woff');
}

/* Floating Icon */
#contact-icon {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #f08719;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

#contact-icon img {
    padding-top: 3px;
    width: 32px;
}

/* Popup Box */
#contact-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 360px;
    background: #d62828;
    color: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    display: none;
    z-index: 9999;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#contact-popup h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

#contact-popup .subtitle {
    font-size: 14px;
    margin: 5px 0 15px;
    opacity: 0.9;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-item span {
    margin-left: 8px;
    font-weight: 600;
    width: 80px;
}

.contact-icon {
    width: 38px;
    margin-right: 12px;
}

.contact-item a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.contact-item a:hover {
    opacity: 1;
    font-weight: 800;
}



header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 1%;
  left: 4%;
  right: 0;
  z-index: 7;
  padding: 2rem 4%;
  background-color: #2c2c2c;
  border-radius: 100.91px;
  border: 1.04px solid #727272;
  width: 92%;
  flex-wrap: wrap;
}

.section-navbar-jblogo {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

header .nav a {
  color: #dadada;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

header .nav .jb_applogin_btn {
  border: 1.04px solid #f08719;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: #dadada;
  border-radius: 30px;
}

header #menu-bar {
  color: #dadada;
  cursor: pointer;
  font-size: 2rem;
  display: none;
}

header .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

header .nav a:hover{
  color: #f08719;
}

header .nav .jb_applogin_btn:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateY(2px);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 567px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 4%;
    border-radius: 30px;
    width: 92%;
  }

  header #menu-bar {
    display: block;
    font-size: 2rem;
    margin-left: auto;
  }

  header .nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    background-color: #2c2c2c;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #727272;
  }

  header .nav.nav-toggle {
    display: flex;
  }

  header .nav a {
    font-size: 1rem;
    margin: 0.2rem 0.5rem;
    padding: 0.2rem 1.2rem;
    width: 100%;
    text-align: center;
  }

  header .nav .jb_applogin_btn {
    font-size: 1rem;
    margin: 0.5rem 1rem;
    padding: 0.8rem 1.2rem;
    width: 40%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-navbar-jblogo {
    height: 2.5rem;
    width: 2.8rem;
  }

  header .nav .vocal-img {
    width: 6rem;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
  }

  header .nav .madein-img {
    width: 7rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 568px) and (max-width: 1024px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.56rem 4%;
    border-radius: 30px;
  }

  header #menu-bar {
    display: block;
    font-size: 2rem;
    margin-left: auto;
  }

  header .nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    background-color: #2c2c2c;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid #727272;
  }

  header .nav.nav-toggle {
    display: flex;
  }

  header .nav a {
    font-size: 1rem;
    margin: 0.2rem 0.3rem;
    padding: 0.8rem 1.2rem;
    width: 100%;
    text-align: center;
  }

  header .nav .jb_applogin_btn {
    font-size: 1.2rem;
    margin: 0.5rem 1rem;
    padding: 0.8rem 1.2rem;
    width: 37%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-navbar-jblogo {
    height: 2.5rem;
    width: 2.8rem;
  }

  header .nav .vocal-img {
    width: 6rem;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
  }

  header .nav .madein-img {
    width: 8rem;
    height: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1025px) {

  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 2%;
    border-radius: 100px;
  }

  header .nav {
    justify-content: flex-end;
    flex-grow: 1;
  }

  header .nav a,
  header .nav .jb_applogin_btn {
    font-size: 1.2vw;
    padding: 0.5vw 1vw;
    margin: 0 0.8vw;
  }

  .section-navbar-jblogo {
    max-height: 3vw;
    width: auto;
  }

  header .nav .vocal-img {
    display: none;
  }

  header .nav .madein-img {
    display: none;
  }
}

@media (min-width: 1360px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 3%;
    border-radius: 100px;
  }

  header .nav {
    justify-content: flex-end;
    flex-grow: 1;
  }

  header .nav a {
    font-size: 1.3vw;
    padding: 0.6rem 1.2rem;
  }

  header .nav .jb_applogin_btn {
    font-size: 1.3vw;
    padding: 0.4rem 2rem;
  }

  .section-navbar-jblogo {
    height: 3rem;
    width: 3rem;
  }

  header .nav .vocal-img {
    display: none;
  }

  header .nav .madein-img {
    display: none;
  }
}

@media (min-width: 2560px) {

  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 4%;
    border-radius: 70px;
  }

  header .nav a,
  header .nav .jb_applogin_btn {
    font-size: 1.2vw;
    padding: 1rem 2rem;
  }

  .section-navbar-jblogo {
    height: 7rem;
    width: 7rem;
  }

  header .nav .vocal-img {
    display: none;
  }

  header .nav .madein-img {
    display: none;
  }
}

@media (min-width: 320px) {

  html,
  body {
    background-color: #2c2c2c;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
  }

  .desktop-hero { display: none !important; }
    
  .mobile-hero { display: block !important; }

  .section-1-row {
    position: absolute;
    width: 100%;
  }

  .section-1 {
    position: relative;
    height: 95vh;
  }

  .section-1-imagegroup {
    position: absolute;
    width: 100%;
    height: 97%;
    top:  10%;
    opacity: 50%;
  }

  .section-1-image-item {
    position: absolute;
    width: 100%;
    height: 90%;
    object-fit: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .section-1-image-item.active {
    opacity: 1;
  }

  .section-1-image-text {
    position: absolute;
    top: 2%;
    right: 2%;
    font-family: "Lato";
    font-weight: 500;
    color: #dadada;
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .section-1-text {
    position: absolute;
    width: 70%;
    height: 10%;
    top: 30%;
    left: 3%;
    -webkit-text-stroke: 0.8px #000000;
    opacity: 0.88;
    font-family: "Lato";
    font-weight: bolder;
    color: #dadada;
    font-size: 2.2rem;
    line-height: 8vh;
    font-weight: 400;
  }

  .section-2-row {
    position: absolute;
    top: 100%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-2 {
    position: absolute;
    width: 100%;
    height: 95vh;
    top: 100%;
  }

  .section-2-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 10%;
    left: 0%;
    border-radius: 23px;
  }

  .section-2-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14%;
    height: 8%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-2-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14%;
    height: 8%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-2-image {
    position: absolute;
    width: 100%;
    top: 40%;
    left: -4%;
  }

  .section-2-text-1 {
    position: absolute;
    top: 37%;
    left: 35%;
    color: #dadada;
    font-size: 6vw;
  }

  .section-2-text-2 {
    position: absolute;
    top: 36%;
    left: 8%;
    color: #dadada;
    font-size: 1.3rem;
    display: none;
  }

  .section-2-text-2-subtext-1 {
    position: absolute;
    top: 45%;
    left: 5%;
    color: #dadada;
    font-size: 7vw;
    font-weight: 800;
  }

  .section-2-text-2-subtext-2 {
    position: absolute;
    top: 56%;
    left: 20%;
    color: #dadada;
    font-size: 7vw;
    font-weight: 800;
  }

  .section-2-text-3 {
    position: absolute;
    top: 66%;
    left: 35%;
    color: #dadada;
    font-size: 6vw;
  }

  .section-3-row {
    position: absolute;
    top: 200%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-3 {
    position: absolute;
    top: 200%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-3-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 17%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-3-text-1 {
    position: absolute;
    width: 78%;
    top: 79%;
    left: 9%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-3-text-2 {
    position: absolute;
    top: 68%;
    left: 40%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-3-img-border {
    position: absolute;
    width: 76%;
    height: 41%;
    top: 23%;
    left: 8%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-3-img {
    position: absolute;
    width: 76%;
    height: 42%;
    top: 21%;
    left: 10%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-4-row {
    position: absolute;
    top: 300%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-4 {
    position: absolute;
    top: 300%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-4-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 24%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-4-text-1 {
    position: absolute;
    width: 78%;
    top: 86%;
    left: 10%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-4-text-2 {
    position: absolute;
    top: 75%;
    left: 24%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-4-img-border {
    position: absolute;
    width: 76%;
    height: 41%;
    top: 30%;
    left: 10%;
    background-color: #f08719;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-4-img {
    position: absolute;
    width: 76%;
    height: 42%;
    top: 28%;
    left: 8%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-5-row {
    position: absolute;
    top: 400%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-5 {
    position: absolute;
    top: 400%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-5-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 30%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-5-text-1 {
    position: absolute;
    width: 77%;
    top: 91%;
    left: 10%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-5-text-2 {
    position: absolute;
    top: 80%;
    left: 26%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-5-img-border {
    position: absolute;
    width: 76%;
    height: 41%;
    top: 36%;
    left: 8%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-5-img {
    position: absolute;
    width: 76%;
    height: 41%;
    top: 35%;
    left: 10%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-7-row {
    position: absolute;
    top: 500%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-7 {
    position: absolute;
    top: 500%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-7-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 37%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-7-text-1 {
    position: absolute;
    width: 77%;
    top: 101%;
    left: 10%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-7-text-2 {
    position: absolute;
    top: 89.5%;
    left: 15%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-7-img-border {
    position: absolute;
    width: 76%;
    height: 42%;
    top: 43%;
    left: 10.5%;
    background-color: #f08719;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-7-big-img {
    position: absolute;
    width: 45.5%;
    height: 80%;
    top: 16%;
    left: 4%;
    object-fit:fill;
    border-radius: 30px;
    display: none;
  }

  .section-7-small-img {
    position: absolute;
    width: 77.3%;
    height: 42%;
    top: 42%;
    left: 7.5%;
    object-fit:fill;
    border-radius: 30px;
  }

  .section-8-row {
    position: absolute;
    top: 600%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-8 {
    position: absolute;
    top: 600%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-8-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 44%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-8-text-1 {
    position: absolute;
    top: 98%;
    left: 17%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-8-text-2 {
    position: absolute;
    width: 75%;
    top: 110%;
    left: 13%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-8-img-border {
    position: absolute;
    width: 76%;
    height: 41%;
    top: 52%;
    left: 8%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-8-img {
    position: absolute;
    width: 76%;
    height: 42%;
    top: 50%;
    left: 10%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-9-row {
    position: absolute;
    top: 700%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-9 {
    position: absolute;
    top: 700%;
    width: 100%;
    height: 95vh;
    padding-right: 1.2%;
  }

  .section-9-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 51%;
    left: 0%;
    border-radius: 23px;
  }

  .section-9-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14%;
    height: 8%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-9-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14%;
    height: 8%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-9-text-1 {
    position: absolute;
    left: 21%;
    top: 55%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-text-2 {
    position: absolute;
    left: 32%;
    top: 137%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-customer-logo-1 {
    position: absolute;
    width: 28%;
    height: 16%;
    top: 65%;
    left: 9%;
  }

  .section-9-customer-logo-2 {
    position: absolute;
    width: 30%;
    height: 26%;
    top: 60.3%;
    left: 58%;
  }

  .section-9-customer-logo-3 {
    position: absolute;
    width: 33%;
    height: 14%;
    top: 88%;
    left: 5%;
  }

  .section-9-customer-logo-4 {
    position: absolute;
    width: 28%;
    height: 14%;
    top: 88%;
    left: 58%;
  }

  .section-9-customer-logo-5 {
    position: absolute;
    width: 37%;
    height: 6%;
    top: 112%;
    left: 4%;
  }

  .section-9-customer-logo-6 {
    position: absolute;
    width: 45%;
    height: 8%;
    top: 110.5%;
    left: 50%;
  }

  .section-9-customer-logo-7 {
    position: absolute;
    width: 38%;
    height: 6%;
    top: 126.5%;
    left: 4%;
  }

  .section-9-customer-logo-8 {
    position: absolute;
    width: 36%;
    height: 4.6%;
    top: 127%;
    left: 55%;
  }

  .section-10-row {
    position: absolute;
    top: 800%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-10 {
    position: absolute;
    top: 800%;
    width: 100%;
    height: 95vh;
  }

  .section-10-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 58%;
    left: 0%;
    border-radius: 23px;
  }

  .section-10-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14%;
    height: 8%;
    border-top: 1px solid #f08719;
    border-left: 1px solid #f08719;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-10-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14%;
    height: 8%;
    border-bottom: 1px solid #f08719;
    border-right: 1px solid #f08719;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .carousel.vidcar {
    position: relative;
    top: 61%;
    left: 2.5%;
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .vidcar-slide {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vidcar-slide video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

  .vidcar-heading {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    font-family: "Lato", sans-serif;
    pointer-events: none;
    z-index: 5;
  }

  .carousel-image.vidcar-image.left .vidcar-heading,
  .carousel-image.vidcar-image.right .vidcar-heading {
    opacity: 0;
    z-index: 0 !important;
  }

  .carousel-image.vidcar-image.center .vidcar-heading {
    opacity: 1;
    transition: opacity 0.3 ease;
  }


  .carousel-track.vidcar-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.vidcar-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 214px;
    height: 283px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.vidcar-image.center {
    z-index: 6;
    transform: translateX(0) scale(1.3);
    opacity: 1;
  }

  .carousel-image.vidcar-image.left {
    z-index: 6;
    transform: translateX(-140%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-image.vidcar-image.right {
    z-index: 6;
    transform: translateX(140%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-buttons.vidcar-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .carousel-buttons.vidcar-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 39%;
  }

  .carousel-dots.vidcar-dots {
    position: absolute;
    top: 97%;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .carousel-dots.vidcar-dots button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.vidcar-dots button.active {
    background-color: #f08719;
  }

  .section-11-row {
    position: absolute;
    top: 900%;
    width: 100%;
    padding-right: 1.2%;
  }

  .section-11 {
    position: absolute;
    top: 900%;
    width: 100%;
    height: 95vh;
  }

  .section-11-border {
    position: absolute;
    width: 94%;
    height: 94%;
    top: 65%;
    left: 0%;
    border-radius: 23px;
  }

  .section-11-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14%;
    height: 8%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-11-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14%;
    height: 8%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-11-blog-text-1 {
    position: absolute;
    top: 70%;
    left: 34%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 12vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .carousel.reviews {
    position: relative;
    top: 60%;
    left: 2.5%;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.reviews-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.reviews-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 230px;
    height: 380px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.reviews-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.reviews-image.left {
    z-index: 2;
    transform: translateX(-140%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-image.reviews-image.right {
    z-index: 2;
    transform: translateX(140%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-buttons.reviews-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-buttons.reviews-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.reviews-dots {
    position: absolute;
    width: 100%;
    top: 75%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.reviews-dots button {
    width: 8px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.reviews-dots button.active {
    background-color: #333;
  }

  .section-13-row {
    position: absolute;
    top: 1060%;
    width: 100%;
    padding-right: 0%;
  }

  .section-13 {
    position: absolute;
    top: 1065%;
    width: 100%;
    height: 84vh;
  }

  .section-13-border {
    position: absolute;
    width: 94%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-13-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 16%;
    height: 10%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 33px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-13-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16%;
    height: 10%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 33px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .Faq-head-text {
    text-align: center;
    margin-left: 10%;
    font-size: 12vw;
  }

  .faq-section {
    position: relative;
    top: 20%;
  }

  .faq-content {
            min-height: 450px;
            font-family: "Lato";
        }
        
        .sidebar {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 11px 2px;
          text-align: center;
          margin-left: 5%;
        }
        
        .sidebar-item {
            flex: 1 1 45%;
            margin-bottom: 15px;
            cursor: pointer;
            padding: 8px 25px;
            color: #dadada !important;
        }
        
        .sidebar-item.active {
            border: 2px solid #f08719;
            width: 82%;
            border-radius: 40px;
            padding: 8px;
            background-color: #2a2a2a;
            padding-left: 25px;
        }
        
        .sidebar-category {
            font-size: 0.8rem;
            font-weight: 600;
            color: #dadada;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .sidebar-category.active {
            color: #dadada;
        }
        
        .sidebar-category::before {
            content: '●';
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .sidebar-category.active::before {
            color: #dadada;
        }
        
        .content-area {
            padding-left: 30px;
            border-left: 1px solid #616161;
        }
        
        .card {
          width: 95%;
            border: none;
            border-bottom: 1px solid #dadada;
            border-radius: 0;
        }
        
        .card:last-child {
            border-bottom: none;
        }
        
        .card-header {
          background-color: #2a2a2a;
            color: #dadada;
            border: none;
            padding: 12px 0;
        }
        
        .btn-link {
            color: #dadada;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            text-align: left;
            padding: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn-link:hover {
            color: #f08719;
            text-decoration: none;
        }
        
        .btn-link:focus {
            box-shadow: none;
        }

        .btn:focus, .btn:active {
          color: #f08719 !important;
        }
        
        .collapse-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #dadada;
            margin-right: 10px;
        }
        
        .btn-link[aria-expanded="true"] .collapse-icon {
            transform: rotate(90deg);
        }
        
        .card-body {
            padding: 0 0 20px 0;
            background-color: #2a2a2a;
            color: #dadada;
            line-height: 1.6;
        }

  .section-12-row {
    position: absolute;
    top: 1070%;
    width: 100%;
  }

  .section-12 {
    position: absolute;
    top: 1070%;
    width: 100%;
    height: 8vh;
  }

  .section-12-border {
    position: absolute;
    height: 100%;
    width: 90%;
    left: 2%;
    border-radius: 23px;
    background-color: #2c2c2c;
    border-radius: 100.91px;
    border: 1.04px solid;
    border-color: #727272;
    backdrop-filter: blur(82.91px) brightness(100%);
    -webkit-backdrop-filter: blur(82.91px) brightness(100%);
  }

  .section-12-logo-1 {
    position: absolute;
    top: 6%;
    left: 2%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: none;
  }

  .section-12-logo-2 {
    position: absolute;
    top: 18%;
    left: 90%;
    width: 100px;
    height: 60px;
    object-fit: cover;
    display: none;
  }

  .section-12-logo-3 {
    position: absolute;
    top: 28%;
    left: 5%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }

  .section-12-logo-4 {
    position: absolute;
    top: 28%;
    left: 16%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }

  .section-12-logo-5 {
    position: absolute;
    top: 28%;
    left: 27%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }

  .section-12-logo-6 {
    position: absolute;
    top: 28%;
    left: 38%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }

  .section-12-logo-seperator {
    position: absolute;
    top: 20%;
    left: 51%;
    width: 0.2rem;
    height: 2.4rem;
    object-fit: cover;
  }

  .section-12-mail {
    position: absolute;
    top: 28%;
    left: 56%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }

  .section-12-address {
    position: absolute;
    top: 28%;
    left: 67%;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: cover;
  }
  
  .section-12-privacy-policy {
    position: absolute;
    top: 28%;
    left: 78%;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 3vw;
    color: #fff;
    display: none;
  }

  .section-12-privacy-policy-mob {
    position: absolute;
    top: 26%;
    left: 77%;
    width: 1.8rem;
    font-size: 3vw;
    color: #fff;
  }
}

@media (min-width: 568px) and (orientation: portrait) {

  html,
  body {
    background-color: #2c2c2c;
    padding-left: 0%;
    overflow-x: hidden;
  }

  .desktop-hero { display: block; }
.mobile-hero { display: none; }

  .section-1-row {
    position: absolute;
    width: 100%;
  }

  .section-1 {
    position: relative;
    height: 60vh;
  }

  .section-1-imagegroup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 13%;
  }

  .section-1-image-item {
    position: absolute;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .section-1-image-item.active {
    opacity: 1;
  }

  .section-1-image-text {
    position: absolute;
    top: 2%;
    right: 2%;
    font-family: "Lato";
    font-weight: 500;
    color: #dadada;
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .section-1-text {
    position: absolute;
    width: 85%;
    height: 10%;
    top: 45%;
    left: 3%;
    -webkit-text-stroke: 0.8px #000000;
    opacity: 0.88;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 6vw;
    line-height: 8vh;
  }
  
  .section-2-row {
    position: absolute;
    top: 70%;
    width: 100%;
  }

  .section-2 {
    position: absolute;
    width: 100%;
    height: 40vh;
    top: 70%;
  }

  .section-2-image {
    position: absolute;
    top: 25%;
    height: 67%;
    width: 70%;
    left: 10%;
  }

  .section-2-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    left: 0%;
    border-radius: 23px;
  }

  .section-2-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 19%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 25px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-2-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 19%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 25px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-2-text-1 {
    position: absolute;
    top: 37%;
    left: 3.5%;
    color: #dadada;
    font-size: 3vw;
  }

  .section-2-text-2 {
    position: absolute;
    top: 52%;
    left: 3.5%;
    color: #dadada;
    font-size: 4.150vw;
    display: inline;
    font-weight: 800;
  }

  .section-2-text-2-subtext-1 {
    display: none;
  }

  .section-2-text-2-subtext-2 {
    display: none;
  }

  .section-2-text-3 {
    position: absolute;
    top: 68%;
    padding-left: 42%;
    color: #dadada;
    font-size: 3vw;
  }

  .section-3-row {
    position: absolute;
    top: 120%;
    width: 100%;
  }

  .section-3 {
    position: absolute;
    top: 120%;
    width: 100%;
    height: 40vh;
  }

  .section-3-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-3-text-1 {
    position: absolute;
    width: 38%;
    top: 44%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-3-text-2 {
    position: absolute;
    top: 24%;
    left: 31%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-3-img-border {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 18%;
    left: 45%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-3-img {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 16%;
    left: 47%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-4-row {
    position: absolute;
    top: 170%;
    width: 100%;
  }

  .section-4 {
    position: absolute;
    top: 170%;
    width: 100%;
    height: 40vh;
  }

  .section-4-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-4-text-1 {
    position: absolute;
    width: 38%;
    top: 43%;
    left: 54%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-4-text-2 {
    position: absolute;
    top: 21%;
    left: 54%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-4-img-border {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 18%;
    left: 6%;
    background-color: #f08719;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-4-img {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 16%;
    left: 4%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-5-row {
    position: absolute;
    top: 220%;
    width: 100%;
  }

  .section-5 {
    position: absolute;
    top: 220%;
    width: 100%;
    height: 40vh;
  }

  .section-5-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-5-text-1 {
    position: absolute;
    width: 39%;
    top: 41%;
    left: 3%;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-5-text-2 {
    position: absolute;
    top: 20%;
    left: 19.5%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-5-img-border {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 18%;
    left: 45%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-5-img {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 16%;
    left: 47%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-7-row {
    position: absolute;
    top: 270%;
    width: 100%;
  }

  .section-7 {
    position: absolute;
    top: 270%;
    width: 100%;
    height: 40vh;
  }

  .section-7-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-7-text-1 {
    position: absolute;
    width: 38%;
    top: 43%;
    left: 54%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-7-text-2 {
    position: absolute;
    top: 21%;
    left: 54%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-7-img-border{
    position: absolute;
    width: 45%;
    height: 80%;
    top: 18%;
    left: 6%;
    background-color: #f08719;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-7-big-img {
    position: absolute;
    width: 45.5%;
    height: 80%;
    top: 16%;
    left: 4%;
    object-fit:fill;
    border-radius: 30px;
    display: none;
  }

  .section-7-small-img {
    position: absolute;
    width: 46%;
    height: 80%;
    top: 16%;
    left: 4%;
    object-fit:fill;
    border-radius: 30px;
  }

  .section-8-row {
    position: absolute;
    top: 320%;
    width: 100%;
  }

  .section-8 {
    position: absolute;
    top: 320%;
    width: 100%;
    height: 40vh;
  }

  .section-8-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 11%;
    border-radius: 30px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-8-text-1 {
    position: absolute;
    top: 21%;
    left: 7%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-8-img-border {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 18%;
    left: 45%;
    background-color: #c02323;
    border-radius: 30px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-8-img {
    position: absolute;
    width: 45%;
    height: 80%;
    top: 16%;
    left: 47%;
    object-fit: cover;
    border-radius: 30px;
  }

  .section-8-text-2 {
    position: absolute;
    width: 39%;
    top: 41%;
    left: 3%;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-9-row {
    position: absolute;
    top: 370%;
    width: 100%;
  }

  .section-9 {
    position: absolute;
    top: 370%;
    width: 100%;
    height: 40vh;
  }

  .section-9-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 12%;
    left: 0%;
    border-radius: 23px;
  }

  .section-9-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 19%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-9-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 19%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-9-text-1 {
    position: absolute;
    left: 31%;
    top: 16%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-text-2 {
    position: absolute;
    left: 37%;
    top: 92%;
    font-family: "Lato";
    font-weight: 600;
    color: #dadada;
    font-size: 2.5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-customer-logo-1 {
    position: absolute;
    width: 14%;
    height: 22%;
    top: 36%;
    left: 3%;
  }

  .section-9-customer-logo-2 {
    position: absolute;
    width: 15%;
    height: 34%;
    top: 31%;
    left: 27%;
  }

  .section-9-customer-logo-3 {
    position: absolute;
    width: 17%;
    height: 19%;
    top: 38%;
    left: 50%;
  }

  .section-9-customer-logo-4 {
    position: absolute;
    width: 16%;
    height: 19%;
    top: 38%;
    left: 74%;
  }

  .section-9-customer-logo-5 {
    position: absolute;
    width: 18%;
    height: 8%;
    top: 73%;
    left: 2%;
  }

  .section-9-customer-logo-6 {
    position: absolute;
    width: 20%;
    height: 11%;
    top: 71%;
    left: 24%;
  }

  .section-9-customer-logo-7 {
    position: absolute;
    width: 20%;
    height: 8%;
    top: 73%;
    left: 48%;
  }

  .section-9-customer-logo-8 {
    position: absolute;
    width: 20%;
    height: 8%;
    top: 73%;
    left: 72%;
  }

  .section-10-row {
    position: absolute;
    top: 420%;
    width: 100%;
  }

  .section-10 {
    position: absolute;
    top: 420%;
    width: 100%;
    height: 40vh;
  }

  .section-10-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 12%;
    left: 0%;
    border-radius: 23px;
  }

  .section-10-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 19%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-10-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 19%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .carousel.vidcar {
    position: relative;
    top: 10%;
    left: 2.5%;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 2%;
  }

  .vidcar-slide {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vidcar-slide video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

  .vidcar-heading {
    position: absolute;
    top: -13%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    font-family: "Lato", sans-serif;
    pointer-events: none;
    z-index: 5;
  }

  .carousel-track.vidcar-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.vidcar-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 214px;
    height: 213px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.vidcar-image.center {
    z-index: 6;
    transform: translateX(0) scale(1.3);
    opacity: 1;
  }

  .carousel-image.vidcar-image.left {
    z-index: 6;
    transform: translateX(-90%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-image.vidcar-image.right {
    z-index: 6;
    transform: translateX(90%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-buttons.vidcar-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .carousel-buttons.vidcar-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 39%;
  }

  .carousel-dots.vidcar-dots {
    position: absolute;
    top: 94%;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .carousel-dots.vidcar-dots button {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.vidcar-dots button.active {
    background-color: #f08719;
  }

  .section-11-row {
    position: absolute;
    top: 470%;
    width: 100%;
  }

  .section-11 {
    position: absolute;
    top: 470%;
    width: 100%;
    height: 40vh;
  }

  .section-11-border {
    position: absolute;
    width: 96%;
    height: 92%;
    top: 12%;
    left: 0%;
    border-radius: 23px;
  }

  .section-11-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 19%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-11-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 19%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-11-blog-text-1 {
    position: absolute;
    top: 11%;
    left: 40%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 7vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .carousel.reviews {
    position: relative;
    top: 8%;
    left: 4%;
    width: 86%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.reviews-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.reviews-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 210px;
    height: 210px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.reviews-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.reviews-image.left {
    z-index: 2;
    transform: translateX(-90%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-image.reviews-image.right {
    z-index: 2;
    transform: translateX(90%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-buttons.reviews-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-20%);
    z-index: 2;
  }

  .carousel-buttons.reviews-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.reviews-dots {
    position: absolute;
    width: 100%;
    top: 88%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.reviews-dots button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.reviews-dots button.active {
    background-color: #f08719;
  }

  .section-12-row {
    position: absolute;
    top: 520% !important;
    width: 100%;
  }

  .section-12 {
    position: absolute;
    top: 520%;
    width: 100%;
    height: 6vh;
  }

  .section-12-border {
    position: absolute;
    height: 100%;
    width: 88%;
    left: 3%;
    border-radius: 23px;
    background-color: #2c2c2c;
    border-radius: 100.91px;
    border: 1.04px solid;
    border-color: #727272;
    backdrop-filter: blur(82.91px) brightness(100%);
    -webkit-backdrop-filter: blur(82.91px) brightness(100%);
  }

  .section-12-logo-1 {
    position: absolute;
    top: 6%;
    left: 2%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: none;
  }

  .section-12-logo-2 {
    position: absolute;
    top: 18%;
    left: 90%;
    width: 100px;
    height: 60px;
    object-fit: cover;
    display: none;
  }

  .section-12-logo-3 {
    position: absolute;
    top: 21%;
    left: 11%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }

  .section-12-logo-4 {
    position: absolute;
    top: 21%;
    left: 20%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }

  .section-12-logo-5 {
    position: absolute;
    top: 21%;
    left: 29%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }

  .section-12-logo-6 {
    position: absolute;
    top: 21%;
    left: 38%;
    width: 2rem;
    height: 2rem;;
    object-fit: cover;
  }

  .section-12-logo-seperator {
    position: absolute;
    top: 21%;
    left: 50%;
    width: 0.2rem;
    height: 2rem;
    object-fit: cover;
  }

  .section-12-mail {
    position: absolute;
    top: 21%;
    left: 57%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }

  .section-12-address {
    position: absolute;
    top: 21%;
    left: 67%;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }
  
  .section-12-privacy-policy {
    position: absolute;
    top: 35%;
    left: 77%;
    width: 15%;
    font-size: 2vw;
    color: #fff;
    display: inline;
  }

  .section-12-privacy-policy-mob {
    display: none;
  }

  .section-footer-padding {
    position: absolute;
    top: 620%;
    margin-bottom: 5%;
  }

  .section-13-row {
    position: absolute;
    top: 520%;
    width: 100%;
    padding-right: 0%;
  }

  .section-13 {
    position: absolute;
    top: 520%;
    width: 100%;
    height: 40vh;
  }


  .section-13-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 19%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-13-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12%;
    height: 19%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .Faq-head-text {
    text-align: center;
    margin-left: 10%;
    font-size: 7vw;
  }

  .faq-section {
    position: relative;
    top: 20%;
  }

  .faq-content {
            min-height: 200px !important;
            font-family: "Lato";
        }
        
        .sidebar {
          display: flex;
          flex-direction: row;
          justify-content: space-around;
          align-items: center;
          gap: 10px;
          text-align: center;
        }
        
        .sidebar-item {
            flex: 1 1 45%;
            margin-bottom: 10px;
            cursor: pointer;
            padding: 4px 8px;
            color: #dadada !important;
        }
        
        .sidebar-item.active {
            border: 2px solid #f08719;
            width: 82%;
            border-radius: 40px;
            padding: 8px;
            background-color: #2a2a2a;
            padding-left: 25px;
        }
        
        .sidebar-category {
            font-size: 0.6rem;
            font-weight: 600;
            color: #dadada;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .sidebar-category.active {
            color: #dadada;
        }
        
        .sidebar-category::before {
            content: '●';
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .sidebar-category.active::before {
            color: #dadada;
        }
        
        .content-area {
            padding-left: 30px;
            border-left: 1px solid #616161;
        }
        
        .card {
          width: 90%;
            border: none;
            border-bottom: 1px solid #dadada;
            border-radius: 0;
        }
        
        .card:last-child {
            border-bottom: none;
        }
        
        .card-header {
          background-color: #2a2a2a;
            color: #dadada;
            border: none;
            padding: 12px 0;
        }
        
        .btn-link {
            color: #dadada;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            text-align: left;
            padding: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn-link:hover {
            color: #f08719;
            text-decoration: none;
        }
        
        .btn-link:focus {
            box-shadow: none;
        }

        .btn:focus, .btn:active {
          color: #f08719 !important;
        }
        
        .collapse-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
            color: #dadada;
            margin-right: 10px;
        }
        
        .btn-link[aria-expanded="true"] .collapse-icon {
            transform: rotate(90deg);
        }
        
        .card-body {
            padding: 0 0 20px 0;
            background-color: #2a2a2a;
            color: #dadada;
            line-height: 1.6;
        }
}

@media (min-width: 1024px) {

  html,
  body {
    background-color: #2c2c2c;
    padding-left: 0.5%;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .desktop-hero { display: block; }
.mobile-hero { display: none; }

  .section-1-row {
    position: absolute;
    width: 100%;
  }

  .section-1 {
    position: absolute;
    top: 8%;
    width: 96%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-1-imagegroup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 13%;
  }

  .section-1-image-item {
    position: absolute;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .section-1-image-item.active {
    opacity: 1;
  }

  .section-1-image-text {
    position: absolute;
    top: 1%;
    right: 2%;
    font-family: "Lato";
    font-weight: 500;
    color: #dadada;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .section-1-text {
    position: absolute;
    width: 55%;
    height: 10%;
    top: 44%;
    left: 3%;
    -webkit-text-stroke: 0.8px #000000;
    opacity: 0.88;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 3.5vw;
    line-height: 10vh;
  }

  .section-2-row {
    position: absolute;
    top: 100%;
    width: 100%;
    padding-right: 0%;
  }

  .section-2 {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-2-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    left: 0%;
    border-radius: 23px;
  }

  .section-2-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7%;
    height: 12%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-2-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7%;
    height: 12%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-2-text-1 {
    position: absolute;
    top: 34%;
    left: 7.5%;
    color: #dadada;
    font-size: 2.5vw;
    font-family: "Lato";
  }

  .section-2-text-2 {
    position: absolute;
    top: 50%;
    left: 7%;
    color: #dadada;
    font-size: 3.9vw;
    font-weight: 600;
    font-family: "Lato";
    display: inline;
  }

  .section-2-text-2-subtext-1 {
    display: none;
  }

  .section-2-text-2-subtext-2 {
    display: none;
  }

  .section-2-text-3 {
    position: absolute;
    top: 72%;
    left: 76.5%;
    color: #dadada;
    font-size: 2.5vw;
    font-family: "Lato";
  }

  .section-2-image {
    position: absolute;
    top: 27%;
    height: 57%;
    width: 66%;
    left: 16%;
  }

  .section-3-row {
    position: absolute;
    top: 200%;
    width: 100%;
    padding-right: 0%;
  }

  .section-3 {
    position: absolute;
    top: 200%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-3-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-3-text-1 {
    position: absolute;
    width: 45%;
    top: 42%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.1vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-3-text-2 {
    position: absolute;
    top: 25%;
    left: 42.9%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-3-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 19.4%;
    left: 52%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-3-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 53%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-4 {
    position: absolute;
    top: 300%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-4-row {
    position: absolute;
    top: 300%;
    width: 100%;
    padding-right: 0%;
  }

  .section-4-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-4-text-1 {
    position: absolute;
    width: 43%;
    top: 42%;
    left: 48%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.1vw;
    line-height: normal;
    text-align: left;
  }

  .section-4-text-2 {
    position: absolute;
    top: 24%;
    left: 48%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-4-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 19.4%;
    left: 7%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-4-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 6%;
    border-radius: 50px;
    border: 1px solid;
  }

  .section-5 {
    position: absolute;
    top: 400%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-5-row {
    position: absolute;
    top: 400%;
    width: 100%;
    padding-right: 0%;
  }

  .section-5-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-5-text-1 {
    position: absolute;
    width: 45%;
    top: 44%;
    left: 3.3%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.1vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-5-text-2 {
    position: absolute;
    top: 25%;
    left: 35.5%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-5-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 19.4%;
    left: 52%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-5-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 53%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-7-row {
    position: absolute;
    top: 500%;
    width: 100%;
    padding-right: 0%;
  }

  .section-7 {
    position: absolute;
    top: 500%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-7-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-7-text-1 {
    position: absolute;
    width: 43%;
    top: 43%;
    left: 48%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.1vw;
    line-height: normal;
    text-align: left;
  }

  .section-7-text-2 {
    position: absolute;
    top: 24%;
    left: 48%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-7-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 19.4%;
    left: 7%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-7-big-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 6%;
    border-radius: 50px;
    border: 1px solid;
    display: none;
  }

  .section-7-small-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 6%;
    border-radius: 50px;
    border: 1px solid;
    display: inline;
  }

  .section-8-row {
    position: absolute;
    top: 600%;
    width: 100%;
    padding-right: 0%;
  }

  .section-8 {
    position: absolute;
    top: 600%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-8-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-8-text-1 {
    position: absolute;
    top: 25%;
    left: 27.5%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-8-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 19.4%;
    left: 52%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-8-img {
    position: absolute;
    width: 38%;
    height: 79%;
    top: 18%;
    left: 53%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-8-text-2 {
    position: absolute;
    width: 42%;
    top: 44%;
    left: 5.3%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.1vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-9-row {
    position: absolute;
    top: 700%;
    width: 100%;
    padding-right: 0%;
  }

  .section-9 {
    position: absolute;
    top: 700%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-9-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    left: 0%;
    border-radius: 23px;
  }

  .section-9-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7%;
    height: 12%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-9-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7%;
    height: 12%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-9-text-1 {
    position: absolute;
    left: 38%;
    top: 18%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-text-2 {
    position: absolute;
    left: 39%;
    top: 90%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 2.1vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-customer-logo-1 {
    position: absolute;
    width: 10%;
    height: 20%;
    top: 36%;
    left: 8.5%;
  }

  .section-9-customer-logo-2 {
    position: absolute;
    width: 9%;
    height: 31%;
    top: 32%;
    left: 31%;
  }

  .section-9-customer-logo-3 {
    position: absolute;
    width: 10%;
    height: 19%;
    top: 37%;
    left: 52%;
  }

  .section-9-customer-logo-4 {
    position: absolute;
    width: 11%;
    height: 20%;
    top: 36%;
    left: 76%;
  }

  .section-9-customer-logo-5 {
    position: absolute;
    width: 15%;
    height: 8%;
    top: 72%;
    left: 5%;
  }

  .section-9-customer-logo-6 {
    position: absolute;
    width: 16%;
    height: 13%;
    top: 69%;
    left: 27%;
  }

  .section-9-customer-logo-7 {
    position: absolute;
    width: 17%;
    height: 10%;
    top: 71%;
    left: 49%;
  }

  .section-9-customer-logo-8 {
    position: absolute;
    width: 19%;
    height: 7%;
    top: 72%;
    left: 72%;
  }

  .section-10-row {
    position: absolute;
    top: 800%;
    width: 100%;
    padding-right: 0%;
  }

  .section-10 {
    position: absolute;
    top: 800%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-10-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    left: 0%;
    border-radius: 23px;
  }

  .section-10-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7%;
    height: 12%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-10-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7%;
    height: 12%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .carousel.vidcar {
    position: relative;
    top: 9%;
    left: 5.2%;
    width: 87%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  /* Keep everything else the same — only new heading style */
  .vidcar-slide {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vidcar-slide video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

  .vidcar-heading {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    font-family: "Lato", sans-serif;
    pointer-events: none; /* doesn’t interfere with hover */
  }


  .carousel-track.vidcar-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.vidcar-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 246px;
    height: 253px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.vidcar-image.center {
    z-index: 6;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.vidcar-image.left {
    z-index: 6;
    transform: translateX(-140%) scale(0.9);
    opacity: 0.1;
  }

  .carousel-image.vidcar-image.right {
    z-index: 6;
    transform: translateX(140%) scale(0.9);
    opacity: 0.1;
  }

  .carousel-buttons.vidcar-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-buttons.vidcar-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.vidcar-dots {
    position: absolute;
    width: 100%;
    top: 92%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.vidcar-dots button {
    width: 10px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.vidcar-dots button.active {
    background-color: #f08719;
  }

  .section-11-row {
    position: absolute;
    top: 900%;
    width: 100%;
    padding-right: 0%;
  }

  .section-11 {
    position: absolute;
    top: 900%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-11-border {
    position: absolute;
    width: 96%;
    height: 89%;
    top: 14%;
    left: 0%;
    border-radius: 23px;
  }

  .section-11-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7%;
    height: 12%;
    border-top: 1px solid #f08719;
    border-left: 1px solid #f08719;
    border-radius: 30px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-11-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7%;
    height: 12%;
    border-bottom: 1px solid #f08719;
    border-right: 1px solid #f08719;
    border-radius: 0 0 30px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-11-blog-text-1 {
    position: absolute;
    top: 15%;
    left: 42%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .carousel.reviews {
    position: relative;
    top: 7%;
    left: 4.6%;
    width: 86%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.reviews-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.reviews-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 250px;
    height: 250px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.reviews-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.reviews-image.left {
    z-index: 2;
    transform: translateX(-100%) scale(0.7);
    opacity: 0.1;
  }

  .carousel-image.reviews-image.right {
    z-index: 2;
    transform: translateX(100%) scale(0.7);
    opacity: 0.1;
  }

  .carousel-buttons.reviews-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-buttons.reviews-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.reviews-dots {
    position: absolute;
    width: 100%;
    top: 86%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.reviews-dots button {
    width: 10px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.reviews-dots button.active {
    background-color: #333;
  }

  .textblog-container {
    position: relative;
    top: 1%;
    left: 29%;
    width: 36%;
    height: 18%;
    overflow: hidden;
  }

  .blog-text {
    position: absolute;
    opacity: 0;
    font-family: "Lato";
    font-weight: 300;
    color: #dadada;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    transition: opacity 1s ease-in-out;
  }

  .blog-text.visible {
    opacity: 1;
  }

  .section-12-row {
    position: absolute;
    top: 1000%;
    width: 100%;
    padding-right: 0%;
  }

  .section-12 {
    position: absolute;
    top: 1000%;
    width: 100%;
    height: 10vh;
    scroll-snap-align: start;
  }

  .section-12-border {
    position: absolute;
    height: 100%;
    width: 92%;
    left: 2%;
    border-radius: 23px;
    background-color: #2c2c2c;
    border-radius: 100.91px;
    border: 1.04px solid;
    border-color: #727272;
    backdrop-filter: blur(82.91px) brightness(100%);
    -webkit-backdrop-filter: blur(82.91px) brightness(100%);
  }

  .section-12-logo-1 {
    display: inline;
    position: absolute;
    top: 8%;
    left: 2%;
    width: 5vw;
    height: 8vh;
    object-fit: cover;
  }

  .section-12-logo-2 {
    display: inline;
    position: absolute;
    top: 18%;
    left: 90%;
    width: 6vw;
    height: 7vh;
    object-fit: cover;
  }

  .section-12-logo-3 {
    position: absolute;
    top: 25%;
    left: 28%;
    width: 2.25vw;
    height: 5.2vh;
    object-fit: cover;
  }

  .section-12-logo-4 {
    position: absolute;
    top: 25%;
    left: 33%;
    width: 2.25vw;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-5 {
    position: absolute;
    top: 25%;
    left: 38%;
    width: 2.2vw;
    height: 5.1vh;
    object-fit: cover;
  }

  .section-12-logo-6 {
    position: absolute;
    top: 25%;
    left: 43%;
    width: 2.2vw;
    height: 5.1vh;
    object-fit: cover;
  }

  .section-12-logo-seperator {
    display: inline;
    position: absolute;
    top: 18%;
    left: 49.5%;
    width: 0.2vw;
    height: 6vh;
    object-fit: cover;
  }

  .section-12-mail {
    position: absolute;
    top: 30%;
    left: 54%;
    width: 2.2vw;
    height: 5vh;
    object-fit: cover;
    color: #dadada;
    transition: color 0.3s ease;
  }

  .section-12-address {
    position: absolute;
    top: 30%;
    left: 59%;
    width: 2.2vw;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-privacy-policy {
    position: absolute;
    top: 30%;
    left: 64%;
    width: 10%;
    font-size: 1.3vw;
    color: #dadada;
    display: inline;
  }

  .section-12-privacy-policy:hover {
    color: #f08719;
  }

  .section-12-privacy-policy-mob{
    display: none;
  }

  .section-footer-padding {
    position: absolute;
    top: 1100%;
    margin-bottom: 5%;
  }

  .section-13-row {
    position: absolute;
    top: 1000%;
    width: 100%;
    padding-right: 0%;
  }

  .section-13 {
    position: absolute;
    top: 1000%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-13-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-13-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-13-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .Faq-head-text {
    text-align: center;
    font-size: 4vw;
    margin-left: 0% !important;
    
  }

  .faq-section {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    top: 21%;
  }

  .faq-content {
            min-height: 382px;
            font-family: "Lato";
            margin-left: 10%;
        }
        
        .sidebar {
          display: flex !important;
          flex: 0 0 30%;
          max-width: 30%;
          padding-right: 50px;
        }
        
        .sidebar-item {
            margin-bottom: 10px;
            cursor: pointer;
            padding: 5px 40px;
            color: #dadada !important;
            width: 90%;
        }
        
        .sidebar-item.active {
            border: 2px solid #f08719;
            border-radius: 8px;
            padding: 8px 15px;
            background-color: #2a2a2a;
            width: 70%;
        }
        
        .sidebar-category {
            font-size: 0.8rem;
            font-weight: 600;
            color: #dadada;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .sidebar-category.active {
            color: #dadada;
        }
        
        .sidebar-category::before {
            content: '●';
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .sidebar-category.active::before {
            color: #dadada;
        }
        
        .content-area {
          flex: 0 0 65%;
          max-width: 65%;
          padding-left: 30px;
          border-left: 1px solid #616161;
        }
        
        .card {
          width: 70%;
            border: none;
            border-bottom: 1px solid #dadada;
            border-radius: 0;
        }
        
        .card:last-child {
            border-bottom: none;
        }
        
        .card-header {
          background-color: #2a2a2a;
            color: #dadada;
            border: none;
            padding: 9px 0;
        }
        
        .btn-link {
            color: #dadada;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            text-align: left;
            padding: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn-link:hover {
            color: #f08719;
            text-decoration: none;
        }
        
        .btn-link:focus {
            box-shadow: none;
        }

        .btn:focus, .btn:active {
          color: #f08719 !important;
        }
        
        .collapse-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
            color: #dadada;
            margin-right: 10px;
        }
        
        .btn-link[aria-expanded="true"] .collapse-icon {
            transform: rotate(90deg);
        }
        
        .card-body {
            padding: 0 0 20px 0;
            background-color: #2a2a2a;
            color: #dadada;
            line-height: 1.6;
            font-size: 0.8rem !important;
        }
}

@media (min-width: 1360px) {

  html,
  body {
    background-color: #2c2c2c;
    padding-left: 0.5%;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .desktop-hero { display: block; }
.mobile-hero { display: none; }

  .section-1-row {
    position: absolute;
    width: 100%;
    top: 8%;
  }

  .section-1 {
    position: absolute;
    top: 8%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-1-imagegroup {
    position: absolute;
    width: 96%;
    height: 101%;
    top: 13%;
  }

  .section-1-image-item {
    position: absolute;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .section-1-image-item.active {
    opacity: 1;
  }

  .section-1-image-text {
    position: absolute;
    top: 2%;
    right: 2%;
    font-family: "Lato";
    font-weight: 500;
    color: #dadada;
    font-size: 3.5vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .section-1-text {
    position: absolute;
    width: 60%;
    height: 10%;
    top: 46%;
    left: 3%;
    -webkit-text-stroke: 0.8px #000000;
    opacity: 0.88;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 3.7vw;
    line-height: 10vh;
  }

  .section-2-row {
    position: absolute;
    top: 100%;
    width: 100%;
    padding-right: 0%;
  }

  .section-2 {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    padding-right: 0%;
  }

  .section-2-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-2-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-2-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-2-text-1 {
    position: absolute;
    top: 43%;
    left: 5%;
    color: #dadada;
    font-family: "Lato";
    font-size: 2vw;
  }

  .section-2-text-2 {
    display: inline;
    position: absolute;
    top: 58%;
    left: 5%;
    color: #dadada;
    font-family: "Lato";
    font-size: 4vw;
    font-weight: 800;
  }

  .section-2-text-2-subtext-1 {
    display: none;
  }

  .section-2-text-2-subtext-2 {
    display: none;
  }

  .section-2-text-3 {
    display: inline;
    position: absolute;
    top: 79%;
    left: 81.1%;
    color: #dadada;
    font-family: "Lato";
    font-size: 2vw;
  }

  .section-2-image {
    position: absolute;
    top: 25%;
    left: 18%;
    width: 60%;
    height: 70%;
  }

  .section-3-row {
    position: absolute;
    top: 200%;
    width: 100%;
    padding-right: 0%;
  }

  .section-3 {
    position: absolute;
    top: 200%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
    padding-right: 0%;
  }

  .section-3-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-3-text-1 {
    position: absolute;
    width: 45%;
    top: 50%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-3-text-2 {
    position: absolute;
    top: 28%;
    left: 43%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-3-img-border {
    position: absolute;
    width: 37%;
    height: 83%;
    top: 24%;
    left: 52.5%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-3-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 54%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-4-row {
    position: absolute;
    top: 300%;
    width: 100%;
    padding-right: 0%;
  }

  .section-4 {
    position: absolute;
    top: 300%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
  }

  .section-4-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-4-text-1 {
    position: absolute;
    width: 46%;
    top: 50%;
    left: 47%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-4-text-2 {
    position: absolute;
    top: 28%;
    left: 47%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-4-img-border {
    position: absolute;
    width: 37%;
    height: 83%;
    top: 24%;
    left: 7%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-4-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
    border: none;
  }

  .section-5-row {
    position: absolute;
    top: 400%;
    width: 100%;
    padding-right: 0%;
  }

  .section-5 {
    position: absolute;
    top: 400%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
  }

  .section-5-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-5-text-1 {
    position: absolute;
    width: 45%;
    top: 50%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-5-text-2 {
    position: absolute;
    top: 28%;
    left: 36%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-5-img-border {
    position: absolute;
    width: 37%;
    height: 83%;
    top: 24%;
    left: 52.5%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-5-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 54%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-7-row {
    position: absolute;
    top: 500%;
    width: 100%;
    padding-right: 0%;
  }

  .section-7 {
    position: absolute;
    top: 500%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
  }

  .section-7-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-7-text-1 {
    position: absolute;
    width: 46%;
    top: 50%;
    left: 47%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-7-text-2 {
    position: absolute;
    top: 28%;
    left: 47%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-7-img-border {
    position: absolute;
    width: 37%;
    height: 83%;
    top: 24%;
    left: 7%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-7-big-img {
    position: absolute;
    width: 38%;
    height: 83%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
    display: inline;
    border: none;
  }

  .section-7-small-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
    display: none;
  }

  .section-8-row {
    position: absolute;
    top: 600%;
    width: 100%;
    padding-right: 0%;
  }

  .section-8 {
    position: absolute;
    top: 600%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
  }

  .section-8-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-8-text-2 {
    position: absolute;
    width: 42%;
    top: 50%;
    left: 6.7%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-8-text-1 {
    position: absolute;
    top: 28%;
    left: 29%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-8-img-border {
    position: absolute;
    width: 37%;
    height: 83%;
    top: 24%;
    left: 52.5%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-8-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 54%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-9-row {
    position: absolute;
    top: 700%;
    width: 100%;
    padding-right: 0%;
  }

  .section-9 {
    position: absolute;
    top: 700%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 12px;
  }

  .section-9-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 14%;
    left: 0%;
    border-radius: 23px;
  }

  .section-9-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-9-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-9-text-1 {
    position: absolute;
    left: 39%;
    top: 20%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-text-2 {
    position: absolute;
    left: 41%;
    top: 100%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 2vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-customer-logo-1 {
    position: absolute;
    width: 11%;
    height: 24%;
    top: 41%;
    left: 12%;
  }

  .section-9-customer-logo-2 {
    position: absolute;
    width: 10%;
    height: 36%;
    top: 35%;
    left: 32%;
  }

  .section-9-customer-logo-3 {
    position: absolute;
    width: 10%;
    height: 21%;
    top: 42%;
    left: 52%;
  }

  .section-9-customer-logo-4 {
    position: absolute;
    width: 15%;
    height: 21%;
    top: 42%;
    left: 70%;
  }

  .section-9-customer-logo-5 {
    position: absolute;
    width: 16%;
    height: 10%;
    top: 82%;
    left: 9%;
  }

  .section-9-customer-logo-6 {
    position: absolute;
    width: 17%;
    height: 14%;
    top: 79%;
    left: 28.5%;
  }

  .section-9-customer-logo-7 {
    position: absolute;
    width: 14%;
    height: 10.3%;
    top: 81%;
    left: 50.5%;
  }

  .section-9-customer-logo-8 {
    position: absolute;
    width: 16%;
    height: 7%;
    top: 82%;
    left: 70%;
  }

  .section-10-row {
    position: absolute;
    top: 800%;
    width: 100%;
    padding-right: 0%;
  }

  .section-10 {
    position: absolute;
    top: 800%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-10-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-10-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-10-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .carousel.vidcar {
    position: relative;
    top: 15%;
    left: 5.2%;
    width: 87%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  /* Keep everything else the same — only new heading style */
  .vidcar-slide {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vidcar-slide video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

  .vidcar-heading {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    font-family: "Lato", sans-serif;
    pointer-events: none; /* doesn’t interfere with hover */
  }


  .carousel-track.vidcar-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.vidcar-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 250px;
    height: 347px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.vidcar-image.center {
    z-index: 6;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.vidcar-image.left {
    z-index: 6;
    transform: translateX(-140%) scale(0.9);
    opacity: 0.1;
  }

  .carousel-image.vidcar-image.right {
    z-index: 6;
    transform: translateX(140%) scale(0.9);
    opacity: 0.1;
  }

  .carousel-buttons.vidcar-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-buttons.vidcar-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.vidcar-dots {
    position: absolute;
    width: 100%;
    top: 97%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.vidcar-dots button {
    width: 10px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.vidcar-dots button.active {
    background-color: #f08719;
  }

  .section-11-row {
    position: absolute;
    top: 900%;
    width: 100%;
    padding-right: 0%;
  }

  .section-11 {
    position: absolute;
    top: 900%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-11-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-11-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-11-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-11-blog-text-1 {
    position: absolute;
    top: 18.5%;
    left: 43%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .carousel.reviews {
    position: relative;
    top: 15%;
    left: 5.2%;
    width: 86%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.reviews-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.reviews-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 380px;
    height: 400px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.reviews-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.reviews-image.left {
    z-index: 2;
    transform: translateX(-100%) scale(0.7);
    opacity: 0.1;
  }

  .carousel-image.reviews-image.right {
    z-index: 2;
    transform: translateX(100%) scale(0.7);
    opacity: 0.1;
  }

  .carousel-buttons.reviews-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-buttons.reviews-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.reviews-dots {
    position: absolute;
    width: 100%;
    top: 90%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.reviews-dots button {
    width: 10px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.reviews-dots button.active {
    background-color: #f08719;
  }


  .section-12-row {
    position: absolute;
    top: 1000%;
    width: 100%;
    padding-right: 0%;
  }

  .section-12 {
    position: absolute;
    top: 1000%;
    width: 100%;
    height: 10vh;
    scroll-snap-align: start;
  }

  .section-12-border {
    position: absolute;
    height: 94%;
    width: 92%;
    left: 2%;
    border-radius: 23px;
    background-color: #2c2c2c;
    border-radius: 100.91px;
    border: 1.04px solid;
    border-color: #727272;
    backdrop-filter: blur(82.91px) brightness(100%);
    -webkit-backdrop-filter: blur(82.91px) brightness(100%);
  }

  .section-12-logo-1 {
    position: absolute;
    top: 0%;
    left: 2%;
    width: 5vw;
    height: 9vh;
    max-width: 20vw; 
    object-fit: cover;
  }

  .section-12-logo-2 {
    display: inline;
    position: absolute;
    top: 18%;
    left: 91%;
    width: 6vw;
    height: 6.7vh;
  }

  .section-12-logo-3 {
    position: absolute;
    top: 24%;
    left: 28%;
    width: 5.2vh;
    height: 5.2vh;
    object-fit: cover;
  }

  .section-12-logo-4 {
    position: absolute;
    top: 24%;
    left: 33%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-5 {
    position: absolute;
    top: 24%;
    left: 38%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-6 {
    position: absolute;
    top: 24%;
    left: 43%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-seperator {
    display: inline;
    position: absolute;
    top: 20%;
    left: 49.5%;
    width: 0.2vw;
    height: 6vh;
    object-fit: cover;
  }

  .section-12-mail {
    position: absolute;
    top: 17%;
    left: 54%;
    width: 5.4vh;
    height: 4vh;
    object-fit: cover;
    color: #dadada;
    transition: color 0.3s ease;
  }

  .section-12-address {
    position: absolute;
    top: 17%;
    left: 59%;
    width: 4.4vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-privacy-policy {
    position: absolute;
    top: 28%;
    left: 63.5%;
    width: 10%;
    font-size: 1.3vw;
    color: #dadada;
  }
  
  .section-12-privacy-policy:hover {
    color: #f08719;
  }

  .section-footer-padding {
    position: absolute;
    top: 1000%;
    margin-bottom: 5%;
  }

  .section-13-row {
    position: absolute;
    top: 1000%;
    width: 100%;
    padding-right: 0%;
  }

  .section-13 {
    position: absolute;
    top: 1000%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-13-border {
    position: absolute;
    width: 96%;
    height: 100%;
    top: 16%;
    left: 0%;
    border-radius: 23px;
  }

  .section-13-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-13-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .faq-section {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
    top: 21%;
  }

  .faq-content {
            min-height: auto;
            font-family: "Lato";
        }
        
        .sidebar {

          flex: 0 0 25%;
          max-width: 25%;
          padding-right: 50px;
        }
        
        .sidebar-item {
            margin-bottom: 15px;
            cursor: pointer;
            padding: 5px 0;
            color: #dadada !important;
        }
        
        .sidebar-item.active {
            border: 2px solid #f08719;
            border-radius: 8px;
            padding: 9px;
            background-color: #2a2a2a;
        }
        
        .sidebar-category {
            font-size: 1rem;
            font-weight: 600;
            color: #dadada;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        
        .sidebar-category.active {
            color: #dadada;
        }
        
        .sidebar-category::before {
            content: '●';
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .sidebar-category.active::before {
            color: #dadada;
        }
        
        .content-area {
          flex: 0 0 65%;
          max-width: 65%;
          padding-left: 30px;
          border-left: 1px solid #616161;
        }
        
        .card {
          width: 80%;
            border: none;
            border-bottom: 1px solid #dadada;
            border-radius: 0;
        }
        
        .card:last-child {
            border-bottom: none;
        }
        
        .card-header {
          background-color: #2a2a2a;
            color: #dadada;
            border: none;
            padding: 12px 0;
        }
        
        .btn-link {
            color: #dadada;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            text-align: left;
            padding: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn-link:hover {
            color: #f08719;
            text-decoration: none;
        }
        
        .btn-link:focus {
            box-shadow: none;
        }

        .btn:focus, .btn:active {
          color: #f08719 !important;
        }
        
        .collapse-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #dadada;
            margin-right: 10px;
        }
        
        .btn-link[aria-expanded="true"] .collapse-icon {
            transform: rotate(90deg);
        }
        
        .card-body {
            padding: 0 0 20px 0;
            background-color: #2a2a2a;
            color: #dadada;
            line-height: 1.6;
            font-size: 1rem !important;
        }

}

@media (min-width: 2560px) {

  html,
  body {
    background-color: #2c2c2c;
    padding-left: 1%;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .desktop-hero { display: block; }
.mobile-hero { display: none; }

  .section-1-row {
    position: absolute;
    width: 100%;
  }

  .section-1 {
    position: absolute;
    top: 8%;
    width: 100%;
    height: 95vh;
    scroll-snap-align: start;
  }

  .section-1-imagegroup {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 13%;
    left: 2%;
  }

  .section-1-image-item {
    position: absolute;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .section-1-image-item.active {
    opacity: 1;
  }

  .section-1-image-text {
    position: absolute;
    top: 2%;
    right: 2%;
    font-family: "Lato";
    font-weight: 500;
    color: #dadada;
    font-size: 3.5vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .section-1-text {
    position: absolute;
    width: 51%;
    height: 10%;
    top: 46%;
    left: 3%;
    -webkit-text-stroke: 0.8px #000000;
    opacity: 0.88;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 4vw;
    line-height: 10vh;
  }

  .section-2-row {
    position: absolute;
    top: 100%;
    width: 100%;
    padding-right: 0%;
  }

  .section-2 {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-2-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 16%;
    left: 2%;
    border-radius: 23px;
  }

  .section-2-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-2-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-2-text-1 {
    position: absolute;
    top: 43%;
    left: 9%;
    color: #dadada;
    font-family: "Lato";
    font-size: 2.5vw;
  }

  .section-2-text-2 {
    display: inline;
    position: absolute;
    top: 58.5%;
    left: 9%;
    color: #dadada;
    font-family: "Lato";
    font-size: 3.6vw;
    font-weight: 800;
  }

  .section-2-text-2-subtext-1 {
    display: none;
  }

  .section-2-text-2-subtext-2 {
    display: none;
  }

  .section-2-text-3 {
    display: inline;
    position: absolute;
    top: 79%;
    left: 73.5%;
    color: #dadada;
    font-family: "Lato";
    font-size: 2.5vw;
  }

  .section-2-image {
    position: absolute;
    top: 25%;
    left: 18%;
    width: 60%;
    height: 70%;
  }

  .section-3-row {
    position: absolute;
    top: 200%;
    width: 100%;
    padding-right: 0%;
  }

  .section-3 {
    position: absolute;
    top: 200%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-3-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-3-text-1 {
    position: absolute;
    width: 46%;
    top: 50%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-3-text-2 {
    position: absolute;
    top: 28%;
    left: 42%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-3-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 26%;
    left: 53%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-3-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 54%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-4-row {
    position: absolute;
    top: 300%;
    width: 100%;
    padding-right: 0%;
  }

  .section-4 {
    position: absolute;
    top: 300%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-4-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-4-text-1 {
    position: absolute;
    width: 44%;
    top: 50%;
    left: 47%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-4-text-2 {
    position: absolute;
    top: 28%;
    left: 47%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-4-img-border {
    position: absolute;
    width: 38%;
    height: 80.5%;
    top: 26%;
    left: 5.5%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-4-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-5-row {
    position: absolute;
    top: 400%;
    width: 100%;
    padding-right: 0%;
  }

  .section-5 {
    position: absolute;
    top: 400%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-5-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-5-text-1 {
    position: absolute;
    width: 46%;
    top: 50%;
    left: 4%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: right;
  }

  .section-5-text-2 {
    position: absolute;
    top: 28%;
    left: 33.7%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-5-img-border {
    position: absolute;
    width: 38%;
    height: 80%;
    top: 26%;
    left: 53%;
    background-color: #c02323;
    border-radius: 50px;
    border: 1px solid;
    border-color: #c02323;
  }

  .section-5-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 54%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-7-row {
    position: absolute;
    top: 500%;
    width: 100%;
    padding-right: 0%;
  }

  .section-7 {
    position: absolute;
    top: 500%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-7-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #c02323;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-7-text-1 {
    position: absolute;
    width: 44%;
    top: 50%;
    left: 47%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-7-text-2 {
    position: absolute;
    top: 28%;
    left: 47%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-7-big-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    /* object-fit: cover; */
    border-radius: 50px;
    border: none;
  }

  .section-7-small-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
    display: none;
  }

  .section-7-img-border {
    position: absolute;
    width: 38%;
    height: 80.5%;
    top: 26%;
    left: 5.5%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-8-row {
    position: absolute;
    top: 600%;
    width: 100%;
    padding-right: 0%;
  }

  .section-8 {
    position: absolute;
    top: 600%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-8-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 54px;
    border: 1px solid;
    border-color: #f08719;
    box-shadow: 0px 0px 20.3px 8px #c023236e;
  }

  .section-8-text-2 {
    position: absolute;
    width: 45%;
    top: 50%;
    left: 47%;
    font-family: "Lato";
    font-weight: 400;
    color: #dadada;
    font-size: 2.2vw;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
  }

  .section-8-text-1 {
    position: absolute;
    top: 28%;
    left: 47%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-8-img-border {
    position: absolute;
    width: 38%;
    height: 80.5%;
    top: 26%;
    left: 5.5%;
    background-color: #f08719;
    border-radius: 50px;
    border: 1px solid;
    border-color: #f08719;
  }

  .section-8-img {
    position: absolute;
    width: 38%;
    height: 82%;
    top: 22%;
    left: 4.5%;
    object-fit: cover;
    border-radius: 50px;
  }

  .section-9-row {
    position: absolute;
    top: 700%;
    width: 100%;
    padding-right: 0%;
  }

  .section-9 {
    position: absolute;
    top: 700%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
    scroll-margin-top: 20px;
  }

  .section-9-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 14%;
    left: 2%;
    border-radius: 23px;
  }

  .section-9-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-9-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-9-text-1 {
    position: absolute;
    left: 37%;
    top: 20%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-text-2 {
    position: absolute;
    left: 41%;
    top: 105%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 2,2vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .section-9-customer-logo-1 {
    position: absolute;
    width: 10%;
    height: 24%;
    top: 40%;
    left: 12%;
  }

  .section-9-customer-logo-2 {
    position: absolute;
    width: 15%;
    height: 36%;
    top: 35%;
    left: 30%;
  }

  .section-9-customer-logo-3 {
    position: absolute;
    width: 10%;
    height: 21%;
    top: 42%;
    left: 52%;
  }

  .section-9-customer-logo-4 {
    position: absolute;
    width: 10%;
    height: 21%;
    top: 42%;
    left: 72%;
  }

  .section-9-customer-logo-5 {
    position: absolute;
    width: 16%;
    height: 8%;
    top: 82%;
    left: 9%;
  }

  .section-9-customer-logo-6 {
    position: absolute;
    width: 18%;
    height: 14%;
    top: 79%;
    left: 28.5%;
  }

  .section-9-customer-logo-7 {
    position: absolute;
        width: 16%;
        height: 11%;
        top: 80%;
        left: 49.5%;
  }

  .section-9-customer-logo-8 {
    position: absolute;
    width: 16%;
    height: 7%;
    top: 82%;
    left: 70%;
  }

  .section-10-row {
    position: absolute;
    top: 800%;
    width: 100%;
    padding-right: 0%;
  }

  .section-10 {
    position: absolute;
    top: 800%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-10-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 16%;
    left: 2%;
    border-radius: 23px;
  }

  .section-10-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #f08719;
    border-left: 1px solid #f08719;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-10-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #f08719;
    border-right: 1px solid #f08719;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .carousel.testimonials {
    position: relative;
    top: 11%;
    left: 5%;
    width: 86%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.testimonials-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.testimonials-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 500px;
    height: 500px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.testimonials-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.3);
    opacity: 1;
  }

  .carousel-image.testimonials-image.left {
    z-index: 2;
    transform: translateX(-120%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-image.testimonials-image.right {
    z-index: 2;
    transform: translateX(120%) scale(0.8);
    opacity: 0.2;
  }

  .carousel-buttons.testimonials-buttons {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
  }

  .carousel-buttons.testimonials-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 29px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.testimonials-dots {
    position: absolute;
    top: 98%;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .carousel-dots.testimonials-dots button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.testimonials-dots button.active {
    background-color: #333;
  }

  .section-11-row {
    position: absolute;
    top: 900%;
    width: 100%;
    padding-right: 0%;
  }

  .section-11 {
    position: absolute;
    top: 900%;
    width: 100%;
    height: 84vh;
    scroll-snap-align: start;
  }

  .section-11-border {
    position: absolute;
    width: 92%;
    height: 100%;
    top: 16%;
    left: 2%;
    border-radius: 23px;
  }

  .section-11-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8%;
    height: 15%;
    border-top: 1px solid #c02323;
    border-left: 1px solid #c02323;
    border-radius: 50px 0 0 0;
    box-shadow: -9px -7px 11.3px -3px #c023236e;
  }

  .section-11-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8%;
    height: 15%;
    border-bottom: 1px solid #c02323;
    border-right: 1px solid #c02323;
    border-radius: 0 0 50px 0;
    box-shadow: 10px 9px 11.3px -3px #c023236e;
  }

  .section-11-blog-text-1 {
    position: absolute;
    top: 19%;
    left: 41.5%;
    font-family: "Lato";
    font-weight: 800;
    color: #dadada;
    font-size: 5vw;
    letter-spacing: 0;
    line-height: normal;
  }

  .carousel.reviews {
    position: relative;
    top: 10%;
    left: 4.5%;
    width: 86%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 4%;
  }

  .carousel-track.reviews-track {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180%;
    height: 100%;
    transition: transform 0.5s linear;
  }

  .carousel-image.reviews-image {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s linear;
    width: 400px;
    height: 400px;
    border-radius: 30px;
    border-color: #c02323;
    border-width: 10px;
  }

  .carousel-image.reviews-image.center {
    z-index: 3;
    transform: translateX(0) scale(1.2);
    opacity: 1;
  }

  .carousel-image.reviews-image.left {
    z-index: 2;
    transform: translateX(-100%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-image.reviews-image.right {
    z-index: 2;
    transform: translateX(100%) scale(0.7);
    opacity: 0.2;
  }

  .carousel-buttons.reviews-buttons {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
  }

  .carousel-buttons.reviews-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 29px;
    cursor: pointer;
    border-radius: 50%;
  }

  .carousel-dots.reviews-dots {
    position: absolute;
    width: 100%;
    top: 86%;
    display: flex;
    justify-content: center;
  }

  .carousel-dots.reviews-dots button {
    width: 10px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }

  .carousel-dots.reviews-dots button.active {
    background-color: #333;
  }

  .textblog-container {
    position: relative;
    top: 4%;
    left: 30%;
    width: 34%;
    height: 15%;
    overflow: hidden;
  }

  .blog-text {
    position: absolute;
    opacity: 0;
    font-family: "Lato";
    font-weight: 300;
    color: #dadada;
    font-size: 2.5em;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    transition: opacity 1s ease-in-out;
  }

  .blog-text.visible {
    opacity: 1;
  }

  .section-12-row {
    position: absolute;
    top: 1000%;
    width: 100%;
    padding-right: 0%;
  }

  .section-12 {
    position: absolute;
    top: 1000%;
    width: 100%;
    height: 10vh;
    scroll-snap-align: start;
  }

  .section-12-border {
    position: absolute;
    height: 94%;
    width: 92%;
    left: 2%;
    border-radius: 23px;
    background-color: #2c2c2c;
    border-radius: 100.91px;
    border: 1.04px solid;
    border-color: #727272;
    backdrop-filter: blur(82.91px) brightness(100%);
    -webkit-backdrop-filter: blur(82.91px) brightness(100%);
  }

  .section-12-logo-1 {
    position: absolute;
    top: 0%;
    left: 2%;
    width: 5vw;
    height: 9vh;
    max-width: 20vw; 
    object-fit: cover;
  }

  .section-12-logo-2 {
    display: inline;
    position: absolute;
    top: 18%;
    left: 90%;
    width: 6.5vw;
    height: 7vh;
    object-fit: cover;
  }

  .section-12-logo-3 {
    position: absolute;
    top: 20%;
    left: 28%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-4 {
    position: absolute;
    top: 20%;
    left: 33%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-5 {
    position: absolute;
    top: 20%;
    left: 38%;
    width: 4.8vh;
    height: 4.8vh;
    object-fit: cover;
  }

  .section-12-logo-6 {
    position: absolute;
    top: 20%;
    left: 43%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-logo-seperator {
    display: inline;
    position: absolute;
    top: 20%;
    left: 49.5%;
    width: 0.2vw;
    height: 6vh;
    object-fit: cover;
  }

  .section-12-mail {
    position: absolute;
    top: 20%;
    left: 54%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
    color: #dadada;
    transition: color 0.3s ease;
  }

  .section-12-address {
    position: absolute;
    top: 20%;
    left: 59%;
    width: 5vh;
    height: 5vh;
    object-fit: cover;
  }

  .section-12-privacy-policy {
    position: absolute;
    top: 25%;
    left: 64%;
    width: 10%;
    font-size: 1.3vw;
    color: #dadada;
  }

  .section-12-privacy-policy:hover {
    color: #f08719;
  }

  .section-footer-padding {
    position: absolute;
    top: 968%;
    margin-bottom: 5%;
}
}