*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Montserrat Alternates', sans-serif; */
    font-family: 'Poppins', sans-serif;
}
.wrapper{
    color: #fff;
}
::selection{
    background: #4146722a;
}
.header{
    width: 100%;
    height: 15vh;
    background: #C33764;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1D2671, #C33764);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 23px;
    font-weight: 600;
}
.mobile-menu{
    display: none !important;
}
.header > .logo{
    width: 20%;
    text-align: center;
}
.header > .header-links{
    display: flex;
    justify-content: space-around;
    width: 50%;
    text-align: center;
}
.header > .header-links a, .btn-learn, .btn-learn:hover, .logo-link, .logo-link:hover{
    font-family: 'Montserrat Alternates', sans-serif;
    text-decoration: none;
    color: #fff;
}
.btn-learn{
    background: #C33764;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1D2671, #C33764);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: 0;
    outline: 0;
    box-shadow: none !important;
}
.header-links a:hover{
    border: 0;
    outline: 0;
    box-shadow: none;
    text-decoration: underline !important;
}
.quotes{
    word-break: break-word !important;
}
.typed-cursor{
    animation: blink 600ms linear infinite;
}
@keyframes blink {
    50% {
      opacity: 0;
    }
  }
@media only screen and (max-width: 768px) {
    .header{
        display: none;
    }
    .mobile-menu{
        display: block !important;
        width: 100%;
        height: 15vh;
        background: #C33764;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #1D2671, #C33764);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        position: sticky;
        top: 0;
        z-index: 1;
        font-size: 23px;
        line-height: 15vh;
        font-weight: 600;
    }
    .mobile-menu .toggle{
        position: absolute;
        top: 2.5vh;
        right: 0;
        z-index: 2;
        width: 70px;
        height: 70px;
        opacity: 0;
        cursor: pointer;
    }
    .mobile-menu .hamburger{
        position: absolute;
        top: 2.5vh;
        right: 0;
        z-index: 1;
        cursor: pointer;
        width: 70px;
        height: 70px;
        padding: 3vh;
        background: transparent;
        display: flex;
        align-items: center;
        box-shadow: -4px 5px 20px 2px rgb(0 0 0 / 51%);
    }
    .mobile-menu .hamburger span{
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #fff;
        display: flex;
        transition: all 500ms ease-in-out;
    }
    .mobile-menu .hamburger span::before, .hamburger span::after{
        position: absolute;
        content: '';
        z-index: 1;
        background-color: #fff;
        top: -10px;
        width: 100%;
        height: 3px;
    }
    .hamburger span::after{
        top: 10px;
    }
    .mobile-menu .toggle:checked + .hamburger > span{
        transform: rotate(145deg);
    }
    .mobile-menu .toggle:checked:hover + .hamburger > span{
        transform: rotate(245deg);
    }
    .mobile-menu .toggle:checked + .hamburger > span::before, .mobile-menu .toggle:checked + .hamburger > span::after{
        transform: rotate(90deg);
        top: 0;
    }
    .mobile-menu .menu{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.959);
        transform: scale(0);
        visibility: hidden;
    } 
    .mobile-menu ul li{
        list-style: none;
    }
    .menu-links a{
        font-family: 'Montserrat Alternates', sans-serif;
        text-decoration: none;
        color: #fff;
    }
    .menu-links{
        line-height: 78px;
    }
    .mobile-menu .toggle:checked ~ .menu{
        visibility: visible !important;
        transform: scale(1) !important;
        transition-duration: 600ms;
    }
  }
.home-section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/home-img-holi.jpg") ;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.home-content{
    font-size: 22px;
    padding-left: 10%;
    padding-right: 10%;
    margin-bottom: 2%;
    margin-left: 10%;
    margin-right: 10%;
}
.mid-section{
    width: 100%;
    height: 100vh;
}
.mid-header{
    font-size: 35px;
}
.mid-content{
    font-size: 18px;
}
.font-mont{
    font-family: 'Montserrat Alternates', sans-serif;
}
.no-list{
    list-style: none !important;
}
.mid-padding > ul > li{
    padding-bottom: 5% !important;
}
/* .home-section{
    width: 100%;
    height: 100vh;
}
.home-section::after{
    content: "";
    background-image: url("../img/home-img-holi.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    opacity: 0.8;
} */