
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800;900&display=swap');

body {
  font-family: "Roboto Slab", serif;
  background: #fff;
  color: #000;
}
.nav-icon-img{
	width:100%;
	height:70px;
}

.max-height {
  min-height: calc(100vh - 140px);
  
  background: linear-gradient(
      rgba(50, 50, 50, 0.6),
      rgba(240, 240, 240, 0.6)
    ),
    url("../img/istockphoto-1220114834-1024x1024.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.banner {
  color: #fff;
  margin-top: -64px;
  margin-top: -4rem;
}
.banner-title {
  color: #fff;
  font-size: 64px;
  font-size: 4rem;
}

/* about section */
.about-img__container {
  position: relative;
}
.about-img__container::before {
  content: "";
  position: absolute;
  top: -24px;
  top: -1.5rem;
  left: -27.2px;
  left: -1.7rem;
  width: 100%;
  height: 100%;
  outline: 8px solid rgb(212, 0, 0);
  outline: 0.5rem solid rgb(212, 0, 0);
  z-index: -1;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}
.about-img__container:hover:before {
  top: 0;
  left: 0;
}
.business-title {
  color: rgb(212, 0, 0);
  font-size: 64px;
  font-size: 4rem;
}

/* store */
.store {
  background: rgb(238, 238, 238);
}

.single-item {
  -webkit-transition: all 0.3 linear;
  transition: all 0.3 linear;
}
.single-item:hover {
  -webkit-box-shadow: 0 10px 15px rgb(0, 0, 0);
  box-shadow: 0 10px 15px rgb(0, 0, 0);
}
.img-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px
}
.store-img {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; 
  height: 240px  
}
.img-container:hover .store-img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.img-container:hover {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}



/* footer*/
.footer-title {
  background: rgb(2, 2, 2);
}

.footer-title-left{
  color: rgb(238, 238, 238);
  font-size: 64px;
  font-size: 4rem;
}

.footer-contact {
  background: rgb(190, 190, 190);
}
.footer-icon {
  font-size: 24px;
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  -webkit-transition: all 0.4 ease-in-out;
  transition: all 0.4 ease-in-out;
}
.footer-icon:hover {
  color: rgb(212, 0, 0);
}
