.video-section{
	margin-top: 90px;
	width: 100%;
}

.video-section h2{
	margin-bottom: 35px;
}
.scandi-video{
    position: relative;
    margin-bottom: 40px;
	width: 100%;
}
.scandi-video .swiper-wrapper{
    height: fit-content;
}
.video-wrapper{
    box-sizing: border-box;
}
.video{
    height: 326px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.reels .video{
    height: 410px;
}

.video video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.video .play{
    display: grid;
    place-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100vw;
    background: #3f7bd4;
    border: none;
    color: white;
    cursor: pointer;
    transition: .3s ease;
}
.video .play svg{
    width: 20px;
    height: 20px;
}
    
.video .overlay{
    display: grid;
    place-content: center;        
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;    
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.video .overlay:hover .play{
    scale: 1.1;
}
.video-wrapper .title{
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

.carousel__wrapper
.carousel{
    overflow: hidden;
    height: fit-content;
}

.scandi-video .button{
    display: grid;
    place-content: center;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 133px;
    border-radius: 100vw;
    background-color: #FFCE4B;
    border: 1px solid #FFCE4B;
    color: #CA9301;
    cursor: pointer;
    transition: .3s ease;
    z-index: 2;
}
.scandi-video:has(.reels) .button{
    top: calc(50% - 30px);
}
.scandi-video .button:hover{
    filter: brightness(0.9);
}
.scandi-video .button:active{
    scale: .9;
}
.scandi-video .button.left{
    left: -18px;
}
.scandi-video .button.right{
    right: -18px;
}
.scandi-video .button:disabled{
    color: #5E6272;
    border: 1px solid #B3B2B2;
    background: white;
    &:hover{filter: none;}
    &:active{scale: 1;}
}
.scandi-video .grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.scandi-video-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    padding: 0;
    margin: 0 auto 24px;
	width: 100%;
}            
.scandi-video-tags li{
    list-style: none;
}
.scandi-video-tags .button{
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    border: 1px solid #EEF0F0;
    height: 42px;
    font-size: 16px;
    font-weight: 500;
    padding-inline: 16px;
    box-shadow: 5px 5px 8px 0 hsl(0 0% 0% / .04);
    cursor: pointer;
}
.scandi-video-tags .button:focus{
    outline: none;
}        
.scandi-video-tags .button:active{
    scale: .9;
}
.scandi-video-tags .button.active{
    background-color: #ffce4b;
    color: #5E6272;
}

.scandi-call-form{
    overflow: hidden;
    border-radius: 8px;
    background-image: linear-gradient(to bottom, #E6F0F2, white);
    cursor: pointer;
	height: 410px;
}
.scandi-call-form img{
    object-fit: cover;
}
.scandi-call-form .info{
    line-height: 1.2;
    color: #292D32;
    text-align: center;
    padding: 40px 20px 0;
}
.scandi-call-form :is(.title, .description){
    margin: 0;
}
.scandi-call-form .title{
    font-size: 20px;
    font-weight: 700;
}
.scandi-call-form .description{
    font-size: 14px;
}
@media (hover: hover){
    .scandi-video-tags .button:hover{
        filter: brightness(.9);
    }
}

@media screen and (max-width: 768px){    
	.video-section{
		margin-top: 20px
	}
	.video-section h2{
		margin-bottom: 16px;
	}

    .scandi-video{
        margin-bottom: 24px;
    }
    .scandi-video .button{
        width: 40px;
        height: 40px;
        top: 70px;
        &.left{
            left: -16px;
        }
        &.right{
            right: -16px;
        }
        &:disabled{
            display: none;
        }
    }
    .scandi-video:has(.reels) .button{
        top: calc(50% - 20px);
    }
    .video{
        height: 180px;
    }
    .reels .video{
        height: 270px;        
    }
    .video-wrapper .title{
        font-size: 16px;
        margin-top: 16px;
    }
    .scandi-video-tags{
        flex-wrap: nowrap;
        overflow: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -moz-scrollbar-width: none;
    }
    .scandi-video-tags::-webkit-scrollbar{
        display: none;
    }
    .scandi-video-tags .button{
        scroll-snap-align: start;
        width: max-content;
        font-size: 14px;
    }  
    .scandi-video .grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }
	.scandi-call-form{
		height: 270px !important;
	}
    .scandi-call-form img{
        height: 185px;
    }
    .scandi-call-form .info{
        padding: 16px 12px 0;
    }
    .scandi-call-form .title{
        font-size: 14px;
    }
    .scandi-call-form .description{
        font-size: 11px;
    }
}