@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&family=Playfair+Display:ital,wght@1,500&family=Poppins&display=swap');
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
}
nav {
  position: fixed;
  z-index: 1;
  background: transparent;
  width: 98%;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  /* padding-left: 25px;
  padding-right: 25px; */
  height: 80px;
  color: whitesmoke;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
nav a:hover {
  opacity: 0.5;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 10px;
  margin-right: 10px;
}
nav h3 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.8px;
}
nav .list-name {
  display: none;
}
ion-icon {
  font-size: 18px;
}
nav .burger-bar {
  font-size: 35px;
  cursor: pointer;
  transition: color 0.3s;
  margin-right: 25px;
}
nav .burger-bar:hover {
  opacity: 0.5;
}
nav .list-android {
  position: absolute;
  left: 0;
  color: #313131;
  top: 80px;
  width: 100%;
  display: none;
  text-align: left;
  font-weight: lighter;
  background-color: #f6f6f6;
}
nav .list-android li a {
  display: block;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}
nav .list-android li:first-of-type a {
  border-top: 1px solid #e7e7e7;
}
/* nav .list-android--active {
  background-color: #313131;
  color: #e7e7e7;
} */

.Navbar-scroll {
  background-color: #292929;
  z-index: 1000;
}
@media only screen and (min-width: 1000px) {
  nav {
    background-color: transparent;
  }
  nav .list-name {
    display: flex;
  }
  nav .burger-bar {
    display: none;
  }
  nav .list-android {
    display: none;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('Img/bg-about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  color: whitesmoke;
}
.hero h1 {
  font-size: 68px;
  margin-bottom: 20px;
}
.hero h1 span {
  font-family: 'Playfair Display', serif;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
.hero ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}
.hero ul li a {
  color: whitesmoke;
}
.hero a:hover {
  color: teal;
  transition: color 0.3s;
}
.hero .mouse {
  position: absolute;
  bottom: 20px;
}
.hero .mouse ion-icon {
  font-size: 42px;
}
.section_1 .text .container_1 {
  padding: 50px 20px;
}
.section_1 h2 {
  padding: 40px 0px;
  font-size: 40px;
}
.section_1 p {
  line-height: 25px;
}
.section_1 p:not(p:last-of-type) {
  margin-bottom: 20px;
}
.section_1 .section_1__img {
  background-image: url('Img/bg-1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
@media only screen and (min-width: 1000px) {
  .section_1 {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .section_1 .text {
    flex: 1;
    order: 2;
  }
  .section_1 .section_1__img {
    flex: 1;
    order: 1;
  }
}
.section_2 {
  display: block;
}
.section_2 .text_2 .container_2 {
  padding: 50px 20px;
}
.section_2 h2 {
  margin-bottom: 20px;
  font-size: 40px;
}
.section_2 p {
  margin-bottom: 30px;
  line-height: 25px;
}
.section_2 .section_2_img {
  background-image: url('Img/bg-2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.section_2 .bar_container {
  font-weight: bold;
}
.section_2 .bar_container .job {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.6s;
}

.section_2 .bar_container .bar {
  position: relative;
  height: 10px;
  width: 100%;
  margin-bottom: 30px;
}
.section_2 .bar_container .bar .bar_font {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 10px;
  width: 100%;
  background-color: #3b3b3b;
}
.bar .persent {
  position: absolute;
  right: 0;
  font-size: 13px;
  color: #a7a1a1;
  top: -20px;
}
.section_2 .bar_container .bar .bar_back {
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 100%;
  background-color: #f0f0f0;
}
@media only screen and (min-width: 1000px) {
  .section_2 {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .section_2 .text_2 {
    flex: 1;
  }
  .section_2 .section_2_img {
    flex: 1;
  }
}
.section_future {
  padding: 50px 20px;
  background-color: #f7f7f7;
}
/* .section_future .future {
  margin-bottom: 30px;
} */
.section_future .future h3 {
  font-size: 20px;
  letter-spacing: 4px;
}
.section_future .future p {
  font-size: 13px;
  letter-spacing: 0.8px;
  line-height: 25px;
}
.section_future .future * {
  margin-bottom: 20px;
}
.section_future .future ion-icon {
  font-size: 45px;
}
@media only screen and (min-width: 1000px) {
  .section_future {
    display: flex;
  }
}
.section_brands {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section_brands .brand {
  margin: 15px 38px;
}
.section_contact {
  padding: 50px 20px;
}
.section_contact .contact_form {
  display: block;
}
.section_contact .contact_form .input {
  width: 100%;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 0px;
  border: none;
  border-bottom: 1px solid rgb(168, 168, 168);
  margin-bottom: 40px;
  resize: none;
}

.section_contact .contact_form .input:focus {
  outline: none;
  border-bottom: 1px solid rgb(32, 32, 32);
}
.section_contact .contact_form button {
  float: right;
  padding: 20px 30px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  width: 200px;
  border-radius: 220px;
  font-weight: 600;
  background-color: #292929;
  color: whitesmoke;
  border: none;
  cursor: pointer;
  box-shadow: 0px 10px 30px 20px #e6e6e6;
  transition: box-shadow 0.1s;
}
.section_contact .contact_form button:hover {
  box-shadow: none;
}
@media only screen and (min-width: 1000px) {
  .section_contact .contact_form .normal {
    width: 49%;
  }
}
footer {
  margin-top: 40px;
}
.section_footer {
  padding: 50px 20px;
  background-color: #f7f7f7;
}

.section_footer div:not(div:last-of-type) {
  margin-bottom: 60px;
}
.section_footer div p {
  font-size: 15px;
  letter-spacing: 0.4px;
}
.section_footer .footer_div_1 h2 {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.8px;
}
.section_footer .footer_div_1 p {
  margin-top: 15px;
  width: 350px;
}
.section_footer .footer_div_2 {
  margin-top: 40px;
}
.section_footer .footer_div_2 a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.8px;
  display: block;
  color: rgb(54, 48, 48);
}
.section_footer .footer_div_2 a:not(a:last-of-type) {
  margin-bottom: 15px;
}
.section_footer .footer_div_3 p {
  margin-bottom: 15px;
  margin-top: 40px;
}
.section_footer .footer_div_3 input {
  width: 280px;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-bottom: 40px;
}
.section_footer .footer_div_3 input:focus {
  outline: none;
  border: 1px solid rgb(168, 168, 168);
}

.section_footer_2 {
  background-color: #f2f2f2;
  padding: 20px 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8b8b8b;
}
@media only screen and (min-width: 1000px) {
  .section_footer {
    display: flex;
    justify-content: space-between;
  }
  .section_footer_2 {
    text-align: center;
  }
}
