@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import "common.css"; 
@import "animations.css"; 
@import "animate.css"; 
:root {
    --blue-pramry: #0d6efd;
    --blue-secondary: #008cd2;
    --green-primary: #34af3a;
    --green-secondary: #4bdc52;
    --body-color: #212529;
    --body-bg: #fff;
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
  body {
    padding: 0;
    margin: 0;
    font-family: "Catamaran", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
 }

  a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #1b0238;
  }
  
  a:hover, a:focus {
    color:var(--green-secondary);
    text-decoration: none;
  }
  
  button {
    outline: 0 !important;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 45px;
}
/* ===============================================
Pre Loader
  =================================================*/
 #preloader{
    background: #fff url('../images/preloader.gif') no-repeat center center;
    background-size: 30%;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 100;
 }
/* ===============================================
Header
  =================================================*/
.header{    
    background:var(--body-bg);
    height: 70px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    background-color: #ffffff !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header .wrapper .logo{
height: 60px;
overflow: hidden;
}
.header .logo img{
    height: 60px;
 
    }
 .nav ul{
    list-style: none;
}
.nav ul li{
    display: inline-block;
    padding-left: 20px;

}
.nav ul li a{
    color: #1b0238;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}
.header.sticky {
    position: fixed;
    height:50px ;
    width: 100%;
    transition: all 0.3s ease-in-out ;
   z-index: 100;
   animation-name: slide-bottom;
   -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .hamburger div{
    width: 30px;
    height:3px;
    background: #0a0a0a;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
    position: fixed;
}
  /*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

.open{
  display: block!important;
 
}
/* ===============================================
Intro
  =================================================*/
.intro{
    height: 100vh;
    width: 100%;
    position: relative;
    background: url('../images/main-banner-bg.jpg') no-repeat center center;
    
}
 .intro-shapes{
    height: 50px;
    width: 60%;
    display: flex;
    padding: 20px 10px 10px 30px;
    flex-basis: 100%;
    justify-content: space-between;

}.intro-shapes img {
    height: 100px;
}


.intro-shapes .bottom-shapes{
    position: absolute;
    width: 60%;
    display: flex;
    justify-content: space-between;
    bottom:5px ;
    z-index: 1;
}
.intro-shapes .bottom-shapes .shape-4{
    height: 100px!important;
}
.intro-content{
    width: 50%;
    padding: 80px 10px 10px 100px;
  

}
.intro-content span {
    font-size: 16px;
    color: var(--green-primary);
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.intro-content h1{
    font-size: 60px;
    color: var(--blue-pramry);
    line-height: 1.2;
}
.intro-img {
    height: 80vh;
    overflow: hidden;
    flex-direction: row-reverse;

}
.intro-img img{ 
    height: 80vh;

}
.intro-bottom{
    position: absolute;
    width: 100%;
    bottom: -20px;
    overflow: hidden;
}
.intro-bottom img{
    width: 100%;
}
/* ===============================================
About section
  =================================================*/
  .who-we-are {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding: 50px;

  }
  
  .who-we-are-image {
    text-align: center;
    position: relative;
    height: 70vh;
    z-index: 1;
  }
  
  .who-we-are-image img {
    border-radius: 50%;
    padding: 20px;
    height: 70vh;
  }
  
  .who-we-are-image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--green-primary);
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-animation: border-transform-default 30s linear infinite alternate forwards;
            animation:  border-transform-default 30s linear infinite alternate forwards;
  }
  
  .who-we-are-image::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color:var(--blue-secondary);
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-animation: border-transform-default 50s linear infinite alternate forwards;
    animation: border-transform-default 50s linear infinite alternate forwards;
  }
  .who-we-are-content{
    width: 50%;
    margin-top: 50px;
  }
  .who-we-are-content span {
    font-size: 20px;
    color:var(--blue-pramry);
    font-weight: 600;
    font-family: "Sacramento", cursive;
  }
  
  .who-we-are-content h3 {
    font-size: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .who-we-are-content p {
    margin-bottom: 0;
  }
  
  .who-we-are-content .who-we-are-list {
    padding-left: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .who-we-are-content .who-we-are-list li {
    list-style-type: none;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1b0238;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-top: 20px;
    padding-left: 40px;
    padding-top: 5px;
  }
  
  .who-we-are-content .who-we-are-list li span {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 16px;
    color: var(--body-bg);
    background-color: var(--green-primary);
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .who-we-are-content .who-we-are-list li:hover span {
    background-color: var(--blue-pramry);
  }
  
  .who-we-are-content .who-we-are-btn {
    margin-top: 30px;
  }
  .who-we-are-shape img{
    height: 120px;
  }
  
  .who-we-are-shape {
    position: absolute;
    right: 5%;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    top: 0px;
    max-width: 120px;
    -webkit-animation: moveLeftBounce 3s linear infinite;
            animation: moveLeftBounce 3s linear infinite;
  }


/*================================================
Value Area CSS
=================================================*/
.value-area {
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%!important;
    overflow: hidden;
  }
  .value-image{
    padding: 50px;
   width: 50vw;
    overflow: hidden;
  }
  .value-image img{
    height: 60vh;
    width: 100%;
  
  }
  .value-item{
    padding: 50px;
    width: 50vw;
  }
  .value-item .value-content span {
    font-size: 20px;
    font-weight: 600;
    font-family: "Sacramento", cursive;
    color: var(--blue-pramry);
  }
  
  .value-item .value-content h3 {
    font-size: 45px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  
  .value-item .value-inner-content {
    position: relative;
    padding-left: 88px;
    margin-top: 30px;
  }
  
  .value-item .value-inner-content .number span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color:var(--blue-pramry);
    text-align: center;
    font-size: 25px;
    color: #1b0238;
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .value-item .value-inner-content .number span::before {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    line-height: 70px;
    border: 1px solid var(--blue-pramry);
    border-radius: 50px;
    top: -5px;
    left: -5px;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .value-item .value-inner-content .number .bg-2 {
    background-color: var(--blue-pramry);
  }
  
  .value-item .value-inner-content .number .bg-2::before {
    border: 2px solid var(--blue-pramry);
  }
  
  .value-item .value-inner-content .number .bg-3 {
    background-color:var(--blue-pramry);
  }
  
  .value-item .value-inner-content .number .bg-3::before {
    border: 2px solid var(--blue-pramry);
  }
  
  .value-item .value-inner-content h4 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  
  .value-item .value-inner-content p {
    margin-bottom: 0;
  }
  
  .value-item .value-inner-content:hover .number span {
    background-color:var(--green-primary);
    color: #ffffff;
  }
  
  .value-item .value-inner-content:hover .number span::before {
    border: 1px solid var(--green-primary);
  }
  
  .value-shape .shape-1 {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: -1;
  }
 
  
  .value-shape .shape-2 {
    position: absolute;
    left: 20px;
    z-index: -1;
    bottom: 30px;
  }
  
  .value-shape .shape-3 {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: -1;
  }

/* ===============================================
Mission Statement
  =================================================*/
  .mission-section{
    height: 80vh;
    padding: 70px;
    background: url(../images/mission.jpg);
    
  }
 .card-wrapper .card{
    height:50vh;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: justify;
    -webkit-box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
 }
 .card-wrapper .card h2{
    color: var(--green-primary);
    margin-bottom: 10px;
 }
 .card hr {
    border:2px dashed var(--blue-secondary) ;
    margin-bottom: 10px;
 }
 /* ===============================================
Event Section
  =================================================*/
  .event-section{
    height: 200vh;
    background: url('../images/event-bg.jpg') no-repeat;
    padding: 50px;
    color: var(--body-bg);
    overflow: hidden;

  }
  .event-card{
    background: var(--body-bg);
    padding: 20px;
    width: 80%;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
box-shadow: 10px 10px 91px -50px rgba(0,0,0,0.75);
  }
  .event-card-img img{
    height: 25vh;
  }
  .event-content a h2{
    font-weight:700;

  }
  .event-content span {
    color: var(--body-color);
  
  }
  .event-content span i{
    color: var(--green-primary);
    margin-right: 10px;

  }
  .event-date h1{ 
    font-size: 80px;
    line-height: 1;
    color: var(--blue-secondary);
  }
  .event-date p{
    color: var(--blue-secondary);
    font-weight: 800;
  }
/* ==========================================
Testimonials
============================================= */
.testimonial-slider{
  width: 90% !important;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-card{
  text-align: center;
  background-color: #fee9ca;
  padding: 10px;
  width: 352px;
  
  border-radius: 50%;
}
.testimonial-card .card-content{
 padding: 10px;
}
.testimonial-card .card-content p{
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6b6b84;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.testimonial-card .card-content {
  font-size: 15px;


}
.testimonial-card .card-content h1{
  color:#1b0238
}
.testimonial-card .card-content h3{
  display: block;
  color: #ea512e;
  font-size: 15px;
  margin-top: 5px;
  font-weight: 600;
}
.header-quote i{
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background-color: #ffffff;
  color: #ea512e;
  font-size: 30px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-quote i:hover{
  background-color:#ea512e;
  color:var(--body-bg) ;
  font-size: 30px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


/* ===========================================
Back To Top
============================================*/

/* =========================================
Footer
============================================ */
footer{
    display: flex;
    width: 100%;
    font-weight: 600;
    overflow: hidden;
    justify-content: space-around;
    color: var(--body-bg);
    background: url('../images/footerbg.jpg')  center/cover no-repeat fixed;

}
.f-hr{
    border: 1px solid var(--body-bg);
    width: 60px;
}
.footer-logo{

    width: 25%;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;

}
.footer-logo img{
    height: 70px;
    width: 70px;
    margin-right: auto;
    margin-left: auto;
}
.footer-logo .footer-description{
    color: var(--body-bg);
    padding: 10px;
    text-align: left;
}
.social-links ul{
    list-style: none;
    display: flex;

}
.social-links ul li i{
    padding: 10px;
    color: var(--body-bg);
    background: var(--green-secondary);
    border-radius: 50%;
    margin: 10px;
    transition: all .5s ease-in-out;
}
.social-links ul li i:hover{
    color: var(--body-bg);
    background: var(--blue-pramry);
    transition: all .5s ease-in-out;
    
}
.useful-links{
    padding-top: 50px;
}
.useful-links ul{
  
list-style: none;
}
.useful-links ul li a{
    color: var(--body-bg);
    cursor: pointer;
}
.useful-links ul li a:hover{
    color: var(--green-primary);
    transition: all 0.5s ease-in-out;
}


.useful-links ul li::after {
    transition: all ease-in-out .2s;
    background: none repeat scroll 0 0 var(--green-primary);
    content: "";
    display: block;
    height: 2px;
    width: 0;
}
.useful-links ul li:hover::after {
    width: 30%;
}



.footer-gallery{
    padding-top: 50px;
}
.footer-gallery ul{
list-style: none;
margin-top: 10px;
display: grid;
grid-template-columns: auto auto auto;
gap: .3em;
overflow: hidden;
}


.footer-gallery ul img{
    height: 40px;
    width: 60px;
}
.copy-right{
    text-align: center;
    color: #fff;
    background: var(--body-color);
}
.copy-right h3{
    font-weight: 400;
}
  /* =========================================
  Responsive Media Quieries
  ============================================ */
  @media screen and (max-width: 820px) {
    .header  .logo h1{
        font-size: 1.3rem;
    }

  .nav {
      /* display: none; */
  }
  .nav ul{
      display: none;
      list-style: none;
      position: absolute;
      top:10%;
      left: 0;
      z-index: 1;
      width: 100%;
      background: var(--body-bg);
      flex-direction: column;
      transition:all ease-in-out .5s;
    
  }
  .nav ul li{
      display: block;
      padding-left: 20px;
  
  }
  .nav ul li a{
      color: #1b0238;
      font-size: 16px;
      font-weight: 600;
      padding-left: 0;
      padding-right: 0;
      padding-top: 25px;
      padding-bottom: 25px;
      font-family: "Roboto", sans-serif;
      text-decoration: none;
  }
  .header.sticky {
      position: fixed;
      height:50px ;
      width: 100%;
      transition: all 0.3s ease-in-out ;
     z-index: 100;
     animation-name: slide-bottom;
     -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }
    .hamburger{
      display:block;
      position: absolute;
      margin-left: auto;
      cursor: pointer;
      right: 5%;
      z-index: 2;
      transition: all 0.7s ease;
  }
    
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

   .intro{
        display: flex;
        height: auto;
        flex-direction: column !important;
        background:url(../images/main-banner-bg.jpg) ;

    }
    .intro-img{
        height: 30vh;
    }
    .intro-img img{
        height: 100%;
    }
    .intro .intro-content h1{
   
    }
    .intro-shapes{
        display: none;
    }
    .intro-wrapper{
        flex-direction: column !important;
    }
    .intro-wrapper .intro-content{
        width: 100%;
        text-align: center;
        justify-content: space-around;
        padding: 100px 10px  10px 10px !important;
    }
    .intro-wrapper .intro-content h1{
        text-align: center;
        font-size: 1.5rem;
    }
    .r-brk{
        display: none;
    }
    .who-we-are{
        flex-direction: column;
    }
    .who-we-are-image {
        height: 30vh;
        width: 42vw;
        margin-right: auto;
        margin-left: auto;
    }
    .who-we-are-image::after,
    .who-we-are-image::before{
        height: 100%;
        width: 100%;
    }
    .who-we-are-image img{
        height: 30vh;
    }
    .who-we-are-content{
        width: 100%;
        text-align: center;
    }
    .who-we-are-content ul{
        text-align: left;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .mission-section{
      height: auto;
      overflow: hidden;
      padding: 0;
      background-size: cover;
    }
    .mission-section .card-wrapper{
      flex-direction: column;
      padding: 0!important;
      
    }
    .mission-section .card-wrapper .card{
      padding-top: 50px;
      padding-bottom: 50px!important;
      margin-left: auto;
      margin-right: auto;
    }
    .value-area{
        flex-direction: column;
        padding: 20px!important;
    } 
    .value-image{
        height: 30vh;
        display: flex;
        background: url('../images/value-1.png') no-repeat;
        background-size: cover;
        justify-content: space-around;
  
    }
    .value-image img{
        display: none;
        
        
    }
    .value-item{
        width: 100%;
        margin-top: 150px;
        margin-left: auto;
        margin-right: auto;

    }
    .value-content h1{
        text-align: center;
    }

    .value-shape .shape-3{
        display: none;
    }
    .value-shape .shape-1{
        position: absolute;
        top: 10%;
    }
    .event-section{
      overflow-y: scroll!important;
    }
    .event-card{
      flex-direction: column;

    }
    .event-card-img{
        height: 150px;
    }
    .event-section{
        height: 100vh;
    }
    .event-card-img img{
        height: 100%;
    }
    footer{
      flex-direction: column;
    }
    footer .footer-logo{
      width: 100%;
     
    }
    footer .footer-logo .footer-description{
      text-align: center;
    }
    .social-links ul{
     justify-content: space-evenly;
    }
    .useful-links{
      padding-left: 50px;
    }
    .footer-gallery{
     padding-left: 50px;
    }
}