nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 200px;
    width: calc(100% - 400px);
    background: #000;
    z-index: 9;
    border-bottom: 2px solid white;
}
nav .logo{
    height: 40px;
}
nav .links{
    display: flex;
    gap: 20px;
}
nav .links a.mobile{
    display: none;
}

.home{
    height: 100vh;
}
.slogan{
    height: 100%;
    width: 60%;
    display: flex;
}
.slogan div{
    margin: auto;
}
.slogan div h1{
    font-size: 70px;
    font-weight: 500;
}
.slogan div h2{
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0 40px;
}
.slogan div section{
    display: flex;
    align-items: center;
}
.slogan div section a{
    width: 100%;
}

.privacy{
    display: flex;
    max-width: 1000px;
    margin: 100px auto 0 auto;
    padding: 0 25px;
}
.privacy .points{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 50%;
}
.privacy .points h3{
    font-size: 40px;
    font-weight: 700;
}
.privacy .points p{
    font-size: 20px;
    font-weight: 400;
}
.privacy span{
    width: 350px;
    height: 350px;
    margin: auto;
    font-size: 350px;
    line-height: 350px;
    filter: grayscale(100%);
}
@media (max-width: 800px) {
    .privacy img{
        display: none;
    }
    .privacy .points{
        width: 100%;
    }
    .privacy{
        justify-content: center;
    }
}
.faq{
    max-width: 1000px;
    margin: 100px auto 0 auto;
    padding: 0 25px;
}
.faq h3{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.faq .questions{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq .questions div h4{
    font-size: 20px;
    font-weight: 700;
}
.start{
    background: white;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}
.start h2{
    color: black;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.start p{
    color: black;
    margin: 10px 0 20px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}
.start a{
    color: white;
    background: black;
    border: solid 2px black;
    width: fit-content;
}
.start a:hover{
    outline: solid 2px #000;
}



@media (max-width: 1300px) {
    nav{
        padding: 25px;
        width: calc(100% - 50px);
    }
}
@media (max-width: 900px) {
    nav{
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    nav .links a{
        display: none
    }
    nav .links a.mobile{
        display: block;
    }
    nav .logo{
        margin: 0 auto;
    }
    .slogan{
        width: 100%;
    }
    .privacy .points{
        width: 100%;
    }
    .privacy span{
        display: none;
    }
    .home{
        height: auto;
        padding-top: 200px;
    }
}
@media (max-width: 500px) {
    .slogan div h1{
        font-size: 50px;
    }
    .slogan div{
        margin: auto 25px;
    }
}