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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  list-style: none;
  text-decoration: none;
}

body {
  background: #141414;
}

/* NAVBAR_QISMI */

.nav {
  background: #56565640;
  padding: 10px 0;
}
.nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_list {
  display: flex;
  gap: 80px;
  list-style: none;
}

.nav_link {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #f0f0f0;
}

/* INTRO_QISMI */

.intro {
  background-image: url(../img/intro.bg.svg);
  height: 747px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.intro_title {
  font-weight: 600;
  font-size: 140px;
  line-height: 100%;
  color: #b31d1e;
}

.intro_link {
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  color: #141414;
  text-decoration: none;
  background: linear-gradient(93.34deg, #ffa600 0%, #e41818 100%);
  padding: 17px 94px;
  border-radius: 4px;
}

/* MAIN_QISMI */

.porsche {
  margin-top: 100px;
}

.porsche_box {
  display: flex;
  align-items: center;
  gap: 30px;
}

.title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 30px;
  color: #eb3a13;
}

.porsche_text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #f0f0f0;
}

/* SECTION */

.gallery {
  margin-top: 100px;
}

.gallery_box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* SECTION_ABOUT */

.about {
  margin-top: 100px;
}

.about_text {
  font-size: 20px;
  line-height: 150%;
  color: #f0f0f0;
  margin-bottom: 80px;
}

/* FOOTER_QISMI */

.footer {
  background-color: #1f1f1f;
  margin-top: 100px;
  padding: 30px 0;
}

.footer_box {
  display: flex;
  justify-content: space-between;
}

.footer_form {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
}

.footer_right {
  display: flex;
  gap: 70px;
}

.footer_input {
  color: white;
  background: none;
  border: none;
  outline: none;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
  font-size: 14px;
  line-height: 140%;
}

.footer_input:first-of-type {
  border-top: 1px solid #f0f0f0;
}

.btn {
  margin-top: 30px;
  background: linear-gradient(93.34deg, #ffa600 0%, #e41818 100%);
  padding: 9px 0;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #f0f0f0;
}

.footer_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_link,
.footer_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  color: #f0f0f0;
}

.footer_right_link{
  color: white;
  font-weight: 500;
  font-size: 14px;

}




