
@charset "utf-8";



h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.3em;
    margin-block-end: 0em;}
  
    h2 {
      display: block;
      font-size: 2em;
      margin-block-start: 0.8em;
      margin-block-end: 0.3em;}
  
     .project-text{
      margin: auto;
      height: 20vh;
      background-color:#edf1fd;
      padding-top: 100px;
    
     }
     .project-text h1{
      font-size: 5rem;
      color:#6b7fe7;
      text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  
     }
     .project-text h2{
        text-align: center;
        font-size: 1.5rem;
        color: rgb(35 53 120);
        font-weight: 400;
     }


#services{
    width:100%;
   box-sizing: border-box;
   font-family: calibri;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding-top: 40px ;
   background-color: #edf1fd;
   
  }
   
  .s-heading h1{
   color:#FFFFFF;
   font-size: 3rem;
   margin: 0px;
   padding: 0px;
   
  }
  .s-heading p{
   color:rgba(255,255,255,0.30);
   font-size: 1rem;
   margin: 0px;
   padding: 0px;
  }
  .s-heading{
   text-align: center;
   margin: 20px 0px;
  }
  .s-box{
   background-color: #2B2B2B;
   width:500px;
   height: 500px;
   margin: 20px;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
   position: relative;
  }
  .b-container{
   display: flex;
   justify-content: center;
   align-content: center;
   
   
  }
  .s-b-img{
   width: 100%;
   height: 70%;
   
  }
  .s-b-text{
   width: 100%;
   height: 30%;
   background-color:#1E1E1E;
   display:flex;
   justify-content: center;
   align-items: center;
   text-align: center;
  }
  .s-b-text a{
   margin: 0px;
   color:#FFFFFF;
   font-size: 1.1rem;
   font-family: calibri;
   display: block;
      display: -webkit-box;
   max-width: 80%;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .s-b-text a:hover{
   color:rgba(255,255,255,0.50)
  }
  .s-type{
   font-family: calibri;
   color:#FFFFFF;
   background-color: #151515;
   padding: 10px 15px;
   position: absolute;
   top: 0px;
   left: 50%;
   transform: translateX(-50%);
   font-size: 18px;
   border-radius: 0px 0px 10px 10px;
   box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
  }
  .s-box:hover{
   transform:translateY(-10px);
   transition: all ease 0.3s;
   
  }


  #about{
    width:100%;
    height: 100vh;
    background-color:#161616;
    background-attachment: fixed;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5% 0px 5%;
    position: relative;
   }
   .about-text{
    font-family: calibri;
    width: 50%;
   }
   .about-text h1{
    font-size: 5rem;
    color:#6b7fe7;
   }
   .about-text h2{
    font-size: 3rem;
    color:#FFFFFF;
    font-weight: 400;
   }
   .about-text h1,h2{
    margin: 0px;
    padding: 0px;
   }
   .about-text p{
    font-size: 1.3rem;
    color:rgba(255,255,255,0.90);
    padding-bottom: 30px;
    
   }
   a.button{
    border-radius: 20px;
    border-style: solid;
    padding: 6px 30px;
    cursor: pointer;
    display: inline;
    text-align: center;
    text-decoration: none;
    background-color:#6b7fe7;
    border-color:#6b7fe7 ;
    font-size: larger;
    color: black;
   }
   a.button:hover{
    background-color: #edf1fd;
    transition: all ease 0.3s;
   
   }