/**
 * Info Three Column Cards Block - Frontend Styles
 * These styles are loaded on the frontend
 */

.info-three-column-cards-block { padding: 120px 0; position: relative; }
.info-three-column-cards-block .heading { max-width: 530px; margin: 0 auto 80px; width: 100%; text-align: center; }
.info-three-column-cards-block .heading h2 { color: var(--primary-color); margin-bottom: 16px; }
.info-three-column-cards-block .heading p { color: var(--primary-color); margin: 0; }
.info-three-column-cards-block .heading h2 span { color: var(--light-red-color) }
.info-three-column-cards-wrap { display: flex; flex-wrap: wrap; gap: 48px; }
.three-column-cards-list { width: 30.66%; }
.three-column-cards-list .cards-inner { background-color: #fff; height: 100%; border-radius: 16px; }
.three-column-cards-list .cards-inner .card-image img { border-top-left-radius: 16px; border-top-right-radius: 16px; }
.three-column-cards-list .cards-inner .card-content { padding: 32px; }
.three-column-cards-list .cards-inner .card-content h3 { color: var(--primary-color); font-size: 32px; line-height: 32px; margin: 0 0 16px; padding: 0 27px 0 0px; }
.three-column-cards-list .cards-inner .card-content h3 span { color: var(--light-red-color);  }
.three-column-cards-list .cards-inner .card-content p { color: var(--primary-color); font-size: 16px; line-height: 28px; margin: 0; }

/*Responsive Css Start Here*/
@media only screen and (max-width: 1280px) {
    .info-three-column-cards-wrap { gap: 46.5px; }
}
@media only screen and (max-width: 1200px) {
    .info-three-column-cards-block {padding: 80px 0;}
    .info-three-column-cards-block .heading { max-width: 350px; width: 100%; margin: 0 auto 60px; }
    .info-three-column-cards-block .heading h2 {  margin: 0 auto 16px; }
    .three-column-cards-list { width: 30.1%; }
    .three-column-cards-list .cards-inner .card-content h3 { font-size: 28px; line-height: 32px; padding: 0; }
    .three-column-cards-list .cards-inner .card-content h3 span { display: block; }
    .three-column-cards-list .cards-inner .card-content { padding: 24px; }
}
@media only screen and (max-width: 1024px) {
    .info-three-column-cards-block {padding: 60px 0;}
    .three-column-cards-list { width: 30.9%; }
    .info-three-column-cards-wrap { gap: 32px; }
}
@media only screen and (max-width: 991px) {
    .three-column-cards-list { width: 31.1%; }
    .info-three-column-cards-wrap { gap: 24px; }
}
@media only screen and (max-width: 767px) {
    .info-three-column-cards-block {padding: 40px 0; }
    .three-column-cards-list { width: 47.7%; }
    .info-three-column-cards-wrap { justify-content: center; }
    .info-three-column-cards-block .heading { margin: 0 auto 40px; }
    .three-column-cards-list .cards-inner .card-content { padding: 32px; }
    .three-column-cards-list .cards-inner .card-content h3 { font-size: 32px; line-height: 36px; }
    .three-column-cards-list .cards-inner .card-content h3 span { display: block; }
}
@media only screen and (max-width: 575px) {
    .three-column-cards-list { width: 100%; }
}
