body{
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

/* Announcement */
.top-bar{
    background:linear-gradient(90deg,#237600,#43cd09);
    color:white;
    font-size:14px;
}

/* Navbar */
.navbar{
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.85) !important;
}
.navbar-brand{
    font-weight:800;
}

.navbar-brand img{
	width: 14%;
}


@media (max-width: 768px) {
    .navbar-brand img {
        width: 80px;
    }
	
	.btn{
		margin: 1% 0;
	}
}

/* Hero */
.hero{
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('../img/hero.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    padding:10% 0;
}

.hero h1{
    font-weight:800;
}

.py-5 h2 span{
	color: #237600;
	font-weight:bold;
}

.py-5 h2{
	position:relative
}

.py-5 h2::after{
	content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10%;
    width: 17%;
    height: 3px;
    background-color: red;
}


/* Buttons */
.btn-success{
    border-radius:50px;
    padding:12px 35px;
    font-weight:600;
}

.btn-warning {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
}

/* Stats */
.stat-number{
    font-size:32px;
    font-weight:800;
    color:#237600;
}


/* Course Cards */
.course-card{
    border:none;
	height: -webkit-fill-available;
    border-radius:20px;
    transition:0.3s;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}
.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
.course-card{
    height: auto;
}
}

.course-card img{
	border-radius:30px;
	margin-bottom:5%;
}

.rankers-card {
	border-radius:30px;
}

.rankers-card img{
	margin-bottom:0;
}

/* CTA */
.cta{
    background:linear-gradient(90deg,#000,#1a1a1a);
    color:white;
    padding:100px 0;
}

/* WhatsApp */
.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px 18px;
    border-radius:50%;
    font-size:22px;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    text-decoration:none;
}


/* Base animation */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    display: block;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {

    /* Main dropdown hover */
    .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    /* Submenu */
    .dropdown-submenu {
        position: relative;
    }

    /* Open LEFT side */
    .dropdown-submenu .dropdown-menu {
        top: 0;
        right: 100%;
        left: auto;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    /* Make dropdown normal block */
    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
		opacity: 1;
        visibility: visible;
    }

    /* Submenu spacing */
    .dropdown-submenu .dropdown-menu {
        padding-left: 15px;
    }

}


/*Home About*/
.about-home p{
	font-size: 18px;
	text-align:justify;
}

.about-home img{
	border-radius:30px;
}

.wrapper{
  position: relative;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
 .wrapper{
   top: 1%;
 }
}

.wrapper a{
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  color: #333;
  border: 2px solid #333;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all .35s;
}

.wrapper a span{
  position: relative;
  z-index: 2;
}

.wrapper a:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #198754;
  transition: all .35s;
}

.wrapper a:hover{
  color: #fff;
}

.wrapper a:hover:after{
  width: 100%;
}

footer{
	padding-top: 6%;
    padding-bottom: 1%;
}

footer li{
	margin:7% 0;
}

footer a:hover {
    color: #28a745 !important;
    transition: 0.3s;
}



.footer-img img{
	width:30%;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.footer-img p{
	text-align: justify;
    margin: 7%;
}