.header {
  position: absolute;
}
.main {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.landing-section {
  width: 100%;
  height: 100%;
  background-image: url("https://acme-world.com/static/admin/wp-content/uploads/shutterstock_692457934-1-1600x900.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  animation: zoom-out 1s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.landing-section > h1 {
  font-size: 80px;
  color: var(--txt-white);
  font-family: var(--style-1);
  letter-spacing: 5px;
  margin-top: 10%;
  margin-bottom: 2%;
  font-weight: 500;
}

.landing-section > p {
  font-size: 20px;
  color: var(--txt-gray);
  margin-bottom: 10px;
  width: 40%;
  z-index: 1;
}

.landing-section > span {
  font-size: 15px;
  color: var(--txt-yellow);
  font-weight: 600;
  position: absolute;
  bottom: 50px;
  letter-spacing: 2px;
  z-index: 1;
}

.contact-info {
  padding: 12%;
  display: flex;
  flex-wrap: wrap;
  background-color: #f6f6f5;
}

.info-item {
  width: 50%;
  padding: 5%;
  height: 450px;
  background-color: var(--bg-yellow);
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  border-right: 1px solid white;
}

.info-1 > h3 {
  font-size: 30px;
  margin-bottom: 5%;
}

.info-1 > address {
  font-size: 18px;
  margin-bottom: 5%;
  color: var(--txt-gray);
}

.info-2 {
  list-style: none;
}

.info-2 > li {
  margin-bottom: 4%;
}

.info-2 > li > a {
  text-decoration: none;
  font-size: 16px;
  color: black;
}
.info-2 > li > a > i {
  width: 30px;
  font-size: 18px;
}
.contact-us {
  background-image: url("https://acme-world.com/static/admin/wp-content/uploads/sans-titre-1-1.jpg");
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-us > h2 {
  color: var(--txt-white);
  font-size: 45px;
  font-family: var(--style-1);
  letter-spacing: 2px;
  font-weight: 400;
}

.contact-us > a {
  color: var(--txt-yellow);
  font-size: 20px;
  font-family: var(--style-1);
  letter-spacing: 2px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.contact-us > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--txt-yellow);
  color: var(--txt-yellow);
  transition: 0.5s;
  height: 3px;
  content: " ";
}
.contact-us > a:hover::after {
  width: 100%;
}

/*  */
.contact-form {
  background-color: #f6f6f5;
  display: flex;
  flex-wrap: wrap;
}
.contact-form > h4 {
  font-size: 40px;
  font-family: var(--style-1);
  color: var(--txt-yellow);
  letter-spacing: 2px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 3%;
}

.form-subject {
  width: 22%;
  height: max-content;
}

.input-hint {
  font-size: 17px;
  font-weight: 400;
  margin-left: 2%;
  margin-top: 3%;
  width: 100%;
}

.subject-selector {
  width: 100%;
  background-color: var(--bg-white);
  margin-top: 20px;
}

.option-item {
  width: 100%;
  position: relative;
  display: flex;
  padding: 30px 20px;
  cursor: pointer;
}

.option-item::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--bg-yellow);
  color: var(--bg-yellow);
  transition: 0.4s;
  width: 0;
}

.option-item:hover::after {
  width: 2px;
}

.option-item.active::after {
  width: 100%;
  z-index: 0;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-top: 5px;
  background-color: #f6f6f5;
  z-index: 2;
}

.option-item.active > .bullet {
  transition: 0.4s;
  width: 12px;
  height: 12px;
  border: 2px solid #f6f6f5;
  background-color: var(--bg-black);
}

.option-item > p {
  z-index: 2;
}
.form {
  width: 70%;
  margin-left: 8%;
  margin-bottom: 15%;
  display: flex;
  flex-direction: column;
}

.input-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

input,
textarea {
  font-size: 17px;
  background-color: var(--bg-white);
  padding: 2.4% 2%;
  border: none;
  outline: none;
  margin-top: 2%;
  width: 100%;
}
textarea {
  min-height: 100px;
  max-height: 100px;
  min-width: 100%;
  max-width: 100%;
}

.input-container > input {
  width: 48%;
}

.form > button {
  padding: 20px 40px;
  background-color: var(--bg-yellow);
  width: max-content;
  margin-top: 20px;
  font-size: 17px;
  border-radius: 5px;
}
