@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@300;400;500;600;700;800;900&display=swap');



/* colors 6cc327 26822e 268133 1c852 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */
  font-family: 'Encode Sans', sans-serif;
}



.contact {
  min-height: 100vh;
  width: 100%;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px auto 50px;

}

.contact-container {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 85%;
  /* background: #fff; */
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: fit-content;
}

.contact-container .content .left-side {

  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: #268133;
  margin-bottom: 10px;

}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one {
  font-size: 13px;
  text-align: center;
  color: black;
}

.content .left-side .details .text-two {
  font-size: 13px;
  text-align: center;
  color: black;
}

.contact-container .content .right-side {

  width: 100%;
  /* top right bottom left */
  margin: auto 50px auto 50px;

}

.content .right-side .topic-text {
  font-size: 30px;
  font-weight: 600;
  color: #268133;
}

.right-side p {
  font-size: medium;
  /* text-align: justify; */
  text-align: inherit;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;

}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #268133;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="submit"]:hover {
  background: #26822e;
}




@media only screen and (max-width: 768px) {
  .contact {
    min-height: 100vh;

  }

  .contact-container {
    height: auto;
    padding: 20px;

  }

  .contact-container .content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .contact-container .content .left-side {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    flex-direction: row;
  }

  .content .left-side::before {
    display: none;
  }

  .contact-container .content .right-side {
    width: 85%;
    margin-top: 20px;

  }

  .content .left-side .details .text-one {
    font-size: 13px;
    text-align: center;
    color: black;
  }

  .content .left-side .details .text-two {
    font-size: 13px;
    text-align: center;
    color: black;
  }

  .content .left-side .details i {

    min-width: 30px;

  }

  .content .left-side .details .topic {
    min-height: 18px;
  }
}


/* Large laptops and desktops */
@media only screen and (min-width: 992px) {
  .contact-container {
    padding: 60px;
  }

  .contact-container .content .left-side {
    margin-top: 0;
    margin-bottom: 60px;
  }
}