@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #0f172a;
  --secondary-color: #f2295b;
  --tertiary-color: #6102d3;
  --white-color: #ffffff;
  --shadow-color: #878b95;
  --bg-color: #f7f7f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s linear;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
}

::selection {
  background-color: var(--primary-color);
  color: white;
}

::-webkit-scrollbar {
  width: 0.3rem;
  margin: 2rem;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 0.4rem;
  margin: 2rem;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  box-shadow: inset 0 0 0px 1px var(--bg-color);
  cursor: grabbing;
  transition: 0.2s linear;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-color);
}

#scrollbar {
  width: 100%;
  height: 100vh;
  overflow: auto;
}

/* section {
  max-width: 100%;
  width: 100%;
  padding: 7rem 8rem;
} */

main .home-section {
  padding: 0;
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.home-section .home-section-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 6% 10% 0;
  background: rgb(87, 93, 106);
  background: linear-gradient(
    323deg,
    rgba(87, 93, 106, 0.017331932773109293) 48%,
    rgba(15, 23, 42, 1) 100%
  );
  z-index: 3;
}

.text-animation svg {
  width: fit-content;
  height: 3.3rem;
  /* line-height: 3rem; */
  display: inline-block;
}

.home-section .bg-pic img {
  width: 100%;
  height: 86.9vh;
  object-fit: cover;
  background-repeat: no-repeat;
}

.aus-pattern-1 {
  background-image: radial-gradient(#d9083c 2.5px, transparent 2.5px),
    radial-gradient(#d9083c 2.5px, transparent 2.5px);
  background-size: 25px 25px;
  background-position: 0 0, 12.5px 12.5px;
  background-color: rgba(71, 212, 255, 0);
}

.rav-highlights .wcu-cards {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-top: 1rem;
}

.wcu-cards .wcu-cards-row {
  display: flex;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}

.wcu-cards-row .wcu-card {
  width: calc(100% / 2);
  background-color: var(--white-color);
  padding: 1rem;
  border-left: 0.25rem solid var(--secondary-color);
}

.wcu-cards-row #wcu-card-6 {
  border: none;
  display: none;
}

.wcu-card h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.wcu-card article {
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

main .services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pattern-randomized.png);
  /* background-position: center; */
  background-repeat: repeat;
  z-index: -1;
}

.services-column .services-card {
  width: 16.875rem;
  height: 18.75rem;
  border-radius: 10px;
  padding: 1.25rem 1.563rem;
  text-align: left;
}

.services-column .services-card:hover {
  box-shadow: -1.313rem 1.25rem 1.938rem 0rem var(--shadow-color);
}

.services-card .services-svg {
  position: relative;
  width: fit-content;
  padding: 8%;
  margin: 0 auto 33px;
  border-radius: 50%;
  box-shadow: -1.313rem 1.25rem 1.938rem 0rem var(--shadow-color);
}

.services-svg
  :is(.svg-paint-brush, .svg-wall, .svg-drill-machine, .svg-hammer) {
  position: absolute;
  padding: 0.313rem;
  border-radius: 50%;
  background-color: var(--white-color);
}

.services-svg .svg-paint-brush {
  top: 59%;
  right: 26%;
}

.services-svg .svg-wall {
  top: 30%;
  right: 11%;
}

.services-svg .svg-drill-machine {
  top: 41%;
  right: 50%;
}

.services-svg .svg-hammer {
  top: 48%;
  right: 18%;
}

.services-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

.services-section .services-some-info {
  padding: 0 5%;
  text-align: justify;
}

main .our-work-data::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 100%;
  height: 100%;
  background-image: url(../images/vanishing-stripes.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  transform: rotateZ(32deg);
}

.our-work-data header h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
}

.our-work-data .data-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* gap: 2rem; */
  align-items: center;
  margin-top: 4.5rem;
  color: var(--white-color);
  text-align: center;
}

.data-column .data {
  width: calc(100% / 4);
}

.data-column .data:not(:last-child) {
  border-right: 3px solid var(--white-color);
}

.data .num-data {
  font-size: 2rem;
  font-weight: 600;
}

.testimonial-section {
  padding: 7rem 1.5rem;
  background-color: #fff;
  overflow: hidden;
  background-image: url(../images/bedroom-g40c693c38_1920.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* .testimonial-section header h1 {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 6%;
  color: var(--white-color);
  color: var(--secondary-color);
} */
/* .testimonial-section header h1::before {
  position: absolute;
  content: "";
  bottom: 10%;
  left: -0.3rem;
  height: 2.5px;
  background-color: var(--secondary-color);
  width: 15%;
  transform: translateX(-10%);
} */

.testimonial-section header span {
  position: absolute;
  bottom: 30%;
  right: 0rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  background-color: #d8deee;
  display: block;
  float: right;
}

.testimonial-section header span a {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: capitalize;
}

.testimonial-section .tc-container {
  position: relative;
}

.testimonial-section svg {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: black;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.testimonial-section svg:active {
  transform: translateY(-50%) scale(0.85);
}

.testimonial-section svg:first-child {
  left: -22px;
}

.testimonial-section svg:last-child {
  right: -22px;
}

.testimonial-carousel.tc-no-transition {
  scroll-behavior: auto;
}

.testimonial-carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonial-carousel.dragging .tc-profile-card {
  cursor: grab;
  user-select: none;
}

.testimonial-section .testimonial-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  gap: 16px;
  border-radius: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel .tc-profile-card {
  scroll-snap-align: start;
  padding: 25px;
  border-radius: 3px;
  background-color: var(--white-color);
  background-color: var(--bg-color);
  border-radius: 10px;
  background: #f7f7f7;
}

.tc-profile-card i.quote {
  font-size: 20px;
  color: var(--secondary-color);
}

.tc-profile-card .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.tc-profile-card .info .name {
  font-weight: 600;
  font-size: 17px;
}

.tc-profile-card .info .job {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
}

.tc-profile-card .info .stars {
  margin-top: 2px;
}

.tc-profile-card .info .stars i {
  color: var(--secondary-color);
}

.tc-profile-card .content .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.tc-profile-card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}

.tc-profile-card .content .image img {
  border-color: #fff;
}

@media screen and (max-width: 800px) {
  .testimonial-section .testimonial-carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .testimonial-section .testimonial-carousel {
    grid-auto-columns: calc((100% / 1) - 9px);
  }
}


.faqs-section {
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.faqs-section header h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 6%;
  color: var(--white-color);
  color: var(--secondary-color);
  text-transform: capitalize;
}

.faqs-section .faqs-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.faqs-section picture {
  width: 30%;
}

.facs-accordion {
  max-width: 70%;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 80px;
}

.facs-accordion .acc-tab {
  margin-top: 10px;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
}

.facs-accordion .acc-tab label {
  background-color: var(--white-color);
  /* background-color: red; */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  z-index: 99;
}

.facs-accordion .acc-tab span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
}

.acc-tab label .acc-icon {
  position: relative;
  font-size: 16px;
  height: 30px;
  width: 30px;
  color: var(--white-color);
  background-color: var(--primary-color);
  display: block;
  border-radius: 50%;
}

.acc-tab label .acc-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.acc-tab input:checked ~ label .acc-icon i::before {
  content: "\f068";
}

.facs-accordion .acc-tab .acc-content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.facs-accordion .acc-tab input:checked ~ .acc-content {
  max-height: 100vh;
}

.facs-accordion .acc-tab .acc-content p {
  font-size: 18px;
  padding: 15px 20px;
}

.facs-accordion input {
  display: none;
}

.load-from-left-content {
  opacity: 0;
  transform: translateX(-200px);
  will-change: transform, opacity;
}

.content-load-from-right {
  opacity: 0;
  transform: translateX(200px);
  will-change: transform, opacity;
}

.our-team-member ul li {
  width: calc((100% / 4) - 2rem);
}

/* ---------------------------- Breadcrumb --------------------------- */
ul.breadcrumb {
  margin: 3rem auto 0;
  max-width: 1300px;
  width: 100%;
  position: relative;
  /* float: right; */
  width: 100%;
  padding: 10px 16px;
  list-style: none;
  /* background-image: linear-gradient(to left, #eaeded 30%, #fff 70%); */
  background-color: #fff;
  grid-row-start: 1;
  grid-row-end: 1;
  height: fit-content;
  overflow: hidden;
}

ul.breadcrumb li {
  display: inline;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color-hover);
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: var(--main-color-hover);
  content: "/\00a0";
}

ul.breadcrumb li a {
  text-decoration: none;
  color: var(--main-color-hover);
}

ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.product__detail__pages ul.breadcrumb {
  margin-top: 75px;
}

body .footer {
  max-width: 100%;
  width: 100%;
  padding: 5rem 5rem;
  background-color: var(--primary-color);
  display: flex;
  flex-wrap: wrap;
}

.footer :is(.footer-ts, .footer-bs) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  color: var(--primary-color);
}

.footer .footer-ts {
  padding-bottom: 2rem;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 2px solid var(--white-color);
}

.fts-column article {
  font-size: 1.05rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.45rem;
  color: var(--primary-color);
}

.fts-column header {
  position: relative;
}

.fts-column header h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.fts-column header h2::before {
  position: absolute;
  content: "";
  bottom: 0.1rem;
  left: -0.3rem;
  height: 1px;
  border: 1.5px solid var(--primary-color);
  width: 20%;
}

.footer .footer-ts :is(.website, .sevices, .compnay) {
  width: calc((100% / 3) - 4rem);
  background-color: var(--white-color);
  border-radius: 5px;
  padding: 1rem;
}

.footer-ts :is(.sevices, .compnay) {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2rem;
  text-transform: capitalize;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  transition: filter 0.5s, font-size 0.5s;
}

.footer-ts .compnay {
  overflow: hidden;
}

.footer-ts .compnay li a {
  display: block;
  width: 100%;
}

.footer-ts .compnay:hover li a {
  color: rgb(192, 192, 192);
  filter: blur(2px);
}

.footer-ts .compnay li:hover a {
  font-size: 1.3rem;
  font-weight: 700;
  animation: fRevealAnimTxt 0.6s;
}

@keyframes fRevealAnimTxt {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0%);
  }
}

.footer-ts .compnay li a:hover {
  color: var(--primary-color);
  filter: blur(0px);
}

.footer-ts .compnay li a::before {
  position: absolute;
  content: "";
  bottom: 0.1rem;
  left: -0.3rem;
  height: 1px;
  border: 1.5px solid var(--primary-color);
  width: 20%;
  transform: translateX(-125%);
  transition: transform 1.1s;
}

.footer-ts .compnay li:hover a::before {
  transform: translateX(0%);
}

.footer .footer-bs {
  padding-top: 2rem;
  color: var(--white-color);
  text-transform: capitalize;
}

.footer-bs span {
  background-color: var(--secondary-color);
}

.footer-bs span a {
  display: inline;
}

@media only screen and (max-width: 1280px) {
  body .footer {
    padding: 5rem 2.5rem;
  }

  .footer .footer-ts {
    gap: 1rem;
  }

  .footer .footer-ts :is(.website, .sevices, .compnay) {
    width: calc((100% / 3) - 2rem);
  }
}

@media only screen and (max-width: 1024px) {
  body .footer {
    padding: 3rem 1rem;
  }

  .footer .footer-ts {
    gap: 0.5rem;
  }

  .footer .footer-ts :is(.website, .sevices, .compnay) {
    width: calc((100% / 3) - 1rem);
  }
}

@media only screen and (max-width: 768px) {
  .footer .footer-ts {
    gap: 2rem;
  }

  .footer .footer-ts :is(.website, .sevices, .compnay) {
    width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .why-choose-us .wcu-cards {
    gap: 1rem;
  }

  main .our-work-data::after {
    top: -180px;
    left: -100px;
  }

  .services-column .services-card {
    width: 16rem;
    height: 18rem;
    padding: 20px 1.563rem;
  }

  .services-section .services-some-info {
    padding: 0;
    text-align: justify;
  }

  .faqs-section {
    overflow: hidden;
    width: 100%;
    margin: 0;
  }

  .faqs-section picture {
    width: 60%;
  }

  .facs-accordion {
    max-width: 100%;
    width: 100%;
    padding: 0rem;
    margin: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /* section {
    max-width: 100%;
    width: 100%;
    padding: 7rem 8rem;
  } */

  .why-choose-us .wcu-cards {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .wcu-cards li {
    width: calc((100% / 3) - 1rem);
  }

  .testimonial-section .testimonial-carousel {
    grid-auto-columns: calc((100% / 2) - 12px);
  }
}

@media only screen and (max-width: 768px) {
  /* section {
    max-width: 100%;
    width: 100%;
    padding: 0rem 0rem;
  } */

  .why-choose-us .wcu-cards {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .wcu-cards li {
    width: calc((100% / 2) - 1rem);
    margin-top: 1rem;
  }

  .our-work-data .data-column {
    margin-top: 3rem;
  }

  .data-column .data {
    width: calc(100% / 4);
    height: 5.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .data .num-data {
    font-size: 1.5rem;
    font-weight: 600;
  }

  main .our-work-data::after {
    top: -300px;
    left: -100px;
  }
}

@media only screen and (max-width: 568px) {
  .wcu-cards .wcu-cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    width: 100%;
  }

  .wcu-cards-row .wcu-card {
    width: 100%;
    border-left: 0.2rem solid var(--secondary-color);
  }

  .wcu-card h1 {
    font-size: 1.2rem;
  }

  .wcu-card article {
    font-size: 1.1rem;
  }

  main .our-work-data::after {
    top: -320px;
    left: -140px;
  }

  /* .services-section .services-wrapper {
    max-width: calc(100% - 1rem);
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0rem;
  } */

  .services-wrapper .services-column {
    gap: 3rem;
  }

  .services-section .services-some-info {
    padding: 0rem;
  }

  .our-work-data header h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
  }
  main .our-work-data .data-column {
    margin-top: 1rem;
    row-gap: 0.8rem;
  }

  .data-column .data {
    width: calc(100% / 2);
    height: 4.4rem;
  }
  .data-column .data.designs {
    border: none;
  }

  .data .num-data {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .data-column .data h3 {
    font-size: 0.9rem;
  }

    .testimonial-section .testimonial-carousel {
    grid-auto-columns: 100%;
  }

  .faqs-section header h1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6%;
    color: var(--white-color);
    color: var(--secondary-color);
    text-transform: capitalize;
  }

  .faqs-section .faqs-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }

  .footer :is(.footer-ts, .footer-bs) {
    justify-content: center;
  }

  .faqs-section picture {
    width: 100%;
  }

  .facs-accordion {
    padding: 0rem;
  }
}

@media only screen and (max-width: 420px) {
  /* section {
    max-width: 100%;
    width: 100%;
    padding: 7rem 1rem;
  } */

  main .our-work-data {
    max-width: 100%;
    width: 100%;
    padding: 1.6rem;
  }

  .data-column .data {
    height: 4rem;
  }

  .data .num-data {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .data-column .data h3 {
    font-size: 0.8rem;
  }
}

main .scroll-to-top {
  position: fixed;
  bottom: 7%;
  right: 2%;
  z-index: 2;
  padding: 0.5rem;
  border-radius: 5px;
  background-color: var(--secondary-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 111;
}

#progress-value {
  display: block;
  height: 100%;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: #001a2e;
}

@media only screen and (max-width: 1280px) {
  main .scroll-to-top {
    height: 3rem;
    width: 3rem;
  }
}

@media only screen and (max-width: 1024px) {
  main .scroll-to-top {
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media only screen and (max-width: 768px) {
  main .scroll-to-top {
    height: 2.4rem;
    width: 2.4rem;
  }
}

@media only screen and (max-width: 568px) {
  main .scroll-to-top {
    height: 2.4rem;
    width: 2.4rem;
  }
}

/* main {
  max-width: calc(1200px - 4rem);
  width: 100%;
  margin: 2.5rem auto 3rem;
} */

/* main section {
  padding: 2rem 2rem 0;
} */

section header {
  position: relative;
}

/* section header h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: left;
  text-transform: capitalize;
} */

::before:is(section header h1, article h2) {
  position: absolute;
  content: "";
  bottom: 0.1rem;
  left: -0.3rem;
  height: 2.5px;
  background-color: var(--secondary-color);
  width: 10%;
  transform: translateX(-10%);
}
/* 
section article {
  position: relative;
  padding-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 2.1rem;
  letter-spacing: 0.5px;
  text-align: justify;
} */

section article:nth-child(7) {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

article h2 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
}

article ul li {
  list-style-type: none;
}

article ul li::before {
  content: "\2022";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 1em;
}

/* @media only screen and (max-width: 1280px) {
  main {
    max-width: calc(1000px - 4rem);
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  main {
    max-width: calc(800px - 4rem);
    width: 100%;
  }
} */

@media only screen and (max-width: 768px) {
  /* main {
    max-width: calc(600px - 2rem);
    width: 100%;
  } */

  /* main section {
    padding: 2rem 1rem;
  } */

  /* section article {
    padding-top: 1rem;
    font-size: 1.1rem;
    line-height: 2rem;
  } */
}

@media only screen and (max-width: 568px) {
  /* main {
    max-width: calc(500px - 2rem);
    width: 100%;
  }

  main section {
    padding: 2rem 1rem;
  } */
}

@media screen and (max-width: 480px) {
  ul.breadcrumb {
    margin-top: 1rem;
  }
  main .vos-section {
    margin: 3rem auto;
    padding: 2rem 1rem 0rem;
  }
}
