/* GENERAL CSS */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #4f4f4f;
  overflow-x: hidden;
}

.container-hero {
  max-width: 144rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.container {
  max-width: 144rem;
  padding: 12rem 3.2rem;
  margin: 0 auto;
}

a:visited {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}

.white-color {
  color: #f0f0f0;
}

a {
  text-decoration: none;
}

/* ////////////////// */

/* NAV BAR */

.nav-bar {
  padding: 0 5rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0px;
  z-index: 9999;
}

.nav-logo {
  max-width: 8rem;
}

.nav-logo img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.nav-link {
  font-size: 1.4rem;
  color: #484848;
}

.nav-link:hover {
  text-decoration: underline solid #484848 1px;
}

/* HERO SECTION */

.section-hero {
  display: flex;
  justify-content: space-between;
  height: 95vh;
  align-items: center;
  position: relative;
}

.orange-box {
  background-color: #fd8041;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45rem;
  height: 85vh;
  z-index: -999;
  border-radius: 50px 50px 0 0;
}

.hero-left-block {
  max-width: 50rem;
  min-width: 40rem;
}

.hero-heading {
  color: #343434;
  font-size: 6.8rem;
}

.span-hero {
  color: #fd8041;
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 42rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.hero-img {
  max-width: 90.2rem;
  min-height: 70rem;
  min-width: 60.2rem;
  min-height: 40rem;
}
.hero-image-size {
  width: 100%;
}

.btn {
  font-size: 2.2rem;
  color: #fff;
  padding: 1.5rem 3.5rem;
  background-color: #fd8041;
  border-radius: 10px;
}

.btn:hover {
  background-color: #ed7a41;
  transition: all ease-in-out 200ms;
}

.ghost {
  background-color: white;
  border: 1px solid rgb(70, 70, 70);
  color: #6c6c6c;
  font-weight: 400;
  margin-left: 4rem;
}

.ghost:hover {
  background-color: #fbfbfb;
}

/* END OF HERO */

/* SPECIFICATIONS SECTION */

.specifications-top-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12rem;
}

.specifications-heading {
  font-size: 4rem;
}

.specifications-paragraph {
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 46rem;
}

.line {
  width: 0.25rem;
  height: 9rem;
  background-color: #737373;
  margin: 0 3rem 0 10rem;
}

.specifications-middle-block {
  justify-content: center;
  gap: 4rem;
  display: flex;
}

.specifications-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.specifications-image {
  max-width: 65rem;
}

.specifications-image-size {
  width: 100%;
}

.middle-right-block,
.middle-left-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.specifications {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.specifications p {
  font-size: 2.4rem;
  font-weight: 500;
}

.specifications img {
  width: 6rem;
}

.specifications-bot-block {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.minus-margin {
  margin-bottom: 5rem;
}

/* END OF SPECIFICATIONS SECTION */

/* VIDEO TRAILER SECTION */

.video-trailer {
  max-width: 144rem;
  height: 65rem;
  margin: 0 auto;
}

.class {
  width: 100%;
  height: 100%;
}

.video-section {
  background-color: #000;
}

/* SHOP SECTION */

.carts {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.cart {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transform: translateY(1rem);
  transition: all ease-in 300ms;
}

.cart:hover {
  transform: translateY(-1rem);
  transition: all ease-in 300ms;
}

.cart-image {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-width: 40rem;
  max-height: 25rem;
  overflow: hidden;
}

.cart-info {
  display: flex;
  flex-direction: column;
  padding: 4rem;
}

.cart-info a {
  text-align: center;
}

.cart-info span {
  margin-top: 2rem;
  margin-bottom: 4rem;
  font-size: 2.4rem;
}

.cart-info h4 {
  font-size: 2.8rem;
}

.shop-heading {
  font-size: 4rem;
}

.shop-section-upper {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
}

.shop-line {
  width: 0.3rem;
  height: 9rem;
  background-color: #737373;
  margin-right: 2rem;
}

.shop-view-more {
  text-align: center;
  margin-top: 8rem;
  font-size: 2.8rem;
  font-weight: 300;
  text-decoration: underline solid 0.2rem;
}

/* ABOUT US SECTION */

.about-container {
  max-width: 144rem;
  padding: 5rem 3.2rem;
  margin: 0 auto;
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.about-heading {
  font-size: 4rem;
  margin-bottom: 4rem;
}

.about-text {
  display: flex;
  align-items: center;
}

.about-paragraph {
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 60rem;
  min-width: 25rem;
  line-height: 1.3;
}

.about-main-paragraph {
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 60rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
  line-height: 1.3;
}

.right-about-block {
  max-width: 60rem;
  max-height: 50rem;
  min-width: 30rem;
  min-height: 20rem;
  border-radius: 20px;
}

.about-photo {
  border-radius: 20px;
}

.bold-p {
  font-weight: 500;
}

.orange-line {
  background-color: #fd8041;
}

/* SUBSCRIBE SECTION */

.subscribe-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: #484848 solid 1px;
  border-bottom: #484848 solid 1px;
  padding: 2rem 0;
}

.sub-right-block {
  max-width: 46rem;
}

.car-wheel {
  width: 100%;
}

.sub-heading {
  color: #343434;
  font-size: 4rem;
}

.sub-paragraph {
  font-size: 1.8rem;
  line-height: 1.4;
  max-width: 50rem;
  margin-top: 1.5rem;
  margin-bottom: 5rem;
}

.email-input {
  display: flex;
  align-items: center;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
}

.email-input input {
  padding: 1.5rem 2.5rem;
  width: 33rem;
  border: none;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.btn-sub {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  padding: 1.5rem 2.5rem;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #fd8041;
  margin-left: -0.5rem;
}

button {
  border: none;
}

button:hover {
  background-color: #ed7a41;
}

::placeholder {
  color: #b7b7b7;
  font-weight: 300;
}

textarea:focus,
input:focus {
  outline: none;
}

/* FOOTER */

.footer {
  background-color: #242424;
}

.container-footer {
  max-width: 144rem;
  padding: 6rem 3.2rem;
  margin: 0 auto;
}

.section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left-block {
  width: 30rem;
}

.footer-left-block img {
  width: 100%;
}

.footer-right-block {
  display: flex;
  gap: 15rem;
}

.footer-right-block a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
}

.footer-right-block a:hover {
  text-decoration: underline solid #fff 1px;
}

/* MEDIA QUERIES */

@media (max-width: 1102px) {
  .hero-heading {
    font-size: 4rem;
  }
  .hero-left-block {
    min-width: 40rem;
    min-width: 30rem;
  }
  .hero-img {
    min-width: 50.2rem;
    min-height: 30rem;
  }

  .specifications-heading,
  .about-heading,
  .shop-heading {
    font-size: 3rem;
  }
  .footer-right-block {
    gap: 5rem;
  }

  .email-input input {
    width: 27rem;
  }
}

@media (max-width: 994px) {
  .flex-btn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: top;
  }

  .btn {
    text-align: center;
  }

  .ghost {
    margin: 0;
  }
  .hero-img {
    min-width: 35.2rem;
    min-height: 15rem;
  }

  .orange-box {
    width: 30rem;
  }
  .hero-heading {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.4rem;
  }
  .hero-left-block {
    min-width: 30rem;
    min-width: 20rem;
  }

  .btn {
    font-size: 1.2rem;
  }

  .nav.links {
    display: flex;
    gap: 1rem;
  }

  .nav-bar {
    padding: 0 2rem;
  }
  .specifications-heading,
  .about-heading,
  .shop-heading,
  .sub-heading {
    font-size: 2.5rem;
    margin-right: 3rem;
  }

  .specifications-paragraph,
  .sub-paragraph {
    font-size: 1.4rem;
  }
  .no-margin {
    margin: 0;
  }

  .about-paragraph,
  .about-main-paragraph {
    font-size: 1.6rem;
  }
  .specifications p {
    font-size: 1.6rem;
  }
}

@media (max-width: 680px) {
  .section-hero {
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
  }

  .orange-box {
    display: none;
  }

  .carts {
    flex-direction: column;
    align-items: center;
  }

  .specifications-top-block {
    flex-direction: column;
    align-items: baseline;
  }

  .specifications-middle-block {
    flex-direction: column;
  }

  .middle-left-block,
  .middle-right-block {
    flex-direction: row;
  }

  .about-section {
    flex-direction: column;
  }

  .section-footer {
    flex-direction: column;
    align-items: baseline;
  }

  .about-main-paragraph,
  .about-paragraph {
    font-size: 1.4rem;
  }

  .footer-right-block {
    flex-direction: column;
  }

  .subscribe-section {
    flex-direction: column;
    align-items: baseline;
  }

  .email-input input {
    width: 20rem;
  }

  .none {
    display: none;
  }
  .section-hero {
    height: 80vh;
  }

  .specifications-flex {
    margin-top: 2rem;
  }
}
