.btn {
  font-family: var(--font-montserrat);

  background-color: transparent !important;

  width: 100%;

  border-radius: unset;

  color: #000 !important;

  font-size: 14px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1.6px;

  text-transform: uppercase;

  padding: 15px;

  position: relative;

  transition: all 0.4s ease-in-out;
}

.btn::after {
  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  left: 0;

  border: 2px solid #fff;

  z-index: -1;

  -webkit-transform-origin: center bottom;

  -ms-transform-origin: center bottom;

  transform-origin: center bottom;

  -webkit-transform: scaleY(1.2);

  -ms-transform: scaleY(1.2);

  transform: scaleY(1.2);

  opacity: 0;

  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn::before {
  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  left: 0;

  background-color: #fff;

  z-index: -1;

  -webkit-transform-origin: center bottom;

  -ms-transform-origin: center bottom;

  transform-origin: center bottom;

  -webkit-transform: scaleY(1);

  -ms-transform: scaleY(1);

  transform: scaleY(1);

  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn:hover {
  color: #fff !important;
}

.btn:hover:before {
  opacity: 0;

  -webkit-transform: scaleY(0);

  -ms-transform: scaleY(0);

  transform: scaleY(0);

  transition-delay: 0s;
}

.btn:hover::after {
  opacity: 1;

  -webkit-transform: scaleY(1);

  -ms-transform: scaleY(1);

  transform: scaleY(1);
}

.slick-arrow {
  border: 1px solid rgba(93, 93, 93, 0.4);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  font-size: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.slick-arrow::after {
  content: "";
  width: 20px;
  height: 20px;
  mask-image: url(../img/svg/arrow-slide.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 20px;
  background: #fff;
  margin: auto;
  transition: all 0.4s ease-in-out;
  position: relative;
  left: 0;
  right: 0;
  display: block;
}

.slick-prev.slick-arrow::after {
  transform: rotate(180deg);
}

.sec-md-title {
  color: var(--white);

  font-weight: 600;

  font-size: 50px;

  line-height: 1.2;

  letter-spacing: 0.8px;
}

.sec-title {
  color: var(--white);

  font-weight: 600;

  font-size: 70px;

  line-height: 1.2;

  letter-spacing: 0.8px;
}

.footer {
  padding-top: 104px;

  display: block;
}

.footer-wrap {
  padding-bottom: 70px;
}

.foot-box .foot-logo {
  width: 195px;

  display: block;
}

.foot-box .foot-logo img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.foot-contact {
  margin-bottom: 30px;

  padding-left: 30px;

  position: relative;

  color: #fff;
}

.foot-contact a,
.foot-contact .address-title {
  color: #fff;

  font-family: var(--font-montserrat);

  font-weight: 400;

  font-size: 18px;

  line-height: 1.1;

  transition: all 0.4s ease-in-out;
}

.foot-contact a:hover {
  color: #7a7a7a;
}

.foot-contact a.foot-contact-call {
  font-size: 22px;
}

.foot-contact a.foot-contact-mail {
  font-size: 14px;
}

.foot-contact i {
  position: absolute;

  left: 0;

  top: 4px;
}

.foot-address .foot-contact {
  margin-bottom: 20px;
}

.foot-address .address-box {
  padding-left: 30px;
}

.foot-address .address-box span {
  color: #7a7a7a;

  font-size: 14px;

  font-weight: 500;

  font-family: var(--font-montserrat);

  line-height: 1.7;

  margin-bottom: 10px;

  display: block;
}

.qld-office-address .address-box span {
  max-width: 90%;
}

.copy-right-sec {
  padding-bottom: 15px;
}

.copy-right-sec p {
  color: #fff;

  font-family: var(--font-montserrat);

  font-weight: 400;

  font-size: 13px;

  line-height: 1.2;
}

.copy-right-sec p a {
  color: #fff;

  transition: all 0.4s ease-in-out;
}

.copy-right-sec p a:hover {
  color: #7a7a7a;
}

.powerdby img {
  margin-left: 2px;

  max-width: 38px;
}

.lets-discuss-sec {
  position: relative;

  padding: 76px 0 138px;
}

.lets-discuss-sec .container {
  max-width: 1065px;
}

.lets-discuss-bg-img {
  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: -1;

  opacity: 50%;

  mix-blend-mode: luminosity;
}

.lets-discuss-sec::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

  background: linear-gradient(
    180deg,
    #000000 21.99%,

    rgba(126, 134, 134, 0.2) 100%
  );
}

.lets-discuss-wrap {
  position: relative;

  z-index: 2;
}

.lets-discuss-wrap .sec-head {
  text-align: center;

  margin-bottom: 50px;
}

.lets-discuss-wrap .sec-md-title {
  margin-bottom: 20px;
}

.lets-discuss-wrap .sec-head p {
  color: #7a7a7a;

  font-weight: 400;

  font-size: 18px;

  line-height: 1.5;

  font-family: var(--font-montserrat);

  letter-spacing: 0.8px;

  text-align: center;

  display: block;
}

.lets-discuss-logo-list {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  width: 100%;

  max-width: 384px;
}

.lets-discuss-logo-item {
  width: calc(50% - 4px);

  height: 96px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #fff;

  padding: 15px;
}

.lets-discuss-logo-item img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.lets-discuss-form .form-group {
  margin-bottom: 0;

  display: block;

  padding: 0 1px;

  position: relative;
}

.form-control {
  border-radius: unset;

  background-color: rgba(0, 0, 0, 0.85) !important;

  border-color: #7a7a7a !important;

  font-family: var(--font-montserrat);

  color: #fff;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.3;

  padding: 21px 35px;

  resize: none;
}

select {
  background-image: url(../img/svg/down.svg);

  background-position: 95% center;

  background-repeat: no-repeat;

  background-size: 15px;

  cursor: pointer;
}

textarea.form-control {
  height: 140px;
}

.form-control::placeholder {
  font-weight: 400;

  color: #747474;
}

.form-control:focus {
  box-shadow: 0px 2px 14px 2px #ffffff59;

  background-color: rgba(0, 0, 0, 0.85);

  color: #fff;
}

select:has(option:checked:first-child) {
  color: var(--grey);
}

select:has(option:checked:first-child) option {
  color: var(--white);
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap label.error {
  position: absolute;

  right: 0;

  top: -1.25rem;

  width: auto;

  height: auto;

  margin: 0;

  font-size: 12px !important;

  line-height: 12px !important;

  background: #fb0101;

  padding: 0.3125rem 0.3125rem 0.25rem !important;

  color: #fff !important;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:after,
.wpcf7-form-control-wrap label.error:after,
.error:after {
  border-color: #fb0101 transparent transparent;

  -o-border-image: none;

  border-image: none;

  border-right: 0.375rem solid transparent;

  border-style: solid;

  border-width: 0.375rem;

  content: "";

  height: 0;

  left: 0.3125rem;

  position: absolute;

  bottom: -0.625rem;

  width: 0;

  transform: rotate(360deg);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fb0101 !important;

  color: #fb0101 !important;

  font-size: 12px;
  font-family: var(--font-montserrat);
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.3125rem !important;

  text-align: center !important;

  margin: 15px 0 0 !important;
}

.lets-discuss-form .form-group .form-control {
  border-bottom: none;
}

.lets-discuss-form .form-group:last-child .form-control {
  border-bottom: 1px solid #7a7a7a;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;

  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;

  transition: background-color 5000000s ease-in-out 0s !important;
}

.btn.btn-submit {
  padding: 20px 15px;
}

.lets-discuss-form .submit-btn {
  margin-top: -1px;
}

.lets-discuss-form .submit-btn .btn {
  background-color: #fff !important;

  border-color: #fff !important;
}

.lets-discuss-form .submit-btn .btn:hover {
  background-color: transparent !important;
}

.our-project-sec.common-sec {
  padding-bottom: 62px;

  padding-top: 25px;
}

.our-project-sec .sec-head {
  margin-bottom: 35px;

  position: relative;

  z-index: 99;
}

.our-project-location p {
  color: #7a7a7a;

  font-family: var(--font-montserrat);

  font-weight: 400;

  font-size: 18px;

  line-height: 1.6;

  letter-spacing: 0.8px;
}

.project-video {
  overflow: hidden;

  position: relative;

  cursor: none;

  margin-inline: auto;

  will-change: width;

  min-height: 550px;

  margin-left: -17px;

  margin-top: 90px;
}

.project-video video {
  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 70%;
}

.project-video.playing video {
  opacity: 100%;
}

.cursor {
  position: fixed;

  top: 50%;

  left: -100px;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  pointer-events: none;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  z-index: 99999;

  opacity: 0;

  scale: 0.5;

  transition: opacity 0.3s, scale 0.3s;
}

.animated-cursor {
  width: 115px;

  aspect-ratio: 1 / 1;

  position: relative;

  cursor: pointer;
}

.project-video.playing .play-icon {
  display: none;
}

.project-video.playing .pause-icon {
  display: block;
}

.pause-icon {
  display: none;
}

.animated-cursor::before {
  content: "";

  position: absolute;

  background-image: url(../img/svg/play-icon.svg);

  background-repeat: no-repeat;

  background-size: contain;

  width: 65px;

  aspect-ratio: 1 / 1;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

  z-index: 1;
}

.project-video.playing .animated-cursor::before {
  background-image: url(../img/svg/pause-icon.svg);
}

.animated-cursor img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  -webkit-animation: rotate 10s normal linear infinite;

  animation: rotate 10s normal linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);

    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);

    transform: rotate3d(0, 0, 1, 90deg);
  }

  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);

    transform: rotate3d(0, 0, 1, 180deg);
  }

  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);

    transform: rotate3d(0, 0, 1, 270deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);

    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.our-project-sec .container {
  position: relative;
}

.our-project-sec .project-video-favicon {
  position: absolute;

  bottom: 0;

  left: -150px;

  max-width: 368px;

  opacity: 20%;
}

.our-project-sec .project-video-favicon img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.why-choose-silder {
  margin: 0 -10px;
}

.why-choose-silde {
  padding: 0 10px;

  height: 100%;
}

.why-choose-silde-box {
  background-color: #1d1d1d;

  padding: 42px 35px 31px 35px;

  height: 100%;
}

.why-choose-silde-box .img-box {
  width: 52px;

  aspect-ratio: 1/1;

  margin-bottom: 36px;
}

.why-choose-silde-box .img-box img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.why-choose-box-con p {
  font-weight: 400;

  font-style: Italic;

  font-size: 16px;

  line-height: 1.5;

  color: #fff;

  font-family: var(--font-montserrat);
}

.why-choose-silder .slick-track {
  display: flex;
}

.why-choose-silder .slick-slide {
  height: inherit !important;
}

.why-choose-silder .slick-slide > div {
  height: 100%;
}

.why-choose-silder .slick-list {
  margin-right: -70px;
}

.why-choose-us-wrap {
  clip-path: border-box;

  padding-left: calc((100% - 1272px) / 2);
}

.why-choose-us-head {
  max-width: 94%;
}

.why-choose-us-wrap .sec-head {
  padding-right: 15px;
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
}

.about-team-slider-btn {
  max-width: 100px;
  flex: 0 0 100px;
}

.why-choose-us-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 42px;
}

.slick-dots {
  display: block;

  text-align: center;

  margin-top: 20px;
}

.slick-dots li {
  display: inline-block;

  width: auto;

  list-style: none;

  padding: 0 3px;
}

.slick-dots li button {
  font-size: 0;

  height: 13px;

  width: 13px;

  border: 2px solid rgba(255, 255, 255, 0.6);

  position: relative;

  background-color: transparent;

  -moz-transition: all 0.4s ease-in-out;

  -webkit-transition: all 0.4s ease-in-out;

  transition: all 0.4s ease-in-out;

  cursor: pointer;

  outline: none;

  position: relative;

  display: inline-block;

  vertical-align: middle;

  transition: all 0.4s ease-in-out;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
  border-color: rgba(255, 255, 255, 0.8);

  background-color: rgba(255, 255, 255, 0.35);
}

.nav-button-sec {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  left: 0;

  text-align: left;

  padding: 0 20px 0 40px;

  z-index: 999;
}

.c-nav-button {
  background-color: transparent;
}

.c-nav-button_icon {
  position: relative;

  display: inline-block;

  vertical-align: middle;

  width: 17px;

  height: 28px;

  text-align: center;

  position: relative;
}

.c-nav-button_label {
  font-weight: 500;

  color: #7a7a7a;

  font-size: 11px;

  line-height: 1.1;

  letter-spacing: 2.4px;

  font-family: var(--font-orbitron);

  text-transform: uppercase;

  padding-left: 15px;

  position: relative;

  transition: all 0.4s ease-in-out;
}

.c-nav-button_label_value.-open {
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);

  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);

  visibility: hidden;
}

.c-nav-button_label_value {
  position: absolute;

  top: 0;

  left: 0;
}

.c-nav-button_label_value.-close {
  position: relative;
}

.c-nav-button:hover .c-nav-button_label {
  color: #fff;
}

.has-nav-open .c-nav-button:hover .c-nav-button_label {
  color: #000;
}

.c-footer-item.left {
  position: relative;

  position: fixed;

  bottom: 68px;

  padding: 0 20px 0 40px;

  width: auto;

  z-index: 700;
}

.c-footer-item.left {
  left: 0;
}

.c-footer_socials {
  margin: 0;

  padding: 0;
}

.c-footer_socials_item {
  display: block;
}

.c-footer_socials_item a {
  display: block;

  padding: 12px 0;

  transition: all 0.4s ease-in-out;
}

.c-footer_socials_item a .icon {
  transition: all 0.4s ease-in-out;
}

.c-footer_socials_item a.instagram:hover .icon {
  background-color: #c13584;
}

.c-footer_socials_item a.facebook:hover .icon {
  background-color: #4267b2;
}

.c-footer_socials_item a.linkedin:hover .icon {
  background-color: #0a66c2;
}

.get-in-touch-btn {
  position: fixed;

  top: 50%;

  transform: translateY(-50%) rotate(-90deg);

  right: -10px;

  text-align: left;

  padding: 20px 0 0 0;

  z-index: 999;
}

.get-in-touch-btn a {
  font-weight: 500;

  font-size: 14px;

  line-height: 1.1;

  letter-spacing: 1.8px;

  color: #fff;

  transition: all 0.4s ease-in-out;
}

.get-in-touch-btn a:hover {
  color: #7a7a7a;
}

/******* Mega Menu  *******/

.mega-menu {
  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 0;

  visibility: hidden;

  transition: visibility 0s 1.2s;

  transition: all 1s ease-in-out;
}

.has-nav-open .mega-menu {
  z-index: 9999;

  visibility: visible;

  opacity: 1;
}

.o-layout {
  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0;

  margin-left: 0;
}

.c-header {
  position: fixed;

  top: 0;

  right: 0;

  left: 0;

  transition: color 0.3s cubic-bezier(0.4, 0, 0, 1) 0.45s;

  z-index: 801;

  pointer-events: none;
}

.c-nav_header {
  margin-bottom: 9vw;

  opacity: 0;

  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.o-background {
  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  display: block;

  background-position: center;

  background-size: cover;
}

.o-layout.-full {
  height: 100%;
}

.o-layout_item {
  display: inline-block;

  vertical-align: top;

  width: 100%;

  font-size: 1rem;

  padding-left: 0;
}

.c-nav_background_column {
  position: relative;
}

.o-layout.-full .o-layout_item {
  height: 100%;
}

.u-1\/6 {
  width: 16.6666666667% !important;
}

.c-nav_background_column::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  background-color: #fff;

  -webkit-transform: scaleX(0);

  -ms-transform: scaleX(0);

  transform: scaleX(0);

  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.6s;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.6s;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.6s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.6s;

  -webkit-transform-origin: center right;

  -ms-transform-origin: center right;

  transform-origin: center right;

  transition-delay: 0.6s;
}

.has-nav-open .c-nav_background_column::after {
  -webkit-transform: scaleX(1);

  -ms-transform: scaleX(1);

  transform: scaleX(1);

  -webkit-transform-origin: center left;

  -ms-transform-origin: center left;

  transform-origin: center left;

  transition-delay: 0s;
}

.mega-menu-inner {
  position: relative;

  padding: 50px 33px 62px;

  height: 100%;
}

.mega-menu-header {
  max-width: 160px;
}

.mega-menu-header a img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.mega-menu .close-menu {
  opacity: 0;

  display: flex;

  align-items: center;

  color: #000;

  font-weight: 500;

  font-size: 11px;

  line-height: 1.1;

  letter-spacing: 1.18px;

  text-transform: uppercase;

  cursor: pointer;

  column-gap: 15px;

  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  transition: all 1s ease-in-out;
}

.has-nav-open .mega-menu .close-menu {
  opacity: 1;
}

.has-nav-open .c-footer-item.left {
  z-index: 99999;

  transition: all 1s ease-in-out;
}

.has-nav-open .c-footer_socials_item a .icon {
  background-color: #000;
}

.mega-menu-content {
  position: fixed;

  height: 100%;

  left: 250px;

  top: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.mega-menu-content ul {
  margin: 0;

  padding: 0;

  list-style: none;

  max-height: 600px;

  overflow: hidden;

  overflow-y: auto;
}

.mega-menu-content ul li {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.mega-menu-content ul li {
  animation: menuAnimation1 0.55s ease-in-out both;
  opacity: 0;
}

.has-nav-open .mega-menu-content ul li {
  animation: menuAnimation2 0.7s ease-in-out both;
  opacity: 1;
}

.mega-menu-content ul li:nth-child(1) {
  animation-delay: 0.1s;
}

.mega-menu-content ul li:nth-child(2) {
  animation-delay: 0.2s;
}

.mega-menu-content ul li:nth-child(3) {
  animation-delay: 0.3s;
}

.mega-menu-content ul li:nth-child(4) {
  animation-delay: 0.4s;
}

.mega-menu-content ul li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes menuAnimation1 {
  0% {
    transform: translateX(0%);

    opacity: 1;
  }

  100% {
    transform: translateX(100%);

    opacity: 0;
  }
}

@keyframes menuAnimation2 {
  0% {
    transform: translateX(-100%);

    opacity: 0;
  }

  100% {
    transform: translateX(0%);

    opacity: 1;
  }
}

/* 

.has-nav-open .mega-menu-content ul li:nth-child(1) {

    transition-delay: .28s;

}



.has-nav-open .mega-menu-content ul li:nth-child(2) {

    transition-delay: .36s;

}



.has-nav-open .mega-menu-content ul li:nth-child(3) {

    transition-delay: .44s;

}



.has-nav-open .mega-menu-content ul li:nth-child(4) {

    transition-delay: 52s;

}



.has-nav-open .mega-menu-content ul li:nth-child(4) {

    transition-delay: .6s;

} */

.mega-menu-content ul li a {
  color: #000;

  font-family: var(--font-orbitron);

  font-weight: 600;

  font-size: 90px;

  line-height: 1.1;

  display: block;

  position: relative;

  transition: all 0.4s ease-in-out;
}

.mega-menu-content ul li a:hover,
.mega-menu-content ul li.current_page_item a {
  color: #7a7a7a;
}

.company-contact-info {
  display: flex;

  align-items: center;

  column-gap: 190px;

  padding-top: 160px;
}

.company-contact-info .mega-menu-contact-info {
  color: #000;

  font-family: var(--font-montserrat);

  font-weight: 500;

  font-size: 28px;

  line-height: 1.1;

  position: relative;

  opacity: 0;

  -webkit-transform: translateY(60px);

  -ms-transform: translateY(60px);

  transform: translateY(60px);

  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);

  transition: all 0.4s ease-out;
}

.company-contact-info .mega-menu-contact-info a {
  color: #000;

  font-family: var(--font-montserrat);

  font-weight: 500;

  font-size: 28px;

  line-height: 1.1;

  display: flex;

  align-items: center;

  gap: 10px;

  width: fit-content;
}

.has-nav-open .company-contact-info .mega-menu-contact-info {
  opacity: 1;

  -webkit-transform: translateY(0);

  -ms-transform: translateY(0);

  transform: translateY(0);
}

.has-nav-open .company-contact-info .mega-menu-contact-info:nth-child(1) {
  transition-delay: 1.1s;
}

.has-nav-open .company-contact-info .mega-menu-contact-info:nth-child(2) {
  transition-delay: 1.2s;
}

.company-contact-info .mega-menu-contact-info a:hover {
  color: #7a7a7a !important;
}

.company-contact-info .mega-menu-contact-info::before {
  content: "";

  position: absolute;

  width: 100%;

  bottom: -10px;

  left: 0;

  height: 4px;

  background-color: #000;
}

.company-contact-info .mega-menu-contact-info .icon {
  width: 26px;

  height: 26px;

  background-color: #000;
}

.mega-menu-icon {
  position: absolute;

  right: 35px;

  bottom: 0;

  max-width: 250px;

  opacity: 0;

  visibility: hidden;

  transition: all 1s ease-in-out;
}

.has-nav-open .mega-menu-icon {
  opacity: 1;

  visibility: visible;
}

.mega-menu-icon img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

/* services */

.breadcrumbmain {
  padding-top: 200px;
}
.load-show {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.load-show.show {
  opacity: 1;
  visibility: visible;
}

.breadcrumb span {
  font-weight: 400;

  font-size: 18px;

  line-height: 1.2;

  font-family: "Orbitron", sans-serif;
}

.breadcrumb {
  padding-top: 15px;
}

.breadcrumb .breadcrumb_last {
  color: #7a7a7a;
}

.services-row-main .common-box .cms-con {
  margin-bottom: 33px;
}

.services-row-main .common-box .btn {
  width: fit-content;
}

.services-sec .services-row {
  margin-bottom: 140px;
}

.services-sec .services-top-con .sec-head {
  margin-bottom: 50px;
}

.services-sec .services-row:nth-child(even) .services-row-main {
  flex-direction: row-reverse;
}

.services-sec .about-bottom-left {
  padding-top: 0;

  padding-bottom: 0;
}

.services-row-main .about-bottom-left .inner-con {
  max-height: 500px;

  padding-right: 10px;

  overflow-y: auto;

  -webkit-overflow-scrolling: touch;

  /* Enables momentum scroll on iOS */

  overscroll-behavior: contain;

  /* Prevents scroll chaining */

  touch-action: auto;

  touch-action: pan-y;

  /* or 'auto' */
}

.about-bottom-left .inner-con::-webkit-scrollbar {
  width: 6px;

  background-color: rgb(122 122 122 / 15%);

  border-radius: 20px;
}

.about-bottom-left .inner-con::-webkit-scrollbar-thumb {
  background-color: rgb(122 122 122 / 55%);

  border-radius: 20px;
}

/* contactus */

.contact-us-sec {
  padding-top: 100px;
}

.lets-discuss-form {
  position: relative;
}

.contact-form .lets-discuss-form:before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 2px;

  background-color: #fff;

  transition: all 0.4s ease-in-out;

  -webkit-transition-duration: 0.8s;

  -moz-transition-duration: 0.8s;

  -ms-transition-duration: 0.8s;

  transition-duration: 0.8s;
}

.contact-form.active .lets-discuss-form:before {
  -webkit-transform: none;

  -ms-transform: none;

  transform: none;

  left: 0;
}

.contact-form .lets-discuss-form {
  padding-top: 150px;
}

.contact-row .sec-title {
  text-decoration: underline;

  text-underline-offset: 20px;

  text-decoration-color: var(--light-grey);
}

.contact-row .sec-head {
  padding-bottom: 70px;

  margin-bottom: 0;
}

.contact-row {
  margin-bottom: 130px;
}

.contact-call.contact-row {
  max-width: 50%;

  margin-left: auto;
}

.contact-socials.contact-row {
  max-width: 50%;

  text-align: center;
}

.contact-socials .c-footer_socials_item a {
  background-color: #fff;

  margin-bottom: 70px;

  border-radius: 100px;

  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-left: auto;

  margin-right: auto;
}

.contact-socials .c-footer_socials_item:last-child a {
  margin-bottom: 0;
}

.contact-socials .c-footer_socials_item a .icon {
  background-color: var(--black);

  width: 26px;

  height: 26px;
}

.contact-form {
  width: 50%;

  margin-left: auto;

  overflow: hidden;
}

.contact-us-sec .contact-row:nth-child(3) {
  margin-bottom: -30px;
}

/* about-us */

.about-team-slider-btn {
  display: flex;
  gap: 10px;
}

.about-us-sec .about-bottom-right {
  margin-left: auto;
}

.about-us-sec .about-img {
  margin-top: 0;
}

.about-us-sec .about-top-main {
  margin-bottom: 24px;
}

.about-us-sec .about-top-right {
  padding-top: 22px;
}

.about-details-box {
  padding: 33px;

  background: #1d1d1d;

  height: 100%;
}

.details-box-icon {
  margin-bottom: 30px;
}

.details-box-con p {
  font-weight: 400;

  font-size: 14px;

  line-height: 1.5;

  color: #7a7a7a;
}

.about-team-col{pointer-events: none;}

.about-team-name {
  /*position: absolute;

  top: 72px;*/

  max-width: 318px;

  opacity: 0;

  transition: opacity 0.4s ease-in-out;

  padding: 24px 20px;
  padding-bottom: 0;
}

.about-team-con {
  position: absolute;

  bottom: 0;

  width: 100%;

  opacity: 0;

  transition: opacity 0.4s ease-in-out;
}

.about-team-con .team-role {
  padding: 24px 20px;

  font-weight: 600;

  position: relative;
}

.about-team-con .team-role:before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 2px;

  background-color: #fff;

  transition: all 0.4s ease-in-out;

  -webkit-transition-duration: 0.8s;

  -moz-transition-duration: 0.8s;

  -ms-transition-duration: 0.8s;

  transition-duration: 0.8s;
  transition-delay: 0.4s;
}

.slick-current .about-team-con .team-role:before {
  -webkit-transform: none;

  -ms-transform: none;

  transform: none;

  left: 0;
}

.about-team-con p {
  margin-bottom: 0;

  padding: 24px 20px;

  font-size: 14px;

  line-height: 1.5;

  padding-bottom: 35px;
}

.about-team-slider .slick-current .about-team-name,
.about-team-slider .slick-current .about-team-con,
.about-team-sec .slick-current .about-team-img::before {
  opacity: 1;
}

.about-team-slider.slick-initialized.slick-slider {
  padding-right: 320px;

  overflow: hidden;
}

.about-team-slider .slick-list {
  overflow: visible;
}

.about-team-img img {
  width: 100%;

  object-fit: cover;

  aspect-ratio: 637/847;
}

.area-service-sec .about-img {
  margin-top: 0;

  z-index: 1;
}

.area-service-sec .sec-head {
  margin-bottom: 50px;
}

.area-service-sec .about-bottom-main {
  z-index: 1;
}

.area-service-sec .about-img iframe {
  filter: grayscale(1);
}

.services-sec .about-bottom-main {
  position: relative;

  z-index: 1;

  align-items: center;
}

.services-sec .common-box p {
  font-size: 14px;

  margin-bottom: 10px;

  line-height: 1.5;
}

.about-team-sec .about-team-img::before {
  position: absolute;

  content: "";

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background-color: rgb(0 0 0 / 40%);

  opacity: 0;

  transition: opacity 0.4s ease-in-out;
}

.about-team-sec .why-choose-us-wrap .sec-head {
  margin-bottom: 40px;
}

.contact-info.contact-row a,
.contact-call.contact-row a {
  font-weight: 800;

  font-size: 24px;
}

/* .about-team-slider,

.about-team-slider * {

  pointer-events: none;

  user-select: none;

  touch-action: none;

} */

@media (min-width: 1000px) {
  .u-1\/6\@from-medium {
    width: 16.6666666667%;
  }

  .c-nav {
    padding-top: 8.5714285714rem;
  }
}

.c-nav_background_column:last-child::after {
  background-color: #000;
}

/******* Mega Menu  *******/

.has-nav-open {
  overflow: hidden;
}

/* responsive */

@media only screen and (hover: hover) {
  .slick-arrow:hover {
    background-color: #4c4c4c;
  }

  .slick-arrow:hover::after {
    background-color: #fff;
  }
}

@media only screen and (max-width: 1699px) {
  .our-project-sec .project-video-favicon {
    left: -50px;

    max-width: 298px;
  }

  .mega-menu-icon {
    right: 20px;

    max-width: 220px;

    padding-left: 20px;
  }

  .mega-menu-content ul li a {
    font-size: 70px;
  }

  .breadcrumbmain {
    padding-top: 180px;
  }

  .services-sec .services-row {
    margin-bottom: 120px;
  }

  .services-sec .services-top-con .sec-head {
    margin-bottom: 40px;
  }

  .contact-row {
    margin-bottom: 100px;
  }

  .contact-socials .c-footer_socials_item a {
    margin-bottom: 60px;
  }

  .contact-row .sec-head {
    padding-bottom: 60px;
  }

  .contact-form .lets-discuss-form {
    padding-top: 130px;
  }
}

@media only screen and (max-width: 1499px) {
  .why-choose-silde-box {
    padding: 30px;
  }

  .our-project-sec .project-video-favicon {
    left: 0;

    max-width: 260px;
  }

  .c-nav-button_label {
    display: none;
  }

  .nav-button-sec,
  .c-footer-item.left {
    padding: 0 20px;
  }

  .get-in-touch-btn {
    padding: 40px 0 0 0;
  }

  .breadcrumbmain {
    padding-top: 160px;
  }

  .services-sec .services-row {
    margin-bottom: 100px;
  }

  .contact-us-sec {
    padding-top: 80px;
  }

  .contact-row {
    margin-bottom: 80px;
  }

  .contact-row .sec-head {
    padding-bottom: 50px;
  }

  .contact-form .lets-discuss-form {
    padding-top: 100px;
  }

  .about-team-slider.slick-initialized.slick-slider {
    padding-right: 200px;
  }

  .area-service-sec .sec-head {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1399px) {
  .mega-menu-icon {
    max-width: 200px;
  }

  .mega-menu-content ul li a {
    font-size: 50px;
  }

  .company-contact-info .mega-menu-contact-info a {
    font-size: 22px;
  }

  .company-contact-info .mega-menu-contact-info .icon {
    width: 20px;

    height: 20px;
  }

  .company-contact-info {
    column-gap: 140px;

    padding-top: 160px;
  }

  .get-in-touch-btn {
    right: -14px;
  }

  .c-footer_socials_item a {
    padding: 10px 0;
  }

  .c-footer_socials_item a .icon {
    width: 14px;

    height: 14px;
  }

  .c-nav-button_icon {
    width: 13px;

    height: 22px;
  }

  .mega-menu-inner {
    padding: 30px 25px 42px;
  }

  .mega-menu-header {
    max-width: 120px;
  }

  .why-choose-us-wrap {
    padding-left: calc((100% - 1222px) / 2);
  }
}

@media only screen and (max-width: 1299px) {
  .sec-md-title {
    font-size: 44px;
  }

  .sec-title {
    font-size: 62px;
  }

  .why-choose-us-wrap {
    padding-left: 62px;
  }

  .our-project-sec .project-video-favicon {
    left: 20px;
  }

  .common-sec {
    padding-top: 100px;

    padding-bottom: 100px;
  }

  .get-in-touch-btn {
    right: -24px;
  }

  .breadcrumbmain {
    padding-top: 140px;
  }

  .services-sec .services-row {
    margin-bottom: 80px;
  }

  .services-sec .services-top-con .sec-head {
    margin-bottom: 30px;
  }

  .contact-us-sec {
    padding-top: 70px;
  }

  .contact-row {
    margin-bottom: 60px;
  }

  .contact-socials .c-footer_socials_item a {
    margin-bottom: 50px;
  }

  .contact-form .lets-discuss-form {
    padding-top: 80px;
  }

  .contact-row .sec-head {
    padding-bottom: 40px;
  }

  .area-service-sec .about-img iframe {
    height: 500px;
  }

  .contact-form .lets-discuss-form:before {
    height: 3px;
  }
}

@media only screen and (max-width: 1199px) {
  .sec-md-title {
    font-size: 38px;
  }

  .sec-title {
    font-size: 52px;
  }

  .lets-discuss-sec {
    padding: 56px 0 98px;
  }

  .lets-discuss-logo-list {
    max-width: 350px;
  }

  .lets-discuss-logo-item {
    height: 85px;
  }

  .form-control {
    padding: 17px 25px;
  }

  textarea.form-control {
    height: 100px;
  }

  .btn.btn-submit {
    padding: 15px 15px;
  }

  .footer {
    padding-top: 75px;
  }

  .foot-box .foot-logo {
    width: 165px;
  }

  .foot-contact a.foot-contact-call {
    font-size: 18px;
  }

  .foot-contact a,
  .foot-contact .address-title {
    font-size: 14px;
  }

  .qld-office-address .address-box span {
    max-width: 100%;
  }

  .footer-wrap {
    padding-bottom: 50px;
  }

  .powerdby img {
    max-width: 32px;
  }

  .foot-contact {
    margin-bottom: 25px;
  }

  .common-sec {
    padding-top: 80px;

    padding-bottom: 80px;
  }

  .why-choose-silde-box {
    padding: 20px;
  }

  .why-choose-silde-box .img-box {
    width: 42px;

    margin-bottom: 20px;
  }

  .why-choose-us-top {
    margin-bottom: 30px;
  }

  .project-video {
    margin-left: -12px;

    margin-top: 70px;

    min-height: auto;
  }

  .our-project-location p {
    font-size: 15px;

    padding-right: 15px;
  }

  .our-project-sec .project-video-favicon {
    max-width: 200px;
  }

  .get-in-touch-btn {
    right: -24px;
  }

  .mega-menu-content {
    left: 180px;
  }

  .mega-menu-content ul li a {
    font-size: 42px;
  }

  .company-contact-info .mega-menu-contact-info a {
    font-size: 18px;
  }

  .company-contact-info {
    column-gap: 100px;
  }

  .company-contact-info .mega-menu-contact-info::before {
    height: 2px;
  }

  .mega-menu-icon {
    max-width: 150px;
  }

  .mega-menu .close-menu span {
    display: none;
  }

  .why-choose-us-wrap {
    padding-left: 56px;
  }

  .back-to-top.active {
    bottom: 65px;
  }

  .breadcrumbmain {
    padding-top: 110px;
  }

  .services-sec .services-row {
    margin-bottom: 60px;
  }

  .contact-form .lets-discuss-form {
    padding-top: 60px;
  }

  .contact-socials .c-footer_socials_item a {
    width: 50px;

    height: 50px;

    margin-bottom: 30px;
  }

  .about-details-box {
    padding: 25px;
  }

  .area-service-sec .about-img iframe {
    height: 450px;
  }

  .about-team-con p {
    display: none;
  }

  .about-team-slider.slick-initialized.slick-slider {
    padding-right: 100px;
  }

  .about-team-name {
    /*top: 25px;*/
  }

  .about-team-sec .sec-title {
    font-size: 40px;
  }

  .about-team-name {
    max-width: 260px;
  }

  .about-team-sec .why-choose-us-wrap .sec-head {
    margin-bottom: 30px;
  }

  .services-row-main .about-bottom-left .inner-con {
    max-height: 340px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-md-title {
    font-size: 34px;
  }

  .sec-title {
    font-size: 42px;
  }

  .lets-discuss-wrap .sec-head p {
    font-size: 16px;
  }

  .lets-discuss-logo-list {
    max-width: 100%;
  }

  .lets-discuss-logo-item {
    height: 75px;

    padding: 12px;
  }

  .foot-logo {
    margin-bottom: 40px;
  }

  .foot-address .foot-contact {
    margin-bottom: 10px;
  }

  .foot-contact {
    margin-bottom: 15px;
  }

  .footer {
    padding-top: 50px;
  }

  .foot-box .foot-logo {
    width: 150px;
  }

  .project-video-favicon {
    display: none;
  }

  .project-video {
    margin-left: 0;

    margin-top: 30px;
  }

  .our-project-location p br {
    display: none;
  }

  .our-project-location p {
    padding-right: 0;
  }

  .our-project-sec .sec-head {
    margin-bottom: 20px;
  }

  .cursor {
    scale: 1 !important;

    position: absolute !important;

    opacity: 1 !important;

    top: inherit !important;

    left: inherit !important;

    bottom: 20px;

    right: 20px;

    transform: inherit !important;

    z-index: 1;
  }

  .animated-cursor {
    width: 100px;
  }

  .animated-cursor::before {
    width: 52px;
  }

  .lets-discuss-wrap .sec-head {
    margin-bottom: 30px;
  }

  .our-project-sec.common-sec {
    padding-bottom: 40px;

    padding-top: 0;
  }

  .common-sec {
    padding-top: 50px;

    padding-bottom: 50px;
  }

  .mega-menu-bg {
    display: flex;
  }

  .u-1\/6 {
    width: 100% !important;
  }

  .mega-menu-inner {
    padding: 20px;
  }

  .mega-menu-content {
    left: 130px;
  }

  .mega-menu-content ul li a {
    font-size: 38px;
  }

  .company-contact-info .mega-menu-contact-info a {
    font-size: 16px;
  }

  .company-contact-info {
    column-gap: 60px;
  }

  .mega-menu-icon {
    max-width: 130px;

    right: 10px;
  }

  .services-sec
    .services-row:nth-child(even)
    .services-row-main
    .about-bottom-left {
    padding-right: 0px;

    padding-left: 20px;
  }

  .services-row-main .common-box .cms-con {
    margin-bottom: 23px;
  }

  .services-sec .services-row {
    margin-bottom: 40px;
  }

  .contact-us-sec {
    padding-top: 60px;
  }

  .area-service-sec .about-bottom-left,
  .area-service-sec .about-bottom-right {
    width: 100%;

    padding-top: 0;

    padding-right: 0;
  }

  .area-service-sec .about-bottom-left {
    margin-bottom: 30px;
  }

  .details-box-icon {
    margin-bottom: 20px;
  }

  .about-team-slider.slick-initialized.slick-slider {
    padding-right: 40px;
  }

  .about-team-sec .sec-title {
    font-size: 30px;
  }

  .about-team-con .team-role {
    padding: 15px;
  }

  .about-team-name {
    max-width: 230px;
  }

  .area-service-sec .sec-head {
    margin-bottom: 20px;
  }

  .contact-form .lets-discuss-form:before {
    height: 2px;
  }

  .services-row-main .about-bottom-left .inner-con {
    max-height: 120px;
  }

  .services-sec .common-box p {
    line-height: 1.4;
  }

  .about-team-name {
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;

    padding: 0 15px;
  }

  .sec-md-title {
    font-size: 30px;
  }

  .sec-title {
    font-size: 36px;
  }

  .lets-discuss-wrap .sec-head p {
    font-size: 14px;
  }

  .lets-discuss-wrap .sec-md-title {
    margin-bottom: 15px;
  }

  .lets-discuss-wrap .sec-head {
    margin-bottom: 40px;
  }

  .foot-contact a.foot-contact-call {
    font-size: 14px;
  }

  .icon {
    width: 15px;

    height: 15px;
  }

  .foot-contact,
  .foot-address .address-box {
    padding-left: 25px;
  }

  .form-control {
    font-size: 14px;

    padding: 13px 20px;
  }

  .why-choose-us-wrap {
    padding-left: 35px;
  }

  .slick-dots li button {
    width: 11px;

    height: 11px;
  }

  .why-choose-us-top {
    margin-bottom: 20px;
  }

  .why-choose-box-con p {
    font-size: 14px;
  }

  .why-choose-silde-box .img-box {
    width: 32px;

    margin-bottom: 15px;
  }

  .our-project-sec .sec-head {
    margin-bottom: 12px;
  }

  .get-in-touch-btn {
    display: none;
  }

  .c-footer-item.left {
    display: none;
  }

  .nav-button-sec,
  .c-footer-item.left {
    padding: 0 8px;
  }

  .mega-menu-header {
    max-width: 100px;
  }

  .mega-menu-content ul li a {
    font-size: 28px;
  }

  .has-nav-open .c-footer-item.left {
    display: block;
  }

  .mega-menu-content {
    position: relative;

    left: 40px;
  }

  .mega-menu-header {
    margin-bottom: 20px;

    margin-left: 40px;
  }

  .c-footer-item.left {
    bottom: 8px;
  }

  .mega-menu .close-menu img {
    width: 15px;
  }

  .mega-menu-inner {
    padding: 20px 8px;
  }

  .company-contact-info {
    padding-top: 0;
  }

  .mega-menu-content {
    height: calc(100% - 60px);

    justify-content: space-around;
  }

  .mega-menu-icon {
    max-width: 120px;
  }

  .company-contact-info .mega-menu-contact-info .icon {
    width: 16px;

    height: 16px;
  }

  .company-contact-info .mega-menu-contact-info a {
    font-size: 14px;
  }

  .company-contact-info {
    column-gap: 40px;
  }

  .mega-menu-content ul {
    max-height: 210px;

    max-width: 400px;
  }

  .back-to-top.active {
    width: 30px;

    height: 30px;

    bottom: 55px;
  }

  .back-to-top > .arrow svg {
    height: 12px;
  }

  .powerdby img {
    max-width: 28px;
  }

  .about-details-box {
    padding: 20px;
  }
}

@media only screen and (max-width: 568px) {
  .sec-md-title {
    font-size: 22px;
  }

  .sec-title {
    font-size: 26px;
  }

  .lets-discuss-sec {
    padding: 40px 0 40px;
  }

  .lets-discuss-logo-item {
    height: 70px;
  }

  .lets-discuss-logo-list {
    margin-bottom: 40px;
  }

  .form-control {
    padding: 13px 15px;
  }

  .btn.btn-submit {
    padding: 14px 12px;
  }

  .footer {
    padding-top: 40px;
  }

  .foot-logo-wrap {
    display: none;
  }

  .foot-contact {
    margin-bottom: 10px;
  }

  .foot-box {
    margin-bottom: 20px;
  }

  .foot-address .address-box span {
    margin-bottom: 5px;
  }

  .footer-wrap {
    padding-bottom: 20px;
  }

  .copy-right-sec {
    text-align: center;
  }

  .copy-right-sec .copy-right-text {
    margin-bottom: 10px;
  }

  .powerdby {
    justify-content: center;

    margin-top: 6px;
  }

  .why-choose-silde-box {
    padding: 15px;
  }

  .animated-cursor {
    width: 70px;
  }

  .animated-cursor::before {
    width: 40px;
  }

  .cursor {
    right: 10px !important;

    bottom: 10px !important;
  }

  .our-project-location p {
    font-size: 14px;
  }

  .slick-dots li button {
    width: 11px;

    height: 11px;
  }

  .mega-menu-content ul li a {
    font-size: 20px;
  }

  .company-contact-info {
    display: block;
  }

  .company-contact-info .mega-menu-contact-info {
    margin-bottom: 20px;

    width: fit-content;
  }

  .company-contact-info .mega-menu-contact-info::before {
    height: 1px;

    bottom: -5px;
  }

  .mega-menu-icon {
    max-width: 84px;
  }

  .u-1\/6 {
    width: 130% !important;
    display: none;
  }

  .mega-menu-content {
    justify-content: start;
  }

  .company-contact-info {
    padding-top: 50px;
  }

  .mega-menu-content ul {
    max-height: 190px;

    max-width: calc(100% - 130px);
  }

  .c-footer_socials {
    display: flex;

    column-gap: 20px;

    margin-left: 40px;

    margin-bottom: 30px;
  }

  .c-footer_socials_item a {
    padding: 0;
  }

  .mega-menu-header {
    margin-bottom: 30px;

    margin-left: 30px;
  }

  .mega-menu-content {
    left: 35px;
  }

  .company-contact-info .mega-menu-contact-info .icon {
    width: 14px;

    height: 14px;
  }

  .mega-menu-icon {
    max-width: 75px;
  }

  .services-sec .services-row:nth-child(even) .services-row-main {
    flex-direction: column-reverse;
  }

  /* services */

  .services-sec .services-row:nth-child(even) .services-row-main {
    flex-direction: column-reverse;
  }

  .services-sec .about-bottom-right {
    margin-bottom: 15px;
  }

  .services-row-main.about-bottom-main {
    padding-top: 0;
  }

  .services-sec .services-top-con .sec-head {
    margin-bottom: 15px;
  }

  .services-sec .services-row {
    margin-bottom: 30px;
  }

  .services-sec
    .services-row:nth-child(even)
    .services-row-main
    .about-bottom-left {
    padding-left: 0px;
  }

  .services-row-main .common-box .cms-con {
    margin-bottom: 15px;
  }

  .contact-call.contact-row,
  .contact-form {
    width: 100%;

    margin-left: 0;
    max-width: 100%;
  }
  .contact-info.contact-row a,
  .contact-call.contact-row a {
    font-size: 18px;
  }

  .contact-socials.contact-row {
    width: 100%;
  }

  .contact-socials .c-footer_socials {
    margin-left: 0;
  }

  .contact-form .lets-discuss-form {
    padding-top: 40px;
  }

  .contact-us-sec {
    padding-top: 40px;
  }

  .contact-row {
    margin-bottom: 45px;
  }

  .contact-row .sec-head {
    padding-bottom: 30px;
  }

  .contact-socials .c-footer_socials_item a {
    width: 40px;

    height: 40px;

    margin-bottom: 0;
  }

  .contact-socials .c-footer_socials_item a .icon {
    width: 16px;

    height: 16px;
  }

  .contact-us-sec .contact-row:nth-child(3) {
    margin-bottom: 0;
  }

  .area-service-sec .about-img iframe {
    height: 340px;
  }

  .area-service-sec .about-bottom-main {
    padding-top: 0;
  }

  .about-team-sec .why-choose-us-wrap .sec-head {
    margin-bottom: 20px;
  }

  .area-service-sec.about-sec {
    padding-bottom: 0;
  }

  .services-row-main .about-bottom-left .inner-con {
    max-height: 100%;

    padding-right: 0;
  }

  .why-choose-us-wrap .sec-head {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-choose-us-head {
    max-width: 100%;
  }
}

@media only screen and (max-width: 375px) {
}

@media only screen and (max-width: 350px) {
  .mega-menu-content ul li a {
    font-size: 18px;
  }

  .company-contact-info .mega-menu-contact-info a {
    font-size: 12px;
  }

  .company-contact-info .mega-menu-contact-info .icon {
    width: 12px;

    height: 12px;
  }

  .mega-menu-icon {
    max-width: 67px;
  }

  .c-footer_socials {
    margin-bottom: 20px;
  }
}

/* responsive */

.body-fixed {
    overflow: hidden;
}
body.lenis-stopped {
  overflow: hidden;
}


.body-fixed .sidebar-overlay {
    opacity: 0.8;
    visibility: visible;
    left: 0;
    transition: all 0.6s ease-in-out;
}

.team-popup.membership-popup .modal-dialog {
  max-width: 850px;
}

.team-popup.membership-popup .btn-close {
  filter: unset;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--grey);
  background-image: url(../img/svg/close-popup.svg);
  z-index: 2;
}

.membership-popup .btn-close {
    flex: 0 0 20px;
    padding: 10px;
    width: 20px;
    height: 20px;
    z-index: 9;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.team-popup.membership-popup .modal-body {
  padding: 0;
  background: var(--black);
}
.memeber-name{font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 5px;}
.team-bio-text .common-box{max-width: 100%;}

.team-bio-text {
  padding: 40px 25px;
  height: 100%;
}

.team-img {
  width: 100%;
  height: 100%;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-bio-text .memeber-designation {
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 100%;
  font-size: 16px;
  display: block;
}
@media (max-width: 1199px) {
.about-team-col{pointer-events: auto;}
}

@media (max-width: 991px) {
  .team-popup.membership-popup .modal-dialog {
    max-width: 95%;
  }
  .team-member-img{width: 150px;height: 150px;}
  .memeber-name{font-size: 16px;}
  .team-bio-text .memeber-name{font-size:22px;}
  .memeber-designation{font-size: 14px;}
  .membership-popup .btn-close {
        width: 15px;
        height: 15px;
        flex: 0 0 15px;
    }
}

@media (max-width: 568px) {
 .team-img {
    height: 350px;
  }

  .team-bio-text {
    padding: 20px 15px;
  }

  .team-bio-text .memeber-designation {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .team-bio-text .memeber-designation{font-size: 14px;}
}