/* FONTS */
/* fonts used on the website*/

/* Bold */
@font-face {
    font-family: 'Stolzl-Bold';
    src: url('../assets/fonts/Stolzl-Bold.ttf') format('truetype');
    font-weight: bold;
}

/* Book */
@font-face {
    font-family: 'Stolzl-Book';
    src: url('../assets/fonts/Stolzl-Book.ttf') format('truetype');
    font-weight: book;
}

/* Light */
@font-face {
    font-family: 'Stolzl-Light';
    src: url('../assets/fonts/Stolzl-Light.ttf') format('truetype');
    font-weight: lighter;
}

/* Medium */
@font-face {
    font-family: 'Stolzl-Medium';
    src: url('../assets/fonts/Stolzl-Medium.ttf') format('truetype');
    font-weight: medium;
}

/* Regular */
@font-face {
    font-family: 'Stolzl-Regular';
    src: url('../assets/fonts/Stolzl-Regular.ttf') format('truetype');
    font-weight: regular;
}

/* Thin */
@font-face {
    font-family: 'Stolzl-Thin';
    src: url('../assets/fonts/Stolzl-Thin.ttf') format('truetype');
    font-weight: thin;
}

/* WEBSITE GLOBAL SETTINGS */

p {
    font-family: 'Stolzl-Light';
    font-weight: lighter;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
}

h1 {
    font-family: 'Stolzl-Bold';
    font-weight: bold;
    font-size: 45px;
    font-weight: 700;
    line-height: 48px;
    color: #1b2429;
}

h2 {
    font-family: 'Stolzl-Book'; 
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
}

h3 {
    font-family: 'Stolzl-Bold';
    font-weight: bold;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: white;
}

h4 {
    font-family: 'Stolzl-Light';
    font-weight: lighter;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}

body, html {
    margin: 0;
    padding: 0;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

video::-webkit-media-controls-picture-in-picture-button {
    display: none;
}
  
video::-webkit-media-controls-enclosure {
    overflow: hidden !important;
}

/* LOADER STYLES */

.lds-ring {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
  
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
  
@keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

.loader{
    background-color: #1b2429;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10000;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s ease-in-out;
}

.loader2{
    clip-path: inset(0 0 100% 0);
}

.imgLoader{
    width: 250px;
    height: 125px;
}

@media screen and (max-width: 770px){
    .imgLoader{
        width: 125px;
        height: 62px;
    }
}


/* NAVIGATION MENU STYLES */

.menu-list {
    padding-top: 55px;
}

a {
    text-decoration: none;
}

.menu-container {
    position: relative;
    overflow: hidden;
    background-color: #1b2429;
}

.menu-toggle {
    position: fixed;
    top: 25px;
    right: 50px;
    cursor: pointer;
    z-index: 1000;
    color: #232C31;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.bar {
    width: 35px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-list-li {
    padding-bottom: 35px;
    width: 400px;
}

.menu-list-li a{
    transition: 0.3s ease-in-out;
}

.menu-list-li a:hover {
    color: rgb(175, 175, 175);
}

.link-menu {
    padding-left: 65px;
    font-family: 'Stolzl-Book';
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    color: white;
}

.link-redes {
    padding-bottom: 0px;
    padding-left: 65px;
    color: white;
    font-family: 'Stolzl-Light';
    font-size: 24px;
    font-weight: 300;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -8px);
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2429;
    transition: top 0.4s ease-in-out;
    z-index: 999;
}

.menu.active {
    top: 0;
}

#menu-container-pages {
    padding: 0px 45px;
}

.header-logo {
    padding-top: 5px;
}

.header-logo a img {
    width: 150px;
    padding-top: 5px;
}

.menu-toggle.hidden {
    display: none;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #1b2429;
    padding: 10px;
    transition: 0.3s ease;
}

.menu-list-li.services-menu:hover .submenu {
    display: block;
    left: 400px;
    top: 50px;
    padding-left: 65px;
    font-family: 'Stolzl-Book';
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}

.submenu li{
    padding-bottom: 20px;
}

.submenu li a{
    color: white;
}

@media screen and (min-width: 1250px) and (max-width: 1400px){
    .menu-list-li.services-menu:hover .submenu{
        font-size: 30px;
        line-height: 30px;
    }
}

@media screen and (max-width: 770px){
    .menu-list {
        padding-top: 75px;
    }
    .link-menu {
        padding-left: 35px;
        font-size: 40px;
        line-height: 25px;
    }
    .link-redes {
        padding-left: 35px;
        font-size: 20px;
    }
    #menu-container-pages {
        padding: 0px 30px;
    }
    .header-logo a img {
        width: 130px;
        padding-top: 8px;
    }
}

/* HOME SECTION STYLES */

.home{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-home{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}


.home-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-logo img {
    width: 100%;
}

/* INTRODUCTION HOME STYLES */

.introduction-container {
    padding: 105px 45px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.introduction-container h1{
    margin-bottom: 50px;
}

.introduction-text {
    width: 70%;
}

.introduction-text p {
    margin-bottom: 75px;
    margin-right: 350px;
}

.introduction-img {
    width: 30%;
}

.introduction-img img{
    width: 100%;
}

.btn-home {
    background-color: #1b2429;
    font-family: 'Stolzl-Bold';
    font-size: 22px;
    padding: 3px 14px;
    border: none;
    color: white;
    transition: opacity 0.3s ease;
}

.btn-home:hover{
    opacity: 0.8;
}

.services-home {
    background-color: #1b2429;
    padding: 105px 45px;
}

.contTitle{
    display: flex;
}

.title-services-home{
    font-family: 'Stolzl-Book';
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: font-weight 0.3s ease-in-out;
}

.title-services-home.active-link {
    font-family: 'Stolzl-Bold';
    font-weight: bold;
}

.contContents p{
    color: white;
    font-size: 20px;
    font-family: 'Stolzl-Light';
    font-weight: 300;
}

.contContents{
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease-in-out, height 0s ease-in-out 0.6s;
}

.contContents.active-cont{
    opacity: 1;
    height: auto;
    transition: opacity 0.6s ease-in-out, height 0s ease-in-out;
    margin-top: 80px;
}

.content-show {
    display: flex;
    justify-content: space-between;
}

.carousel-image {
    display: none;
}

.content-show-text {
    flex-basis: 50%;
}

.video-container-home {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-home iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-show {
    width: 75% !important;
}

.img-show2 {
    width: 50% !important;
}

.content-show-vr{
    flex-basis: 40%;
    height: 550px;
    position: relative;
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

.content-show-vr-2{
    flex-basis: 40%;
    height: 550px;
    position: relative;
    width: 100%;
    display: block;
    margin-right: 0;
    overflow: hidden;
}

.content-show-vr-3{
    flex-basis: 40%;
    height: 550px;
    position: relative;
    width: 100%;
    display: block;
    margin-right: 0;
    overflow: hidden;
}

.content-show-vr-4{
    flex-basis: 40%;
    height: 550px;
    position: relative;
    width: 100%;
    display: block;
    margin-right: 0;
    overflow: hidden;
}

.content-show-vr-5{
    flex-basis: 40%;
    height: 550px;
    position: relative;
    width: 100%;
    display: block;
    margin-right: 0;
    overflow: hidden;
}

.panolens-container {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

canvas{
    width: 100%;
}

@media screen and (min-width: 1500px) and (max-width: 2000px){
    .introduction-img{
        display: flex;
        justify-content: flex-end;
        width: 30%;
    }
    .introduction-img img{
        width: 70%;
    }
}

@media screen and (min-width: 1401px) and (max-width: 1500px){
    .introduction-text p{
        font-size: 20px;
        margin-right: 200px;
    }
}

@media screen and (min-width: 1250px) and (max-width: 1400px){
    .img-show2{
        width: 65% !important;
    }
    .content-show-vr{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto;
        overflow: hidden;
    }
    .content-show-vr-2{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }
    .content-show-vr-3{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto;
        overflow: hidden;
    }
    .content-show-vr-4{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }
    .content-show-vr-5{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }

}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .introduction-text p{
        font-size: 20px;
        margin-bottom: 75px;
        margin-right: 60px;
    }
}

@media screen and (min-width: 1051px) and (max-width: 1249px){
    .vr360-image{
        width: 100%;
        object-fit: contain;
    }
}

@media screen and (max-width: 770px){
    .introduction-container{
        padding: 45px 15px;
        flex-direction: column;
        justify-content: center;
    }
    .introduction-text{
        width: 100%;
    }
    .introduction-text h1{
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 25px;
    }
    .introduction-text p{
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
        margin-right: 0;
    }
    .btn-home{
        font-size: 18px;
        margin-bottom: 45px;
    }
    .introduction-img{
        width: 100%;
        margin-bottom: 30px;
    }
    .services-home{
        padding: 45px 15px;
    }
    .contTitle{
        flex-direction: column;
    }
    .title-services-home{
        margin-bottom: 5px;
    }
    .content-show{
        flex-direction: column;
        justify-content: center;
    }
    .content-show-text{
        flex-basis: 100%;
    }
    .contContents p{
        font-size: 18px;
        line-height: 30px;
    }
    .img-show{
        width: 75% !important;
    }
    .img-show2{
        width: 50% !important;
    }
    .content-show-vr{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-2{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-3{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-4{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-5{
        flex-basis: auto;
        height: 650px;
    }
    canvas{
        height: 650px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .introduction-container{
        flex-direction: column;
        justify-content: center;
    }
    .introduction-text{
        width: 100%;
    }
    .introduction-text p{
        margin-right: 0;
        margin-bottom: 55px;
    }
    .btn-home{
        margin-bottom: 55px;
    }
    .introduction-img{
        width: 100%;
        margin-bottom: 55px;
    }
    .services-home{
        padding: 45px 15px;
    }
    .contTitle{
        flex-direction: column;
    }
    .title-services-home{
        margin-bottom: 5px;
    }
    .content-show{
        flex-direction: column;
        justify-content: center;
    }
    .content-show-text{
        flex-basis: 100%;
    }
    .btn-services{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    .title-services-home{
        font-size: 24px;
        margin-bottom: 10px;
    }
}


/* ABOUT US SECTION STYLES */

.about-us {
    background-color: #1b2429;
    padding: 105px 45px;
}

.container-about {
    display: flex;
    justify-content: space-between;
}

.about-text {
    display: flex;
    flex-basis: 60%;
    flex-direction: column;
    margin-right: 15px;
    padding-right: 50px;
}

.about-text p{
    font-family: 'Stolzl-Light';
    font-weight: lighter;
    font-size: 20px;
    color: white;
    font-weight: 300;
    line-height: 36px;
}

.about-img {
    display: flex;
    justify-content: space-between;
    flex-basis: 40%;
}

.about-images {
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-images:hover {
    filter: none;
}

.img-about-container {
    display: flex;
    flex-direction: column;
}
 
.img-about-container span {
    font-size: 14px;
    color: white;
    font-family: 'Stolzl-Light';
    font-weight: 300;
    line-height: 23px;
}

.about-team {
    padding-top: 80px;
    padding-bottom: 60px;
}

.container-img-team {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.img-team {
    display: flex;
    width: 20%;
    height: 100%;
    margin-right: 5px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.img-team-final {
    display: flex;
    width: 20%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.img-team:hover {
    filter: none;
}

.img-team-final:hover {
    filter: none;
}

.join-us {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.join-us p, span{
    font-family: 'Stolzl-Light';
    font-weight: lighter;
    font-size: 20px;
    color: white;
    font-weight: 300;
    line-height: 36px;
}

.join-us-link {
    font-family: 'Stolzl-Light';
    font-style: normal;
    font-weight: 300;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

@media screen and (min-width: 771px) and (max-width: 1200px){
    .about-text p{
        font-size: 18px;
        line-height: 30px;
    }
}

@media screen and (max-width: 770px){
    .about-us {
        padding: 105px 15px;
    }
    .container-about{
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-text{
        flex-basis: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }
    .about-text p{
        font-size: 18px;
        line-height: 30px;
    }
    .about-img {
        flex-basis: 100%;
    }
    .img-about-container span{
        font-size: 13px;
        white-space: nowrap;
        line-height: 20px;
    }
    .about-team{
        padding-bottom: 20px;
    }
    .container-img-team{
        flex-direction: column;
    }
    .img-team{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .img-team-final{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .join-us{
        padding-top: 40px;
    }
    .join-us p, span{
        font-size: 18px;
        line-height: 30px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .container-about{
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-text{
        flex-basis: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }
}

/* SERVICES SECTION STYLES */

.services {
    background-color: #1b2429;
    padding: 105px 45px;
}

.container-services {
    margin-top: 45px;
}

.services-titles {
    margin-bottom: 105px;
}

.services-titles h1{
    color: white;
    font-family: 'Stolzl-Book';
    font-weight: 500;
    font-size: 42px;
}

.services-titles hr{
    height: 1px;
    color: white;
    width: 700px;
}

.services-titles a{
    text-decoration: none;
    color: white;
}

.service-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 95px;
}

.service-text {
    flex-basis: 50%;
    margin-right: 50px;
}

.service-text h2 {
    color: white;
}

.service-text p{
    font-family: 'Stolzl-Light';
    font-style: normal;
    font-weight: 300;
    color: white;
    text-decoration: none;
    font-size: 20px;
    line-height: 36px;
}

.btn-services {
    background-color: white;
    font-family: 'Stolzl-Bold';
    font-weight: 500;
    font-size: 22px;
    padding: 3px 14px;
    border: none;
    color: #232C31;
    width: 200px;
    margin-top: 50px;
    transition: opacity 0.3s ease;
}

.btn-services:hover{
    opacity: 0.8;
}

.image-container {
    flex-basis: 45%;
    overflow: hidden;
}

.image-container-virtual {
    flex-basis: 45%;
    overflow: hidden;
}
  
.image-container img {
    width: 100%;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#image-large {
    width: 75%;
}

#img-services-mobile{
    width: 70% !important;
    margin-left: 50px;
}
  
.image.visible {
    opacity: 1;
}

.video-container {
    flex-basis: 40%;
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.video-container-services {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-services iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
  
.modal-content-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}
  
.close-video {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.vr360 {
    margin-bottom: 180px;
}

.animations {
    margin-bottom: 180px;
}

.vr360-box{
    flex-basis: 35%;
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.vr360-box img {
    width: 100%;
}

.iframe-360 {
    width: 100%;
    height: 415px;
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .iframe-360 {
        height: 315px;
    }
}

@media screen and (max-width: 770px){
    .services{
        padding: 105px 15px;
    }
    .container-services{
        margin-top: 30px;
    }
    .services-titles{
        margin-bottom: 80px;
    }
    .services-titles h1{
        font-size: 25px;
        line-height: 35px;
    }
    .services-titles hr{
        width: 100%;
    }
    .service-box{
        flex-direction: column;
        justify-content: center;
        margin-bottom: 55px;
    }
    .service-text{
        flex-basis: 100%;
        margin-right: 0;
    }
    .service-text h2{
        font-size: 25px;
        text-align: center;
    }
    .service-text p{
        font-size: 18px;
        line-height: 30px;
    }
    .btn-services{
        font-size: 18px;
        width: 150px;
        margin-top: 15px;
        margin-bottom: 35px;
    }
    .image-container{
        flex-basis: 100%;
        text-align: center;
    }
    .image-container img{
        display: inline-block;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }
    .image-container-virtual{
        flex-basis: 100%;
        text-align: center;
    }
    #image-large{
        width: 100%;
    }
    #img-services-mobile{
        width: 75%;
        display: inline-block;
        margin: 0 auto;
        margin-left: 40px;
    }
    .vr360 {
        margin-bottom: 55px;
    }
    .animations {
        margin-bottom: 50px;
    }
    .iframe-360 {
        height: 215px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1450px){
    .vr360 {
        margin-bottom: 95px;
    }
    .animations {
        margin-bottom: 95px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .service-box{
        flex-direction: column;
        justify-content: center;
        margin-bottom: 65px;
    }
    .service-text{
        flex-basis: 100%;
        margin-right: 0;
    }
    .image-container{
        flex-basis: 100%;
        text-align: center;
    }
    .image-container img{
        display: inline-block;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }
    .image-container-virtual{
        flex-basis: 100%;
        text-align: center;
    }
    .btn-services{
        margin-top: 15px;
        margin-bottom: 35px;
    }
    #image-large{
        width: 100%;
    }
    #img-services-mobile{
        width: 75%;
        display: inline-block;
        margin: 0 auto;
        margin-left: 110px;
    }
}

/* SERVICES PAGES STYLES */

.services-page-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-page-title {
    font-size: 40px;
    font-weight: 700;
}

.services-page-paragraph {
    text-align: center;
    padding: 50px;
}

.services-render-text {
    text-align: center;
}

.container-image-vrwalk {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.container-image-vrwalk img {
    width: 80%;
}

.services-vr-text {
    text-align: center;
    font-size: 30px !important;
    font-weight: 600 !important;
    padding-top: 25px;
    padding-bottom: 45px;
}

.video-container-vrwalk-1 {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-vrwalk {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
    margin-bottom: 85px;
}

.video-container-vrwalk iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-vrwalk-1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 770px){
    .video-container-vrwalk{
        margin-bottom: 35px;
    }
    .services-page-paragraph{
        padding: 10px;
        text-align: start;
    }
    .services-vr-text{
        font-size: 20px !important;
        padding: 25px;
    }
    .container-image-vrwalk img {
        width: 80%;
    }
}

/* VIRTUAL STAGING STYLES */

.container-works-virtualstaging {
    width: 100%;
    text-align: center;
    display: flex;
}

.works-box1-virtualstaging {
    flex-basis: 50%;
    margin-right: 7.5px;
}

.works-box2-virtualstaging {
    flex-basis: 50%;
    margin-left: 7.5px;
}

.container-box-virtualstaging {
    display: grid;
    place-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.container-virtualstaging {
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    --position: 50%;
    width: 100%;
}

.image-comparison-slider {
    max-width: 100%;
    max-height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
}

.slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.slider:focus-visible ~ .slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
}

.slider2:focus-visible ~ .slider-button {
    outline: 5px solid black;
    outline-offset: 3px;
}

.slider-line {
    position: absolute;
    inset: 0;
    width: .2rem;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    background-color: #fff;
    color: black;
    padding: .5rem;
    border-radius: 100vw;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.label {
    position: absolute;
    background-color: rgb(0 0 0 / 20%);
    color: white;
    padding: 5px;
    font-size: 16px;
    font-weight: regular;
    z-index: 1;
}

.after-label {
    top: 10px;
    left: 10px;
}

.before-label {
    top: 10px;
    right: 10px;
}

@media screen and (max-width: 770px){
    .container-works-virtualstaging{
    flex-direction: column;
    }
    .works-box1-virtualstaging{
    flex-basis: 100%;
    margin-right: 0;
    }
    .works-box2-virtualstaging{
    flex-basis: 100%;
    margin-right: 0;
    }
}

/* WORKS SECTION STYLES */

.works {
    padding: 105px 45px 15px;
    background-color: #1b2429;
}

.works h3 {
    color: white;
}

.container-works {
    width: 100%;
    text-align: center;
}

.container-works-360 {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.container-visible {
    display: flex;
    width: 100%;
}

.container-hidden {
    display: none;
}

.works-box1 {
    flex-basis: 50%;
    margin-right: 7.5px;
}

.works-box1 img {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.works-box1 video{
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-container-works {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-works iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-works-360 {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-works-360 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-works-360-iframe {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 650px;
    margin-bottom: 15px;
}

.video-container-works-360-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.works-box2 {
    flex-basis: 50%;
    margin-left: 7.5px;
}

.works-box2 img {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.works-box2 video{
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

#modal-image {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.modal-prev {
    left: 15px;
}

.modal-next {
    right: 15px;
}

.btn-works {
    background-color: white;
    font-family: 'Stolzl-Bold';
    font-size: 22px;
    padding: 3px 14px;
    border: none;
    color: #1b2429;
    transition: opacity 0.3s ease;
    margin: 50px;
}

.btn-works:hover{
    opacity: 0.8;
}

@media screen and (max-width: 770px){
    .works{
        padding: 105px 15px;
    }
    .container-visible{
        flex-direction: column;
    }
    .container-hidden{
        flex-direction: column;
    }
    .works-box1 {
        flex-basis: 100%;
        margin-right: 0;
    }
    .works-box2 {
        flex-basis: 100%;
        margin-left: 0;
    }
    .modal-prev, .modal-next{
        font-size: 40px;
    }
    #modal-image {
        max-width: 85%;
        max-height: 85%;
    }
    .btn-works{
        font-size: 18px;
        margin-bottom: 45px;
    }
    .video-container-works-360{
        height: 650px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .btn-works{
        font-size: 18px;
        margin-bottom: 55px;
    }
}

/* ORBITAL STYLES */

.works-orbital {
    padding: 105px 15px 15px;
    background-color: #1b2429;
}

.works-orbital h3 {
    color: white;
}

.container-introduction-projects{
    margin-top: 55px;
    margin-bottom: 35px;
}

.container-orbital {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

#orbital-viewer {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

#orbital-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

#side-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

#side-arrows .arrow {
    font-size: 250px;
    font-weight: 100;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    user-select: none;
}

#drag-hint {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    pointer-events: none;
    animation: float-horizontal 3s ease-in-out infinite;
    transition: opacity 0.5s;
}

.mouse-icon {
    width: 48px;
    height: 72px;
    border: 3px solid white;
    border-radius: 24px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.arrows {
    font-size: 35px;
    color: white;
    display: flex;
    gap: 5px;
    animation: blink 1.2s infinite;
}

@keyframes float-horizontal {
    0%   { transform: translateX(-50%) translateY(0); }
    25%  { transform: translateX(-55%) translateY(0); }
    50%  { transform: translateX(-50%) translateY(0); }
    75%  { transform: translateX(-45%) translateY(0); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media screen and (max-width: 770px) {
    #side-arrows .arrow{
        font-size: 150px;
    }
    .works-orbital{
        padding: 105px 15px;
    }
}

/* CONTACT SECTION STYLES */

.contact {
    background-color: #1b2429;
    padding: 105px 45px;
}

.container-contact {
    display: flex;
    margin-bottom: 105px;
}

.contact-info {
    margin-right: 250px;
}

.contact-title {
    color: white;
    font-family: 'Stolzl-Bold';
    font-weight: 500;
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 50px;
    margin-top: 105px;
}

.link-contact {
    font-family: 'Stolzl-Light';
    font-style: normal;
    color: white;
    text-decoration: underline;
    text-underline-position: under;
    font-size: 18px;
    cursor: default;
}

.info-tel-contact {
    font-family: 'Stolzl-Light';
    font-style: normal;
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.icons-brands{
    margin-top: 95px;
}

.icons-brands a{
    transition: opacity 0.3s ease;
}

.icons-brands a:hover{
    opacity: 0.8;
}

.contact-form {
    flex-basis: 50%;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 105px;
}

form input, form textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 15px 0;
    font-size: 16px;
    color: white;
    font-family: 'Stolzl-Light';
    font-style: normal;
    font-weight: 400;
}

form input::placeholder {
    font-size: 16px;
    color: white;
    font-family: 'Stolzl-Light';
    font-style: normal;
    font-weight: 500;
}

form textarea::placeholder {
    font-size: 16px;
    color: white;
    font-family: 'Stolzl-Light';
    font-style: normal;
    font-weight: 500;
}

form hr{
    color: white;
    margin-top: 0;
    margin-bottom: 15px;
    padding-top: 0;
}

.btn-contact {
    background-color: white;
    font-family: 'Stolzl-Bold';
    font-weight: 500;
    font-size: 22px;
    padding: 3px 14px;
    border: none;
    color: #1b2429;
    width: 200px;
    margin-top: 50px;
    transition: opacity 0.3s ease; 
}

.btn-contact:hover {
    opacity: 0.8;
}

.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .contact-info{
        margin-right: 95px;
    }
}

@media screen and (max-width: 770px){
    .contact{
        padding: 105px 15px;
    }
    .container-contact{
        flex-direction: column;
        margin-top: 45px;
        margin-bottom: 45px;
    }
    .contact-info{
        margin-right: 0;
    }
    .contact-title{
        font-size: 45px;
        line-height: 50px;
        margin-top: 0px;
        margin-bottom: 35px;
    }
    .icons-brands{
        margin-top: 55px;
    }
    form{
        margin-top: 55px;
    }
    .btn-contact{
        font-size: 18px;
        width: 150px;
    }
}

/* FOOTER STYLES */


.footer-logo {
    padding: 60px 45px;
}

.footer-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-info {
    display: flex;
    justify-content: space-around;
    width: 60%;
}

.link-footer {
    font-family: 'Stolzl-Book';
    font-style: normal;
    color: black;
    text-decoration: underline;
    text-underline-position: under;
    font-size: 18px;
    cursor: default;
}

.info-tel {
    font-family: 'Stolzl-Book';
    font-style: normal;
    color: black;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-tel-2 {
    font-family: 'Stolzl-Book';
    font-style: normal;
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-brands a{
    transition: opacity 0.3s ease;
}

.footer-brands a:hover{
    opacity: 0.8;
}

.logo-footer-works {
    width: 150px;
}

@media screen and (max-width: 770px){
    .footer-logo {
        padding: 30px 30px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-logo img{
        width: 150px;
        display: flex;
        margin-bottom: 15px;
    }
    .footer-info{
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    .footer-info h4{
        font-size: 20px;
    }
    .footer-info p{
        font-size: 16px;
        margin-bottom: 0;
    }
    .link-footer{
        font-size: 16px;
    }
    .final-footer{
        margin-top: 25px;
    }
    .img-certificate{
        display: flex;
        justify-content: center;
    }
}