/*
====================================
Humanalytiz Website Styles
====================================
*/

/* ==========================
   1. Variables
========================== */

:root{

    --primary:#0057D9;
    --secondary:#22C55E;

    --dark:#0B2345;
    --text:#475569;

    --white:#ffffff;
    --light:#F8FAFC;
    --border:#E2E8F0;

    --container:1400px;

    --radius:12px;

    --transition:.3s ease;
}

/* ==========================
   Reset
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

}

img{

    max-width:100%;
    radius:12px;

    display:block;

}

a{

    text-decoration:none;

}

.container{

    max-width:1400px;

    margin:auto;

    padding:0 20px;

}


/*==================================================
04 Hero Section
==================================================*/

.hero{
    position:relative;
    overflow:hidden;
    background:#ffffff;
    padding:70px 0 50px;
}
.hero__wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;

}

.hero__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:rgba(0,87,217,.08);
    border:1px solid rgba(0,87,217,.12);
    border-radius:50px;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:2px;
}

.hero__title{
    font-size:64px;
    line-height:1.1;
    color:var(--dark);
    font-weight:700;
    margin:0 0 10px;
}

.hero__title span{

    color:var(--secondary);

}

.hero__description{

    font-size:18px;

    line-height:1.8;

    color:var(--text);

    max-width:620px;

    margin-bottom:28px;

}

.hero__buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:32px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.35s ease;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{
    color:white;

    background:var(--secondary);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

.hero__trust{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:8px;
}

.hero__trust-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.hero__trust p{

    font-size:15px;

    color:var(--text);

    max-width:420px;

}

.hero__image img{

    width:100%;

    display:block;

}

/*============================
Responsive
============================*/

@media(max-width:992px){

.hero{

padding:80px 0;

}

.hero__wrapper{

grid-template-columns:1fr;

text-align:center;

}

.hero__description{

margin:auto auto 35px;

}

.hero__buttons{

justify-content:center;

}

.hero__trust{

justify-content:center;

}

.hero__image{

margin-top:50px;

}

.hero__title{

font-size:48px;

}

}

@media(max-width:576px){

.hero__title{

font-size:38px;

}

.hero__buttons{

flex-direction:column;

}

.btn{

width:100%;

}

}

/*============================
Section 2
============================*/
/*==================================================
05 Technology Expertise
==================================================*/

.tech-stack{
    padding:100px 0;
    background:#F8FAFC;
}

.section-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    background:rgba(0,87,217,.08);
    border:1px solid rgba(0,87,217,.12);
    border-radius:50px;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    color:var(--dark);
    margin:0 0 20px;
}

.section-heading p{
    font-size:18px;
    line-height:1.8;
    color:var(--text);
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.tech-card{
    background:#FFFFFF;
    border:1px solid var(--border);
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.tech-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
    border-color:rgba(0,87,217,.18);
}

.tech-card:hover::before{
    transform:scaleX(1);
}

.tech-card img{
    width:300px;
    height:70px;
    object-fit:contain;
    margin:0 auto 22px;
    transition:transform .35s ease;
}

.tech-card:hover img{
    transform:scale(1.08);
}

.tech-card h4{
    font-size:20px;
    font-weight:600;
    color:var(--dark);
    margin:0;
}

/*==================================
Tablet
==================================*/

@media (max-width:991px){

    .tech-stack{
        padding:80px 0;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:40px;
    }

    .tech-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}

/*==================================
Mobile
==================================*/

@media (max-width:767px){

    .tech-stack{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .section-heading p{
        font-size:16px;
    }

    .tech-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .tech-card{
        padding:30px 20px;
    }

    .tech-card img{
        width:300px;
        height:60px;
    }

    .tech-card h4{
        font-size:18px;
    }

}


/*============================
Section 3
============================*/

/*==================================================
06 About Humanalytiz
==================================================*/

.about-home{
    padding:100px 0;
    background:#ffffff;
}

.about-home__wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-home__content h2{
    font-size:48px;
    line-height:1.2;
    color:var(--dark);
    margin:18px 0 24px;
}

.about-home__content p{
    font-size:18px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:32px;
}

.about-list{
    list-style:none;
    margin:0;
    padding:0;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
    margin-bottom:18px;
    color:var(--dark);
    font-weight:500;
}

.about-list i{
    color:var(--secondary);
    font-size:18px;
}

.about-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.about-home__image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 60px rgba(15,23,42,.10);
}

/* Responsive */

@media(max-width:991px){

    .about-home{
        padding:80px 0;
    }

    .about-home__wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-home__content h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .about-home{
        padding:70px 0;
    }

    .about-home__content h2{
        font-size:32px;
    }

    .about-home__content p{
        font-size:16px;
    }

    .about-buttons{
        flex-direction:column;
    }

    .about-buttons .btn{
        width:100%;
    }

}


/*============================
Section 4
============================*/

/*==================================================
07 Services
==================================================*/

.services{
    padding:100px 0;
    background:#ffffff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px 30px;
    transition:all .35s ease;
    position:relative;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,87,217,.15);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    background:rgba(0,87,217,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.service-icon i{
    font-size:28px;
    color:var(--primary);
}

.service-card h3{
    font-size:24px;
    color:var(--dark);
    margin-bottom:16px;
}

.service-card p{
    font-size:16px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:28px;
    flex:1;
}

.service-card a{
    color:var(--primary);
    font-weight:600;
    transition:.3s;
}

.service-card a:hover{
    color:var(--secondary);
}

@media(max-width:1200px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .services{
        padding:70px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }
}


/*============================
Section 5
============================*/

/*==================================================
08 Why Humanalytiz
==================================================*/

.why-humanalytiz{
    padding:100px 0;
    background:#F8FAFC;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    transition:all .35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    background:rgba(0,87,217,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.why-card h3{
    font-size:24px;
    color:var(--dark);
    margin-bottom:16px;
}

.why-card p{
    font-size:16px;
    line-height:1.8;
    color:var(--text);
}

@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .why-humanalytiz{
        padding:70px 0;
    }

    .why-card{
        padding:28px;
    }

}

/*============================
Section 6
============================*/

/*==================================================
09 Industries
==================================================*/
/*==================================================
09 Industries
==================================================*/

.industries{
    padding:100px 0;
    background:#ffffff;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    position:relative;
    display:flex;
    flex-direction:column;
    padding:40px 35px;
    background:linear-gradient(135deg,#ffffff 0%,#f8fbff 60%,#f5fff8 100%);
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    transition:all .35s ease;
}

.industry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,87,217,.15);
    box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.industry-card:hover::before{
    transform:scaleX(1);
}

.industry-icon{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    border-radius:18px;
    background:rgba(0,87,217,.08);
    transition:all .35s ease;
}

.industry-card:hover .industry-icon{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    transform:rotate(-5deg) scale(1.05);
}

.industry-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.industry-icon i{
    font-size:34px;
    color:var(--primary);
    transition:.35s;
}

.industry-card:hover .industry-icon i{
    color:#fff;
}

.industry-card h3{
    font-size:24px;
    font-weight:700;
    color:var(--dark);
    margin:0 0 18px;
}

.industry-card p{
    flex:1;
    font-size:16px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:28px;
}

.industry-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-weight:600;
    transition:.35s ease;
}

.industry-card a::after{
    content:"→";
    transition:transform .35s ease;
}

.industry-card:hover a{
    color:var(--secondary);
}

.industry-card:hover a::after{
    transform:translateX(6px);
}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

    .industries{
        padding:80px 0;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

    .industries{
        padding:70px 0;
    }

    .industries-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .industry-card{
        padding:30px 25px;
    }

    .industry-card h3{
        font-size:22px;
    }

    .industry-icon{
        width:70px;
        height:70px;
    }

}

/*============================
Section 7
============================*/

/*==================================================
10 Our Process
==================================================*/

.process{
    padding:100px 0;
    background:#F8FAFC;
}

.process-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.process-line{

    position:absolute;

    top:60px;

    left:8%;

    width:84%;

    height:2px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    z-index:1;

}

.process-step{

    position:relative;

    z-index:2;

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.process-number{

    position:absolute;

    right:20px;

    top:20px;

    color:rgba(0,87,217,.15);

    font-size:42px;

    font-weight:700;

}

.process-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-icon i{

    color:#fff;

    font-size:34px;

}

.process-step h3{

    font-size:24px;

    margin-bottom:16px;

    color:var(--dark);

}

.process-step p{

    line-height:1.8;

    color:var(--text);

}

/* Tablet */

@media(max-width:991px){

.process{

padding:80px 0;

}

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

.process-line{

display:none;

}

}

/* Mobile */

@media(max-width:767px){

.process{

padding:70px 0;

}

.process-wrapper{

grid-template-columns:1fr;

}

}

/*============================
Section 8
============================*/

/*==================================================
11 Impact in Numbers
==================================================*/

.stats{
    padding:100px 0;
    background:#ffffff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:linear-gradient(135deg,#ffffff,#f8fbff);
    border:1px solid var(--border);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.35s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.stat-card h3{
    font-size:56px;
    color:var(--primary);
    margin-bottom:12px;
    line-height:1;
}

.stat-card h4{
    font-size:22px;
    color:var(--dark);
    margin-bottom:16px;
}

.stat-card p{
    font-size:16px;
    line-height:1.8;
    color:var(--text);
}

@media(max-width:991px){

.stats{

padding:80px 0;

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.stats{

padding:70px 0;

}

.stats-grid{

grid-template-columns:1fr;

}

}

/*============================
Section 9
============================*/

/*==================================================
12 Featured Success Story
==================================================*/

.case-study{
    padding:100px 0;
    background:#F8FAFC;
}

.case-study-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.case-study-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.case-category{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(0,87,217,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.case-study-content h3{
    font-size:38px;
    line-height:1.3;
    color:var(--dark);
    margin-bottom:20px;
}

.case-study-content p{
    font-size:17px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:30px;
}

.case-results{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:35px;
}

.case-result{
    padding:16px 18px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    font-weight:600;
    color:var(--dark);
}

@media(max-width:991px){

.case-study{
padding:80px 0;
}

.case-study-wrapper{
grid-template-columns:1fr;
}

}

@media(max-width:767px){

.case-study{
padding:70px 0;
}

.case-study-content h3{
font-size:30px;
}

.case-results{
grid-template-columns:1fr;
}

}

/*============================
Section 10
============================*/

/*==================================================
13 Testimonials
==================================================*/

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:linear-gradient(135deg,#ffffff,#f8fbff);
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    transition:.35s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.testimonial-rating{
    color:#F59E0B;
    font-size:20px;
    margin-bottom:20px;
    letter-spacing:3px;
}

.testimonial-text{
    font-size:17px;
    line-height:1.8;
    color:var(--text);
    margin-bottom:30px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
}

.author-avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.author-info h4{
    margin:0 0 4px;
    color:var(--dark);
    font-size:18px;
}

.author-info span{
    font-size:14px;
    color:var(--text);
}

@media(max-width:991px){

.testimonial-grid{
grid-template-columns:1fr;
}

.testimonials{
padding:80px 0;
}

}

@media(max-width:767px){

.testimonials{
padding:70px 0;
}

}

/*============================
Section 11
============================*/

/*==================================================
13 Latest Insights
==================================================*/

.insights{
    padding:100px 0;
    background:#F8FAFC;
}

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.insight-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
}

.insight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.insight-image{
    overflow:hidden;
}

.insight-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.insight-card:hover .insight-image img{
    transform:scale(1.05);
}

.insight-content{
    padding:30px;
}

.blog-category{
    display:inline-block;
    padding:6px 14px;
    background:rgba(0,87,217,.08);
    color:var(--primary);
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.insight-content h3{
    font-size:24px;
    color:var(--dark);
    margin-bottom:16px;
    line-height:1.4;
}

.insight-content p{
    font-size:16px;
    color:var(--text);
    line-height:1.8;
    margin-bottom:24px;
}

.insight-content a{
    color:var(--primary);
    font-weight:600;
    transition:.3s;
}

.insight-content a:hover{
    color:var(--secondary);
}

.insights-button{
    text-align:center;
    margin-top:60px;
}

@media(max-width:991px){

.insights{
padding:80px 0;
}

.insights-grid{
grid-template-columns:1fr;
}

}

@media(max-width:767px){

.insights{
padding:70px 0;
}

.insight-image img{
height:220px;
}

}


/*============================
Section 12
============================*/


/*==================================================
14 CTA Section
==================================================*/

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,#0057D9 0%,#0B2345 100%);
    position:relative;
    overflow:hidden;
}

.cta::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-150px;
    right:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(34,197,94,.10);
    bottom:-120px;
    left:-80px;
}

.cta-wrapper{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
    text-align:center;
}

.cta .section-tag{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    color:#fff;
}

.cta h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin:20px 0;
}

.cta p{
    font-size:19px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    max-width:720px;
    margin:0 auto 40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta .btn-primary{
    background:#fff;
    color:var(--primary);
}

.cta .btn-primary:hover{
    background:var(--secondary);
    color:#fff;
}

.cta .btn-secondary{
    background:transparent;
    border:2px solid rgba(255,255,255,.30);
    color:#fff;
}

.cta .btn-secondary:hover{
    background:#fff;
    color:var(--primary);
}

@media(max-width:991px){

    .cta{
        padding:80px 0;
    }

    .cta h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .cta{
        padding:70px 0;
    }

    .cta h2{
        font-size:34px;
    }

    .cta p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-buttons .btn{
        width:100%;
    }

}

/*==================================================
About Hero
==================================================*/

.about-hero{
    padding:120px 0 100px;
    background:linear-gradient(180deg,#ffffff 0%,#F8FAFC 100%);
}

.about-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.about-hero-content h1{
    font-size:60px;
    line-height:1.15;
    color:var(--dark);
    margin:20px 0;
}

.about-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:35px;
}

.about-hero-image img{
    width:100%;
    display:block;
}

@media(max-width:991px){

.about-hero{
padding:90px 0;
}

.about-hero-wrapper{
grid-template-columns:1fr;
}

.about-hero-content h1{
font-size:46px;
}

}

@media(max-width:767px){

.about-hero{
padding:70px 0;
}

.about-hero-content h1{
font-size:34px;
}

.about-hero-content p{
font-size:16px;
}

}

