*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  color: #333;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

:root {
  --header-height: 80px;
}

.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4);
  z-index: 9;
}
.header .header-wrap {
  --active-color: #0565a5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .header-wrap .logo h1 {
  font-size: 1.8rem;
  color: var(--active-color);
}
.header .header-wrap .menu ul {
  display: flex;
  gap: 20px;
  font-weight: 700;
}
.header .header-wrap .menu ul li {
  transition: color 0.3s ease;
}
.header .header-wrap .menu ul li.active {
  color: var(--active-color);
  position: relative;
}
.header .header-wrap .menu ul li.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--active-color);
}
.header .header-wrap .menu ul li:hover {
  color: var(--active-color);
}

.footer {
  background: #1f2937;
  color: #fff;
  height: 80px;
}
.footer .footer-wrap {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100%;
  align-content: space-around;
  justify-items: center;
  height: 100%;
}
.footer .footer-wrap h2 {
  font-size: 1.1rem;
  font-weight: 400;
}

.project-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.project-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background-color: #1e5feb;
  margin-left: -50px;
  border-radius: 5px;
}

:root {
  --header-height: 80px;
}

.contact-banner {
  padding-top: var(--header-height);
  height: 360px;
  background-color: rgba(26, 76, 184, 0.9019607843);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-form {
  background-color: #fff;
  padding: 80px 0;
}
.contact-form .contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form .contact-wrap .information {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 20px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.1);
}
.contact-form .contact-wrap .information .title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.contact-form .contact-wrap .information .information-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
.contact-form .contact-wrap .information .information-wrap .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-form .contact-wrap .information .information-wrap .item .icon {
  font-size: 1.6rem;
  color: #3372fa;
}
.contact-form .contact-wrap .information .information-wrap .item .subtitle {
  font-size: 1.2rem;
  font-weight: 700;
}
.contact-form .contact-wrap .information .information-wrap .item .content {
  color: #666;
}
.contact-form .contact-wrap .send-form {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.1);
}
.contact-form .contact-wrap .send-form .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-form .contact-wrap .send-form .input-group {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-form .contact-wrap .send-form .input-group input,
.contact-form .contact-wrap .send-form .input-group textarea {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.contact-form .contact-wrap .send-form .input-group input:focus,
.contact-form .contact-wrap .send-form .input-group textarea:focus {
  border-color: #3372fa;
}
.contact-form .contact-wrap .send-form .input-group textarea {
  height: 100px;
  padding: 10px 20px;
  resize: none;
}
.contact-form .contact-wrap .send-form .btn-group .send-btn {
  padding: 12px 35px;
  border-radius: 6px;
  background-color: #3372fa;
  color: #fff;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .contact-wrap .send-form .btn-group .send-btn:hover {
  background-color: #2e48da;
}

.contact-location {
  padding: 80px 0;
}
.contact-location .title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.contact-location .map {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: #808080;
}
.contact-location .map iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .contact-location .map {
    padding: 0 15px;
  }
}/*# sourceMappingURL=contact.css.map */