.right-area .icon-area {
  visibility: hidden;
}

.heading-secondary {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.title-style-two-left .disc {
  color: #141416;
}

/* Section cta */
.section-cta {
  margin-top: -20rem;
  padding-top: 29.6rem;
  padding-bottom: 9.6rem;
}

.section-cta .heading-secondary {
  color: #fff;
  margin-bottom: 2rem;
}

.section-cta-container {
  background-color: #f5f3f2;
  background: url(../images//section-cta-img.jpg), #333;
  background-position: right top;
  background-size: cover;
  background-blend-mode: multiply;
  padding: 7rem 4rem;
  text-align: center;
  border-radius: 1rem;
}

.section-cta .title {
  color: #fff;
  margin-bottom: 6rem;
}

.section-cta button {
  background-color: var(--color-primary);
  border: none;
  padding: 2rem 1.5rem;
  color: #fff;
  width: 20rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #f84c1de0;
  transform: translateY(-0.5rem);
}

button:active {
  transform: translateY(0);
}

/* Section testimonials */
.section-testimonials {
  padding: 9.6rem 0;
}

.section-testimonials .header {
  text-align: center;
}

.section-testimonials .title {
  color: #0c0a0af1;
}

.testimonials-container {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.single-testimonial {
  background-color: #eee;
  border-radius: 1rem;

  padding: 2.5rem;
  position: relative;
}

.testimonial {
  /* color: #0c0a0ae7; */
  margin-bottom: 2rem;
}

.testimonial-img-box {
  margin-top: -4rem;
  margin-bottom: 3rem;
  margin-left: -1rem;
}

.testimonial-img {
  border-radius: 0.5rem;
}

.author-title {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  color: #0c0a0af1;
}

.ta-info h6 {
  color: var(--color-primary);
}

.qt-img {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}

/* Brand area */

.rts-brand-area {
  padding: 9.6rem 0;
}

/* about page about us section */

.team-area-start-about-page {
  margin-top: -20rem;
  padding-top: 32rem;
}

/* section services */
.section-services {
  padding: 9.6rem 0;
}

.section-services .header,
.section-products .header {
  text-align: center;
}

.section-services h3.title,
.section-products h3.title {
  color: #0c0a0af1;
  font-size: 5.6rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 9.6rem;
}

.service-card {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-1rem);
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  background-color: #f5f3f2;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.service-card .heading {
  font-size: 2.5rem;
  color: #0c0a0af1;
  margin-bottom: 2rem;
  height: max-content;
}

.service-icon {
  color: var(--color-primary);
  font-size: 3rem;
}

/* Section products */

.section-products {
  padding: 9.6rem 0;
  margin-bottom: 5rem;
}

.products-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 9.6rem;
}

.product-card {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  border-radius: 1rem;
  height: 45rem;
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.product-card img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
  .section-services h3.title,
  .section-products h3.title {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 992px) {
  .section-services h3.title,
  .section-products h3.title {
    font-size: 4rem;
  }

  .service-card .heading {
    font-size: 2.2rem;
  }

  .services-cards,
  .products-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4rem;
    /* margin-top: 9.6rem; */
  }
}

@media screen and (max-width: 640px) {
  .section-services h3.title,
  .section-products h3.title {
    font-size: 3.5rem;
  }

  .service-card .heading {
    font-size: 2rem;
  }

  .services-cards,
  .products-cards {
    gap: 2.5rem;
    margin-top: 7rem;
  }
}

@media screen and (max-width: 640px) {
  .services-cards,
  .products-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 7rem;
  }
}

@media screen and (max-width: 576px) {
  .section-services h3.title,
  .section-products h3.title {
    font-size: 3rem;
  }
}

/* banner */
.banner-two-inner .disc {
  font-size: 2rem;
  line-height: 1.6;
}

/* features section */
.feature-icon {
  color: #fff;
  font-size: 3.5rem;
}

/* swipper button container */
.swipper-button-container {
  background-color: #ddd;
  padding: 2rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.swipper-button-container i {
  font-size: 1.8rem;
}

.swipper-button-container:hover {
  background-color: var(--color-primary);
  transform: translateY(-0.5rem);
}

/* testimonial  */
.swiper-silder-testimonials-wrapper .swiper-button-prev,
.swiper-silder-testimonials-wrapper .swiper-button-next {
  display: none;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .thumbnail-main-wrapper-2 {
    width: 60%;
  }

  .about-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-service-main-wrapper h3 {
    line-height: 1;
  }
}

@media screen and (max-width: 768px) and (min-width: 520px) {
  .thumbnail-main-wrapper-2 {
    width: 75%;
  }
  .about-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .about-img-col {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  .section-cta-container {
    border-radius: 0;
  }
}

@media screen and (max-width: 680px) {
  .section-cta-container {
    border-radius: 0;
  }
}

@media screen and (max-width: 992px) {
  .footer-wrapper-left-one {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 786px) {
  .copyright-area-one p {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 900px;
    padding: 0 2.5rem;
  }

  .section-cta-container {
    padding: 7rem 4rem;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .container,
  .container-sm {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .swiper-area-wrapper {
    padding: 7rem 4rem;
  }

  .swiper-area-wrapper .swiper-button-prev {
    left: -20px;
  }
  .swiper-area-wrapper .swiper-button-next {
    right: -20px;
  }
}

@media (max-width: 699px) {
  .swiper-area-wrapper {
    padding: 7rem 5rem;
  }

  .swiper-area-wrapper .swiper-button-prev {
    left: -10px;
  }
  .swiper-area-wrapper .swiper-button-next {
    right: -10px;
  }
}

@media (max-width: 655px) {
  .swiper-area-wrapper .swiper-button-prev,
  .swiper-area-wrapper .swiper-button-next {
    display: none;
  }

  .swiper-area-wrapper {
    padding: 7rem 0rem;
  }
}

@media screen and (max-width: 576px) {
  .swiper-area-wrapper {
    padding: 0;
  }
}

@media screen and (max-width: 767px) and (min-width: 576px) {
  .swiper-edit {
    width: 70%;
  }
}

@media screen and (max-width: 576px) {
  .swiper-edit {
    width: 90%;
  }
}

@media screen and (max-width: 450px) {
  .quick-contact-page-1 {
    padding: 38px 10px;
  }
}

@media screen and (min-width: 1200px) {
  .nav-btn.menu-btn {
    display: none !important;
  }
}
