@import url("https://use.typekit.net/fsz2xzp.css");
*{
    font-family: 'poppins' , sans-serif;
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior: smooth;
}
header {
    background-color:rgb(160, 70, 243);
    width:100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 10px 200px;
}
.logo {
    text-decoration: none;
    font-size: 1.8em;
    justify-content: start;
    color: white;
    text-transform: uppercase;
    font-weight:700;
}
.navigation a{
    text-decoration:none;
    color: rgb(0, 0, 0);
    font-size: 1.8em;
    font-weight: 500;
    padding-left: 30px;

}
.navigation a:hover{ 
    color:rosybrown;
}
section{
    padding: 100px 200px;
}
.title{
    display: flex;
    justify-content: center;
    font-size:2.2em;
    color: blue;
    font-weight:800;
    margin-bottom: 30px;
}
.content{
    display:flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap:wrap;
}
.card{
    background-color: White;
    width: 21.25em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius:10px;
    padding: 25px;
    margin: 15px;
    transition:0.7s ease;
}
.card:hover{
    transform: scale(1.1)
}
.icons{
    width: 100%;
    text-align:center;
}
.img{
    width:100%}
    .image{
    width:42%}
.info{
    text-align: center;
    
}
.info h3{
    color:blue;
    font-size: 1.2em;
    font-weight:800;
    margin: 10px;
}
.contact .info h3{
    color:black;
}
.contact .info p{
    font-size:1.3em;
}
.footer{
    background-color:black;
    color: aliceblue;
    padding:1.2em;
    display:flex;
    justify-content: space-between;
}
.footer-title{
    font-size:1.3em;
    font-weight:600;
}
.footer-title span {
    color:blue;

}
.footer .social-icons a{
    font-size:1.3em;
    padding: 0 12 0 0;
    color:white;
}
@media(max-width:1023px){
    header{padding: 12px 20px;
    }
    .navigation a{
    padding-left:10px;
    font-size: 1.2em;
}
    .title{
        font-size:1.8em;
    }
    .about{
        background-size: 100%;
        height:100vhl;
    }
    .about-title{font-size:1.2em;
    padding-bottom:5%;}
    .about p{ font-size: 1.2em;
    width:100%;
    height:100vhl;
    padding-bottom:20px;}

    section{
        padding: 80px 20px;

    }

    .main-content h2{
        font-size:1.6em;
    }

    .main-content h3{font-size:1.6em;
        
    }
    .main h2 span{
        font-size:1.5em;}
    
    .footer{padding:1.1em;}
    .footer-title{font-size: 1em;}

    .footer .social-icons a{
        padding: 0 3 0 0;
        font-size:1em;
    }


}
