@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow: #d69b1b;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

.heading {
  margin-top: 5rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.btn {
  display: inline-block;
  border-radius: 5px;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  transition: 0.2s linear;
}
.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.underline {
  margin: 0 auto 40px;
  width: 60px;
  height: 4px;
  background-color: #d69b1b;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  background: #fff;
}
.header .flex {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 5rem;
  margin-right: 2rem;
}
.header .flex .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.header .flex .logo span {
  color: #d69b1b;
}
.header .flex .logo .orange-text {
  color: #d69b1b;
}
.header .flex .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}
.header .flex .navbar a:hover {
  color: var(--yellow);
}
.header .flex .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
}
.header .flex .icons div:hover {
  background: var(--black);
  color: var(--white);
}
.header .flex #menu-btn {
  display: none;
}

.hero-img {
  background-image: url("../img/cutting-granite-stones-g21e744780_1920.jpg");
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -5;
}

.hero-text {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
}

.orange-text {
  color: #d69b1b;
}

.black-text {
  color: #cecece;
}

.header .flex .logo {
  text-transform: uppercase;
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .image {
  flex: 1 1 30rem;
  margin-left: 10rem;
  filter: drop-shadow(5px 5px 4px #333);
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
}
.about .box-container .box {
  text-align: center;
  padding: 3rem 2rem;
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .box-container .box h3:hover {
  color: #d69b1b;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

.services-container {
  background: var(--light-bg);
  padding: 35px;
}
.services-container .services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  padding: 5rem;
}
.services-container .services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 10px;
}
.services-container .services .box-container .box:hover img {
  transform: translateY(-1rem);
}
.services-container .services .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
  transition: 0.2s linear;
}
.services-container .services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.services-container .services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.underline-services {
  margin: 0 auto 40px;
  width: 100px;
  height: 2px;
  background-color: #d69b1b;
}

.container-projects {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.container-projects img {
  width: 300px;
  height: 200px;
  padding: 1rem;
}

.contact {
  background-color: #ce9326;
}
.contact .underline-contact {
  margin: 0 auto 40px;
  width: 100px;
  height: 4px;
  background-color: #eeeeee;
}
.contact .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row img {
  height: 70%;
  width: 70%;
}
.contact .row .image {
  flex: 1 1 15rem;
  margin-left: 10rem;
  filter: drop-shadow(5px 5px 4px #333);
}
.contact .row .content {
  flex: 1 1 41rem;
}
.contact .row .content h4 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.contact .row .content p {
  font-size: 1.5rem;
  padding: 1rem 0;
}
.contact .row .content span {
  font-weight: bold;
}

.footer {
  text-align: center;
  padding: 1.5rem;
}
.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 1rem;
  padding-top: 1rem;
}
.footer .credit span {
  color: var(--yellow);
}

@media (max-width: 991px) {
  .hero-text {
    text-align: center;
  }
  .hero-text p {
    margin: 5rem;
  }
  .hero-img {
    background-image: url("../img/cutting-granite-stones-g21e744780_1920.jpg");
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
  }
  .about .row .image img {
    display: none;
  }
  .about,
  .contact,
  .services,
  .projects {
    padding: 3rem 2rem;
  }
  html {
    font-size: 55%;
  }
  .header .flex #menu-btn {
    display: inline-block;
  }
  .header .flex .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }
  .header .flex .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .flex .navbar a {
    display: block;
    margin: 2rem;
  }
}
@media (max-width: 768px) {
  .header .flex .search-form {
    width: 90%;
  }
  .header .flex .login-form {
    width: 90%;
  }
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
  .hero-img {
    background-image: url("../img/cutting-granite-stones-g21e744780_1920.jpg");
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
  }
}/*# sourceMappingURL=style.css.map */