/**
 * Theme Name:     White Moss Theme
 * Author:         Dolomites Web
 * Template:       hello-elementor
 * Text Domain:	   white-moss-theme
 * Description:    White Moss Theme
 */

.section-padding{
    padding: 80px 8% !important;
}

.section-padding-xl{
    padding: 120px 8% !important;
}
.section-padding-xxl{
    padding: 240px 8% !important;
}

@media (max-width: 1024px) {
    .section-padding{
        padding: 60px 8% !important;
    }
    .section-padding-xl{
        padding: 80px 8% !important;
    }
    .section-padding-xxl{
        padding: 200px 8% !important;
    }
}
@media (max-width: 768px) {
    .section-padding{
        padding: 40px 8% !important;
    }
    .section-padding-xl{
        padding: 60px 8% !important;
    }
    .section-padding-xxl{
        padding: 120px 8% !important;
    }
}


.vertical-lines{
    max-width: 1600px;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}
.vertical-line{
    height: 100%;
    width: 1px;
    background-color: white;
    opacity: 0.1;
}
.vertical-lines-dark .vertical-line{
    background-color: #000;
    opacity: 0.05;
}

.bg-lines-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 8%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-lines-dark .vertical-line, .bg-lines-dark .horizontal-line{
    background-color: #000;
    opacity: 0.05;
}

.horizontal-line{
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0.10;
}

.horizontal-line-top{
    top: 48px;
}

.horizontal-line-bottom{
    bottom: 48px;
}


.square-lines-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.square-lines-container .line{
    position: absolute;
    transition: all 0.5s ease-in-out;
    background-color: white;
    opacity: 1;
}
.square-lines-container .line-top{
    position: absolute;
    top: 48px;
    width: 100%;
    height: 1px;
}
.square-lines-container .line-bottom{
    bottom: 48px;
    width: 100%;
    height: 1px;
}   
.square-lines-container .line-left{
    position: absolute;
    left: 48px;
    width: 1px;
    height: 100%;
    background-color: white;
    opacity: 1;
}   
.square-lines-container .line-right{
    right: 48px;
    width: 1px;
    height: 100%;
}
.square-lines-container:hover .line-top{
    top: 24px;
}
.square-lines-container:hover .line-bottom{
    bottom: 24px;
}
.square-lines-container:hover .line-left{
    left: 24px;
}
.square-lines-container:hover .line-right{
    right: 24px;
}
@media (max-width: 1024px) {
    .square-lines-container .line-top{
        top: 24px;
    }
    .square-lines-container .line-bottom{
        bottom: 24px;
    }
    .square-lines-container .line-left{
        left: 24px;
    }
    .square-lines-container .line-right{
        right: 24px;
    }
    .square-lines-container:hover .line-top{
        top: 12px;
    }
    .square-lines-container:hover .line-bottom{
        bottom: 12px;
    }
    .square-lines-container:hover .line-left{
        left: 12px;
    }
    .square-lines-container:hover .line-right{
        right: 12px;
    }
}


/*** SWIPER ***/

/* Slide in uscita (quando lascia lo schermo) */
#custom-swiper .swiper-slide {
    /*transform: scale(0.75);*/
}

#custom-swiper .swiper-slide-zoom-out {
    transform: scale(0.75) !important;
    transition: transform 1s ease-in !important;
}

#custom-swiper .swiper-slide-zoom-out-immediate {
    transform: scale(0.75) !important;
    transition: transform 0s ease-in !important;
}

/* Quando la slide è visibile */
#custom-swiper .swiper-slide-normal {
    transform: scale(1) !important;
    transition: transform 1s ease-in !important;
    border-radius: 0px !important;
}

.floatable-wrapper{
    z-index: 200!important;
}