@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/k.webp');
    height: 65vh;
    background-position: center;
    background-size: cover;
    max-height: 1024px;
    
}
.main-flexing
{
    height: 60%;
    display:flex;
    align-items: center;
    justify-content: center;
}
.tittle{
    text-align: center;
}
.tittle h1{
    font-size: 90px;
    font-weight: 800;
    margin: 0;
}
.tittle h3{
    margin: 0;
    font-weight: 200;
}

.sec2{
    text-align: center;
    background: #FFF;
    color: #000;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}
.sec2 p{
    margin: 20px auto;
    width: 60%;
}
.sec3{
    padding: 30px 0;
    background-color: rgb(230, 223, 223);
    color: #000;
}
.sec3 p{
    margin: auto;
    margin-top: 30px;

    width: 60%;
}
.points{
    text-align: left;
}
.testiForm{
    color: #000;
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}
.testiForm p{
    text-align: left;
}
.testincontact{
    display: flex;
    justify-content: center;
    margin: 50px;
}
.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: 55px;
}
.contactForm input,.contactForm textarea{
    padding: 10px;
    outline: none;
    border: none;
    margin: 10px;
    border-radius: 10px;
}

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

.nobg{
    background-color: #fff;
}

input[type=text] {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
button{
  background-color: #4CAF50;
    border: none;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}
canvas{
  /*prevent interaction with the canvas*/
  pointer-events:none;
}