
html{
    height: 100%;
}
body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    height: 100%;
    padding: 0;
    margin: 0;

}

.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

.text-primary{
    color: #02A8F3;
}
.bg-secondary{
    background-color: #FD9822;
}

.hero{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    align-items: center;
}

.hero .icon{
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.hero .content{
    flex-grow: 1;
    min-height: 460px;
    display: flex;
    gap: 20px;
    max-width: 1280px;
    align-items: center;
    padding: 50px;
    flex-direction: row ;
}

.hero .content .content-img{
    width: 50%;
}
.hero .content .content-context{
    width: 50%;
}

.hero .content .content-context h1{
    font-size: 3rem;
    max-width: 620px;
    
}
.hero .content .content-context small{
    font-size: 20px;
    
}

.hero .footer{
    width: 100%;
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
    color: #626262;
    font-size: 1em;
}
.hero .footer div{
    padding: 0 20px;
}

.btn-secondary{
    text-decoration: none;
    width: fit-content;
    gap: 8px;
    font-size: 20px;
    color: white;
    display: flex;
    padding: 10px 20px;
    background-color: #FD9822;
    outline: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;

}
.btn-secondary:hover{
    background-color: #ff8800;

}

@media only screen and (max-width: 800px) {
    .hero .content{
        flex-direction: column-reverse ;
    }

    .hero .content .content-img{
        width: 100%;
    }
    .hero .content .content-context{
        width: 100%;
    }

} 