@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(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
.contact-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.contact-banner .bg-wrapper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 540px) {
  .contact-banner .bg-wrapper {
    top: inherit;
    bottom: 10%;
  }
}
.contact-banner .bg-wrapper h1 {
  font-family: Kugile;
  font-weight: 400;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
@media only screen and (max-width: 540px) {
  .contact-banner .bg-wrapper h1 {
    font-weight: 600;
    font-size: 33px;
  }
}

.contact-secA {
  overflow: hidden;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.contact-secA::before {
  content: "";
  position: absolute;
  width: 328px;
  height: 288px;
  top: 78px;
  right: -26px;
  background: url(../../images/footer-bg.png);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .contact-secA::before {
    bottom: 0;
    top: inherit;
  }
}
.contact-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .grid-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
}
.contact-secA .grid-box .grid-box-item {
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1607843137);
  height: 229px;
  padding: 20px;
}
.contact-secA .grid-box .grid-box-item figure {
  width: 35px;
  height: 35px;
  margin: auto;
  margin-bottom: 10px;
}
.contact-secA .grid-box .grid-box-item figure img, .contact-secA .grid-box .grid-box-item figure svg {
  width: 100%;
  height: 100%;
}
.contact-secA .grid-box .grid-box-item figure svg path {
  fill: #D8AF56;
}
.contact-secA .grid-box .grid-box-item h3 {
  font-family: Optima;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}
.contact-secA .grid-box .grid-box-item p {
  color: rgba(255, 255, 255, 0.6980392157);
  max-width: 80%;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}
.contact-secA .grid-box .grid-box-item a {
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #D8AF56;
}
.contact-secA .grid-box .grid-box-item a svg {
  transition: 0.2s ease;
  width: 22px;
}
.contact-secA .grid-box .grid-box-item a:hover svg {
  margin-left: 5px;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) {
  text-align: center;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:first-child {
  display: block;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:first-child p {
  font-size: 16px;
  font-weight: 500;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:last-child {
  color: var(--black);
  background: var(--white);
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 8px 30px;
  margin-top: 20px;
  transition: 0.7s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--white);
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:last-child::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D8AF56;
  transition: 0.7s ease;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:last-child:hover {
  color: var(--white);
  border: 1px solid #D8AF56;
}
.contact-secA .grid-box .grid-box-item:nth-child(2) a:last-child:hover::before {
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid-box .grid-box-item:nth-child(3) {
    grid-column: 1/-1;
    text-align: center;
    height: auto;
  }
}
.contact-secA .grid-box .grid-box-item:nth-child(3) a p {
  font-size: 16px;
  font-weight: 500;
}

.contact-secB {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .contact-secB {
    padding: 50px 0;
  }
}
.contact-secB .box {
  margin: auto;
  max-width: 779px;
  height: auto;
}
.contact-secB .box .heading {
  text-align: center;
  margin-bottom: 70px;
}
@media only screen and (max-width: 540px) {
  .contact-secB .box .heading {
    margin-bottom: 30px;
  }
}
.contact-secB .box .heading h2 {
  font-family: Optima;
  font-weight: 400;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  max-width: 480px;
  margin: auto;
}
@media only screen and (max-width: 540px) {
  .contact-secB .box .heading h2 {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.1;
  }
}
.contact-secB .box .heading p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
}
.contact-secB .box .form {
  margin: auto;
  --item: 2;
}
@media only screen and (max-width: 768px) {
  .contact-secB .box .form {
    max-width: 80%;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .box .form {
    --item: 1;
    --gaptb: 22px;
    max-width: 90%;
  }
}
.contact-secB .box .form .form-group::before {
  background: var(--text);
}
.contact-secB .box .form .form-group .custom-select .current {
  color: var(--white);
}
.contact-secB .box .form label, .contact-secB .box .form textarea {
  color: var(--black);
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.contact-secB .box .form input, .contact-secB .box .form input ~ label, .contact-secB .box .form textarea ~ label {
  color: var(--black);
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.contact-secB .box .form .bottom-btn {
  margin: auto;
}
.contact-secB .box .form .bottom-btn button {
  padding: 12px 50px;
  background: var(--black);
  border-radius: 25px;
  color: var(--white);
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border: 1px solid var(--black);
  transition: 0.7s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-secB .box .form .bottom-btn button::before {
  content: "";
  position: absolute;
  bottom: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D8AF56;
  transition: 0.7s ease;
}
.contact-secB .box .form .bottom-btn button:hover {
  color: var(--white);
  border: 1px solid #D8AF56;
}
.contact-secB .box .form .bottom-btn button:hover::before {
  bottom: 0;
  z-index: -1;
}
.contact-secB .box .form .dropdown-input {
  text-align: left;
}
.contact-secB .box .form .dropdown-input .list li {
  color: var(--white);
  transition: 0.5s ease;
}
.contact-secB .box .form .dropdown-input .list li.focus {
  color: white;
}
.contact-secB .box .form .dropdown-input .list li:hover {
  color: var(--white);
  background: var(--white);
}
.contact-secB .box .form .btn2 {
  margin: 10px auto 0px auto;
}

.contact-secC {
  overflow: hidden;
  height: auto;
  margin-bottom: -6.9px;
  position: relative;
}
.contact-secC iframe {
  width: 100%;
  margin-bottom: 0;
  height: 656px;
}
@media only screen and (max-width: 991px) {
  .contact-secC iframe {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secC iframe {
    height: 60vh;
  }
}/*# sourceMappingURL=contact.css.map */