@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Poppins', sans-serif; 
    position: relative;
    height: 100vh;
}
.body-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1::selection,
h2::selection,
p::selection,
span::selection {
  color: #fff;
  background:  #111072;
}
.container{
    width: 100%;
    max-width: 1050px;
    /* border: 2px solid black; */
    display: flex;
    flex-direction: column;
}
a{
    text-decoration: none;
    color: #111072;
}

.particles-container{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}
.main-container{
    position: relative;
    padding-top:10px ;
    /* height: 100vh; */
    /* border: 2px solid black; */
    z-index: 1;
}

/* logo */
.logo-box{
    text-align: center;
}

.logo-box img{
    width: 260px;
    height: 150px;
}
/* logo end */

/* Site Title */

.sitetitle{
    text-align: center;
    padding-bottom: 10px;
}

.sitetitle h2{
    color: #111072;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1.1px;
}
/* Site Title End */

/* Cards Wrapper */

.cards-wrapper{
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.card{
    height: 230px;
    width: 290px;
    text-align: center;
    padding: 10px;
    border-radius: 20%;
    background-color: white;
    border-bottom: 1px solid #111072 ;
    cursor: pointer;
    box-shadow: 0px 0px 52px -3px rgba(0,0,0,0.5);
    transition: border 0.1s ease;
    transition: box-shadow 0.3s ease;
    transition: transform 0.4s ease;
}    
.card:hover{
    border: 1px solid #111072 ;
    transform: scale(1.04);
    box-shadow: 0px 0px 52px -3px rgba(0,0,0,0.8);
}

.card1 img{
    height: 85px;
    width: 47%;
}
.card2 img{
    height: 88px !important;
    width: 47%;
}

.card3 img{
    height: 75px;
    margin-top: 10px;
}
.card  h2{
    font-size: 16px;
    font-weight: 700;
}

.card p{
    color: #54595F;
    font-size: 14px;
    font-weight: 400;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: rgb(238,235,235);
    background: linear-gradient(180deg, rgba(238,235,235,0) 0%, rgba(80,80,80,1) 100%);
    color:#151fa9;
    padding: 10px 0px;
    text-align: center;
    z-index: 3;
  }
  
  .social-icons {
    list-style: none;
    /* border: 2px solid black; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .social-icons li {
    font-size: 16px;
    display: inline-block;
    margin: 0 10px;
    font-weight: 600;
  }
  .social-icons li:nth-child(5),  .social-icons li:nth-child(6){
    padding-bottom: 6px;
  }
  
  .social-icons a:hover img{
    transform: scale(1.35);
  }
  .social-icons img {
    width: 26px;
    transition: transform .2s ease-in-out;
    color: #111072;
    cursor: pointer;
  }

@media (max-width: 1140px){

    .main-container{
        height: auto;
        padding-top:0;

    }
    
    .container{
        width: 960px;
    }
    .logo-box img {
        width: 213px;
        height: 129px;
    }
    .cards-wrapper{
        margin-bottom: 10px;
    }
    .card{
        height: 240px;
        width: 280px;
    }    
    .card1 img{
        height: 80px;
        width: 45%;
    }
    .card2 img{
        height: 83px !important;
        width: 48%;
    }
    
    .card3 img{
        height: 68px;
        margin-top: 10px;
        margin-bottom: 6px;
        width: 38%;    
    }
    .card  h2{
        font-size: 16px;
        font-weight: 700;
    }
    
    .card p{
        color: #54595F;
        font-size: 14px;
        font-weight: 400;
    }
}
@media (max-width: 980px){
    .main-container{
        height: 100%;
        padding-top:0;
    }
    
    .container{
        width: 760px;
    }
    .cards-wrapper{
        margin-bottom: 10px;
    }
    .card{
        height: 230px;
        width: 240px;
        margin-right: 25px;
    }    
    .card1 img{
        height: 70px;
        width: 50%
    }
    .card2 img{
        height: 106px ;
        width: 41%;
    }
    
    .card3 img{
        height: 56px;
        width: 36%;    
    }
    
}
@media (max-width: 860px){
    body{
        height: auto;
    }
    .main-container{
        height: 100%;
    }
    .container{
        width: 600px;
    }
   
    .particles-container{
        height: 100%;
        display: flex;
        flex-direction: column;
    }    
    .cards-wrapper{
        flex-direction:column ;
        align-items: center;
    }
    .card{
        height: 280px;
        width: 500px;
        padding: 10px 30px;
        margin: 20px;
        margin-right: 10px;
    }    
    .card1 img{
        height: 109px;
        width: 39%;
    }
    .card2 img{
        height: 107px !important;
        width: 41%;
    }
    .card3 img{
        height: 98px;
        width: 37%;
    }
    .card3{
        margin-bottom: 100px;
    }
    .card  h2{
        font-size: 20px;
        
    }
    
    .card p{
        font-size: 16px;
    }
    .social-icons li:nth-child(5){
        display: none;
    }
    .footer {
        height: auto;
    }
}

@media (max-width: 530px){
    .container{
        width: 400px;
    }
    
    .card{
        height: 280px;
        width: 380px;
        margin: 10px;
        margin-right: 10px;
    } 
    .card1 img{
        height: 100px;
        width: 35%;
    }
    .card2 img{
        height: 85px;
        width: 39%;
    }
    .logo-box img{
        width: 250px;
        height: 150px;
    }
    .card3{
        margin-bottom: 100px;
    }
}
@media (max-width: 400px){
    .container{
        width: 300px;
    }
   
    .card{
        height: 330px;

        width: 300px;
        margin: 10px;
        margin-right: 10px;
    } 
    .card1 img{
        height: 95px;
        width: 45%;
    }
    .card2 img{
        height: 70px;
        width: 45%;
    }
    .card3{
        margin-bottom: 150px;
    }
}

