html, body {
    margin: 0px;
    padding: 0px;   
}

  
body {
    font-family: "Merriweather", sans-serif;
}


/* header */ 

.header{
  margin: 0;
  height: 100px;
  background-color: #B399D4;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0px;
  padding-right: 45px;
}

.header-title {
 margin: 0;
 padding: 0;
 display: flex;
 justify-content: space-between;
 color: white;
}

.header-title img {
  height: 85px;
  padding: 10px;
  align-self: center;
}

.header-title h1{
  padding: 10px;
}

.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.nav li {
  margin-left: 25px;
  font-size: 25px;
}

.nav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
}

.nav a:hover{
    color: #F5E1FD;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
}

/* end of header */

/****************************************************/

/* start of first chunk */

.main {
    background-color: #f9f9f9;
    padding: 60px 45px;
    display: grid;
    grid-template-columns: 50% 50%;
}

.main-inner {
    max-width: 800px; 
    display: flex;
    flex-direction: column;
}

.main-inner.left {
    margin-right: min(100px);
}

.banner-left {
    background: #e1d3f2;
    padding: 20px;
    padding-left: 50px;
    font-size: 45px;
    text-align: center;
    position: relative;
    margin-left: -50px;
  }
  
  .banner-left:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 46px solid transparent;
    border-right: 40px solid #f9f9f9;
    position: absolute;
    right: 0;
    top: 0;
  }

.main-inner h1 {
    padding: 0;
    margin: 0;
    text-align: center;
}

.main-inner i {
    text-align: center;
}

.main-inner i {
    margin: 0;
    line-height: 1.5;
    color: #787878;
    font-size: 20px;
    text-indent: 30px;
}

.main p{
    font-size: 1.2rem;
    line-height: 1.7;
    align-self: center;
}

iframe {
    margin: 10px;
    margin-bottom: 20px;
    align-self: center;
}
 
.button{
    background-color: #B399D4;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 1.18rem;
    align-self: center;
}

/* Our Homes */ 

.features {
    background-color: #ede5f7;
    padding: 60px 45px;
}

.features-title {
      display: flex;
      justify-content: center;
      align-content: center;
      margin-top: -50px;
      font-size: 45px;
      font-family: 'Merriweather';   
}
 
.dot {
    height: 40px;
    width: 40px;
    margin: 0 20px;
    margin-top: 65px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.ribbon {
    padding: 15px;
    height: 50px;
    background: white;
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    padding: 10px;
  
  }
  
  .features-item{
    text-align: center;
    padding: 10px 27px;
    margin: 0;
  }

  .features-item p {
    text-align: left;
    text-indent: 30px;
    margin-bottom: 30px;
    margin: 0;
    line-height: 1.6;
  }


  .features-item h2{
    color: #8d5ccc
  }
  

  /* and more section */
  .info {
    padding: 30px;
  }
  
  .info h1{
    text-align: center;
    padding: 10px;
    color: #9570c5;
  }

  .info p {
    margin: 0 90px;
    line-height: 2;
  }
  
  .line {
    background-color: white;
    height: 10px;
  }

  /* End of 'Our Homes' */

  /***********************************************/

  /* Start of 'Our Mentors' */

  .features.two {
    background-color: #f9f9f9;
  }

  .dot.two {
    margin-top: 60px;
    background-color: #e1d3f3;
  }

  .ribbon.two {
    background: #B399D4;
    color: white;
    max-width: 700px;
    font-size: 40px;
  }

  .features-inner.two {
    padding: 10px;
  }

  .features-item.portrait{
    border: 10px solid #B399D4; 
    height: 175px; 
    width: 175px;
  }

  .landscape {
    display: inline-block;
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
  }

  .portrait{
    display: inline-block;
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    
  }

  .portrait img {
    width: 100%;
    height: auto;
  }
  
  .landscape img {
    width: auto;
    height: 100%;
  }
  /* End of 'Our Mentors' */

  /****************************/

  /* Start of 'Our Team' */

  .our-team {
    background-color: #f9f9f9;
  }
  
  .dot.three {
      background-color: #B399D4;
      display: inline-flex;
  }

  .our-team-inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .our-team .banner-left {
    width: 75%;

  }
  /* End of 'Our Team' */

/****************************/

/** Footer **/
.footer{
    background-color: #e1d3f2;
    padding: 30px;
    height: 50px;
    overflow: auto;
  }
  
  .footer-items {
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: left;
    color: #6a6e75;
    
  }
  
  .footer-items a {
    padding: 30px;
    color: #6a6e75;
    text-decoration: none;
  }
  
  .footer-items a:hover{
    color: #FFF;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
  }
  
 
  .footer{
    background-color: #e1d3f2;
  }
  
  .footer-items {
    color: #6a6e75;
    
  }
  
  .footer-items a {
    color: #6a6e75;
  }
  
  .footer-items a:hover{
    color: #FFF;
  }

/** End **/
