/* RESET */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  font-family: "Cairo", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* Container style */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
}
.navbar-download {
  font-size: 25px;
  color: black;
}
.navbar-download:hover {
  color: #666666;
}

.hero {
  background-image: url("./img/car.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(40deg, #220203, #940508);
  opacity: 0.8;
}
.hero-content {
  display: flex;
  align-items: last baseline;
  justify-content: space-between;
  position: relative;
  padding-block: 40px;
  z-index: 1;
}
.hero-content-section {
  max-width: 50%;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
.hero-content-section p {
  color: white;
  font-size: 22px;
  line-height: 40px;
  text-align: justify;
}

.about {
  background: #EAEAEA;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.about .about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10vh;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  gap: 50px;
  line-height: 30px;
  font-size: 22px;
}
.about-content button {
  padding: 15px 30px;
  border-radius: 6px;
  background: #F0494A;
  outline: none;
  border: none;
  color: white;
  font-size: 22px;
}
.about-content button:hover {
  cursor: pointer;
  background: #ec1a1b;
}

.search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-block: 50px;
}
.search-header {
  font-size: 40px;
  font-weight: 600;
}
.search-video {
  border: none;
  border-radius: 8px;
}
.search-description {
  font-size: 22px;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: 40%;
}
.download-content p {
  font-size: 22px;
  line-height: 40px;
  text-align: justify;
}
.download-content a button {
  padding: 15px 30px;
  border-radius: 6px;
  background: #F0494A;
  outline: none;
  border: none;
  color: white;
  font-size: 22px;
}
.download-content a button:hover {
  cursor: pointer;
  background: #ec1a1b;
}
.download-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row-reverse;
}
.download-images .small-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.download-images .small-images a:first-child {
  height: 60px;
}
.download-images .small-images a:first-child img {
  height: 100%;
}
.download-images .big-img {
  height: 500px;
}
.download-images .big-img img {
  height: 100%;
}

footer {
  background-color: #F0494A;
  padding-top: 50px;
  padding-bottom: 20px;
}
footer .links-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20%;
}
footer .links-logo .links a {
  font-size: 20px;
  color: white;
}
footer .links-logo .links a:hover {
  color: #e6e6e6;
}
footer .links-logo .logo {
  height: 70px;
}
footer .links-logo .logo img {
  height: 100%;
}
footer .copy-right {
  text-align: center;
  font-size: 16px;
  color: white;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .navbar img {
    width: 150px;
  }
  .navbar-download {
    font-size: 16px;
  }
  .hero::after {
    opacity: 0.9;
  }
  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 20px;
  }
  .hero-content img {
    width: 200px;
    margin-inline: auto;
  }
  .hero-content-section {
    word-wrap: break-word;
    gap: 20px;
    max-width: 100%;
  }
  .hero-content-section p {
    font-size: 18px;
  }
  .hero-content-section a {
    margin-inline: auto;
    text-align: center;
  }
  .hero-content-section a .hero-download {
    margin-top: 20px;
  }
  .hero-content-section a .hero-download img {
    width: 80%;
    margin-inline: auto;
  }
  .about .about-wrapper {
    flex-direction: column;
    padding-block: 30px;
  }
  .about-content {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .about-content button {
    font-size: 18px;
  }
  .about-content p {
    font-size: 18px;
    text-align: justify;
  }
  .search {
    margin-block: 25px;
  }
  .search-header {
    font-size: 24px;
  }
  .search-video {
    height: auto;
  }
  .search-description {
    font-size: 18px;
    text-align: justify;
  }
  .download {
    flex-direction: column;
  }
  .download-content {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }
  .download-content a button {
    font-size: 18px;
  }
  .download-content p {
    font-size: 18px;
    text-align: justify;
  }
  .download-images {
    flex-direction: column-reverse;
  }
  .download-images .small-images {
    flex-direction: row;
    justify-content: space-between;
  }
  footer .links-logo {
    gap: 0;
    justify-content: space-between;
  }
  footer .links-logo .links {
    font-size: 18px;
  }
  footer .links-logo .logo {
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .links-logo .logo img {
    width: 150px;
    height: auto;
  }
  footer .copy-right {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */