.contact {
  width: 100%;
  height: fit-content;
  padding-bottom: 4rem;
}

.contact-contain {
  width: 100%;
  height: fit-content;
}


.contact-contain .point-right{
  width: 100%;
  height: fit-content;
  padding: 2rem ;

  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

  border-top-left-radius: 7rem;
  border-bottom-right-radius: 7rem;

  background-color: var(--dp);
}

.contact-info a{
  background-color: var(--l);
  color: var(--d);

  font-weight: 500;

  width: 90%;
  padding: 1rem;
  border-radius: 10px;
}

.email {
  font-size: 80%;
}

.contact-contain .point-left {
  width: 100%;
  height: fit-content;
  padding: 2rem ;

  border-top-right-radius: 7rem;
  border-bottom-left-radius: 7rem;

  background-color: var(--p);
}

form {
  width: 90%;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  position: absolute;
  opacity: 0;
  z-index: -2;
}

input, textarea {
  padding: 1rem;

  border: none;
  border-radius: 10px;
}

textarea {
  height: 21ch;
}

form .cta {
  padding: 1rem 2rem;
  width: 90%;
  margin-left: 10%;

  border: 2px solid var(--l);
}

.addres {
  display: flex;
  gap: 7px;
}

.addres i{
  margin-top: 10px;
}

/* small mobile */
@media (min-width: 320px) {
  .email {
    font-size: 100%;
  }
}

/* m mobile */
/* @media (min-width: 375px) {
 
} */

/* l mobile */
/* @media (min-width: 425px) {
 
} */

/* xs */
/* @media (min-width: 475px) {

} */

/* sm */
/* @media (min-width: 640px) {

} */

/* m */
@media (min-width: 768px) {
  .contact-contain {
    display: flex;
    justify-content: center;

    height: fit-content;
  }

  .contact-contain .point-right{
    width: 50%;
  }

  .contact-contain .point-left{
    width: 50%;
    height: 100%;
  }
}

/* lg */
/* @media (min-width: 1024px) {
 
}
 */
/* xl */
/* @media (min-width: 1280px) {
 
} */

/* 2xl */
/* @media (min-width: 1536px) {

} */