@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.swiper-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  flex-direction: column;
  height: 80vh;
  padding: 0 0 8rem;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap {
    height: 55vh;
    padding: 0 0 3rem;
  }
}
.swiper-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 51%, rgba(0, 0, 0, 0.1) 100%);
}
.swiper-wrap img, .swiper-wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.swiper-wrap ul {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin: 40px 0 60px;
}
.swiper-wrap ul li {
  color: var(--litewhite);
  font-size: 14px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
.swiper-wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}
.swiper-wrap ul li.active {
  color: var(--white);
}
.swiper-wrap ul li.active::after {
  width: 100%;
}
.swiper-wrap .heading {
  text-align: center;
  z-index: 2;
}
.swiper-wrap .heading h2 {
  color: var(--white);
  font-size: 48px;
  text-transform: uppercase;
  margin: 10px 0 30px;
  transform: scale(1.4);
  font-family: "Optima";
}
@media only screen and (max-width: 1280px) {
  .swiper-wrap .heading h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading h2 {
    font-size: 18px;
  }
}
.swiper-wrap .heading h2 span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.swiper-wrap .heading p {
  color: var(--litewhite);
  width: 100%;
  max-width: 524px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading p {
    max-width: 255px;
    font-size: 13px;
  }
}

.contact-secA {
  padding: 60px 0;
}
@media only screen and (max-width: 540px) {
  .contact-secA {
    padding: 40px 0;
  }
}
.contact-secA .heading h5 {
  color: var(--black);
  text-transform: capitalize;
  font-weight: 600;
}
.contact-secA .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding-top: 65px;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 1366px) {
  .contact-secA .grid {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .contact-secA .grid {
    gap: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-secA .grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .grid {
    padding-top: 10px;
  }
}
.contact-secA .grid .item {
  border: 1px solid rgb(191, 191, 191);
  padding: 25px;
  border-radius: 15px;
}
.contact-secA .grid .item .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 540px) {
  .contact-secA .grid .item .head {
    margin-bottom: 10px;
  }
}
.contact-secA .grid .item .head p {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}
.contact-secA .grid .item .head .icon svg {
  width: 34px;
  height: 34px;
}
.contact-secA .grid .item .head .icon svg path {
  fill: var(--black);
}
.contact-secA .grid p {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 20px;
}
.contact-secA .grid a {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-secA .grid a svg {
  width: 24px;
  height: 24px;
}
.contact-secA .grid a svg path[fill] {
  fill: var(--black);
}
.contact-secA .grid a svg path[stroke] {
  stroke: var(--black);
}
.contact-secA .grid .item:not(:first-child) a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
}

.contact-secB {
  padding: 60px 0 125px;
}
@media only screen and (max-width: 540px) {
  .contact-secB {
    padding: 30px 0 60px;
  }
}
.contact-secB .heading {
  text-align: center;
  width: 38%;
  margin: 0 auto;
}
@media only screen and (max-width: 1366px) {
  .contact-secB .heading {
    width: 38%;
  }
}
@media only screen and (max-width: 768px) {
  .contact-secB .heading {
    width: 74%;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .heading {
    width: 100%;
  }
}
.contact-secB .heading h2 {
  margin-bottom: 15px;
  padding: 0 80px;
  font-family: "Optima";
  text-transform: capitalize;
  color: var(--secondary);
}
@media only screen and (max-width: 1540px) {
  .contact-secB .heading h2 {
    padding: 0;
  }
}
.contact-secB .heading p {
  color: var(--text);
}
.contact-secB .form-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 70px 0 0;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .contact-secB .form-grid {
    width: 75%;
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.contact-secB .form-grid .form-group:nth-last-of-type(1) {
  grid-column: 1/span 2;
}
.contact-secB .form-grid .form-group {
  position: relative;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-grid .form-group {
    grid-column: 1 span/2;
  }
}
.contact-secB .form-grid .form-group::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: var(--litewhite);
}
.contact-secB .form-grid .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: red;
  width: 0;
  transition: 0.5s ease;
}
.contact-secB .form-grid .form-group input, .contact-secB .form-grid .form-group textarea {
  color: var(--black);
  font-family: "lato";
}
.contact-secB .form-grid .form-group label {
  color: var(--text);
  font-family: "lato";
}
.contact-secB .form-grid .form-group:focus, .contact-secB .form-grid .form-group.valid {
  outline: none;
}
.contact-secB .form-grid .form-group:focus ~ label, .contact-secB .form-grid .form-group.valid ~ label {
  color: var(--black);
}
.contact-secB .form-grid .btn {
  grid-column: 1/span 2;
  justify-self: center;
  margin: 30px auto 0;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-grid .btn {
    margin-top: 15px;
  }
}
.contact-secB .form-grid .btn-white-rounded {
  background: var(--gradient-c);
  color: white;
  padding: 8px 23px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  transition: 0.7s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--white);
}
.contact-secB .form-grid .btn-white-rounded::before {
  content: "";
  position: absolute;
  left: -110%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-d);
  transition: 0.7s ease;
}
.contact-secB .form-grid .btn-white-rounded:hover {
  color: var(--white);
}
.contact-secB .form-grid .btn-white-rounded:hover::before {
  left: 0;
  z-index: -1;
}
.contact-secB .container-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 20px;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 540px) {
  .contact-secB .container-checkbox {
    gap: 20px;
    margin-top: 10px;
  }
}
.contact-secB .container-checkbox p {
  font-size: 14px;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .contact-secB .container-checkbox p {
    font-size: 12px;
  }
}
.contact-secB .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-secB .container-checkbox .checkmark {
  --clr: var(--secondary);
  position: relative;
  height: 1.3em;
  width: 1.3em;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: 300ms;
}
@media only screen and (max-width: 1366px) {
  .contact-secB .container-checkbox .checkmark {
    width: 2.3em;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .container-checkbox .checkmark {
    width: 5.3em;
  }
}
.contact-secB .container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contact-secB .container-checkbox input:checked ~ .checkmark {
  background-color: var(--clr);
  animation: pulse 500ms ease-in-out;
}
.contact-secB .container-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.contact-secB .container-checkbox .checkmark:after {
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid #E0E0E2;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(5, 2, 59, 0.5647058824);
    rotate: 20deg;
  }
  50% {
    rotate: -20deg;
  }
  75% {
    box-shadow: 0 0 0 10px rgba(5, 2, 59, 0.368627451);
  }
  100% {
    box-shadow: 0 0 0 13px rgba(5, 2, 59, 0.2862745098);
    rotate: 0;
  }
}
.custom-select .current {
  color: var(--text);
  font-family: "lato";
}
.custom-select .current.selected {
  color: var(--text);
}

.map iframe {
  width: 100%;
  height: 950px;
  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: 750px;
  }
}
@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 */