@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.contact-secA {
  position: relative;
}
.contact-secA .tab-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  background: var(--gray-sec);
}
.contact-secA .tab-nav li {
  position: relative;
  padding: 24px 0;
}
.contact-secA .tab-nav li::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
  transform: scaleX(0);
  transition: 0.3s;
}
.contact-secA .tab-nav li.active {
  color: var(--primary);
}
.contact-secA .tab-nav li.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.contact-secA .tab-nav-content {
  position: relative;
}
.contact-secA .tab-nav-content .heading {
  position: relative;
  text-align: center;
  color: var(--color-white);
  padding: 70px 0;
}
.contact-secA .tab-nav-content .heading p {
  position: relative;
  max-width: clamp(648px, 4.167vw, 96px);
  margin: 0 auto;
  width: 100%;
}
.contact-secA .tab-nav-content .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-secA .tab-nav-content .grid .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: 10px;
  background: var(--white);
  text-align: center;
}
.contact-secA .tab-nav-content .grid .item img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-secA .tab-nav-content .grid .item p {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  margin: 7px 0;
}
.contact-secA .tab-nav-content .grid .item a, .contact-secA .tab-nav-content .grid .item span {
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  font-weight: 400;
  color: var(--text);
}

.contact-secB {
  padding: 70px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.contact-secB::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border: 50px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.contact-secB .heading {
  text-align: center;
}
.contact-secB .form-grid {
  padding: 50px 0 0;
  width: 55%;
  margin: auto;
  --item: 2;
  grid-gap: 20px;
  gap: 20px;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .contact-secB .form-grid {
    width: 70%;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-secB .form-grid {
    width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .contact-secB .form-grid {
    width: 95%;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-grid {
    --item: 1;
    width: 100%;
    padding: 30px 0;
  }
}
.contact-secB .form-grid .form-group textarea.valid ~ label:not(.no-focus):focus ~ label,
.contact-secB .form-grid .form-group textarea:not(.no-focus):focus ~ label {
  font-family: "Poppins";
}
.contact-secB .form-grid .form-group label, .contact-secB .form-grid .form-group input, .contact-secB .form-grid .form-group textarea {
  font-weight: 400;
  line-height: 24px;
  font-family: "Poppins";
}
.contact-secB .form-grid .form-group input:not(.no-focus):focus ~ label, .contact-secB .form-grid .form-group input.valid ~ label {
  color: inherit;
}
.contact-secB .form-grid .btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.contact-secB .form-grid .btn {
  padding: 10px 40px;
  font-weight: 400;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-grid .btn {
    width: 100%;
  }
}/*# sourceMappingURL=contact.css.map */