@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}


.top-nav{
    width: 100%;
    background: #425669;
    height: 7vh;
}
.top-nav .menu{

}
.top-nav .menu ul{
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
}
.top-nav .menu ul li{
    display: inline-block;
}
.top-nav .menu ul li a{
    display: inline-block;
    color: #fff;
    padding: 2.4vh 15px;
    font-size: 18px;
    border-left: 1px solid #5E6592;
}
.main{
    display: flex;
}

.left-menu{
    height: 93vh;
    width: 8%;
    background: #425669;
}
.left-menu .logo img{
    width: 100%;
}
.main-content {
    height: 93vh;
    width: 92%;
    padding-left: 30px;
    background: #fafafa;
    overflow: auto;
}
.main-content .main-logo img{
    width: 170px;
    margin-top: 35px;
    margin-bottom: 50px;
}
.main-content .heading{
    padding-left: 100px;
}
.main-content .heading h2{
    font-size: 45px;
    font-weight: 300;
}
.main-content .heading p{
    font-size: 17px;
    font-weight: 500;
    margin-top: 20px;
}
.main-content .heading a{
    color: #00BF66;
    text-decoration: underline;
}
.main-content .make-id-section {
    width: 80%;
    margin-top: 50px;
    padding-left: 100px;
}
.main-content .make-id-section .row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.main-content .make-id-section .card{
    background: #fff;
    border: 1px solid #ccc;
    padding: 40px 30px 30px 30px;
}
.main-content .make-id-section .card h3{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}
.main-content .make-id-section .card p{
    font-size:  18px;
    font-weight: 300;
    margin-bottom: 25px;
}
.main-content .make-id-section .card ul li{
    font-size:  18px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 5px;
}

.main-content .make-id-section .card .btn{
    background: #EC6453;
    color: #fff;
    border: 3px solid transparent;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-top: 30px;
}
.main-content .make-id-section .card .btn:hover{
    background: #e4503d;
}
.main-content .make-id-section .card .btn-border{
    background: transparent;
    border: 3px solid #EC6453;
    color: #EC6453;
}
.main-content .make-id-section .card .btn-border:hover{
    background: #EC6453;
    color: #fff;
}
.main-content .details{
    width: 65%;
}
.main-content .image{
    width: 35%;
    text-align: right;
}
.main-content .image img{
    width: 100%;
    height: 93vh;
}