@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #FFF;
    color: #FFF;
    text-align: center;
    max-width: 1600px;
    margin: auto;
}
.sec1{
    background: url('/img/bgs/cyberBG1.png');
    height: 65vh;
    background-position: center;
    background-size: cover;
    max-height: 1024px;
}
.tittle{
    text-align: center;
    margin-top: 8%;
}
.tittle h1{
    font-size: 90px;
    font-weight: 800;
    margin: 0;
}

.sec2{
    text-align: center;
    background: #FFF;
    color: #000;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}
.sec2 p{
    margin: 20px auto;
    width: 60%;
}
.service-card-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card{
    width: 250px;
    height: 300px;
    padding: 20px;
    margin: 20px;
    background-color: #D9D9D9;
    transition: all .1s ease-in;
    position:relative;
}
.service-card:hover{
    outline: 4px solid #275F8D;
}
.service-card i{
    width: 200px;
    font-size: 50px;
    margin: 10px;
    color: #275F8D;
}
.service-card h4{
    font-size: 15px;
}
.service-card p{
    font-size: 13px;
    width: 80%;
}
.service-card button{
    background-color: #275F8D;
    color: #FFF;
    width: 150px;
    padding: 5px;
    border: none;
    position:absolute;
    bottom: 26px;
    right: 45px
}
.sec3{
    padding: 30px 0;
    background-color: rgb(230, 223, 223);
    color: #000;
}
.sec3-wrapper{
    display: flex;
}
.text{
    margin: 100px;
    width: 400px;
    text-align: left;
}
.text h1{
    font-size: 40px;
}
.text p{
    font-size: 20px;
}
.contactForm{
    color: #000;
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 20px;
}
.contactForm h1{
    font-size: 20px;
}
.contactForm input{
    padding: 10px;
    outline: none;
    border: none;
    margin: 10px;
    border-radius: 10px;
}

.contactForm button{
    width: fit-content;
    margin: auto;
}
