@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700;800&family=DynaPuff:wght@600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: capitalize;
  scroll-behavior: smooth;
  font-family: "Comfortaa", cursive, serif;
  transition: 0.2s linear;
}

body {
  width: 100%;
}

.btn {
  display: inline-block;
  background: #bc6c25;
  color: #01161e;
  padding: 0.5rem 1.9rem;
  margin: 1.9rem 0;
  border-radius: 1.9rem;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
  background: #606c38;
  color: #ffc8dd;
}

header {
  font-family: inherit;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: radial-gradient(#ccd5ae, #d6ccc2);
  padding: 1rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0.5rem 1 rem rgba(0, 0, 0, 0.1);
}
header .logo {
  font-size: 2rem;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "DynaPuff", cursive;
}
header .logo span {
  color: #bc6c25;
  text-transform: uppercase;
  font-family: inherit;
}
header .navbar a {
  font-size: 1rem;
  padding: 0 1.5rem;
  color: #01161e;
  cursor: pointer;
}
header .navbar a:hover {
  color: #606c38;
  transition: ease-in-out 0.3s;
}
header .navicons a {
  font-size: 1.3rem;
  color: #14213d;
  margin-left: 1.5rem;
  cursor: pointer;
  text-decoration: none;
}
header .navicons a:hover {
  color: #adc178;
}
header #toggler {
  display: none;
}
header .fa-bars {
  font-size: 1.5rem;
  color: rgb(14, 32, 32);
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  display: none;
}

.hero {
  min-height: 100vh;
  padding-top: 10vh;
  background: url(../images/pexels-imthiyaz-syed-12401185.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 3rem;
}
.hero .content {
  max-width: 50rem;
  padding: 1rem;
}
.hero .content h2 {
  font-size: 3rem;
  color: #f5ebe0;
  font-weight: 700;
}
.hero .content h2 span {
  text-transform: none;
}
.hero .content h3 {
  font-size: 2.5rem;
  color: #fffcf2;
}
.hero .content h3 span {
  color: #efd3d7;
}
.hero .content p {
  color: white;
  font-size: 1.5rem;
  text-transform: none;
  padding-top: 1.5rem;
  line-height: 1.15;
}

.iconss {
  background-color: #d1cecb;
}
.iconss h4 {
  font-size: 1.5rem;
}
.iconss .icons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.iconss .icons-container .icons {
  background: whitesmoke;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: flex;
  align-items: center;
  flex: 1 1 25rem;
}
.iconss .icons-container .icons:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}
.iconss .icons-container .icons img {
  height: 5rem;
  margin-right: 2rem;
}
.iconss .icons-container .icons h3 {
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}
.iconss .icons-container .icons span {
  opacity: 0.6;
  font-size: 1rem;
}

.featured {
  text-align: center;
}
.featured .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem;
  align-items: center;
  justify-content: space-evenly;
}
.featured .box-container h2 {
  text-align: center;
}
.featured .box-container .box {
  flex-basis: 10%;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  position: relative;
  justify-content: space-evenly;
}
.featured .box-container .box .image {
  position: relative;
  text-align: center;
  padding-top: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.featured .box-container .box .image img {
  height: 10rem;
  width: 14rem;
  margin: 1rem;
}
.featured .box-container .box .image img:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}
.featured .box-container .box .content {
  padding: 2rem;
  text-align: center;
}
.featured .box-container .box .content h5 {
  font-size: 1rem;
  font-weight: 700;
}

.catalog {
  margin-top: 5rem;
}

.title {
  text-align: center;
  font-family: "DynaPuff", cursive;
  position: relative;
  line-height: 3.7;
}
.title::after {
  content: "";
  background: #6f1d1b;
  width: 80px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.review {
  background-color: #fffcf2;
}
.review h1 {
  color: black;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}
.review .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.review .box-container .box {
  flex: 1 1 30rem;
  box-shadow: 0 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  position: relative;
  border-radius: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.review .box-container .box .fa-quote-right {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-size: 2.5rem;
  color: #eee;
}
.review .box-container .box .stars i {
  color: #dda15e;
  font-size: 0.6rem;
}
.review .box-container .box p {
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.7;
  padding-top: 2rem;
}
.review .box-container .box h4 {
  font-weight: 700;
  font-size: 1rem;
}
.review .box-container .user img {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
}
.review .box-container .user h3 {
  font-size: 1.3rem;
}

.footer .box-container {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-around;
  padding: 2rem;
  background: radial-gradient(#d8e2dc, #ccc5b9);
  margin-bottom: 0;
}
.footer .box-container .box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer .box-container .box a {
  display: block;
  color: #14213d;
  font-size: 1rem;
  padding: 1rem 0;
  font-weight: 600;
}
.footer .box-container .box a:hover {
  color: #bc6c25;
  text-decoration: underline;
}
.footer .box-container .box img {
  margin-top: 1rem;
  width: 2rem;
  height: 2rem;
}
.footer .box-container .box abbr {
  text-transform: capitalize;
}
.footer .credit {
  background-color: #403d39;
  text-align: center;
  padding: 1.5rem;
  margin-top: 0rem;
  padding-top: 2.5rem;
  font-size: 1rem;
  color: #ffcb77;
  font-weight: 700;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.footer .credit span a {
  color: #20c997;
  text-decoration: none;
  cursor: pointer;
}
.footer .credit span a:hover {
  color: #cf2e2e;
}

@media (max-width: 991px) {
  html {
    font-size: 80%;
  }
  header {
    padding: 2rem;
    font-size: 2rem;
  }
  header .logo {
    font-size: 2rem;
  }
  section {
    padding: 2rem;
  }
  .hero {
    background-position: right;
    background-size: cover;
  }
  .hero .content span {
    font-weight: 600;
  }
  .hero .content h3 {
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  header .fa-bars {
    display: block;
    color: #01161e;
    font-size: 1.5rem;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: radial-gradient(#ccd5ae, #d6ccc2);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  header .navbar a {
    margin: 1rem;
    padding: 1rem;
    background: inherit;
    display: block;
  }
  header #toggler:checked ~ .navbar {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero .content h3 {
    font-size: 5rem;
  }
  .hero .content span {
    font-size: 2.5rem;
  }
  .icons-container .icons h3 {
    padding-bottom: 0.5rem;
    font-size: 2.7rem;
  }
  .icons-container .icons span {
    opacity: 0.6;
    font-size: 2rem;
  }
  .icons-container .icons img {
    height: 7rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .heading {
    font-size: 3rem;
  }
}/*# sourceMappingURL=style.css.map */