@import url("https://fonts.googleapis.com/css2?family=Combo&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

#scrollbtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  border: 2px solid orange;
  color: orange;
  padding: 10px;
  font-size: 30px;
  font-weight: bold;
  display: none;
  cursor: pointer;
  z-index: 40;
  background-color: transparent;
}
@media screen and (min-width: 1400px) {
  .widthContainer {
    width: 1200px;
    margin: auto;
  }
}
@media (max-width: 430px) {
  /* Scrol to top button */
  #scrollbtn {
    visibility: hidden;
  }
}

/* Javascript animation */
.hidden {
  opacity: 0;
  transition: 1s;
}
.image_hide2 {
  filter: blur(5px);
  transform: translateX(-22%);
  transition: 1s;
}
/* animation */
.delay {
  transform: scale(0.9);
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.frame {
  height: 90px;
}

/* -------------------------------- */
/*       START OF MAIN TEXT         */
/* -------------------------------- */
.main_text {
}
.main_text_frame {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  margin: 2% 0;
}
.main_text_content {
  color: #fff;
  background-image: linear-gradient(45deg, #00000088, #00000088),
    url("../pic/truck24.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 90%;
  height: 50vh;
  display: flex;
  align-items: center;
}
.main_text_content p {
  margin: 0 0 12% 0;
  font-weight: 400;
  font-size: 25px;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.main_text_content h2 {
  font-size: 60px;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid silver;
}

@media screen and (min-width: 1400px) {
  .main_text_content {
    width: 100%;
    height: 55vh;
  }
}
@media (max-width: 650px) {
  .main_text_content {
    width: 100%;
    height: 40vh;
  }
}
@media (max-width: 430px) {
  /* Main text */
  .main_text_content h2 {
    font-size: 40px;
    width: 200px;
  }
}

/*         END OF MAIN TEXT         */
/* -------------------------------- */

/* ---------------------------------- */
/*          START OF GALLERY          */
/* ---------------------------------- */
.gallery {
  padding: 1% 3% 2%;
}
.gallery_frame {
}
.gallery_content {
  display: flex;
}

/* Div for the images */
.img {
  margin: 5px 5px 5px 0;
  cursor: pointer;
}
.img img {
  height: 100%;
  width: 100%;
}

/* Middle aligned photo */
.middle {
  flex-wrap: wrap;
}
.m_first {
  height: 400px;
}
.m_sec {
  display: flex;
}
.m_sec img {
  width: 49.8%;
  margin-right: 5px;
}
.m_thr {
  height: 747px;
  display: flex;
}
.in_m_thr {
  height: 368px;
}
#bottom_space {
  margin-bottom: 5px;
}

/* Side aligned photos */
.sides {
}
.s_first img {
  height: auto;
}
.s_sec img {
  height: auto;
}

@media (max-width: 1000px) {
  /* Gallery */
  .gallery_content {
    flex-direction: column;
  }
  .m_thr {
    flex-direction: column;
    height: auto;
    margin: 0;
  }
}

/*          END OF GALLERY            */
/* ---------------------------------- */

/* ---------------------------------- */
/*       START OF CONTACT FORM        */
/* ---------------------------------- */
.contact_form {
  padding: 4% 0;
  background-color: #e8e8e8;
}
.contact_frame {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
.contact_heading {
  border-bottom: 1px solid black;
  width: 180px;
  text-align: center;
  margin: 0 auto 3%;
  padding: 0 0 1%;
}
.contact_heading h1 {
  font-size: 30px;
}
form {
  box-shadow: 0 0 5px grey;
  width: 70%;
  padding: 1%;
}
.form_divs {
  display: flex;
}
.inputs {
  display: inline-block;
  align-self: center;
  width: 48%;
  margin-bottom: 2%;
}
.inputs input {
  height: 40px;
  width: 100%;
  padding: 0 10px;
  border: 0;
  outline: 0;
  font-size: 16px;
}
.inputs:first-child {
  margin-right: 15px;
}
.message {
  width: 78.5%;
  margin-right: 15px;
}
.form_input {
  display: inline-flex;
}
.form_input textarea {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 0;
  outline: 0;
  font-size: 16px;
}
.form_input button {
  border: 0;
  outline: 0;
  font-size: 18px;
  padding: 10px 3rem;
  cursor: pointer;
  background-color: #009dff;
}

@media (max-width: 650px) {
  /* Contact us */
  form {
    box-shadow: 0 0 5px grey;
    width: 80%;
    padding: 1%;
  }
  .form_divs {
    flex-direction: column;
  }
  .inputs {
    width: 100%;
  }
  .inputs:first-child {
    margin-right: 0;
  }
  .message {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .form_input button {
    width: 100%;
  }
}

/*        END OF CONTACT FORM         */
/* ---------------------------------- */
