@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  font-family: "Poppins", sans-serif;
}
.navbar-brand img {
  height: 70px;
  padding: 0;
}
#navbar {
  background-color: #fff; /* Black background color */
  position: fixed; /* Make it stick/fixed */
  top: 0; /* Stay on top */
  width: 100%; /* Full width */
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
  z-index: 99;
  padding: 0;
}

/* Style the navbar links */
#navbar a {
  float: left;
  display: block;
  color: #5167ba;
  text-align: center;
  text-decoration: none;
}
#navbar .dropdown-menu {
  background-color: #707070;
}
#navbar a:hover {
  background-color: #ddd;
  color: black;
}

.search input[type="text"] {
  width: 100px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

/* When the input field gets focus, change its width to 100% */
.search input[type="text"]:focus {
  width: 100%;
}

.banner-area {
  background: url("../images/banner-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 95vh;
}

.banner-heading {
  color: #e5e0e0;
  font-size: 60px;
  font-weight: bold;
}

.btn-cta {
  color: #fff;
  background-color: #5167ba;
  transition: 0.3s ease-in-out;
}

.btn-cta:hover {
  color: #fff;
  background-color: #f9af41;
}

.btn-cta img {
  height: 18px;
}

.bg-grey {
  background-color: #e3e3e3;
}

.pt-60 {
  padding-top: 60px;
}

.py-60 {
  padding: 60px 0;
}

.sec-title {
  color: #5167ba;
  font-size: 36px;
  font-weight: 600;
}

.sub-sec-title {
  color: #5167ba;
  font-size: 22px;
  font-weight: 600;
}

.icon-80 {
  height: 80px;
}

.app-icon {
  height: 60px;
}

.form-box {
  padding: 20px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
  -moz-box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
  box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
}

.team_box {
  text-align: center;
  margin: 8px;
}

.team_img {
  border-radius: 50%;
  text-align: center;
  display: inline-block !important;
  margin: 0;
}
.member_name {
  font-size: 20px;
  padding-top: 10px;
  text-align: center;
}

.prod_box {
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
  -moz-box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
  box-shadow: 0px 0px 11px -5px rgba(34, 34, 34, 1);
  text-align: center;
  margin: 8px;
}

.prod_img {
  padding-bottom: 5px;
  text-align: center;
  margin: 0;
}

.prod_name {
  text-decoration: none;
  font-size: 18px;
  color: #707070;
}

.prod_price {
  font-size: 16px;
  color: #5167ba;
}

.prod_box:hover a {
  text-decoration: none;
}

.btn-shop {
  background-color: #f26522;
  color: #f3f3f3;
  transition: 00.3s ease-in-out;
}

.btn-shop:hover,
.btn-shop:focus,
.btn-shop:active {
  background-color: #f9af41;
  color: #f3f3f3;
}

footer {
  background-color: #5167ba;
}

.footer-title {
  color: #f9af41;
  font-size: 26px;
  font-weight: 600;
}

.linear-ul {
  list-style: none;
}

.linear-ul li {
  display: inline-block;
}

.quicklinks {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #f3f3f3;
}

.quicklinks li {
  padding: 5px 0;
}

.quicklinks li a {
  text-decoration: none;
  color: #f3f3f3;
}

.quicklinks li a:hover,
.quicklinks li a:focus,
.quicklinks li a:active {
  text-decoration: none;
  color: #f9af41;
}

.social_icon {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #f3f3f3;
  font-size: 20px;
}

.social_icon li {
  padding: 0 8px;
}

.social_icon li a {
  text-decoration: none;
  color: #f3f3f3;
}
.social_icon li a:hover,
.social_icon li a:focus,
.social_icon li a:active {
  text-decoration: none;
  color: #f9af41;
}

.footer-bottom {
  background-color: #fff;
}

.bottom-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #707070;
  font-size: 12px;
}

.bottom-list li {
  padding: 0 8px;
}

.bottom-list li a {
  text-decoration: none;
  color: #707070;
}
.bottom-list li a:hover,
.bottom-list li a:focus,
.bottom-list li a:active {
  text-decoration: none;
  color: #f9af41;
}

.copyright {
  text-decoration: none;
  color: #707070;
  font-size: 12px;
}

/*responsive*/

@media (min-width: 1025px) and (max-width: 1280px) {
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

@media (min-width: 481px) and (max-width: 767px) {
}

@media (min-width: 320px) and (max-width: 480px) {
  .banner-heading {
    font-size: 36px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

@media (min-width: 481px) and (max-width: 767px) {
}

@media (min-width: 320px) and (max-width: 480px) {
}

/*responsive*/
