2023-04-10 13:25:04 +00:00
|
|
|
.service-card-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-04-27 19:42:51 +00:00
|
|
|
justify-content: space-evenly;
|
2023-04-10 13:25:04 +00:00
|
|
|
align-items: center;
|
|
|
|
|
2023-04-27 19:42:51 +00:00
|
|
|
padding: 10px;
|
2023-04-10 13:25:04 +00:00
|
|
|
background-color: white;
|
|
|
|
border-radius: 20px;
|
|
|
|
box-shadow: -10px 30px 70px rgba(219, 222, 225, 0.4);
|
|
|
|
|
2023-04-27 19:42:51 +00:00
|
|
|
width: clamp(300px, 50vw, 350px);
|
|
|
|
height: 420px;
|
|
|
|
}
|
2023-04-28 12:24:51 +00:00
|
|
|
.service-card-container:nth-child(1) .service-card-icon {
|
|
|
|
background-color: #4ADB61;
|
|
|
|
filter: drop-shadow(0px 15px 30px #4ADB61);
|
|
|
|
}
|
|
|
|
.service-card-container:nth-child(2) .service-card-icon {
|
|
|
|
background-color: #FF2D59;
|
|
|
|
filter: drop-shadow(0px 15px 30px #FF2D59);
|
|
|
|
}
|
|
|
|
.service-card-container:nth-child(3) .service-card-icon {
|
|
|
|
background-color: #2776EA;
|
|
|
|
filter: drop-shadow(0px 15px 30px #2776EA);
|
|
|
|
}
|
|
|
|
.service-card-container:nth-child(4) .service-card-icon {
|
|
|
|
background-color: #FFCC00;
|
|
|
|
filter: drop-shadow(0px 15px 30px #FFCC00);
|
|
|
|
}
|
|
|
|
.service-card-container:nth-child(5) .service-card-icon {
|
|
|
|
background-color: #FF6800;
|
|
|
|
filter: drop-shadow(0px 15px 30px #FF6800);
|
|
|
|
}
|
2023-04-27 19:42:51 +00:00
|
|
|
|
|
|
|
.service-card-icon {
|
|
|
|
width: 75px;
|
|
|
|
height: 75px;
|
|
|
|
border-radius: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
color: white;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
.service-card-title {
|
|
|
|
font-family: Poppins;
|
|
|
|
font-size: 24px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.service-card-description {
|
|
|
|
font-family: Poppins;
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #6B6B6B;
|
|
|
|
line-height: 28px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
.service-card-button {
|
|
|
|
color: #4C40F7;
|
|
|
|
background-color: #F3F4F6;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border-radius: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
2023-04-28 12:24:51 +00:00
|
|
|
.service-card-container:hover {
|
2023-04-27 19:42:51 +00:00
|
|
|
background-color: #4C40F7;
|
2023-04-28 12:24:51 +00:00
|
|
|
transition-duration: 0.5s;
|
2023-04-27 19:42:51 +00:00
|
|
|
}
|
2023-04-28 12:24:51 +00:00
|
|
|
.service-card-container:hover .service-card-icon {
|
2023-04-27 19:42:51 +00:00
|
|
|
background-color: white;
|
2023-04-28 12:24:51 +00:00
|
|
|
filter: none;
|
|
|
|
box-shadow: none;
|
2023-04-27 19:42:51 +00:00
|
|
|
color: #4C40F7;
|
2023-04-28 12:24:51 +00:00
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.service-card-container:hover .service-card-title {
|
|
|
|
color: white;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.service-card-container:hover .service-card-description {
|
|
|
|
color: white;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
}
|
|
|
|
.service-card-container:hover .service-card-button {
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
background-color: #F3F4F6;
|
|
|
|
}
|
2023-04-27 19:42:51 +00:00
|
|
|
|
|
|
|
|
2023-04-28 12:24:51 +00:00
|
|
|
.service-card-icon-selected {
|
|
|
|
background-color: white;
|
|
|
|
color: #4C40F7;
|
|
|
|
filter: drop-shadow(0px 15px 30px #17134a);
|
2023-04-27 19:42:51 +00:00
|
|
|
}
|
|
|
|
.service-card-title-selected {
|
|
|
|
font-family: Poppins;
|
|
|
|
font-size: 24px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.service-card-description-selected {
|
|
|
|
font-family: Poppins;
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: white;
|
|
|
|
line-height: 28px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.service-card-button-selected {
|
|
|
|
color: #4C40F7;
|
|
|
|
background-color: #F3F4F6;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border-radius: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 750px) {
|
|
|
|
.service-card-container {
|
2023-04-28 12:24:51 +00:00
|
|
|
width: clamp(270px, 24vw, 380px);
|
|
|
|
height: clamp(360px, 33vw, 450px);
|
2023-04-27 19:42:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 13:25:04 +00:00
|
|
|
}
|