

/* === 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 === */



/* === content-12-text-left-accred-right === */

.content-12 {
  padding: 50px 0 25px;
  background-color: #000205;
  position: relative;
  color: #fff;
}
.acc2-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 60px;
    padding-right: 1px;
    height: 100%;
}

    .acc2-wrap .acc-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        width: 100%;
        gap: 20px 5px;
        max-height: 100%;
    }

        .acc2-wrap .acc-grid .image-wrapper {
            min-width: 1px;
            min-height: 1px;
            display: flex;
            align-items: center;
        }

            .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 2) {
                grid-column: 2/4;
            }

            .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 3) {
                grid-row: 1/3;
                grid-column: 4/5;
            }

            .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 5) {
                grid-column: 2/4;
            }

            .acc2-wrap .acc-grid .image-wrapper img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }

            .content-12: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: 1;
            }

.content-12 .container {
  position: relative;
  z-index: 2;
}

.content-12-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.content-12-text {
  font-size: 18px;
  line-height: 26px;
}

@media (min-width: 768px) {
  .content-12-text {
    max-width: 600px;
  }
}

.content-12 .accr-wrapper {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  height: 300px;
}
.mb-35px {
    margin-bottom:35px;
}
.content-12 .accr-wrapper .accred-items {
    display: block;
    max-width: calc(100% - 100px);
    margin: 0 auto;
    align-content: center;
}
    .content-12 .accr-wrapper .accred-items2 {
        display: block;
        max-width: calc(100% - 75px);
        width: calc(100% - 75px);
        /* margin: 0 auto;*/
        align-content: center;
    }

.content-12 .accr-wrapper .accred-items img {
  height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.content-12 .accr-wrapper .accr-title {
  background-color: #e9e9e9;
  border-radius: 0 10px 10px 0;
  width: 75px;
  min-width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-12 .accr-wrapper .accr-title h3 {
  color: #a8a8a8;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
    .content-12 .accr-wrapper .accr-title2 {
        background-color: #e9e9e9;
        border-radius: 0 10px 10px 0;
        width: 75px;
        min-width: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        bottom: 0px;
        height: 300px;
    }

        .content-12 .accr-wrapper .accr-title2 h3 {
            color: #a8a8a8;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            writing-mode: vertical-rl;
        }

.content-12 .slick-initialized .slick-slide {
  margin-left: 15px;
}
.content-12 .accr-wrapper2 {
    position: relative;
}
.img-height-81px img {
    height:81px;
}
.img-height-203px img {
    height: 203px;
}

@media (max-width: 1399.9px) {
    .acc2-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 30px;
        padding-right: 1px;
    }
}
@media (max-width: 1199.9px) {
    .acc2-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 10px;
        padding-right: 1px;
    }
}
@media (max-width: 991.9px) {
    .acc2-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 70px;
        padding-right: 1px;
    }
}
@media (max-width: 767.98px) {
    .content-12 .accr-wrapper {
        height: 200px;
    }
    .content-12 .accr-wrapper2 {
        height: unset;
    }
    .acc2-wrap {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 1px;
    }
    .content-12 .accr-wrapper .accr-title2 {
        height: 100%;
    }

    .acc2-wrap .acc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px 20px;
        padding: 20px;
    }

        .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 2), 
        .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 5) {
            grid-row: unset;
            grid-column: unset;
        }

        .acc2-wrap .acc-grid .image-wrapper:nth-child(5n + 3) {
            grid-row: 2/4;
            grid-column: unset;
        }
}
@media (max-width: 575.9px) {
    .acc2-wrap {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 1px;
    }
    .content-12 .accr-wrapper .accr-title2 {
        height: 100%;
    }
}
@media (max-width: 540.9px) {
    .acc2-wrap {
        padding-top: 30px;
        padding-bottom: 0px;
        padding-left: 15px;
        padding-right: 1px;
    }

    .content-12 .accr-wrapper .accr-title2 {
        height: 100%;
    }
    .img-height-81px img {
        height: calc(81px - 30%);
    }

    .img-height-203px img {
        height: calc(203px - 12%);
        padding-right: 10px;
    }
    .acc2-wrap div {
        padding:0;
        text-align:center;
    }
}
/* === content-12-text-left-accred-right === */



/* === content-05-image-left-text-right === */

.content-05 {
  padding: 80px 0 100px;
  position: relative;
  color: #fff;
}

.content-05 .container {
  position: relative;
  z-index: 1;
}

.content-05-title {
  margin-bottom: 20px;
  font-weight: 500;
}

.content-05-text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}

.content-05 .btn {
  width: max-content;
}

.content-05 .content-05-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .content-05 .content-05-image {
    max-width: 580px;
  }
}

@media (max-width: 991.98px) {
  .content-05-image {
    margin-bottom: 20px;
  }

  .content-05-title {
    margin-top: 20px;
  }
}

.content-05 .block-bg {
  width: 100%;
  height: 150%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* === content-05-image-left-text-right === */



/* === content-13 === */

.content-13 {
    padding: 98px 0px;
    background-color: var(--content-13-bg-color, #000205);
    color: var(--content-13-text-color, #fff);
}

.content-13 .title-small {
    color: var(--color-blue);
    font-size: 24px;
    letter-spacing: -0.025em;
    font-weight: 500;
}

    .content-13 .block-text {
        font-size: 18px;
        line-height: 26px;
        max-width: 600px;
    }
        .content-13 .block-text p {
            margin-bottom:30px;
        }
        .content-13 h2 {
            margin-bottom: 10px;
        }
    .content-13 .title-small {
        margin-bottom: 20px;
    }
    .content-13 ul {
        list-style: none;
        padding-left: 0;
    }

.content-13 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 28px;
    color: #fff;
}

.content-13 ul li::before {
    content: "\e093";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    top: 0;
    color: #58bcf4;
    font-size: 20px;
}

.content-13 .block-image {
    border-radius: 5px;
    margin-bottom: 30px;
}

.content-13 .block-links {
    display: grid;
    text-transform: uppercase;
    row-gap: 12px;
}

.content-13 .block-link {
    text-decoration: none;
    color: var(--color-blue);
}

.content-13 .block-link-text {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: .2em;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .content-13 {
        padding: 60px 0px;
    }
}

@media (max-width: 991.98px) {
    .content-13 {
        padding: 45px 0px;
    }
}

/* === content-13 === */



/* === call-to-action-01 === */


#call-to-action-01-1051 {
	 --cta-01-background-image: url(/images/bg/cta-bg.webp);
}

.cta-01 {
  padding: 50px 0;
  background-image: url("/images/bg/cta-bg.webp");
  background-position: center center;
  background-size: cover;
  color: var(--cta-01-color);
  text-align: left;
  color: #fff;
  height: 600px;
  padding-top:150px;
}

.cta-01 .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.cta-01-title {
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cta-01-text {
  font-size: 22px;
  line-height: 30px;
  max-width: 800px;
  margin-bottom: 25px;
}

.cta-01-text a {
  text-decoration: none;
  color: #fff;
}

.cta-01-text p:last-of-type {
  margin-bottom: 0;
}

.cta-01-btn {
    border-radius: 0px;
    width: max-content;
    background-color: #13164d;
    transform: 0.15s linear;
}

.cta-01-btn:hover {
  background-color: #303166;
}

.cta-01-phone {
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .cta-01-title {
    font-size: 60px;
    line-height: 1;
  }
}

@media (max-width: 575.98px) {
  .cta-01 {
    padding-top: 120px;
    padding-bottom:20px;
  }

  .cta-01-title {
    font-size: 42px;
  }
}

/* === call-to-action-01 === */



/* === 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 === */

