*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.aaa {
    margin-bottom: 5px;
    border: none;
    height: 45px;
    width: 150px;
    color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aaa a {
    text-decoration: none;
    color: #f9f9f9;
    text-align: center;
    width: 100%;
    height: 100%;
    margin-top: 5px;
}
.aaa a:hover{
    color: #f9f9f9;
}


body{
    font-family: sans-serif;
    height: 100vh;
    background-color: #f9f9f9;
}
body p{
    font-size: 13px;
    color: #082B37;
}
/* nav bar styling */
header{
    display: flex;
	width: 100%;
	height: 90px;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	box-shadow: 0px 5px 12px rgba(0 0 0 /.15);
	position: sticky;
	top: 0;
    /* position: relative; */
    position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
    padding: 0 2rem;
}
.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.navbar .links{
    list-style: none;
    padding-top:;
}
.navbar .links a{
    text-decoration: none;
	color: #082B37;
	font-weight: normal;
	position: relative;
	display: inline-block;
    font-size: 16px;
}
.navbar .logo a{
    text-decoration: none;
	color:#082B37;
	/* font-weight: bold; */
	font-family: sans-serif;
	font-size: 24px;
}
.navbar .links{
    display: flex;
    gap: 2rem;
}
.navbar .action_btn{
    background: linear-gradient(to right, #92ffc0, #002661);
}
.navbar .toggle_btn{
    color: #082B37;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.action_btn{
    text-decoration: none;
    align-items: center;
    background: linear-gradient(to right, #92ffc0, #002661);
    color: #f9f9f9;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-size: small;
    border-radius: 5px;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover{
    scale: 1.05;
    color: #f9f9f9;
}
.action_btn:active{
    scale: 0.95;
}
.navbar .fonts{
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    transition: 1.5s;
}
.navbar .fonts :hover{
    color: #5395ac;
}
/* dropdown */
.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 90px;
    height: 0;
    width: 300px;
    background: rgba(0, 38, 97, 0.7);
    /* backdrop-filter: blur(15px);
    border-radius: 10px; */
    overflow: hidden;
    transition: height 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open{
    height: 340px;
}
.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.dropdown_menu li a{
    color: #f9f9f9;
    font-weight: bold;
    text-decoration: none;
}
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #92ffc0, #002661);
    border: none;
}
/* section */
.container .first .row .col-lg-12{
    display: flex;
    justify-content: space-between;  
    gap: 100px;
}
.container .first .second{
    margin-top: 8rem;
}
.first .last{
    margin-top: 10rem;
}
.first .last p i{
    margin-left: 5px;
}
.container .document{
    margin-top: 2rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
}
.container .document video{
    width: 100%;
}
.container .document img{
    width: 400px;
    object-fit: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    
}
/* footer */
.main-footer{
	width: 100%;
	
	bottom: 0;
	padding: 100px 0 30px;
	background: linear-gradient(to right, #56a176, #134729);
	/* border-top-left-radius: 100px;
	border-top-right-radius: 100px; */
	/* border-bottom-right-radius: 100px;
	border-bottom-left-radius: 100px; */
	font-size: 13px;
	/* line-height: 20px; */
}
.auto-container{
	/* width: 85%;
	margin: auto; */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.main-footer ul li{
	list-style: none;
	margin-bottom: 12px;
}
.auto-container h5{
	margin-bottom: 30px;
	margin-left: 30px;
	color: #f9f9f9;
}
.main-footer ul a{
	text-decoration: none;
	color: #f9f9f9;
}
.main-footer form{
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border-bottom: 1px solid #f9f9f9;
	margin-bottom: 50px;
    gap: 15px;
	/* margin-left: 20px; */
}
.main-footer form .fa-regular{
	font-size: 18px;
	color: #f9f9f9;
}
.main-footer form input{
	width: 100%;
	background: transparent;
	color: #f9f9f9;
	border: 0;
	outline: none;
}
.main-footer button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
.main-footer button .fa-sharp{
    font-size: 16px;
	color: #f9f9f9;
}
.main-footer .social-icons{
	display: flex;
	justify-content: space-evenly;
}
.main-footer .social-icons .fa-brands{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #f9f9f9;
	background: transparent;
	cursor: pointer;
}
.main-footer hr{
	width: 90%;
	border: 0;
	border-bottom: 1px solid #fff;
	margin: 20px auto;
}
.main-footer .copyright{
	text-align: center;
	color: #f9f9f9;
}
/* responsive */
@media(max-width:992px) {
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
    .navbar .fonts{
        display: none;
    }
    .container .first .row .col-lg-12{
        display: flex;
        justify-content: space-around;
        align-items: center;
        overflow: hidden;
        width: 100%;
        height: auto;
    }
    .container .first .row .col-lg-12 img{
        /* width: 100%; */
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    /* .container .first .img11{
        width: 800px;
        max-width: 100%;
        display: flex;
        justify-content: center;
        height: 15px;
    } */
}
@media(max-width:576px){
	.container{
		margin-top: -5rem !important;
	}
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
    .container .first .row .col-lg-12{
        display: block;
        justify-content: space-around;
        align-items: center;
        overflow: hidden;
    }
    .container .first .row .col-lg-12 img{
        width: 80%;
    }
    /* newly added */
        
             .container .first .img11{
            margin-top: 8rem;
            width: 100%;
            height: 200px !important;
        }
        .container .first .second{
    margin-top: 2rem;
}
.container .first .last{
    margin-top: 2rem;
}
	.container .document{
    display: block;
    margin-bottom: 0;
}
.container .document video{
    width: 100%;
}
.container .document img{
    width: 100%;
    margin-top: 20px;
}
        .main-footer ul a{
            font-size: 13px !important;
            font-weight: lighter !important;
        }
}
