:root{
    --white-color: #f6f6f6;
    --shade-of-black: rgb(26, 26, 26);
    --deep-dark: #121212;
    --orange: #ff9933;
    --red: #e5062f;
    /* fonts */
    --poppins: "Poppins", sans-serif;
    --roboto: "Roboto", sans-serif;
}

/* About hero */

.about_hero {
    min-height: 100vh;
    background-image: url("../images/about_1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.about_hero::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--shade-of-black);
    opacity: 0.2;
    z-index: 1;
}

.about-hero-inner{
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 7rem;  /* move hero down*/
}

.about_hero h1,
.about_hero h2{
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: white;
    width: 100%;
    max-width: 25rem;
    text-align: center;
    font-family: var(--poppins);
    text-transform: capitalize;
}

.about-hero-inner button{
    background-color: var(--red);
    color: var(--white-color);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    text-transform: capitalize;
    border: 1px solid rgba(246, 246, 246, 0.1);
    font-weight: bold;
    cursor: pointer;
}

/* about-content */
.about-content > div{
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content > div > div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-content h2,p{
    color: var(--white-color);
}

.about-content h2{
    font-size: 1.3rem;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.about-content p{
    font-size: 0.95rem;
    text-align: justify;
    color: rgb(216, 216, 216);
}

/* What we do */
.what-we-do {
    padding: 0 1rem;
}

.what-we-do > div {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-color: var(--deep-dark);
    box-shadow: 0 3px 30px 0.05px rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
}

.what-we-do h2,h3{
    color: var(--white-color);
    margin: 0;
}

.what-we-do li{
    list-style-position: inside;
    font-family: var(--roboto);
}

.what-we-do-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.what-we-do p,
.what-we-do li{
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: var(--roboto);
}

.platform {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* our vision */
.our-vision{
    background-color: var(--white-color);
    padding: 4rem 0;
}

.our-vision h2{
    font-size: 1.3rem;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.our-vision p{
    color: var(--shade-of-black);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: justify;
}

/* How we are different */
.how-we-are-different {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-we-are-different h2{
    color: var(--white-color);
    margin: 0;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.how-we-are-different .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-we-are-different p,
.how-we-are-different li{
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: var(--roboto);
}

.how-we-are-different li {
    list-style-position: inside;
}

@media (min-width: 430px){
    .about_hero h1,
    .about_hero h2{
        font-size: 1.7rem;
        line-height: 3rem;
    }
}

@media (min-width: 600px){
    .about-content h2,
    .our-vision h2{
        font-size: 1.5rem;   
    }
}

@media (min-width: 768px){
    .about_hero h1{
        font-size: 2rem;
        max-width: 30rem;
    }

    .about-content h2,
    .our-vision h2{
        font-size: 2rem;   
    }

    .about-content p,
    .our-vision p{
        font-size: 1.1rem;
    }
}

@media (min-width: 960px){
    .about_hero h1,
    .about_hero h2{
        font-size: 3.5rem;
        max-width: 90%;
        line-height: 4.5rem;
    }

    .about-hero-inner button{
        font-size: 1.3rem;
    }

    .what-we-do > div {
        padding: 2rem;
    }

    .what-we-do h2{
        font-size: 2rem;
    }

    .what-we-do p,
    .what-we-do li{
        font-size: 1.1rem;
    }

    .how-we-are-different h2{
        font-size: 2rem;
    }

    .how-we-are-different p,
    .how-we-are-different li{
        font-size: 1.1rem;
    }
}

