*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Rubik;
    list-style: none;
    text-decoration: none;
}

.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

section{
    padding: 0 19%;
}

.hero-text h1{
    font-family: Changa;
    line-height: 1;
    color: #fdb90d;
    margin: 0 0 45px;
}

.hero-text p{
    color: #000;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
    padding-right: 100px;
}

.bold{
    font-weight: bold;
}

.hero-img img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 1460px){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}

@media (max-width: 1340px){
    .hero-img img{
        width: 80%;
        height: auto;
    }
    .hero-text h1{
        margin: 0 0 30px;
    }
}

@media (max-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .hero-text{
        padding-top: 115px;
    }
    .hero-img{
        text-align: center;
    }
    .hero-img img{
        width: 560px;
        height: auto;
    }
    .hero{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px){
    .hero-img img{
        width: 100%;
        height: auto;
    }
    .hero-text{
        padding-top: 30px;
    }
}