@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.contact-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .contact-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .contact-banner {
    height: 60vh;
  }
}
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 47.79%, rgba(0, 0, 0, 0.75) 88.57%), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.07%, rgba(0, 0, 0, 0.7) 89.64%);
}
.contact-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 93%;
}
@media only screen and (max-width: 540px) {
  .contact-banner .bg-wrapper {
    top: inherit;
    bottom: 0;
  }
}
.contact-banner .bg-wrapper .heading {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.contact-banner .bg-wrapper .heading p {
  font-family: "Circular";
  font-weight: 300;
  color: var(--white);
  font-size: 30px;
  margin-top: 15px;
}
@media only screen and (max-width: 540px) {
  .contact-banner .bg-wrapper .heading p {
    text-align: center;
  }
}

.contact-secA {
  padding: 90px 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .contact-secA {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 675px) {
  .contact-secA {
    padding: 50px 0 30px;
  }
}
.contact-secA .circle-effect {
  top: 100%;
  left: 50%;
}
.contact-secA .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid {
    grid-template-columns: 1fr;
  }
}
.contact-secA .grid .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.contact-secA .grid .item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.contact-secA .grid .item .content {
  text-align: center;
  margin-top: 30px;
  padding: 0 80px;
}
@media only screen and (max-width: 1366px) {
  .contact-secA .grid .item .content {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-secA .grid .item .content {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid .item .content {
    padding: 0 20px 30px 20px;
  }
}
.contact-secA .grid .item .content h6 {
  margin-bottom: 10px;
}
.contact-secA .grid .item .content .btn-fill {
  margin-top: 20px;
}
.contact-secA .grid .item .content a:not(.btn-fill) {
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 0;
  display: block;
  font-size: 14px;
}
.contact-secA .grid .item .content .social {
  display: flex;
  gap: 12px;
}
.contact-secA .grid .item .content .social a {
  padding: 10px;
  border: 1px solid var(--white);
  border-radius: 50%;
}
.contact-secA .grid .item .content .social a svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .contact-secA .grid .item .content .social a svg {
    width: 20px;
    height: 20px;
  }
}
.contact-secA .grid .item .content .social a svg path {
  fill: var(--white);
}
.contact-secA .grid .item .content .social a:hover {
  background: var(--white);
}
.contact-secA .grid .item .content .social a:hover svg path {
  fill: var(--black);
}

.map iframe {
  width: 100%;
  height: 445px;
  border: none;
  display: block;
  filter: grayscale(100%) contrast(110%) brightness(90%);
  transition: filter 0.3s ease;
}
@media only screen and (max-width: 1366px) {
  .map iframe {
    height: 650px;
  }
}
@media only screen and (max-width: 991px) {
  .map iframe {
    height: 550px;
  }
}
@media only screen and (max-width: 540px) {
  .map iframe {
    height: 350px;
  }
}
.map iframe:hover {
  filter: grayscale(0%);
}/*# sourceMappingURL=contact.css.map */