/*  
01. ===Typography

===Font Size(px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
        

===Font Weight
default 400

===line-height
default 1


===spacing-system(px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

02. ===Colors

===Primary Color : #e67e22
===Secondary Color


===tints:
===shades:
===accents:
===background-color:

image: source.unsplash.com
website avtars/faces: uifaces.com

===shadow

===border-radius

===white-space


*/




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #777;
}

/* .header{
  height: 95vh;
  background-image: url(../img/ST\ SIMRAN\ LOGO.jpg);
} */


.header-face{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: #f1a868;
    color: rgb(147, 70, 248);
}

.logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.header-logo{
    display: flex;
    align-items: center;
    justify-content: stretch;
    background-color: antiquewhite;
    padding: 10px;
    border-radius: 10px;
}

.name-title{
    font-size: 4.2rem;
    font-weight: 700;
    margin-inline: 100px;
    color: #4d79f3;
    font-family: 'Rubik', sans-serif;
    
}

.main-nav-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8c99f;
    color: white;
    
    
}

.school-building-img{
    width: 100%;
    
    
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
    background-color: #c2eedf;
    padding: 12.8rem 0;
    text-align: center;
 }
  
  .testimonials-container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2.4rem;
    
  }
  
  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 4.8rem;
    column-gap: 8rem;
  }
  
  .testimonial-img {
    width: 6.4rem;
    border-radius: 50%;
    margin-bottom: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }
  
  .testimonial-name {
    font-size: 1.6rem;
    color: #6f6f6f;
  }

  /**************************/
/* GALLERY SECTION */
/**************************/

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    padding: 1.6rem;
  }
  
  .gallery-item {
    overflow: hidden;
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    border-radius: 50%;
    transition: all 0.4s;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }

  

.heading-secondary {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #eb141f;
    text-align: center;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
    background-color: #fff;
    
    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;
  }
  
    