@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
  font-family: "Poppins";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  height: 50vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.575), rgba(0, 0, 0, 0.575)), url("../images/stairs.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}
@media (width >= 768px) {
  header {
    height: 400px;
  }
}

p {
  font-size: 18px;
}

.container {
  max-width: 1024px;
  margin: auto;
  padding: 0 1rem;
}

.underline--svg {
  position: relative;
}
.underline--svg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, 60%);
}

.center {
  text-align: center;
}
@media (width >= 768px) {
  .center {
    text-align: left;
  }
}

.grey {
  background-color: rgb(233, 233, 233);
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.grid--items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-content: space-between;
  place-items: center;
}

.highlight {
  color: #ff6600;
}

.stats--wrapper {
  padding: 10px;
  text-align: center;
  padding: 2rem 0;
}
.stats--wrapper span {
  color: #07020d;
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 0;
  text-align: center;
}
.stats--wrapper p {
  color: #07020d;
  font-size: 1rem;
  margin: 0;
}

section {
  padding: 3rem 0;
}

.btn {
  background-color: #ff6600;
  color: white;
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: 150ms ease-in-out;
  border: 2px solid transparent;
}
.btn:hover {
  background-color: white;
  color: #ff6600;
}
.btn.outline {
  background-color: transparent;
  border: 2px solid #ff6600;
}
.btn.outline:hover {
  background-color: #ff6600;
  color: white;
  transform: scale(1);
  cursor: pointer;
}
.btn.rounded {
  border-radius: 100px;
}

a {
  text-decoration: none;
  transition: 150ms ease;
  color: white;
}
a:hover {
  color: #ff6600;
}
a:visited {
  text-decoration: none;
}

.border {
  position: relative;
}
.border::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0px;
  height: 2px;
  background-color: currentColor;
  left: 0;
  transition: 200ms;
}
.border:hover::after {
  width: 100%;
}

.cta--section {
  background-color: #07020d;
  color: white;
  align-items: center;
}
.cta--section h2 {
  font-size: 50px;
}

details {
  border-bottom: 1px solid rgb(233, 233, 233);
  font-size: 20px;
  padding: 0.5em 0.5em 0;
}

summary {
  font-weight: 500;
  padding: 0.5em;
}
summary:focus {
  border-color: #ff6600;
}

details[open] {
  padding: 0.5em;
  color: #ff6600;
}
details[open] summary {
  border-bottom: 1px solid rgb(233, 233, 233);
  margin-bottom: 0.5em;
}
details[open] p {
  color: rgb(233, 233, 233);
  margin: 0.5rem;
  font-size: 1rem;
}

footer {
  background: #07020d;
  color: white;
  padding: 2rem 0;
}
footer h2 {
  font-family: "Courier New", Courier, monospace;
  font-size: 40px;
  text-align: center;
  font-weight: 400;
  margin: 0;
}
footer h2 span {
  font-family: inherit;
}
footer i {
  padding-right: 10px;
  color: #ff6600;
}
footer .footer--main {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (width >= 768px) {
  footer .footer--main {
    justify-content: space-between;
  }
}
footer .footer--base {
  text-align: center;
}
footer .category h3 {
  color: #ff6600;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .category ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
footer .category ul li {
  margin-bottom: 1rem;
}
footer .icons {
  font-size: 30px;
  margin-bottom: 20px;
}
footer .copyright {
  font-size: 20px;
}

nav {
  background-color: transparent;
  padding: 1rem 0;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  transition: 300ms;
}
nav.opague {
  background-color: #07020d;
  box-shadow: 0 0 10px black;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-size: 30px;
  font-weight: 600;
}
nav h1 {
  color: white;
  margin: 0;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  margin-right: 20px;
}
nav ul a {
  text-decoration: none;
  color: white;
  font-weight: 400;
}
@media (max-width: 768px) {
  nav {
    background-color: #07020d;
  }
  nav .btn.active {
    display: block;
  }
  nav ul {
    padding: 0;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #07020d;
    transition: 200ms;
  }
  nav ul.show {
    display: flex;
    height: 245px;
    padding: 10px;
  }
  nav li {
    margin: 0;
    text-align: center;
  }
  nav a {
    display: block;
    padding: 10px;
  }
}

.menu--icon {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu--icon {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .menu--icon .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 200ms;
  }
  .menu--icon.active .bar:nth-child(2) {
    width: 0;
  }
  .menu--icon.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-14px);
  }
  .menu--icon.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
  }
}
.hero--container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/hero.png");
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero--content {
  width: min(100%, 500px);
}

.hero--wrapper h1 {
  font-size: 48px;
  color: white;
}
.hero--wrapper p {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 30px;
}
.hero--wrapper .credentials {
  background-color: #ff6600;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.hero--wrapper .credentials p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 10px;
  font-weight: 600;
}
.hero--wrapper .credentials p i {
  padding-right: 10px;
}

.bg-text {
  position: absolute;
  z-index: -1;
  font-size: 50px;
  color: #f7f7f7;
}

.grid--items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-content: space-between;
}

.intro--section {
  gap: 0px 50px;
  margin-bottom: 2.5rem;
}
.intro--section h2 {
  font-size: 40px;
  margin: 0;
}

.intro--card {
  padding: 10px;
  border-radius: 1rem;
  transition: all 200ms ease;
  text-align: center;
}
.intro--card p {
  font-size: 1rem;
}

.icon--wrapper {
  background-color: rgba(255, 217, 145, 0.685);
  border-radius: 10px;
  width: max-content;
  margin: auto;
}
.icon--wrapper i {
  color: #ff6600;
  font-size: 40px;
  transform: translate(20px, 20px);
  padding: 10px;
  transition: 200ms;
}

.btn i {
  color: white;
  font-size: inherit;
}

.strip--bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.418), rgba(0, 0, 0, 0.432)), url("../images/crane.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services--content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-content: space-between;
}

.content p {
  font-size: 14px;
}

.services--content img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.services--content p {
  color: rgb(75, 75, 75);
}

.image--container {
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.3568627451), rgba(0, 128, 0, 0.473));
}
.image--container img {
  transform: rotate(-10deg);
  transition: 150ms ease-in-out;
}
.image--container img:hover {
  transform: rotate(0deg) scale(0.9);
}

.reviews {
  background-image: url("../images/bgpattern.svg");
  background-size: 200%;
  color: black;
}
.reviews h2 {
  color: white;
}
.reviews h3 {
  color: #ff6600;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
.reviews p {
  color: #333333;
}

.testimonial--card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
}
.testimonial--card p {
  font-size: 16px;
}

.star--ratings {
  color: #ff6600;
}

.faqs--wrapper {
  border: 1px solid grey;
  border-radius: 1rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}
.faqs--wrapper details p {
  color: black;
  padding-left: 2rem;
}

.faqs--wrapper details:last-child {
  border: 0;
}

.faq {
  border-bottom: 1px solid grey;
  position: relative;
  padding: 10px 1rem;
  width: min(100%, 800px);
  margin-inline: auto;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}
.faq:hover {
  cursor: pointer;
}
.faq.active h3 {
  color: #ff6600;
}
.faq.active .arrow {
  transform: rotate(90deg);
  color: #ff6600;
}
.faq h3 {
  font-weight: 500;
}
.faq p,
.faq h3 {
  margin: 0;
}
.faq .arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: 150ms;
}
.faq p {
  display: none;
  color: rgb(0, 0, 0);
  font-weight: 300;
  padding: 1rem;
}

/*# sourceMappingURL=index.css.map */
