@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.4;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: rgb(177, 173, 173);
  border-radius: 6px;
}

body {
  background: #eae2d2;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  list-style: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 8%;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
header .header__logo {
  font-weight: 500;
}
header .header__menu {
  display: flex;
}
header .header__menu a {
  margin-left: 20px;
  padding-bottom: 3px;
  position: relative;
}
header .header__menu a::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  height: 1px;
  bottom: -2px;
  background: #000;
  transition: 0.3s ease-in-out;
}
header .header__menu a:hover::after {
  width: 100%;
}
header .header__buttons a {
  margin-left: 20px;
}
header .header__buttons a:last-child {
  border: 1px solid #000;
  padding: 10px 30px;
  transition: 0.5s ease-in-out;
}
header .header__buttons a:last-child:hover {
  background-color: #000;
  color: #fff;
}

.title {
  text-transform: uppercase;
  font-size: 60px;
  letter-spacing: 2px;
  color: #5e493a;
  font-weight: bolder;
}

p {
  color: rgb(97, 96, 96);
  margin: 20px 0;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 25px;
}

.home {
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 80px);
}
.home .home__left {
  width: 35%;
}
.home .home__left .home__button button {
  border: 1px solid #000;
  margin: 10px;
  width: 100%;
  cursor: pointer;
  padding: 10px 25px;
  background-color: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease-in-out;
}
.home .home__left .home__button button:last-child {
  transition: 0.5s ease-in-out;
}
.home .home__left .home__button button:last-child:focus .home__about-us {
  width: 53%;
  border-left: 1px solid #5e493a;
}
.home .home__left .home__button button:hover {
  background-color: #000;
  color: #fff;
}
.home .home__right {
  width: 60%;
  height: 500px;
}
.home .home__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .home__about-us {
  position: absolute;
  top: 100px;
  right: 8%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px;
  flex-direction: column;
  background-color: #eae2d2;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  width: 0;
}
.home .home__about-us img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .home__about-us h1 {
  margin-bottom: 20px;
  font-size: 35px;
  color: #000;
}

.best-sales {
  padding: 20px 8%;
}
.best-sales .best-sales__product {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 20px;
  height: 80vh;
}
.best-sales .best-sales__product .div1 {
  grid-area: 1/1/6/3;
}
.best-sales .best-sales__product .div2 {
  grid-area: 2/3/7/5;
}
.best-sales .best-sales__product .div3 {
  grid-area: 1/5/7/6;
}
.best-sales .best-sales__product .div4 {
  grid-area: 1/3/2/5;
}
.best-sales .best-sales__product .div5 {
  grid-area: 6/1/7/3;
}
.best-sales .best-sales__product .div6 {
  grid-area: 1/6/6/8;
}
.best-sales .best-sales__product .div7 {
  grid-area: 6/6/7/8;
}
.best-sales .best-sales__product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.5s ease-in-out;
}
.best-sales .best-sales__product img:hover {
  filter: grayscale(0);
}
.best-sales .best-sales__product span {
  color: #5e493a;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: px;
}
.best-sales .best-sales__product .div5,
.best-sales .best-sales__product .div4,
.best-sales .best-sales__product .div7,
.best-sales .best-sales__product .div3 {
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.best-sales .best-sales__product .div3 {
  width: 170px;
  background-color: #000;
}
.best-sales .best-sales__product .div3 span {
  transform: rotate(90deg);
  font-size: 5rem;
  color: #fff;
}

.img-section {
  padding: 20px 8%;
}
.img-section h1 {
  text-align: right;
  margin: 35px 0;
}
.img-section__content {
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 0 8px #545151;
}
.img-section__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.5s ease-in-out;
}
.img-section__content img:hover {
  filter: grayscale(0);
}
.img-section__content p {
  text-align: center;
  border: 1px solid #000;
  padding: 20px;
  box-shadow: 0 0 8px #545151;
}

footer {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 35px;
  padding: 35px 8%;
  margin-top: 35px;
  text-transform: uppercase;
}
footer .col2 a,
footer .col3 a {
  margin: 5px 0;
  transition: 0.5s ease-in-out;
}
footer .col2 a:hover,
footer .col3 a:hover {
  font-weight: bolder;
}
footer .small_title {
  padding: 10px 0;
  border-bottom: 1px solid #000;
}
footer .col1 {
  grid-area: 1/1/4/4;
}
footer .col1 .footer__newletter {
  border: 1px solid #000;
  box-shadow: 0 0 8px #ccc;
  width: 85%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
footer .col1 .footer__newletter input {
  width: 75%;
  background-color: transparent;
  border: 0;
  outline: 0;
}
footer .col1 .footer__newletter button {
  background-color: transparent;
  height: 100%;
  border: 0;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
footer .col1 .footer__newletter button:hover {
  font-weight: bolder;
}
footer .col1 .icons {
  display: flex;
  gap: 20px;
}
footer .col1 .icons i {
  border: 1px solid #000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  transition: 0.5s ease-in-out;
}
footer .col1 .icons i:hover {
  background-color: #000;
  color: #fff;
}
footer .col2 {
  grid-area: 1/4/4/6;
}
footer .col3 {
  grid-area: 1/6/4/8;
}
footer .col4 {
  grid-area: 1/8/4/10;
}
footer .col4 .top_btn {
  border: 1px solid #000;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  background: transparent;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
footer .col4 .top_btn:hover {
  background-color: #000;
  color: #fff;
}
footer .col2,
footer .col3 {
  display: flex;
  flex-direction: column;
}/*# sourceMappingURL=style.css.map */