@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom ScrollBar */
::-webkit-scrollbar {
  width: 0.5rem;
  background: #e90fba;
  border-radius: 5rem;
}

::-webkit-scrollbar-thumb {
  width: 0.5rem;
  background: #791363;
}

body {
  color: #22262a;
  font-family: "Poppins", "sans-serif";
  font-weight: 400;
  font-size: 15px/22px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

ul li {
  list-style-type: none;
}

button {
  display: block;
  border: none;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  transition: 0.4s;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5px;
}

.btn-primary {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background-color: #22262a;
}

.btn-primary:hover {
  background-color: #791363;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header__title {
  font-size: 28px;
  line-height: 42px;
}

.header-nav__item {
  display: inline-block;
  font-size: 18px;
  margin-right: 25px;
  text-transform: uppercase;
}

.header-nav__item:last-child {
  margin-right: 0;
}

.header-user__item {
  display: inline-block;
  margin-right: 30px;
}

.header-user__item:last-child {
  margin-right: 0;
}

.header a:hover,
.header button:hover {
  color: #791363;
}

/* banner */
.banner-wrap {
  padding: 425px 0 100px;
  background: url(../images/home-bg.jpg) no-repeat;
  background-size: cover;
}

.banner {
  width: 460px;
  margin-left: auto;
}

.banner__text {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-transform: uppercase;
}

.banner__trend {
  font-size: 80px;
  line-height: 120px;
  text-transform: uppercase;
}

.banner-link-wrap {
  margin-top: 25px;
  margin-bottom: 105px;
}

.banner-link {
  width: 150px;
  margin-right: 35px;
  padding: 10px 25px;
}

.banner-link:last-child {
  margin-right: 0;
}

/* Category */
.section {
  padding: 115px 0 0 0;
}

.category {
  display: grid;
  grid-template-areas: "img1 img1 img4 img4" "img2 img3 img4 img4";
  gap: 25px;
}

.category__link {
  position: relative;
  cursor: pointer;
  min-height: 280px;
}

.category__link:hover::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.category__link:nth-child(1) {
  grid-area: img1;
  background: url(../images/category-1.jpg) 50% 0%/cover no-repeat;
}

.category__link:nth-child(2) {
  grid-area: img2;
  background: url(../images/category-2.jpg) 50% 0%/cover no-repeat;
}

.category__link:nth-child(3) {
  grid-area: img3;
  background: url(../images/category-3.jpg) 50% 0%/cover no-repeat;
}

.category__link:nth-child(4) {
  grid-area: img4;
  background: url(../images/category-4.jpg) 50% 0%/cover no-repeat;
}

.category__name {
  position: absolute;
  bottom: 25px;
  left: 25px;
  padding: 5px 20px;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  transition: 0.4s;
}

.category__link:hover .category__name {
  opacity: 1;
}

/* Fashion Products */
.section__title {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section__subtitle {
  text-align: center;
  margin-bottom: 65px;
}

.fashion-product-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.fashion-product {
  width: 24%;
}

.fashion-product__pic {
  margin-bottom: 38px;
}

.fashion-product__brand {
  display: block;
  font-weight: 300;
  text-transform: uppercase;
}

.fashion-product__link {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  margin: 3px 0;
}

.fashion-product__link:hover {
  color: #791363;
}

.fashion-product__price_old {
  text-decoration: line-through;
}

.fashion-product__price_new {
  color: #CF2929;
  margin-left: 35px;
}

/* Style */
.style {
  display: flex;
  justify-content: space-between;
  height: 700px;
}

.style-left {
  width: 49%;
  height: 100%;
  background: url(../images/style-1.jpg) 100% 100%/550px no-repeat;
}

.style-right {
  position: relative;
  width: 49%;
  height: 100%;
  background: url(../images/style-2.jpg) 0% 0%/515px no-repeat;
}

.style-right::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 36px;
    height: 303px;
    width: 252px;
    background: #fff url(../images/style-3.jpg) 100% 100%/227px 281px no-repeat;
}

.style__link {
  text-transform: uppercase;
  position: absolute;
  z-index: 2;
  right: 480px;
  bottom: 0px;
  border-bottom: 1px solid #000;
}

.style__link:hover {
  color: #791363;
}

/* Collection */
.collection-wrap {
  background: url(../images/ban-bg.jpg) 0%/cover no-repeat;
  margin-top: 121px;
}

.collection {
  margin-right: auto;
  margin-left: 0;
}

.collection .btn-primary {
  margin-top: 10px;
  padding: 4px 25px;
}

/* Footer */
.footer-main {
  padding: 115px 0 105px;
  background-color: #f2f8fc;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footer__title {
  font-size: 25px;
  line-height: 38px;
  margin-bottom: 20px;
}

.footer__text {
  width: 405px;
  margin-bottom: 40px;
}

.footer__location {
  position: relative;
  display: block;
  margin: 0 0 15px 40px;
}

.footer__location::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -40px;
  width: 15px;
  height: 15px;
  background: url(../images/location.svg) 100% 100% no-repeat;
}

.footer__mail {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-bottom: 7px;
}

.footer__mail:hover {
  color: #791363;
}

.footer__tel {
  display: block;
  margin-bottom: 17px;
}

.footer__mail::after {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.social {
  display: flex;
  align-items: center;
}

.social__link svg {
  background-size: 17px 17px;
}

.social__link > svg {
  margin-right: 15px;
  transition: 0.4s;
}

.social__link:hover svg {
  fill: #791363;
}

.footer__form {
  display: flex;
  justify-content: space-between;
  width: 530px;
  margin-bottom: 70px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}

.footer__form-input {
  width: 100%;
  padding: 10px 25px;
  color: inherit;
  font: inherit;
  outline: none;
  border: 1px solid transparent;
}

.footer__form-input:focus {
  border: 1px solid #22262a;
}

.footer__form-button {
  width: 75px;
  color: inherit;
  font-weight: 600;
  text-transform: uppercase;
}

.footer__form-button:hover {
  color: #fff;
  background-color: #000;
}

.footer-nav-wrap {
  display: flex;
  justify-content: space-between;
}

.footer-nav__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}

.footer-nav__item {
  margin-bottom: 20px;
}

.footer-nav__item a:hover {
  color: #791363;
}

/* Copyright */
.footer-copyright {
  background-color: #E7F5F8;
  text-align: center;
}

.gh-link {
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.gh-link p {
  background-color: #E7F5F8;
  margin-top: 7px;
  padding-bottom: 35px;
}/*# sourceMappingURL=style.css.map */
