body{
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
}

h1{
    font-size: 50px;
    margin-bottom: 14px;
}
.subtitle{
    font-size: 33px;
    margin-top: 0;
}
.d-flex{
    display: flex;
}

.justify-content-center{
    justify-content: center;
}

.justify-content-between{
    justify-content: space-between;
}

.align-items-center{
    align-items: center;
}

.navbar{
    position: absolute;
    top: -2px;
    width: 100%;
    left: 0;
}
.hero{
    text-align: center;
    background: url(assets/bg.jpg) no-repeat center;
    background-size: cover;
}

.text{
    padding-top: 130px;
    color: white;
    padding-bottom: 40px;
}

.icons{
    padding: 20px 40px;
    border-bottom: 3px solid #9F348F; 
}

.icons img{
    max-width: 180px;
    width: 100%;
}

.footer{
    background-color: 
    #F5AF0A;
    padding: 40px 0;
}

.text-container{
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.text-container img{
    max-width: 100%;
}

.text-container .subtitle{
    font-size: 36px;
    text-align: center;
}
h2{
    margin-top: 88px;
    text-align: center;
    font-size: 55px;
    color: #9F348F;
}

@media screen and (max-width: 1400px) {
    .icons{
        overflow: auto;
    }
}
@media screen and (max-width: 768px) {
    .icons img{
        width: 80px;
    }
    .billa{
        margin-top: -15px;
    }
    .icons{
        padding: 20px 0;
    }
    h2, h1{
        font-size: 30px;
    }
    .subtitle, .text-container .subtitle{
        font-size: 25px;
        
    }
    .text-container p{
        margin: 10px 20px;
    }
    .logo{
        width: 110px;
    }
}

