/***

====================================================================
	Fun Facts Section
====================================================================

***/

.fun-facts-section{
	position:relative;
}

.fun-facts-section .column{
	position:relative;
	margin-bottom: 30px;
}

.fun-facts-section .column .inner{
	position:relative;
}

/* .column.count-box .inner .content .count-outer */

.column.count-box .content{
	position:relative;
	display: flex;
	gap: 30px;
	align-items: center;
}

.column.count-box .inner .content .count-outer{
	position:relative;
	font-size: 30px;
	font-weight: 500;
	font-family: var(--title-font);
	background: var(--white-color);
	background: linear-gradient(270deg, #CB38FF 0%, #682FFF 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	width: 110px;
	height: 110px;
	text-align: center;
	line-height: 110px;
}

.column.count-box .inner .content .count-outer.two{
	font-size: 60px;
	box-shadow:none;
	width: auto;
}

.column.count-box .inner .content .counter-title{
	position:relative;
	font-size: 24px;
	line-height: 32px;
	font-weight:500;
	color: #18181B;
	font-family: var(--title-font);
}


/* ---------------------------- */

.fun-facts-section.two {
    position: relative;
    background-color: #19191A;
	padding: 50px 10px 20px 10px;
    z-index: 2;
}
.fun-facts-section.two .column .counter-title {
    color: var(--white-color);
}
.fun-facts-section.two .count-outer {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.fun-facts-section.two .column .inner {
    position: relative;
}


/* --------- Fun Facts Three ----------- */
.fun-facts-section.three .count-outer {
    font-size: 60px;
    line-height: 48px;
    background-color: inherit;
    box-shadow: none;
    width: 33%;
    height: auto;
}
.fun-facts-section.three {
    padding: 100px 0px 70px 0px;
    border-top: 1px solid #E9E6ED;
    background-color: #FBF7FF;
}


/* ---------- Fun Facts Four ------------- */
.fun-facts-section-four {
    position: relative;
    padding: 50px 0px 20px 0px;
	background: linear-gradient(225deg, #CB38FF 2.55%, #682FFF 112.05%);
}

.column.count-box{
	margin-bottom: 30px;
}

.column.count-box .inner .content .count-outer-two{
	position:relative;
	font-size: 30px;
	font-weight: 500;
	font-family: var(--title-font);
	color: var(--white-color);
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.10);
	width: 110px;
	height: 110px;
	margin: 0 auto;
	text-align: center;
	line-height: 110px;
}

.column.count-box .inner .content .counter-title-two{
	position:relative;
	font-size: 24px;
	line-height: 32px;
	font-weight:500;
	color: rgba(255, 255, 255, 1);
	font-family: var(--title-font);
}
.column.count-box .inner .content .counter-title.two {
    color: var(--white-color);
}

/* ---------------------------------- */
.fun-facts-section-three{
	position:relative;
	padding-top: 150px;
}
.fun-facts-section-three .column .inner{
	position:relative;
}

/* Modern Fun Facts Styles */
.fun-facts-section {
    background: #fff;
}

.fun-facts-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.fun-facts-section .column {
    padding: 0 15px;
    margin-bottom: 30px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.fun-facts-section .inner {
    text-align: center;
    padding: 20px;
}

.fun-facts-section .content {
    position: relative;
}

.fun-facts-section .count-outer {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #B85EE6;
    margin-bottom: 15px;
}

.fun-facts-section .counter-title {
    font-size: 18px;
    line-height: 1.4;
    color: #2d3436;
}

@media (max-width: 991px) {
    .fun-facts-section .column {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .fun-facts-section .count-outer {
        font-size: 42px;
    }

    .fun-facts-section .counter-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .fun-facts-section {
        padding: 40px 0;
    }

    .fun-facts-section .column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .fun-facts-section .count-outer {
        font-size: 36px;
    }

    .fun-facts-section .counter-title {
        font-size: 15px;
    }

    /* Update the content layout for mobile */
    .column.count-box .content {
        flex-direction: column;
        gap: 15px;  /* Reduced gap for mobile but still maintains spacing */
        align-items: center;
        text-align: center;
    }

    .column.count-box .inner .content .count-outer {
        margin-bottom: 10px;  /* Additional bottom margin for the circle */
    }

    .column.count-box .inner .content .counter-title {
        font-size: 20px;  /* Slightly reduced font size for better mobile display */
        line-height: 1.4;
    }
}