h2{
    font-size: 35px!important;
    margin: 1rem 0;
}

h3{
    font-size: 30px!important;
    margin: 1rem 0;
}

h4{
    font-size: 25px!important;
}

h5{
    font-size: 20px!important;
}

/*---------------------------
HERO
---------------------------*/
#hero{
    position: relative;
}

#hero .container-fluid{
    padding: 0;
}

#hero .inner{
    width: 100%;
    background: #F1F9FF;
    padding: 100px 100px 20px 200px;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}

#hero .wrap{
    position: absolute;
    top: 30px;
    right: 0;
    z-index: -1;
}

#hero h1{
    font-size: 50px;
    color: #0C0D63;
    line-height: 55px;
    font-weight: 600;
}

#hero .click{
    display: flex;
    margin: 30px 0;
}

#hero .btn-main{
    margin-right: 20px;
}

#hero p{
    color: #13123D;
    font-size: 20px;
    font-weight: 300;
    margin-top: 30px;
    max-width: 700px;
}

@media(max-width:1660px){
    #hero .inner{
        padding: 100px 100px 20px 120px
    }
}

@media(max-width:1530px){
    #hero .inner{
        padding: 100px 70px 20px 70px
    }
}

@media(max-width:1200px){
    #hero .inner{
        clip-path: none;
        padding: 50px 50px 20px;
        text-align: center;
    }
    #hero img{
        display: none;
    }
    #hero p{
        max-width: 100%;
    }
    #hero .click{
        justify-content: center;
    }
    
    #banner{
        height: 300px;
        background-size: cover;
        background-position: center; 
    }
}

@media(max-width:500px){
    #hero .inner{
        padding: 50px 15px 20px;
    }
    
    #hero .click{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #hero .btn-main{
        margin: 0 0 20px;
    }
}

/*---------------------------
CONTENT
---------------------------*/

section#content{
    padding: 150px 0;
    color: #0C0D63;
}

section#content .row{
    justify-content: space-between;
}

section#content h2{
    font-size: 48px;
    font-weight: 500!important;
    color: #0C0D63;
}

section#content li a{
    color: #0C0D63;
    transition: .3s all ease;
}

section#content li a:hover{
    color: #FEC402;
    transition: .3s all ease;
}

#content #quote{
    padding: 50px 0;
}

#content #quote h2{
    font-size: 31px;
    color: #FEC402;
    margin: 0 0 20px;
}

#content #quote .content{
    margin: 20px 0;
}

#content #quote.inner{
    background: #0C0D63;
    border-radius: 5px;
    padding: 20px;
    color: #fff;
}

#content #quote .contact a{
    color: #fff;
    text-decoration: none;
    transition: .3s all ease;
}

#content #quote .contact a:hover{
    color: #FEC402;
    text-decoration: none;
    transition: .3s all ease;
}

#content #quote .contact i{
    color: #FEC402;
    margin-right: 10px;
}

#content #quote .phone{
    margin-right: 20px;
    margin-bottom: 10px;
}

#content #quote textarea{
    height: 120px;
}

#content #quote .consent .form-check{
    padding: 0;
}

#content #quote .consent p{
    margin: 0;
}

#content #quote .form-check-input,
#content #quote .form-check-label{
    margin-left: 0px
}

#content #quote .form-check-input{
    margin-right: 15px;
}

#content #quote .btn-main{
    height: 100%;
    margin-top: 20px;
}

@media(max-width:1200px){
	section#content{
		padding: 50px 0;
		color: #0C0D63;
	}
}

@media(max-width:767px){
    #content #quote .input{
        width: 100%;
    }
}

@media(max-width:576px){
    #content #quote .btn-main{
        margin-top: 20px;
    }
}