* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}



/*NAVIGATION STYLE*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem;
    color: white;
    border-bottom: black 2px solid;
}

.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: black;
}

.brand-title a {
    font-size: 2rem;
    font-variant: small-caps;
    color: black;
    font-weight: 700;
    text-decoration: none;
}

.blue{
color:#47a0ff;
}

/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 16px 15px;
    text-decoration: none;
    font-size: 1.5rem;
    font-variant: small-caps;
    text-align: center;
    color: black;
    display: block;
    transition: 0.3s;
    font-weight: 500;
}

#special{
  background: #1c89ff;
  color: white;
  width: 60%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 5px;
  transition: all 1s;
}

#special:hover{
   background: #124c86;
}

.sidenav a:hover {
    color: #027bfd;
}

.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* overlay */
.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    display: none;
}

/*---------------About Us------------*/
.header{
  font-size: 2.2em;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.blue{
    color: #47a0ff;
    font-weight: 800;
}

.para{
    max-width: 70%;
    margin: 0 auto;
    padding: 18px;
    font-size: 1.3em;
    margin-bottom: 35px;
    line-height: 1.6;
    font-family: 'Tahoma', sans-serif;
}

/*goals*/
.goals{
    background-color: #f5f5f5;
    padding-top:15px;
    padding-bottom: 15px;
}

/*-----Footer-------*/
footer{
    background-color: #f5f5f5;
    height: auto;
  }

  .footer-content{
   display: flex;
   justify-content: center;
   flex-direction: column;
   padding-top: 10px;
  }


  .socials{
   list-style: none;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 2rem 0 2rem 0;
  }

  .socials li a i{
   margin: 0 15px;
   text-decoration: none;
   color: black;
   font-size: 2rem;
   transition: color .4s ease;
  }

  .footer-bottom{
   background: #000;
   padding: 5px 0;
   text-align: center;
   font-family:'Tahoma', sans-serif;
  }

  .footer-bottom p {
    color:white;
  }

  .footer-bottom p:hover{
    text-decoration: underline;
  }

  /*----needs---*/
  .need{
     display: flex;
     justify-content: center;
     gap: 10px;
     padding-bottom: 30px;
  }
   
  .need button{
   padding: 8px 15px;
   font-size: 16px;
   background-color: white;
   border-radius: 8px;
  }




/* -------Media Query for mobile view------- */

/*nav icon*/
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
}

/*Logo Nav*/
@media (max-width: 700px) {
  .brand-title a {
    font-size: 1.7rem;
  }
   
.para {
    max-width: 100%;
}
  
}


@media (max-width:700px) {

    .header{
        font-size: 25px;
    }
    
}
