@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;
  }
}
.swiper {
  width: 100%;
  height: 300px;
  margin-bottom: 50px;
}
.swiper-slide img {
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.swiper-slide p {
  position: absolute;
  bottom: 10px;
  background-color: rgb(255, 255, 255);
}

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