@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

  scrollbar-color: #ff8c00 #000;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

body {
  background: #3b4347;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 4rem);
  color: #ff8c00;
}

section {
  min-height: calc(100vh - 72.6px);
  font-family: 'Roboto', sans-serif;
}

/* scrollbar start */
::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ff8c00;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c0080;
}

/* scrollbar end */

/* nav start */
header .checkbox, .hamburger, .nav-icon, .nav-btn, .nav-bg {
  display: none;
}

.nav {
  font-family: 'Bebas Neue', cursive;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.logo {
  width: 7rem;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  letter-spacing: 2px;
}

.links li {
  list-style: none;
  margin-left: 20px;
}

.link {
  text-decoration: none;
  padding: 4px 20px;
  color: #fff;
}

.link:hover,
.link.active {
  padding-top: 6px;
  background: #ff8c00;
  border-radius: .5rem;
  color: #000;
}

/* nav end */

/* hamburger start */
.nav-btn {
  position: relative;
  background-color: #000;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  position: fixed;
  top: 1vh;
  right: 2vw;
  z-index: 4;
  box-shadow: 0px 0px 20px #000;
  text-align: center;
  cursor: pointer;
}

.nav-bg {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  position: fixed;
  top: 1vh;
  right: 2vw;
  background-image: radial-gradient(#ff8c00, #000);
  z-index: 3;
  transition: transform .8s ease-in-out;
}

.hamburger {
  height: 100vh;
  position: fixed;
  right: -40vw;
  z-index: 3;
  opacity: 0;
  width: 0;
  transition: all 1.2s;
}

.lists {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  list-style: none;
}

.list {
  padding-top: 1.5rem;
}

.hamburger-link:link,
.hamburger-link:visited {
  font-size: 2rem;
  color: #000;
  text-decoration: none;
  font-family: 'Bebas Neue', cursive;
  transition: all .5s;
}

.hamburger-link:hover,
.hamburger-link:active {
  color: #fff;
  cursor: pointer;
}

.checkbox:checked~.nav-bg {
  transform: scale(40);
}

.checkbox:checked~.hamburger {
  opacity: 1;
  width: 100%;
  right: 0;
}

.nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-icon,
.nav-icon::before,
.nav-icon::after {
  width: 1.7rem;
  height: 2px;
  background-color: #ff8c00;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 1s;
}

.nav-icon::before {
  top: -.5rem;
}

.nav-icon::after {
  top: .5rem;
}

.checkbox:checked+.nav-btn .nav-icon {
  background-color: transparent;
}

.checkbox:checked+.nav-btn .nav-icon::before {
  top: 0;
  transform: rotate(135deg);
}

.checkbox:checked+.nav-btn .nav-icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/* hamburger end */

/* home page start */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#heading {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 6px;
  text-transform: uppercase;
  position: relative;
  transform: translateY(-22vh);
  color: #fff;
  font-size: clamp(3rem, 8vw, 10rem);
  text-shadow: 4px 4px 0px #808080;
}

#hills, #road, #grass, #trees, #clouds {
  z-index: 1;
}

#truck {
  z-index: 2;
}

.quote-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.quote-btn {
  min-width: 250px;
  min-height: 60px;
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: #000000d3;
  background: #ff8c00;
  background: linear-gradient(0deg, #ff8c00 0%, #dd7a00 100%);
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 0px 10px #ff8c00;
  transition: all .4s ease-in .1s;
  cursor: pointer;
}

.quote-btn::before {
  position: absolute;
  content: '';
  border-radius: 4rem;
  min-width: calc(250px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #ff8c00;
  box-shadow: 0px 0px 20px #ff8c00;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .4s ease-out .1s;
}

.quote-btn::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 6px solid #ff8c00;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circle 2s infinite;
}

.quote-btn:hover {
  color: #000;
  transform: translateY(-8px);
}

.quote-btn:hover::before {
  opacity: 1;
}

.quote-btn:hover::after {
  display: none;
}

@keyframes circle {
  to {
    width: 250px;
    height: 250px;
    opacity: 0;
  }
}

/* home page end */

/* services page start */
#services {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex-wrap: wrap;
}

.about {
  padding-top: 3rem;
  color: #ff8c00;
}

.servicesContainer {
  padding: 6rem 0;
  display: flex;
  justify-content: space-evenly;
  gap: 6rem;
  flex-wrap: wrap;
}

.servicesCard {
  position: relative;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicesCard::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  transform: skewX(2deg) skewY(2deg);
  background: linear-gradient(315deg, #ff8c00, #3b4347, #ff8c00);
}

.servicesCard span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3b4347;
  color: #ff8c00;
  padding: 1rem;
  gap: 2rem;
  z-index: 1;
}

.servicesCard span h2 {
  padding-top: 1rem;
  font-size: 1.9rem;
}

.servicesCard span p {
  padding: 4rem 1rem;
  font-weight: 500;
  font-size: larger;
}

/* services page end */

/* contact page start */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 6rem 0;
}

h1 {
  order: -1;
  flex: 1 0 100%;
  text-align: center;
}

.container {
  position: relative;
  min-width: 69rem;
  min-height: 35rem;
  display: flex;
  padding-top: 1.5rem;
}

.contactInfo {
  position: absolute;
  top: 80px;
  width: 320px;
  height: calc(100% - 150px);
  background: #292929;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, .15);
  z-index: 1;
}

.contactInfo h2 {
  color: #ffa500;
  font-size: 1.8rem;
}

.contactInfo .info {
  position: relative;
  margin-top: 4rem;
}

.contactInfo .info li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.contactInfo .info a {
  color: #ffa500;
  margin-left: 10px;
  text-decoration: none;
  font-size: 1.2rem;
}

.contactInfo .info a:hover {
  color: #d47500;
}

.contactInfo .info li span:nth-child(1) {
  width: 35px;
  min-width: 30px;
}

.contactInfo .info li span:nth-child(1) img {
  width: 100%;
  filter: invert(1);
}

.contactContainer {
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: #f8f8ff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, .25);
}

.contactContainer h2 {
  color: #808080;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.contactContainer .formContainer form {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;

}

.contactContainer form .inputContainer {
  position: relative;
  margin-bottom: 35px;
}

.contactContainer form .inputContainer.sm {
  width: 45%;
}

.contactContainer form .inputContainer.lg {
  width: 100%;
}

.contactContainer form input[type=text], .contactContainer form input[type=email], .contactContainer form input[type=tel], .contactContainer form textarea {
  font-size: 17px;
}

.contactContainer form .inputContainer input, .contactContainer form .inputContainer textarea {
  width: 100%;
  resize: none;
  padding: 4px 0;
  color: #000;
  border: none;
  outline: none;
  background: #f8f8ff;
  border-bottom: 1.9px solid #808080;
}

.contactContainer form .inputContainer input:focus, .contactContainer form .inputContainer textarea:focus {
  border-bottom: 2px solid #d47500;
}

.contactContainer form .inputContainer textarea {
  height: 140px;
}

.contactContainer form .inputContainer label {
  position: absolute;
  left: 0;
  pointer-events: none;
  font-size: 20px;
  transition: .3s;
  color: #808080;
}

.contactContainer form .inputContainer input:not(:placeholder-shown)~label,
.contactContainer form .inputContainer input:focus~label,
.contactContainer form .inputContainer textarea:not(:placeholder-shown)~label,
.contactContainer form .inputContainer textarea:focus~label {
  transform: translateY(-22px);
  font-size: 1rem;
  letter-spacing: .5px;
  color: #d47500;
  font-weight: bold;
}

.thank-you-msg {
  color: #b22222;
  font-weight: 500;
  font-size: larger;
}

.hide {
  display: none;
}

/* contact page end */

/* quote page start */
#quote {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 6rem 0;
}

.quoteBox {
  display: flex;
  justify-content: center;
  padding-top: 4rem;
}

.quoteContainer {
  padding: 70px 50px;
  width: 60%;
  background: #f8f8ff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, .25);
}

.quoteContainer h2 {
  color: #808080;
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding: 1rem 0;
}

.quoteContainer .formContainer form {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;

}

.quoteContainer form .inputContainer {
  position: relative;
  margin-bottom: 35px;
}

.quoteContainer form .inputContainer.sm {
  width: 45%;
}

.quoteContainer form .inputContainer.lg {
  width: 100%;
}

.quoteContainer form input[type=text], .quoteContainer form input[type=email], .quoteContainer form input[type=tel], .quoteContainer form textarea, .quoteContainer form select {
  font-size: 17px;
}

.quoteContainer form .inputContainer input, .quoteContainer form .inputContainer textarea, .quoteContainer form .inputContainer select {
  width: 100%;
  resize: none;
  padding: 4px 0;
  color: #000;
  border: none;
  outline: none;
  background: #f8f8ff;
  border-bottom: 1.9px solid #808080;
  appearance: none;
  border-radius: 0
}

.quoteContainer form .inputContainer input:focus, .quoteContainer form .inputContainer textarea:focus, .quoteContainer form .inputContainer select:focus {
  border-bottom: 2px solid #d47500;
}

.quoteContainer form .inputContainer textarea {
  height: 140px;
}

.quoteContainer form .inputContainer label {
  position: absolute;
  left: 0;
  pointer-events: none;
  font-size: 20px;
  transition: .3s;
  color: #808080;
}

.quoteContainer form .inputContainer input:not(:placeholder-shown)~label,
.quoteContainer form .inputContainer input:focus~label,
.quoteContainer form .inputContainer select:valid~label,
.quoteContainer form .inputContainer select:focus~label,
.quoteContainer form .inputContainer textarea:not(:placeholder-shown)~label,
.quoteContainer form .inputContainer textarea:focus~label {
  transform: translateY(-22px);
  font-size: 1rem;
  letter-spacing: .5px;
  color: #d47500;
  font-weight: bold;
}

input[disabled], select[disabled] {
  cursor: not-allowed;
  -webkit-text-fill-color: #a50000;
  font-weight: bold;
}

label {
  padding: 4px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #ff8c00;
  color: #000;
  padding: 20px 20px;
  margin-bottom: 4rem;
  font-size: 1.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 20%;
  float: right;
  min-width: 18rem;
}

input[type=submit]:hover {
  background-color: #d47500;
}

.uploader .uploadcare--widget__button_type_open {
  cursor: pointer;
  margin-bottom: 4rem;
  color: #000;
  padding: 12px 15px;
  background: #ff8c00;
}

.uploader .uploadcare--widget__button_type_open:hover {
  background: #ff8c00da;
}

/* quote page end */

/* footer start */
footer {
  font-family: 'Bebas Neue', cursive;
  background: #000;
  color: #ff8c00;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .1rem;
  padding: 1.5rem 0;
}

/* footer end */

@media (max-width: 1200px) {
  #contact {
    padding-bottom: .5rem;
  }

  .container {
    width: 90%;
    min-width: auto;
    box-shadow: none;
  }

  .contactInfo {
    top: 0;
    height: 550px;
    position: relative;
    box-shadow: none;
  }

  .contactContainer {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    height: 550px;
    box-shadow: none;
  }

  .quoteContainer {
    width: 90%;
  }
}

@media (max-width: 991px) {
  .links {
    gap: 0px;
  }

  #contact {
    margin-bottom: 1rem;
  }

  .container {
    display: flex;
    flex-direction: column-reverse;
  }

  .contactContainer {
    width: 100%;
    height: auto;
  }

  .contactInfo {
    width: 100%;
    height: auto;
    align-items: center;
  }
}

@media (max-width: 735px), (max-width: 900px) and (orientation: landscape) {
  input[type=submit] {
    width: 100%;
    min-width: 14rem;
    margin-top: 0;
  }

  input[type=submit] {
    float: left;
  }

  .hamburger, .nav-icon, .nav-btn, .nav-bg {
    display: block;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 650px) {
  .contactContainer {
    padding: 25px;
  }

  .quoteContainer {
    padding: 25px;
  }

  .contactInfo {
    padding: 25px;
  }

  .formContainer form .inputContainer.sm {
    width: 100%;
  }
}