* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #ededed;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
img {
  width: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.bg-prime {
  background-color: #84dcc6 !important;
}
.bg-drk {
  background-color: #494848 !important;
}

:root {
  --pri-color: #69c7af;
  --white: #ffffff;
  --black: #000000;
  --dark: #494848;
}
/* navbar */
/* Style the navigation bar */
.navs {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #fff;
  /* padding: 10px 0; */
  z-index: 1000;
  /* box-shadow: 10px 10px 20px #fff; */
  background-color: var(--dark);
}

.navbox {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  width: 100%;
  /* margin: 0 auto; */
  /* padding: 0 60px; */
  min-height: 91px;
}

.logo {
  width: 20%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.navs input[type="checkbox"] {
  display: none;
}
.navs .hamburger-menu {
  width: 50px;
  height: 60px;
  right: 20px;
  position: relative;
  top: -3px;
  cursor: pointer;
  display: none;
  z-index: 100;
  margin-left: auto;
}
.navs .hamburger-menu span {
  position: absolute;
  width: 100%;
  height: 5px;
  top: 16px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.navs .hamburger-menu span::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 15px;
  height: 5px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.navs .hamburger-menu span::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 30px;
  height: 5px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.main-nav__items {
  display: flex;
  margin-right: 1rem;
  min-height: 80px;
  align-items: center;
  list-style: none;
  background-color: #84dcc6;
  width: 80%;
  justify-content: center;
}
.main-nav__link {
  color: var(--dark);
  text-decoration: none;
  margin: 0.5rem;
  padding: 1rem;
  position: relative;
  transition: 0.5s;
  font-size: 22px;
}

.main-nav__link:hover {
  color: var(--white);
}
.project-left {
  width: 150px;
  height: 100px;
  position: absolute;
  top: -1%;
  left: 16%;
  rotate: 289deg;
  z-index: 2;
  background-color: var(--dark);
  border-radius: 5px;
}
@media (min-width: 1920px) {
  .project-left {
    display: none;
  }
}
@media (max-width: 991px) {
  .project-left {
    left: 14%;
  }

  .main-nav__link {
    padding: 1rem 0.4rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .navs {
    flex-wrap: wrap;
  }
  .main-nav__items {
    display: block;
    position: absolute;
    top: 91px;
    left: 0;
    width: 100vw;
    text-align: center;
    background: var(--pri-color);
    transition: max-height 0.5s;
    max-height: 0px;
    min-height: 0px;
    overflow: hidden;
    z-index: 100;
  }
  .main-nav__link {
    display: inline-block;
    width: 50%;
  }
  .navs .hamburger-menu {
    display: block;
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span {
    height: 0px;
    background: #000;
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span::before {
    transform: rotate(45deg);
    background: var(--pri-color);
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span::after {
    top: 15px;
    transform: rotate(-45deg);
    background: var(--pri-color);
  }
  #check-box-dropdown:checked ~ .main-nav__items {
    max-height: 500px;
    border-bottom: 2px solid #efefef;
  }
  .navbox {
    justify-content: space-between;
  }
  .navbox {
    padding: 0 25px;
  }
  .project-left {
    display: none;
  }
}
@media (max-width: 480px) {
  .project-left {
    display: none;
  }
  .logo img {
    width: 80px;
  }
}
/* Portfolio */

#images {
  width: 500px;
  height: 500px;
  overflow: hidden;
  position: relative;
  background-color: var(--pri-color);
  margin: 0 auto;
  /* background-image: url(https://www.techherds.com/backup_Server/assets/img/product-1.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#display-img {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  display: block !important;
  z-index: 2 !important;
  opacity: 1 !important;
}
#images img {
  /* width: 401px;
  height: 251px; */
  display: block;
  position: absolute;
  top: 0px;
  left: 401px;
  z-index: 2;
  opacity: 0;
  transition: all linear 501ms;
  -o-transition: all linear 501ms;
  -moz-transition: all linear 501ms;
  -webkit-transition: all linear 501ms;
}
#images div:target img {
  top: 0px;
  left: 0px;
  z-index: 10;
  opacity: 2;
}
#slider {
  margin-top: 10px;
  text-align: center;
}
#slider a {
  text-decoration: none;
  padding: 5px 7px;
}
#slider a img {
  max-width: 95px;
}
@media screen and (max-width: 768px) {
  .mt-sm {
    margin-top: 10px;
  }
}

/* Product Description */

@media screen and (max-width: 480px) {
  .pro-des {
    padding: 30px 10px !important;
  }
  .over-view .dot-list {
    margin-right: 0 !important;
  }
  .over-view .dot-list li {
    display: flex;
  }
}
@media screen and (max-width: 350px) {
  .pro-des {
    padding: 30px 10px !important;
  }
  .over-view .dot-list {
    margin: 0;
    padding: 0;
  }
}

/* Accordion */
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-in-out !important;
}
.tab input:checked ~ .tab__content {
  max-height: 100%;
  border: 1px solid #d3c4c4;
}

/* Visual styles */
.accordion {
  border-radius: 0.5rem;
  overflow: hidden;
}
.tab__label,
.tab__close {
  display: flex;
  color: white;
  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  padding: 1rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  border-bottom: 1px solid;
}
.tab-p {
  background-image: url("https://www.techherds.com/backup_Server/assets/img/shipping.png");
  background-repeat: no-repeat;
  background-size: 65px;
  background-position: left;
  padding-left: 70px;
}
.tab-ship {
  background-image: url("https://www.techherds.com/backup_Server/assets/img/delivery.png");
  background-repeat: no-repeat;
  background-size: 65px;
  background-position: left;
  padding-left: 70px;
}
.tab-d {
  background-image: url("https://www.techherds.com/backup_Server/assets/img/return.png");
  background-repeat: no-repeat;
  background-size: 65px;
  background-position: left;
  padding-left: 70px;
}
.tab-r {
  background-image: url("https://www.techherds.com/backup_Server/assets/img/payment.png");
  background-repeat: no-repeat;
  background-size: 65px;
  background-position: left;
  padding-left: 70px;
}
.tab__label::after {
  content: "";
  width: 24px;
  background-image: url("https://www.techherds.com/backup_Server/assets/img/plus.png");
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  transform: rotate(90deg);
}

.tab input:checked + .tab__label:not(:checked) {
  background-color: var(--pri-color) !important;
}
.tab input:checked + .tab__label::after {
  transform: rotate(180deg);
  background-image: url("https://www.techherds.com/backup_Server/assets/img/minus.png");
  transition: 0.2s ease-in-out !important;
}

.tab__content p {
  margin: 0;
  padding: 1rem;
  transition: 0.2s ease-in-out !important;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.add-list {
  list-style-type: none;
}
.add-list li::before,
.add-list p::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #0a9453;
}
.dot-list li::before,
.dot-list p::before {
  position: relative;
  content: "\2022";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--pri-color);
}
/* Footer */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: var(--dark);
}
.footer-link a {
  padding: 0 20px;
  font-size: 19px;
  border-right: 1px solid #fff;
  color: var(--white);
}
.footer-link a:last-child {
  border: 0px solid;
}

@media (max-width: 768px) {
  .navbox {
    padding: 0 25px;
  }
}
@media (max-width: 480px) {
  .footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-link a {
    border-right: 0px solid #fff;
  }
}

.navs input[type="checkbox"] {
  display: none;
}
.navs .hamburger-menu {
  width: 50px;
  height: 60px;
  right: 20px;
  position: relative;
  top: -3px;
  cursor: pointer;
  display: none;
  z-index: 100;
  margin-left: auto;
}
.navs .hamburger-menu span {
  position: absolute;
  width: 100%;
  height: 5px;
  top: 16px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.navs .hamburger-menu span::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 15px;
  height: 5px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.navs .hamburger-menu span::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 30px;
  height: 5px;
  background: #efefef;
  border-radius: 5px;
  transition: 0.25s;
}
.main-nav__items {
  display: flex;
  margin-right: 1rem;
  min-height: 80px;
  align-items: center;
  list-style: none;
  background-color: #84dcc6;
  width: 80%;
  justify-content: center;
}
.main-nav__link {
  color: var(--dark);
  text-decoration: none;
  margin: 0.5rem;
  padding: 1rem;
  position: relative;
  transition: 0.5s;
  font-size: 22px;
}

.main-nav__link:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .navs {
    flex-wrap: wrap;
  }
  .main-nav__items {
    display: block;
    position: absolute;
    top: 91px;
    left: 0;
    width: 100vw;
    text-align: center;
    background: var(--pri-color);
    transition: max-height 0.5s;
    max-height: 0px;
    min-height: 0px;
    overflow: hidden;
    z-index: 99999;
  }
  .main-nav__link {
    display: inline-block;
    width: 50%;
  }
  .navs .hamburger-menu {
    display: block;
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span {
    height: 0px;
    background: #000;
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span::before {
    transform: rotate(45deg);
    background: var(--pri-color);
  }
  .navs #check-box-dropdown:checked + .hamburger-menu span::after {
    top: 15px;
    transform: rotate(-45deg);
    background: var(--pri-color);
  }
  #check-box-dropdown:checked ~ .main-nav__items {
    max-height: 500px;
    border-bottom: 2px solid #efefef;
  }
}

@media (max-width: 480px) {
  #images {
    width: 250px;
    height: 250px;
  }
  #images img {
    max-width: 250px;
    height: 250px;
  }
  #slider a img {
    max-width: 55px;
  }
}
