/*=========================================================
COURSE PAGE
PART - 2A
HERO SECTION
=========================================================*/

.crs-hero-section{
    position:relative;
    overflow:hidden;
    min-height:650px;
    display:flex;
    align-items:center;
    padding:110px 0 90px;
    background:#111827;
}

/*=====================================
Background
=====================================*/

.crs-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.crs-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*=====================================
Overlay
=====================================*/

.crs-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(20,0,0,.92) 0%,
        rgba(110,0,0,.88) 35%,
        rgba(180,0,0,.62) 65%,
        rgba(0,0,0,.18) 100%
    );
    z-index:2;
}

.crs-hero-section .container{
    position:relative;
    z-index:5;
}

/*=====================================
Content
=====================================*/

.crs-hero-content{
    color:#ffffff;
}

/*=====================================
Breadcrumb
=====================================*/

.crs-breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:24px;

    font-size:15px;

}

.crs-breadcrumb a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

}

.crs-breadcrumb a:hover{

    color:#ffe082;

}

.crs-breadcrumb span{

    color:rgba(255,255,255,.85);

}

/*=====================================
Badge
=====================================*/

.crs-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.22);

    backdrop-filter:blur(12px);

    border-radius:50px;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.crs-hero-badge i{

    color:#ffe082;

}

/*=====================================
Heading
=====================================*/

.crs-hero-content h1{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    color:#ffffff;

    margin-bottom:18px;

}

.crs-hero-content h1 span{

    display:block;

    color:#ffe082;

}

/*=====================================
Underline
=====================================*/

.crs-title-line{

    width:90px;

    height:5px;

    background:#ffe082;

    border-radius:50px;

    margin-bottom:28px;

}

/*=====================================
Description
=====================================*/

.crs-hero-content p{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.95);

    margin-bottom:35px;

}

/*=====================================
Feature Pills
=====================================*/

.crs-hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.crs-feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.crs-feature-item:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

}

.crs-feature-item i{

    color:#ffe082;

    font-size:18px;

}

.crs-feature-item span{

    color:#ffffff;

    font-size:15px;

    font-weight:600;

}

/*=====================================
Hero Image
=====================================*/

.crs-hero-image{

    position:relative;

    text-align:center;

}

.crs-hero-image img{

    max-width:100%;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.35));

    animation:crsFloat 4s ease-in-out infinite;

}

/*=====================================
Floating Animation
=====================================*/

@keyframes crsFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*=====================================
Responsive
=====================================*/

@media(max-width:1200px){

.crs-hero-content h1{

font-size:54px;

}

}

@media(max-width:991px){

.crs-hero-section{

padding:90px 0 80px;

min-height:auto;

text-align:center;

}

.crs-hero-content{

margin-bottom:50px;

}

.crs-title-line{

margin:0 auto 28px;

}

.crs-hero-content p{

margin-left:auto;

margin-right:auto;

}

.crs-hero-features{

justify-content:center;

}

}

@media(max-width:768px){

.crs-hero-content h1{

font-size:42px;

}

.crs-hero-content p{

font-size:16px;

}

.crs-feature-item{

width:100%;

justify-content:center;

}

}

@media(max-width:576px){

.crs-hero-section{

padding:70px 0 60px;

}

.crs-breadcrumb{

justify-content:center;

font-size:13px;

}

.crs-hero-badge{

font-size:12px;

padding:8px 18px;

}

.crs-hero-content h1{

font-size:34px;

}

.crs-title-line{

width:70px;

height:4px;

}

.crs-hero-content p{

font-size:15px;

line-height:1.8;

}

.crs-feature-item{

padding:12px 16px;

}

.crs-feature-item span{

font-size:14px;

}

}
/*=========================================================
COURSE PAGE
PART - 2B
CATEGORY FILTER SECTION
=========================================================*/

.crs-category-section{
    padding:70px 0 40px;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/*=====================================
Section Header
=====================================*/

.crs-category-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:40px;

}

.crs-category-title h2{

    font-size:38px;

    font-weight:800;

    color:#111827;

    margin-bottom:12px;

}

.crs-category-title p{

    color:#6b7280;

    font-size:16px;

    margin:0;

    line-height:1.8;

}

/*=====================================
Search Box
=====================================*/

.crs-search-box{

    position:relative;

    width:360px;

}

.crs-search-box input{

    width:100%;

    height:56px;

    border:1px solid #e5e7eb;

    border-radius:50px;

    padding:0 60px 0 22px;

    outline:none;

    background:#ffffff;

    transition:.35s;

    font-size:15px;

}

.crs-search-box input:focus{

    border-color:#d40000;

    box-shadow:0 0 0 4px rgba(212,0,0,.08);

}

.crs-search-box button{

    position:absolute;

    right:6px;

    top:6px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#d40000,#ff3d3d);

    color:#fff;

    cursor:pointer;

    transition:.35s;

}

.crs-search-box button:hover{

    transform:scale(1.05);

}

/*=====================================
Category Wrapper
=====================================*/

.crs-category-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    align-items:center;

}

/*=====================================
Category Button
=====================================*/

.crs-filter-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border:none;

    border-radius:14px;

    background:#ffffff;

    color:#111827;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 8px 18px rgba(0,0,0,.05);

}

.crs-filter-btn i{

    font-size:16px;

    color:#d40000;

    transition:.35s;

}

.crs-filter-btn:hover{

    transform:translateY(-4px);

    border-color:#d40000;

    color:#d40000;

    box-shadow:0 15px 30px rgba(212,0,0,.12);

}

/*=====================================
Active Button
=====================================*/

.crs-filter-btn.active{

    background:linear-gradient(135deg,#d40000,#ff4040);

    color:#ffffff;

    border-color:#d40000;

    box-shadow:0 15px 30px rgba(212,0,0,.25);

}

.crs-filter-btn.active i{

    color:#ffffff;

}

/*=====================================
Mobile Horizontal Scroll
=====================================*/

@media(max-width:991px){

.crs-category-header{

flex-direction:column;

align-items:flex-start;

}

.crs-search-box{

width:100%;

}

}

@media(max-width:768px){

.crs-category-wrapper{

flex-wrap:nowrap;

overflow-x:auto;

padding-bottom:10px;

scrollbar-width:none;

}

.crs-category-wrapper::-webkit-scrollbar{

display:none;

}

.crs-filter-btn{

flex:0 0 auto;

white-space:nowrap;

padding:13px 18px;

font-size:14px;

}

}

@media(max-width:576px){

.crs-category-section{

padding:60px 0 30px;

}

.crs-category-title h2{

font-size:28px;

}

.crs-category-title p{

font-size:15px;

}

.crs-search-box input{

height:52px;

font-size:14px;

}

.crs-search-box button{

width:40px;

height:40px;

top:6px;

right:6px;

}

.crs-filter-btn{

padding:12px 16px;

font-size:13px;

border-radius:12px;

}

}
/*=========================================================
PART - 3B SUPPORT CSS
=========================================================*/

.crs-course-card{

transition:.35s ease;

}

.crs-show{

animation:crsFadeIn .35s forwards;

}

.crs-hide{

animation:crsFadeOut .25s forwards;

}

@keyframes crsFadeIn{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes crsFadeOut{

from{

opacity:1;

transform:translateY(0);

}

to{

opacity:0;

transform:translateY(15px);

}

}
/*=========================================================
COURSE PAGE
PART - 2C
COURSE GRID SECTION
=========================================================*/

.crs-course-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

/*=====================================
Section Heading
=====================================*/

.crs-section-heading{
    max-width:750px;
    margin:0 auto 60px;
}

.crs-section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    background:#ffeaea;
    color:#d40000;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.crs-section-heading h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.crs-section-heading h2 span{
    color:#d40000;
}

.crs-section-heading p{
    color:#6b7280;
    line-height:1.8;
    font-size:16px;
}

/*=====================================
Equal Height Grid
=====================================*/

.crs-course-card{
    display:flex;
}

.crs-course-box{
    width:100%;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #eeeeee;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.4s ease;
    height:100%;
}

/*=====================================
Hover Effect
=====================================*/

.crs-course-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(212,0,0,.12);
}

/*=====================================
Course Image
=====================================*/

.crs-course-image{
    position:relative;
    overflow:hidden;
    height:240px;
}

.crs-course-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.crs-course-box:hover .crs-course-image img{
    transform:scale(1.08);
}

/*=====================================
Category Badge
=====================================*/

.crs-course-category{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(
        135deg,
        #d40000,
        #ff5252
    );
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    z-index:2;
    box-shadow:0 8px 20px rgba(212,0,0,.25);
}

/*=====================================
Content Area
=====================================*/

.crs-course-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/*=====================================
Rating
=====================================*/

.crs-course-rating{
    color:#ffb400;
    font-size:15px;
    margin-bottom:15px;
}

.crs-course-rating span{
    color:#6b7280;
    font-weight:600;
    margin-left:6px;
}

/*=====================================
Title
=====================================*/

.crs-course-content h3{
    font-size:24px;
    font-weight:700;
    color:#111827;
    line-height:1.4;
    margin-bottom:15px;
}

.crs-course-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:22px;
    flex-grow:1;
}

/*=====================================
Meta Info
=====================================*/

.crs-course-meta{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.crs-course-meta li{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 0;
    border-bottom:1px solid #f2f2f2;
    color:#444;
    font-size:14px;
}

.crs-course-meta li:last-child{
    border-bottom:none;
}

.crs-course-meta i{
    color:#d40000;
    width:18px;
}

/*=====================================
Buttons
=====================================*/

.crs-course-footer{
    display:flex;
    gap:12px;
    margin-top:auto;
}

.crs-enroll-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    background:linear-gradient(
        135deg,
        #d40000,
        #ff4040
    );
    color:#fff;
    padding:13px 20px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    transition:.35s;
}

.crs-enroll-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(212,0,0,.25);
}

.crs-details-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    border:1px solid #d40000;
    color:#d40000;
    padding:13px 20px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    transition:.35s;
}

.crs-details-btn:hover{
    background:#d40000;
    color:#fff;
}

/*=====================================
Responsive
=====================================*/

@media(max-width:1200px){

.crs-course-content h3{
font-size:22px;
}

}

@media(max-width:991px){

.crs-course-section{
padding:80px 0;
}

.crs-section-heading{
margin-bottom:50px;
}

.crs-section-heading h2{
font-size:38px;
}

.crs-course-image{
height:220px;
}

}

@media(max-width:768px){

.crs-section-heading h2{
font-size:32px;
}

.crs-course-content{
padding:24px;
}

.crs-course-footer{
flex-direction:column;
}

.crs-enroll-btn,
.crs-details-btn{
width:100%;
}

}

@media(max-width:576px){

.crs-course-section{
padding:70px 0;
}

.crs-section-heading h2{
font-size:28px;
}

.crs-section-heading p{
font-size:15px;
}

.crs-course-image{
height:200px;
}

.crs-course-content{
padding:20px;
}

.crs-course-content h3{
font-size:20px;
}

.crs-course-meta li{
font-size:13px;
}

.crs-section-badge{
font-size:12px;
padding:8px 16px;
}

}
/*=========================================================
COURSE PAGE
PART - 2D
WHY CHOOSE OUR COURSES
=========================================================*/

.crs-why-section{
    position:relative;
    padding:100px 0;
    background:#f8fafc;
    overflow:hidden;
}

/* Decorative Shapes */

.crs-why-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(212,0,0,.04);
    border-radius:50%;
    top:-140px;
    left:-140px;
}

.crs-why-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(212,0,0,.03);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

/*=====================================
Section Heading
=====================================*/

.crs-why-heading{
    max-width:760px;
    margin:0 auto 65px;
    position:relative;
    z-index:2;
}

.crs-why-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    background:#ffecec;
    color:#d40000;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.crs-why-badge i{
    font-size:16px;
}

.crs-why-heading h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
    line-height:1.3;
}

.crs-why-heading h2 span{
    color:#d40000;
}

.crs-why-heading p{
    color:#6b7280;
    font-size:16px;
    line-height:1.9;
    margin:0;
}

/*=====================================
Equal Height Columns
=====================================*/

.crs-why-section .row > div{
    display:flex;
}

/*=====================================
Feature Card
=====================================*/

.crs-why-card{
    position:relative;
    width:100%;
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:24px;
    padding:35px 30px;
    text-align:center;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.crs-why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:#d40000;
    transition:.4s;
}

.crs-why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(212,0,0,.12);
}

.crs-why-card:hover::before{
    height:100%;
}

/*=====================================
Icon
=====================================*/

.crs-why-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#d40000,#ff4b4b);
    color:#ffffff;
    font-size:34px;
    box-shadow:0 15px 30px rgba(212,0,0,.25);
    transition:.35s;
}

.crs-why-card:hover .crs-why-icon{
    transform:rotateY(180deg) scale(1.08);
}

/*=====================================
Title
=====================================*/

.crs-why-card h4{
    font-size:23px;
    font-weight:700;
    color:#111827;
    margin-bottom:16px;
}

/*=====================================
Description
=====================================*/

.crs-why-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/*=====================================
Responsive
=====================================*/

@media (max-width:1200px){

    .crs-why-heading h2{
        font-size:40px;
    }

}

@media (max-width:991px){

    .crs-why-section{
        padding:80px 0;
    }

    .crs-why-heading{
        margin-bottom:50px;
    }

    .crs-why-heading h2{
        font-size:36px;
    }

    .crs-why-card{
        padding:30px 25px;
    }

}

@media (max-width:768px){

    .crs-why-section{
        padding:70px 0;
    }

    .crs-why-heading h2{
        font-size:32px;
    }

    .crs-why-heading p{
        font-size:15px;
    }

    .crs-why-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .crs-why-card h4{
        font-size:20px;
    }

}

@media (max-width:576px){

    .crs-why-section{
        padding:60px 0;
    }

    .crs-why-heading{
        margin-bottom:40px;
    }

    .crs-why-badge{
        font-size:12px;
        padding:8px 18px;
    }

    .crs-why-heading h2{
        font-size:28px;
    }

    .crs-why-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .crs-why-icon{
        width:68px;
        height:68px;
        font-size:26px;
        margin-bottom:20px;
    }

    .crs-why-card h4{
        font-size:18px;
    }

    .crs-why-card p{
        font-size:14px;
    }

}
/*=========================================================
COURSE PAGE
PART - 2E
CAREER COUNSELING CTA
=========================================================*/

.crs-cta-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:#ffffff;
}

/*=====================================
CTA Wrapper
=====================================*/

.crs-cta-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:70px;

    background:linear-gradient(
        135deg,
        #8b0000 0%,
        #c40000 40%,
        #e60000 100%
    );

    box-shadow:0 30px 70px rgba(212,0,0,.18);

    z-index:2;

}

/* Decorative Shapes */

.crs-cta-wrapper::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-100px;

}

.crs-cta-wrapper::after{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-90px;

    left:-80px;

}

/*=====================================
Content
=====================================*/

.crs-cta-content{

    position:relative;

    z-index:5;

    color:#ffffff;

}

/*=====================================
Badge
=====================================*/

.crs-cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(10px);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.crs-cta-badge i{

    color:#FFD54F;

}

/*=====================================
Heading
=====================================*/

.crs-cta-content h2{

    font-size:48px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:22px;

    color:#ffffff;

}

.crs-cta-content h2 span{

    display:block;

    color:#FFD54F;

}

/*=====================================
Description
=====================================*/

.crs-cta-content p{

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:35px;

    max-width:650px;

}

/*=====================================
Features
=====================================*/

.crs-cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:40px;

}

.crs-cta-feature{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    transition:.35s;

}

.crs-cta-feature:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.18);

}

.crs-cta-feature i{

    color:#FFD54F;

    font-size:18px;

}

.crs-cta-feature span{

    color:#ffffff;

    font-size:15px;

    font-weight:600;

}

/*=====================================
Buttons
=====================================*/

.crs-cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.crs-book-btn,
.crs-call-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    padding:16px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    font-size:15px;

    transition:.35s;

}

/* Primary Button */

.crs-book-btn{

    background:#ffffff;

    color:#c40000;

}

.crs-book-btn:hover{

    background:#FFD54F;

    color:#8b0000;

    transform:translateY(-4px);

}

/* Secondary Button */

.crs-call-btn{

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.35);

}

.crs-call-btn:hover{

    background:#ffffff;

    color:#c40000;

    border-color:#ffffff;

    transform:translateY(-4px);

}

/*=====================================
Illustration
=====================================*/

.crs-cta-image{

    position:relative;

    text-align:center;

    z-index:5;

}

.crs-cta-image img{

    max-width:100%;

    animation:crsCtaFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.25));

}

@keyframes crsCtaFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=====================================
Responsive
=====================================*/

@media(max-width:1200px){

.crs-cta-content h2{

font-size:42px;

}

}

@media(max-width:991px){

.crs-cta-wrapper{

padding:55px 40px;

text-align:center;

}

.crs-cta-content{

margin-bottom:45px;

}

.crs-cta-content p{

margin-left:auto;

margin-right:auto;

}

.crs-cta-features{

justify-content:center;

}

.crs-cta-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.crs-cta-section{

padding:80px 0;

}

.crs-cta-wrapper{

padding:45px 30px;

}

.crs-cta-content h2{

font-size:34px;

}

.crs-cta-content p{

font-size:16px;

}

.crs-book-btn,
.crs-call-btn{

width:100%;

}

}

@media(max-width:576px){

.crs-cta-section{

padding:70px 0;

}

.crs-cta-wrapper{

padding:35px 20px;

border-radius:20px;

}

.crs-cta-badge{

font-size:12px;

padding:8px 16px;

}

.crs-cta-content h2{

font-size:28px;

}

.crs-cta-content p{

font-size:15px;

line-height:1.8;

}

.crs-cta-feature{

width:100%;

justify-content:center;

padding:12px 16px;

}

.crs-book-btn,
.crs-call-btn{

min-width:100%;

padding:15px 20px;

font-size:14px;

}

}
