@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

.contain {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  background-color: #181b18;
  width: 100%;
  transition: opacity 500ms ease;
  z-index: 2;
}

.nav__wrap {
  height: 195px;
  transition: margin 300ms;
}

.nav--hide {
  opacity: 0.9;
}

.nav--hide .nav__wrap {
  margin-top: -125px;
}

.nav_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  letter-spacing: 4px;
  transition: margin 300ms;
}

.nav_logo {
  display: flex;
  align-items: center;
  color: #a7ecff;
}

.nav_img {
  height: 6vh;
  filter: brightness(100);
}

.nav_name h1 {
  font-weight: 400;
}

.nav_middle {
  width: 95%;
  content: "";
  border: 1px solid #a7ecff;
}

.nav_bottom {
  width: 100%;
}

.nav_links {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav_link {
  padding: 24px 32px;
  position: relative;
}

.nav_link a {
  text-decoration: none;
  color: #ffffff;
}

.active_link a {
  color: #a7ecff;
}

.active_link::before {
  content: url(../assets/star.svg);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 2px 0 2px;
  background-color: #181b18;
  background-position: 100px;
}

.nav_link::after {
  content: "";
  width: 0px;
  background-color: #a7ecff;
  position: absolute;
  height: 2px;
  bottom: 20px;
  right: 0;
  left: 20%;
  transition: all 300ms ease-in;
}

.nav_link:hover::after {
  width: 60%;
}

.nav_small {
  display: none;
}

.nav_small-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #a7ecff;
}

.banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  letter-spacing: 4px;
}

.banner_img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.banner_title {
  position: absolute;
  bottom: 0;
  margin: 12px;
  font-size: 60px;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 4px;
  background-color: #181b18;
  color: #ffffff;
}

.footer_return:hover {
  filter: drop-shadow(0px 0px 10px #a7ecff);
}

.footer_return {
  text-decoration: none;
  font-size: 32px;
  color: #a7ecff;
  margin: 12px;
}

.footer_return--img {
  height: 50px;
  width: 50px;
  filter: contrast(0);
}

.footer_contact {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer_contact--small {
  font-size: 18px;
  font-weight: 300;
}

.footer_socials {
  display: flex;
  justify-content: space-around;
  width: 30%;
  margin-top: 12px;
}

.footer_social:hover {
  filter: drop-shadow(0px 0px 10px #a7ecff);
}

.footer_social--img {
  height: 50px;
  width: 50px;
}

.footer_tag {
  font-size: 18px;
  font-weight: 300;
  margin: 12px;
}

.about {
  font-size: 18px;
  margin: 24px 0;
}

.about_para {
  margin-bottom: 12px;
}

.about_slider {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 600px;
  user-select: none;
}

.slider {
  transition: all 1000ms ease;
  height: 300px;
  max-width: 600px;
  width: 100%;
  display: flex;
}

.slider_item {
  height: 100%;
  min-width: 100%;
}

.slider_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider_next, .slider_previous {
  width: 50px;
  font-size: 32px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  color: #a7ecff;
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.slider_next:hover, .slider_previous:hover {
  background-color: rgba(167, 236, 255, 0.6);
  border-radius: 100px;
}

.slider_previous {
  left: 10px;
}

.slider_next {
  right: 10px;
}

.service_break {
  width: 100%;
  position: relative;
  text-align: center;
}

.service_break_img {
  position: absolute;
  padding: 2px 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
}

.service_break_line {
  content: "";
  width: 95%;
  border: 1px solid #a7ecff;
  margin: 10px auto;
}

.services {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.service {
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 100px 1000px #000000;
}

.service:hover .service_front {
  filter: blur(100px) contrast(0.5);
}

.service:hover .service_back {
  opacity: 1;
}

.service_front {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  color: #a7ecff;
  letter-spacing: 4px;
  transition: filter 200ms;
}

.service_front_img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.service_front_title {
  position: absolute;
  bottom: 0;
  margin: 12px;
  font-size: 60px;
}

.service_back {
  opacity: 0;
  position: absolute;
  margin: 5%;
  top: 0;
  color: #a7ecff;
  font-size: 24px;
  font-weight: 300;
}

.gallery {
  padding: 12px;
  margin: 24px;
}

.gallery_images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.gallery_images > li {
  flex: 1 1 auto;
  /* or flex: auto; */
  height: 300px;
  cursor: pointer;
  position: relative;
}

.gallery_images::after {
  content: "";
  flex-grow: 999;
}

.gallery_images li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 5px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(24, 27, 24, 0.1);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 200ms ease;
  color: #a7ecff;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 32px;
}

.gallery_images li:hover .overlay {
  transform: scale(1);
}

.contact {
  display: flex;
  background-color: #ffffff;
}

.contact_half {
  width: 50%;
  margin: 10% 12px;
}

.contact_heading {
  margin-bottom: 24px;
  font-size: 40px;
  color: #a7ecff;
}

.contact_text {
  font-size: 24px;
}

.contact_number {
  font-size: 24px;
  margin-top: 24px;
}

.contact_form {
  display: flex;
  flex-direction: column;
}

.contact_form input, .contact_form textarea {
  padding: 4px;
  margin-block: 4px;
  border-radius: 5px;
  border: solid 2px #a7ecff;
  font-size: 24px;
  resize: none;
  background-color: transparent;
}

.contact_name {
  width: 50%;
}

.contact_message {
  height: 150px;
}

.contact_button {
  width: 50%;
  margin: 0 auto;
  border-radius: 100px;
  background-color: transparent;
  box-shadow: 5px 5px 10px #a7ecff;
}

.contact_button:active {
  background: #a7ecff;
}

.quote {
  display: flex;
  flex-direction: column;
  width: 60%;
  max-width: 700px;
  margin: 24px auto;
}

.form_required {
  opacity: 0.7;
  font-size: 14px;
}

.quote input, .quote textarea, .quote select {
  padding: 4px;
  margin-block: 4px;
  border-radius: 5px;
  border: solid 2px #a7ecff;
  font-size: 24px;
  resize: none;
  background-color: transparent;
}

.quote_title {
  margin: 0 auto;
  color: #a7ecff;
  font-size: 60px;
  margin-bottom: 24px;
}

.quote_description {
  height: 150px;
}

.quote_button {
  width: 50%;
  margin: 0 auto;
  border-radius: 100px;
  background-color: transparent;
  box-shadow: 5px 5px 10px #a7ecff;
}

.quote_button:active {
  background: #a7ecff;
}

@media only screen and (max-width: 768px) {
  .nav__wrap {
    height: 80px;
  }
  .nav--hide .nav__wrap {
    margin-top: -82px;
  }
  .footer_socials {
    width: 50%;
  }
  .banner {
    height: 400px;
  }
  .about_para {
    font-size: 16px;
  }
  .about_slider {
    height: 200px;
  }
  .service {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 0 4px 0 #181b18;
  }
  .service_front {
    height: 300px;
  }
  .service_front_title {
    font-size: 42px;
  }
  .service_back {
    position: relative;
    opacity: 1;
    padding: 12px;
    margin: 0;
    font-size: 18px;
    color: #181b18;
  }
  .contact {
    flex-direction: column;
    align-items: center;
  }
  .contact_half {
    width: 100%;
  }
  .nav {
    padding: 12px 0;
  }
  .nav_name {
    font-size: 8px;
  }
  .nav_logo {
    height: 4vh;
  }
  .nav_middle {
    display: none;
  }
  .nav_links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    background-color: #181b18;
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 50%;
  }
  .menu-active .nav_links {
    display: block;
  }
  .menu-active {
    height: 100vh;
    overflow: hidden;
  }
  .nav_small {
    display: block;
    z-index: 100;
  }
  .quote {
    min-width: none;
    width: 100%;
  }
  .quote_title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .service_front_title {
    font-size: 36px;
  }
}

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