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

@media only screen and (max-width:1024px) {
	.v0007b .block{
		flex-direction: column;
        height: calc(100vh - 100px);
        position: sticky;
        top: 100px;
		width: 100%;
		padding: 40px 40px;
		row-gap: 24px;
		justify-content: space-between;
	}
}
@media only screen and (max-width:767px) {
	.v0007b.scroll-window{
		column-gap: 40px;
	}
	.v0007b .block{
		padding: 20px 20px;
	}
}
.v0007b .slider-progress-bar{
	display: none;
}
@media only screen and (max-width:1024px) {
	.v0007b .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;
	}
	.v0007b .progress-bar{
		display: flex;
		width: 0px;
	}
}
/* ===============
// Left
=============== */
.v0007b .left{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: flex-start;
/* 	row-gap: 40px; */
}
@media only screen and (max-width:1024px) {
	.v0007b .left{
		width: 100%;
        height: 50%;
        row-gap: 16px;
        position: relative;
        top: 0px;
		align-items: flex-start;
	}
}
@media only screen and (max-width:767px) {
	.v0007b .left{
		width: 100%;
        height: 80%;
        row-gap: 16px;
        position: relative;
        top: 0px;
		align-items: flex-start;
	}
}
/* ===============
// Right
=============== */
.v0007b .right{
    width: 50%;
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
}
@media only screen and (max-width:1024px) {
	.v0007b .right{
		width: 100%;
        height: 60%;
        position: relative;
        top: 0px;
	}
}
@media only screen and (max-width:767px) {
	.v0007b .right{
		width: 100%;
        height: 30%;
        position: relative;
        top: 0px;
	}
}
.v0007b .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) {
	.v0007b .image-column{
		position: sticky;
        bottom: 0;
	}
}

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

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

.v0007b .textImageSection{
	width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    position: relative;
    /* padding: 16px; */
    border-radius: 16px;
    transition: 1s;
    opacity: 1;
/* 	min-height: 100vh; */
	background-color: transparent;
}

.v0007b .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 */

}

.v0007b .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;
}

.v0007b .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) {
	.v0007b .textImageSection{
		width: 100%;
		row-gap: 30px;
		max-height: 100%;
		justify-content: center;
		align-items: center;
	}
}

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

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

.away {
    transform-origin: bottom left;
}