@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bitter&display=swap");

* {
  padding: 0px;
  margin: 0px;
  font-family: "Questrial", sans-serif;
}
body {
  overflow-x: hidden;
}
.nav-bar-container {
  width: 100vw;
  height: 60px;
  z-index: 3;
  position: fixed;
  background-color: #0d1216;
  display: flex;
  align-items: center;
}

.links-main-container {
  display: flex;
  width: 600px;
  margin-left: 60%;
  padding-left: 20px;
  align-items: center;
  padding-right: 20px;
}

.margin-extra-right {
  margin-right: 20px;
}

.links-container {
  display: flex;
  flex: 1;
  justify-content: space-between;
  list-style-type: none;
}
.links-container li {
  color: rgb(212, 209, 209);
  font-weight: bold;
  font-size: 20px;
}

.links-container li a {
  color: rgb(212, 209, 209);
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

/* DROP DOWN */
.our-service-container {
  position: relative;
}
.our-service-container:hover ul {
  display: flex;
}
.our-service-container ul {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 200px;
  height: 300px;
  margin-top: -20px;
  padding-top: 30px;
  top: 20px;
  list-style-type: none;
  background-color: #0d1216;
  border-radius: 2px;
}

.our-service-container ul li {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  padding-left: 4px;
  font-size: 15px;
}
.our-service-container ul li:hover {
  background-color: rgb(58, 57, 57);
}

.main-container {
  display: flex;
  width: 100vw;
  height: 90vh;
  background-color: #0d1216;
}

.logo-container {
  width: 40%;
  height: 100%;
}

.company-logo-container {
  width: 100%;
  height: 70%;
  margin: 0px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.company-logo {
  margin: auto;
  animation-name: bounce;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  text-align: center;
}
.company-logo-container p {
  color: rgb(231, 219, 219);
  font-size: 200%;
  width: 100%;
  font-weight: bold;
  font-family: "Bitter", serif;
  text-align: center;
  margin: auto;
}

.carousel-container {
  width: 60%;
  height: 100%;
  background-color: #0d1216;
}
.carousel-item {
  height: 90vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.bottom-bar-container {
  width: 100vw;
  height: 50px;
}
.about-us-container {
  width: 100vw;
  height: 600px;
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  justify-content: space-evenly;
}

.about-us-container h4 {
  font-size: 30px;
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
}

.about-us-content {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 600px;
  overflow-y: hidden !important;
}
.about-us-img-container {
  width: 400px;
  height: 500px;
}
.about-us-img-container img {
  width: 100%;
  height: 100%;
}
.about-us-text-container {
  width: 600px;
  margin-top: 10px;
  height: 560px;
  overflow-y: auto;
}

.about-us-text-container p {
  color: gray;
  font-size: 17px !important;
  line-height: 35px !important;
  margin-bottom: 20px;
  overflow-y: hidden !important;
}

.our-services-container {
  width: 100vw;
  height: 100px;
  display: flex;
  justify-content: center;
  padding-left: 140px;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.our-services-container h3 {
  font-size: 35px;
  text-decoration: underline;
}

.contact-us-container {
  padding-top: 20px;
  padding-left: 50px;
  width: 100vw;
}
.contact-us-container h4 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.main-contact-info-container {
  display: flex;
  justify-content: space-evenly;
}

.single-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  height: 400px;
  position: relative;
}
.single-info-data {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 70%;
}
.single-info-data p {
  font-size: 20px;
  line-height: 30px;
  word-spacing: 2px;
  margin-top: 10px;
}

.divider {
  width: 6px;
  border-radius: 3px;
  height: 80%;
  margin: auto 10px;
  background-color: #0d1216;
}
.hide {
  background-color: white;
}
.icon-container {
  display: flex;
  justify-content: space-between;
  width: 100px;
  height: 50px;
}

.icon-container img {
  width: 50px;
  height: 50px;
}
.link-transform {
  color: black !important;
  text-decoration: none;
}
.icon-container h2 {
  margin-left: 20px;
  margin-top: 10px;
}
.button-container {
  background-color: #0d1216;
  width: 150px;
  height: 40px;
  border-radius: 5px;
  color: white;
  outline: none;
  border: none;
}

.footer {
  text-align: center;
  margin-top: 40px;
}
/* MOBILE DEVICE STYLING   */

@media only screen and (max-width: 1100px) {
  body,
  html {
    overflow-x: hidden !important;
  }
  .nav-bar-container {
    width: 100vw;
    height: 60px;
    position: fixed;
    background-color: #0d1216;
    display: flex;
    align-items: center !important;
    padding-top: 10px;
    z-index: 6;
  }
  .links-main-container {
    margin-left: 0px;
    flex: 1;
    justify-content: space-between;
    padding: 0px;
    padding-left: 5px;
  }
  .links-container li {
    font-size: 12px;
    font-weight: bold;
    padding-left: 10px;
  }
  .mobile-link .our-service-container ul {
    height: 220px;
  }
  .main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .logo-container {
    width: 100%;
    height: 40%;
  }

  .company-logo-container {
    width: 100%;
    height: 100%;
    margin: 0px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .company-logo {
    margin: auto;
    margin-bottom: 40%;
    animation-name: mobileBounce;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    text-align: center;
    margin-left: 10%;
    z-index: 5;
  }
  .company-logo-container p {
    color: rgb(212, 209, 209);
    font-size: 35px;
    width: 100%;
    font-weight: bold;
    font-family: "Bitter", serif;
    text-align: center;
    margin: auto;
    margin-top: 30%;
    flex: 1;
    padding-right: 12px;

    height: 50%;
    z-index: 3;
    line-height: 50px;
  }

  .carousel-container {
    width: 100%;
    height: 60%;
    background-color: #0d1216;
  }
  .carousel-item {
    height: 60vh;
    width: 100%;
    min-height: 350px;
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .bottom-bar-container {
    background-image: none;
    height: 0px;
  }

  .about-us-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    height: 1000px;
    padding-bottom: 0px;
    padding-right: 0px;
  }

  .about-us-content {
    flex-direction: column;
    min-height: 900px;
    overflow-x: hidden;
  }
  .about-us-img-container {
    width: 100vw;
    min-height: 400px;
    margin-top: 20px;
  }
  .about-us-img-container img {
    width: 100vw;
    height: 100%;
    margin-top: 0px;
  }

  .about-us-container {
    width: 100vw;
    min-height: 900px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .about-us-text-container {
    min-height: 650px;
    flex: 1;
    overflow-y: hidden !important;
  }

  .mobile-view-container {
    min-height: 450px;
    max-height: 450px !important;
    overflow-y: hidden !important;
  }
  .water-jet-font {
    font-size: 15px !important;
    line-height: 30px !important;
  }
  .disable-scroll {
    overflow-y: hidden !important;
  }
  .about-us-text-container h4 {
    font-size: 20px;
    margin-left: 10px;
    margin-bottom: 20px;
    font-weight: bolder;
  }

  .about-us-text-container p {
    margin-left: 5px;
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 14px !important;
    margin-bottom: 0px;
  }

  .decrease-margin {
    margin-bottom: 10px !important;
  }
  .remove-content-mobile {
    display: none;
  }
  .our-services-container {
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: center;
    padding-left: 10px;
    align-items: center;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .our-service-container ul li a {
    font-size: 10px;
  }
  .contact-us-container {
    padding-top: 0px !important;
    padding-left: 10px;
    width: 100vw;
  }
  .main-contact-info-container {
    display: flex;
    flex-direction: column;
  }

  .single-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    height: 200px;
    position: relative;
    margin-bottom: 20px !important;
  }
  .single-info-data {
    position: absolute;
    top: 20%;
    left: 0%;
    width: 90%;
  }
  .make-white {
    color: black;
    text-decoration: none;
  }
  .divider {
    background-color: white;
  }
}

/* ANIMATIONS */
@keyframes bounce {
  from {
    transform: translateY(90%);
  }
  to {
    transform: translateY(70%);
  }
}

@keyframes mobileBounce {
  from {
    transform: translateY(60%);
  }
  to {
    transform: translateY(80%);
  }
}
