.contact .container {
  display: flex;
  flex-direction: row;
  background-color: black;
  color: rgb(200, 200, 200, 0.75);
  overflow: hidden;
}

.contact .title_image {
  flex: 2;
  height: 100vh;
}

.contact .title_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 100% 20%;
}

.contact .content-wrapper {
  width: 100%;
  height: 100vh;
  padding: 10vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3vh;
  flex: 1;
}

.contact .title {
  width: 100%;
  height: 5vh;
  text-align: center;
  font-size: 4vh;
  font-weight: bold;
}

.contact .content-wrapper .text {
  padding: 0px 20px;
  font-size: 3vh;
  text-align: center;
}

.contact .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 5vh;
  padding: 0px 20px;
  margin-top: 5vh;
  text-align: center;
}

.contact .info .heading {
  font-size: 3vh;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: rgb(160, 0, 0);
  text-decoration-thickness: 3px;
  /* text-decoration- */
  margin-bottom: 2vh;
  /* padding-bottom: 20px; */
  /* border-bottom: 2px solid  */
}

.contact .info .text {
  height: 5vh;
  font-size: 2.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* gap: 3vh; */
}

.contact .info .items .text span {
  /* width: 160px; */
  /* text-align: center; */
}

.contact .info .items .text span a {
  text-decoration: none;
  color: rgb(200, 200, 200, 0.75);
}


/* .contact .info .text img {
  width: 30px;
  height: 30px;
} */

@media (max-width: 500px) {
  .contact .container {
    flex-direction: column;
  }
  .contact .title { 
    font-size: 18px;
    height: auto;
  }
  .contact .content-wrapper {
    padding: 20px 0;
  }
  .contact .content-wrapper .text {
    font-size: 15px;
  }
  .contact .info {
    gap: 15px;
  }
  .contact .info .heading {
    margin-bottom: 5px;
    font-size: 17px;
    /* color: rgb(160, 0, 0); */
  }
  .contact .info .text{
    height: 30px;
  }
  /* .contact .info .text img{
    width: 25px;
    height: 25px;
  } */
  /* .contact .info .items .text span {
    width: 120px;
    color: white;
  } */
}