/* ===========================
   HERO
=========================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 120px 8% 50px;

}

.hero-content {

    width:100%;

    max-width:700px;

}

.hero h1{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:6px;

    font-size:5rem;

    line-height:1;

    font-weight:800;

    margin:0;

}

.hero-title-secondary{

    color:var(--text);

}

.gradient-text{

    display:block;

    line-height:1.15;

}

.hero h2 {

    margin-top: 20px;

    font-size: 2rem;

    color: var(--accent);

    height: 50px;

}

.hero p {

    margin-top: 25px;

    font-size: 1.1rem;

    color: var(--text-soft);

    max-width: 600px;

    line-height: 1.8;

}

/* BUTTONS */

.hero-buttons {

    margin-top: 40px;

    display: flex;

    gap: 20px;

}

.btn {

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;

    display: inline-block;

}

.primary-btn {

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

}

.secondary-btn {

    border: 1px solid var(--primary);

}

.btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 0 25px var(--primary);

}

/* ===========================
   HERO IMAGE
=========================== */

.hero-graphic {

    width: 40%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-ems-image {

    display: block;

    width: 100%;

    max-width: 620px;

    height: auto;

    object-fit: contain;

}