@font-face {
  font-family: "Gotham";
  src: url(/fonts/59aa40045d8df0b87a73.otf);
}
@font-face {
  font-family: "Gotham-Bold";
  src: url(/fonts/c9e42599a779a72eaadc.otf);
}

:root {
  --red: #ff2232;
  --grey: #414141;
  --lightgrey: #6d6370;
}

body,
a {
  font-family: "Gotham", sans-serif;
  color: #fff;
}

a {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

header::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  filter: opacity(0.5) blur(5px);
  position: absolute;
  z-index: -1;
}

header ul {
  display: flex;
  padding: 1rem 0;
}

header ul li {
  margin: 0 1rem;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo h1 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 6px;
  margin-right: 1rem;
}
header .logo img {
  width: 30px;
  margin-left: 10px;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  margin-top: -60px;
}

#home .heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#home h1 {
  position: absolute;
}

#home h1,
.footer h1 {
  font-size: 2rem;
  letter-spacing: 8px;
  font-weight: bold;
}

.home-subheading {
  background-color: var(--red);
  border-radius: 2rem;
  padding: 10px 1rem;
  font-size: 1rem;
  width: fit-content;
  margin-top: 10rem;
  position: absolute;
}

.slideshow-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.footer img {
  width: 400px;
}

.footer {
  color: #fff;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  display: flex;
  right: 0;
}

.footer p {
  font-weight: lighter;
  letter-spacing: 6px;
}

#about {
  background-color: var(--grey);
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  align-items: center;
}
#about .about-us {
  font-size: 2rem;
  margin-top: 8rem;
  border-bottom: 2px solid var(--red);
  letter-spacing: 8px;
  width: fit-content;
  margin-bottom: 2rem;
}
#about .row,
#about .row-reverse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70%;
}

#about .row-reverse {
  flex-direction: row-reverse;
}

#about .row img,
#about .row-reverse img {
  width: 50%;
  object-fit: cover;
  height: 100%;
}

#about .text-content {
  width: 50%;
  padding: 2rem;
  color: #fff;
}

#about .text-content .heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#about .text-content .heading p {
  font-size: 1rem;
  font-weight: lighter;
  letter-spacing: 6px;
  line-height: 1.5;
}

footer .logo {
  display: flex;
  align-items: center;
}

footer img {
  width: 200px;
}
footer .logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 6px;
  font-family: "Gotham-Bold", sans-serif;
  margin-right: 1rem;
}
footer .quick-links h1,
footer .location h1,
footer .contact h1 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-right: 1rem;
}
footer .quick-links ul {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
footer .quick-links ul li {
  margin: 3px 0;
}

footer {
  height: 180px;
  border-top: #fff 1px solid;
  color: #fff;
  justify-content: space-between;
  background-color: var(--grey);
  padding: 1rem;
  display: flex;
}

footer p {
  font-weight: lighter;
  font-size: 0.8rem;
  letter-spacing: 6px;
}

footer .contact {
  display: flex;
  flex-direction: column;
}
footer .contact ul li {
  margin-top: 4px;
}

footer .contact ul {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
footer .location div {
  margin-top: 10px;
}
footer .location p {
  letter-spacing: 1px;
  font-size: 1rem;
  margin-top: 4px;
}

#services {
  background-color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#services h1,
#portfolio h1 {
  font-size: 2rem;
  border-bottom: 2px solid var(--red);
  font-weight: bold;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  margin-top: 5rem;
}
#services .row {
  display: flex;
  align-items: center;
  height: 70%;
}
#services .row p {
  font-size: 3rem;
  font-family: "Gotham", sans-serif;
  letter-spacing: 6px;
  margin-bottom: 1rem;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
#services .row img {
  width: 50%;
  object-fit: cover;
}

#portfolio {
  background-color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#portfolio div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}

.slider {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  min-height: fit-content;
  object-fit: fill;
}

.slide img {
  width: 100%;
  display: block;
}

.dots {
  text-align: center;
  padding: 10px 0;
  position: absolute;
  left: 50%;
  right: 0%;
  bottom: 50px;
  width: fit-content;
}

.dot {
  display: inline-block;
  width: 10px;
  border: 1px solid #ffffff76;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: gray;
  cursor: pointer;
}

.dot.active {
  background-color: var(--red);
}

@media (max-width: 600px) {
  header {
    background-color: var(--grey);
  }

  header ul {
    flex-direction: column;
    align-items: center;
  }

  header ul li {
    margin: 0.5rem 20px;
  }

  header .logo img {
    width: 80px;
    margin-left: 50px;
  }

  #home {
    margin-top: 60px;
    height: 20vh;
  }
  #home h1 {
    font-size: 0.5rem;
    letter-spacing: 4px;
  }

  .home-subheading {
    margin-top: 5rem;
    padding: 5px 1rem;
    font-size: 0.5rem;
  }
  #home .heading .footer img {
    width: 0px;
  }

  .slideshow-container {
    height: 50vh;
  }

  .footer img {
    width: 100px;
    bottom: -50px;
    position: absolute;
    right: 10px;
  }

  #about .about-us {
    font-size: 0.9rem;
  }

  .heading h1 {
    font-size: 1rem;
  }
  .heading p {
    font-size: 0.4rem;
  }
  #about .row,
  #about .row-reverse,
  #services .row {
    flex-direction: column;
    height: auto;
  }

  #about .row img,
  #about .row-reverse img,
  #services .row img {
    width: 100%;
    height: auto;
  }

  #about .text-content,
  #services .row p {
    width: 100%;
    padding: 1rem;
  }

  #services h1 {
    font-size: 1rem;
  }
  #services .row p {
    font-size: 1rem;
  }
  footer {
    flex-direction: column;
    height: auto;
  }

  footer .logo h1 {
    font-size: 1.2rem;
  }

  footer img {
    width: 150px;
  }
  .dots {
    text-align: center;
    padding: 1px 0;
    position: absolute;
    left: 40%;
    right: 0%;
    bottom: 20px;
    width: fit-content;
  }
  #portfolio h1{
    font-size: 1rem;
  }
}


/*# sourceMappingURL=main.a4dd48fe97fee1e2c79a.css.map*/