@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .contact_banner {
    margin-top: calc(var(--headerfixed) + 50px);
  }
}
.contact_banner .bg {
  height: 100vh;
}
@media only screen and (max-width: 768px) {
  .contact_banner .bg {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .contact_banner .bg {
    height: 50vh;
  }
}
.contact_banner .bg video {
  filter: grayscale(1);
}
.contact_banner .bg .banner-wrapper {
  bottom: 20%;
  top: unset;
  left: 50%;
  translate: -50% 20%;
  text-align: center;
  width: 100%;
}
.contact_banner .bg .banner-wrapper .content h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .contact_banner .bg .banner-wrapper .content h2 {
    font-size: 40px;
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 540px) {
  .contact_banner .bg .banner-wrapper .content h2 {
    font-size: 30px;
  }
}

.contact-secA .flex {
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-secA .flex .colA {
  flex: 0 1 30%;
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .contact-secA .flex .colA {
    flex: 0 1 50%;
  }
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colA {
    flex: 0 1 100%;
    width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colA {
    width: 240px;
  }
}
.contact-secA .flex .colA .video-icon {
  width: 300px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 991px) {
  .contact-secA .flex .colA .video-icon {
    width: 250px;
  }
}
@media only screen and (max-width: 769px) {
  .contact-secA .flex .colA .video-icon {
    width: 200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colA .video-icon {
    width: 120px;
  }
}
.contact-secA .flex .colA .video-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-secA .flex .colB {
  flex: 0 1 60%;
  transition: 0.5s ease;
}
.contact-secA .flex .colB .title {
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colB .title {
    text-align: center;
    font-size: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colB .title {
    font-size: 26px;
  }
}
.contact-secA .flex .colB .tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colB .tab-nav {
    justify-content: center;
  }
}
.contact-secA .flex .colB .tab-nav li {
  position: relative;
  transition: 0.5s ease;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colB .tab-nav li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 370px) {
  .contact-secA .flex .colB .tab-nav li {
    font-size: 12px;
  }
}
.contact-secA .flex .colB .tab-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: 0.5s ease;
}
.contact-secA .flex .colB .tab-nav li.active, .contact-secA .flex .colB .tab-nav li:hover {
  color: var(--primary);
}
.contact-secA .flex .colB .tab-nav li.active::before, .contact-secA .flex .colB .tab-nav li:hover::before {
  width: 100%;
}
.contact-secA .flex .colB .tab-nav-content {
  overflow: hidden;
}
.contact-secA .flex .colB .tab-nav-content .tabs {
  transition: 0.5s ease;
  transform: translateY(0%);
}
.contact-secA .flex .colB .tab-nav-content .tabs:not(.active) {
  transform: translateY(100%);
}
.contact-secA .flex .colB .contact_wrapper {
  padding: 30px 0 20px;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colB .contact_wrapper {
    padding: 30px 0 20px;
  }
}
.contact-secA .flex .colB .contact_wrapper h6 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-secA .flex .colB .contact_wrapper .contact_item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-secA .flex .colB .contact_wrapper .contact_item:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colB .contact_wrapper .contact_item {
    align-items: start;
    justify-content: center;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colB .contact_wrapper .contact_item {
    gap: 15px;
  }
}
.contact-secA .flex .colB .contact_wrapper .contact_item .icon {
  flex: 0 1 auto;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colB .contact_wrapper .contact_item .icon {
    width: 35px;
    height: 35px;
  }
}
.contact-secA .flex .colB .contact_wrapper .contact_item .icon svg, .contact-secA .flex .colB .contact_wrapper .contact_item .icon img {
  vertical-align: middle;
}
@media only screen and (max-width: 540px) {
  .contact-secA .flex .colB .contact_wrapper .contact_item .icon svg, .contact-secA .flex .colB .contact_wrapper .contact_item .icon img {
    width: 20px;
    height: 20px;
  }
}
.contact-secA .flex .colB .contact_wrapper .contact_item a {
  display: block;
  flex: 1;
  max-width: 420px;
  line-height: 1.4;
}
.contact-secA .flex .colB .contact_wrapper .contact_item a:hover {
  color: var(--primary);
}
.contact-secA .flex .colB .btn_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .contact-secA .flex .colB .btn_wrap {
    justify-content: center;
  }
}
.contact-secA .flex .colB .btn_wrap.mb-2 {
  margin-bottom: 30px;
}
.contact-secA .flex .colB .btn_wrap .btn {
  text-transform: none;
}

.contact-secB {
  background-color: var(--primary);
}
.contact-secB .heading {
  max-width: 480px;
  margin: 0 auto;
}
.contact-secB .heading .icon {
  width: 120px;
  margin: 0 auto;
}
.contact-secB .heading h3 {
  color: var(--white);
  font-size: 36px;
  font-weight: 500;
  text-transform: none;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .contact-secB .heading h3 {
    font-size: 28px;
    padding-bottom: 5px;
    max-width: 375px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .heading h3 {
    font-size: 24px;
  }
}
.contact-secB .heading .ico {
  width: 70px;
  line-height: 0;
  margin-bottom: 38px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .contact-secB .heading .ico {
    width: 60px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .contact-secB .heading .ico {
    width: 50px;
    margin-bottom: 18px;
  }
}
.contact-secB .form-container {
  padding-top: 50px;
  max-width: 600px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-container {
    padding-top: 30px;
  }
}
.contact-secB .form-container .form {
  --labelbefore: var(--white);
  --labelafter: var(--white);
  --borderbefore: var(--white);
  --borderafter: var(--white);
  --color: var(--white);
  --item: 2;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-container .form {
    --item: 1;
    --gaptb: 25px;
  }
}
.contact-secB .form-container .form .btn_wrap {
  text-align: center;
}
.contact-secB .form-container .form .btn_wrap .btn {
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .contact-secB .form-container .form .btn_wrap .btn {
    max-width: 100%;
  }
}

.contant-secC {
  line-height: 0;
  height: 100vh;
}
@media only screen and (max-width: 768px) {
  .contant-secC {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .contant-secC {
    height: 55vh;
  }
}
.contant-secC iframe {
  filter: grayscale(1);
  width: 100%;
  height: 100%;
}

.form .phone-field {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form .phone-field .iti--separate-dial-code .iti__selected-flag {
  background-color: unset;
}/*# sourceMappingURL=contact.css.map */