.contact {
  min-height: 100vh;
  padding: 120px 50px 80px 50px;
  display: flex;
  justify-content: center;
  background: linear-gradient(-105deg, #a14d1559, #333333cf);
  width: 100%;
  box-sizing: border-box;
  scroll-margin-top: 75px;
}

.contact .main-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.contact .comment-box {
  margin: 25px auto 10px;
  width: 50%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 1px #ad5317;
  background: rgba(255, 255, 255, 0.95);
}

.comment-box p {
  text-align: center;
  color: #333;
  font-size: 26px;
  padding: 10px 0;
  margin-bottom: 20px;
}
.comment-box input {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.2rem;
  padding: 10px;
  box-sizing: border-box;
  outline: none;
  border: 1px #ddd solid;
  color: #262626;
}
.comment-box textarea {
  font-size: 1.2rem;
  max-width: 100%;
  min-width: 100%;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 1px #ddd solid;
  color: #262626;
  padding: 10px;
}
.comment-box button {
  display: block;
  width: 100%;
  margin: 15px auto 10px auto;
  max-width: 200px;
  background-color: #f0f0f0;
  color: #262626;
  padding: 5px 0;
  border: none;
  font-size: 1.3rem;

  transition: all 0.6s ease-in-out;
}

.form-c button:hover {
  background-color: #ad5317;
  transform: scale(1.1);
}

/* end contact */
#parcours {
  padding-top: 90px;
  scroll-margin-top: 95px;
}
.parcours {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
  /* height: 100vh; */
}
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  margin-top: 15px;
  background: #ad5317;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  transition: transform 0.8s;
}
.card:hover {
  transform: translateY(-5px);
  transition: transform 0.4s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .project-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .project-cards {
    grid-template-columns: 1fr;
  }
}
.main-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.main-container h1 {
  margin-top: 10px;
}
.left-box {
  width: 50%;
  padding: 2px 5px;
  /* background-color: #ad5317; */
  color: #fff;
  border-radius: 10px;
}
.social-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: bold;

  color: #ad5317;
  margin-bottom: 7px;
  text-align: center;
}
.item-box {
  margin-top: 18px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
}
.info-item {
  /* width: 100%;
  height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* font-size: 1.2rem; */
  color: #fff;
}
.info-item i {
  color: #ad5317;
  font-size: 1.5rem;
}

.t-contact {
  font-size: 3rem;
  /* margin-bottom: 90px; */
  font-weight: bold;
  color: #ad5317;
  text-align: center;
}
.txt {
  font-size: 1.2rem;
  color: #fff;
  margin: 10px 5px;
  text-align: center;
  line-height: 1.5;
}
