@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.contact_details .contact_details {
  flex: 1;
  max-width: 50%;
  padding: 60px 50px;
  background: var(--lightprimary);
}
.contact_details .contact_details ul {
  margin-top: 40px;
  max-width: 300px;
}
.contact_details .contact_details ul li {
  display: flex;
  align-items: start;
  gap: 15px;
}
.contact_details .contact_details ul li:not(:last-child) {
  margin-bottom: 50px;
}
.contact_details .contact_details ul li .icon {
  flex: 0 1 auto;
  width: 35px;
  height: 35px;
}
.contact_details .contact_details ul li .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.contact_details .contact_details ul li .content {
  flex: 1;
}
.contact_details .contact_details ul li .content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact_details .contact_details ul li .content a {
  display: block;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6980392157);
  line-height: 1.4;
}
.contact_details .contact_details ul li .content a:hover {
  color: var(--black);
}
.contact_details .contact_details ul li .content a:hover span svg {
  transform: translateX(5px);
}
.contact_details .contact_details ul li .content a span {
  color: var(--black);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.contact_details .contact_details ul li .content a span svg {
  width: 24px;
  height: 24px;
  transition: 0.5s ease;
}
.contact_details .contact_details ul li .content a span svg path {
  stroke-width: 4px;
}
.contact_details .contact_form {
  flex: 1;
  max-width: 50%;
  background: #F5F5F5;
  padding: 70px 60px;
}
.contact_details .contact_form .heading {
  max-width: 460px;
  text-align: center;
  margin: 0 auto 40px;
}
.contact_details .contact_form .heading h2 {
  font-size: 36px;
  line-height: 1.1;
}
.contact_details .contact_form .form-grid {
  --item: 2;
}
.contact_details .contact_form .btn_wrap {
  justify-content: center;
  margin-top: 50px;
}
.contact_details .contact_form .btn_wrap .btn {
  --padding: 30px;
}

.map_section {
  line-height: 0;
}
.map_section iframe {
  height: 600px;
  filter: grayscale(1);
  transition: 0.6s ease;
  border: 0;
}
@media only screen and (max-width: 540px) {
  .map_section iframe {
    height: 400px;
  }
}
.map_section iframe:hover {
  filter: grayscale(0);
}/*# sourceMappingURL=contact.css.map */