@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
body{
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
  }
  body,html{
    height: 100%;
  }
  .page-wrapper{
    flex: 1 0 auto;
  }
  .text-primary{
    color: #D83276 !important;
  }
  .text-success{
    color:#31C221 !important
  }
  .btn-link{
    color: #D83276;
    text-decoration: none;
  }
  .btn-link:hover{
    color: #b22962;
  }
  .btn-primary{
    background-color: #D83276;
    border-color: #D83276;
  }
  .btn-primary:hover{
    background-color: #b22962;
    border-color: #b22962;
  }
  .btn-success{
    background-color: #31C221;
    border-color: #31C221;
  }
  .btn-success:hover{
    background-color: #299e1c;
    border-color: #299e1c;
  }
  .main-bg{
    background-image: url(../images/main-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 100vh;
  }
  .inner-bg{
    background-image: url(../images/main-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-bottom: 4rem;
    box-shadow: 0 0 1rem rgba(0,0,0,.15)!important;
  }
  .course-bg{
    background-image: url(../images/main-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
  }
  .display-4, .display-5{
    font-weight: 700;
  }
  .shadow {
    box-shadow: 0 0 1rem rgba(0,0,0,.15)!important;
  }
  .why-propel, .student-testimonial{
    display: block;
    position: relative;
    padding: 5rem 0;
  }
  .why-propel::before{
    content: url('../images/dots.png');
    position: absolute;
    left: -190px;
    top: 0;
    z-index: -1;
  }
  .why-propel::after{
    content: url('../images/half-circle.png');
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .student-testimonial::before{
    content: url('../images/half-circle2.png');
    position: absolute;
    left: -100px;
    top: 0;
    z-index: -1;  
  }
  blockquote{
    position: relative;
    display: block;
    padding-left: 3rem;
  }
  blockquote::before{
    position: absolute;
    content: url(../images/quote.svg);
    left: 0;
    top: 0;
  }
  .carousel-control-prev {
    left: -160px;
  }
  .carousel-control-next {
    right: -160px;
  }
  @media screen and (max-width:576px){
    .mobile-gap{
      padding-top: 10rem !important;
    }
    .vh-100 {
      height: auto !important;
  }
  }
  @media screen and (max-width:768px){
    .mobile-gap{
      padding-top: 10rem !important;
    }
    .vh-100 {
      height: auto !important;
  }
  .main-bg{
    height: auto !important;
  }
  .carousel-control-prev {
    left: 0;
  }
  .carousel-control-next {
    right: 0;
  }
  }
  .course-list{
    padding-top: 10rem;
  }
  .sticky-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 1200;
    
  }
  .sticky-header.is-sticky {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }