@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root{
  --bg-color:#050621;
  --select-color:#0506213a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

::selection {
  color: white;
  background-color: var(--select-color);
}

.ribbon {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: right;
  padding:0 5px;
  color: #ffffff;
  background: var(--bg-color); /*rgba(214, 214, 214, 0.1)*/
  z-index: -1;
}

.ribbon .ribbon-content a {
  color: var(--ribbon-color, #ffffff);
  text-decoration: none;
  font-size: 1em;
  padding: 5px;
  margin: 5px 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  /* width: 30%; */
  border-radius: 5px;
}

.cont-msg{
  display: none;
}

.ribbon .ribbon-content a:hover {
  text-decoration: underline;
  color: white;
}

.ribbon-content .ribbon-social i {
  padding: 5px;
  margin: 5px 0px;
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  border-radius: 40px;
  /* border: 2px solid white; */
  background-color: white;
  color: var(--bg-color);
}

/* .ribbon-content .ribbon-social i.fa-facebook {
  background-color: var(--bg-color);
}

.ribbon-content .ribbon-social i.fa-instagram {
  background: linear-gradient(-50deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.ribbon-content .ribbon-social i.fa-linkedin {
  background: #0077B5;
} */

.ribbon-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapper {
  background: white;
  position: fixed;
  border-bottom: 2px solid var(--bg-color);
  width: 100%;
  z-index: 99;
}

.wrapper nav {
  position: relative;
  display: flex;
  max-width: 100%;
  height: 60px;
  align-items: center;
  justify-content: space-between;
}

nav .content {
  display: flex;
  height: 100%;
  align-items: center;
}

nav .content .links {
  margin-left: 80px;
  display: flex;
  gap: 10px;
}

.content .links li {
  list-style: none;
  line-height: 70px;
}

.content .links li a.act {
  color: white;
  background-color: var(--bg-color);
  border-radius: 100px;
}

.content .links li a,
.content .links li label {
  color: var(--bg-color);
  background-color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", Arial, sans-serif;
  text-decoration: none;
  padding: 9px 17px;
  transition: all 0.3s ease;
}

.content .links li label {
  display: none;
}

.content .links li a:hover,
.content .links li label:hover {
  background: var(--bg-color);
  text-decoration: none;
  color: white;
}

.wrapper .search-icon,
.wrapper .menu-icon {
  color: var(--bg-color);
  background-color: #ffffff;
  font-size: 18px;
  margin: 0;
  cursor: pointer;
  line-height: 60px;
  width: 60px;
  text-align: center;
}

.wrapper .menu-icon {
  display: none;
}

/* .wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
} */

.wrapper .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box .go-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */
.content .links ul {
  position: absolute;
  background: #171c24;
  top: 80px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.content .links li:hover>ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.content .links ul li a {
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}

.content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.content .links ul li {
  position: relative;
}

.content .links ul li:hover ul {
  top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
  }

  nav .content .links {
    margin-left: 30px;
  }

  .content .links li a {
    padding: 8px 13px;
  }

  .wrapper .search-box {
    max-width: calc(100% - 100px);
  }

  .wrapper .search-box input {
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
  }

  .wrapper #show-menu:checked~.menu-icon i::before {
    content: "\f00d";
  }

  nav .content .links {
    display: block;
    position: fixed;
    background: white;
    height: 100%;
    width: 100%;
    top: 100px;
    left: -100%;
    margin-left: 0;
    max-width: 100%;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.content .links {
    left: 0%;
  }

  .content .links li {
    margin: 15px 20px;
  }

  .content .links li a,
  .content .links li label {
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }

  .content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .content .links #show-features:checked~ul,
  .content .links #show-services:checked~ul,
  .content .links #show-items:checked~ul {
    max-height: 100vh;
  }

  .content .links ul li {
    margin: 7px 20px;
  }

  .content .links ul li a {
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}

@media screen and (max-width: 480px) {
  .content .logo a {
    font-size: 27px;
  }

  .wrapper .search-box {
    max-width: calc(100% - 70px);
  }

  .wrapper .search-box .go-icon {
    width: 30px;
    right: 0;
  }

  .wrapper .search-box input {
    padding-right: 30px;
  }
}

video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0.2;
}

video::after{
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  background:black;
  z-index: 1;
}

.quote {
  height: 50vh;
  width: 100%;
  padding: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
}

.quote h2 {
  margin: 20px 0px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 1.4em;
  font-family: sans-serif;
}

.quote p {
  font-size: 1em;
  color: #777777;
  /* text-align: justify; */
}

.btn-container {
  width: 100%;
  margin-top: 35px;
  gap: 10px;
  display: flex;
  justify-content: center;
  /* position: absolute;
  top:90%;
  left: 6%; */
}

.btn-container a {
  padding: 10px 15px;
  background: white;
  text-decoration: none;
  font-weight: 600;
  color: var(--bg-color);
  font-family: sans-serif;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);

}

.btn-container a.active {
  background-color: var(--bg-color);
  color: white;
  transition: .4s all ease-in-out;


}

.btn-container a.active:hover {
  background: white;
  color: var(--bg-color);
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 15vh;
  margin: 0 10px;
  padding: 5px;
  filter: grayscale(1);
  transition: all .6s ease;
}

.logos-slide img:hover {
  filter: grayscale(0);
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.About {
  height: auto;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.About .image {
  height: 100%;
  width: 50%;
}

.About .image img {
  height: auto;
  width: 90%;
}

.About .Data {
  height: 100%;
  padding: 10px;
  /* translate: -20% -50%; */
  /* box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); */
  background-color: white;
  width: 50%;
  z-index: 1;
}

.About .Data h2 {
  margin: 10px 0;
  font-family: sans-serif;
  color: var(--bg-color);
  text-transform: uppercase;
}

.About .Data p {
  font: 0.9em sans-serif;
  font-weight: lighter;
  color: #777777;
  margin-bottom: 30px;
  text-align: justify;
}

.About .Data a {
  color: var(--bg-color);
  padding: 12px 10px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 3px solid var(--bg-color);
  text-decoration: none;
  background-color: white;
}

.About .Data a:hover {
  color: #ffffff;
  background-color: var(--bg-color);
}

.Services {
  height: 100vh;
  width: 100%;
  margin-top: 10%;
  padding: 10px;
  text-align: center;
}

.Services p {
  font-weight: 500;
  font-size: .9em;
  letter-spacing: 1px;
  color: #777777;
}

.Services h2 {
  margin: 5px;
  color: var(--bg-color);
  letter-spacing: 1px;
}

.Services .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 45px;
}

.serv {
  height: 65vh;
  width: 25%;
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  flex-direction: column;
  justify-self: center;
  align-items: center;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.serv i {
  font-size: 1.8em;
  color: var(--bg-color);
}

.serv h3 {
  color: var(--bg-color);
}

.serv p {
  margin-top: 10px;
  width: 95%;
  word-spacing: 0;
  font-weight: lighter;
  text-align: left;
  color: #777777;
}

.content .act {
  background-color: var(--bg-color);
  box-shadow: none;
}

.content .act h3 {
  color: white;
}

.content .act p {
  color: white;
}

.content .act i {
  color: white;
}

.Prod-Container {
  margin-top: 10%;
  text-align: center;
  height: 100vh;
  width: 100%;
}

.Prod-Container h2 {
  color: var(--bg-color);
}

.Prod-Container p {
  margin-top: 10px;
  word-spacing: 0;
  /* font-size: em; */
  font-weight: lighter;
  color: #777777;
}

.Card-wrapper {
  height: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.Card-wrapper .product-cards {
  height: 100%;
  box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  width: 30%;
  margin: 20px;
  padding: 10px;
  transition: .4s all ease-in-out;
}

.Card-wrapper .product-cards img {
  /* border:2px solid #3084836c; */
  background: url(Products/Circle.png) no-repeat;
  background-size: contain;
  background-position: center;
  height: 65%;
  width: auto;
}

.Card-wrapper .product-cards .Title {
  font-size: 1.2em;
  margin: 10% 0;
  color: var(--bg-color);
  font-weight: 600;
}

.Card-wrapper .product-cards a {
  font-size: 1.2em;
  color: var(--bg-color);
  text-decoration: none;
  transition: .4s all ease-in-out;
}

.Card-wrapper a.read {
  font-size: 1.2em;
  color: var(--bg-color);
  border: 2px solid var(--bg-color);
  padding: 10px 165px;
  font-weight: 600;
  border-radius: 2px;
  text-align: center;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: .4s all ease-in-out;
}

.Card-wrapper a.read:hover {
  color: white;
  background-color: var(--bg-color);
}

.Card-wrapper .product-cards .detail-box {
  height: 100%;
  background-color: rgb(251, 251, 251);
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 10px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  scale: 0.1;
  opacity: 0;
  transition: .4s all ease-in-out;
}

.Card-wrapper .product-cards .detail-box p {
  color: var(--bg-color);
  text-align: justify;
  font-weight: lighter;
}

.product-cards:hover>.detail-box {
  opacity: 1;
  scale: 1;
}

.product-cards:hover>a {
  display: none;
  scale: 0.1;
}

.product-cards:hover {
  box-shadow: none;
  border: 0.3px solid rgba(0, 0, 0, 0.18);
}

.Card-wrapper .product-cards .detail-box a {
  padding: 5px 20px;
  color: var(--bg-color);
  border-radius: 50px;
  margin-top: 10px;
  letter-spacing: 1px;
  position: absolute;
  bottom: 30px;
  background-color: rgb(255, 255, 255);
}

.Card-wrapper .product-cards .detail-box a:hover{
  background-color: var(--bg-color);
  color: white;
  box-shadow: none;
}

.About-pro {
  margin-top: 120vh;
  height: 100vh;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.About-pro .content {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.About-pro .content h2 {
  color: var(--bg-color);
  margin: 20px 0;
}

.About-pro .content p {
  color: #777777;
  text-align: justify;
  font-weight: lighter;
  font-family: sans-serif;
}

.About-pro .image {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.About-pro .image img {
  width: 80%;
  height: auto;
}

.Counter-container {
  width: 100%;
  height: 80vh;
  margin-top: 150vh;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(Homepage/Counterbg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.Counter-container .star-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.Counter-container h2 {
  width: 100%;
  margin-top: 15%;
  font-size: 2em;
  color: white;
  text-align: center;
}

.Counter-container p {
  margin-top: 3%;
  color: white;
  text-align: justify;
}

.stats-section {
  width: 15vw;
  height: 30vh;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0.2rem;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.09);
}

.stats-card {
  display: flex;
  height: 100%;
  flex: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 1.5rem;
}

.stats-card .title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--bg-color);
  margin-top: 0.3rem;
}

.stats-card .label {
  font-size: 1rem;
  color: #151414;
  margin-top: 0.1rem;
  text-align: center;
}

.Contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  width: 100%;
  padding: 30px 10%;
  background-color: var(--bg-color);
}

.Contact .content {
  height: 100%;
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 15px;
  background-color: white;
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
}

.Contact .content h2 {
  margin-bottom: 10px;
  color: var(--bg-color);
}

.Contact .content p {
  font-size: .9em;
  font-weight: lighter;
  color: #777777;
}

.Contact .form {
  height: 100%;
  width: 100%;
}

.Contact .form form {
  height: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.Contact .text {
  padding: 10px;
}

.Contact form input {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  outline: none;
  border-radius: 100px;
  border: 2px solid var(--bg-color);
  padding: 15px;
  width: 80%;
}

.Contact form input[type=submit] {
  font-family: sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--bg-color);
  background-color: white;
  border: none;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  cursor: pointer;
  transition: all 500ms ease;
}

.Contact form input[type=submit]:hover {
  color: white;
  background-color: var(--bg-color);
}

.Contact .image {
  height: 100%;
  width: 50%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: url(Homepage/Contact\ us.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width:800px) {
  video {
    height: 60vh;
  }

  .quote {
    height: 30vh;
    padding: 5px;
    top: 20%;
  }

  .About {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .About .image {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    align-items: center;
  }

  .About .image .img {
    width: 100%;
    margin-left: 0px;
  }

  .About .Data {
    height: 75%;
    width: 100%;
  }

  .Services .content {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .serv {
    height: 55vh;
    min-width: 38vw;
  }

  .Prod-Container {
    margin-top: 55%;
  }

  .Card-wrapper .product-cards {
    width: 40%;
    min-width: 40vw;
    height: 65vh;
    display: flex;
    align-items: center;
  }

  .Card-wrapper .product-cards .Title {
    margin-top: 0;
  }

  .Counter-container {
    margin-top: 195vh;
  }

  .Counter-container h2 {
    width: 100%;
    margin-top: 0;
    font-size: 2em;
    color: white;
    text-align: center;
  }

  .Counter-container .star-wrapper {
    align-items: flex-end;
    justify-content: space-around;
  }

  .stats-section {
    width: 35vw;
    height: 20vh;
    transform: none;
  }

  .Counter-container .star-wrapper {
    flex-wrap: wrap;
    align-content: space-around;
  }

  .Card-wrapper .product-cards img {
    height: auto;
    width: 95%;
  }

  .About-pro {
    margin-top: 0;
  }

  .Contact .image {
    display: none;
  }

  .Contact .content {
    width: 85%;
    border-radius: 10px;
    padding: 15px;
  }

  .Contact .text {
    text-align: center;
    padding: 10px;
  }
}

@media (max-width:600px) {
  .About .image {
    width: 100%;
    height: auto;
  }

  .About .Data {
    height: auto;
  }

  .serv {
    min-width: 55vw;
  }

  .Prod-Container {
    margin-top: 115vh;
  }

  .Card-wrapper .product-cards {
    width: 65vw;
    min-width: 40vw;
    height: 65vh;
  }

  .Card-wrapper .product-cards img {
    height: auto;
    width: 70%;
  }

  .Card-wrapper .product-cards .Title {
    font-size: 1em;
    margin-top: 0;
  }

  .Card-wrapper a.read {
    padding: 10px 70px;
  }

  .Counter-container {
    margin-top: 360vh;
  }

  .Counter-container h2 {
    font-size: 1.5em;
  }
}

@media (max-width:480px) {
  .navbar .logo a img {
    height: 6vh;
    width: auto;
  }

  .sidebar-logo .logo-name img {
    height: 6vh;
    width: auto;
  }

  video {
    margin-top: 9vh;
    height: 30vh;
  }

  .quote {
    top: 15%;
  }

  .quote h2 {
    font-size: 1.1em;
  }

  .btn-container {
    margin-top: 15px;
  }

  .logos {
    padding: 28px 0;
  }

  .logos-slide img {
    height: 10vh;
  }

  .Services {
    margin-top: 45%;
  }

  .content .links ul {
    box-shadow: none;
  }

  .serv {
    min-width: 80vw;
    height: auto;
  }

  .serv p {
    font-weight: 400;
    color: #313131;
  }

  .Prod-Container p {
    font-weight: 400;
    color: #313131;
  }

  .About .Data p {
    font-weight: 400;
    color: #313131;
  }

  .About-pro .content p {
    font-weight: 400;
    color: #313131;
  }

  .Prod-Container {
    position: relative;
  }

  .Card-wrapper .product-cards {
    width: 90vw;
    height: 70vh;
  }

  .Card-wrapper .product-cards .Title {
    font-size: 5vw;
    margin-top: 0;
  }

  .Counter-container {
    margin-top: 400vh;
  }

  .Counter-container h2 {
    font-size: 1.4em;
  }

  .Counter-container .star-wrapper {
    height: 70vh;
  }

  .stats-section {
    width: 65vw;
    height: 15vh;
    transform: none;
  }

  .About-pro {
    flex-direction: column-reverse;
    margin-top: 20vh;
  }

  .About-pro .content {
    width: 100%;
  }

  .About-pro .image {
    width: 100%;
  }

  .Counter-container {
    height: 85vh;
  }

  .Counter-container h2 {
    font-size: 1.3em;
  }

  .Contact .content {
    width: 100%;
    height: auto;
  }

  .Contact form input {
    width: 95%;
  }

  .Contact .form form {
    gap: 25px;
  }
}

.footer-distributed {
  background: var(--bg-color);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  margin-top: 20%;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

footer .logo img {
  width: 40vh;
  height: auto;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 40%;
}

/* The company logo */

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span {
  color: rgb(10, 13, 48);
}

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-links a:hover {
  text-decoration: underline;
}

.footer-distributed .footer-company-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: rgb(255, 255, 255);
  color: var(--bg-color);
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 0px 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  width: 270px;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center .call a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center .call a:hover {
  text-decoration: underline;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}

.footer-distributed .footer-center p a {
  color: rgb(222, 222, 222);
  text-decoration: none;
}

.footer-distributed .footer-center p a:hover {
  text-decoration: underline;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.call {
  display: flex;
  /* justify-content: center;
  align-items: center; */
}

.accounts,
.tech {
  padding: 10px 0px;
}

.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #dddddd;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 2px;

  font-size: 20px;
  color: var(--bg-color);
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

.hidden-container {
  height: 100%;
  width: 100%;
  padding: 2%;
  display: none;
  flex-wrap: wrap;
  overflow-y: auto;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  background-color: white;
  z-index: 100;
}

.hidden-container .fa-x {
  padding: 3px 5px;
  background-color: var(--bg-color);
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.hidden-container .input-wrapper {
  width: 60%;
  margin-top: 10vh;
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  border: 2px solid var(--bg-color);
  border-radius: 100px;
}

.hidden-container .fa-search {
  padding: 15px;
  color: white;
  border-right: 2px solid var(--bg-color);
  background-color: var(--bg-color);
}

.hidden-container .input-wrapper input {
  padding: 10px;
  width: 100%;
  border: none;
  outline: none;
}

.search-products {
  margin-top: 15vh;
  height: 100%;
  width: 100%;
  margin-bottom: 20px;
  gap: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.search-products a.Product-link {
  height: auto;
  color: var(--bg-color);
  font-weight: 600;
  display: none;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  width: 30%;
}

.search-products a.Product-link:hover {
  transform: scale(1.05);
}

.search-products a.Product-link .product-detail {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.search-products a.Product-link .product-detail img {
  height: auto;
  width: 100%;
}

.search-products a.Product-link .product-detail .Title {
  padding: 10px;
}

#noProductMessage {
  position: absolute;
  top: 50vh;
  font-size: 2vw;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 800px) {
  .ribbon-social, .ribbon-email, .ribbon-phone {
    display: none;
  }

  .cont-msg{
    display: block;
  }

  .footer-distributed {
    font: bold 14px sans-serif;
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
  }

  .call {
    justify-content: center;
    align-items: center;
  }

  .accounts,
  .tech {
    padding: 10px 5px;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }

  .logo img {
    width: 45vw;
    height: auto;
  }
}

@media (max-width:600px) {
  .search-products a.Product-link {
    width: 60%;
  }

  .hidden-container .input-wrapper {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .ribbon{
    padding: 10px;
  }
  .ribbon .ribbon-content a {
    font-size: 0.8em;
    padding: 5px 10px;
  }

  .footer-distributed .footer-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-distributed .footer-center div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}