/*!
 * home.scss
 * 
 * Page-specific styles for the Home page.
 * Custom layouts, sections, and components designed for homepage presentation.
 */
/*!
 * _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.
 */
#virtual-property-tours-section {
  width: 100%;
  background-image: url(../img/virtual-property-tours.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1.7777777778;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  #virtual-property-tours-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.7777777778));
  }
}
@media (max-width: 767.98px) {
  #virtual-property-tours-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #virtual-property-tours-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #virtual-property-tours-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #virtual-property-tours-section a {
    font-size: 0.9rem;
  }
  #virtual-property-tours-section .btn-primary-01 {
    box-shadow: none;
  }
}
@media (max-width: 767.98px) {
  #virtual-property-tours-section .section-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
}

#three-d-rendering-virtual-tours-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;
}
@supports not (aspect-ratio: 1/1) {
  #three-d-rendering-virtual-tours-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.7777777778));
  }
}
@media (max-width: 767.98px) {
  #three-d-rendering-virtual-tours-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #three-d-rendering-virtual-tours-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #three-d-rendering-virtual-tours-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #three-d-rendering-virtual-tours-section a {
    font-size: 0.9rem;
  }
  #three-d-rendering-virtual-tours-section .btn-primary-01 {
    box-shadow: none;
  }
}
@media (max-width: 767.98px) {
  #three-d-rendering-virtual-tours-section {
    background-color: var(--bs-card-bg);
  }
  #three-d-rendering-virtual-tours-section .section-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
}

#smooth-navigation-section {
  position: relative;
  aspect-ratio: 1.7777777778;
}
@supports not (aspect-ratio: 1/1) {
  #smooth-navigation-section::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}
#smooth-navigation-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
#smooth-navigation-section .container {
  position: relative;
  z-index: 1;
  color: #fff;
}
#smooth-navigation-section .section-details {
  background: none;
}
@media (max-width: 767.98px) {
  #smooth-navigation-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #smooth-navigation-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #smooth-navigation-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #smooth-navigation-section a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  #smooth-navigation-section {
    background-color: #000;
  }
}

#optimized-for-all-devices-section {
  position: relative;
  aspect-ratio: 1.7777777778;
}
@supports not (aspect-ratio: 1/1) {
  #optimized-for-all-devices-section::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}
#optimized-for-all-devices-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
#optimized-for-all-devices-section .container {
  position: relative;
  z-index: 1;
  color: #fff;
}
#optimized-for-all-devices-section .section-details {
  background: none;
}
@media (max-width: 767.98px) {
  #optimized-for-all-devices-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #optimized-for-all-devices-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #optimized-for-all-devices-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #optimized-for-all-devices-section a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  #optimized-for-all-devices-section {
    background-color: var(--bs-card-bg);
  }
  #optimized-for-all-devices-section p {
    width: 100% !important;
  }
}

#publish-to-google-street-view-section {
  width: 100%;
  background-image: url(../img/publish-to-google-street-view.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1.7777777778;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  #publish-to-google-street-view-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.7777777778));
  }
}
@media (max-width: 767.98px) {
  #publish-to-google-street-view-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #publish-to-google-street-view-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #publish-to-google-street-view-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #publish-to-google-street-view-section a {
    font-size: 0.9rem;
  }
  #publish-to-google-street-view-section .btn-primary-01 {
    box-shadow: none;
  }
}
@media (max-width: 991.98px) {
  #publish-to-google-street-view-section .section-details {
    padding: 1rem;
  }
  #publish-to-google-street-view-section img {
    width: 4rem;
    height: auto;
  }
}

#brand-and-embed-with-ease-section {
  position: relative;
  aspect-ratio: 1.7777777778;
}
@supports not (aspect-ratio: 1/1) {
  #brand-and-embed-with-ease-section::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}
#brand-and-embed-with-ease-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
#brand-and-embed-with-ease-section .container {
  position: relative;
  z-index: 1;
  color: #fff;
}
#brand-and-embed-with-ease-section .section-details {
  background: none;
}
@media (max-width: 767.98px) {
  #brand-and-embed-with-ease-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #brand-and-embed-with-ease-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #brand-and-embed-with-ease-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #brand-and-embed-with-ease-section a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  #brand-and-embed-with-ease-section {
    background-color: var(--bs-card-bg);
  }
  #brand-and-embed-with-ease-section p {
    width: 100% !important;
  }
}

#live-panoramas-section {
  width: 100%;
  background-image: url(../img/live-panoramas.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1.7777777778;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  #live-panoramas-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.7777777778));
  }
}
@media (max-width: 767.98px) {
  #live-panoramas-section {
    background-image: none;
    background-color: #000;
    aspect-ratio: auto;
  }
  #live-panoramas-section::before {
    display: none;
    padding-top: 0;
    content: none;
  }
  #live-panoramas-section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  #live-panoramas-section a {
    font-size: 0.9rem;
  }
  #live-panoramas-section .btn-primary-01 {
    box-shadow: none;
  }
}
#live-panoramas-section p {
  color: var(--bs-body-bg);
}
#live-panoramas-section h2 {
  color: var(--bs-body-bg);
}
@media (max-width: 767.98px) {
  #live-panoramas-section {
    background-color: var(--inner-section-bg);
  }
  #live-panoramas-section .section-details-white {
    background-color: var(--inner-section-bg) !important;
  }
  #live-panoramas-section .section-details-white p {
    font-weight: 400;
    font-size: 1rem;
  }
}

#virtual-tour-advantages-section {
  background-color: white;
  position: relative;
}
#virtual-tour-advantages-section .inner-section {
  background-color: var(--inner-section-bg);
}
#virtual-tour-advantages-section p {
  color: var(--bs-link-color);
  font-size: 1rem;
  font-weight: 500;
}
#virtual-tour-advantages-section h2 {
  color: var(--bs-body-bg);
}
#virtual-tour-advantages-section h3 {
  color: var(--bs-body-bg);
  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
  line-height: 1.4;
}
#virtual-tour-advantages-section h3::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  background-color: black;
  position: absolute;
  left: -1rem;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}
#virtual-tour-advantages-section::after {
  content: "";
  position: absolute;
  top: 7rem;
  width: 100%;
  height: 15%;
  background-image: url("../img/360deg.png");
  background-repeat: no-repeat;
  background-position: top center;
  filter: drop-shadow(0rem 0.2rem 0.4rem var(--bs-secondary-color));
  background-size: 7rem 7rem;
}
@media (max-width: 767.98px) {
  #virtual-tour-advantages-section {
    background-color: var(--inner-section-bg);
  }
  #virtual-tour-advantages-section .section-title {
    background-color: #fff;
    width: 100%;
    flex: 0 0 100%;
  }
  #virtual-tour-advantages-section::after {
    display: none;
  }
  #virtual-tour-advantages-section p {
    color: var(--bs-card-bg);
    font-weight: 400;
  }
  #virtual-tour-advantages-section h3 {
    color: var(--bs-light-border-subtle);
  }
}

/*# sourceMappingURL=home.css.map */
