/* ===== Section Two — Boxes / v1 ===== */
/* --- Grid wrapper --- */
.section-two.v1 .card-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
/* --- All cards base --- */
.section-two.v1 .card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.section-two.v1 .head p {
    font-weight: 300;
    padding: 0 8rem;
	margin-bottom: 1.5rem;
}
/* --- Title card (first repeater item — KEY FEATURES cell) --- */
.section-two.v1 .head {
    margin-bottom: 2rem;
}
.section-two.v1 .card:first-child {
	background: none;
	justify-content: center;
}
.section-two.v1 .card:first-child .text {
	max-width: 17rem;
	margin-right: auto;
	margin-left: auto;
}
.section-two.v1 .card {
    padding: 2rem 3.5rem;
	position: relative;
}
/* --- Icon circle --- */
.section-two.v1 .card .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 6rem;
	height: 6rem;
}
.section-one.v4 .glass-card .text h3 {
    color: var(--white);
}
.section-two.v1 .card .icon img {
	width: auto;
	height: auto;
	object-fit: contain;
}
.section-two.v1 .card:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid var(--white);
    border-radius: 1rem;
    transform: skew(-8deg, 0deg);
    top: 0;
    left: 0;
}
/* --- Feature card typography --- */
.section-two.v1 .card:not(:first-child) .text h1,
.section-two.v1 .card:not(:first-child) .text h2,
.section-two.v1 .card:not(:first-child) .text h3,
.section-two.v1 .card:not(:first-child) .text h4,
.section-two.v1 .card:not(:first-child) .text h5 {
	margin-top: 0;
}
.section-two.v1 .card:not(:first-child) .text p,
.section-two.v1 .card:not(:first-child) .text li {
	color: var(--white);
}
/* --- Title card typography --- */
.section-two.v1 .card:first-child .text h1,
.section-two.v1 .card:first-child .text h2,
.section-two.v1 .card:first-child .text h3,
.section-two.v1 .card:first-child .text h4 {
	margin: 0 0 1rem;
}
/*****section-two.v2*****/
/* --- Slider outer: clips overflow so peeking slides stay within page bounds on mobile --- */
.section-two.v2 .section-two-v2-slider-outer {
    overflow: hidden;
}
/* --- Swiper: overflow visible so peek slides show outside the swiper bounds --- */
.section-two.v2 .section-two-v2-swiper {
    overflow: visible;
}
@media (min-width: 768px) {
    .section-two.v2 .section-two-v2-swiper {
        overflow: hidden;
    }
}
/* --- Slide sizing --- */
/* Mobile: 70% → 15% peek on each side (centeredSlides centers the active slide) */
.section-two.v2 .swiper-slide.card-v2 {
    width: 70%;
}
/* Desktop ≥768px: 3 slides per view. gap=16px total between 3 slides = 32px shared by 3 = ~10.67px per slide reduction */
@media (min-width: 768px) {
    .section-two.v2 .swiper-slide.card-v2 {
        width: calc(33.333% - 11px);
    }
}
/* --- Card styles --- */
.section-two.v2 .background-image {
    border-radius: 0.6rem;
    overflow: hidden;
	margin-bottom: 1.5rem;
}
.section-two.v2 .background-image:before {
    padding-top: 88%;
}
.section-two.v2 .card-v2 .text {
    padding: 0 2rem 0;
}
.section-two.v2 .card-v2 .text p:last-child {
    margin: 0;
}
/* --- Navigation arrows: 54px blue squares, centered below slides (Figma design) --- */
.section-two.v2 .swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 1.5rem;
}
.section-two.v2 .swiper-button-prev,
.section-two.v2 .swiper-button-next {
    position: static;
    transform: none;
    margin-top: 0;
    flex-shrink: 0;
    width: 2.7rem;
    height: 2.7rem;
    background-color: var(--main-color);
    border-radius: var(--border-radius);
    color: transparent;
    transition: background-color 0.2s;
}
.section-two.v2 .swiper-button-prev:hover,
.section-two.v2 .swiper-button-next:hover {
    background-color: var(--main-color-hover);
}
.section-two.v2 .swiper-button-prev.swiper-button-disabled,
.section-two.v2 .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
}
.section-two.v2 .swiper-button-prev::after,
.section-two.v2 .swiper-button-next::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
}
.section-two.v2 .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M15 10H5M5 10L10 5M5 10L10 15' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.section-two.v2 .swiper-button-next::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'><path d='M5 10H15M15 10L10 5M15 10L10 15' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.section-two {
    position: relative;
    overflow: hidden;
}

.section-two .head .text-inner p {
    font-weight: 300;
}
.section-two.v2 .button-wrap {
    margin-top: 0;
}
.section-two.v2 .head {
    width: 50rem;
    margin: 0 auto 3rem;
}
.section-two.v2 .head strong {
    /* margin: 2rem 0; */
    /* display: inline-block; */
}
.section-two.v2 .head p {
    font-weight: 300;
    text-align: center;
}
.section-two.v2 .box-list-wrap {
    padding: 0 6rem;
    position: relative;
	overflow: hidden;
}
.section-two.v2 .flex-row {
    margin-left: -0.4rem;
    margin-right: -0.4rem;
}
.section-two.v2 .box-list-wrap .box {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}
.section-two.v2 .background-image {
    /* clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); */
	transform: skew(-5deg, 0deg);
}
.lineder-line-wrap .lineder-line {
    margin-bottom: -4px;
}
.lineder-line-wrap .lineder-line:before {
    position: absolute;
    left: 0;
    content: "";
    border: 1px solid #000;
    width: 100%;
}
.lineder-line-wrap .text{
	padding: 3rem 3rem 0 0rem;
	position: relative;
}
.lineder-line-wrap .text p {
    font-weight: 300;
}
.lineder-line-wrap .text:before {
    position: absolute;
    top: 0;
    left: 0;
    height:2.4rem;
    content: "";
    background-color: var(--main-color);
    border-left: 2px solid;
}
.lineder-line-wrap .text:after {
    position: absolute;
    top: 0;
    left: -4px;
    width: 0.5rem;
    height: 0.5rem;
    content: "";
    background-color: var(--main-color);
    border-radius: 100%;
}
/*****section-two.v3 — image + title + paragraph, 2-up*****/
.section-two.v3 .section-two-v3-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 0rem;
	row-gap: 4rem;
	overflow: hidden;
}
.section-two.v3 .section-two-v3-item {
    display: flex;
    flex-direction: column;
    /* clip-path: polygon(0% 0, 100% 0, 95% 100%, 0% 100%); */
    /* margin-left: -0.9rem; */
    /* margin-right: -0.9rem; */
}
.section-two.v3 .section-two-v3-item:nth-child(even) {
    /* clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%); */
}
.section-two.v3 .section-two-v3-item:nth-child(even) .section-two-v3-image {
    /* border: none; */
}
.section-two.v3 .section-two-v3-image {
	border-radius: var(--border-radius);
	overflow: hidden;
	/* aspect-ratio: 989 / 533; /* design box ratio — crop ("cut") done here, not baked into the image */ */
	/* border: 1px solid var(--black); */
}
.section-two.v3 .section-two-v3-image img,
.section-two.v3 .section-two-v3-image video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* v3 item: slide in from side on scroll (desktop only) */
@media (min-width: 992px) {
	.section-two.v3 .section-two-v3-image img, .section-two.v3 .section-two-v3-image video {
		max-height: 21rem;
	}
	.section-two.v3 .section-two-v3-item {
		opacity: 0;
		transform: translateX(var(--slide-from, -4rem));
		transition: opacity 0.7s ease, transform 0.7s ease;
		transition-delay: var(--anim-delay, 0s);
	}
	.section-two.v3 .section-two-v3-item.is-visible {
		opacity: 1;
		transform: translateX(0);
	}
}
/* Title — Figtree Bold 42px (theme h3 default is smaller, so override) */
.section-two.v3 .section-two-v3-text :is(h1, h2, h3, h4, h5, h6) {
	font-size: 2.1rem;
	line-height: 1.24;
	letter-spacing: -0.021rem;
	margin: 0 0 0.8rem;
}
/* Paragraph — Figtree Light 24px */
.section-two.v3 .section-two-v3-text p {
	font-size: 1.2rem;
	/* font-weight: 300; */
	line-height: 1.67;
	letter-spacing: -0.012rem;
	margin: 0;
}
.section-two-v3-text {
    padding:2rem 10rem 0;
}
.section-two-v3-text h3 {
    padding-right: 2rem;
}
@media (min-width: 992px) {

}
@media (max-width: 991px) {
	.section-two.v3 .section-two-v3-grid {
		grid-template-columns: 1fr;
		row-gap: 3rem;
	}
	.section-two.v3 .section-two-v3-grid {
		overflow: initial;
	}
	.section-two.v3 .section-two-v3-image {
		border-radius: 0;
		overflow: initial;
	}
	.section-two-v3-text {
		padding: 2rem 0 0;
	}
	.section-two-v3-text h3 {
		padding-right: 0rem;
	}
	 .section-two.v7 .section-two-v7-image img, 
	 .section-two.v7 .section-two-v7-image video, 
	 .section-two.v3 .section-two-v3-image img, 
	 .section-two.v3 .section-two-v3-image video {
        height: initial;
        max-width: initial;
        object-fit: cover;
        margin-left: 0;
        max-height: 15rem;
    }
	.section-two.v3 .item-skew.odd {
		
	}
	.section-two.v7 .item-skew.odd .skew-container,
	.section-two.v3 .item-skew.odd .skew-container 
	{
		margin-left: -4rem;
        width: calc(100% + 3rem);
		/* transform: skewX(-8deg); */
	}
	.section-two.v3 .item-skew.odd .unskew-content {
		/* transform: skewX(8deg) scale(1.1); */
	}
	.section-two.v7 .item-skew.even .skew-container,
	.section-two.v3 .item-skew.even .skew-container 
	{
        margin-left: 1rem;
        width: calc(100% + 3rem);
    }
	 
}
@media (max-width: 600px) {
	.section-two.v3 .section-two-v3-text :is(h1, h2, h3, h4, h5, h6) {
		font-size: 1.7rem;
	}
	.section-two.v3 .section-two-v3-text p {
		font-size: 1.1rem;
	}
}
@media (max-width: 1024px) {
	.section-two.v1 .card-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
	.section-two.v1 .card:first-child {
		grid-column: 1 / -1;
		padding: 2rem 0;
	}
}
@media (max-width: 991px) {
	.section-two.v1 .head p {
		padding: 0 0rem;
	}
	.section-two.v1 .card:after {
		display: none;
	}
	.section-two.v1 .card .icon {
		width: 5rem;
		height: 5rem;
		margin: 0 auto 1rem;
	}
	.section-two.v2 .card-v2 .text {
		padding: 1rem 0 2rem;
	}
	.section-two.v2 .head strong {
		margin: 1rem 0;
	}
	.section-two.v2 .box-list-wrap {
		padding: 0 2rem;
	}
	.lineder-line-wrap .lineder-line {
		display: none;
	}
	.lineder-line-wrap .text {
		padding: 1rem 0rem 1rem 0rem;
	}
	.lineder-line-wrap .text:before, .lineder-line-wrap .text:after {
		display: none;
	}
	.lineder-line-wrap .text p {
		margin-bottom: 1.5rem;
	}

	.section-two.v2 .lineder-line-wrap .lineder-line {
		display: none;
	}
	.section-two.v2 .lineder-line-wrap .text {
		width: 100%;
        text-align: left;
        padding-left: 0;
	}
}
@media (max-width: 600px) {
	.section-two.v1 .card-wrap {
		grid-template-columns: 1fr;
	}
	.section-two.v1 .card:first-child {
		grid-column: 1;
	}
	.section-two.v1 .card {
		padding: 0.5rem 1.6rem;
        margin-left: -1.4rem;
        width: calc(100% + 2.8rem);
		text-align: center;
	}
	.section-two.v1 .card:first-child .text {
		text-align: center;
	}
	.section-two.v2 .background-image:before {
		padding-top: 50%;
	}
	.section-two.v2 .content {
		width: calc(100% + 3rem)!important;
		margin-left: -1.5rem;
	}
}
/* --- v2 & v5 staggered box entrance animation (desktop only) --- */
@media (min-width: 992px) {
    .section-two.v2 .flex-row .flex-3 .box > *:not(.lineder-line),
    .section-two.v5 .flex-row > div .box > *:not(.lineder-line) {
        opacity: 0;
        transform: translateY(2rem);
        transition: opacity 0.6s ease, transform 0.6s ease;
        transition-delay: var(--anim-delay, 0s);
    }
    .section-two.v2 .flex-row.is-visible .flex-3 .box > *:not(.lineder-line),
    .section-two.v5 .flex-row.is-visible > div .box > *:not(.lineder-line) {
        opacity: 1;
        transform: translateY(0);
    }
}
/*****section-two.v4 *********/
.section-two.v4 .head {
    margin-bottom: 3rem;
}
.section-two.v4 .icon {
    width: 6rem;
    height: 6rem;
}
.section-two.v4 .text h3 {
    padding-right: 1rem;
}
.section-two.v4 .box-clipbox-shape .flex-4{
    margin-bottom: 1rem;
}
.section-two.v4 .box-clipbox-shape .box:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid var(--main-color);
    border-radius: 1rem;
    transform: skew(-7deg, 0deg);
    top: 0;
    left: 0;
}
.section-two.v4 .box-clipbox-shape .box {
    position: relative;
    height: 100%;
    padding: 2rem 7rem;
    margin: 0 0.5rem 1rem;
}
.section-two.v4 .box-clipbox-shape.text {
    height: 100%;
}
.section-two.v4 .box-clipbox-shape .flex-4 {
    margin-bottom: 1rem;
}
.section-two.v4 .box-clipbox-shape .box .text {
    position: relative;
    z-index: 9;
}
.section-two.v4 .box-clipbox-shape .box .text p {
    margin: 0;
}
.section-two.v4 .box-clipbox-shape #competitive-shape-1:after, .section-two.v4 .box-clipbox-shape #competitive-shape-4:after {
    border-left: 0;
    border-radius: 0 1rem 1rem 0rem;
}
.section-two.v4 .box-clipbox-shape #competitive-shape-3:after, .section-two.v4 .box-clipbox-shape #competitive-shape-6:after {
    border-right: 0;
    border-radius: 1rem 0rem 0rem 1rem;
}
.section-two.v4 .box-clipbox-shape .flex-4:nth-child(1), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(3), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(4), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(6) {
    width: 36%;
}
.section-two.v4 .box-clipbox-shape .flex-4:nth-child(2), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(5) {
    width: 28%;
}
.section-two.v4 .box-clipbox-shape #competitive-shape-1, .section-two.v4 .box-clipbox-shape #competitive-shape-4 {
    padding-left: 13rem;
    padding-right: 4rem;
}
.section-two.v4 .box-clipbox-shape #competitive-shape-3, .section-two.v4 .box-clipbox-shape #competitive-shape-6 {
    padding-left: 5rem;
    padding-right: 12rem;
}
@media (max-width: 1550px) {
	.section-two.v4 .box-clipbox-shape .box {
		padding: 2rem 5rem;
	}
	.section-two.v4 .box-clipbox-shape #competitive-shape-1, 
	.section-two.v4 .box-clipbox-shape #competitive-shape-4 {
		padding-left: 10rem;
		padding-right: 2rem;
	}
	.section-two.v4 .box-clipbox-shape #competitive-shape-3, 
	.section-two.v4 .box-clipbox-shape #competitive-shape-6 {
		padding-left: 4rem;
		padding-right: 10rem;
	}
}
/*****section-two.v5 *********/
.section-two.v5 .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
}
.section-two.v5 .text h4 {
    margin-top: 0;
}
.section-two.v5 .step-text-wrap h2 {
    font-size: 2.1rem;
}
.section-two.v5 .container-full .box-list-wrap {
    padding: 0 6rem;
}
/*****section-two.v6*****/
.section-two.v6 .card-wrap {
    justify-content: center;
    align-items: center;
}
.section-two.v6 .box {
   /*  border: 1px solid var(--main-color); */
    border-radius: 1rem;
    padding: 2rem 7rem;
    margin: 0 0.5rem 1rem;
	position: relative;
}
.section-two.v6 .box:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    border: 1px solid var(--main-color);
    border-radius: 1rem;
    transform: skew(-7deg, 0deg);
    top: 0;
    left: 0;
}
.section-two.v6 .card-wrap .flex-4 {
    position: relative;
}
.section-two.v6 .card-wrap #ibi-1 , .section-two.v6 .card-wrap #ibi-3 {
    position: absolute;
}
.section-two.v6 .card-wrap #ibi-4 {
    position: relative;
    left: -1.8rem;
}
.section-two.v6 .card-wrap #ibi-2 {
    position: relative;
    left: 1.8rem;
}
.section-two.v6 .card-wrap #ibi-1 {
    padding-left: 38%;
    padding-right: 3rem;
}
.section-two.v6 .card-wrap #ibi-3 {
    padding-right: 35%;
    padding-left: 3rem;
}
.section-two.v6 .card-wrap #ibi-1:after {
    border-left: 0;
    border-radius: 0rem 1rem 1rem 0rem;
}
.section-two.v6 .card-wrap #ibi-3:after {
    border-right: 0;
    border-radius: 1rem 0rem 0rem 1rem;
}
.section-two.v6 .box .text, .section-two.v6 .box .icon {
    position: relative;
    z-index: 9;
}
.section-two.v6 .box .icon {
    width: 7rem;
    height: 5rem;
}
/* v6 per-card directional entrance animation */
@keyframes v6-from-left   { from { opacity: 0; transform: translateX(-4rem); } to { opacity: 1; transform: translateX(0); } }
@keyframes v6-from-top    { from { opacity: 0; transform: translateY(-4rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes v6-from-right  { from { opacity: 0; transform: translateX(4rem);  } to { opacity: 1; transform: translateX(0); } }
@keyframes v6-from-bottom { from { opacity: 0; transform: translateY(4rem);  } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 992px) {
    .section-two.v6 .card-wrap.v6-pending .box { opacity: 0; }
    .section-two.v6 .card-wrap.is-visible #ibi-1 { animation: v6-from-left   1s ease-out both; animation-delay: 1s;   }
    .section-two.v6 .card-wrap.is-visible #ibi-2 { animation: v6-from-top    1s ease-out both; animation-delay: 1.2s; }
    .section-two.v6 .card-wrap.is-visible #ibi-3 { animation: v6-from-right  1s ease-out both; animation-delay: 1.4s; }
    .section-two.v6 .card-wrap.is-visible #ibi-4 { animation: v6-from-bottom 1s ease-out both; animation-delay: 1.6s; }
}
/*****section-two.v7 — image + text, alternating rows*****/
.section-two.v7 .section-two-v7-rows {
	display: flex;
	flex-direction: column;
	gap:0rem;
}
.section-two.v7 .head {
    margin-bottom: 3rem;
}
.section-two.v7 .section-two-v7-row {
	display: flex;
	align-items: center;
	gap: clamp(2.5rem, 7vw, 7rem);
}
.section-two.v7 .section-two-v7-text p strong {
    font-weight: 600;
}
.section-two.v7 .section-two-v7-row:nth-child(even) {
	flex-direction: row-reverse;
}
.section-two.v7 .section-two-v7-row:nth-child(even) .section-two-v7-text {
    max-width: 28.8rem;
    padding-right: 2.8rem;
}
.section-two.v7 .section-two-v7-row:nth-child(even) .section-two-v7-image {
    /* clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%); */
	/* border-radius: 3.5rem 0.6rem 0.6rem 0.6rem; */
}
.section-two.v7 .section-two-v7-text p a {
    position: relative;
    height: auto;
    padding: 0.5rem 1.6rem;
    background-color: transparent;
    border: 0.08rem solid #283836;
    color: #283836;
    text-decoration: none;
    border-radius: 0.3rem;
    font-weight: 500;
    font-size: 0.8rem;
    font-family: var(--font-family-button);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 1.5rem 0 0;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: background-color 0.3s 0.2s, border-color 0.2s, color 0.3s;
}
/* hover: border fades out first, then orange fills the chamfered silhouette
   (Figma 201:2443). Editor link has no class to hold the .button-shape SVG,
   so mask the <a> itself — same approach as the CF7 submit. */
.section-two.v7 .section-two-v7-text p a:hover {
    background-color: #F6AA1C;
    border-color: transparent;
    color: #283836;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20256.983%2049'%20preserveAspectRatio%3D'none'%3E%3Cpath%20d%3D'M0%2010C0%204.47715%204.47715%200%2010%200H246.975C253.844%200%20258.667%206.76567%20256.429%2013.2593L246.431%2042.2593C245.04%2046.293%20241.243%2049%20236.977%2049H10C4.47715%2049%200%2044.5228%200%2039V10Z'%20fill%3D'%23000'%2F%3E%3C%2Fsvg%3E") no-repeat center / 100% 100%;
            mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20256.983%2049'%20preserveAspectRatio%3D'none'%3E%3Cpath%20d%3D'M0%2010C0%204.47715%204.47715%200%2010%200H246.975C253.844%200%20258.667%206.76567%20256.429%2013.2593L246.431%2042.2593C245.04%2046.293%20241.243%2049%20236.977%2049H10C4.47715%2049%200%2044.5228%200%2039V10Z'%20fill%3D'%23000'%2F%3E%3C%2Fsvg%3E") no-repeat center / 100% 100%;
}
.section-two.v7 .section-two-v7-text p a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 1rem;
    transform: scaleX(0);
    transition: 0.35s;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'14'%20height%3D'12'%20viewBox%3D'0%200%2014%2012'%3E%3Cpath%20fill%3D'%23283836'%20d%3D'M13.5303%206.05331C13.8232%205.76042%2013.8232%205.28554%2013.5303%204.99265L8.75736%200.21968C8.46447%20-0.0732138%207.98959%20-0.0732138%207.6967%200.21968C7.40381%200.512573%207.40381%200.987446%207.6967%201.28034L11.9393%205.52298L7.6967%209.76562C7.40381%2010.0585%207.40381%2010.5334%207.6967%2010.8263C7.98959%2011.1192%208.46447%2011.1192%208.75736%2010.8263L13.5303%206.05331ZM0%205.52298L-6.55671e-08%206.27298L13%206.27298L13%205.52298L13%204.77298L6.55671e-08%204.77298L0%205.52298Z'%2F%3E%3C%2Fsvg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'14'%20height%3D'12'%20viewBox%3D'0%200%2014%2012'%3E%3Cpath%20fill%3D'%23283836'%20d%3D'M13.5303%206.05331C13.8232%205.76042%2013.8232%205.28554%2013.5303%204.99265L8.75736%200.21968C8.46447%20-0.0732138%207.98959%20-0.0732138%207.6967%200.21968C7.40381%200.512573%207.40381%200.987446%207.6967%201.28034L11.9393%205.52298L7.6967%209.76562C7.40381%2010.0585%207.40381%2010.5334%207.6967%2010.8263C7.98959%2011.1192%208.46447%2011.1192%208.75736%2010.8263L13.5303%206.05331ZM0%205.52298L-6.55671e-08%206.27298L13%206.27298L13%205.52298L13%204.77298L6.55671e-08%204.77298L0%205.52298Z'%2F%3E%3C%2Fsvg%3E");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: 0.75rem;
            mask-size: 0.75rem;
}
.section-two.v7 .section-two-v7-text p a:hover::after {
    width: 1.5rem;
    transform: scaleX(1);
}
.section-two.v7 .section-two-v7-image {
	flex: 0 1 50%;
	border-radius: var(--border-radius);
	overflow: hidden;
	/* aspect-ratio: 989 / 533; */
	/* clip-path: polygon(1% 0, 100% 0, 94% 100%, 0% 100%); */
}
.section-two.v7 .section-two-v7-image img,
.section-two.v7 .section-two-v7-image video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-two.v7 .section-two-v7-text {
	flex: 1 1 0;
	min-width: 0;
	max-width: 25.9rem;
}
/* Paragraph — Figtree Light 24px */
.section-two.v7 .section-two-v7-text p {
	font-weight: 300;
	line-height: 1.67;
	letter-spacing: -0.012rem;
	/* margin: 0; */
}
@media (min-width: 992px) {
	.section-two.v7 .section-two-v7-image img,
	.section-two.v7 .section-two-v7-image video {
		max-height: 30rem;
	}
	.section-two.v4 .ani .flex-3 .box {
		opacity: 0;
		transform: translateY(4rem);
		transition: 0.5s;
	}
	.section-two.v4 .ani.active .flex-3 .box {
		opacity: 1;
		transform: translateY(0);
	}
	.section-two.v4 .ani.active .flex-3:nth-child(1) .box {		transition-delay: 0.5s;	}
	.section-two.v4 .ani.active .flex-3:nth-child(2) .box {		transition-delay: 0.75s;	}
	.section-two.v4 .ani.active .flex-3:nth-child(3) .box {		transition-delay: 1s;	}
	.section-two.v4 .ani.active .flex-3:nth-child(4) .box {		transition-delay: 1.25s;	}
}
@media (max-width: 991px) {
	.section-two.v4 .icon {
		width: 5rem;
		height: 5rem;
		margin: 0 auto;
	}
	.section-two.v4 .box {
		text-align: center;
	}
	.section-our_investors .logos-slider .box {
		padding: 1rem 1rem 0.5rem;
	}
	.section-two.v4 .box-clipbox-shape .box:after {
		display: none;
	}
	.section-our_investors .logos-slider .box .image-wrap {
		width: auto;
		height: auto;
	}
	.section-our_investors .logos-slider .box .text {
		min-height: 3.5rem;
	}
	.section-two.v4 .box-clipbox-shape #competitive-shape-1, .section-two.v4 .box-clipbox-shape #competitive-shape-4 {
		padding-left: 0rem;
		padding-right: 0rem;
	}
	.section-two.v4 .box-clipbox-shape .flex-4:nth-child(2), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(5) {
		width: 100%;
	}
	.section-two.v4 .box-clipbox-shape #competitive-shape-3, .section-two.v4 .box-clipbox-shape #competitive-shape-6 {
		padding-left: 0;
		padding-right: 0;
	}
	.section-two.v4 .box-clipbox-shape .flex-4:nth-child(1), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(3), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(4), .section-two.v4 .box-clipbox-shape .flex-4:nth-child(6) {
		width: 100%;
	}
	.section-two.v4 .box-clipbox-shape .box {
		padding: 0rem 0rem;
	}
	.section-two.v5 .container-full .box-list-wrap {
		padding: 0 0rem;
		text-align: center;
	}
	
	.section-two.v5 .box.lineder-line-wrap {
		display: flex;
		justify-content: center;
	}
	.section-two.v5.mobile-row-display .box.lineder-line-wrap {
		display: block;
	}
	.section-two.v5 .icon {
		margin: initial;
		width: 8rem;
		display: flex;
		justify-content: end;
		height: 6rem;
		padding-right: 2rem;
		align-items: center;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.section-two.v5 .icon img {
		max-height: 100%;
	}
	.section-two.v5 .text h4 {
		margin-top: 0;
		margin-bottom: 0;
	}
	.lineder-line-wrap .text {
        padding: 0;
        width: 8rem;
        text-align: left;
        padding-left: 1rem;
        display: flex;
        justify-content: start;
        align-items: center;
    }
	.lineder-line-wrap .lineder-line {
        display: block;
        width: 3rem;
        height: 6rem;
        position: relative;
        border-left: 2px solid #000;
    }
	.lineder-line-wrap .lineder-line:before {
		position: absolute;
		left: 0;
		content: "";
		border: 1px solid #000;
		width: 3rem;
		top: 50%;
		left: 0;
	}

	.lineder-line-wrap .lineder-line:after {
		display: block;
		content: '';
		top: calc(50% - 2px);
		left: -3px;
		width: 6px;
		height: 6px;
		background: #000;
		position: absolute;
		border-radius: 50%;
	}
	
	.section-two.v5.mobile-row-display .lineder-line-wrap .lineder-line {
		display: none;
	}
	.section-two.v5.mobile-row-display .lineder-line-wrap .text {
        padding: 0;
        width: 100%;
        text-align: center;
        padding-left: 0;
        display: block;
    }
	
	.section-two.v6 .card-wrap #ibi-1, .section-two.v6 .card-wrap #ibi-3, .section-two.v6 .card-wrap #ibi-4 {
		position: unset;
	}
	.section-two.v6 .card-wrap #ibi-1 {
		padding-left: 0;
		padding-right: 0rem;
		text-align: center;
	}
	.section-two.v6 .box .icon {
		margin: 0 auto 1rem;
        height: auto;
	}
	.section-two.v6 .card-wrap #ibi-2 {
		position: unset;
		left: 1.8rem;
		text-align: center;
	}
	.section-two.v6 .box:after {
		display: none;
	}
	.section-two.v6 .box {
		padding: 0rem 0rem;
		margin: 0 0.5rem 2rem;
		text-align: center;
	}
	.section-two.v6 .card-wrap #ibi-3 {
		padding-right: 0;
		padding-left: 0;
	}
	.section-two.v7 .section-two-v7-row,
	.section-two.v7 .section-two-v7-row:nth-child(even) {
		flex-direction: column;
		gap: 2rem;
	}
	.section-two.v7 .section-two-v7-image {
		flex: 0 0 auto;
		width: 100%;
		/* mobile: plain rectangle — no radius, no angle/crop, show full image */
		border-radius: 0;
		aspect-ratio: auto;
		overflow: inherit;
	}
	.section-two.v7 .section-two-v7-image img,
	.section-two.v7 .section-two-v7-image video {
		height: auto;
		object-fit: initial;
	}
	.section-two.v7 .section-two-v7-row:nth-child(even) .section-two-v7-text {
		max-width: 100%;
		padding-right: 0;
	}
	.section-two.v7 .section-two-v7-row:nth-child(even) .section-two-v7-image {
		padding-top: 2rem;
	}
	.section-two.v7 .head {
		margin-bottom: 1.5rem;
	}
	

}
@media (max-width: 600px) {
	.section-two.v7 .section-two-v7-text p {
		font-size: 1.1rem;
	}
}
/* v7: image slides in from the side when the row scrolls into view */
@media (min-width: 992px) {
	.section-two.v7 .section-two-v7-rows {
		overflow-x: clip;
	}
	.section-two.v7 .section-two-v7-row.odd .section-two-v7-image {
		transform: translateX(-5rem);
		transition: transform 0.7s ease-out;
	}
	.section-two.v7 .section-two-v7-row.even .section-two-v7-image {
		transform: translateX(5rem);
		transition: transform 0.7s ease-out;
	}
	.section-two.v7 .section-two-v7-row.active .section-two-v7-image {
		transform: translateX(0);
	}
	
	.section-two.v8 .section-two-v8-image,
	.section-two.v8 .section-two-v8-image img {
		max-height: 29rem;
	}
}
/*****section-two.v8 — image cards with overlaid label box, 2-up*****/
.section-two.v8 .head p {
    width: 36rem;
    margin: 0 auto;
}
.section-two.v8 .section-two-v8-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.section-two.v8 .section-two-v8-card {
	position: relative;
	display: block;
	border-radius: var(--border-radius);
	overflow: hidden;
	/* aspect-ratio: 730 / 740; */
}
.section-two.v8 .section-two-v8-image,
.section-two.v8 .section-two-v8-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* White label box overlaid at the bottom of the card */
.section-two.v8 .section-two-v8-label {
	position: absolute;
	left: 3.56%;
	right: 3.01%;
	bottom: 3.24%;
	background: #fff;
	border-radius: 0.5rem;
	padding: 1rem 2rem;
}
/* Title — Figtree SemiBold 32px */
.section-two.v8 .section-two-v8-label h3 {
	display: block;
	margin: 0;
	color: var(--main-color);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.016rem;
	padding: 0.5rem 0;
}
.section-two.v8 .text.hover-text {
    height: 0;
    opacity: 0;
}
.section-two.v8 .hover-text {
    height: 0;
    opacity: 0;
	transition: 0.5s;
}


.section-two.v8 .hover-text p {
    color: var(--main-color);
}
.section-two.v8 .hover-text .button.transparent {
    color: var(--main-color);
    border-color: var(--main-color);
}
.section-two.v8 .hover-text .button.transparent:hover {
    color: var(--white);
    border-color: transparent;
}
.section-two.v8 .hover-text .button.transparent:hover span.hover-arrow {
    color: #fff;
    line-height: normal;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: end;
}
@media (min-width: 992px) {
	.section-two.v8 .section-two-v8-label:hover .hover-text{
		height: auto;
		opacity: 1;
		height: 15rem;
	}
}
@media (max-width: 991px) {
	.section-two.v8 .head p {
		width: 100%;
	}
	.section-two.v8 .section-two-v8-grid {
		grid-template-columns: 1fr;
	}
	.section-two.v8 .section-two-v8-card {
		aspect-ratio: initial;
	}
	.section-two.v8 .section-two-v8-label {
		padding: 1rem;
	}
	.section-two.v8 .section-two-v8-label .hover-text {
		height: auto;
		opacity: 1;
	}
}

