@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding:0;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

li, a, button {
    font-weight: 500;
    font-size: 14px;
    color: rgb(243, 242, 242);
    text-decoration: none;
}

/* HEADER CSS */

.headerlogo{
  cursor: pointer;
  margin-right: auto;
  align-items: center;
  text-align: center;
  padding-top: 3px;
}

.logo{
  padding-bottom: 3px;
  width: 100px;
}


header {
  display: flex;
  background-color: rgb(255, 255, 255);
  justify-content:flex-end;
  align-items: center;
  padding: 10px 5%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.63);
}


button {
  padding: 3px 15px;
  margin-left: 20px;
  background-color: rgba(0,129,199);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.5s ease 0s;
}

button:hover {
  background-color: #004edf93
}



/*--NAVIGATION CSS--*/

.desktopnav {
  background: rgb(255, 255, 255);
  top: 0;
  position: sticky;
  z-index: 16;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.418);
  padding: 0;
  margin: 0;
}

.desktopnav:after {
  content: '';
  clear: both;
  display:table;
}

.desktopnav ul{
  list-style: none;
  margin-right:50px;
  margin-left:50px;
  position: relative;
}

.desktopnav ul li {
  display: inline-block;
  background:rgb(255, 255, 255);
  margin: 0 10px;
  transform: translateY(15%);
}

.desktopnav ul li a {
  color: #0081c7;
  text-decoration: none;
  line-height: 30px;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 3px;
  transition: .1s;
}

.desktopnav ul li a:hover {
  text-decoration: none;
  color:white;
  background: rgba(0,129,199);
}

.desktopnav ul ul li a:hover {
color: rgb(255, 255, 255);
text-decoration: none;
background:rgb(1, 45, 85);
}

.desktopnav ul ul {
  position: absolute;
  top: 80px;
  border-top: 3px solid rgba(0,129,199);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  transform: translateX(-50px);
}

.desktopnav ul ul ul {
  border-top: none;
}

.desktopnav ul li:hover > ul {
  top: 40px;
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.desktopnav ul ul li{
  position: relative;
  margin: 0px;
  width: 150px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.desktopnav ul ul li:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.desktopnav ul ul ul li:first-child{
  border-top-right-radius: 8px;
}

.desktopnav ul ul li a{
  line-height: 30px;
  transition: 0.2s;
}

.desktopnav ul ul ul li{
  position: relative;
  top: -55px;
  left: 150px;
}

.fa-plus {
  font-size: 12px;
  margin-left: 40px;
}

.quotation {
  float: right;
  padding: 5px 0;
}

/* MOBILE NAV */

.btn {
  position: relative;
  left: 45px;
  height: 45px;
  width: 45px;
  text-align: center;
  align-items: center;
  cursor: pointer;
  border-radius: 3px;
  transition: left 0.4s ease;
  display: none;
}

.btn.click {
  left:260px;
}

.btn i {
  color: rgba(0,129,199);
  font-size: 28px;
  line-height: 45px;
  transform: translateY(-15%) translateX(-10%);
}

.btn.click i:before {
  content: '\f00d';
}

.sidebar {
  position: fixed;
  top: 0;
  width: 250px;
  height: 100%;
  left: -250px;
  background: rgb(255, 255, 255);
  z-index:10;
  transition:left 0.4s ease;
  z-index: 17;
}

.sidebar.show {
  left: 0px;
}

.sidebar ul {
  background:rgb(255, 255, 255);
  height:100%;
  width: 100%;
  list-style: none;
  display: none;
}

.sidebar ul li{
  line-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255,0.1);
}

.sidebar ul li:last-child{
  border-bottom: 1px solid rgba(255, 255, 255,0.1);
}

.sidebar ul li a{
  position: relative;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
  padding-left: 40px;
  font-weight: 500;
  display:block;
  width: 100%;
  border-left: 3px solid transparent;
  cursor: pointer;
}

.sidebar ul li.active a{
  color: rgba(0,129,199);
  background: rgb(218, 218, 218);
  border-left-color: rgba(0,129,199);
}

.sidebar ul ul {
  position: static;
  display: none;
}

.sidebar ul .feat-show.show{
  display: block;
}

.sidebar ul .serv-show.show1{
  display: block;
}

.sidebar ul .lastbrand-show.show2{
  display: block;
}

.sidebar ul ul li {
  line-height: 42px;
  border-bottom: none;
}

.sidebar ul ul li a{
  font-size:17px;
  color: #e6e6e6;
  padding-left: 80px;
}

.sidebar ul ul ul li a{
  font-size: 14px;
  padding-left: 100px;
}

.sidebar ul li.active ul li a{
  color: #000000;
  background: rgb(255, 255, 255);
  border-left-color: transparent;
}

.sidebar ul li ul li.active .lastbrand-btn{
  color: rgba(0,129,199);
  background: rgb(19, 34, 46);
  border-left-color: rgba(0,129,199);
}

.sidebar ul li ul li.active ul li a{
  color: #e6e6e6;
  background: rgb(2, 16, 29);
  border-left-color: transparent;
}

.sidebar ul ul li a:hover{
  color: rgba(0,129,199) !important;
  background: rgb(19, 34, 46)!important;
}

.sidebar ul li a span {
  position: absolute;
  top: 50%;
  right:20px;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.4s;
}

.sidebar ul ul li a span {
  font-size: 14px;
  right: 23px;
}

.sidebar ul li a span.rotate:before {
  content: '\f146'
}

.sidebar ul li a span.clicked:before {
  content: '\f068'
}

#qsidebar {
  display: none;
}

/* MODAL CSS */
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0,0,0,0.7);
  z-index: 17;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s; 
}

.bg-active {
  visibility: visible;
  opacity: 1;
}

.model {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
  
}

.contact-form{
  align-items: center;
  padding: 20px 60px;
  width: 380px;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
}


.contact-form h2 {
  color: rgba(0,129,199);
  text-align: center;
  padding-bottom: 20px;
}


.contact-form .cfcontent input, textarea {
  border: none;
  border-bottom: 2px solid rgba(0,129,199);
  width: 100%;
  height: 20px;
  margin: 30px 0;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  background: transparent;
  font-size: 12px;
  transition: 0.2s ease;
}

.cfcontent input::placeholder, textarea::placeholder {
  color: rgb(99, 106, 122);
}

.cfcontent input:focus {
  color:rgba(0,129,199);
  font-size: 14px;
  transition: 0.2s ease;
}

.contact-form textarea {
  height: 80px;
  resize: vertical;
  max-height: 135px;
  min-height: 80px;
}

.submit {
  margin: 10px;
  background-color: rgba(0,129,199);
  padding: 10px 15px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  color: rgb(0, 0, 0);
}

.submit:hover {
  background-color: rgb(0, 68, 131);
}

.closeformodal {
  position: absolute;
  top: 8px;
  right: 10px;
}

.modal-close {
  font-size: 25px;
  color: rgba(0,129,199);
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease 0s;
}

.modal-close:hover {
  color: rgb(0, 68, 131);
  text-decoration: none;
}

.errors {
  position: absolute;
  color: rgba(255, 0, 0, 0.733);
  transform: translateY(-28px);
  font-size: 10px;
}

/*EMAIL SEND INFO CSS */

.erroremail {
  background-color: rgb(241, 66, 66);
  color: white;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  top: 0;
  left: 0;
  right: 0;
}

.successemail {
  background-color: rgb(56, 207, 88);
  color: white;
  padding: 10px;
  position:absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
}

.erroremail i {
  padding-right: 10px;
}

.successemail i {
  padding-right: 10px;
}

.closeinfo1 {
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.closeinfo2 {
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.closeinfo1:hover {
  color:rgb(182, 48, 48);
}

.closeinfo2:hover {
  color: rgb(36, 136, 58);
}

.form-remove {
  visibility: hidden;
}



/* CAROUSEL CSS */

.carousel-indicators {
  transform:translateY(20px);
}

.carousel-indicators li {
  background-color: #616161b9;
  border:none;
}

.carousel-indicators .active {
  background-color: rgba(0,129,199);
}

.container {
  padding:0px;
  margin:0px;
  width:100%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.418);
}

#myMobCarousel {
  display: none;
  margin: 0px;
  width: 100%;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.26);
}

/*FEATURES CSS */

.features {
  margin: 0;
  padding: 0;
  background-color: rgb(27, 10, 10)
}

.feattitle {
  padding: 10px;
  padding-left: 100px;
  padding-top: 50px;
}

/*OWL CAROUSEL CSS*/
.wrapper{
  width: 100%;
  display: flex;
  align-items: center;
}
#brands{
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}
#brands .card{
    width: 150px;
    height: 150px;
    background-color: rgb(255, 255, 255);
    margin: 20px;
    transition: transform .2s;
}

#brands .card:hover{
    transform:scale(1.1);
    cursor: pointer;
}

.featbrand {
    width: 150px;
    height: 150px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.owl-dots{
  text-align: center;
  margin-top: 10px;
}
.owl-dot{
  height: 15px;
  width: 45px;
  margin: 0 5px;
  outline: none;
  border-radius: 14px;
  border: 2px solid #0072bc!important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.owl-dot.active,
.owl-dot:hover{
  background: #0072bc!important;
}


/*ABOUT SECTION*/
.aboutteaser {
  color: rgb(0, 0, 0);
  background-color: rgba(0,129,199);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  margin-top: 30px;
  align-items: center;
  justify-content: center;  
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
}


.aboutteasertext {
  padding: 30px;
  flex: 1;
  color: white;
}

.aboutteasertext button{
  background-color: white;
}

.aboutteasertext a{
  color:rgba(0,129,199);
  text-decoration: none;
}

.aboutteasertext button:hover{
  background-color:rgb(178, 179, 179);
}

.imageabout {
  object-fit:cover;
  width:100%;
  max-width: 600px;
  margin-right: 20px;
}


.abouttitleholder {
  color: rgb(255, 255, 255);
  font-weight:bolder;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .aboutteaser {
    flex-direction: column;  /* Stack content vertically on smaller screens */
    align-items: center;
  }

  .imageabout {
    width: 100%;  /* Image should take full width on small screens */
    margin-bottom: 20px;  /* Add space below the image */
  }

  .aboutteasertext {
    padding: 20px; /* Adjust padding for smaller screens */
  }
}
/* FOOTER NAVIGATION */

footer {
  background-color: white;
  padding: 30px 15%;
  background-repeat: no-repeat;
  background:linear-gradient(0deg, rgba(217, 246, 255, 0.842), rgba(255, 255, 255, 0.877)), url(images/footerbg.jpg);
  background-size: cover;
  background-position: center;
  color:rgb(0, 0, 0);
  margin-top: 100px;
}

.footercolumns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footerlogo {
  width: 110px;
}

.address {
  padding: 5px 0px 0px 0px;
  font-size: 12px;
}

.columntitle {
  color:rgb(24, 151, 255);
  font-weight: bolder;
}

.fa {
  color: rgb(24, 151, 255);
  text-decoration: none;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.socialsfooter i {
  padding: 20px;
  color: rgb(24, 151, 255);
}

.socialsfooter i:hover {
color:#0046c9;
}

.cc {
  padding: 15px;
  background-color: rgb(255, 255, 255);
  text-align: center;
  background-size: 100% 100%;
  color:rgb(131, 131, 131);
}




/* PRODUCT LIST */
.wrapperproducts {
  width: 800px;
  margin: 20px auto;
}

.viewlinks {
  margin-bottom: 10px;
  background: rgb(255, 255, 255);;
  padding: 10px;
  border-radius: 3px;
}

.viewlinks ul {
  display: flex;
  justify-content: center;
  list-style:none;
}

.viewlinks ul li {
  margin: 0 15px;
  font-weight: 600px;
  font-size: 20px;
  cursor: pointer;
  color:#464646
}

.viewlinks ul li:hover,
.viewlinks ul li.active {
  color: rgba(0,129,199);
}

.view-item img {
  width:200px;
}

.view-main {
  background: rgb(255, 255, 255);
  border-radius: 3px;
  padding: 15px;
}

.list-view .view-item {
  border: 1px solid #e2efe1;
  margin: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.list-view .view-item:last-child {
  margin-bottom: 0;
}

.list-view .view-item .vi-left{
  margin-right: 25px;
}

.view-item .ptitle {
  font-weight: 600;
}

.view-item .pcontent {
  margin: 5px 0;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.view-item .pbutton {
  width: 125px;
  background: rgba(0,129,199);
  color: #fff;
  border-radius: 3px;
  padding: 8px 5px;
  text-align: center;
  cursor: pointer;
}

.view-item .pbutton:hover {
  background: rgb(0, 68, 131);
}

.grid-view {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-view .view-item {
  width: 230px;
  height:400px;
  border: 1px solid #e2efe1;
  padding: 25px;
  text-align: center;
  margin: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-view .view-item .vi-left {
  margin-bottom: 10px; 
  flex-shrink: 0;
}

.grid-view .view-item .vi-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.grid-view .view-item .vi-right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.grid-view .view-item .ptitle {
  font-weight: 600;
  margin-bottom: 10px;
}

.grid-view .view-item .pcontent {
  margin: 5px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limits text to 5 lines */
  -webkit-box-orient: vertical;
}

.grid-view .view-item .pbutton {
  margin: 10px auto 0;
  width: 125px;
  background: rgba(0,129,199);
  color: #fff;
  border-radius: 3px;
  padding: 8px 5px;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0; /* Keeps button at fixed size */
}

.grid-view .view-item .pbutton:hover {
  background: rgb(0, 68, 131);
}

/*CONTAINER PRODUCTS*/



.containerproducts {
  padding: 10px;
  padding-left: 120px;
  margin-left:20px;

}

.containerproducts h2 {
  font-weight: bolder;
  font-size: 40px;
  text-decoration: none;
  color: black;
}


.videoandtextcontainer p{
  text-align: center;
  font-weight: bolder;
  padding-top: 30px;

}

.videocontainer{
  width: 100%;
}

.videocontainer iframe,
.videocontainer img {
  box-shadow:0px 5px 5px rgba(0, 0, 0, 0.418);
  display: block;
  width: 70%;
  height:70%;
  aspect-ratio: 16/9;
  margin-left: auto;
  margin-right: auto;
}

.infocp {
  padding-left: 100px;
  margin: 40px;
  margin-bottom: 20px;
}


.infocp h2 {
  font-weight: bolder;
  font-size: 30px;
  margin-bottom: 30px;
}

.infocp p {
  font-size: 15px;
  margin-right: 500px;
}

.infocp ul li {
  font-size: 15px;
  margin-right: 500px;
  margin-left: 20px;
}

.photofeature1 {
  padding-right: 120px;
  margin-bottom: 100px;
}

.photofeature1 img {
  width: 250px;
  float: right;
}

.photofeature2 {
  padding-right: 120px;
  margin-bottom: 100px;
}

.photofeature2 img {
  width: 250px;
  float: right; 
}

.photofeature3 {
  padding-right: 120px;
  margin-bottom: 100px;
}

.photofeature3 img {
  width: 250px;
  float: right;
  justify-content: center;
}

.photofeature4 {
  padding-right: 120px;
}

.photofeature4 img {
  width: 250px;
  float: right; 
}

.brochurebutton .pbutton {
  width: 150px;
  background: rgba(0,129,199);
  color: #fff;
  border-radius: 3px;
  padding: 3px 8px;
  text-align: center;
  cursor: pointer;
  margin-top: 0px;
}

.brochurebutton .pbutton:hover {
  background: rgb(9, 67, 99);
}

.brochurebutton {
  padding-left: 150px;
}

/* HERO SECTION */
    .about-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: rgba(0,129,199);
      padding: 50px 10%;
      flex-wrap: wrap;
    }

    .about-hero-text {
      flex: 1;
      min-width: 250px;
    }

    .about-hero-text h1 {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 5px;
    }

    .about-hero-text h3 {
      color: #dcdcdc;
      margin-bottom: 5px;
    }

    .about-hero img {
      flex: 1;
      max-width: 500px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    }

    /* DETAILS SECTION */
    .about-details {
      background-color: #ffffff;
      padding: 60px 15%;
      line-height: 1.8em;
      color: #333;
    }

    .about-details h2 {
      color: #0081c7;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    .about-details ul {
      margin-left: 20px;
      list-style-type: disc;
    }

    .about-details li {
      margin-bottom: 8px;
      color: #333;
    }



/* Responsive Design */

@media screen and (min-width:1472px) {
  .carousel-inner div img {
    width:100%;
  }
}

@media screen and (max-width:890px) {
  li, a, button {
    font-weight: 500;
    font-size: 15px;
    color: rgb(243, 242, 242);
    text-decoration: none;
  }

  .dropdownmenudesk {
    display:none;
  }

  #qdesktop {
    display:none;
  }

  #qsidebar {
    display: inline-block;
    margin: 10px;

  }

  .btn {
    display: inline-block;
    transform: translateY(10%);
  }

  .sidebar ul {
    display: block;
  }
}

@media screen and (max-width:860px) {
  .li, a, button {
    font-weight: 500;
    font-size: 14px;
    color: rgb(243, 242, 242);
    text-decoration: none;
  }
}

@media screen and (max-width:790px) {
  .column3 {
    display: none;
  }
}

@media screen and (max-width:767px) {
  #myCarousel {
    display: none;
  }
  #myMobCarousel {
    display: block;
  }
}


@media screen and (max-width:580px) {
  .address {
    font-size: 10px;
  }

  .footerlogo {
    width: 100px
  }

  .column2 {
    font-size: 12px;
  }

  .aboutteasertext {
    font-size: 12px;
    padding: 0 50px;
  }
}

@media screen and (max-width:520px) {
  footer {
    padding: 30px 10%;
  }
  #brands {
    padding: 0 10px;
  }
  #brands .card {
    width: 120px;
    height: 120px;
  }
  .featbrand {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width:450px) {
  #brands {
    padding: 0 10px;
  }
  #brands .card {
    width: 85px;
    height: 85px;
  }
  .featbrand {
    width: 85px;
    height: 85px;
  }
  .feattitle {
    padding: 0;
    padding-top: 75px;
    padding-bottom: 10px;
    margin: 0;
    align-items: center;
    font-size: 20px;
    text-align: center;
  }
}


/* --- General Mobile & Tablet Adjustments --- FOR PRODUCT PAGE */
@media screen and (max-width: 1024px) {
  .infocp {
    padding-left: 40px;
    margin: 20px;
  }

  .infocp h2 {
    font-size: 26px;
  }

  .infocp p {
    font-size: 16px;
    margin-right: 0;
  }

  .infocp ul li {
  font-size: 16px;
  margin-right: 0;
}

  .containerproducts h2 {
    font-size: 30px;
  }

  .photofeature1 img,
  .photofeature2 img,
  .photofeature3 img,
  .photofeature4 img {
    width: 60%;
    float: none;
    margin: 0 auto;
    display: block;
  }
}

/* --- Tablet and Large Phone Screens (768px and below) --- */
@media screen and (max-width: 768px) {
  .videocontainer iframe,
  .videocontainer img {
    width: 100%;
    height: auto;
  }

  .infocp {
    padding: 10px 20px;
    margin: 20px 10px;
  }

  .infocp h2 {
    text-align: center;
    font-size: 22px;
  }

  .infocp p {
    font-size: 14px;
    line-height: 1.5em;
    margin-right: 0;
  }

  .infocp ul li {
   font-size: 14px;
    line-height: 1.5em;
    margin-right: 0;
}

  .photofeature1,
  .photofeature2,
  .photofeature3,
  .photofeature4 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .photofeature1 img,
  .photofeature2 img,
  .photofeature3 img,
  .photofeature4 img {
    width: 80%;
    float: none;
  }

  .brochurebutton {
    text-align: center;
  }

  .containerproducts h2 {
    font-size: 24px;
  }
}

/* --- Small Phones (480px and below) --- */
@media screen and (max-width: 480px) {

  .infocp h2 {
    font-size: 20px;
  }

  .infocp p {
    font-size: 13px;
  }

  .containerproducts h2 {
    font-size: 20px;
  }
}

/*RESPONSIVE FOR ABOUTUS*/
 @media (max-width: 900px) {
      .about-hero {
        flex-direction: column;
        text-align: center;
      }
      .about-hero-text h1 {
        font-size: 36px;
      }
      .about-hero img {
        margin-top: 20px;
      }
 }
