
*{
    font-family: 'Open Sans', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    text-decoration: none;
    outline:none;
    border:none;
    text-transform: capitalize;
    transition: all .2s linear;
    scroll-behavior: smooth;
}

*::selection{
    background:#0438a1;
    color:#fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

section{
    padding:0 7%;
    padding-top: 12rem;
}

.btn{
    font-size: 2rem;
    padding:.7rem 3rem;
    background:orange;
    color:#fff;
    margin-top: 1rem;
    cursor: pointer;
}

.btn:hover{
    background:#333;
}

header{
    position: fixed;
    top:0; left: 0;
    z-index: 1000;
    background:#fff;
    box-shadow: 0 .1rem .3rem rgba(0,0,0,.3);
    width:100%;
}

header .heading{
    font-size: 3rem;
    color:#666;
    padding:1rem;
    text-align: center;
}

header #menu{
    font-size: 3rem;
    color:#666;
    cursor: pointer;
    margin:1rem;
    display: none;
}
.heading span{
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    padding: 10px;
    background-color: #0438a1;
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    background:#0438a1;
    padding:1rem; 
    height: 80px;
    padding: 10px 9%;
}

header .navbar ul li{
    margin:0 1.5rem;
}

header .navbar ul li a{
    font-size: 2rem;
    color:#fff;
}

header .navbar ul li a:hover{
    color:#a3a3a3;
}

.breadcrumb{
    margin-top: 170px;
    height: 60px;
    padding: 0px 12%;
    background-color: #efefef;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.breadcrumb .content a,
.breadcrumb .content span{
    font-size: 14px;
}
.breadcrumb .content a:hover{
    text-decoration: underline;
}


.home{
    margin-top: 60px;
    padding: 10px 12%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .content h1,
.home .content h2{
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    color:#212529;
}
.home .content h1{
    margin-top: 10px;
    margin-bottom: 40px;
}
.home .content h2{
    margin: 20px 0;
}

.home .content p{
    font-size: 16px;
    font-weight: 400;
    color:#000;
    padding:1rem 0;
    line-height: 34px;
}
.footer{
    margin-top: 60px;
    padding: 0px 11%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.footer ul li{
    list-style: none;
}
.footer ul li a{
    color: #fff;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
}
.copyright{
    background-color: #212529;
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.copyright a,
.copyright span{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 4px;
}
.copyright span a:hover{
    text-decoration: underline;
}





@media (max-width:768px){

    html{
        font-size: 55%;
    }

    .home .content{
        text-align: center;
    }
    .home .content h1{
        font-size: 4rem;
    }
}
@media (max-width:500px){

    html{
        font-size: 50%;
    }
    .breadcrumb{
        margin-top: 80px;
    }

    .home .content p{
        text-align: justify;
        line-height: 28px;
    }
    .home{
        padding: 10px 4%;
        margin-top: 20px;
    }
    .footer{
        padding: 0px 4%;
    }
    .footer ul{
        justify-content: space-between;
    }
    .footer ul li{
        margin: 4px;
    }
    .footer ul li a{
        font-size: 14px;
    }
    .copyright a,
    .copyright span{
        font-size: 14px;
    }
    header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:0 1rem;
    }
    .heading span{
        
    color: #fff;
        width: 80px;
        padding: 4px;
        top: 30%;
        right: 15%;
    }
    header #menu{
        display: block;
    }

    header .navbar{
        position: fixed;
        top:6.4rem; right:-120%;
        height:100%;
        width:100%;
        border-top: .2rem solid rgba(0,0,0,.3);
        margin-top: 10px;
        padding: 0px;
    }

    header .navbar ul{
        height:100%;
        width:100%;
        flex-flow: column;
        justify-content: center;
        background:#0438a1;
        padding-bottom: 15rem;
    }

    header .navbar ul li{
        text-align: center;
        width:100%;
        margin:1rem 0;
    }

    header .navbar ul li a{
        font-size: 4rem;
        color:#fff;
        display: block;
    }

    header .navbar ul li a:hover{
        color:#a3a3a3;
    }
    

    .fa-times{
        transform: rotate(180deg);
    }

    header .navbar.nav-toggle{
        right:0;
    }
}