@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.contact-secA .heading {
  margin: 0 auto 3rem;
  max-width: 600px;
}
.contact-secA .flex {
  gap: 15px;
}
.contact-secA .flex .contact-col {
  text-align: center;
  border: 1px solid #d1d0d0;
  border-radius: 15px;
  padding: 20px;
  flex: 1;
  transition: 0.6s ease;
  cursor: pointer;
}
.contact-secA .flex .contact-col:hover {
  background: var(--lightprime);
}
.contact-secA .flex .contact-col:hover p, .contact-secA .flex .contact-col:hover a {
  color: var(--black);
}
.contact-secA .flex .contact-col .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}
.contact-secA .flex .contact-col .icon svg, .contact-secA .flex .contact-col .icon img {
  width: 100%;
  height: 100%;
}
.contact-secA .flex .contact-col h6 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}
.contact-secA .flex .contact-col p, .contact-secA .flex .contact-col a {
  color: var(--text);
  line-height: 1.3;
  font-size: 16px;
  display: block;
  transition: 0.5s ease;
}
.contact-secA .flex .contact-col p:hover, .contact-secA .flex .contact-col a:hover {
  color: var(--black);
}

.contact-secB {
  background: var(--lightprime);
}
.contact-secB .heading {
  margin: 0 auto 3rem;
  max-width: 600px;
}
.contact-secB .contact_wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.contact-secB .contact_wrapper .form {
  --item: 2;
  --color: var(--black);
}
.contact-secB .contact_wrapper .form select.form-control.valid ~ .custom-select .current {
  color: var(--color);
}
.contact-secB .contact_wrapper .form .btn_wrap {
  justify-content: center;
}

.contact-secC {
  line-height: 0;
}
.contact-secC iframe {
  width: 100%;
  filter: grayscale(1);
  height: 700px;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .contact-secC iframe {
    height: 400px;
  }
}
.contact-secC iframe:hover {
  filter: grayscale(0);
}/*# sourceMappingURL=contact.css.map */