/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 20px;
  padding: 10px;
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

/* Contact Section */
.section-header {
  background: linear-gradient(to right, rgba(122, 191, 14, 0.6), rgba(243, 120, 14, 0.6));
  padding: 8rem 20px 2rem;
  border-radius: 6px;
  text-align: center;
}
.section-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(122, 191, 14, 0.3);
}
.section-header .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.section-header i {
  font-size: 1.2rem;
  color: #f3780e;
}

.contact {
  background: #f9f9f9;
  padding: 3rem 20px 4rem;
  background: url("./../../images/contactbg.png") repeat center/cover;
}
.contact .container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}
.contact .container .contact-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-right: 2rem;
  margin-left: 3rem;
}
.contact .container .contact-wrapper .contact-form {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}
.contact .container .contact-wrapper .contact-form h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #7abf0e;
  margin-bottom: 20px;
}
.contact .container .contact-wrapper .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .container .contact-wrapper .contact-form .form-group input,
.contact .container .contact-wrapper .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #7abf0e;
  border-radius: 6px;
  font-size: 1rem;
}
.contact .container .contact-wrapper .contact-form .form-group input:focus,
.contact .container .contact-wrapper .contact-form .form-group textarea:focus {
  border-color: #f3780e;
  outline: none;
}
.contact .container .contact-wrapper .contact-form button {
  background: #7abf0e;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
}
.contact .container .contact-wrapper .contact-form button:hover {
  background: rgb(245.418972332, 147.2134387352, 62.581027668);
}
.contact .container .contact-wrapper .contact-info {
  flex: 1;
  min-width: 300px;
}
.contact .container .contact-wrapper .contact-info h3 {
  font-size: 2rem;
  color: #7abf0e;
  margin-bottom: 15px;
}
.contact .container .contact-wrapper .contact-info p {
  margin-bottom: 10px;
}
.contact .container .contact-wrapper .contact-info .social-links {
  margin-bottom: 15px;
  margin-top: 10px;
}
.contact .container .contact-wrapper .contact-info .social-links a {
  color: #7abf0e;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid #7abf0e;
  padding: 8px;
  border-radius: 4px;
}
.contact .container .contact-wrapper .contact-info .social-links a:hover {
  background-color: rgb(152.1609756098, 237.6536585366, 18.3463414634);
  color: #f9f9f9;
}
.contact .container .contact-wrapper .contact-info .contact-phone {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-wrapper .contact-form,
  .contact-wrapper .contact-info {
    margin-right: 0;
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=contact.css.map */