* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Lato", sans-serif;
    background-color: #f7f8fa;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
    padding: 30px;
  }
  
  .header {
    height: 95vh;
    background-image: linear-gradient(
      to right bottom, 
      rgba(171, 228, 220, 0.8), 
      rgba(208, 238, 236, 0.8)) , 
      url(../img/School_building.jpg);
    background-size: cover;
    background-position: top;
  
    clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  }

  .logo-box{
    position: absolute;
    top: 40px;
    left: 40px;
  }
  
  .logo{
    height: 55px;
  }
  .heading-primary{
    color: #1d0df5;
    
    text-transform: uppercase;
  
  }
  
  .text-box{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .heading-primary-main{
    display: block;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 16px;
  
    animation-name: moveInLeft;
    animation-duration: 5s;
    animation-timing-function: ease-out;
  
  }
  
  .heading-primary-sub{
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 17.4px;
    animation: moveInRight 1s ease-out;
  }
  
  @keyframes moveInLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    80% {
      transform: translateX(30px);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes moveInRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    80% {
      transform: translateX(-30px);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .section-About-Us{
    height: 95vh;
    background-image: linear-gradient(
      to right bottom, 
      rgba(171, 228, 220, 0.8), 
      rgba(208, 238, 236, 0.8)) , 
      url(../img/School_building.jpg);
    background-size: cover;
    background-position: top;
  
    /* clip-path: polygon(100% 0 0 100% 100% 75vh 0 0); */
  }

  .about{
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    color: #1d0df5;
  }

  .school-profile{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #1d0df5;
    padding: 0 20px;
    
  }

  /**************************/
/* FOOTER */
/**************************/

.footer {
    background-color: #c5d9f3;
    border: #555 solid 1px;
    border-radius: 0.4rem;
    
    padding: 12.8rem 0;
    border-top: 1px solid #eee;
  }
  .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2.4rem;
  }
  
  .grid--footer {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  }
  
  .logo-col {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo {
    display: block;
    margin-bottom: 3.2rem;
  }
  
  .social-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
  }
  
  .social-icon {
    height: 2.4rem;
    width: 2.4rem;
  }
  
  .copyright {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #767676;
    margin-top: auto;
  }
  
  .footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
  }
  
  .contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  .address {
    margin-bottom: 2.4rem;
  }
  
  .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  
  .footer-link:link,
  .footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #767676;
    transition: all 0.3s;
  }
  
  .footer-link:hover,
  .footer-link:active {
    color: #555;
  }