@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --header_color: rgb(244, 164, 96);
  --footer_color: rgb(245, 222, 179);
  --header_line_color: rgb(235, 124, 27);
  --sharp_header_color: rgb(235, 124, 27);
  --logo_color: rgb(193, 94, 7);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --star: rgb(255, 0, 0);
  --grey_line: rgb(220, 215, 215);
  --grey_arrow: rgb(164, 162, 162);
  --grey_text: rgb(107, 103, 103);
  --mini_white: rgb(249, 244, 244);
  --transparent_white: rgba(225, 225, 225, 0.5);
  --transparent_header_color: rgba(244, 164, 96, 0.8);
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--mini_white);
}

body.no-scroll {
  overflow: hidden;
}

/* Header Section */

header {
  background-color: var(--header_color);
  height: 80px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 2;
}

.hamburger {
  cursor: pointer;
  display: inline-block;
}

.hamburger > div {
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--white);
}

.hamburger > div:first-child {
  transform: rotate(360deg) translate(0px, 0px);
  transition: 0.3s;
}

.hamburger > div:nth-child(2) {
  transition: 0.3s;
}

.hamburger > div:last-child {
  transform: rotate(0deg) translate(0px, 0px);
  transition: 0.3s;
}

.hamburger > div:not(:last-child) {
  margin-bottom: 5px;
}

.logo_container {
  margin-left: -20%;
}

.logo_container img {
  width: 70px;
}

.search_account_cart {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search_container,
.account_container,
.cart_container {
  cursor: pointer;
}

.account_label {
  display: none;
}

.search_container input {
  display: none;
}

.search_account_cart i {
  font-size: 25px;
  color: var(--white);
}

/* Nav Bar */

nav {
  width: 100%;
  height: calc(100vh - 80px);
  position: fixed;
  top: 80px;
  left: -100%;
  background-color: var(--white);
  transition: 0.2s;
  overflow-y: auto;
  z-index: 2;
}

nav ul {
  list-style: none;
}

nav .products,
nav .solutions {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  padding: 30px 20px;
  color: var(--grey_text);
  border-bottom: 1px solid var(--header_color);
}

nav .all_products,
nav .all_solutions {
  padding: 30px 40px 0px;
  border-bottom: 1px solid var(--header_color);
  display: none;
}

nav .inner_products,
nav .inner_solutions {
  border-bottom: none;
  padding: 0px;
}

nav .product_head,
nav .solution_head {
  color: var(--grey_text);
  font-weight: bold;
  padding-bottom: 30px;
}

nav .product_body,
nav .solution_body {
  padding: 0px 30px 30px;
  display: none;
}

nav ul li.barren_link {
  padding: 30px 20px;
  border-bottom: 1px solid var(--header_color);
  font-weight: bold;
}

nav ul li.barren_link a {
  text-decoration: none;
  color: var(--grey_text);
}

nav ul div p.arrow i {
  color: var(--grey_arrow);
}

nav ul > li > div:last-child a {
  display: block;
  text-decoration: none;
  color: var(--black);
  font-weight: bold;
}

nav ul > li > div:last-child a:not(:last-child) {
  margin-bottom: 30px;
}

nav .products:hover + .all_products,
nav .solutions:hover + .all_solutions,
nav .product_head:hover + .product_body,
nav .solution_head:hover + .solution_body,
nav .all_products:hover,
nav .all_solutions:hover,
nav .product_body:hover,
nav .solution_body:hover {
  display: block;
}

/* Main Content */

main {
  margin-top: 80px;
}

.mobile_search_container {
  background-color: var(--header_color);
  padding-bottom: 20px;
  display: none;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 2;
}

.mobile_search_container .search_container {
  background-color: var(--white);
  width: 80%;
  display: flex;
  justify-content: end;
  border-radius: 10px;
  margin: 0px auto;
}

.mobile_search_container .search_container input {
  display: inline;
  border: none;
  outline: none;
  width: 100%;
  font-size: 17px;
  padding: 5px 20px;
  border-radius: 5px;
}

.mobile_search_container .search_container i {
  background-color: var(--logo_color);
  color: var(--white);
  padding: 10px;
  border-radius: 0px 5px 5px 0px;
  font-size: 20px;
}

/* Main Body */

.user_account {
  background-color: var(--white);
  position: fixed;
  top: 80px;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.login_sign_up_wrapper {
  overflow: hidden;
  height: calc(100vh - 80px);
}

.user_account .login {
  height: calc(100vh - 80px);
  position: relative;
  left: 0%;
  z-index: 1;
}

.user_account .sign_up {
  height: 100%;
  position: relative;
  top: -100%;
  left: 100%;
}

.user_account .account_pointer {
  position: fixed;
  font-size: 40px;
  top: -37px;
  right: 52px;
  color: var(--white);
}

.user_account_heading {
  padding: 50px 0px 0px;
  text-align: center;
}

.user_account_heading h3 {
  color: var(--header_color);
  margin-bottom: 10px;
  font-size: 20px;
}

.user_account_heading h4 {
  color: var(--grey_text);
  font-size: 14px;
  margin-bottom: 30px;
}

.user_account form {
  margin: 0px 20px;
}

.user_account form .label_input {
  position: relative;
}

.user_account form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 15px 5px;
  font-size: 17px;
  border: none;
  border-radius: 3px;
  outline: 2px solid var(--grey_line);
  color: var(--header_color);
}

.user_account form label {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 17px;
  color: var(--grey_text);
  transition: 0.2s ease-in-out;
  pointer-events: none;
}

.user_account form input:focus {
  outline: 2px solid var(--header_color);
  border: none;
}

.user_account form input:focus + label,
.user_account form input:not(:placeholder-shown) + label {
  top: 3px;
  font-size: 12px;
}

.user_account form button {
  width: 100%;
  background-color: var(--header_color);
  color: var(--white);
  padding: 12px 0px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.user_account form button:hover {
  background-color: var(--transparent_header_color);
  transition: 0.5s;
}

.new_customer {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20%;
}

.new_customer span:last-child {
  color: var(--header_color);
  cursor: pointer;
}

/* Hero Section */

/*  Gallery Begins */

#gallery2 {
  width: calc(100% - 40px);
  height: 50vw;
  margin: 100px 20px 0px;
  position: relative;
  border-radius: 10px;
}

.albom2 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* z-index: 1; */
  border-radius: 10px;
}

#play_pause2 {
  position: absolute;
  background-image: url("../images/pause_play.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  top: 5%;
  left: 2%;
  z-index: 1;
  cursor: pointer;
}

.caption_holder2 {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 23%;
  z-index: 1;
}

p#caption_text2 {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
  width: 100%;
  text-align: center;
}

.image_holder2 {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.image_holder2 img {
  width: 100%;
  height: 100%;
}

.text2 {
  opacity: 0;
}

#gallery2 span {
  width: 10px;
  height: 10px;
  background-color: var(--transparent_white);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

#gallery2 span.active2 {
  background-color: var(--white);
}

#gallery2 span:not(:first-child) {
  margin-left: 7px;
}

#dot-wrapper2 {
  margin: 0px auto;
  position: absolute;
  top: 84%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#left {
  left: 2%;
}

#right {
  right: 2%;
}

#left,
#right {
  position: absolute;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: white;
  background-color: var(--transparent_white);
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

#left i,
#right i {
  display: block;
  font-size: 25px;
}

/* This moves current slide to the left */

.present_slide_go_left2 {
  animation-name: present_go_left2;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes present_go_left2 {
  from {
    opacity: 1;
    margin-left: 0;
  }

  to {
    opacity: 1;
    margin-left: -100%;
  }
}

/* This brings next slide to the left */

.future_slide_come_left2 {
  animation-name: future_come_left2;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes future_come_left2 {
  from {
    opacity: 1;
    margin-left: 100%;
  }

  to {
    opacity: 1;
    margin-left: 0%;
  }
}

/* This moves current slide to the right */

.present_slide_go_right2 {
  animation-name: present_go_right2;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes present_go_right2 {
  from {
    opacity: 1;
    margin-left: 0%;
  }

  to {
    opacity: 1;
    margin-left: 100%;
  }
}

/* This brings next slide to the right */

.future_slide_come_right2 {
  animation-name: future_come_right2;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes future_come_right2 {
  from {
    opacity: 1;
    margin-left: -100%;
  }

  to {
    opacity: 1;
    margin-left: 0%;
  }
}

/*  Caption Text Animation */

.animate2 {
  animation-name: to_animate2;
  animation-duration: 1.3s;
}

@keyframes to_animate2 {
  from {
    opacity: 0;
    margin-top: -18px;
  }

  to {
    margin-top: 0;
    opacity: 1;
  }
}

/*  Gallery Ends */

.hero_cta {
  margin: 30px 20px;
}

.hero_cta .heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
}

.hero_cta #animation {
  font-size: 20px;
  font-weight: 500;
  height: 20px;
}

.hero_cta a {
  color: var(--white);
  background-color: var(--header_color);
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.hero_cta a:hover {
  background-color: var(--transparent_header_color);
  transition: 0.5s;
}

.oem_summery_head {
  margin: 30px 20px 10px;
  color: var(--sharp_header_color);
  font-size: 20px;
  font-weight: 500;
}

/* OEM Carousel Start */

.oem_slider {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0px 20px;
}

.slide-track {
  display: flex;
  width: calc(250px * 60);
  animation: scroll 700s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-250px * 63));
  }
}

.oem_slide {
  display: flex;
  align-items: center;
}

.oem_slide:not(:last-child) {
  margin-left: 50px;
}

.oem_slider img {
  width: 150px;
}

.reduce_slide img {
  width: 100px;
}

.little_enlarge_slide img {
  width: 200px;
}

.enlarge_slide img {
  width: 300px;
}

/* OEM Carourel Ends */

/* Brief About */

.brief_about_head {
  font-size: 25px;
  font-weight: 500;
  margin: 30px 20px 20px;
}

.brief_about_body {
  margin: 0px 20px;
}

.brief_about_img_wrapper img {
  width: 100%;
  border-radius: 10px;
}

.brief_about_description {
  color: var(--grey_text);
  line-height: 27px;
  margin-top: 20px;
}

.brief_about a {
  text-decoration: none;
  border: 2px solid var(--header_color);
  color: var(--sharp_header_color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  display: block;
  font-weight: bold;
  margin-top: 20px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 50px;
}

.brief_about a:hover {
  background-color: var(--header_color);
  color: var(--white);
  transition: 0.3s;
  animation: bounce_more_about_us 1.2s infinite;
}

@keyframes bounce_more_about_us {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.brief_about a span {
  margin-right: 10px;
}

/* Why Choose Us */

.why_us {
  margin-top: 50px;
  padding: 50px 20px 70px;
  background-color: var(--header_color);
}

.why_us_heading {
  font-size: 30px;
  text-align: center;
  color: var(--mini_white);
  font-weight: bold;
}

.why_us_sub_heading {
  margin: 10px 0px 20px;
  color: var(--white);
  text-align: center;
  font-weight: bold;
}

.each_why {
  background-color: var(--mini_white);
  padding: 30px 20px;
  border-radius: 10px;
}

.each_why:not(:last-child) {
  margin-bottom: 20px;
}

.why_picture img {
  width: 100px;
}

.why_picture img.reduce_image {
  width: 80px;
}

.why_picture img.good_price {
  border-radius: 50%;
}

.why_text h3 {
  margin: 20px 0px 7px;
}

.why_text p {
  line-height: 27px;
}

/* Whatsapp Chat */

.whatsapp_chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  animation: bounce_whatsapp_chat 0.8s infinite;
}

@keyframes bounce_whatsapp_chat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.whatsapp_chat a {
  display: flex;
  column-gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--black);
}

.whatsapp_text {
  background-color: #1ac10e;
  color: var(--white);
  font-size: 15px;
  font-weight: bold;
  height: fit-content;
  padding: 5px 10px;
  border-radius: 10px;
}

.whatsapp_chat img {
  width: 50px;
}

/* Footer Section */

footer {
  background-color: var(--footer_color);
  padding-top: 50px;
}

.testimonial {
  position: relative;
  padding-bottom: 80px;
  margin: 0px 20px;
  overflow: hidden;
  z-index: 0;
  border-bottom: 1px solid var(--header_line_color);
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 15px;
  height: 100%;
  width: 100%;
}

.testimonial .image {
  text-align: center;
  position: relative;
  color: #eb7c1b;
  margin: 0px;
}

.testimonial .oem_icon_2 {
  position: absolute;
  bottom: -10px;
  right: -5px;
  background-color: var(--mini_white);
  border-radius: 20px;
  width: 20px;
}

.testimonial .image i {
  font-size: 30px;
}

.slide .details {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  align-items: center;
  margin: 0px;
}

.details .name,
.testimonial_details p:first-child {
  font-weight: bold;
  color: var(--sharp_header_color);
}

.details .job,
.testimonial_details p:last-child {
  color: var(--logo_color);
  font-size: 14px;
}

.swiper-pagination {
  margin-bottom: 20px;
}

.swiper-pagination-bullet {
  background-color: var(--grey_text);
}

.swiper-pagination-bullet-active {
  background-color: var(--header_color);
}

.other_device_testimonials {
  display: none;
}

.quick_links {
  margin: 0px 20px;
  cursor: pointer;
  font-size: 14px;
}

.quick_links .about_us,
.quick_links .offices,
.quick_links .main_menu {
  margin-bottom: 0px;
  border-bottom: 1px solid var(--header_line_color);
  transition: 1s ease-in-out;
}

.quick_links .about_us.open,
.quick_links .offices.open,
.quick_links .main_menu.open {
  padding-bottom: 20px;
}

.quick_links .about_us_head,
.quick_links .offices_head,
.quick_links .main_menu_head {
  padding: 15px 0px;
  color: var(--sharp_header_color);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.quick_links .plus_minus {
  font-size: 20px;
  position: relative;
  width: 20px;
  height: 30px;
}

.quick_links .plus_minus div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.quick_links .plus_minus .about_us_plus.open,
.quick_links .plus_minus .offices_plus.open,
.quick_links .plus_minus .main_menu_plus.open {
  display: none;
}

.quick_links .about_us_body,
.quick_links .offices_body,
.quick_links .main_menu_body {
  max-height: 0px;
  line-height: 25px;
  overflow: hidden;
  color: var(--logo_color);
  transition: 1s;
  margin: -10px 20px 0px 0px;
}

.quick_links .office_title {
  font-weight: bold;
  text-transform: uppercase;
}

.quick_links .each_offices:not(:last-child) {
  margin-bottom: 10px;
}

.quick_links .main_menu ul {
  list-style: none;
}

.quick_links .main_menu a {
  text-decoration: none;
  color: var(--logo_color);
  line-height: 30px;
}

.news_letter {
  margin: 70px 0px 0px;
}

.news_letter_head {
  color: var(--sharp_header_color);
  font-weight: bold;
  font-size: 17px;
}

.news_letter_body p {
  font-size: 15px;
  color: var(--logo_color);
  margin: 20px 20px 20px 0px;
}

.news_letter_form .label_input {
  position: relative;
}

.news_letter_form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 15px 5px;
  font-size: 17px;
  border: none;
  border-radius: 3px;
  outline: 2px solid var(--header_color);
  color: var(--sharp_header_color);
}

.news_letter_form label {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 15px;
  color: var(--grey_text);
  transition: 0.2s ease-in-out;
  pointer-events: none;
}

.news_letter_form input:focus {
  outline: 2px solid var(--header_color);
  border: none;
}

.news_letter_form input:focus + label,
.news_letter_form input:not(:placeholder-shown) + label {
  top: 3px;
  font-size: 12px;
}

.news_letter_form button {
  background-color: var(--header_color);
  color: var(--white);
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.news_letter_form button:hover {
  background-color: var(--transparent_header_color);
  transition: 0.5s;
}

.copywrite {
  color: var(--logo_color);
  text-align: center;
  margin: 50px 0px 0px;
  padding-bottom: 30px;
}

.copywrite span {
  font-size: 18px;
}

/* About Page */

.about_hero {
  background-image: url("../images/about_hero.png");
  background-size: cover;
  height: 500px;
  margin-top: -10px;
}

.dark_about_hero {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
}

.dark_about_hero h1 {
  color: var(--white);
  padding-top: 100px;
  text-align: center;
}

.dark_about_hero h1 span:first-child {
  background-color: var(--transparent_header_color);
  padding: 20px 20px 0px 10px;
  display: inline-block;
  border-radius: 3px;
  border-bottom: 6px solid var(--transparent_white);
}

.dark_about_hero h1 span:last-child {
  margin-left: -17px;
}

.about_hero .product_solution_wrapper {
  margin-top: 50px;
}

.about_hero a {
  background-color: var(--mini_white);
  width: 80%;
  margin: auto;
  text-decoration: none;
  border: 2px solid var(--header_color);
  color: var(--sharp_header_color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  display: block;
  font-weight: bold;
  margin-top: 20px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 50px;
}

.about_hero a:hover {
  background-color: var(--header_color);
  color: var(--white);
  transition: 0.3s ease;
  animation: bounce_product_solution 1.5s infinite;
}

@keyframes bounce_product_solution {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.about_hero a span {
  margin-right: 10px;
}

.about_hero a i {
  font-size: 14px;
}

/* Counter Starts */
.about_counter_wrapper {
  background: var(--header_color);
  text-align: center;
  margin: -50px 20px 50px;
  border-radius: 20px;
  padding: 30px 0px;
}

.about_counter_wrapper h2 {
  display: flex;
  justify-content: center;
}

.about_counter {
  font-size: 50px;
  font-weight: bold;
  color: var(--mini_white);
}

.about_counter_wrapper p {
  color: rgb(80, 79, 79);
  font-weight: bold;
}

.about_counter_wrapper span {
  display: block;
}

.about_counter_wrapper span:last-child {
  color: var(--mini_white);
  font-size: 40px;
}

.about_details {
  margin: 100px 20px;
}

.about_details_pic {
  margin-bottom: 50px;
}

.about_details_pic img {
  width: 90%;
  display: block;
  margin: auto;
  border-radius: 45% 0px 45% 45%;
}

.about_details_text .about_head {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--sharp_header_color);
}

.about_details_text .about_body {
  font-size: 15px;
  line-height: 28px;
}

.vision {
  background-image: url("../images/about/vision_bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  height: 800px;
  margin-top: -10px;
}

.dark_vision {
  background-color: rgba(39, 8, 51, 0.9);
  height: 100%;
  padding: 20px;
  font-size: 20px;
}

.vision_text {
  color: var(--white);
}

.vision_head {
  margin: 30px 0px;
}

.vision_head span:first-child {
  background-color: var(--transparent_header_color);
  padding: 20px 20px 0px 12px;
  display: inline-block;
  border-radius: 3px;
  border-bottom: 6px solid var(--transparent_white);
}

.vision_head span:last-child {
  margin-left: -13px;
}

.vision_text hr {
  margin: 40px 0px;
  width: 20%;
  border: 1px solid var(--transparent_header_color);
}

.core_values {
  background-color: white;
  color: var(--black);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 70px;
}

.vision_pic {
  text-align: center;
}

.vision_pic img {
  width: 70%;
  border-radius: 50%;
}

/* Contact Page */

.contact_heading {
  border-bottom: 2px solid var(--header_color);
  padding: 20px 0px;
  margin: 0px 20px;
  color: var(--header_color);
}

.main_body_content .contact_form {
  margin: 30px 20px 70px;
  padding: 30px 0px;
  background-color: var(--white);
  color: var(--grey_text);
  border-radius: 5px;
  box-shadow:
    -5px 0 10px rgba(0, 0, 0, 0.1),
    5px 0 10px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.1);
}

.main_body_content .contact_form h4 {
  padding: 0px 20px 20px;
  border-bottom: 2px solid var(--grey_line);
  color: var(--grey_text);
  line-height: 22px;
}

.main_body_content .contact_form .each_data {
  margin: 50px 20px 0px;
}

.main_body_content .contact_form .data_name {
  margin-bottom: 20px;
}

.main_body_content .contact_form .name_data_fields {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.main_body_content .contact_form .star {
  color: var(--star);
  font-size: 20px;
  margin-left: 5px;
}

.main_body_content .contact_form input,
.main_body_content .contact_form textarea {
  width: 100%;
  padding: 7px;
  font-size: 17px;
  border: none;
  border-radius: 3px;
  outline: 2px solid var(--grey_line);
  color: var(--header_color);
}

.main_body_content .contact_form input:focus,
.main_body_content .contact_form textarea:focus {
  outline: 2px solid var(--header_color);
  border: none;
}

.main_body_content .contact_form label {
  font-size: 12px;
  display: inline-block;
  margin-top: 10px;
}

.main_body_content .contact_form textarea {
  height: 200px;
  resize: none;
}

.main_body_content .contact_form .submit_data {
  margin-top: 30px;
  padding: 30px 20px 0px;
  border-top: 2px solid var(--grey_line);
}

.main_body_content .contact_form .submit_data button {
  width: 100%;
  background-color: var(--header_color);
  color: var(--white);
  padding: 12px 0px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.main_body_content .contact_form .submit_data button:hover {
  background-color: var(--transparent_header_color);
  transition: 0.5s;
}

/* Greetings Page */

.thank_you_message {
  background-color: var(--white);
  width: 80%;
  max-width: 500px;
  margin: 50px auto 70px;
  text-align: center;
  color: var(--grey_text);
  padding-bottom: 70px;
  border-radius: 5px;
}

.thank_you_message img {
  width: 50px;
  margin-top: 30px;
}

.thank_you_message .thank_you_head {
  margin: 20px 0px 5px;
  font-size: 30px;
  font-weight: bold;
}

.thank_you_message .thank_you_body {
  line-height: 20px;
  font-weight: 500;
}

/* OEMs & Partners Page */

.main_body_content .oem_head {
  padding: 50px 20px;
}

.oem_head .oem_title {
  background-color: var(--header_color);
  color: var(--mini_white);
  width: fit-content;
  padding: 10px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.oem_head h1 {
  line-height: 50px;
  margin-bottom: 20px;
}

.oem_head p {
  line-height: 25px;
  font-size: 18px;
}

.oem_body {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0px 20px 70px;
}

.oem_body .each_oem {
  margin: 0px auto;
  width: 100%;
  height: 300px;
  transition: 0.3s ease;
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow:
    -5px 0 10px rgba(0, 0, 0, 0.1),
    5px 0 10px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.oem_body .each_oem:hover {
  margin-top: -5px;
}

.oem_body .oem_logo {
  width: 130px;
}

.oem_body img {
  width: 100%;
}

.oem_body .oem_description {
  margin-top: 10px;
  columns: var(--grey_text);
  line-height: 27px;
}

.oem_body .more_oem {
  position: absolute;
  bottom: 10%;
}

.oem_body .more_oem a {
  text-decoration: none;
  background-color: var(--header_color);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--mini_white);
}

/* Products Page */
/* Enclosures */
/* Small Enclosures */

.small_enclosure_briefing {
  margin-top: -20px;
  background-color: var(--black);
}

.small_enclosure_image img {
  margin-top: 30px;
  width: 100%;
}

.small_enclosure_text {
  background-color: var(--black);
  color: var(--white);
  padding: 20px;
  margin: -10px 0px 0px;
}

.small_enclosures_head {
  font-size: 30px;
  margin-bottom: 10px;
}

.more_small_enclosures .product_variants {
  width: fit-content;
  padding: 10px 20px 5px;
  border-right: 1px solid var(--black);
  font-size: 17px;
  font-weight: bold;
}

.more_small_enclosures .top_products {
  border-top: 1px solid var(--black);
}

.more_small_enclosures .top_products .disappear {
  border-top: 5px solid var(--mini_white);
  width: fit-content;
  padding: 5px 20px;
  margin-top: -2px;
}

.more_small_enclosures .top_products .disappear span {
  visibility: hidden;
  font-size: 17px;
  font-weight: bold;
  display: block;
}

.more_small_enclosures .tp_head {
  margin: -30px 0px 10px;
  padding-left: 20px;
  font-weight: 500;
}

.more_small_enclosures .top_products_body {
  padding: 0px 20px 55px;
  display: grid;
  grid-gap: 20px 5%;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.more_small_enclosures .each_top_products {
  max-width: 200px;
  text-decoration: none;
  color: var(--black);
  position: relative;
}

.more_small_enclosures .each_top_products img {
  width: 100%;
  height: 100px;
  max-width: 200px;
}

.more_small_enclosures h5 {
  margin: 5px 40px 0px 0px;
}

.small_enclosure_arrow {
  text-align: right;
  color: var(--black);
  position: absolute;
  bottom: 0px;
  right: 0px;
}

/* Products Page */
/* Enclosures */
/* Small Enclosures */
/* Product 1 */

.product_1_image_and_about {
  margin: 120px 20px 0px;
}

.product_1_image_wrapper img {
  width: 100%;
}

.product_1_about_head {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 27px;
}

.product_1_download {
  background-color: var(--logo_color);
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  color: var(--white);
  padding: 10px 0px;
  margin-top: 50px;
  text-decoration: none;
  display: block;
}

.product_1_download .download_icon {
  margin-left: 7px;
}

.product_table_wrapper {
  overflow: auto;
}

.product_1_table {
  margin: 70px 20px;
  border-collapse: collapse;
  width: calc(100% - 40px);
  border: 1px solid var(--black);
  font-size: 13.5px;
  line-height: 15px;
}

.product_1_table thead {
  border: 2px solid var(--black);
  text-align: left;
}

.product_1_table thead th {
  font-weight: 400;
}

.product_1_table thead th,
.product_1_table tbody td:nth-child(2),
.product_1_table tbody td:nth-child(3),
.product_1_table tbody td:nth-child(4),
.product_1_table tbody td:nth-child(5),
.product_1_table tbody td:nth-child(6),
.product_1_table tbody td:nth-child(7),
.product_1_table tbody td:nth-child(8) {
  white-space: nowrap;
}

.product_1_table tbody td:first-child {
  color: rgb(217, 38, 38);
  font-weight: bold;
}

.product_1_table th,
.product_1_table td {
  border: 1px solid var(--black);
  padding: 10px 20px;
}

.product_1_table tr td:first-child,
.product_1_table tr td:nth-child(2),
.product_1_table tr td:nth-child(3),
.product_1_table tr td:nth-child(4),
.product_1_table tr td:nth-child(5),
.product_1_table tr td:nth-child(6),
.product_1_table tr td:nth-child(7),
.product_1_table tr td:nth-child(8),
.product_1_table tr td:last-child {
  border-left: none;
  border-right: none;
  width: 100vw;
}

#first_table_cell {
  width: 120px;
  display: block;
  text-wrap: wrap;
  border: none;
  padding-top: 19%;
}

#table_cell {
  width: 120px;
  display: block;
  text-wrap: wrap;
  border: none;
  border-top: 1px solid black;
  padding-top: 20%;
}

#wall_encl_tab_cel_1 {
  width: 25vw;
  display: block;
  text-wrap: wrap;
  border: none;
}

#wall_encl_tab_o_cell {
  width: 25vw;
  display: block;
  text-wrap: wrap;
  border: none;
  border-top: 1px solid black;
}

/* Wall Enclosure Product 11 */

#wall_encl_prod11_tab_cell_11 {
  width: 25vw;
  display: block;
  text-wrap: wrap;
  border: none;
}

#wall_encl_prod11_tab_cell_12 {
  width: 25%;
  text-wrap: wrap;
  border: none;
}

#wall_encl_prod11_tab_o_cell_11 {
  width: 25vw;
  display: block;
  text-wrap: wrap;
  border: none;
  border-top: 1px solid black;
}

#wall_encl_prod11_tab_o_cell_12 {
  width: 25%;
  text-wrap: wrap;
  border: none;
  border-top: 1px solid black;
}

/* Renewable Energy */

/* Solar Batteries */

.lifepo4_overview {
  background-image: url("../images/products/renewable_energy/solar_batteries/img_1_mobile.jpg");
  background-size: cover;
  background-attachment: fixed;
  height: 700px;
}

.solar_panels_overview {
  background-image: url("../images/products/renewable_energy/solar_panels/solar_panel.png");
}

.solar_inverters_overview {
  background-image: url("../images/products/renewable_energy/solar_inverters/inverter.jpg");
}

.dark_lifepo4 {
  background-color: rgba(39, 8, 51, 0.9);
  color: var(--white);
  height: 100%;
  padding: 50px 20px 0px;
}

.inner_dark_lifepo4 {
  width: 88%;
  margin: auto;
}

.lifepo4_overview .lifepo4_head {
  font-size: 28px;
}

.lifepo4_overview .lifepo4_body {
  line-height: 27px;
  margin-top: 10px;
}

.lifepo4_overview a {
  background-color: var(--header_color);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 5px;
  display: block;
  width: fit-content;
  margin: 50px auto 0px;
}

.lifepo4_overview a span:last-child {
  margin-left: 8px;
}

#available_lifepo4_battery {
  background-color: white;
  padding: 160px 20px 20px;
}

.each_lifepo4_battery {
  text-decoration: none;
  color: var(--black);
  display: block;
  margin-bottom: 50px;
}

.each_lifepo4_battery img {
  margin: auto;
  width: 80%;
  display: block;
}

.each_lifepo4_battery .battery_name {
  width: 60%;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  margin: auto;
}

.each_lifepo4_battery .learn_more {
  background-color: var(--header_color);
  color: var(--white);
  width: fit-content;
  margin: 30px auto 0px;
  padding: 10px 20px;
  border-radius: 5px;
}

.lifepo4_benefits,
.lifepo4_features,
.lifepo4_uses {
  max-width: 1000px;
  margin: auto;
}

.lifepo4_benefits .lifepo4_head,
.lifepo4_features .lifepo4_head,
.lifepo4_uses .lifepo4_head {
  font-size: 27px;
  line-height: 30px;
  margin: 70px 20px 20px;
  color: var(--grey_text);
}

.lifepo4_benefits .lifepo4_body,
.lifepo4_features .lifepo4_body,
.lifepo4_uses .lifepo4_body {
  line-height: 27px;
  margin: 0px 20px;
  color: var(--grey_text);
}

.lifepo4_benefits ul,
.lifepo4_features ul,
.lifepo4_uses ul {
  margin: 20px;
}

.lifepo4_uses {
  margin-bottom: 70px;
}

/* Solar Battery 1 */

.each_battery_lifepo4_overview {
  height: 750px;
}

.lifepo4_overview .solar_battery_order {
  margin: 30px 0px 0px;
}

.brief_battery_info .battery_image {
  background-color: var(--white);
}

.brief_battery_info .battery_image img {
  width: 60%;
  margin: auto;
  display: block;
}

.brief_battery_info .battery_text {
  background-color: var(--footer_color);
  color: var(--sharp_header_color);
  padding: 50px 20px;
}

.brief_battery_info .battery_text h2 {
  margin-bottom: 10px;
}

.battery_main_features {
  margin: 70px 20px;
  color: var(--grey_text);
}

.battery_main_features h2 {
  margin-bottom: 20px;
  line-height: 30px;
}

.battery_main_features hr {
  width: 15%;
  border: 1px solid var(--header_color);
  margin: -10px 0px 50px;
}

.each_battery_main_feature {
  display: flex;
  font-size: 18px;
  margin-bottom: 20px;
}

.each_battery_main_feature .check_wrapper {
  margin-right: 20px;
}

.each_battery_main_feature .check_wrapper i {
  font-size: 20px;
}

.datasheet_manual {
  margin: 0px auto 50px;
  width: fit-content;
}

.datasheet_manual a {
  background-color: var(--header_color);
  color: var(--white);
  margin: 30px 0px 0px 0px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  width: 200px;
  text-align: center;
}

.datasheet_manual a span:last-child {
  margin-left: 10px;
}

.sma_order {
  margin: 50px auto;
}

/* Network Cameras */

.dome_overview {
  padding: 50px 20px;
  color: var(--grey_text);
}

.dome_overview .title,
.dome_overview .sub_title {
  text-align: center;
  color: var(--sharp_header_color);
}

img.dome_1 {
  width: 80%;
  max-width: 400px;
  display: block;
  margin: 0px auto;
}

img.dome_1_drone {
  margin: 10px auto 30px;
}

.dome_overview .sub_title {
  margin: 0px auto 20px;
  max-width: 500px;
}

.dome_overview_features {
  max-width: 500px;
  margin: auto;
}

.dome_overview .check_wrapper {
  color: var(--sharp_header_color);
}

.dome_sub_overview {
  font-size: 20px;
  text-align: center;
  color: var(--grey_text);
  font-weight: lighter;
  line-height: 35px;
  width: 80%;
  max-width: 1000px;
  margin: 0px auto 70px;
}

.dome_grid {
  padding: 0px 20px;
  color: var(--grey_text);
  max-width: 550px;
  margin: auto;
}

.dome_grid_video iframe,
.dome_grid_video img {
  width: 100%;
}

.dome_grid_text {
  margin: 10px 0px 50px;
}

.dome_grid_head {
  font-size: 25px;
  text-align: center;
  margin: 0px 0px 30px;
  color: var(--sharp_header_color);
}

.axis_products {
  padding: 0px 20px;
  color: var(--grey_text);
}

.axis_product_head {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey_line);
}

.axis_product_body {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  max-width: 1300px;
  margin: auto;
}

.each_axis_product {
  padding: 0px 20px 20px;
  width: 80%;
  max-width: 300px;
  text-align: center;
  margin: 50px auto;
  display: block;
  color: var(--grey_text);
  text-decoration: none;
  border-radius: 5px;
  box-shadow:
    -5px 0 10px rgba(0, 0, 0, 0.1),
    5px 0 10px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.1);
}

.each_axis_product:hover {
  transform: translateY(-20px);
  transition: 0.5s;
}

.axis_product_body img {
  width: 150px;
  margin: 30px 0px;
}

.axis_product_body .reduce_image {
  width: 80px;
}

.camera_name {
  font-weight: 500;
  margin-top: -20px;
}

/* Drone Detector */

.mobile_drone .md_text {
  padding: 30px 20px;
  color: var(--grey_text);
  color: rgb(19, 19, 118);
}

.mobile_drone h1 {
  margin-bottom: 10px;
  line-height: 40px;
}

.mobile_drone img {
  width: 100%;
}

.desktop_drone {
  display: none;
}

.drone_overview {
  text-align: center;
  margin: 30px 20px;
}

.drone_overview p {
  margin-top: 10px;
  color: var(--grey_text);
}

.threat_detection {
  margin: 30px 20px;
  background-color: var(--white);
  border-radius: 7px;
  box-shadow:
    -5px 0 10px rgba(0, 0, 0, 0.1),
    5px 0 10px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.1);
}

.threat_detection video {
  width: 100%;
  border-radius: 7px;
}

.threat_detection .dt_text {
  padding: 30px 20px 20px;
}

.threat_detection .each_dt {
  margin-bottom: 20px;
}

.threat_detection .each_dt h3 {
  margin-bottom: 10px;
}

.threat_detection .dt_video iframe {
  border-radius: 7px 7px 0px 0px;
}

/* Electrical Systems */

.control_station_overview {
  background: white;
  height: auto;
  padding: 30px 0px 50px;
}

.control_station_overview .lifepo4_head {
  color: var(--sharp_header_color);
}

.control_station_product_body_1 {
  margin: 40px 0px 30px;
}

.control_station_product_body_2 {
  width: 10px;
  margin: 20px 0px 30px;
}

.control_station_sub_overview {
  text-align: left;
  font-size: large;
}

.control_station_sub_overview h2 {
  color: var(--sharp_header_color);
  margin-bottom: 10px;
}

.control_station_request_quote {
  background-color: var(--header_color);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 5px;
  display: block;
  width: fit-content;
  margin: 50px auto 0px;
}

.control_station_request_quote span:last-child {
  margin-left: 7px;
}

/* Products Page */

.product_hero {
  background-image: url("../images/products.png");
  margin-top: 0px;
}

/* Solution Pages Begin */

/* Security Sections */

/* Access Control */

.access_control_hero {
  margin-top: -10px;
}

.access_control_hero img {
  width: 100%;
  display: block;
}

.access_control_hero .desktop_access {
  display: none;
}

.access_control_hero_text {
  margin: -200px 20px 10%;
  color: var(--white);
}

.access_control_hero_text h1 {
  margin-bottom: 10px;
}

.access_control_overview {
  margin: 100px 20px 0px;
}

.access_control_overview h1 {
  margin-bottom: 20px;
  color: var(--sharp_header_color);
  line-height: 42px;
}

.access_control_solutions {
  padding: 20px;
}

.access_control_solutions img {
  width: 250px;
  border-radius: 10px;
  margin: 30px auto;
}

img.access_control_enlarge_image {
  width: 70%;
}

.access_control_integration {
  margin-top: 50px;
  margin-bottom: 50px;
}

.access_control_integration h1 {
  font-size: 25px;
  line-height: 30px;
}

.access_control_integration a {
  margin: 30px auto;
  text-transform: none;
}

.access_control_features_preamble {
  margin: 10px 0px 20px;
}

.fire_mgt_hero_text {
  margin-top: -265px;
}

.fire_mgt_hero_text p {
  width: 55%;
}

.intrusion_overview {
  margin-top: 120px;
}

.intrusion_integration {
  margin-top: 20px;
}

.telecom_hero_text {
  color: var(--white);
  margin: -60% 20px 40%;
}

.telecom_desktop {
  display: none;
}

.telecom_hero_text p {
  width: 55%;
}

.paga_hero_text {
  width: 70%;
  margin: -57% 20px 40%;
}

/* Large Mobile View */
@media only screen and (min-width: 500px) {
  .oem_body .each_oem {
    height: 250px;
  }
}

/* Tablet View */

@media only screen and (min-width: 700px) {
  header {
    height: 100px;
  }

  .logo_container {
    margin-left: -5%;
  }

  .search_account_cart {
    width: 70%;
  }

  .search_container {
    background-color: var(--white);
    width: 80%;
    display: flex;
    justify-content: end;
    border-radius: 10px;
  }

  .search_container input {
    display: inline;
    border: none;
    outline: none;
    width: 100%;
    font-size: 17px;
    padding: 5px 20px;
    border-radius: 5px 0px 0px 5px;
  }

  .search_container i {
    color: var(--white);
    background-color: var(--logo_color);
    padding: 12px 17px;
    font-size: 22px;
    border-radius: 0px 5px 5px 0px;
  }

  nav {
    top: 100px;
  }

  .user_account {
    top: 100px;
    width: 300px;
    right: 40px;
    height: 70vh;
    border-radius: 0px 0px 7px 7px;
    box-shadow:
      -5px 0 10px rgba(0, 0, 0, 0.2),
      5px 0 10px rgba(0, 0, 0, 0.2),
      0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .user_account .login {
    height: 70vh;
  }

  .user_account .sign_up {
    height: 70vh;
    top: calc(-70vh);
  }

  .user_account_heading {
    padding: 30px 0px 0px;
  }

  .user_account .account_pointer {
    position: absolute;
    font-size: 40px;
    top: -35px;
    left: 77%;
    color: var(--white);
  }

  .new_customer {
    width: 100%;
    text-align: center;
    bottom: 5%;
  }

  main .main_body_content {
    margin: 110px 0px 20px;
  }

  /* Home Page Carousel */

  #dot-wrapper2 span:hover {
    background-color: var(--white);
  }

  /* Brief About US */

  .brief_about a {
    padding: 12px 0px;
    font-size: 17px;
    width: 400px;
    margin: 20px auto 0px;
  }

  /* Home Page Testimonials */

  footer {
    margin-top: -25px;
  }

  footer {
    padding-top: 50px;
    /* margin-top: 60px; */
  }

  .testimonial {
    display: none;
  }

  .other_device_testimonial_wrapper {
    margin: 0px 20px 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--sharp_header_color);
  }

  .other_device_testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 10vw;
    margin: 0px auto;
    width: fit-content;
  }

  .each_testimonial {
    display: flex;
    column-gap: 20px;
    align-items: start;
    width: 280px;
  }

  .testimonial_icon {
    color: #eb7c1b;
    font-size: 30px;
  }

  .each_testimonial .secured_icon {
    position: relative;
    width: fit-content;
  }

  .each_testimonial .secured_icon img {
    position: absolute;
    bottom: -10px;
    right: -5px;
    background-color: var(--mini_white);
    border-radius: 20px;
    width: 20px;
  }

  .testimonial_details p:first-child {
    margin-bottom: 5px;
  }

  .quick_links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    cursor: text;
  }

  .quick_links .about_us,
  .quick_links .offices,
  .quick_links .main_menu {
    border-bottom: none;
  }

  .quick_links .plus_minus {
    display: none;
  }

  .quick_links .about_us_body,
  .quick_links .offices_body,
  .quick_links .main_menu_body {
    max-height: 500px;
  }

  .news_letter {
    margin: 20px 0px 0px;
  }

  /* OEM & Partners Page */

  .oem_body {
    gap: 20px;
  }

  .oem_body .each_oem {
    width: calc(50% - 10px);
    height: 300px;
  }

  /* About Page */

  .about_hero .product_solution_wrapper {
    display: flex;
    column-gap: 10px;
    margin-left: 20px;
  }

  .about_hero a {
    width: 250px;
    margin: 0px;
  }

  .about_counter_wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px 30px;
    margin-bottom: 100px;
  }

  .about_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  .vision {
    height: 850px;
  }

  .vision_text {
    font-size: 25px;
  }

  .vision_pic img {
    width: 55%;
  }

  .core_values {
    width: 530px;
    margin: 0px auto 70px;
    padding: 20px 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }

  /* Contact Page */

  .main_body_content .contact_form {
    margin: 30px 20px 100px;
  }

  .thank_you_message {
    margin-bottom: 100px;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */

  .more_small_enclosures .top_products_body {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */
  /* Each Product Page */

  .product_1_table thead th,
  .product_1_table tbody td {
    padding-left: 15px;
  }

  /* Solar Batteries */

  .lifepo4_overview {
    margin-top: -10px;
  }

  .dark_lifepo4 {
    padding: 70px 20px 0px;
  }

  .lifepo4_head {
    font-size: 33px;
  }

  .lifepo4_body {
    line-height: 27px;
    margin-top: 10px;
  }

  .lifepo4_overview a {
    margin: 80px auto 0px;
  }

  #available_lifepo4_battery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .each_lifepo4_battery {
    width: 50%;
    margin-bottom: 80px;
  }

  .datasheet_manual {
    margin: -30px auto 100px;
    display: flex;
    justify-content: space-between;
    width: 500px;
  }

  .datasheet_manual a {
    background-color: var(--header_color);
    color: var(--white);
    margin: 30px 0px 0px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    width: 200px;
    text-align: center;
  }

  .sma_order {
    width: fit-content;
    margin: 15px auto 70px;
  }

  /* Drone Detection */

  .threat_detection {
    margin: 30px auto 70px;
    max-width: 700px;
  }

  /* Solution Pages Begin */

  /* Security Sections */

  /* Access Control */

  .access_control_hero_text {
    margin: -300px 10% 25%;
    width: 500px;
    font-size: 18px;
  }

  .access_control_hero_text h1 {
    font-size: 40px;
  }

  .intrusion_overview {
    margin-top: -5%;
  }

  .telecom_hero_text {
    margin: -65% 7% 50%;
  }

  .telecom_hero_text p {
    width: 70%;
  }

  .paga_hero_text {
    width: 73%;
    margin: -55% 5% 45%;
  }
}

/* User Account For Other Tablet Views */

@media only screen and (min-width: 800px) {
  #wall_encl_tab_cel_1,
  #wall_encl_tab_o_cell {
    width: auto;
    display: table-cell;
    text-wrap: nowrap;
  }

  #wall_encl_prod11_tab_cel_11 {
    width: auto;
    display: table-cell;
    text-wrap: nowrap;
  }

  #wall_encl_prod11_tab_cel_12 {
    width: auto;
    display: table-cell;
    text-wrap: nowrap;
  }

  .logo_container {
    margin-left: -10%;
  }

  .user_account .account_pointer {
    left: 72%;
  }

  /* About Page */

  .about_hero h1 {
    text-align: left;
    margin-left: 20px;
    width: 550px;
  }

  .about_hero .product_solution_wrapper {
    margin-top: 20px;
  }

  /* Contact Page */

  .main_body_content .contact_form {
    width: 750px;
    margin: 30px auto 100px;
  }

  .main_body_content .contact_form .each_data {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 50px 50px 0px;
  }

  .main_body_content .contact_form .submit_data button {
    width: 300px;
    display: block;
    margin: auto;
  }

  /* About Page */

  .product_hero h1 {
    margin: 100px 0% 0px auto;
  }
}

@media only screen and (min-width: 920px) {
  .user_account .account_pointer {
    left: 68%;
  }

  .paga_hero_text {
    width: 73%;
    margin: -55% 5% 50%;
  }
}

/* Laptop View */

@media only screen and (min-width: 1000px) {
  header {
    height: 120px;
    padding: 0px 50px;
  }

  .hamburger {
    display: none;
  }

  .logo_container {
    margin-left: 0%;
  }

  .logo_container img {
    width: 100px;
  }

  .search_account_cart {
    width: 90%;
    justify-content: center;
    gap: 20px;
  }

  nav {
    left: 0%;
    top: 120px;
    height: auto;
  }

  nav > ul {
    display: flex;
    width: fit-content;
    margin: auto;
    padding: 0px;
  }

  nav > ul div,
  nav > ul li.barren_link {
    border-bottom: none;
  }

  nav .products,
  nav .solutions {
    justify-content: flex-start;
    gap: 10px;
    width: fit-content;
    margin: 0px;
    border-bottom: none;
    padding-left: 0px;
  }

  nav .products {
    margin-right: 20px;
  }

  nav > ul li {
    margin: 0px 0px 0px 0px;
  }

  nav > ul li.barren_link {
    height: fit-content;
    margin: 0px;
  }

  nav .all_products,
  nav .all_solutions {
    position: relative;
    left: 0px;
    padding: 0px;
  }

  nav .all_products .inner_products,
  nav .all_solutions .inner_solutions {
    position: fixed;
    background-color: var(--white);
    margin: 0px;
    padding: 0px 0px 0px 30px;
  }

  nav .all_products .inner_products {
    width: 250px;
  }

  nav .all_solutions .inner_solutions {
    width: 330px;
  }

  nav .each_inner_products,
  nav .inner_products,
  nav .all_products {
    overflow: visible;
  }

  nav ul > li > div:last-child a {
    color: var(--grey_text);
  }

  nav .product_body,
  nav .solution_body {
    background-color: var(--white);
    position: absolute;
    width: 370px;
    height: 100%;
    top: 0px;
    left: 100%;
  }

  nav .products:hover + .all_products,
  nav .solutions:hover + .all_solutions,
  nav .all_products:hover,
  nav .all_solutions:hover {
    opacity: 1;
    visibility: visible;
  }

  .user_account {
    border-radius: 7px 7px 7px 7px;
  }

  .user_account .account_pointer {
    left: 62%;
  }

  main .main_body_content {
    margin: 200px 0px 20px;
  }

  /* Carousel */

  #gallery2 {
    height: 30vw;
    margin: 230px 50px 0px;
    width: calc(100% - 100px);
  }

  p#caption_text2 {
    font-size: 20px;
  }

  .hero_cta {
    text-align: center;
  }

  .hero_cta a {
    font-size: 20px;
    padding: 15px 50px;
  }

  /* OEM Slider Section */

  .oem_summery_head {
    margin: 30px 50px 10px;
  }

  .oem_slider {
    margin: 0px 50px;
  }

  /* Brief About Us */

  .brief_about_head {
    text-align: right;
    margin-right: 250px;
  }

  .brief_about_body {
    display: flex;
    margin: 0px 50px;
  }

  .brief_about_img_wrapper img {
    width: calc(50vw - 50px);
    margin-right: 50px;
  }

  .brief_about_description {
    margin-top: 0px;
  }

  /* Why Choose Us */

  .why_us {
    /* margin-top: 50px; */
    padding: 70px 50px;
  }

  .all_whys {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }

  .each_why:not(:last-child) {
    margin-bottom: 0px;
  }

  /* Whatsapp Chat */

  .whatsapp_chat {
    right: 50px;
  }

  .other_device_testimonial_wrapper {
    margin: 50px;
  }

  .quick_links {
    margin: 0px 50px;
    grid-gap: 20px 50px;
    cursor: text;
  }

  .copywrite {
    margin: 100px 0px 0px;
  }

  /* About Page */

  .about_hero h1 {
    margin-left: 50px;
  }

  .about_hero .product_solution_wrapper {
    margin-left: 50px;
  }

  .about_counter_wrapper {
    width: 850px;
    margin: -50px auto 100px;
  }

  .about_details {
    margin: 100px 10%;
  }

  .about_details_pic img {
    width: 400px;
  }

  .dark_vision {
    display: flex;
    padding: 0px 50px 0px;
    align-items: center;
  }

  .vision_pic img {
    width: 100%;
  }

  /* Contact Page */

  .contact_heading {
    margin: 0px 50px;
  }

  /* OEM Page */

  .main_body_content .oem_head {
    padding: 50px;
  }

  .oem_body {
    padding: 0px 50px 100px;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */

  .small_enclosure_briefing {
    display: flex;
    align-items: center;
  }

  .small_enclosure_text {
    width: 1500px;
    padding: 0px 0px 0px 50px;
  }

  .small_enclosures_head {
    font-size: 35px;
  }

  .small_enclosures_body {
    font-size: 18px;
  }

  .small_enclosure_image {
    order: 2;
  }

  .more_small_enclosures .product_variants {
    padding: 10px 50px 5px;
  }

  .more_small_enclosures .top_products .disappear {
    padding: 5px 50px;
  }

  .more_small_enclosures .tp_head {
    padding-left: 50px;
  }

  .more_small_enclosures .top_products_body {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0px 70px 100px;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */
  /* Product 1 */

  .product_1_image_and_about {
    margin: 250px 50px 0px;
    display: flex;
    column-gap: 50px;
  }

  .product_1_image_wrapper img {
    width: 40vw;
  }

  .product_1_about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .product_1_table {
    margin: 70px 50px 100px;
    width: calc(100% - 100px);
  }

  /* Solar Batteries */

  .lifepo4_overview {
    background-image: url("../images/products/renewable_energy/solar_batteries/img_1_desk.jpg");
    height: 450px;
  }

  .solar_panels_overview {
    background-image: url("../images/products/renewable_energy/solar_panels/solar_panel.png");
  }

  .solar_inverters_overview {
    background-image: url("../images/products/renewable_energy/solar_inverters/inverter.jpg");
  }

  .lifepo4_overview a {
    margin: 30px auto 0px;
  }

  .each_lifepo4_battery {
    width: 33%;
    margin-bottom: 100px;
  }

  /* Solar Battery 1 */

  .brief_battery_info {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }

  .brief_battery_info .battery_text h2,
  .brief_battery_info .battery_text div {
    width: 550px;
    margin: auto;
  }

  .brief_battery_info .battery_text h2 {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .brief_battery_info .battery_text div {
    font-size: 18px;
  }

  .battery_main_features {
    width: 90%;
    max-width: 1200px;
    margin: 70px auto;
  }

  .combined_battery_main_features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
  }

  /* Network Cameras */

  .dome_overview {
    padding: 50px;
    max-width: 1200px;
    margin: auto;
  }

  .dome_overview .title,
  .dome_overview .sub_title {
    text-align: left;
    max-width: 500px;
    margin: auto;
  }

  .dome_overview .title {
    margin-left: 0px;
    max-width: 100%;
  }

  .dome_overview .sub_title {
    margin: 10px auto 40px;
  }

  .dome_overview_features_overall {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dome_overview_features_text {
    order: 1;
  }

  .dome_overview .check_wrapper i {
    font-size: 30px;
    color: var(--header_color);
  }

  .dome_1 {
    order: 2;
  }

  .dome_sub_overview {
    font-size: 25px;
    line-height: 40px;
    width: 80%;
    max-width: 900px;
  }

  .dome_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    grid-column-gap: 10%;
    margin-bottom: 70px;
  }

  .dome_grid_text,
  .dome_grid_video_2 {
    order: 1;
  }
  .dome_grid_head {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .dome_grid_body {
    font-size: 18px;
  }

  .dome_grid_video,
  .dome_grid_text_2 {
    order: 2;
  }

  .each_axis_product {
    margin: 50px 0px;
  }

  /* Drone Detector */

  .mobile_drone {
    display: none;
  }

  .desktop_drone {
    display: block;
    background-image: url("../images/products/drone_detection/desktop_drone.avif");
    background-size: cover;
    height: 350px;
  }

  .desktop_drone .dd_text {
    width: 500px;
    padding-top: 70px;
    margin-left: 10%;
    color: rgb(19, 19, 118);
    font-weight: 500;
  }

  .desktop_drone .dd_text h1 {
    line-height: 40px;
    font-size: 35px;
    margin-bottom: 20px;
  }

  .drone_overview {
    margin: 50px auto 70px;
    width: 900px;
    font-size: 20px;
  }

  .drone_overview p {
    margin-top: 20px;
    font-size: 18px;
  }

  .threat_detection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    padding: 30px;
  }

  .threat_detection .dt_video {
    order: 2;
  }

  .threat_detection .dt_video {
    order: 1;
  }

  .threat_detection .dt_video iframe {
    border-radius: 7px;
  }

  /* Electrical Systems */

  .control_station_overview {
    background: white;
    height: auto;
    padding: 50px 0px 70px;
  }

  .control_station_overview .lifepo4_head {
    font-size: 35px;
  }

  .control_station_sub_overview {
    font-size: larger;
    font-weight: 500;
  }

  .control_station_request_quote {
    margin: 50px 30px;
  }

  /* Products Page */

  .product_hero h1 {
    margin: 100px 0px 0px auto;
  }

  /* Solution Pages Begin */

  /* Security Sections */

  /* Access Control */

  .access_control_hero .mobile_access {
    display: none;
  }

  .access_control_hero .desktop_access {
    display: block;
  }

  .access_control_hero_text {
    margin: -350px 10% 25%;
  }

  .access_control_hero_text h1 {
    font-size: 50px;
  }

  .access_control_hero_text p {
    line-height: 33px;
  }

  .access_control_overview {
    margin: -30px auto 50px;
    width: 900px;
  }

  .access_control_overview h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .access_control_order_1 {
    order: 1;
  }

  .access_control_order_2 {
    order: 2;
  }

  .dome_overview .access_control_title_order_2 {
    text-align: right;
    margin-right: 10%;
  }

  .access_control_solutions {
    padding: 20px;
  }

  .access_control_integration {
    margin-top: 0px;
    margin-bottom: 100px;
  }

  .access_control_integration a {
    margin: 30px 0px;
    text-transform: uppercase;
  }

  .intrusion_overview {
    margin-top: -10%;
  }

  .telecom_hero_text {
    margin: -27% 7% 15%;
  }

  .telecom_hero_text p {
    width: 70%;
  }

  .telecom_mobile {
    display: none;
  }

  .telecom_desktop {
    display: block;
  }

  .paga_hero_text {
    width: 65%;
    margin: -30% 5% 28%;
  }
}

/* User Account For Other Laptop Views */

@media only screen and (min-width: 1100px) {
  .user_account .account_pointer {
    left: 57%;
  }

  /* OEM & Partners Page */

  .oem_body {
    gap: 20px;
  }

  .oem_body .each_oem {
    width: calc(32.5% - 10px);
  }
}

/* Desktop View */

@media only screen and (min-width: 1200px) {
  /* About Page */
  .about_hero h1 {
    margin-left: 200px;
  }

  .about_hero .product_solution_wrapper {
    margin-left: 200px;
  }

  .about_counter_wrapper {
    width: auto;
    margin: -50px 200px 100px;
  }

  /* Product Page */

  .product_hero h1 {
    margin: 0px 10% 0px auto;
    padding-top: 150px;
  }
}

@media only screen and (min-width: 1300px) {
  header {
    padding: 0px 0px 0px 70px;
  }

  .search_container {
    width: 60%;
  }

  .account_container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
  }

  .account_label {
    display: block;
    text-align: center;
  }

  .login_sign_up {
    color: var(--logo_color);
    font-weight: bold;
    font-size: 13.5px;
  }

  .my_account {
    color: var(--white);
    font-weight: bold;
    font-size: 17px;
  }

  .account_container .account_icon i {
    font-size: 27px;
  }

  .cart_container {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .cart_container .cart_label {
    color: var(--white);
  }

  .cart_container i {
    font-size: 30px;
  }

  .user_account {
    right: 12%;
  }

  .user_account .account_pointer {
    left: 50%;
  }

  main .main_body_content {
    margin: 200px 0px 20px;
  }

  #gallery2 {
    height: 30vw;
    margin: 230px 70px 0px;
    width: calc(100% - 140px);
  }

  .oem_summery_head {
    margin: 30px 70px 10px;
  }

  .oem_slider {
    margin: 0px 70px;
  }

  /* Brief About Us */

  .brief_about_head {
    margin-right: 300px;
  }

  .brief_about_body {
    margin: 0px 70px;
  }

  .brief_about a {
    /* padding: 12px 0px;
    font-size: 17px; */
    width: 100%;
    margin: 30px auto 0px;
  }

  /* Why Choose Us */

  .why_us {
    /* margin-top: 50px; */
    padding: 70px;
  }

  .all_whys {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Whatsapp Chat */

  .whatsapp_chat {
    right: 70px;
  }

  .other_device_testimonials {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0px 2vw;
  }

  .quick_links {
    grid-template-columns: 1.15fr 1.15fr 0.55fr 1.15fr;
    margin: 0px 70px;
  }

  /* About Page */

  .dark_vision {
    padding: 0px 10% 0px;
  }

  /* Contact Page */

  .contact_heading {
    margin: 0px 70px;
  }

  /* OEM Page */

  .main_body_content .oem_head {
    padding: 50px 70px;
  }

  .oem_body {
    padding: 0px 70px 100px;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */

  .small_enclosure_text {
    padding: 0px 0px 0px 70px;
  }

  .more_small_enclosures .product_variants {
    padding: 10px 70px 5px;
  }

  .more_small_enclosures .top_products .disappear {
    padding: 5px 70px;
  }

  .more_small_enclosures .tp_head {
    padding-left: 70px;
  }

  .more_small_enclosures .top_products_body {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  /* Products Page */
  /* Enclosures */
  /* Small Enclosures */
  /* Product 1 */

  .product_1_image_and_about {
    margin: 250px 70px 0px;
  }

  .product_1_download {
    width: 300px;
  }

  .product_1_table {
    margin: 70px 70px 120px;
    width: calc(100% - 140px);
  }

  /* Solar Batteries */

  .dark_lifepo4 {
    padding: 60px 20px 0px;
  }

  .inner_dark_lifepo4 {
    width: 70%;
    margin: auto;
  }

  .lifepo4_head {
    font-size: 35px;
  }

  .lifepo4_body {
    line-height: 27px;
    margin-top: 10px;
    font-size: 17px;
  }

  .lifepo4_overview a {
    background-color: var(--header_color);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;

    font-weight: bold;
    padding: 15px 20px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    margin: 50px auto 0px;
  }

  .lifepo4_overview a span:last-child {
    margin-left: 8px;
  }

  /* Network Cameras */

  .dome_overview .title {
    margin-left: 7%;
  }

  /* Solution Pages Begin */

  /* Security Sections */

  /* Access Control */

  .access_control_hero_text {
    margin: -450px 10% 25%;
  }

  .access_control_overview {
    width: 1100px;
  }

  .access_control_integration {
    margin-top: 30px;
  }

  .intrusion_overview {
    margin-top: -6%;
  }

  .telecom_hero_text {
    margin: -30% 10% 25%;
  }

  .telecom_hero_text p {
    width: 100%;
  }

  .paga_hero_text {
    width: 65%;
    margin: -28% 8% 28%;
  }
}
