* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

header {
  position: relative;
  z-index: 99;
  background-color: #fff;
}
header .container .header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
header .container .header .logo {
  display: flex;
  align-items: center;
}
header .container .header .nav nav {
  display: flex;
  align-items: center;
}
header .container .header .nav nav .header-ul {
  display: flex;
  gap: 40px;
}
header .container .header .nav nav .header-ul li a {
  text-decoration: none;
  color: black;
  transition: 0.5s;
}
header .container .header .nav nav .header-ul li a:hover {
  color: blue;
}
header .container .header .header-right {
  display: flex;
  gap: 30px;
}
header .container .header .header-right .header-btn {
  background-color: white;
  border: 1px solid gainsboro;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.5s;
}
header .container .header .header-right .header-btn:hover {
  border: 1px solid blue;
}
header .container .header .header-right .header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

footer {
  background-color: #05274B;
}
body {
  position: relative;
  z-index: 100;
}
body #home {
  position: relative;
  background-color: #f1f6f7;
  z-index: -5;
}
body #home::before {
  content: "";
  display: block;
  height: 100%;
  width: 35%;
  background: #384aeb;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
body #home .home .container .row .col-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  padding-right: 100px;
}
body #home .home .container .row .col-7 .home-btn {
  width: 35%;
  background-color: #384aeb;
  border: 1px solid gainsboro;
  padding: 15px 0;
  border-radius: 30px;
  transition: 0.5s;
  color: white;
  margin-top: 25px;
}
body #home .home .container .row .col-7 .home-btn:hover {
  border: 1px solid blue;
  background-color: transparent;
  color: black;
}

#product .container .product {
  padding: 100px 0;
}
#product .container .product .head .border-span {
  border-bottom: 2px solid #384aeb;
}
#product .container .product .search-sort button {
  background-color: white;
  border: 1px solid gainsboro;
  border-radius: 30px;
  width: 15%;
  transition: 0.5s;
}
#product .container .product .search-sort button:hover {
  border: 1px solid blue;
}
#product .container .product .row .col .item .item-img {
  position: relative;
}
#product .container .product .row .col .item .item-img .white-div {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  display: none;
  transition: 0.9s;
}
#product .container .product .row .col .item .btns .row .col a {
  cursor: pointer;
  background-color: white;
  border: 1px solid gainsboro;
  border-radius: 30px;
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
}
#product .container .product .row .col .item .btns .row .col a:hover {
  border: 1px solid blue;
}
#product .container .product .row .col .item:hover .white-div {
  display: block;
}

#sellers .container .sellers .head .border-span {
  border-bottom: 2px solid #384aeb;
}
#sellers .container .sellers .row .col .item .item-img {
  position: relative;
}
#sellers .container .sellers .row .col .item .item-img .white-div {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  display: none;
  transition: 0.9s;
}
#sellers .container .sellers .row .col .item:hover .white-div {
  display: block;
}

#about {
  background-image: url("https://preview.colorlib.com/theme/aroma/img/home/parallax-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#about .container .about {
  padding: 100px 0;
}
#about .container .about .row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .container .about .row .col .about-btn {
  width: 30%;
  background-color: #384aeb;
  border: 1px solid gainsboro;
  padding: 15px 0;
  border-radius: 30px;
  transition: 0.5s;
  color: white;
  margin-top: 25px;
}
#about .container .about .row .col .about-btn:hover {
  border: 1px solid blue;
  background-color: transparent;
  color: black;
}

#news .container .news {
  padding-bottom: 100px;
}
#news .container .news .head .border-span {
  border-bottom: 2px solid #384aeb;
}
#news .container .news .row .col .news-bottom .read-a {
  text-decoration: none;
  color: black;
}
#news .container .news .row .col:hover .title-bold {
  color: #384aeb;
}
#news .container .news .row .col:hover .read-a {
  color: #384aeb;
}

#details .container .details {
  padding: 100px 0;
  position: relative;
  z-index: 2900;
}
#details .container .details .row .col .item .item-img {
  position: relative;
}
#details .container .details .row .col .item .item-img .white-div {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  display: none;
  transition: 0.9s;
}
#details .container .details .row .col .item .btns .row .col a {
  cursor: pointer;
  background-color: white;
  border: 1px solid gainsboro;
  border-radius: 30px;
  transition: 0.5s;
  text-decoration: none;
  text-align: center;
}
#details .container .details .row .col .item .btns .row .col a:hover {
  border: 1px solid blue;
}
#details .container .details .row .col .item:hover .white-div {
  display: block;
}/*# sourceMappingURL=main.css.map */