/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(17, 17, 69, 0.8)), url('../img/about-bread.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.breadcrumb-container
{
	height: 34vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.5rem;
}

.breadcrumb-container .hero-heading
{
	font-size: 3rem;
}
/*------------------ Breadcrumb styling --------------------*/


/*------------------ Future protection styling ----------------*/
.future-protection-imgs
{
	margin: 2rem 0;
}

.future-protection-img
{
	border-radius: 6px;
}
/*------------------ Future protection styling ----------------*/







/*--------------------------------- About CTA -------------------------------------*/
.about-cta
{
    background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(0, 0, 0, 0.9));
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.about-cta .container .row
{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
/*--------------------------------- About CTA -------------------------------------*/

/* Vission mission */
.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px;
    font-size: 20px;
	
}

.vision, .mission {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.vision img, .mission img {
    width: 430px;
    height: 330px;
    border-radius: 10px;
}

.text-content {
    padding: 30px;
	text-align: justify;
}

.text-content h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
	font-size: 30px;
	
}

@media (max-width: 768px) {
    .vision, .mission {
        flex-direction: column;
    }

    .mission {
        flex-direction: column-reverse;
    }

    .vision img, .mission img {
        width: 100%;
        height: auto;
    }
}





/*-----------------------------------------------------------------------------------------*/
/*-------------------------------- Desktop screen styling --------------------------------*/
/*-----------------------------------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 50vh;
	}


	/*-------------- Future styling --------------*/
	.future .container
	{
		text-align: center;
	}

	.future .para-line
	{
		max-width: 1050px;
		margin: 0 auto;
	}

	.future-protection-imgs
	{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}







	/*------------------------------------ About CTA ----------------------------*/
	.about-cta .container .row
	{
		flex-direction: row;
	}

	.cta-content-col
	{
		width: 160%;
		text-align: left;
	}

	.cta-btn-col
	{
		width: 40% !important;
	}
	/*------------------------------------ About CTA ----------------------------*/
}