/* ===============
// Scroll window 
=============== */
.v0006b.scroll-window{
    width: 100%;
    display: flex;
}
.v0006b .block{
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 64px;
    height: calc(100vh - 100px);
    top: 100px;
    position: sticky;
}
@media only screen and (max-width:1366px) {
	.v0006b .block{
		column-gap: 40px;
	}
}

@media only screen and (max-width:1024px) {
	.v0006b .block{
		flex-direction: column;
        height: calc(100vh - 100px);
        position: sticky;
        bottom: 0px;
        width: 100%;
        padding: 40px 40px;
        row-gap: 24px;
        justify-content: space-between;
	}
}
@media only screen and (max-width:767px) {
	.v0006b.scroll-window{
		column-gap: 40px;
	}
	.v0006b .block{
		padding: 20px 20px 20px 20px;
	}
}
.v0006b .slider-progress-bar{
	display: none;
}
@media only screen and (max-width:1024px) {
	.v0006b .slider-progress-bar{
		display: flex;
		width: 100%;
		box-shadow: 10px 6px 11px 0px rgba(0, 0, 0, 0.04);
		background-color: aliceblue;
		border-radius: 40px;
		min-height: 16px;
	}
	.v0006b .progress-bar{
		display: flex;
		width: 0px;
	}
}
/* ===============
// Left
=============== */
.v0006b .left{
    width: 50%;
    position: sticky;
    top: 100px;
    display: flex;
    align-items: flex-start;
	align-items: center;
}
@media only screen and (max-width:1024px) {
	.v0006b .left{
		width: 100%;
        height: 50%;
        row-gap: 16px;
        position: relative;
        top: 0px;
        align-items: flex-start;
	}
}
@media only screen and (max-width:767px) {
	.v0006b .left{
        width: 100%;
        height: 80%;
        row-gap: 16px;
        position: relative;
        top: 0px;
        align-items: flex-start;
        flex-grow: 1;
        overflow: hidden;
	}
}
/* ===============
// Right
=============== */
.v0006b .right{
    width: 50%;
    position: sticky;
    top: 100px;
}
@media only screen and (max-width:1024px) {
	.v0006b .right{
		width: 100%;
        height: auto;
        position: relative;
        top: 0px;
	}
}

.v0006b .image-column{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
	align-items: flex-start;
    align-items: center;
}
@media only screen and (max-width:1024px) {
	.v0006b .image-column{
		position: sticky;
        bottom: 0;
	}
}

.v0006b .image-container{
    width: 100%;
    justify-self: center;
}
@media only screen and (max-width:1024px) {
.v0006b .image-container{
	position: relative;
	width: 100%;
	justify-self: center;
	height: 100%;
	top: 0px;
	}
}

.v0006b .right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    max-width: 440px;
}

.v0006b .textImageSection{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    flex: 1 0 100%;
    position: absolute;
/* 	padding: 16px; */
    border-radius: 16px;
	transition: 1s;
	opacity: 0;
}

.v0006b .textImageSection h4{
	color: var(--e-global-color-primary, #2C7BC8);
	font-family: "DM Sans";
	font-size:  40px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 48px */

}

.v0006b .textImageSection h5{
	color: var(--e-global-color-text, #123454);
	font-family: "DM Sans";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 24px */
	letter-spacing: -0.2px;
}

.v0006b .textImageSection p{
	color: var(--e-global-color-text, #123454);
	font-family: "DM Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 22.4px */
}


@media only screen and (max-width:1024px) {
	.v0006b .textImageSection{
		width: 100%;
		row-gap: 30px;
		max-height: 100%;
		justify-content: center;
		align-items: center;
	}
}

.v0006b .imageSection{
    width: 100%;
    display: none;
}

.v0006b .imageSection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v0006b .textSection{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
}
	
@media only screen and (max-width:1024px) {
	.v0006b .textSection{
		flex-grow: 1;
		justify-content: center;
	}
}

.away {
    transform-origin: bottom left;
}