 @media only screen and (max-width: 600px) {
			 
.banner-Section {
    min-height: 25vh;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 0;
			 }	 
	
}
					 
		 @media (min-width: 600px) and (max-width: 768px) {
			.banner-Section {
    min-height: 60vh;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 0; 
		 }
		 }
		
	
	  
   .banner-Section::before {
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 0%);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: -1;
}

.title {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #1e3250; 
    margin-bottom: 10px;
    letter-spacing: 1px;
    opacity: 0; 
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards; 
}


.subtitle {
    text-align: center;
    font-size: 1.4em;
    font-weight: 500;
    color: #508cbd; 
    margin-top: 10px;
    letter-spacing: 0.2px;
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeSlideUp 1.5s ease forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}
.subtitle:before {
    content: '';
    display: block;
    margin: 10px auto;
    width: 50px;
    height: 2px;
    background-color: #1e3250; 
    opacity: 0; 
    animation: fadeSlideUp 2s ease forwards; 
}

h3 {
    font-size: 22px!important;
    margin-bottom: 8px!important;
    color: #1e3250;
    padding-bottom: 5px!important;
}


.description {
            display: none;
            margin-top: 20px;
        }

    .readon.learn-more.slider-btn {
    max-width: fit-content!important;
    background: #fff;
    color: #1e3250;
    padding: 3px 12px!important;
    border-radius: 6px 5px 6px 5px !important;
}
  .readon.learn-more {
    max-width: fit-content!important;
    background: #699cc6;
    color: #ffffff;
    padding: 10px 105px !important;
    border-radius: 6px 5px 6px 5px !important;
}

h4 {
    margin-top: 23px;
    text-align: left;
    font-size: 20px;
    line-height: 9px;
    font-weight: 600;
}



.award {
    margin-bottom: 30px;
    margin-top: 16px;
    text-align: center;
}


.award img {
    width: 60px; /* Image size */
    height: 60px; /* Image size */
    margin-bottom: 10px; /* Space between image and text */
}

.image-wrapper {
    background-color: #f0f8ff;
    border-radius: 57%;
    padding: 10px;
    display: inline-block;
}
.award p {
    font-size: 16px; /* Font size for text */
    color: #333; /* Text color */
    font-weight: bold; /* Bold text */
    margin: 0; /* No margin */
}

.award:hover p {
    color: #007BFF; /* Change text color on hover */
}

.award:hover img {
    transform: scale(1.1); /* Scale image on hover */
    transition: all 0.3s ease; /* Smooth transition */
}

.award:hover .image-wrapper {
    background-color: #e0f7fa; /* Change background color on hover */
}


.card {
    background-color: white;
    border: 2px solid #1e3250;
    border-radius: 8px;
    padding: 20px;
    width: 24%;
    text-align: center;
    box-shadow: 2px 1px 7px rgb(30 50 80);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

h6 {
    margin-top: 10px;
    font-size: 17px;
    margin-bottom: 10px;
    color: #6fa9d9;
}

p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.contain-card {
    display: flex;
    justify-content: space-between;
    margin: 25px auto;
    width: 100%;
    max-width: 1200px;
}
.icon:before {
	display:none;
    font-family: 'FontAwesome';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    content: '\f105';
}
@media (max-width: 768px) {
    .card {
        width: 80%;
        margin-bottom: 20px;
    }
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px;
}

.step {
    height: 175px;
    background-color: #1e3250;
    color: white;
    border-radius: 8px;
    padding: 20px;
    width: 275px;
    text-align: center;
    position: relative;
    margin: 10px;
}

.circle {
    width: 30px;
    height: 30px;
    background-color: #71b5ed;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 10px auto;
}

.content {
    color: white;
}

a {
    color: yellow;
    text-decoration: underline;
}

.arrow {
    font-size: 40px;
    margin: 10px;
    color: #004f9f;
}

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .arrow {
        font-size: 30px;
        margin-left: 20px;
    }

    .step {
        width: 100%;
        margin: 10px 0;
    }
}
.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content {
    text-align: center;
/*     margin-bottom: 20px; */
}

.step-content h5 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #004f9f;
}

.step-content p {
    font-size: 16px;
    color: #333;
}

.down-arrow {
    font-size: 30px;
    color: #004f9f;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .step-content {
        text-align: center;
    }
}
