select {
  background: url('data:image/svg+xml;utf8,<svg fill="%23444" height="10" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l5 6 5-6z"/></svg>') no-repeat right 0.75rem center;
  background-size: 10px 6px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2rem;
}

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;
    letter-spacing: -1px;
    font-weight: 700;

    @media (max-width: 992px) {
      font-size: 2.5rem;
    }
}
#hero-lp,
#our-process,
#features-benefits,
#call-to-action,
#gallery-lp,
#text-content,
#our-team,
#testimonials {

}

.top-title {
  position: relative;
  padding-left: 14px;
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600!important;
  display: inline-block;

  @media (max-width: 992px) {
    line-height: 1;
  }

  &::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.btn-solid-cta {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 14px 18px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color var(--transition-duration);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;

  &:hover {
    filter: brightness(0.9);
  }
  &:active {
    filter: brightness(0.9);
  }
  &:focus {
    filter: brightness(0.9);
  }

  i {
    margin-left: 15px;
  }

  @media (max-width: 992px) {
    padding: 12px 16px;
    text-decoration: none;
    font-size: 12px;
    
    i {
      margin-left: 5px;
    }
  }
}

#hero-lp {
  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('../img/hero/background.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0px 0px 0px;

  @media (max-width: 992px) {
    padding: 60px 0px 0px 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);
        }
      }
    }
    
  }

  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-gray);
    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-gray);
        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-gray);
        font-size: 14px;
        background-color: #F9F9F9;
        color: var(--text-color);
      }
    }
  }
}

#our-process {
  padding: 50px 0;

  .OurProcess {
    width: 100%;
    max-width: calc(100vw - calc(calc(100vw - 1320px) / 2) - 22px);
    margin-right: 0;
    margin-top: -50px;
    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;
    }

    .card-process {
      position: relative;
      width: 100%;
      max-width: 365px;
      height: 460px;
      padding: 1.8rem 1.8rem 0 1.8rem;
      border: 1px solid var(--border-color-gray);



      @media (max-width: 992px) {
        max-width: calc(100% - 3rem);
        height: 450px;
        margin: 0 auto;
        padding: 1.8rem 1.5rem 0 1.5rem;
      }

      span {
        display: inline-block;
        font-size: 3.5rem;
        color: var(--primary-color);
        font-weight: 400;
        margin-bottom: 0.9rem;
        opacity: 0.25;
        line-height: 0.8;
      }

      h6 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        line-height: 1;
      }

      p {
        font-size: 1rem;
        line-height: 1.2;
      }

      img {
        width: calc(100% - 3.6rem);
        height: auto;
        max-height: 55%;
        border-radius: 8px 8px 0 0;
        position: absolute;
        bottom: 0;
        left: 1.8rem;
        right: 1.8rem;
        object-fit: cover;

        @media (max-width: 992px) {
          width: calc(100% - 3rem);
          left: 1.5rem;
          right: 1.5rem;
        }
      }
      
    }

    .swiper-arrow {
      max-width: 1320px;
      display: flex;
      justify-content: end;
      gap: 2rem;
      padding: 14px;
      padding-top: 25px;
      padding-bottom: 35px;
      
      @media (max-width: 1400px) {
        max-width: 1140px;
      }

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

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

      i {
        font-size: 32px;

        @media (max-width: 992px) {
          font-size: 24px;
        }
      }

      .swiper-button-next:after, 
      .swiper-button-prev:after {
        display: none;
      }

      .swiper-button-next, .swiper-button-prev {
        position: static;
        color: var(--secondary-color);
      }
    }
    .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;

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

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

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

#features-benefits {
  padding: 50px 0;

  .card-benefits {
    position: relative;
    width: 100%;
    min-height: 230px;
    padding: 1.9rem 1.8rem;
    border: 1px solid var(--border-color-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;

    &.black {
      background-color: var(--secondary-color);

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

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

      .btn-solid-cta {
        margin-top: 15px;
        width: fit-content;
      }
    }

    h3 {
      font-size: 1.4rem;
      margin-bottom: 0rem;
      line-height: 1.25;
    }

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

    img {
      width: 55px;
      height: 55px;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }
    
  }
}

#call-to-action {
  background-image: linear-gradient(
      var(--white-color) 0%,
      var(--white-color) 15%,
      rgb(var(--secondary-color-rgb) / 80%) 15%, 
      rgb(var(--secondary-color-rgb) / 80%) 100%      
    ), 
    url('../img/call-to-action/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 50px;

  @media (max-width: 992px) {
    background-image: linear-gradient(
      var(--white-color) 0%,
      var(--white-color) 0%,
      rgb(var(--secondary-color-rgb) / 80%) 0%, 
      rgb(var(--secondary-color-rgb) / 80%) 100%      
    ), 
    url('../img/call-to-action/background.jpg');
    padding-top: 50px;
  }


  .row {
    align-items: end;
  }

  h2 {
    color: var(--white-color);
    position: relative;
    padding-left: 1rem;

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

  p {
    font-size: 1.1rem;
    color: var(--white-color);
  }

  .btn-solid-cta {
    margin-bottom: 50px;
  }
}

#gallery-lp {
  padding: 50px 0;

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

  .gallerySlider{
    padding-bottom: 50px;

    @media (max-width: 992px) {
      padding-bottom: 30px;
    }

    img {
      width: 100%;
      height: 650px;
      object-fit: cover;
      object-position: bottom;

      @media (max-width: 992px) {
        height: 650px;
      }
    }

    .swiper-button-next, .swiper-button-prev {
      position: absolute;
      top: 0;
      width: 100px;
      height: 650px;
      margin-top: 0;
      z-index: 10;
      cursor: pointer;
      display: flex  ;
      align-items: center;
      justify-content: center;
      color: var(--white-color);

      @media (max-width: 992px) {
        height: 650px;
        width: 50px;
      }

      i {
        font-size: 2rem;

        @media (max-width: 992px) {
          font-size: 1rem;
        }
      }
    }
    .swiper-button-next {
      margin-right: -10px;
      background-image: linear-gradient(-90deg,
      rgb(var(--secondary-color-rgb) / 80%) 0%,
      rgb(var(--secondary-color-rgb) / 10%) 90%,
      transparent 100%);
    }
    .swiper-button-prev {
      margin-left: -10px;
      background-image: linear-gradient(-90deg,
      transparent 0%,
      rgb(var(--secondary-color-rgb) / 10%) 10%,
      rgb(var(--secondary-color-rgb) / 80%) 100%);
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
      display: none;
    }

    .swiper-pagination-bullet {
      opacity: 0.25;
      background: var(--secondary-color);
      width: 30px;
      height: 3px;
      border-radius: 0;
    }
    .swiper-pagination-bullet-active {
      opacity: 0.5;
      background: var(--primary-color);
    }

  }

}

#text-content {
  padding: 50px 0;

  .row {
    align-items: center;
    justify-content: space-around;
  }

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


    h2 {
      margin-top: 25px;
      margin-bottom: 5px;
    }
  }
	.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 li a:hover .fa-facebook-f {
	  color: #1877f2;
	}

	.social-icons li a:hover .fa-twitter {
	  color: #1da1f2;
	}

	.social-icons li a:hover .fa-linkedin-in {
	  color: #0a66c2;
	}

	.social-icons li a:hover .fa-youtube {
	  color: #ff0000;
	}

	.social-icons li a:hover .fa-google {
	  color: #db4437;
	}

}

#our-team {
  padding: 50px 0;

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

    h2 {
      margin-bottom: 5px;
    }
  }

  .row {
    align-items: center;
    justify-content: space-around;
  }
}

#testimonials {
  padding: 50px 0;

  .card-testimonials {
    width: 100%;
    height: 525px;
    padding: 30px;
    border: 1px solid var(--border-color-gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    @media (max-width: 992px) {
      width: calc(100% - 3rem);
      margin: 0 auto;
      padding: 20px;
    }

    .content-testimonials {
      max-height: 350px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #ccc transparent;
    }

    .content-testimonials::-webkit-scrollbar {
      width: 6px;
    }

    .content-testimonials::-webkit-scrollbar-track {
      background: transparent;
    }

    .content-testimonials::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 3px;
      transition: background-color 0.3s;
    }

    .content-testimonials::-webkit-scrollbar-thumb:hover {
      background-color: #999;
    }

    p {
      font-size: 1.25rem;
      line-height: 1.3;
      font-style: italic;
      font-weight: 300;

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

	.icons-stars {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0 0 6px 0;

      i {
        color: #edc70b;
        font-size: 16px;
      }
    }

    .box-client {
      border-top: 1px solid var(--border-color-gray);
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 1rem;

      img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
      }
      h6 {
        font-size: 1.25rem;
        margin: 0;

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

  .swiper {
    padding-top: 25px;
    padding-bottom: 50px;

    @media (max-width: 992px) {
      padding-bottom: 70px;
    }
  }
  .swiper-slide {
    width: 100%;
    max-width: 400px;
  }
  .swiper-pagination-bullet {
      opacity: 0.25;
      background: var(--secondary-color);
      width: 40px;
      height: 3px;
      border-radius: 0;
    }
    .swiper-pagination-bullet-active {
      opacity: 0.5;
      background: var(--primary-color);
    }

    .swiper-button-next, .swiper-button-prev {
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      margin-top: 0;
      z-index: 10;
      cursor: pointer;
      display: flex  ;
      align-items: center;
      justify-content: center;
      color: var(--secondary-color);

      @media (max-width: 992px) {
        height: 100%;
        width: 35px;
      }

      i {
        font-size: 2rem;

        @media (max-width: 992px) {
          font-size: 1rem;
        }
      }
    }
    .swiper-button-next {
      margin-right: -10px;
      background-image: linear-gradient(-90deg, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 70%) 90%, transparent 100%);
    }
    .swiper-button-prev {
      margin-left: -10px;
      background-image: linear-gradient(-90deg, transparent 0%, rgb(255 255 255 / 70%) 10%, rgb(255 255 255 / 100%) 100%);
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
      display: none;
    }
}

#form-footer {
  background-image: linear-gradient(
    var(--white-color) 0%,
    var(--white-color) 20%,
    rgb(var(--secondary-color-rgb) / 90%) 20%     
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;

  .row {
    align-items: end;

    @media (max-width: 992px) {
      flex-direction: column-reverse;
      gap: 40px;
    }
  }

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

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

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

  .box-form {
    background: #fff;
    border: 1px solid var(--border-color-gray);
    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;
      font-size: 18px;
    }
    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-gray);
        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-gray);
        font-size: 14px;
        background-color: #F9F9F9;
        color: var(--text-color);
      }
    }
  }
}