@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;600;700;800&display=swap');
* {
    margin: 0px;
    padding: 0px;
    font-family: 'Fira Sans Condensed', sans-serif;
}



/* ------------------
	Feature Banner 
---------------------- */
.sub-menu-section-feature {
    background-image: url('../img/Fetaure-banner.png');
    height: 320px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sub-menu-section-feature:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(13 24 32 / 54%) 43%, rgba(13, 24, 32, 0.288879) 95%);
}

.sub-menu-section-feature {
    position: relative;
    color: #fff;
    text-align: center;
}



/* ----------------------
	Feature Heading 
------------------------- */
.full_header {
    text-align: left;
}

.full_header>h2 {
    text-align: center;
    font-family: 'Rubik';
    font-size: 40px;
    font-weight: 600;
    color: #1f2020;
}

.full_header p {
    font-family: 'Fira Sans Condensed', sans-serif;
    color: #939191;
    background-color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 1.8;
    font-weight: 400;
    text-align: center;
    margin: 30px 0px;
}

.inner_features_header {
    margin-bottom: 38px;
}



/* ------------------------
	Feature Card 
---------------------------- */
.card_features {
    padding: 10px;
    background: #fff;
    box-shadow: 1px 2px 6px 2px #00000029;
    border-radius: 10px;
}

.inner_card_features {
    display: flex;
}

.image_card_features.first-feature {
    margin-top: 52px;
}

.image_card_features {
    width: 35%;
}
.image_card_features>img {
    width: 100%;
    border-radius: 10px;
}

.features_content_main {
    width: 65%;
    padding: 20px 20px;
}

.box_title {
    text-align: left;
    margin: auto;
    padding: 0px;
    margin-bottom: 15px;
}

.box_title {
    display: grid;
    align-items: center;
}

.box_title>h4 {
    color: #191a1a;
    font-size: 28px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
    word-spacing: 1px;
    margin-bottom: 10px;
}

.content_ft {
    margin-top: 10px;
}

.content_ft>p {
    margin-bottom: 0px;
    color: #939191;
    background-color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;
    padding-right: 10px;
}

.card_features {
    margin-bottom: 30px;
}



/* --------------------------
	Feature Media Query
---------------------------- */
@media only screen and (max-width: 751px) and (min-width: 300px) {
    .content_ft {
        min-height: auto;
    }
	
    .inner_card_features {
        display: block;
    }
	
    .image_card_features {
        width: 100%;
    }
	
	.image_card_features.first-feature {
		margin-top: 0;
	}
	
    .features_content_main {
        width: 100%;
        padding: 10px 0px;
    }
	
    .full_header>h2 {
		font-size: 28px;
	}
	
    .box_title>h4 {
		font-size: 22px;
		margin-bottom: 0 !important;
		margin: 15px 0px;
	}
	
    .box_title {
        margin-bottom: 0 !important;
    }
}