* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.contact-section {
  width: 100%;
  padding: 3rem 5rem;
  background-image: radial-gradient(#ddd 8%, #fff 9%);
  background-position: 0 0;
  background-size: 21px 21px;
}

.inside-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1.5rem;
}

.contact-left h2 {
  font-size: 35px;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}

.contact-info i {
  font-size: 20px;
  color: #000000;
  padding: 15px 24px;
  border: 2px solid #5a5a5a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-heading {
  color: #5a5a5a;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.info p {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}

.contact-mail {
  text-decoration: none;
  color: #000000;
  font-size: 17px;
  font-weight: 500;
}

.contact-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid #c5c5c5;
  background: #c5c5c5;
}

.contact-right h2 {
  font-size: 35px;
  color: #5a5a5a;
  margin-bottom: 1rem;
}

.inside-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.inside-form .form-group {
  flex: 1;
  min-width: 200px;
}

.form-group input,
.form-group textarea {
  /* background-color: #f2f2f2; */
  width: 100%;
  padding: 10px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 10px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  margin-top: 20px;
}

.submit-btn {
  border: none;
  outline: none;
  text-decoration: none;
  background: #e6484d;
  color: #f9f9f9;
  border-radius: 2rem;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f7cf32;
  transition: 0.3s ease;
  z-index: -1;
}

.submit-btn:hover {
  color: #000000;
}

.submit-btn:hover::before {
  width: 100%;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 4rem 3rem;
  }
}

@media (max-width: 1317px) {
  .contact-section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 1189px) {
  .contact-left {
    padding: 0 10px;
  }
}

@media (max-width: 1000px) {
  .inside-contact {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .contact-left {
    width: 70%;
  }

  .contact-right {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .contact-left {
    width: 80%;
    padding: 0 0;
  }

  .contact-right {
    width: 80%;
  }
}

@media (max-width: 500px) {
  .contact-left {
    width: 100%;
  }

  .contact-left h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .contact-info i {
    font-size: 19px;
  }

  .info h3 {
    font-size: 17px;
  }

  .info p,
  .info a {
    font-size: 16px;
  }

  .contact-right {
    width: 100%;
    padding: 2rem 1rem;
  }

  .contact-right h2 {
    font-size: 30px;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .contact-section {
    padding: 2rem 1rem;
  }

  .submit-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 310px) {
  .contact-right h2 {
    font-size: 27px;
  }
}