

/* === page-banner === */

.page-banner {
  --desktoph: 100vh;
  --tableth: 100vh;
  --mobileh: 100vh;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
    .page-banner .container-lg {
        padding-left:0;
        padding-right:0;
    }
.page-banner .carousel-item:before {
  content: " ";
  position: absolute;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

.page-banner .carousel-item:after {
  content: " ";
  position: absolute;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 1;
  bottom: 0;
}

.page-banner .container-lg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: var(--page-banner-align);
  z-index: 2;
}

.page-banner .container-lg::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 2px;
  background-color: var(--color-blue);
}

.page-banner .carousel-caption {
  top: unset;
  left: 0;
  right: 15px;
  bottom: 50px;
  padding-bottom: 0;
  text-align: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 767.98px) {
  .page-banner .carousel-caption {
    flex-direction: column;
    gap: 10px;
  }
}

.page-banner .carousel-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-banner .carousel-caption .block-subtitle {
  line-height: 0;
  margin-bottom: 25px;
}

.page-banner .carousel-caption-title {
    margin-bottom: 0;
    font-size: 64px;
    line-height: 1;
    font-weight: 500;
    left: -3px;
    position: relative;
}

@media (max-width: 480px) {
  .page-banner .carousel-caption-title {
    font-size: 40px;
  }
}

.page-banner .carousel-caption-text {
  font-size: 22px;
  line-height: 30px;
  margin: 0;
  align-items: flex-end;
  gap: 30px;
}

.page-banner .carousel-caption-text i {
  font-size: 48px;
}

.page-banner .carousel-caption-text .text-content p {
  margin-bottom: 0;
  text-align: right;
}

.page-banner .carousel-caption .btn {
  margin-top: 20px;
}

@media (max-width: 1199.98px) {
  .page-banner .carousel-caption-title {
    font-size: 48px;
  }

  .page-banner .carousel-caption-title br {
    display: none;
  }

  .page-banner .carousel-caption-text .text-content p {
    font-size: 20px;
  }

  .page-banner .carousel-caption-text .text-content p br {
    display: none;
  }
}

.page-banner .carousel-item {
  overflow: hidden;
}

.page-banner .carousel-inner .prev-slide,
.page-banner .carousel-inner .next-slide {
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.page-banner .carousel-inner .prev-slide:hover,
.page-banner .carousel-inner .next-slide:hover {
  opacity: 0.8;
}

.page-banner .carousel-inner .prev-slide {
  left: 45px;
}

.page-banner .carousel-inner .next-slide {
  right: 45px;
}

.page-banner .carousel-inner .slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}

.page-banner .carousel-inner .slick-dots > li {
  cursor: pointer;
  font-weight: 600;
}

.page-banner .carousel-inner .slick-dots > li button {
  display: none;
}

.page-banner .carousel-inner .slick-dots > li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  opacity: 0.2;
  padding: 5px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.page-banner .carousel-inner .slick-dots > li:hover:before {
  opacity: 0.6;
}

.page-banner .carousel-inner .slick-dots > li.slick-active:before {
  opacity: 0.8;
}

.page-banner .carousel-item {
  height: var(--desktoph);
  max-height: 500px;
  position: relative;
}

.page-banner .carousel-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  object-fit: cover;
}

.page-banner .carousel-item:before {
  content: "";
}

@media screen and (max-width: 1199px) {
  .page-banner .carousel-item {
    height: 500px;
  }
    .page-banner .container-lg {
        left: 34px;
    }
}

@media screen and (max-width: 991px) {
  .page-banner .carousel-item {
    height: var(--tableth);
  }
}

@media screen and (max-width: 767px) {
  .page-banner .carousel-item {
    height: var(--mobileh);
  }

  .page-banner .carousel-inner .prev-slide {
    left: 15px;
  }

  .page-banner .carousel-inner .next-slide {
    right: 15px;
  }
    
}

@media screen and (max-width: 575px) {
  .page-banner .carousel-item {
    height: var(--mobileh);
  }

  .page-banner .carousel-item:after {
    content: "";
    padding-bottom: 100%;
    display: block;
  }
  
}

.page-banner .hidden-h1 {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  width: 0px;
  height: 0px;
}

/* === page-banner === */



/* === case-studies_03 === */

.case_studies_03 {
  --case_studies_03_bg: url(/images/bg/dark-gradient.webp);
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: var(--case_studies_03_bg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.case_studies_03::before {
  content: " ";
  position: absolute;
  top: 0;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
  z-index: 0;
}

.case_studies_03::after {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
/*  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1)
  );*/
}

.case_studies_03 .case-wrapper {
  position: relative;
  overflow: hidden;
  /*padding-bottom: 137%;*/
  margin-bottom: calc(var(--bs-gutter-x));
  border-radius: 10px;
}
    .case_studies_03 .image-wrapper {
        position: relative;
        padding-bottom: 61%;
        overflow: hidden;
        border-radius: var(--border-radius);
        transition: 0.4s all;
        z-index: 2;
    }
.case_studies_03 .case-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;

}

.case_studies_03 .case-wrapper:before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
 /* background-color: rgba(0, 0, 0, 0.15);*/
  transition: 0.3s opacity;
  z-index: 1;
}

.case_studies_03 .case-wrapper .content {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 30px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s all;
  opacity: 0;
  z-index: 2;
}

.case_studies_03 .case-wrapper .bottom-title {
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 16, 55, 1), rgba(0, 57, 116, 1));
  border-radius: 0 0 10px 10px;
  min-height: 140px;
}

.case_studies_03 .case-wrapper .bottom-title .text-content .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-blue);
}

.case_studies_03 .case-wrapper .bottom-title .text-content p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  letter-spacing: 2px;
}

.case_studies_03 .case-wrapper .icon-link {
 /* position: absolute;*/
  right: 30px;
  bottom: 30px;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  line-height: 40px;
  z-index: 2;
}

.case_studies_03 .case-wrapper .icon-link span {
  position: absolute;
  font-size: 16px;
  white-space: nowrap;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all;
  opacity: 0;
}

.case_studies_03 .case-wrapper > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}

@media (max-width: 767px) {
  .case_studies_03 .case-wrapper {
    padding-bottom: 70px;
    min-height: 440px;
  }

  .case_studies_03 .case-wrapper:before {
    opacity: 1;
  }

  .case_studies_03 .case-wrapper .content {
    height: auto;
    width: 100%;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    opacity: 1;
  }

  .case_studies_03 .case-wrapper .icon-link span {
    opacity: 1;
  }

  .case_studies_03 .case-wrapper .icon-link {
    right: 15px;
    bottom: 25px;
  }
}

/* === case-studies_03 === */



/* === footer-05-brochure === */

.footer_05_brochure {
  background-color: #000205;
  color: #fff;
  border-top: 1px solid #292d31;
  border-bottom: 1px solid #292d31;
  padding: 100px 0 95px;
}

.footer_05_brochure .block-title {
  font-size: 55px;
  line-height: 44px;
  font-weight: 500;
  margin-bottom: 38px;
}
    .footer_05_brochure .block-desc p {
        margin-bottom:30px;
    }
    .footer_05_brochure .block-desc {
        font-size: 20px;
        line-height: 26px;
        font-weight: 300;
        max-width: 480px;
    }

.footer_05_brochure .address-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}

.footer_05_brochure .phone-text a {
  font-size: 18px;
  line-height: 0;
  font-weight: 500;
  color: var(--color-blue);
  text-decoration: none;
}

.footer_05_brochure .mail-text a {
  font-size: 16px;
  line-height: 0;
  font-weight: 500;
  color: var(--color-blue);
  text-decoration: none;
}

.footer_05_brochure .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.footer_05_brochure .social-icons a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  background-color: var(--color-blue);
  position: relative;
  overflow: hidden;
  transition: 0.2s linear;
}

.footer_05_brochure .social-icons a svg {
  width: 22px;
  height: auto;
  fill: #fff;
}

.footer_05_brochure .social-icons a::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  top: -50px;
  left: -50px;
  transform: rotate(45deg);
  animation: shine 1.5s infinite;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.footer_05_brochure .social-icons a:hover {
  background-color: var(--color-darkBlue);
}

.footer_05_brochure .social-icons a:hover::before {
  opacity: 1;
}

@keyframes shine {
  0% {
    transform: translateX(-100px) translateY(-100px) rotate(45deg);
  }
  50% {
    transform: translateX(100px) translateY(100px) rotate(45deg);
  }
  100% {
    transform: translateX(100px) translateY(100px) rotate(45deg);
  }
}

.footer_05_brochure form input,
.footer_05_brochure form select,
.footer_05_brochure form textarea {
  background-color: #fff;
  min-height: 60px;
  border: none !important;
  outline: none !important;
  border-radius: 0;
}

.footer_05_brochure form .has-error input.error,
.footer_05_brochure form .has-error select.error,
.footer_05_brochure form .has-error textarea.error {
  background-color: #ffc8c8;
}

.footer_05_brochure form .col-form-label {
  padding-top: 0;
  font-size: 15px;
  font-weight: 300;
}

.footer_05_brochure form .checkbox + label {
  padding-left: 30px !important;
  font-size: 15px;
}

.footer_05_brochure form .checkbox + label::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 0;
}

.footer_05_brochure form .tickbox.has-error label::before {
  background-color: rgb(255, 0, 0);
}

.footer_05_brochure form .checkbox:checked + label:before {
  content: "";
}

.footer_05_brochure form .checkbox:checked + label:after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #000;
  position: absolute;
  left: 3px;
  top: 3px;
  font-size: 14px;
}

.footer_05_brochure form .required {
  display: none;
}

.footer_05_brochure .footer05_grid {
  display: flex;
  flex-wrap: wrap;
}

.footer_05_brochure .footer05_grid .content_wrapper {
  width: 50%;
  padding-bottom: 50%;
  position: relative;
}

.footer_05_brochure .footer05_grid .content {
  position: absolute;
  display: flex;
  width: 90%;
  height: 90%;
  align-content: center;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
  left: 5%;
  top: 5%;
}

.footer_05_brochure .content .icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.footer_05_brochure .content .icon_title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 10px;
}

.footer_05_brochure .content .icon_text {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer_05_brochure .content .icon_link {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.footer_05_brochure .content .icon_link a {
  color: #fff;
}

.footer_05_brochure .social_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_05_brochure .social_links a {
  display: flex;
  color: #fff;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 7px;
  text-decoration: none;
  transition: 0.3s all;
  overflow: hidden;
}

.footer_05_brochure .social_links a:hover {
  background-color: #fff;
  color: #000;
}

.footer_05_brochure .social_links a i {
  font-size: 22px;
}

.footer_05_brochure .social_links a img,
.footer_05_brochure .social_links a svg {
  width: 24px;
  height: auto;
  fill: #fff;
}

.footer_05_brochure .social_links a svg {
  transition: 0.3s fill, 0.3s stroke;
  fill: #fff !important;
  stroke: #fff !important;
}

.footer_05_brochure .social_links a:hover svg {
  fill: #000 !important;
  stroke: #000 !important;
}

.footer_05_brochure .content .reg_info {
  font-size: 14px;
}

.footer_05_brochure .content .reg_info > p {
  margin-bottom: 5px;
}

.footer_05_brochure .content .reg_info > p:last-of-type {
  margin-bottom: 0;
}

.footer_05_brochure .footer05_bottom {
  font-size: 14px;
  color: #fff;
}

.footer_05_brochure .footer05_bottom a {
  color: #fff;
  text-decoration: none;
}

.footer_05_brochure .captcha.captcha-image,
.footer_05_brochure .captcha.captcha-image *:not(i) {
  height: 100%;
}

.footer_05_brochure .captcha.captcha-image .reload_captcha {
  background-color: #fff;
  color: #16171a;
}

.footer_05_brochure .captcha_whatis {
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer_05_brochure .footer05_grid .content_wrapper {
    padding-bottom: 70%;
  }
}

@media (max-width: 767px) {
  .footer_05_brochure .footer_05_top_title {
    margin: 0 auto 25px;
  }

  .footer_05_brochure .footer05_grid .content_wrapper {
    padding-bottom: 0%;
  }

  .footer_05_brochure .footer05_grid .content_wrapper .content {
    position: static;
  }
}

@media (max-width: 575px) {
  .footer_05_brochure .footer05_grid .content_wrapper {
    padding-bottom: 0%;
    width: 100%;
  }

  .footer_05_brochure .footer05_grid .content_wrapper .content {
    width: 100%;
    padding: 0px 30px;
  }

  .footer_05_brochure .footer05_bottom > span {
    display: block;
  }

  .footer_05_brochure .form .bottom-box {
    text-align: center;
  }
}
@media (max-width: 575.98px) {


    .footer_05_brochure .block-title {
        font-size: 42px;
        line-height: 36px;
    }
}
/* === footer-05-brochure === */



/* === footer-01 === */

.footer-01 {
  padding: 40px 0;
  color: var(--footer-textcolor);
  background-color: #000205;
}

.footer-01 p {
  margin-bottom: 0px;
}

.footer-01 p.addr_line span:after {
  content: ",";
}

.footer-01 p.addr_line span:last-of-type:after {
  content: "";
}

.footer-01-title {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 15px;
}

.footer-01 a {
  color: #fff;
  text-decoration: none;
  min-width: 50px;
  display: inline-block;
  font-size: 16px;
  line-height: 35px;
}

.footer-01 .footer-menu .nav-item .dropdown-item-menu {
  display: none;
}

.footer-01 .nav-link,
.footer-01 .nav-link:hover {
  color: #fff;
  text-decoration: none;
  min-width: 50px;
  display: inline-block;
  font-size: 16px;
  line-height: 35px;
}

.footer-01 .footer-links-03 a {
  color: #acacac;
}

.footer-01 .footer-logo {
  display: flex;
  justify-content: flex-end;
}

.footer-01 .footer-logo img {
  width: 100%;
  max-width: 245px;
}

.footer-01 .footer-copy {
  margin-top: 30px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-01 .footer-copy .company {
  color: #acacac;
  font-size: 14px;
}

.footer-01 .footer-copy .advansys a {
  color: #acacac;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .footer-01 .col-12.col-sm-6.col-lg-3:nth-child(3),
  .footer-01 .col-12.col-sm-6.col-lg-3:nth-child(4) {
    margin-top: 35px;
  }

  .footer-01 .footer-logo {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-01 .col-12.col-sm-6.col-lg-3:nth-child(3),
  .footer-01 .col-12.col-sm-6.col-lg-3:nth-child(4) {
    margin-top: 0;
  }

  .footer-01 .col-12.col-sm-6.col-lg-3 {
    margin-bottom: 20px;
  }

  .footer-01 .footer-copy {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .footer-01 .footer-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 10px 0;
  }
}
@media (max-width: 992px) {
    .footer-01 .footer-logo {
        display: none;
    }
}
/* === footer-01 === */

