/*!
 * 3d-rendering.scss
 * 
 * Styles for 3D rendering page.
 */
/*!
 * _components.scss
 * 
 * Styles for reusable UI components across the project.
 * Includes buttons, cards, modals, forms, and other interface elements.
 */
.section-details {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 2rem;
}
@media (max-width: 767.98px) {
  .section-details {
    background-color: unset;
    padding: unset;
  }
}

.section-details-white {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  color: var(--bs-body-color);
}

.btn-primary-01 {
  box-shadow: 0rem 0rem 1rem 0.1rem rgba(0, 0, 0, 0.3294117647);
  padding: 0.4rem 1.4rem;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  background-color: var(--bs-primary) !important;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary-01:hover {
  background-color: var(--bs-primary-darker) !important;
  color: white;
}

/*!
 * _mixins.scss
 * 
 * Centralized SCSS mixins for layout utilities, responsiveness, and reusability across the project.
 * Include reusable styles like section layouts, media queries, and fallback handling for consistent styling.
 */
#enhance-your-sales-section {
  width: 100%;
  background-image: url(../img/3d-rendering-virtual-tour.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1.7777777778;
  position: relative;
  background-color: var(--inner-section-bg);
}
@supports not (aspect-ratio: 1/1) {
  #enhance-your-sales-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.7777777778));
  }
}
@media (max-width: 767.98px) {
  #enhance-your-sales-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #enhance-your-sales-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #enhance-your-sales-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #enhance-your-sales-section a {
    font-size: 0.9rem;
  }
  #enhance-your-sales-section .btn-primary-01 {
    box-shadow: none;
  }
}
#enhance-your-sales-section .section-details {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
}
@media (max-width: 767.98px) {
  #enhance-your-sales-section .section-details h3 {
    font-size: 1.2rem;
  }
}

#benefits-of-3d-virtual-tour {
  position: relative;
}
#benefits-of-3d-virtual-tour::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 118%;
  top: 0;
  left: 0;
  background-image: url("../img/backgrounds/background-01-phone.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (min-width: 768px) {
  #benefits-of-3d-virtual-tour::before {
    background-image: url("../img/backgrounds/background-01-tablet.png");
    background-position: 0 0;
    height: 108%;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  #benefits-of-3d-virtual-tour::before {
    background-image: url("../img/backgrounds/background-01-desktop.png");
    background-position: 0 -10rem;
    height: 43rem;
    background-size: 100% 53rem;
  }
}
#benefits-of-3d-virtual-tour .container {
  z-index: 2;
}
#benefits-of-3d-virtual-tour .section-title {
  color: var(--bs-primary);
}
#benefits-of-3d-virtual-tour .benefit-item h3 {
  color: var(--bs-primary);
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
#benefits-of-3d-virtual-tour .benefit-item p {
  line-height: 1.5;
  color: var(--bs-card-color);
  font-weight: 300;
}
@media (min-width: 768px) {
  #benefits-of-3d-virtual-tour .benefit-item p {
    line-height: 1.5;
    color: var(--bs-card-color-dark);
    font-weight: 400;
  }
}

#explore-spaces-before-theyre-built {
  padding-top: 6rem !important;
}
@media (min-width: 992px) {
  #explore-spaces-before-theyre-built {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (min-width: 1400px) {
  #explore-spaces-before-theyre-built {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
#explore-spaces-before-theyre-built .section-title h2 {
  color: var(--bs-primary-darker);
  line-height: 1.1;
  position: relative;
}
#explore-spaces-before-theyre-built .section-title h2::before {
  content: "";
  position: absolute;
  height: 0.1rem;
  width: 28%;
  top: -0.8rem;
  left: 0;
  background-color: var(--bs-primary-darker);
}
@media (min-width: 768px) {
  #explore-spaces-before-theyre-built .section-title h2::before {
    width: 20%;
  }
}
@media (min-width: 992px) {
  #explore-spaces-before-theyre-built .section-title h2::before {
    width: 14%;
  }
}
#explore-spaces-before-theyre-built .section-title p {
  font-size: 0.85rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  #explore-spaces-before-theyre-built .section-title {
    width: 60%;
  }
}
@media (min-width: 992px) {
  #explore-spaces-before-theyre-built {
    margin-top: 4rem;
  }
}
#explore-spaces-before-theyre-built .steps .step {
  width: 100%;
}
#explore-spaces-before-theyre-built .steps .step .details {
  flex-basis: 100%;
}
#explore-spaces-before-theyre-built .steps .step .details .step-title h3 {
  color: var(--bs-primary-darker);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
}
#explore-spaces-before-theyre-built .steps .step .details P {
  font-size: 0.85rem;
  font-weight: 300;
}
#explore-spaces-before-theyre-built .steps .step .image-wrapper {
  flex-basis: 100%;
}
#explore-spaces-before-theyre-built .steps .step .image-wrapper img {
  width: 100%;
}
@media (min-width: 576px) {
  #explore-spaces-before-theyre-built .steps .step .details {
    flex-basis: 50%;
  }
  #explore-spaces-before-theyre-built .steps .step .image-wrapper {
    flex-basis: 50%;
  }
}

#three-d-rendering-faq {
  position: relative;
  padding-top: 6rem !important;
  background-color: #eaeaea;
  overflow: hidden;
}
@media (min-width: 768px) {
  #three-d-rendering-faq {
    background-color: #eaeaea;
    background-image: url("../img/backgrounds/background-01-tablet.png");
    background-position: 4px -104px;
    background-repeat: no-repeat;
    background-size: 100% 147%;
  }
}
#three-d-rendering-faq:before {
  content: "";
  position: absolute;
  width: 110%;
  height: 7rem;
  top: -4rem;
  left: -1rem;
  background-color: rgb(18, 18, 18);
  transform: rotateZ(8deg);
}
@media (min-width: 576px) {
  #three-d-rendering-faq {
    padding-top: 8rem !important;
  }
  #three-d-rendering-faq::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 8rem;
    top: -3rem;
    left: -3rem;
    background-color: rgb(18, 18, 18);
    transform: rotateZ(3deg);
  }
}
@media (min-width: 768px) {
  #three-d-rendering-faq::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 9rem;
    top: -4rem;
    left: -1rem;
    background-color: rgb(18, 18, 18);
    transform: rotateZ(6deg);
  }
}
@media (min-width: 1200px) {
  #three-d-rendering-faq {
    padding-top: 10rem !important;
  }
  #three-d-rendering-faq::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 11rem;
    top: -5rem;
    left: -1rem;
    background-color: rgb(18, 18, 18);
    transform: rotateZ(6deg);
  }
}
@media (min-width: 1400px) {
  #three-d-rendering-faq {
    padding-top: 11rem !important;
  }
  #three-d-rendering-faq::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 13rem;
    top: -7rem;
    left: -1rem;
    background-color: rgb(18, 18, 18);
    transform: rotateZ(4deg);
  }
}
@media (min-width: 2000px) {
  #three-d-rendering-faq::before {
    display: none;
    content: none;
  }
}
#three-d-rendering-faq .section-title {
  color: var(--bs-primary-darker);
}
#three-d-rendering-faq .faqs {
  list-style-type: decimal;
  list-style-position: inside;
  color: var(--bs-primary-darker);
}
#three-d-rendering-faq .faqs ::marker {
  font-size: 1rem;
  font-weight: 600;
}
#three-d-rendering-faq .faqs .faq {
  padding: 0 1.5rem 1.5rem 0;
}
#three-d-rendering-faq .faqs .faq .faq-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-primary-darker);
  line-height: 1.6;
  display: inline;
}
#three-d-rendering-faq .faqs .faq .faq-content {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bs-card-color-dark);
}
#three-d-rendering-faq .description {
  color: var(--bs-card-color-dark);
}
#three-d-rendering-faq .description .email {
  font-weight: 800;
  color: var(--bs-primary-darker);
  font-size: 1rem;
}

/*# sourceMappingURL=3d-rendering.css.map */
