* {
    margin: 0;
    padding: 0;
    font-size: var(--fs-18);
    font-family: Mukta-Regular;
    box-sizing: border-box;
}

/*Font size classes */
.font-size-24{
    font-size: var(--fs-24);
}
.font-size-36{
    font-size: var(--fs-36);
}

/* Page Structure classes */
.side-part {
    /* width: 15%; */
    position: relative;    
}
.middle-part {
    width: 70%;
}
.ad-box { 
    /* width:210px; */
    width:16%;
    position: fixed;
    padding:5px;
    height: 100vh;
    color:var(--w-yellow);
    font-size:var(--fs-18);
    background-color: var(--w-cyan);
}

/* navbar classes */
nav {
    width: 100%;
    z-index: 9999;
    background-color: white;
}

nav~li {
    margin: 6px auto 0 auto;
}

.nav-link {
    padding: 4px 0;
    position: relative;
    color:var(--w-blue);
    font-weight: bold;
}

.nav-link:hover {
    color: var(--w-green);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: var(--w-green);
    transition: 0.4s ease-out;
}

.nav-link:hover::after {
    left: 0;
    width: 100%;
}

.logo{
    width: 250px;
}

/* Page section classes */
.page-section{
    justify-content: center;
}
.heading{
    font-weight: 700;
    color: var(--w-blue);
    text-transform: uppercase;
    padding-top:20px;
    font-size: var(--fs-36);

}  
.btn {
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--w-blue);
    background-color: var(--w-blue);
  }

.btn:hover {
    color: var(--w-blue);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--w-blue);
    background: white;
  }
.img-bridging-gap img{border: 1px solid var(--w-blue); border-radius: 10px;}
.img-bridging-gap{margin-top:30px;}
.ml-10{margin-left:-10px;}

.text-web {
    color: var(--w-blue);font-weight: bold;
}

.text-krida {
    color: var(--w-green);font-weight: bold;  
}

@media (max-width: 899px) {
    .side-part{
        display:none;
    }
}