.cr-share-wrapper {
    position: relative;
    display: inline-block;}
.cr-share-trigger {
    cursor: pointer;
    display: inline-block;}

.cr-share-display
 {
    max-width: 0px;
    overflow: hidden;
    transition: max-width 0.3s ease;
}

.cr-shared .cr-share-display
{max-width: 600px;}
.cr-shared {
        visibility: visible;
        /* height: auto; */
        display: block;
}
.cr-share-display.cr-left {
    position: absolute;
    top: 0;
    display: flex;
}
.cr-share-display.cr-right {
    position: absolute;
    top: 0;
    display: flex;
}
.cr-share-display.cr-top {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
}
.cr-share-display.cr-bottom {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
}
.cr-share-icon a {
    display: inline-block;
    text-align: center;
}


/* scroll product style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito Sans", sans-serif;
    line-height: 1.6;
}

.stacked-container {
/*     background: #238554; */
    position: relative;
    transition: background-color 0.4s ease-in-out;
    color: white;
}


.stacked-container.bg-green:not(:first-child) {
    background: #238554 !important;
}

.stacked-container.bg-blue {
    background: #121543 !important;
}

.desktop-hide {
    display: none;
}

.images-sticky.mobile-hide.active {
    top: 25vh;
}

.content-wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.images-sticky {
    position: sticky;
    top: 80px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slide {
    position: absolute;
    width: 100%;
/*     max-width: 500px; */
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.image-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.image-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.content-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.content-section.active {
    opacity: 1;
}

.content-section.passed {
    opacity: 0.3;
    transition: opacity 0.6s ease-in-out;
}

.kicker {
    margin-bottom: 10px;
}



.content-section h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1.2em;
    padding: 38px 0px 18px;
    margin: 0;
}

.content-section p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.4em;
    margin: 0;
    padding-bottom: 43px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 33px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    border-radius: 32px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    color: white;
}
.btn-blue {
    border: 1px solid #121543;
}
.btn-blue:hover, .btn-green:hover {
    background-color: #fff;
	border-color: #fff;
}
.btn-green {
    border: 1px solid #238554;
}

.stacked-container .elementor-button-icon {
    width: 10px;
    transition: transform 0.3s ease;
}
.stacked-container .icon-right-anim:hover .icon-clone {
    transform: translateY(-50%) translateX(0px);
}

.stacked-container .icon-right-anim .icon-clone{
	right: 25px;
}
.stacked-container .elementor-button{
	padding:0;
}
/* .btn:hover .btn-icon {
    transform: translateX(4px);
} */

.content-sections .desktop-hide {
    display: none; }

.mobile-hide.elementor-button{
    background-color: unset !important;
}

.desktop-hide.elementor-button
 {
    background-color: unset !important;
}

.kicker img{
	max-width:230px;
}
.stacked-container .btn{
		overflow: hidden !important;
	}

/* Mobile Styles */
@media (max-width: 991px) {

    .content-sections .desktop-hide {
        display: block;
	    text-align: left;}

    .content-sections .mobile-hide {
        display: none; }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    .images-sticky {
        display: none;
    }
    .content-sections {
        padding: 0;
    }
    .content-section {
        min-height: auto;
        padding: 40px 20px 20px;
        opacity: 1 !important;
        position: relative;
		flex-direction: row;
        flex-wrap: wrap;
		justify-content: space-between;
    }
	
	.content-section .content-wrapper-parent, .content-section img{
		width:calc(50% - 20px) !important;
	}
	
	.content-section img.mobile-img{
		height:350px;
		object-fit:contain;
		object-position: right;
	}
	
	.content-section .content-wrapper-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
	
	.desktop-hide.elementor-button{
		width:100% !important;
		text-align:left;
	}
    .content-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    .content-section[data-bg="green"]::before {
        background-color: #238554;
    }
    .content-section[data-bg="blue"]::before {
        background-color: #121543;
    }
    .content-section .mobile-img {
        display: block;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    .content-section h3 {
        font-size: 20px;
        padding: 20px 0 10px;
    }
    .content-section p {
        font-size: 16px;
        line-height: 1.5;
        padding-bottom: 20px;
    }
    .btn {
        font-size: 15px;
        padding: 12px 24px;
    }
	div.stacked-container.bg-blue,
	div.stacked-container.bg-green ,
    div.stacked-container {
        background: transparent !important;
    }
	
.kicker img{
	max-width:130px;
}
	


}

@media (max-width: 640px) {
    .content-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
	.content-section{
		flex-direction:column;
	}
		.content-section .content-wrapper-parent, .content-section img{
		width:100% !important;
	}
	
		.content-section img.mobile-img{
		object-position:left;
	}
}

