body header {
  height: 80px !important;
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2509803922);
  top: 0;
  right: 0;
  transform-style: preserve-3d;
  z-index: 1000;
}
body header .subhead {
  height: 20px;
  background-color: #00a3ff;
  padding: 0 20px;
}
body header .subhead p {
  font-size: 10px;
  color: #fff;
}
body header .cont {
  max-width: 1200px;
  height: 60px;
}
body header .cont .logo {
  padding: 0 20px;
  color: #121212;
  max-width: 150px;
}
body header .cont nav {
  justify-content: flex-end;
  height: 100%;
  margin-right: 20px;
}
body header .cont nav ul {
  min-width: 300px;
  height: 100%;
}
body header .cont nav ul li {
  padding: 0 10px;
  height: 50%;
  border-radius: 10px;
}
body header .cont nav ul li a {
  color: #121212;
  font-size: 11px;
  height: 100%;
  transition: all 0.4s ease-in;
}
body header .cont nav > ul li a {
  color: #121212;
  font-size: 13px;
  height: 100%;
  transition: all 0.4s ease-in;
}
body header .cont nav ul li a i {
  color: #00a3ff;
}
body header .cont nav ul li a:hover {
  color: #00a3ff;
}
body header .cont nav .out-btn {
  width: 100px;
  background-color: #00a3ff;
  height: 40px;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
}
body main {
  min-height: 100vh;
  margin-top: 80px;
}
body main .hero {
  background-image: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: color;
  background-color: rgba(0, 0, 0, 0.4039215686);
  animation: bg-animation 18s linear infinite;
  transition: all 0.5s ease-in;
}
@keyframes bg-animation {
  0% {
    background-image: url("../images/hero-bg.jpg");
  }
  33% {
    background-image: url("../images/about.jpg");
  }
  66% {
    background-image: url("../images/image 9.png");
  }
}
body main .hero .cont {
  max-width: 1200px;
  min-height: 500px;
  height: 100%;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  padding: 20px 40px;
}
body main .hero .cont .h-txt {
  gap: 15px;
}
body main .hero .cont .h-txt h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 900;
}
body main .hero .cont .h-txt h1 b {
  color: #00a3ff;
  font-weight: 900;
}
body main .hero .cont .h-txt p {
  color: #ececec;
  font-size: 13px;
}
body main .hero .cont .h-txt a {
  background-color: #00a3ff;
  border-radius: 30px;
  padding: 10px 30px;
  color: #fff;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body main .hero .cont .h-txt a i {
  transition: all 0.2s ease-in;
  transform-origin: left;
  transform: rotate(0deg);
}
body main .hero .cont .h-txt a:hover i {
  transform: rotate(-15deg);
}
body main .product {
  padding: 30px 10px;
  max-width: 1200px;
  margin-top: -200px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2549019608);
  z-index: 10;
}
body main .product .p-img {
  border: 1px solid rgb(183, 183, 183);
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  min-width: 300px;
  margin-bottom: 50px;
}
body main .product .p-txt {
  padding: 30px;
  min-width: 300px;
  margin-bottom: 50px;
  gap: 20px;
}
body main .product .p-txt a {
  background-color: #00a3ff;
  color: #fff;
  width: 150px;
  padding: 15px 20px;
  border-radius: 30px;
}
body main .product .p-txt .table {
  padding: 10px 0;
}
body main .product .p-txt .table ul li {
  padding: 10px 15px;
  background-color: #f6f6f6;
}
body main .product .p-txt .table ul li:nth-child(even) {
  background-color: #e5e5e5;
}
body main .product .p-txt .table ul li h4 {
  text-align: left;
  width: 150px;
}
body main .prod-cont {
  padding: 30px 20px 0 20px;
  margin: 30px 0 0 0;
  max-width: 1200px;
  gap: 20px;
}
body main .prod-cont h2 {
  background-color: #00a3ff;
  color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
}
body main .prod-cont .p-img-cont {
  overflow-x: scroll;
  justify-content: flex-start;
  gap: 30px;
  padding: 30px 0;
}
body main .prod-cont .p-img-cont img {
  width: 250px;
  border: 1px solid rgb(183, 183, 183);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1529411765);
}
body main .prod-cont p {
  padding: 30px 0 0 0;
}
body main .brands {
  padding: 80px 20px;
  background-color: rgba(0, 162, 255, 0.0823529412);
  gap: 10px;
}
body main .brands h2 {
  color: #00a3ff;
}
body main .brands h2 span {
  color: #000;
  font-weight: 800;
}
body main .brands .b-logos {
  margin-top: 25px;
  max-width: 1200px;
  gap: 15px;
  flex-wrap: wrap;
}
body main .brands .b-logos img {
  max-width: 150px;
}
body main .categories {
  padding: 80px 20px;
  background-color: #ffffff;
  gap: 25px;
}
body main .categories .cont {
  max-width: 1200px;
}
body main .categories .cont h2 {
  color: #000000;
}
body main .categories .cont h2 span {
  color: #00a3ff;
  font-weight: 800;
}
body main .categories .cont .tile-cont {
  margin: 25px 0 0 0;
  padding: 50px 0 0 0;
  gap: 40px;
}
body main .categories .cont .tile-cont .tile {
  max-width: 340px;
  min-width: 340px;
  max-height: 160px;
  min-height: 160px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 26, 40, 0.2470588235);
  overflow: hidden;
}
body main .categories .cont .tile-cont .tile img {
  max-width: 150px;
}
body main .categories .cont .tile-cont .tile .tile-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .categories .cont .tile-cont .tile .tile-txt p {
  font-size: 12px;
}
body main .categories .cont .tile-cont .tile .tile-txt a {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  background-color: #00a3ff;
  color: #fff;
  max-width: 100px;
  border-radius: 20px;
}
body main .about {
  background-color: #00a3ff;
}
body main .about .cont {
  max-width: 1200px;
}
body main .about .cont .txt-cont {
  color: #fff;
  gap: 10px;
  padding: 60px 20px;
}
body main .about .cont .txt-cont h2 {
  font-size: 2em;
}
body main .about .cont .txt-cont a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  height: 30px;
  width: 150px;
}
body main .about .cont .img-cont {
  background-image: url("../images/image 9.png");
  background-position: left center;
  background-size: cover;
  height: 300px;
}
body main .products {
  padding: 80px 20px;
  background-color: #ffffff;
  gap: 25px;
}
body main .products .cont {
  max-width: 1200px;
}
body main .products .cont h2 {
  color: #000000;
}
body main .products .cont h2 span {
  color: #00a3ff;
  font-weight: 800;
}
body main .products .cont .categ-tiles {
  margin-top: 30px;
  gap: 10px;
  overflow-x: scroll;
}
body main .products .cont .categ-tiles a {
  padding: 10px;
  min-width: 100px;
  max-width: 100px;
  text-align: center;
  border-radius: 10px;
  font-size: 12px;
  background-color: #a5deff;
  color: #002d47;
}
body main .products .cont .tile-cont {
  margin: 25px 0 0 0;
  padding: 50px 0 0 0;
  gap: 40px;
}
body main .products .cont .tile-cont .tile {
  max-width: 250px;
  min-width: 250px;
  max-height: 300px;
  min-height: 300px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 26, 40, 0.2470588235);
  overflow: hidden;
  gap: 10px;
}
body main .products .cont .tile-cont .tile img {
  max-width: 130px;
}
body main .products .cont .tile-cont .tile .tile-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body main .products .cont .tile-cont .tile .tile-txt p {
  font-size: 12px;
  text-align: center;
}
body main .products .cont .tile-cont .tile .tile-txt a {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  background-color: #00a3ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}
body main .contact {
  padding: 50px 20px;
  gap: 15px;
  background-image: url("../images/abstract.png");
  background-size: cover;
  background-position: center center;
  color: #fff;
}
body main .contact form {
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.1882352941);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  gap: 10px;
}
body main .contact form input,
body main .contact form textarea, body main .contact form select {
  background-color: rgba(255, 255, 255, 0.1568627451);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
}
body main .contact form select option {
  background-color: rgba(255, 255, 255, 0.1568627451);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: #000000;
}
body main .contact form .buttons .clear-btn {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.1921568627);
}
body main .contact form .buttons .submit-btn {
  color: #ffffff;
  background-color: #00a3ff;
}
body main .contact form .buttons button {
  padding: 10px 20px;
}
body main .abt-cont {
  min-height: 300px;
  background-image: url("../images/about.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: color;
  background-color: rgba(0, 0, 0, 0.3960784314);
  margin-bottom: 50px;
}
body main .abt-cont h2 {
  height: 300px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 3em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5803921569);
}
body main .about-div {
  padding: 0 20px;
  margin-bottom: 50px;
}
body main .about-div .cont {
  gap: 20px;
  max-width: 1000px;
}
body footer {
  background-color: #000000;
  color: #fff;
  padding: 100px 20px 50px 20px;
}
body footer .cont {
  max-width: 1200px;
}
body footer .cont .f-logo {
  max-width: 300px;
  min-width: 300px;
}
body footer .cont .soc-med {
  margin: 30px 0;
  gap: 15px;
}
body footer .cont .soc-med a {
  font-size: 1.2em;
  color: #ffffff;
}
body footer .cont .soc-med a:hover {
  color: #d5a4ff;
}
body footer .cont .ft-cont {
  gap: 20px;
  margin: 40px 0;
}
body footer .cont .ft-cont .card {
  max-width: 350px;
  gap: 15px;
}
body footer .cont .ft-cont .card:nth-child(2),
body footer .cont .ft-cont .card:nth-child(3) {
  align-items: flex-end;
}
body footer .cont .ft-cont .card ul {
  gap: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}
body footer .cont .ft-cont .card ul li {
  align-items: flex-end;
}
body footer .cont .ft-cont .card ul li a {
  color: #ffffff;
}
body footer .cont .ft-cont .card ul li a:hover {
  color: #b968ff;
}
body footer .cont .credits {
  margin: 10px 0;
  font-size: 12px;
}
body footer .cont .credits a {
  color: #ffffff;
  font-weight: 800;
}
body .sidebar {
  transform-style: preserve-3d;
  z-index: 10000;
  transform: translateX(100vw);
  transition: all 0.4s ease-in;
  position: fixed;
  bottom: 0;
  top: 0;
  right: 0;
  min-width: 300px;
  max-width: 300px;
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  min-height: 100vh;
  max-height: 100vh;
  gap: 100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.168627451);
}
body .sidebar.active {
  transform: translateX(0);
}
body .sidebar ul {
  height: 100%;
  gap: 25px;
}
body .sidebar ul li {
  padding: 0 20px;
}
body .sidebar ul li a {
  color: #121212;
}
body .sidebar ul li a i {
  color: #00a3ff;
}
body .sidebar .out-btn {
  padding: 0 20px;
  background-color: #ffffff;
  height: 100px;
  color: #000000;
}
body .sidebar .out-btn:nth-child(1) {
  justify-content: flex-end;
}
body #cursor {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #000000;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in;
  z-index: 10000000000000;
} /*# sourceMappingURL=style.css.map */
