.section4{
	width: 100%;
	height: 100%;
	margin-top: 1%;
	padding-bottom: 50px;
}
#section4-icon{
	width: 10%;
	margin-left: 45%;
	margin-top: 3%;
}
.section4 h1{
	text-align: center;
	font-size: 40px;
	margin-top: 0%;
}

.section4 h2{
	text-align: center;
	font-weight: 200;
	color: #2386c9;
	width: 50%;
	margin: auto;
	margin-top: 0%;
}

.section4-cont{
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	width: 90%;
  	margin-top: 4%;
  	margin-left: 5%;
  	gap:50px;
}

.section4-card{
	width: 100%;
	height: 100%;
}

.section4-card-top{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}


.section4-circle{
	width: 100px;
	height: 100px;
	border-radius: 50%;
background: #41a1e0;
background: linear-gradient(90deg, rgba(65, 161, 224, 1) 0%, rgba(82, 183, 250, 1) 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: white;
font-weight: 800;
font-family: sans-serif;
}


.section4-line{
	width: 100px;
	height: 3px;
background: #41a1e0;
background: linear-gradient(90deg,rgba(65, 161, 224, 1) 0%, rgba(132, 203, 250, 1) 50%, rgba(255, 255, 255, 1) 99%);
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
}

.section4-card h3{
	text-align: center;
	font-size: 30px;
	margin-top: 3%;

}

.section4-card p{
	text-align: center;
	opacity: 0.7;
	margin: auto;
	width: 100%;
	font-size: 17px;
}

#section4-last-circle{
	box-shadow: 0 0 0 0 rgba(35, 134, 201, 1);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 134, 201, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(35, 134, 201, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(35, 134, 201, 0);
    }
}

