:root {
  --primary-color: #EE252E;
  --secondary-color: #000000;
  --secondary-color-rgb: 32 32 31;
  --text-color: #444649;
  --white-color: #FFFFFF;
  --border-color: #262626;
  --border-color-white: #FFFFFF50;
  --border-color-black: #00000050;
  --border-color-gray: #DFE1E7;
  --font-family: "Roboto", sans-serif;
  --font-family-headling: "Roboto Condensed", sans-serif;
  --font-size: 16px;
  --transition-duration: 0.3s;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--white-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  font-family: var(--font-family-headling);
  margin: 0;
  line-height: 1;
}

h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 800;

  @media (max-width: 1024px) {
    font-size: 2rem;
  }
  @media (max-width: 800px) {
    font-size: 1.5rem;
    font-weight: 900;
  }
}

.top-title {
  position: relative;
  font-weight: 600!important;
  font-size: 0.95rem;
  color: var(--primary-color);
  text-transform: uppercase;
  padding-left: 0.85rem;
  margin: 0 0 0.25rem 0;
  margin-bottom: 0.25rem!important;
  line-height: 1.2!important;

  &::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
  }
}

.top-title-2 {
  position: relative;
  font-weight: 600!important;
  font-size: 0.95rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  padding-left: 0.85rem;
  line-height: 1 !important;
  margin-top: 1.65rem;
  margin-bottom: 1.5rem;

  &::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
  }
}

hr {
  margin: 0;
  color: inherit;
  border: 0;
  border-top: var(--border-color) 1px solid;
  opacity: 1;
}

.btn-solid-cta {
  padding: 9px 14px 10px 14px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background-color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-color);
  font-family: var(--font-family-headling);

  i {
    margin-left: 0.5rem;
  }

  @media (max-width: 1024px) {
    padding: 10px 12px 10px 12px;
    font-size: 0.75rem;
  }
}

.btn-solid-cta-black {
  padding: 9px 14px 10px 14px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background-color: var(--secondary-color);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-color);
  font-family: var(--font-family-headling);

  i {
    margin-left: 0.5rem;
  }

  @media (max-width: 1024px) {
    padding: 10px 12px 10px 12px;
    font-size: 0.75rem;
  }
}

.btn-light-cta {
  padding: 9px 14px 10px 14px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--font-family-headling);
  border: 2px var(--primary-color) solid;
}

.btn-light-down-cta {
  padding: 10px 16px 10px 16px;
  display: inline-flex;
  align-items: center;
  min-width: 200px;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary-color);
  font-family: var(--font-family-headling);
  border-bottom: 2px var(--secondary-color) solid;

  i {
    margin-left: 0.5rem;
    color: var(--primary-color);
  }

  @media (max-width: 1024px) {
    font-size: 0.75rem;
    padding: 8px 16px 7px 16px;
  }
}

.top-bar {
  background-color: var(--secondary-color);
  padding: 0.65rem 0;
  border-bottom: 1px var(--border-color) solid;

  @media (max-width: 768px) {
    text-align: center!important;

    .text-end {
      text-align: center!important;
    }
  }

  p {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 0.85rem;

    @media (max-width: 768px) {
      font-size: 0.8rem;
      letter-spacing: -0.01rem;
    }
  }

  a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    padding-left: 0.1rem;
  }

  img {
    max-width: 18px;
    position: relative;
    top: -2px;
  }
}

header {
  background-color: var(--secondary-color);
  border-bottom: 1px var(--border-color) solid;
  position: relative;
  z-index: 9;

  @media (max-width: 768px) {
    .navbar-toggler {
      font-size: 1.25rem;
      color: var(--white-color);
      border: none;
    }
    .navbar-collapse {
      text-align: center;
      position: absolute;
      top: 82px;
      background: var(--secondary-color);
      padding: 1rem;
      width: 100%;
      left: 0;
      right: 0;
      border-bottom: 1px var(--border-color) solid;
    }
  }

  .navbar-brand {
    img {
      width: 100px;

      @media (max-width: 768px) {
        width: 80px;
      }
    }
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;

    @media (max-width: 1024px) {
      padding-right: 0.2rem;
      padding-left: 0.2rem;
    }
  }

  .nav-link{
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;

    @media (max-width: 1024px) {
      font-size: 0.7rem;
    }

    &:hover {
      color: var(--primary-color);
    }
    &:focus {
      color: var(--primary-color);
    }
    &:active {
      color: var(--primary-color);
    }

    i {
      font-size: 12px;
      color: var(--primary-color);
      position: relative;
      top: -1px;
    }
  }
}

.mega-menu {
  border-top: 1px var(--border-color) solid;
  border-bottom: 1px var(--border-color) solid;
  padding-bottom: 2rem;
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;

  @media (max-width: 1024px) {
    top: 80px;
  }

  &.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-link i {
    transition: transform 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .title-menu {
    position: relative;
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    padding-left: 2rem;
    margin: 1rem 0 0 0;
    font-family: var(--font-family-headling);

    &::after {
      content: '';
      width: 25px;
      height: 1px;
      background-color: var(--white-color);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    display: inline-block;
    padding: 5px 0px 5px 15px;
    position: relative;
    font-weight: 300;

    &:hover {
      opacity: 0.75;
    }

    &::after {
      content: '';
      width: 5px;
      height: 5px;
      background-color: var(--primary-color);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  h6 {
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin: 1.75rem 0;
  }
  ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
  }
  .btn-close-menu {
    background: transparent;
    color: var(--white-color);
    border: none;
    font-size: 1.5rem;
  }
}

#hero-home {
  padding: 100px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;

  @media (max-width: 800px) {
    padding: 60px 0;
    
    .btn-solid-cta {
      display: none;
    }
    .btn-light-down-cta {
      display: none;
    }
  }


  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.35;
  }

  .top-title {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
    margin: 0;
  }
  h1 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0.5rem 0;

    @media (max-width: 1024px) {
      font-size: 3.5rem;
    }
    @media (max-width: 800px) {
      font-size: 2.25rem;
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffff;
    opacity: 0.75;

    @media (max-width: 1024px) {
      font-size: 1.15rem;
    }
    @media (max-width: 800px) {
      font-size: 1rem;
      margin-bottom: 0rem;
    }
  }
  .btn-solid-cta {
    margin-right: 0.5rem;
  }
  .btn-light-down-cta {
    color: var(--white-color);
    font-family: var(--font-family-headling);
    border-bottom: 2px var(--white-color) solid;
    font-size: 0.85rem;
    min-width: 160px;
    padding: 9px 16px 9px 16px;

    i {
      color: var(--white-color);
    }

    @media (max-width: 1024px) {
      font-size: 0.75rem;
      padding: 8px 16px 7px 16px;
    }
  }
}

#quiz {
  background-color: var(--secondary-color);
  border-top: 1px var(--border-color) solid;
  padding: 50px 0;

  @media (max-width: 768px) {
    text-align: left;

    .text-end {
      text-align: left!important;
    }
    .row {
      gap: 1rem;
    }
    .box-btn-quiz {
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 1rem;
      align-items: center;
      padding: 0 0.45rem;
    }
  }

  h3 {
    text-transform: uppercase;
    color: var(--white-color);
    margin: 0;
    font-weight: 700;
    padding-left: 1rem;
    position: relative;

    @media (max-width: 800px) {
      max-width: 350px;
    }

    &::after {
      content: '';
      width: 7px;
      height: 7px;
      background-color: var(--primary-color);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 1rem;
    display: inline;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-family-headling);
  }
  .row {
    align-items: center;
  }
  .btn-solid-cta {
    transform: scale(1.1);

    i {
      transform: scale(1.1);
    }
  }
}

#our-services {
  padding: 50px 0;

  @media (max-width: 768px) {
    .btn-light-down-cta {
      display: none;
    }
  }

  .row {
    align-items: center;
  }

  .slider-our-services {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-top: 25px;
    padding-bottom: 50px;

    @media (max-width: 1400px) {
      /* max-width: calc(100vw - calc(calc(100vw - 1140px) / 2) - 22px); */
    }

    @media (max-width: 1200px) {
      /* max-width: 1140px; */
    }

    @media (max-width: 992px) {
      margin-top: 30px;
      padding: 1rem;
    }

    .card-our-services {
      position: relative;
      width: 100%;
      max-width: 350px;
      height: 400px;
      padding: 1.8rem 1.8rem 0 1.8rem;
      border: 1px solid var(--border-color-gray);

      @media (max-width: 1024px) {
        max-width: 350px;
        height: 400px;
      }

      @media (max-width: 800px) {
        height: 450px;
        padding: 1.8rem 1.25rem 0 1.25rem;
      }


      img {
        max-width: 75px;

        @media (max-width: 1024px) {
          max-width: 5rem;
        }
      }
      h6 {
        font-size: 30px;
        margin: 24px 0 12px 0 !important;

        @media (max-width: 1024px) {
          font-size: 1.7rem;
          margin: 1rem 0 0.5rem 0 !important;
        }
      }
      hr {
        margin: 3px 0;
        color: inherit;
        border: 0;
        border-top: var(--primary-color) 0.15rem solid;
        opacity: 1;
        width: 35px;

        @media (max-width: 1024px) {
          width: 25px;
          margin: 0.5rem 0;
          border-top: var(--primary-color) 0.15rem solid;
        }
      }
      a {
        position: absolute;
        background: var(--secondary-color);
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        line-height: 1;
        font-size: 1rem;
        font-family: var(--font-family-headling);
        color: var(--white-color);

        i {
          color: var(--primary-color);
        }

        @media (max-width: 1024px) {
          padding: 20px;
          font-size: 0.9rem;
        }
      }
    }
    .swiper-pagination-bullet {
      opacity: 0.25;
      background: var(--secondary-color);
      width: 40px;
      height: 3px;
      border-radius: 0;

      @media (max-width: 992px) {
        width: 30px;
      }
    }
    .swiper-pagination-bullet-active {
      opacity: 0.5;
      background: var(--primary-color);
    }
    .swiper-pagination {
      max-width: 1320px;
      bottom: 1rem !important;

      @media (max-width: 1400px) {
        max-width: 1140px;
      }

      @media (max-width: 1200px) {
        max-width: 1140px;
      }

      @media (max-width: 992px) {
        text-align: center;
      }
    }
    .box-pagination {
      position: relative;
      max-width: 1320px;
      bottom: -25px;
      padding-bottom: 50px;

      .swiper-button-next::after, .swiper-button-prev::after {
        font-family: swiper-icons;
        font-size: 1.5rem;
        text-transform: none !important;
      }
      .swiper-button-next, .swiper-button-prev {
        color: var(--secondary-color);
      }
      .swiper-button-next::before, .swiper-button-prev::before {
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 50px;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
      }
      .swiper-button-prev::before {
        left: 8px;
      }
      .swiper-button-prev {
        left: -5px;
      }
      .swiper-button-next::before {
        right: 8px;
      }
      .swiper-button-next {
        right: -5px;
      }
    }
    
  }
  .swiper-wrapper {
	width: fit-content;
    margin: 0 auto;
  }
}

#gallery {
  position: relative;

  .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 5vw;
    background: linear-gradient(0deg, #00000099, transparent);
    display: flex;
    flex-direction: column;
    justify-content: end;

    @media (max-width: 768px) {
      padding: 5vw 5vw 12vw 5vw;
    }
    @media (max-width: 800px) {
      padding: 5vw 5vw 22vw 5vw;
    }
  }
  img {
    height: 665px;
    width: 100%;
    object-fit: cover;
  }
  .top-title {
    color: var(--white-color);
    font-weight: 500;
    font-size: 1rem;
  }
  h6 {
    font-size: 2.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white-color) !important;
    margin: 5px 0 0px 0;

    @media (max-width: 800px) {
      font-size: 1.75rem;
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 1.15rem;
    max-width: 560px;
    font-weight: 300;

    @media (max-width: 800px) {
      font-size: 1rem;
      font-weight: 300;
    }
  }
  .swiper-button-next, .swiper-button-prev {
    position: absolute;
    color: var(--white-color);
    z-index: 9;

    @media (max-width: 800px) {
      font-size: 2rem;
    }
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    @media (max-width: 800px) {
      font-size: 2rem;
    }
  }
  .swiper-pagination {
    width: auto !important;
    bottom: 5vw !important;
    right: 5vw !important;
    left: auto !important;

    @media (max-width: 768px) {
      right: auto !important;
      left: 5vw !important;
    }

    @media (max-width: 800px) {
      bottom: 8vw !important;
    }
  }
  .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: 0.5;
    width: 30px;
    height: 2px;
    color: #fff;
    text-align: left;
    font-weight: 900;
    display: inline-flex;
    align-items: flex-end;
    line-height: 2;
    border-radius: 0;
  }
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }
}

#our-process{
  padding: 50px 0;

  .top-title {
    margin: 0 auto 0.25rem auto;
    width: fit-content;
  }

  .box-process {
    display: flex;
    width: 100%;
    margin-top: 2rem;

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
    }

    .card-process {
      flex: 0 0 25%;
      width: 25%;
      border: 1px var(--border-color-gray) solid;
      margin-left: -1px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      gap: 60px;

      @media (max-width: 768px) {
        flex: 0 0 300px;
        width: 300px;
        margin-left: 0px;
        margin-bottom: -1px;
        justify-content: space-between;
      }

      p {
        margin-top: 0;
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 0.9rem;
        color: var(--primary-color);
        font-family: var(--font-family-headling);
      }

      h6 {
        font-size: 1.5rem;
      }

      hr {
        margin: 4px 0 8px 0;
        color: inherit;
        border: 0;
        border-top: var(--primary-color) 2px solid;
        opacity: 1;
        width: 25px;
      }

      img {
        max-width: 75px;
      }
    }
  }
}

#choose-your-industry{
  background-color: var(--secondary-color);
  padding: 50px 0;

  @media (max-width: 768px) {
    padding: 50px 0.5rem;

    .text-end {
      text-align: center !important;
    }
  }

  .row {
    align-items: center;

    @media (max-width: 768px) {
      flex-direction: column-reverse;
      text-align: center;
    }
  }

  h3 {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 800;

    @media (max-width: 800px) {
      font-size: 1.65rem;
    }
  }

  .top-title {
    margin: 0 0 0.25rem auto;
    width: fit-content;

    @media (max-width: 768px) {
      margin: 0 auto 0.25rem auto;
    }
  }

  hr {
    margin: 30px 0;
  }

  .swiper-slide {
    width: 200px;
    height: 220px;
    position: relative;
    transition-property: transform;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px var(--border-color-white) solid;
    margin: 10px 0;
    background-color: #ffffff1f;
    padding: 1.25rem 1rem;
    text-decoration: none;

    img {
      width: 60px;
    }
    h6 {
      font-size: 1.25rem;
      color: var(--white-color);
      font-weight: 400;
      margin-top: 5px;
      line-height: 1.2;
    }
    span {
      display: inline-block;
      font-size: 1rem;
      color: var(--white-color);
      text-transform: uppercase;
      font-family: var(--font-family-headling);
      font-weight: 500;
      line-height: 1;

      i {
        color: var(--primary-color);
      }
    }
  }

  .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: 0.5;
    width: 1.35rem;
    height: 2px;
    color: #fff;
    border-radius: 0;
  }
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }
}

#testimonials {
  padding: 50px 0;

  h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;

    @media (max-width: 800px) {
      font-size: 1.75rem;
    }
  }

  .box-testimonials {
    display: flex;

    @media (max-width: 768px) {
      flex-direction: column;
    }

    .col-testimonials {

      &:first-child {
        flex: 0 0 30%;
        width: 30%;
        border-right: 2px var(--border-color-gray) solid;
        padding: 1rem 2rem 1rem 0rem;

        @media (max-width: 768px) {
          flex: 0 0 100%;
          width: 100%;
          border-right: 0 var(--border-color-gray) solid;
          padding: 1rem 0rem 2rem 0rem;
        }

        p {
          margin-top: 0;
          margin-bottom: 1rem;
          font-weight: 300;
          line-height: 1.3;
        }
        .top-title {
          font-weight: 400;
          margin-bottom: 0;
        }
      }

      &:last-child {
        flex: 0 0 70%;
        width: 70%;
        padding: 1rem 0rem 1rem 2rem;
        position: relative;
        
        @media (max-width: 768px) {
          flex: 0 0 100%;
          width: 100%;
          padding: 2rem 0rem 1rem 0rem;
        }

        .testimonials-01 {
          position: absolute;
          width: 55px;
          top: 3rem;
          left: 3rem;

          @media (max-width: 768px) {
            left: 0rem;
          }
        }
        .testimonials-02 {
          position: absolute;
          width: 130px;
          bottom: 6rem;
          right: 3rem;

          @media (max-width: 768px) {
            right: 0rem;
          }
        }

        .swiper-slide {
          min-height: 350px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          border-bottom: 2px var(--border-color-gray) solid;
          padding-bottom: 1rem;
          margin-bottom: 1rem;
          height: auto;

          .client-testimonials {
            display: flex;
            align-items: center;
            gap: 0.8rem;

            img {
              width: 54px;
              border-radius: 60px;
            }
            p {
              margin-top: 0;
              margin-bottom: 0;
              font-family: var(--font-family-headling);
              color: var(--secondary-color);
              font-weight: 500;
              font-size: 1.1rem;
            }
          }
        }

        ul {
          margin-top: 0;
          margin-bottom: 1rem;
          padding: 0;
          list-style: none;
          display: flex;
          gap: 1px;

          i {
            color: #F2BD2B;
          }
        }

        .box-pagination {
          position: relative;
          display: flex;
          justify-content: space-between;

          .swiper-pagination {
            position: relative;
            text-align: left;
            transition: .3s opacity;
            transform: translate3d(0, 0, 0);
            z-index: 10;
            width: max-content;
            bottom: 0 !important;
            font-size: 1.2rem;
            font-family: var(--font-family-headling);
            color: var(--secondary-color) !important;
          }

          .col-buttons {
            width: max-content;
            display: flex;
            gap: 3rem;

            .swiper-button-next, .swiper-button-prev {
              position: relative;
            }
            .swiper-button-next:after, .swiper-button-prev:after {
              font-size: 1.25rem;
              font-weight: 900;
              color: var(--secondary-color);
            }
          }
          
        }

      }

    }
  }
}

#logos {
  padding: 50px 0;
  .swiper-slide {
    text-align: center;
  }
  img {
    width: 125px;
  }
  .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.25;
    width: 1.35rem;
    height: 2px;
    border-radius: 0px;
  }
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }
}

#case-studies {
  padding: 50px 0;

  @media (max-width: 768px){
    .text-end {
      text-align: left !important;
    }
  }

  @media (max-width: 768px){
    padding: 50px 0.5rem;
  }

  .top-title {
    font-weight: 400;
    margin-bottom: 0;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    max-width: 325px;

    @media (max-width: 768px){
      font-size: 1.75rem;
    }
  }

  .swiper-wrapper {
  }
  .swiper-slide {
    margin: 30px 0;

    .card-case-studies {
      max-width: 385px;
      width: 100%;
      margin: 0 auto;

      img{
        width: 100%;
        height: 250px;
        object-fit: cover;
      }

      h6 {
        font-size: 1.25rem;
        margin: 1rem 0 0.7rem 0;
      }

      p {
        margin-top: 0;
        margin-bottom: 1rem;
        color: var(--secondary-color);
        font-weight: 400;
      }

      a {
        color: var(--primary-color);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.95rem;
        font-weight: 500;
      }
    }
  }


  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

#newsletter {
  background-color: #151515;
  padding: 50px 0;
  position: relative;
  z-index: 1;

  .row {
    align-items: center;

    @media (max-width: 768px) {
      gap: 1rem;
    }
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 450px;
    font-weight: 800;
    color: var(--white-color);

    @media (max-width: 800px) {
      font-size: 1.25rem;
      width: 100%;
    }
  }

  form {
    position: relative;
    max-width: 375px;
    margin-left: auto;

    @media (max-width: 768px) {
      margin-left: 0;
    }

    input {
      background: transparent;
      border: 1px #fff solid;
      width: 100%;
      padding: 0.8rem;
      color: #fff;
      border-radius: 0;
      font-size: 0.9rem;

      &::placeholder {
        color: #fff;
      }
    }
    button {
      width: 150px;
      height: 100%;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: var(--white-color);
      color: var(--secondary-color);
      font-weight: 500;
      text-transform: uppercase;
      font-size: 0.85rem;
      border: none;

      @media (max-width: 800px) {
        width: 115px;
        padding-left: 0.15rem;
      }

      i {
        color: var(--primary-color);
        padding-left: 0.5rem;

        @media (max-width: 800px) {
          padding-left: 0.15rem;
        }
      }
    }
  }
}

#call-to-action-footer {
  background: linear-gradient(#151515 70%, #000 70%);
  position: relative;
  z-index: 1;

  .box-cta-footer {
    background: linear-gradient(#000000b0, #000000b0), url(../img/cta-footer.jpg);
    background-size: cover;
    padding: 6rem 3rem 3rem 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    @media (max-width: 800px) {
      padding: 6rem 1rem 1rem 1rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      width: 450px;
      font-weight: 800;
      color: var(--white-color);
      margin-bottom: -5px;

      @media (max-width: 800px) {
        font-size: 1.75rem;
        width: 100%;
      }
    }

    .btn-solid-cta {
      padding: 13px 20px 12px 20px;
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 600;
      background-color: var(--white-color);
      text-transform: uppercase;
      text-decoration: none;
      color: var(--secondary-color);
      font-family: var(--font-family-headling);

      @media (max-width: 800px) {
        padding: 10px 16px 10px 16px;
        display: inline-block;
        font-size: 0.75rem;
      }

      i {
        padding-left: 0.5rem;
        color: var(--primary-color);
      }
    }
  }
}

#footer {
  background-color: var(--secondary-color);
  padding: 50px 0;
  position: relative;
  z-index: 1;

  hr {
    margin: 25px 0;
  }

  .row {
    align-items: center;
  }

  h6 {
    font-size: 0.95rem;
    color: var(--white-color) !important;
    margin-bottom: 0.25rem !important;

    i{
      color: var(--primary-color);
    }
  }

  p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--white-color);
    opacity: 0.65;
  }

  .box-links {
    display: flex;
    justify-content: space-between;

    @media (max-width: 768px){
      flex-wrap: wrap;
      gap: 2rem;
    }
    @media (max-width: 800px) {
      justify-content: center;
    }
    
    a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--white-color);
      gap: 1rem;

      i {
        color: var(--primary-color);
      }

      strong {
        font-size: 14px;
      }

      span {
        font-size: 12px;
        max-width: 140px;
        opacity: 0.8;

        @media (max-width: 800px) {
          max-width: 125px;
        }
      }
    }
  }
}

footer {
  background-color: var(--secondary-color);
  padding-bottom: 1rem;
  font-weight: 300;
  position: relative;
  z-index: 1;

  @media (max-width: 768px){
    text-align: center!important;

    .row {
      flex-direction: column-reverse;
    }
  }

  hr {
    margin-bottom: 1rem;
  }

  p {
    font-size: 0.85rem;
    color: var(--white-color);
    margin: 0;
    display: inline-block;
  }
  a {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--white-color);
    padding: 0px 2px;
  }
  .text-end {
    text-transform: uppercase;

    @media (max-width: 768px){
      text-align: center!important;
    }
  }
}

#hero-1 {
  padding: 100px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;

  @media (max-width: 800px) {
    padding: 60px 0;
  }

  .top-title {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
    margin: 0;
  }
  h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0.5rem 0;

    @media (max-width: 1024px) {
      font-size: 3.5rem;
    }
    @media (max-width: 800px) {
      font-size: 2.25rem;
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffff;
    opacity: 0.75;

    @media (max-width: 1024px) {
      font-size: 1.15rem;
    }
    @media (max-width: 800px) {
      font-size: 1rem;
      margin-bottom: 0rem;
    }
  }
  a {
    color: var(--white-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;

    i {
      color: var(--primary-color);
      position: relative;
      transform: rotate(-45deg);
    }
  }
}

#hero-2 {
  padding: 60px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;

  @media (max-width: 800px) {
    padding: 60px 0;
  }

  .top-title {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
    margin: 0 auto;
    max-width: fit-content;
  }
  h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0.5rem 0;

    @media (max-width: 1024px) {
      font-size: 3.5rem;
    }
    @media (max-width: 800px) {
      font-size: 2.25rem;
    }
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffff;
    opacity: 0.75;

    @media (max-width: 1024px) {
      font-size: 1.15rem;
    }
    @media (max-width: 800px) {
      font-size: 1rem;
      margin-bottom: 0rem;
    }
  }
}

#hero-3 {
  padding: 100px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;

  @media (max-width: 800px) {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0.5rem 0;

    @media (max-width: 1024px) {
      font-size: 3.5rem;
    }
    @media (max-width: 800px) {
      font-size: 2.25rem;
    }
  }
  span {
    padding: 0 0.5rem;
    display: inline-block;
    color: var(--white-color);
    text-transform: uppercase;

    i{
      color: var(--primary-color);
    }
  }
}

#hero-4 {
  padding: 60px 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;

  @media (max-width: 800px) {
    padding: 60px 0;
  }

  .row {
    align-items: center;

    @media (max-width: 800px) {
      gap: 1rem;
    }
  }

  .text-content {
    max-width: 500px;
    margin: 0 auto;

    h1 {
      font-size: 2.7rem;
      text-transform: uppercase;
      font-weight: 400;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
      margin: 0.5rem 0;

      @media (max-width: 1024px) {
        font-size: 3.5rem;
      }
      @media (max-width: 800px) {
        font-size: 2.25rem;
      }
    }

    hr {
      width: 50px;
      border-top: var(--primary-color) 2px solid;
      margin: 1rem 0;
    }

    p{
      color: var(--white-color);

      strong {
        font-size: 1.25rem;
      }
    }
  }

  img {
    max-width: 525px;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
}

#case-studies-list {
  padding-bottom: 50px;

  #pagination-controls {

    .current-page {
      background: transparent;
      font-size: 1.25rem;
      color: var(--secondary-color);
      width: 25px;
      height: 32px;
      display: inline-block;
      border-bottom: 2px var(--primary-color) solid;
    }

    .pagination-btn {
      background: transparent;
      font-size: 1.25rem;
      color: var(--secondary-color);
      width: 25px;
      height: 32px;
      display: inline-block;
      border: none;
      opacity: 0.5;
    }
  }
}

.dropdown-light {
  position: relative;
  display: inline-block;

  .dropbtn {
    background: transparent;
    color: var(--text-color);
    font-size: 16px;
    border: none;
    cursor: pointer;

    i {
      color: var(--secondary-color);
    }
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--white-color);
    min-width: 260px;
    border: 1px var(--border-color-gray) solid;
    z-index: 9;
  }

  .dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    text-align: center!important;
    font-weight: 300;
  }

  .dropdown-content a:hover {background-color: #f1f1f1;}

  &:hover .dropdown-content {
    display: block;
  }

  &:hover .dropbtn {
    background-color: transparent;
  }
}

hr.light-color {
  margin: 0;
  color: inherit;
  border: 0;
  border-top: var(--border-color-gray) 1px solid;
  opacity: 1;
}

.card-case-studies-large {
  padding: 1rem 0;
  
  img {
    width: 100%;
    height: 350px;
    object-fit: cover;

    @media (max-width: 800px) {
      height: 280px;
    }
  }

  h6 {
    font-size: 1.75rem;
    margin: 1rem 0;
    line-height: 1.1;
    font-weight: 400;

    @media (max-width: 800px) {
      font-size: 1.35rem;
    }
  }

  a {
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;

    i {
      color: var(--primary-color);
      position: relative;
      transform: rotate(-45deg);
    }
  }
}

#cases-studies-details-photos {
  background: linear-gradient(var(--secondary-color) 40%, var(--white-color) 40%);

  .swiper-slide {
    height: 350px;
    width: 550px;
  }
  img {
    height: 350px;
    width: 550px;
    object-fit: cover;
  }
  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

#case-studies-details-content {

  h5 {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: end;

    @media (max-width: 800px) {
      text-align: start;
      margin-bottom: 1rem;
    }
  }

  .list-process-steps {
    padding: 0;
    list-style: none;
    margin-bottom: 0;

    li {
      padding-bottom: 2.5rem;
    }
    small {
      font-size: 1rem;
      color: var(--primary-color);
      text-transform: uppercase;
    }
    hr{
      border-top: var(--border-color-gray) 1px solid;
      width: 35px;
      margin: 6px 0 4px 0;

      @media (max-width: 800px) {
        margin: 6px 0;
      }
    }
    strong {
      font-size: 1.75rem;
      font-family: var(--font-family-headling);
      font-weight: 400;

      @media (max-width: 800px) {
        font-size: 1.5rem;
        line-height: 1;
      }
    }
  }

  .list-project-details {
    padding-left: 1rem;
    margin-bottom: 0;
    list-style-type: square;

    li {
      margin-bottom: 0.25rem;
    }

    li::marker {
      color: var(--primary-color);
    }
  }
}

#case-studies-details-end {
  padding: 100px 0;

  @media (max-width: 800px) {
    padding: 80px 0 70px 0;
  }

  h2 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 auto 1rem auto;
    max-width: max-content;
    position: relative;

    &::after {
      content: '';
      width: 6px;
      height: 6px;
      background-color: var(--primary-color);
      position: absolute;
      left: -1rem;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  p {
    color: var(--white-color);
    margin-bottom: 0;
  }
}

#gallery-list {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 0.01rem;
    gap: 1rem;
    position: relative;
    z-index: 0;

    @media (max-width: 800px) {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .gallery-item {
    width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    padding: 0 5px;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-content {
    position: relative;

    &:hover {
      background-color: var(--secondary-color);

      &::after {
        content: '+';
        color: var(--white-color);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        font-weight: 300;
        border: 2px var(--white-color) solid;
        width: 4rem;
        height: 4rem;
        text-align: center;
        line-height: 1.3;
        border-radius: 4rem;
      }

      img {
        opacity: 0.35;
      }
    }
  }

  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, #000000a3);
    color: #fff;
    padding: 2rem 1.5rem 1.25rem 1.5rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;

    i {
      position: relative;
      transform: rotate(-45deg);
    }
  }

  .modalGallery {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
  }


  .modal-nav-gallery {
    text-align: center;
    margin-top: 1rem;
  }

  .modal-nav-gallery button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    margin: 0 1rem;
    cursor: pointer;
  }

  .modal-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .modal-content-gallery {
      display: block;
      margin: auto;
      max-width: 90%;
      max-height: 80vh;

      @media (max-width: 800px) {
        max-width: 60%;
      }
    }

    #modalCaption {
      color: white;
      text-align: center;
      position: absolute;
      left: 50%;
      bottom: -3rem;
      transform: translateX(-50%);
    }
    .close-gallery {
      position: absolute;
      top: 0rem;
      right: -2rem;
      font-size: 30px;
      color: white;
      cursor: pointer;

      @media (max-width: 800px) {
        right: 0.5rem;
      }
    }
    
    button {
      height: 3rem;
      width: 3rem;
      border: 2px var(--white-color) solid;
      border-radius: 5rem;
      background: transparent;
      color: var(--white-color);
      font-size: 1.35rem;
      line-height: 2;

      @media (max-width: 800px) {
        height: 2rem;
        width: 2rem;
        font-size: 1rem;
        line-height: 1;
      }
    }
  }

  #loadMore {
      display: block;
      margin: -40rem auto -25rem auto;
      padding: 2rem 2rem 30rem 2rem;
      font-size: 1rem;
      cursor: pointer;
      width: 100%;
      border: none;
      background: var(--white-color);
      position: relative;
      z-index: 0;

    span {
      display: inline-block;
      border: 2px var(--secondary-color) solid;
      padding: 1rem 1.5rem;
      line-height: 1;
      text-transform: uppercase;
      font-weight: 500;
      font-family: var(--font-family-headling);
    }
    i {
      padding-left: 0.5rem;
      color: var(--primary-color);
    }

    @media (max-width: 800px) {
      margin: 0rem auto 0rem auto;
      padding: 2rem 2rem 2rem 2rem;
    }
  }
}

#post-featured {
  background: linear-gradient(var(--secondary-color) 25%, var(--white-color) 25%);
}

.card-post-featured {
  background: var(--secondary-color);
  min-height: 500px;
  display: flex;
  padding: 4rem;
  align-items: end;

  @media (max-width: 800px) {
    padding: 1.5rem;
  }

  .card-post-featured-content {
    width: 100%;
    max-width: 500px;

    h2 {
      color: var(--white-color);
      font-size: 1.65rem;
      text-transform: initial;
      font-weight: 500;
      margin-bottom: 0.5rem;

      @media (max-width: 800px) {
        font-size: 1.5rem;
      }
    }
    p {
      color: var(--white-color);
    }
    a{
      color: var(--white-color);
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0.95rem;
      font-weight: 500;

      i {
        color: var(--primary-color);
        position: relative;
        transform: rotate(-45deg);
      }
    }
  }
}

.card-post-item {
  padding: 1rem 0;
  
  img {
    width: 100%;
    height: 225px;
    object-fit: cover;

    @media (max-width: 800px) {
      height: 200px;
    }
  }

  h6 {
    font-size: 1.35rem;
    margin: 0.65rem 0;
    line-height: 1;
    font-weight: 400;

    @media (max-width: 800px) {
      font-size: 1.25rem;
    }
  }

  p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  a {
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;

    i {
      color: var(--primary-color);
      position: relative;
      transform: rotate(-45deg);
    }
  }
}

.box-link-post-category {
  display: flex;
  width: 100%;
  overflow-x: auto;
  justify-content: center;

  @media (max-width: 800px) {
    justify-content: start;
  }

  .link-post-category {
    position: relative;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1 !important;
    margin-top: 1.65rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    padding: 0 1rem;
    display: inline-block;
    white-space: nowrap;

    &::after {
      content: '';
      width: 6px;
      height: 6px;
      background-color: var(--border-color-gray);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

#blog-post-list {
  .page-numbers.current {
    background: transparent;
    font-size: 1.25rem;
    color: var(--secondary-color);
    width: 25px;
    height: 32px;
    display: inline-block;
    border-bottom: 2px var(--primary-color) solid;
    opacity: 1;
    text-decoration: none;
  }
  .page-numbers {
    background: transparent;
    font-size: 1.25rem;
    color: var(--secondary-color);
    width: 25px;
    height: 32px;
    display: inline-block;
    border: none;
    opacity: 0.5;
    text-decoration: none;
  }
}


#blog-post-detail {
  padding: 2rem 0;

  h1, h2, h3, h4, h5, h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  img {
    margin: 1rem 0;
  }

  ul {

    li {
      margin-bottom: 0.5rem;
    }
  }

  .link-footer-post {
    text-transform: uppercase;
    font-family: var(--font-family-headling);
    font-size: 0.8rem;

    a {
      color: var(--secondary-color);
    }
  }
}

.card-white-papers {
  display: flex;
  padding: 0.75rem;
  gap: 1rem;
  border: 1px var(--border-color-gray) solid;
  margin: 0.75rem 0;

  @media (max-width: 800px) {
    flex-direction: column;
    align-items: center;
  }

  img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 1px var(--border-color-gray) solid;
  }
  a {
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;

    i {
      color: var(--primary-color);
      position: relative;
      transform: rotate(-45deg);
    }
  }
  .card-white-papers-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;

    @media (max-width: 800px) {
      text-align: center;
      gap: 1.5rem;
    }
  }
  span {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--secondary-color);
    opacity: 0.5;
  }
  h6 {
    font-size: 1.65rem;
    line-height: 1.2;
    font-weight: 500;
  }
}

#clients-list {
  padding: 0;

  h3 {
    text-transform: uppercase;
    font-weight: 700;
  }
}

.box-client-list-wrapper {
  max-width: 100%;


  .box-client-list {
    display: flex;
    gap: 1%;
    flex-wrap: wrap;

    @media (max-width: 800px) {
      flex-direction: column;
      max-height: 350px;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    &.expanded {
      max-height: none;
    }

    p {
      position: relative;
      margin: 0.25rem 0;
      padding-left: 1rem;
      color: var(--text-color);
      display: inline-block;
      width: 24%;
      flex: 0 0 24%;

      @media (max-width: 800px) {
        width: 100%;
        flex: 0 0 100%;
      }

      &::after {
        content: '';
        width: 6px;
        height: 6px;
        background-color: var(--border-color-gray);
        position: absolute;
        left: 0;
        top: 40%;
        transform: translateY(-50%);
      }
    }

    a {
      position: relative;
      margin: 0.25rem 0;
      padding-left: 1rem;
      color: var(--text-color);
      display: inline-block;
      width: 24%;
      flex: 0 0 24%;

      @media (max-width: 800px) {
        width: 100%;
        flex: 0 0 100%;
      }

      &::after {
        content: '';
        width: 6px;
        height: 6px;
        background-color: var(--primary-color);
        position: absolute;
        left: 0;
        top: 40%;
        transform: translateY(-50%);
      }
    }
  }

  .show-more-btn {
    display: none;
    margin: 10px auto;
    background: linear-gradient(transparent 0%, var(--white-color) 85%);
    color: var(--secondary-color);
    padding: 3rem 0 0.9rem 0;
    border: none;
    cursor: pointer;
    border-radius: 0;
    font-family: var(--font-family-headling);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
    margin: -5rem 0 0 0;
    position: relative;
    z-index: 9;
    border-bottom: 1px var(--border-color-gray) solid;

    @media (max-width:425px) {
      display: block;
    }

    i {
      color: var(--primary-color);
      padding-left: 0.35rem;
    }
  }
}

#careers-content {
  background: #F8F8F8;
  padding: 3rem 0;

  h4 {
    text-transform: uppercase;
    font-weight: 700;
  }

  h5 {
    text-transform: uppercase;
    font-weight: 600;
  }
  ul {
    list-style-type: square;
    padding-left: 1rem;

    li::marker {
      color: var(--primary-color);
    }
    li {
      margin-bottom: 0.25rem;
    }
  }
  .box-careers-apply {
    background: var(--white-color);
    padding: 2rem;
    border: 1px solid var(--border-color-gray);
    margin-top: 2rem;

    @media (max-width: 800px) {
      padding: 1.5rem;
    }

    p {
      margin-bottom: 0;
    }

    strong {
      color: var(--secondary-color);
      font-weight: 500;
    }

    .box-careers-apply-header {
      display: flex;
      justify-content: space-between;
      align-items: center;

      @media (max-width: 800px) {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      h6 {
        font-size: 1.75rem;
        margin-bottom: 0.35rem;
      }
      p {
        margin-top: 0;
        font-size: 0.85rem;
      }
      a {
        color: var(--secondary-color);
        text-decoration: none;
        padding: 0.85rem 1.15rem;
        border: 1px solid var(--secondary-color);
        line-height: 1;
        display: inline-block;
      }
    }

    .box-careers-apply-footer {
      display: flex;
      gap: 1rem;

      @media (max-width: 800px) {
        flex-direction: column;
        margin-top: 1rem;
      }

      .accordion-careers {
        background-color: var(--white-color);
        cursor: pointer;
        padding: 0.75rem 1rem;
        width: 100%;
        border: none;
        font-size: 1rem;
        transition: 0.4s;
        border-bottom: 1px solid var(--border-color-gray);
        text-align: left;
      }
      .active-careers, .accordion-careers:hover {
        background-color: var(--white-color);
      }

      .accordion-careers:after {
        content: '\002B';
        color: var(--primary-color);
        font-weight: 400;
        float: right;
        margin-left: 5px;
        font-size: 1.5rem;
        line-height: 1;
      }

      .active-careers:after {
        content: "\2212";
      }

      .panel-careers {
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        font-size: 0.85rem;
        width: 100%;

        .panel-careers-content {
          padding: 0.5rem;
          width: 100%;
        }
      }
      .box-careers-apply-col {
        flex: 0 0 calc(50% - 0.5rem);
      }
    }
  }
}

.form-careers-apply {

  .btn-close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
  }
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    outline: 0;
    padding: 2rem 1.5rem;
  }
  h6 {
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
  }
  input {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  textarea {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  select {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: var(--primary-color);
    font-family: var(--font-family-headling);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
  }
  select, option {
    color: #757575;
  }
  
}

#contact-content{
  margin-top: 3rem;
  padding-bottom: 5rem;

  form {
    border: 1px var(--border-color-gray) solid;
    padding: 2rem 1.5rem;
    max-width: 425px;
    position: relative;
    top: -8rem;
    background: var(--white-color);
    margin: 0 0 0 auto;
    margin-bottom: -7rem;

    @media (max-width: 800px) {
      top: 1rem;
      margin-bottom: 3rem;
    }

    .modal-content {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      color: var(--bs-modal-color);
      pointer-events: auto;
      background-color: var(--bs-modal-bg);
      background-clip: padding-box;
      border: none;
      border-radius: 0;
      outline: 0;
      padding: 2rem 1.5rem;
    }
    h6 {
      font-size: 1.5rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    p {
      margin-top: 0;
      margin-bottom: 1rem;
      text-align: center;
      font-size: 0.9rem;
      line-height: 1.3;
    }
    input {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    textarea {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    select {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    button[type="submit"] {
      width: 100%;
      padding: 0.8rem;
      border: none;
      background: var(--primary-color);
      font-family: var(--font-family-headling);
      text-transform: uppercase;
      font-weight: 500;
      color: var(--white-color);
    }
    select, option {
      color: #757575;
    }
  }
	
  .form-script {
    border: 1px var(--border-color-gray) solid;
    padding: 2rem 1.5rem;
    max-width: 425px;
    position: relative;
    top: -8rem;
    background: var(--white-color);
    margin: 0 0 0 auto;
    margin-bottom: -7rem;

    @media (max-width: 800px) {
      top: 1rem;
      margin-bottom: 3rem;
    }

    .modal-content {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      color: var(--bs-modal-color);
      pointer-events: auto;
      background-color: var(--bs-modal-bg);
      background-clip: padding-box;
      border: none;
      border-radius: 0;
      outline: 0;
      padding: 2rem 1.5rem;
    }
    h6 {
      font-size: 1.5rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    p {
      margin-top: 0;
      margin-bottom: 1rem;
      text-align: center;
      font-size: 0.9rem;
      line-height: 1.3;
    }
    input {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    textarea {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    select {
      width: 100%;
      border: 1px solid var(--border-color-gray);
      padding: 0.65rem 0.85rem;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      background: var(--white-color);
    }
    button[type="submit"] {
      width: 100%;
      padding: 0.8rem;
      border: none;
      background: var(--primary-color);
      font-family: var(--font-family-headling);
      text-transform: uppercase;
      font-weight: 500;
      color: var(--white-color);
    }
    select, option {
      color: #757575;
    }
  }

  .info-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1.5rem 0;

    img {
      width: 35px;
      height: 35px;
      padding: 0.5rem;
      border: 1px #ee252e17 solid;
      background: #FFFBFB;
    }
    p {
      margin-bottom: 0.25rem;
      font-weight: 400;
      font-size: 0.85rem;
      line-height: 1;
    }
    strong {
      font-weight: bolder;
      font-weight: 400;
      color: var(--secondary-color);
      text-transform: uppercase;
      font-size: 0.9rem;
      font-family: var(--font-family-headling);
    }
    a {
      color: var(--secondary-color);
      text-decoration: underline;
      font-weight: 500;
    }
  }


  .map-img {
    display: inline-block;
    width: 100%;

    img {
      object-fit: cover;
      height: 500px;
      width: 100%;
      border: 1px var(--border-color-gray) solid;
    }
  }
}

#about-us-content{
  margin: 50px 0;

  h3 {
    text-transform: uppercase;
    font-weight: 800;
  }

  .btn-light-about {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px var(--secondary-color) solid;
    font-family: var(--font-family-headling);

    i {
      color: var(--primary-color);
      padding-left: 0.5rem;
    }
  }
}

#about-us-content-photos {
  margin: 50px 0;

  .swiper-slide {
    height: 350px;
    width: 550px;
  }
  img {
    height: 350px;
    width: 550px;
    object-fit: cover;
  }
  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

#about-us-content-difference {
  margin: 50px 0 20px 0;

  .top-title-2 {
    max-width: max-content;
    margin: 0 auto;
  }
  h3 {
    font-size: 1/75rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .swiper-slide {
    width: auto;
  }
  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

.card-about-us-difference {
  margin: 2rem 0;

  img {
    max-width: 70px;
    margin-bottom: 0.9rem;
  }
  h6 {
    font-size: 1.625rem;
    font-weight: 400;

    strong {
      display: block;
      font-weight: 700;
    }
  }
  hr {
    margin: 0.75rem 0;
    color: inherit;
    border: 0;
    border-top: var(--border-color) 2px solid;
    width: 2rem;
    opacity: 0.5;
  }

}

.card-about-us-process {
  padding: 1.25rem;
  border: 1px var(--border-color-gray) solid;
  max-width: 300px;
  width: 100%;
  margin: 2rem 0;
  min-height: 300px;


  span {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    display: block;
  }
  h6 {
    font-size: 1.5rem;
  }
  hr {
    margin: 0.75rem 0;
    color: inherit;
    border: 0;
    border-top: var(--primary-color) 2px solid;
    width: 2rem;
    opacity: 0.5;
  }
  p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
}

.card-events {
  padding: 1.15rem;
  border: 1px var(--border-color-gray) solid;
  max-width: 300px;
  margin: 1rem auto;

  img {
    width: 100%;
    padding: 1rem;
    object-fit: contain;
    height: 175px;
  }
  h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem !important;
  }
  p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.2;

    i {
      color: var(--primary-color);
    }
  }
  a {
    text-transform: uppercase;
    font-family: var(--font-family-headling);
    font-weight: 500;
    text-decoration: none;
    color: var(--secondary-color);
    margin-top: 2rem;
    display: block;
    font-size: 0.85rem;

    i {
      padding-left: 0.5rem;
      color: var(--primary-color);
    }
  }
}

#events-content-photos {
  margin: 50px 0;

  .top-title-2 {
    max-width: max-content;
    margin: 0 auto;
  }
  h3 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2.35rem;
  }

  img {
    height: 350px;
    width: 550px;
    object-fit: cover;
  }
  
  .swiper-slide {
    width: auto;
  }
  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

#hero-service-areas {
  min-height: 585px;
  background: #000;
  position: relative;
  padding: 60px 0;

  img {
    margin: 0 auto;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1320px;
    width: 100%;
    height: 585px;
    object-fit: cover;

    @media (max-width: 768px) {
      top: auto;
      bottom: 0;
      height: 350px;
      object-position: 85%;
    }
  }

  .container {
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .row {
    min-height: 450px;
    align-items: center;

    @media (max-width: 768px) {
      align-items: flex-start;
      padding-top: 4rem;
    }
  }
  h1 {
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;

    @media (max-width: 800px) {
      font-size: 2rem;
    }

    span {
      color: var(--primary-color);
    }
  }
  p {
    color: var(--white-color);
    font-weight: 300;
    font-size: 1.35rem;

    @media (max-width: 800px) {
      font-size: 1rem;
    }
  }
  .top-title {
    font-weight: 600 !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding-left: 0.85rem;
    margin: 0 0 0.25rem 0;
    margin-bottom: 0.25rem !important;
    line-height: 1.2 !important;
  }
}

.card-case-service-areas {
  padding: 1rem 0;
  
  img {
    width: 100%;
    height: 225px;
    object-fit: cover;

    @media (max-width: 800px) {
      height: 200px;
    }
  }

  h6 {
    font-size: 1.35rem;
    margin: 0.65rem 0;
    line-height: 1;
    font-weight: 400;

    @media (max-width: 800px) {
      font-size: 1.25rem;
    }
  }

  p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  a {
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;

    i {
      color: var(--primary-color);
      position: relative;
      transform: rotate(-45deg);
    }
  }
}

#case-service-areas {
  margin: 0 0 50px 0;
  
  .swiper-slide {
    width: auto;
  }
  .swiper-pagination-bullet {
    opacity: 0.25;
    background: var(--secondary-color);
    width: 40px;
    height: 3px;
    border-radius: 0;

    @media (max-width: 992px) {
      width: 30px;
    }
    @media (max-width: 800px) {
      width: 1rem;
      top: -0.55rem;
      position: relative;
      margin: 0 2px;
    }
  }
  .swiper-pagination-bullet-active {
    opacity: 0.5;
    background: var(--primary-color);
  }
  .box-pagination {
    position: relative;
    max-width: 1320px;
    bottom: 0;
    padding-bottom: 50px;

    .swiper-button-next:after, .swiper-button-prev:after {
      font-family: swiper-icons;
      font-size: 1.5rem;
      text-transform: none !important;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--secondary-color);
    }
    .swiper-button-next::before, .swiper-button-prev::before {
      content: '';
      position: absolute;
      background-color: var(--secondary-color);
      width: 50px;
      height: 2px;
      top: 49%;
      transform: translateY(-50%);
      border-radius: 5px;

      @media (max-width: 800px) {
        display: none;
      }
    }
    .swiper-button-prev::before {
      left: 8px;
    }
    .swiper-button-prev {
      left: -5px;
    }
    .swiper-button-next::before {
      right: 8px;
    }
    .swiper-button-next {
      right: -5px;
    }
  }
}

#content-error {
  padding: 50px 0;

  img {
    width: 100%;
    margin-bottom: -3rem;
  }

  h3 {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.95rem;
    margin-bottom: 2rem;
  }

  a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family-headling);
    color: var(--secondary-color);
    border: 1px var(--secondary-color) solid;
    padding: 1rem 2rem;
    font-weight: 500;
    display: inline-block;

    i {
      padding-right: 0.5rem;
      color: var(--primary-color);
    }
  }
}

#video-list {
  background: linear-gradient(var(--secondary-color) 100px, transparent 100px);
  padding-bottom: 40px;
}

#slider-industrial-page {
  background: linear-gradient(var(--secondary-color) 45%, transparent 45%);


  hr {
    padding-top: 3rem;
    opacity: 0.2;
  }

  h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    margin: 0.5rem 0;

    @media (max-width: 800px) {
      font-size: 2rem;
    }
  }

  .slider-industrial-page {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-top: 25px;
    padding-bottom: 50px;

    @media (max-width: 1400px) {
      /* max-width: calc(100vw - calc(calc(100vw - 1140px) / 2) - 22px); */
    }

    @media (max-width: 1200px) {
      /* max-width: 1140px; */
    }

    @media (max-width: 992px) {
      margin-top: 30px;
      padding: 1rem;
    }

    .card-industrial-page {
      position: relative;
      width: 100%;
      max-width: 425px;
      height: 230px;
      padding: 1.25rem;
      border: 1px solid var(--border-color-gray);
      background-color: var(--white-color);

      @media (max-width: 1024px) {
        max-width: 350px;
        height: 400px;
        object-fit: cover;
      }

      @media (max-width: 800px) {
        height: 190px;
        padding: 1.25rem 1.25rem 0 1.25rem;
      }


      img {
        max-width: 65px;

        @media (max-width: 1024px) {
          max-width: 4rem;
        }
      }
      h6 {
        font-size: 24px;
        margin: 1rem 0 0.5rem 0 !important;

        @media (max-width: 1024px) {
          font-size: 1.45rem;
          margin: 0.5rem 0 0.25rem 0 !important;
        }
      }
      p {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 300;

        @media (max-width: 1024px) {
          font-size: 1rem;
          margin-top: 0rem;
        }
      }
    }
    .swiper-pagination-bullet {
      opacity: 0.25;
      background: var(--secondary-color);
      width: 40px;
      height: 3px;
      border-radius: 0;

      @media (max-width: 992px) {
        width: 30px;
      }
    }
    .swiper-pagination-bullet-active {
      opacity: 0.5;
      background: var(--primary-color);
    }
    .swiper-pagination {
      max-width: 1320px;
      bottom: 1rem !important;

      @media (max-width: 1400px) {
        max-width: 1140px;
      }

      @media (max-width: 1200px) {
        max-width: 1140px;
      }

      @media (max-width: 992px) {
        text-align: center;
      }
    }
    .box-pagination {
      position: relative;
      max-width: 1320px;
      bottom: -25px;
      padding-bottom: 50px;
	  margin: 0 auto;

      .swiper-button-next::after, .swiper-button-prev::after {
        font-family: swiper-icons;
        font-size: 1.5rem;
        text-transform: none !important;
      }
      .swiper-button-next, .swiper-button-prev {
        color: var(--secondary-color);
      }
      .swiper-button-next::before, .swiper-button-prev::before {
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 50px;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
      }
      .swiper-button-prev::before {
        left: 8px;
      }
      .swiper-button-prev {
        left: -5px;
      }
      .swiper-button-next::before {
        right: 8px;
      }
      .swiper-button-next {
        right: -5px;
      }
    }
    
  }

  p {
    font-size: 1.15rem;
    font-weight: 300;

    @media (max-width: 800px) {
      font-size: 1rem;
      margin-top: 1rem;
    }
  }
}

#slider-industrial-content {
  margin: 50px 0;

  h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;

    @media (max-width: 800px) {
      font-size: 1.75rem;
    }
  }

  p{

    strong {
      font-weight: bolder;
      text-transform: uppercase;
    }
  }

  .box-list-industrial {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0;
    justify-content: space-between;

    @media (max-width: 800px) {
      margin: 1rem 0;
      padding: 0 2rem;
    }

    span {
      display: block;
      flex: 0 0 30%;
      width: 30%;
      font-size: 1.15rem;
      font-family: var(--font-family-headling);
      color: var(--secondary-color);
      position: relative;

      @media (max-width: 800px) {
        flex: 0 0 100%;
        width: 100%;
      }

      &::after {
        content: '';
        position: absolute;
        left: -14px;
        top: 50%;
        transform: translateY(-50%);
        width: 7px;
        height: 7px;
        background-color: var(--primary-color);

      }
    }
  }

}

#slider-industrial-content-dark {
  background-color: var(--secondary-color);
  padding: 70px 0;

  .row {
    align-items: center;

    @media (max-width: 800px) {
      flex-direction: column-reverse;
    }
  }
  .top-title {
    width: max-content;
    margin: 0 auto;
  }
  h2 {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--white-color);

    @media (max-width: 800px) {
      font-size: 1.75rem;
    }
  }
  p {
    color: var(--white-color);
    font-weight: 300;

    strong {
      text-transform: uppercase;
    }
  }
  ul {
    color: var(--white-color);
    list-style-type: square;
    font-weight: 300;

    li::marker {
      color: var(--primary-color)
    }
  }
  strong {
    font-weight: 500;
    display: block;
    font-family: var(--font-family-headling);
    font-size: 1.15rem;
  }

  img {
    max-width: 100%;
    height: 100%;
    max-height: 450px;
    width: 100%;
    object-fit: cover;
  }
}

#our-process-industrial {
  padding: 50px 0;

  .top-title {
    margin: 0 auto 0.25rem auto;
    width: fit-content;
  }
	
  p {
	margin-top: 0.5rem;
    font-size: 18px;
	  
	@media (max-width: 768px) {
      font-size: 14px;
    }
  }

  .box-process {
    display: flex;
    width: 100%;
    margin-top: 2rem;

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      display: block;
    }

    .card-process {
      flex: 0 0 25%;
      width: 25%;
      border: 1px var(--border-color-gray) solid;
      margin-left: -1px;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      gap: 60px;

      @media (max-width: 768px) {
        flex: 0 0 300px;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -1px;
        justify-content: space-between;
      }

      span {
        margin-top: 0;
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 0.9rem;
        color: var(--primary-color);
        font-family: var(--font-family-headling);
      }

      h6 {
        font-size: 1.5rem;
        margin-bottom: 0.25em;
      }

      hr {
        margin: 4px 0 8px 0;
        color: inherit;
        border: 0;
        border-top: var(--primary-color) 2px solid;
        opacity: 1;
        width: 25px;
      }

      img {
        max-width: 75px;
      }

      p {
		font-size: 1rem;
        margin-bottom: 0;
      }
    }
  }
}

#our-client-industrial {
  padding: 50px 0;
  .swiper-slide {
    text-align: center;
  }
  img {
    width: 125px;
  }
  .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.25;
    width: 1.35rem;
    height: 2px;
    border-radius: 0px;
  }
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }
}

#cta-industrial {
  background-color: var(--primary-color);
  padding: 4rem 0;

  .row {
    align-items: center;

    @media (max-width: 800px) {
      gap: 1rem;
    }
  }
  h5 {
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.5rem;
  }
  p {
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 1.2;
  }
}

#faq-industrial {
  padding: 4rem 0;

  h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .box-faq {
    border-left: 1px var(--border-color-gray) solid;
    padding: 1rem;

    @media (max-width: 800px) {
      border-left: 0px var(--border-color-gray) solid;
      padding: 1rem 0;
    }
  }

  .accordion-industrial {
    background-color: var(--white-color);
    cursor: pointer;
    padding: 1rem 1.25rem;
    width: 100%;
    border: none;
    font-size: 1.5rem;
    transition: 0.4s;
    text-align: left;
    font-family: var(--font-family-headling);

    @media (max-width: 800px) {
      padding: 1rem 0rem 1rem 0rem;
      font-size: 1.25rem;
    }
  }
  .active-industrial, .accordion-industrial:hover {
    background-color: var(--white-color);
  }

  .accordion-industrial:after {
    content: '\002B';
    color: var(--primary-color);
    font-weight: 400;
    float: right;
    margin-left: 5px;
    font-size: 1.5rem;
    line-height: 1;

    @media (max-width: 800px) {
      position: relative;
      top: -1rem;
      line-height: 1.3;
    }
  }

  .active-industrial:after {
    content: "\2212";
  }

  .panel-industrial {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1rem;
    width: 100%;

    .panel-industrial-content {
      padding: 0 1.5rem;
      width: 100%;
    }
  }
}

#slider-service-page {
  background: linear-gradient(var(--secondary-color) 45%, transparent 45%);

  hr {
    padding-top: 3rem;
    opacity: 0.2;
  }

  h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    margin: 0.5rem 0;

    @media (max-width: 800px) {
      font-size: 2rem;
    }
  }

  .slider-service-page {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-top: 25px;
    padding-bottom: 50px;

    @media (max-width: 1400px) {
      /* max-width: calc(100vw - calc(calc(100vw - 1140px) / 2) - 22px); */
    }

    @media (max-width: 1200px) {
      /* max-width: 1140px; */
    }

    @media (max-width: 992px) {
      margin-top: 30px;
      padding: 1rem;
    }

    .card-service-page {
      position: relative;
      width: 100%;
      max-width: 425px;
      height: 230px;
      padding: 1.25rem;
      border: 1px solid var(--border-color-gray);
      background-color: var(--white-color);

      @media (max-width: 1024px) {
        max-width: 350px;
        height: 400px;
        object-fit: cover;
      }

      @media (max-width: 800px) {
        height: 190px;
        padding: 1.25rem 1.25rem 0 1.25rem;
      }


      img {
        max-width: 65px;

        @media (max-width: 1024px) {
          max-width: 4rem;
        }
      }
      h6 {
        font-size: 24px;
        margin: 1rem 0 0.5rem 0 !important;

        @media (max-width: 1024px) {
          font-size: 1.45rem;
          margin: 0.5rem 0 0.25rem 0 !important;
        }
      }
      p {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 300;

        @media (max-width: 1024px) {
          font-size: 1rem;
          margin-top: 0rem;
        }
      }
    }
    .swiper-pagination-bullet {
      opacity: 0.25;
      background: var(--secondary-color);
      width: 40px;
      height: 3px;
      border-radius: 0;

      @media (max-width: 992px) {
        width: 30px;
      }
    }
    .swiper-pagination-bullet-active {
      opacity: 0.5;
      background: var(--primary-color);
    }
    .swiper-pagination {
      max-width: 1320px;
      bottom: 1rem !important;

      @media (max-width: 1400px) {
        max-width: 1140px;
      }

      @media (max-width: 1200px) {
        max-width: 1140px;
      }

      @media (max-width: 992px) {
        text-align: center;
      }
    }
    .box-pagination {
      position: relative;
      max-width: 1320px;
      bottom: -25px;
      padding-bottom: 50px;
	  margin: 0 auto;

      .swiper-button-next::after, .swiper-button-prev::after {
        font-family: swiper-icons;
        font-size: 1.5rem;
        text-transform: none !important;
      }
      .swiper-button-next, .swiper-button-prev {
        color: var(--secondary-color);
      }
      .swiper-button-next::before, .swiper-button-prev::before {
        content: '';
        position: absolute;
        background-color: var(--secondary-color);
        width: 50px;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
      }
      .swiper-button-prev::before {
        left: 8px;
      }
      .swiper-button-prev {
        left: -5px;
      }
      .swiper-button-next::before {
        right: 8px;
      }
      .swiper-button-next {
        right: -5px;
      }
    }
    
  }

  p {
    font-size: 1.15rem;
    font-weight: 300;

    @media (max-width: 800px) {
      font-size: 1rem;
      margin-top: 1rem;
    }
  }
}

#slider-service-content {
  margin: 60px 0;

  .row {
    align-items: center;
  }

  h2 {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;

    @media (max-width: 800px) {
      font-size: 1.75rem;
    }
  }

  p{
    img {
      margin-right: 3px;
    }
    strong {
      font-weight: bolder;
      text-transform: uppercase;
    }
  }

  .box-list-service {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 2rem 0;
    justify-content: space-between;

    @media (max-width: 800px) {
      margin: 1rem 0;
      padding: 0 2rem;
    }

    span {
      display: block;
      flex: 0 0 30%;
      width: 30%;
      font-size: 1.15rem;
      font-family: var(--font-family-headling);
      color: var(--secondary-color);
      position: relative;

      @media (max-width: 800px) {
        flex: 0 0 100%;
        width: 100%;
      }

      &::after {
        content: '';
        position: absolute;
        left: -14px;
        top: 50%;
        transform: translateY(-50%);
        width: 7px;
        height: 7px;
        background-color: var(--primary-color);

      }
    }
  }

  .swiper-wrapper {
	 width: fit-content;
     margin: 0 auto;
  }

}

#our-process-service {
  margin: 60px 0;

  .top-title {
    margin: 0 auto 0.25rem auto;
    width: fit-content;
  }

  h2 {
    font-size: 2.25rem;
  }

  .box-process {
    display: flex;
    width: 100%;
    margin-top: 2rem;

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      display: block;
    }

    .card-process {
      flex: 0 0 25%;
      width: 25%;
      border: 1px var(--border-color-gray) solid;
      margin-left: -1px;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 60px;

      @media (max-width: 768px) {
        flex: 0 0 300px;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -1px;
        justify-content: flex-start;
        border: 1px var(--border-color-gray) solid !important;
      }

      span {
        margin-top: 0;
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 0.9rem;
        color: var(--primary-color);
        font-family: var(--font-family-headling);
      }

      h6 {
        font-size: 1.5rem;
        margin-bottom: 0.25em;
      }

      hr {
        margin: 4px 0 8px 0;
        color: inherit;
        border: 0;
        border-top: var(--primary-color) 2px solid;
        opacity: 1;
        width: 25px;
      }

      img {
        max-width: 50px;
      }

      p {
        margin-bottom: 0;
      }
    }
  }
}

#our-client-service {
  padding: 50px 0;
  .swiper-slide {
    text-align: center;
  }
  img {
    width: 125px;
  }
  .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
  }

  .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.25;
    width: 1.35rem;
    height: 2px;
    border-radius: 0px;
  }
  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }
}

#cta-service {
  background-color: var(--primary-color);
  padding: 4rem 0;

  .row {
    align-items: center;

    @media (max-width: 800px) {
      gap: 1rem;
    }
  }
  h5 {
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.5rem;
  }
  p {
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 1.2;
  }
}

#faq-service {
  padding: 4rem 0;

  h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .box-faq {
    border-left: 1px var(--border-color-gray) solid;
    padding: 1rem;

    @media (max-width: 800px) {
      border-left: 0px var(--border-color-gray) solid;
      padding: 1rem 0;
    }
  }

  .accordion-service {
    background-color: var(--white-color);
    cursor: pointer;
    padding: 1rem 1.25rem;
    width: 100%;
    border: none;
    font-size: 1.5rem;
    transition: 0.4s;
    text-align: left;
    font-family: var(--font-family-headling);
    position: relative;

    @media (max-width: 800px) {
      padding: 1rem 0rem 1rem 0rem;
      font-size: 1.25rem;
    }
  }
  .active-service, .accordion-service:hover {
    background-color: var(--white-color);
  }

  .accordion-service:after {
    content: '\002B';
    color: var(--primary-color);
    font-weight: 400;
    font-family: var(--font-family);
    margin-left: 5px;
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .active-service:after {
    content: "\2212";
  }

  .panel-service {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1rem;
    width: 100%;

    .panel-service-content {
      padding: 0 1.5rem;
      width: 100%;

      @media (max-width: 800px) {
        padding: 0;
      }
    }
  }
}

.slider-service-subsystem {

  .swiper-slide {
    width: 350px;
    height: 400px;
    position: relative;

    img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      background: linear-gradient(transparent, #000);
      display: flex;
      flex-direction: column;
      justify-content: end;
      padding: 2rem;

      h5 {
        color: var(--white-color);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }
      span {
        position: relative;
        display: block;
        color: #fff;
        padding-left: 0rem;

        &::after {
          content: '';
          width: 1rem;
          height: 1px;
          background-color: var(--white-color);
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
		  display: none;
        }
      }
    }
  }
}


#faq-page {
  padding: 4rem 0;
  border-bottom: 1px var(--border-color-gray) solid;

  h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .box-faq {
    border-left: 1px var(--border-color-gray) solid;
    padding: 1rem;

    @media (max-width: 800px) {
      border-left: 0px var(--border-color-gray) solid;
      padding: 1rem 0;
    }
  }

  .accordion-industrial {
    background-color: var(--white-color);
    cursor: pointer;
    padding: 1rem 1.25rem;
    width: 100%;
    border: none;
    font-size: 1.5rem;
    transition: 0.4s;
    text-align: left;
    font-family: var(--font-family-headling);

    @media (max-width: 800px) {
      padding: 1rem 0rem 1rem 0rem;
      font-size: 1.25rem;
    }
  }
  .active-industrial, .accordion-industrial:hover {
    background-color: var(--white-color);
  }

  .accordion-industrial:after {
    content: '\002B';
    color: var(--primary-color);
    font-weight: 400;
    float: right;
    margin-left: 5px;
    font-size: 1.5rem;
    line-height: 1;

    @media (max-width: 800px) {
      position: relative;
      top: -1rem;
      line-height: 1.3;
    }
  }

  .active-industrial:after {
    content: "\2212";
  }

  .panel-industrial {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1rem;
    width: 100%;

    .panel-industrial-content {
      padding: 0 1.5rem;
      width: 100%;
    }
  }
}
#hero {
  background-image: linear-gradient(
      rgb(var(--secondary-color-rgb) / 100%) 0%, 
      rgb(var(--secondary-color-rgb) / 80%) 50%, 
      rgb(var(--secondary-color-rgb) / 80%) 50%, 
      rgb(var(--secondary-color-rgb) / 100%) 95%,
      var(--white-color) 95%,
      var(--white-color) 100%
    ), 
    url('https://env-blackbearconcrete-newsite.kinsta.cloud/wp-content/uploads/2025/08/background.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0px;

  @media (max-width: 992px) {
    padding: 40px 0px;
  }

  .top-title {
    color: var(--white-color);
  }

  h1 {
    color: var(--white-color);
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0;

    @media (max-width: 1400px) {
      font-size: 52px;
    }

    @media (max-width: 1200px) {
      font-size: 42px;
    }

    @media (max-width: 992px) {
      font-size: 34px;
      line-height: 1.1;
      margin: 0.5rem 0;
    }

    span {
      display: block;
      &:last-child {
        color: var(--primary-color);
      }
    }

    p {
      color: var(--white-color);
      font-size: 58px;
      text-transform: uppercase;
      font-weight: 900;
      line-height: 1;
      margin: 1rem 0;

      @media (max-width: 1400px) {
        font-size: 52px;
      }

      @media (max-width: 1200px) {
        font-size: 42px;
      }

      @media (max-width: 992px) {
        font-size: 34px;
        line-height: 1.1;
        margin: 0.5rem 0;
      }

      span {
        display: block;
        &:last-child {
          color: var(--primary-color);
        }
      }

      strong {
        &:last-child {
          color: var(--primary-color);
        }
      }
    }
    
  }
	
  .row {
    align-items: center;
  }

  p {
    color: var(--white-color);
    font-size: 18px;
    margin: 0;

    @media (max-width: 992px) {
      font-size: 16px;
      margin: 0;
      font-weight: 300;
    }
  }

  .box-review {
    max-width: 300px;
    margin-top: 60px;

    @media (max-width: 992px) {
      max-width: 300px;
      margin-top: 40px;
      margin-bottom: 40px;      
    }

    .box-review-header{
      display: flex;
      gap: 10px;
      align-items: center;

      .photos-client {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0 10px 0 0;

        li {
          margin-right: -10px;
          position: relative;
          
          &:last-child::after {
            content: "+";
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 1.5rem;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            width: 32px;
            height: 32px;
            border-radius: 50px;
            border: 1px var(--white-color) solid;
          }
        }
        img {
          width: 32px;
          height: 32px;
          border-radius: 50px;
          border: 1px var(--white-color) solid;
        }
      }
      p {
        font-size: 18px;
        font-weight: 600;
      }
      .icons-stars {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;

        i {
          color: #FFE100;
          font-size: 14px;
        }
      }
    }
    .box-review-content {
      margin-top: 8px;
      p{
        color: var(--white-color);
        font-size: 14px;
        line-height: 1.1;
      }
      a {
        color: var(--white-color);
      }
    }
  }

  .box-form {
    background: #fff;
    border: 1px solid var(--border-color);
    max-width: 435px;
    margin: 0 0 0 auto;
    padding: 2rem 1.75rem;
    box-shadow: 2px 2px 20px #0000000f;

    @media (max-width: 992px) {
      padding: 1.5rem 1rem;
      margin: 0 auto;
    }

    h3 {
      color: var(--primary-color);
      font-size: 2rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    p {
      color: var(--text-color);
      text-align: center;
      line-height: 1.2;
    }
    small {
      text-align: center;
      line-height: 1.2;
      display: inline-block;
    }

    form {
      margin: 12px 0;

      input, textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 8px;
        border: 1px solid var(--border-color);
        font-size: 14px;
        background-color: #F9F9F9;
      }
      button[type="submit"] {
        background-color: var(--secondary-color);
        color: var(--white-color);
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--transition-duration);
        padding: 14px;
        width: 100%;
        border: none;
        text-transform: uppercase;
        transition: 0.3s ease-in-out;

        &:hover {
          filter: opacity(0.9);
        }
        &:active {
          filter: opacity(0.9);
        }

        i {
          margin-left: 5px;
        }
      }
      textarea {
        height: 100px;
        resize: vertical;
      }
      label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--secondary-color);
      }
      select {
        width: 100%;
        padding: 14px;
        margin-bottom: 8px;
        border: 1px solid var(--border-color);
        font-size: 14px;
        background-color: #F9F9F9;
        color: var(--text-color);
      }
    }
  }
}
.social-icons {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	display: flex;
	gap: 12px;
	justify-content: center;
}

.social-icons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	color: #fff;
	width: 40px;
	height: 40px;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 18px;
}
.social-icons img {
    max-width: 25px;
}

.service-areas-list {
    display: flex;
    padding: 0;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
	
	a {
	  color: #fff;
	  text-decoration: none;
	  text-transform: uppercase;
	  padding: 0.1rem 0.65rem;
	  display: inline-block;
	  font-weight: 600;
	  border-left: 2px var(--primary-color) solid;
	}
}

.social-icons-footer{
	a {
        width: 20px;
        display: inline-block;
    }
	img {
      max-width: 18px;
      position: relative;
      top: -2px;
    }
}

#hero-white-papers-landing-page {
  padding: 60px 0px;

  @media (max-width: 992px) {
    padding: 40px 0px;
  }

  h1 {
    color: var(--secondary-color);
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0;

    @media (max-width: 1400px) {
      font-size: 52px;
    }

    @media (max-width: 1200px) {
      font-size: 42px;
    }

    @media (max-width: 992px) {
      font-size: 34px;
      line-height: 1.1;
      margin: 0.5rem 0;
    }

    span {
      display: block;
      &:last-child {
        color: var(--primary-color);
      }
    }

    p {
      color: var(--white-color);
      font-size: 58px;
      text-transform: uppercase;
      font-weight: 900;
      line-height: 1;
      margin: 1rem 0;

      @media (max-width: 1400px) {
        font-size: 52px;
      }

      @media (max-width: 1200px) {
        font-size: 42px;
      }

      @media (max-width: 992px) {
        font-size: 34px;
        line-height: 1.1;
        margin: 0.5rem 0;
      }

      span {
        display: block;
        &:last-child {
          color: var(--primary-color);
        }
      }

      strong {
        &:last-child {
          color: var(--primary-color);
        }
      }
    }
    
  }
	
  .row {
    align-items: center;
  }

  p {
    color: var(--secondary-color);
    font-size: 18px;
    margin: 0;

    @media (max-width: 992px) {
      font-size: 16px;
      margin: 0;
      font-weight: 300;
    }
  }

  .box-form {
    background: #fff;
    border: 1px solid var(--border-color);
    max-width: 435px;
    margin: 0 0 0 auto;
    padding: 2rem 1.75rem;
    box-shadow: 2px 2px 20px #0000000f;

    @media (max-width: 992px) {
      padding: 1.5rem 1rem;
      margin: 0 auto;
    }

    h3 {
      color: var(--primary-color);
      font-size: 2rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    p {
      color: var(--text-color);
      text-align: center;
      line-height: 1.2;
    }
    small {
      text-align: center;
      line-height: 1.2;
      display: inline-block;
    }

    form {
      margin: 12px 0;

      input, textarea {
        width: 100%;
        padding: 14px;
        margin-bottom: 8px;
        border: 1px solid var(--border-color);
        font-size: 14px;
        background-color: #F9F9F9;
      }
      button[type="submit"] {
        background-color: var(--secondary-color);
        color: var(--white-color);
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--transition-duration);
        padding: 14px;
        width: 100%;
        border: none;
        text-transform: uppercase;
        transition: 0.3s ease-in-out;

        &:hover {
          filter: opacity(0.9);
        }
        &:active {
          filter: opacity(0.9);
        }

        i {
          margin-left: 5px;
        }
      }
      textarea {
        height: 100px;
        resize: vertical;
      }
      label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: var(--secondary-color);
      }
      select {
        width: 100%;
        padding: 14px;
        margin-bottom: 8px;
        border: 1px solid var(--border-color);
        font-size: 14px;
        background-color: #F9F9F9;
        color: var(--text-color);
      }
    }
  }
}

#slider-industrial-content-dark {
	.swiper-pagination-bullet {
		opacity: 0.25;
		background: var(--secondary-color);
		width: 40px;
		height: 3px;
		border-radius: 0;

		@media (max-width: 992px) {
			width: 30px;
		}
	}
	.swiper-pagination-bullet-active {
		opacity: 0.5;
		background: var(--primary-color);
	}
	.swiper-pagination {
		max-width: 1320px;
		bottom: 1rem !important;

		@media (max-width: 1400px) {
			max-width: 1140px;
		}

		@media (max-width: 1200px) {
			max-width: 1140px;
		}

		@media (max-width: 992px) {
			text-align: center;
		}
	}
	.box-pagination {
		position: relative;
		max-width: 1320px;
		bottom: -25px;
		padding-bottom: 50px;

		.swiper-button-next::after, .swiper-button-prev::after {
			font-family: swiper-icons;
			font-size: 1.5rem;
			text-transform: none !important;
		}
		.swiper-button-next, .swiper-button-prev {
			color: var(--secondary-color);
		}
		.swiper-button-next::before, .swiper-button-prev::before {
			content: '';
			position: absolute;
			background-color: var(--secondary-color);
			width: 50px;
			height: 2px;
			top: 50%;
			transform: translateY(-50%);
			border-radius: 5px;
		}
		.swiper-button-prev::before {
			left: 8px;
		}
		.swiper-button-prev {
			left: -5px;
		}
		.swiper-button-next::before {
			right: 8px;
		}
		.swiper-button-next {
			right: -5px;
		}
	}
}

.form-modal-script {

  .modal-dialog {
    margin-top: 7rem!important;
  }
  .btn-close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
  }
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    outline: 0;
    padding: 2rem 1.5rem;
  }
  h6 {
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
  }
  input {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  textarea {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  select {
    width: 100%;
    border: 1px solid var(--border-color-gray);
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    background: var(--white-color);
  }
  button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: var(--primary-color);
    font-family: var(--font-family-headling);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
  }
  select, option {
    color: #757575;
  }
  
}

#newsletter .hs-form-frame {
    height: 346px;
    filter: grayscale(1) invert(1) brightness(2);
}