* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #f35b04;
    --secondary-color: #fff;
    --black: #000;
    --whatsapp: #25D366;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--black);
}
/* Change Navbar Styling On Scroll */
.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all .15s ease-in-out 0s;
    z-index: 999;
  }
  .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .main_btn {
    border-radius: 50px;
    padding: 4px 24px;
    font-weight: 600;
    border-width: 2px;
  }
  .main_btn:hover {
    color: var(--secondary-color) !important;
  }
.wrapper {
    padding-top: 4rem;
}
.icons {
    position: fixed;
    top: 50%;
    left: 5px;
    z-index: 999;
  }
  .icons a {
    display: block;
    text-decoration: none;
    background: transparent;
    padding: 10px;
    border: 1px solid var(--whatsapp);
    align-items: center;
    text-align: center;
  } 
  .icons a i {
    font-size: 24px;
    filter: drop-shadow(0px 0px 5px var(--whatsapp));
  }
  .icons a .fa-whatsapp {
    color: var(--whatsapp);
  }
  .icons a .fa-square-instagram {
    color: rgb(215, 55, 130);
  }
  /* .list-unstyled li {
    /* width: 40px;
    height: 40px; 
    border: 1px solid var(--secondary-color);
    text-align: center;
    padding: 8px;
  } */
  /* .list-unstyled li a {
    /* margin-left: 15px; 
    text-decoration: none;
    color: var(--secondary-color);
  } */
  .navbar a:hover {
    color: var(--primary-color);
  }
  .navbar .hover-effect a:hover {
    border-bottom: 2px solid var(--primary-color);
  }
/* Card */
.card {
    border: none;
    /* box-shadow: 0px 0px 2px #000; */
    border-radius: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1);
}
.card:hover,
.computer_parts img:hover  {
    transform: translateY(-8px);
    cursor: pointer;
}
.card img {
    border-radius: 100px;
    box-shadow: 0px 0px 3px var(--black);
}
.card small {
    font-size: 14px;
    color: gray;
}
/* Computer Parts */
.computer_parts img {
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1); 
}
/* Footer */
/* .footer-links a {
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.335, 1);
} */
/* .footer-links a:hover {
    transform: translateX(5px);
} */
footer a {
    text-decoration: none;
    color: var(--secondary-color);
}
footer a:hover {
    color: var(--primary-color);
}
footer input {
    background: transparent !important;
    border-radius: 0 !important;
}
footer button {
    border-radius: 0 !important;
}
footer input:focus-visible {
    outline: none;
    box-shadow: none !important;
}
.copy-right p {
  padding: 0;
  margin: 0;
}
/* Floating Icons */
.bounce {
  animation: bounce 2s ease infinite;
  background-color: #0c70d3 !important;
}
.bounce-2 {
  animation: bounce 2s ease infinite 0.2s;
  background-color: #06b178 !important;
}
@keyframes bounce {
  70% { transform:translateY(0%); }
  80% { transform:translateY(-15%); }
  90% { transform:translateY(0%); }
  95% { transform:translateY(-7%); }
  97% { transform:translateY(0%); }
  99% { transform:translateY(-3%); }
  100% { transform:translateY(0); }
}
.floating-icons .col .flaoting-icons-i li {
  display: block;
  height: 60px !important;
  width: 60px !important;
  padding: 20px !important;
  border-radius: 50px !important;
  text-align: center !important;
}
.floating-icons .col .flaoting-icons-i li  i {
  font-size: 1.4rem !important;
  text-shadow: 0 0 4px #1e293b;
}
@media (max-width: 991px) {
  .navbar .hover-effect a:hover {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  .icons {
    top: 88%;
    left: 33%;
  }
  .icons a {
    display: inline-flex;
  }
  .copy-right {
    padding-bottom: 5rem;
  }
}
@media (max-width: 429px) and (min-width:300px) {
  .top-menu {
    font-size: 14px;
  }
  .navbar-brand {
    margin: 0;
    font-size: 14px;
  }
  .navbar-brand img {
    width: 48px;
  }
  .copy-right p {
    font-size: 12px;
  }
}