/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(180deg,#ffffff 0%,#f7f7f7 100%);

    padding:110px 0;
}


/* BACKGROUND SHAPES */

.why-choose-section::before{

    content:'';

    position:absolute;

    top:-120px;

    right:-120px;

    width:320px;

    height:320px;

    background:
    radial-gradient(
    rgba(229,57,53,.12),
    transparent 70%
    );

    border-radius:50%;
}


.why-choose-section::after{

    content:'';

    position:absolute;

    bottom:-100px;

    left:-100px;

    width:260px;

    height:260px;

    background:
    radial-gradient(
    rgba(18,61,153,.08),
    transparent 70%
    );

    border-radius:50%;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;
}


.section-subtitle{

    display:block;

    color:#E53935;

    font-size:14px;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;
}


.section-title{

    font-size:58px;

    font-weight:900;

    text-transform:uppercase;

    line-height:1.1;

    color:#111111;

    margin-bottom:18px;
}


.section-divider{

    width:70px;

    height:4px;

    background:
    linear-gradient(
    90deg,
    #E53935,
    #ff7a00
    );

    border-radius:50px;

    margin:0 auto 24px;
}


.section-description{

    font-size:18px;

    line-height:1.9;

    color:#666;

    max-width:680px;

    margin:auto;
}


/* =========================
   CARD
========================= */

.why-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 32px;

    height:100%;

    overflow:hidden;

    transition:.35s ease;

    border:1px solid rgba(0,0,0,.04);

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}


/* TOP BORDER */

.why-card::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#e53935;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s ease;
}


/* ACTIVE */

.active-card::before{

    transform:scaleX(1);
}


/* HOVER */

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,0,0,.1);

    border-color:rgba(229,57,53,.12);
}


.why-card:hover::before{

    transform:scaleX(1);
}


/* NUMBER */

.card-number{

    position:absolute;

    top:20px;

    right:28px;

    font-size:64px;

    font-weight:900;

    color:rgba(0,0,0,.05);

    line-height:1;
}


/* ICON */

.why-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    rgba(229,57,53,.12),
    rgba(255,122,0,.12)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#E53935;

    font-size:28px;

    margin-bottom:28px;

    transition:.35s ease;
}


/* ICON HOVER */

.why-card:hover .why-icon{

    background:#e53935;

    color:#fff;

    transform:
    rotate(-8deg)
    scale(1.05);
}


/* TITLE */

.why-card h4{

    font-size:24px;

    font-weight:800;

    color:#111111;

    margin-bottom:16px;

    line-height:1.4;
}


/* TEXT */

.why-card p{

    font-size:16px;

    line-height:1.9;

    color:#666;

    margin:0;
}


/* =========================
   RESPONSIVE
========================= */

/* LARGE DESKTOP */

@media (min-width:1600px){

    .why-choose-section{
        padding:140px 0;
    }

    .section-heading{
        max-width:900px;
    }

    .section-title{
        font-size:70px;
    }

    .section-description{
        font-size:20px;
        max-width:800px;
    }

    .why-card{
        padding:48px 40px;
    }

    .why-card h4{
        font-size:28px;
    }

    .why-icon{
        width:80px;
        height:80px;
        font-size:32px;
    }

    .card-number{
        font-size:80px;
    }

}


/* DESKTOP */

@media (max-width:1400px){

    .section-title{
        font-size:52px;
    }

}


/* LAPTOP */

@media(max-width:1199px){

    .why-choose-section{
        padding:100px 0;
    }

    .section-title{
        font-size:48px;
    }

    .why-card{
        padding:36px 28px;
    }

    .why-card h4{
        font-size:22px;
    }

    .card-number{
        font-size:56px;
    }

}


/* TABLET */

@media(max-width:991px){

    .why-choose-section{
        padding:90px 0;
    }

    .section-heading{
        max-width:100%;
        padding:0 15px;
    }

    .section-subtitle{
        font-size:13px;
        letter-spacing:2px;
    }

    .section-title{
        font-size:40px;
        line-height:1.2;
    }

    .section-description{
        font-size:16px;
    }

    .why-card{
        padding:32px 24px;
    }

    .why-card h4{
        font-size:22px;
    }

    .why-icon{
        width:64px;
        height:64px;
        font-size:24px;
        margin-bottom:22px;
    }

    .card-number{
        font-size:50px;
        right:20px;
    }

}


/* MOBILE */

@media(max-width:767px){

    .why-choose-section{
        padding:70px 0;
    }

    .section-subtitle{
        font-size:12px;
        letter-spacing:1px;
    }

    .section-title{
        font-size:30px;
        line-height:1.25;
    }

    .section-divider{
        width:60px;
    }

    .section-description{
        font-size:15px;
        line-height:1.8;
    }

    .why-card{
        padding:26px 20px;
        border-radius:18px;
    }

    .why-card h4{
        font-size:20px;
        line-height:1.4;
    }

    .why-card p{
        font-size:15px;
        line-height:1.8;
    }

    .why-icon{
        width:58px;
        height:58px;
        font-size:22px;
        margin-bottom:20px;
    }

    .card-number{
        font-size:42px;
        top:15px;
        right:15px;
    }

}


/* SMALL MOBILE */

@media(max-width:575px){

    .why-choose-section{
        padding:60px 0;
    }

    .section-title{
        font-size:26px;
    }

    .section-description{
        font-size:14px;
    }

    .why-card{
        padding:22px 18px;
    }

    .why-card h4{
        font-size:18px;
    }

    .why-card p{
        font-size:14px;
    }

    .why-icon{
        width:52px;
        height:52px;
        font-size:20px;
        border-radius:14px;
    }

    .card-number{
        font-size:36px;
    }

}


/* EXTRA SMALL MOBILE */

@media(max-width:380px){

    .section-title{
        font-size:22px;
    }

    .section-subtitle{
        font-size:11px;
    }

    .why-card{
        padding:20px 15px;
    }

    .why-card h4{
        font-size:17px;
    }

    .why-card p{
        font-size:13px;
    }

    .why-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .card-number{
        font-size:30px;
        right:12px;
    }

}