

/* === 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 === */



/* === news-support === */

.news-support {
  position: relative;
  padding: 115px 0 95px;
  background-color: #000205;
  border-bottom: 1px solid #292d31;
  color: #fff;
}

.news-support h2 {
  color: #fff;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 30px;
}

.news-support .news-wrapper {
  text-decoration: none;
  display: block;
}

.news-support .news-image {
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: cover;
}

.news-support .news-title {
  color: var(--color-blue);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.news-support .news-title i {
  margin-left: 10px;
}

@media (max-width: 767.98px) {
  .news-support .block-header {
    width: 100%;
  }

  .news-support h2 {
    text-align: center;
  }

  .news-support .news-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .news-support h2 {
    font-size: 42px;
    line-height: 1;
  }
}

@media screen and (min-width: 1200px) and (max-height: 600px) {
  .news-support {
    padding: 60px 0px;
  }
}

/* === news-support === */



/* === 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 === */

