#banner-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.row {
    display: flex;
    width: 100%;
}

.row-buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bg-mesh-green {
    background-image: 
	radial-gradient(at 0% 100% ,#EAEDE8 0px,transparent 50%),
	radial-gradient(at 80% 16%,#e5f6e1 0px,transparent 50%),
	radial-gradient(at 20% 16%,hsl(42 74% 85% / 60%) 0px,transparent 50%),
	radial-gradient(at 72% 80%,hsl(41,74%,92%) 0px,transparent 50%)
}

.column {
    flex: 1; /* Makes both columns split the row equally */
}

.column.left {
    padding: 30px; /* Adjust as needed */
    padding-bottom: 20px;
    display: flex;
    align-items: center; /* Vertically centers content in the column */
    justify-content: center; /* Horizontally centers content (if needed) */
    flex-direction: column;
    padding-left: 4rem;
}

.column.right {
    display: flex;
    align-items: stretch;
    padding-right: 4rem;
}

#promo-img-cont {
    width: 100%; /* Makes image take full width of the column */
    height: auto; /* Keeps image aspect ratio */
    max-height: 100%; /* Limits image height to the column height */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
}

#promo-img {
    object-fit: cover;
    width: 300px;
    z-index: 2;
}

#ad-banner-title {
    text-align: center;
    font-family: var(--font-1);
    color: white;
    font-weight: bold;
    font-size: 51px;
    margin-bottom: 0px;
    line-height: 55px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

#ad-banner-subtext {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

#ad-banner-button {
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
}

.snow-decoration {
    position: absolute;
    z-index: 1; 
    height: 200px;
}

.snow-decoration.left {
    left: 0px;
}

.snow-decoration.right {
    right: 0px;
    top: 10px;
}

.ellipse-green {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(85, 103, 78, 1),
		rgba(85, 103, 78, 0)
	);
	border-radius: 50%;
	transform: rotate(15deg);
	filter: blur(7px);
}

.ellipse-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(177, 76, 50, 1),
		rgba(177, 76, 50, 0)
	);
	border-radius: 50%;
	filter: blur(7px);
}

.halo {
    position: absolute;
    background-image: radial-gradient(at 50% 50% ,var(--col-green-3) 0px,transparent 50%);
    filter: blur(7px);
}



.row-banner {
    position: relative;
}



/* Media query for screens smaller than 768px */
@media (max-width: 797px) {
    .row-banner {
        flex-direction: column; 
    }

    .column {
        width: 100%; /* Full width for each column */
    }

    .column.right {
        padding-right: 0px;
    }

    .column.left {
        padding-left: 30px;
    }

}

@media(max-width: 576px){
    #banner-cont{
        border-radius: 0px;
    }
}

#dynamic-text {
    padding: 30px;
    z-index: 1;
    position: relative;
}

#dynamic-text svg {
    border-radius: 10px;
}

.center-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#app-store-button, #play-store-button {
    z-index: 1;
    padding-bottom: 20px;
}