* {
    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 {
    height: 100vh;
    background-color: #f9f9f9;
}
body p{
    font-size: 13px;
}
body h3{
    font-size: 24px;
}

/* 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 */

section .grid {
    display: grid;
    width: 100%;
    grid-gap: 6rem;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    align-items: start;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

section .grid-item {
    width: 240px;
    padding: 15px;
    height: 450px;
    background-color: #f9f9f9;
    overflow: hidden;
    box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

section .grid .grid-item .action_btn {
    padding-left: 20px;
}

/* .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;
} */

/* 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;
    }

    section .grid {
        display: grid;
        width: 100%;
        grid-gap: 6rem;
        grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
        align-items: start;
        padding-top: 5rem;
    }

    section .grid-item {
        padding: 15px;
        height: 500px;
        background-color: #f9f9f9;
        overflow: hidden;
        box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: 0.3s;
        border-radius: 5px;
    }

    section .grid .grid-item .action_btn {
        padding-left: 20px;
    }

}

@media(max-width:576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }

    section .grid {
        display: block;
        justify-content: space-around;
        align-items: center;
        overflow: hidden;
        margin-bottom: 5rem;
        width: 100%;
        grid-gap: 2rem;
        margin-top: -3rem;
        padding-left: 40px !important;

        /* padding: 20px; */

    }

    section .grid-item {
        padding: 30px;
        height: 500px;
        font-size: larger;
        background-color: #f9f9f9;
        overflow: hidden;
        box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: 0.3s;
        border-radius: 5px;
        margin-bottom: 5px;
    }

    section .grid .grid-item .action_btn {
        padding-left: 20px;
    }

    .main-footer ul a{
		font-size: 13px !important;
		font-weight: lighter !important;
	}
}