*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    
}

.buka{
    overflow: visible;
}

.hidden{
    overflow: hidden;
}

.header{
    
    width: 100vw;
    height: 90px;
    background-color: #A71C20;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 99;
}

.logo{
    display: flex;
    align-items: center;
    margin-left: 30px;
    width: 150px;
    height: 70px;
}

.logo img{
    width: 100%;
    height: auto;
}

.bluebar{
    background-color: #102B4E;
    height: 100%;
    width: 80%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.navigation{
    position: absolute;
    right: 0;
}

ul{
    margin-right: 100px;
    display: flex;
    align-items: center;
    list-style: none;
 
}


li{
    margin: 30px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 300;
    
}

ul li a{
    text-decoration: none;
    color: #fff;
    
}

ul li a:hover{
   
    color: rgb(255, 115, 0);
    
}

/* HEROOOOOOOOOO */

.hero{
    z-index: -100;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: turquoise;
    overflow: hidden;
}

.hero img{
    width: 100%;
    transform: translateY(-200px);
}

.hero_quotes{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A71C20;
    font-size: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    background-color: rgba(255, 255, 255, .6);
}

.hero_quotes h1{
    text-align: center;
    font-weight: 300;
}

.hero_quotes h1 span{
    font-weight: 700;
}



/* WE PROVIDEEEE */
.we_provide{
    width: 100%;
    height: 250px;
    /* background-color: rgb(178, 221, 24); */
    display: grid;
    grid-template-columns: 1.7fr 1fr;
   
    
}

.we{
    padding: 20px;
    background-color:#102B4E;
    height: 100%;
}
.we h1{
    font-size: 70px;
    text-align: center;
    color: white;
    line-height: 210px;
}

.provide_items{
    font-weight: 300;
    line-height: 30px;
    display: grid;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px 70px 20px 0px;
    background-color:#A71C20;
    height: 100%;
}


/* PROGRAM */
.program{
    margin-top: 30px;
    /* padding-left: 20px; */
    /* background-color: darkorange; */
    /* display: grid;
    grid-template-columns: 1fr 1.7fr; */
    display: flex;
    justify-content:right
}

.program_image{
    /* background-color: violet; */
    
    width: 300px;
    height: 300px;
    overflow: hidden;
    
}


.program_image img{
    width: 100%;
    height: auto;
}

.program_detail{
    width: 60%;
    /* background-color: tomato; */
    margin-left: 40px;
}
.program_detail h1{
    color: #A71C20;
    font-weight: 400;
}
.program_detail h2{
    color:#102B4E;
    font-size: 20px;
    font-weight: 400;
}

.program_detail p{
    margin-top: 20px;
    padding-right: 50px;
    font-size: 14px;
    line-height: 30px;
}
.red_box{
    margin-top: 20px;
    background-color: #A71C20;
    padding: 10px;
    color: #fff;
    
    border-radius: 5px;
    width: 300px;
}

.red_box h3{
    font-size: 13px;
}
.red_box p{
    font-weight: 300;
}

.red_box li{
    line-height: 5px;
    font-size: 12px;
}

/* BLOCK IMAGESSSSSSSSSSS */

.block_image{
    margin: auto;
    width: 80%;
    margin-top: 30px;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    /* justify-content:space-between; */
}

.block_image_left, .block_image_right{
    width:500px;
    height: auto;
    overflow: hidden;
}

.block_image_left{
    margin-right: 15px;
}

.block_image_left img, .block_image_right img{
    width: 100%;
    height: auto;
}

.quote{
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    
    width: 90%;
    /* background-color: blue; */
}

.quote h1{
    text-align: center;
    font-size: 2rem;
    color: #102B4E;
}


.end_logo{
    width: 300px;
    height: auto;
    /* background-color: blueviolet; */
    margin: auto;
    margin-bottom: 30px;
    display: grid;
    align-items: center;
    justify-content: center;
}

.button{
    margin: auto;
    
    width: 200px;
    
    border-radius: 20px;
    
    background-color: #102B4E;
    
}

.button a{
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 10px 15px 10px 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}



/* mobile */

@media only screen and (max-width: 1200px) {

    .hero{
        display: flex;
        justify-content: center;
    }
    .hero img{
        height: 1200px;
        width: auto;
        
    }


}

@media only screen and (max-width: 820px){
    .hero{
        height: 700px;
    }
    .hero img{
        height: 800px;
        width: auto;
        transform: translateY(-80px);
    }
}

@media only screen and (max-width: 750px){
    .hero{
        height: 100vh;
    }
    .hero_quotes h1{
        font-size: 40px;
    }
}

@media only screen and (max-width: 700px){
    
    .hero img{
        height: 700px;
        width: auto;
        transform: translateY(-50px);
    }

    .hero_quotes h1{
        font-size: 28px;
    }

    .we{
        height: 50px;
        padding: 0;
    }

    .we h1{
        letter-spacing: 5px;
        font-size: 25px;
        text-align: center;
        color: white;
        line-height: 50px;
    }

    .provide_items{
        height:200px ;
        padding: 15px;
        
    }
    .we_provide{
        
        display: block
    }

    .end_logo{
        width: 200px;
    }

    .end_logo img{
        width: 100%;
        height: auto;
    }
    
}

@media only screen and (max-width: 600px){
    .program{
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }
    .quote h1{
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 530px){

    .program_image{
        width: 300px;
    }

    .program_detail{
        width: 300px;
        margin-left: 0;
    }

    .program_detail p{
        padding-right: 0;
    }
    .hero img{
        height: 600px;
        width: auto;
        transform: translateY(-50px);
    }
    .hero{
        height: 400px;
    }

    

    
    
}

@media only screen and (max-width: 430px){
    

    .hero img{
        height: 400px;
        width: auto;
        transform: translateY(0);
    }

    .hero_quotes h1{
        font-size: 25px;
    }
}

@media only screen and (max-width: 920px) {

    .bluebar{
        width: 70%;
    }

    ul{
        margin-right: 30px;
    }


}