body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Montserrat', sans-serif;
}
header {
    color: aliceblue;
    margin: 0px;
    padding: 10px;
    background-color: #005691;
	flex-direction: row;
	justify-content: space-between;
    display: flex;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.logo {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}
.logo a, .main-nav a {
	padding: 5px 15px;
	text-transform: uppercase;
	text-align: center;
	display: block;
}
.main-nav a:hover {
    color: black;
    background-color: #fff;
}
.main-nav {
    display: flex;
    margin: auto 0;
}


#banner{
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    position: absolute;
    top: 0;
}

.promo-title{
    font-stretch: expanded;
    font-size: 40px;
    font-weight: 600;
    margin-top: 20px;
}
.promo{
    text-decoration-color: black;
    font-size: 20px;
    font-weight: 200;
    margin-top: 20px;
}
.content{
    width: 60%;
    margin: 190px auto 0;
    text-align: center;
    color: #fff;
}

.main-area {
    width: 80%;
    margin: 10% auto;
}
.search-area {
    text-align: center;
    padding: 2%;
}

.search-area button {
    padding: 1px;
    border:2px solid #005691;
    margin: 0 auto;
    text-decoration:none;
    color:#005691;
    text-align:center;
    transition: all 0.2s;
    width: 10%;
    height: 45px;
    background-color: white;
    font-size: 1rem;
    border-radius: 2px;
}
.search-area button:hover{
    color:white;
    background-color:#005691;
    cursor: pointer;
}

.search-area input {
    height: 41px;
    width: 55%;
    border: 2px solid #005691;
    padding: 0 2%;
    border-radius: 2px;
    font-size: 1rem;
}

.container {
    max-width: 100%;
    margin: 1% auto;
    overflow: auto;
    padding: 20px 40px;
}

.card {
    text-align: center;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    border:2px solid #005691;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 5% 3% 3% 3%;
    margin: 1%;
    width: 200px;
    /* width: 20%; */
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: fill;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    color: white;
}
.card:hover{
    transform: scale(1.05);
    transition: 0.2s;
}
.course-heading {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
}

.card button {
    margin-top: 15%;
    width: 100%;
    height: 40px;
    padding: 1px;
    border:2px solid #005691;
    text-decoration:none;
    color:#005691;
    text-align:center;
    transition: all 0.2s;
    background-color: white;
    font-size: 1rem;
    border-radius: 3px;
    font-weight: 700;
}
.card a {
    color: inherit;
    display: inline-block;
    width: 100%;
}
.card button:hover {
    color:white;
    background-color:#005691;
    cursor: pointer;
}

/*----------------------social-------------*/
.social-media{
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}  
.social-media p{
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
}
.social-icons a{
    color: #005691;
}

.social-icons i{
    font-size: 2rem;
    padding: 1%;
}

.social-icons a:hover i{
    transform: translateY(-10px);
}

.fa-facebook {
    color: #005691;
}

.fa-twitter {
    color: rgb(40, 175, 233);
}

.fa-whatsapp {
    color: rgb(9, 208, 39);
}

.fa-linkedin {
    color: rgb(18, 98, 142);
}
/*----------footer--------*/



/****** Footer Section ********/

footer {
    text-align: center;
    padding: 20px 10px 10px 10px;
    background-color: #005691;
    text-decoration: none;
    color: aliceblue;
}

footer p {
    text-align: center;
    font-size: 1rem;
}

.footer-links {
    display : flex;
    justify-content: space-around;
    align-items: baseline;
}

.footer-links div a:hover {
	color: #b8cce2;
}

@media(max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
      /* On small screens, we are no longer using row direction but column */
      flex-direction: column;
      
    }

    .footer-links div {
        margin : 0 auto 1% auto;
    }
  }
/********************************/

