* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f2f6fa;
    font-family: sans-serif;
}

.brand {
    background-size: cover;
    background-position: center;
    padding-top: 200px;
    padding-bottom: 400px;
    text-align: center;
}
.brandh1 {
    font-family: sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #70A9F7;
}
.brandp {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #70A9F7;
    margin-bottom: 30px;
}
nav {
    position: relative;
    padding-top: 20px;
    text-align: center;
    color: #70A9F7;
    font-weight: bold;
    background-color: #fafbfc;
    padding-bottom: 20px;
}
nav ul {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-size: 20px;
    list-style: none;
}
    nav li {
        cursor: pointer;
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
    }
    nav img {
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        height: 24px;
    }
.anav {
    text-decoration: none;
    color: #70A9F7;
}
.anav:hover {
    text-decoration: underline;
}
#about {
    color: #659ae6;
    scroll-margin-top: 20vh;
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #dfeaf9;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.abouth1 {
    display: inline-block;
    margin-top: 40px;
    font-size: 50px;
    font-weight: 900;
}
.aboutp {
    color: #659ae6;
    margin-top: 20px;
    max-width: 900px;
    font-size: 23px;
    font-weight: bold;
}
#contact {
    padding-top: 50px;
    padding-bottom: 100px;
    text-align: center;
    scroll-margin-top: 10vh;
}
.contacth1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    margin-top: 40px;
    color: #70A9F7;
}
.card {
    display: flex;
    gap: 100px;
    flex-direction: row;
    justify-content: center;
}
.tocard {
    display: flex;
    flex-direction: column;
    background-color: #dfeaf9;
    padding: 30px;
    width: auto;
    height: 300px;
    border-radius: 25px;
}
.cardp {
    font-size: 25px;
    font-weight: bold;
    color: #659ae6;
}
.cardpp {
    font-size: 18px;
    margin-top: 30px;
    color: #659ae6;
    font-weight: bold;
    max-width: 600px;
}
.link {
    text-decoration: none;
    color: #659ae6;
    border: 2px solid #70A9F7;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 18px;
    margin-top: auto;
    align-self: center;
    transition: all ease 0.2s;
}
.link:hover {
    color: #f2f6fa;
    background-color: #70A9F7;
}
footer {
    background-color: #dfeaf9;
    border-end-end-radius: 0;
    border-start-start-radius: 25px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 10px;
    color: #659ae6;
    font-weight: bold;
}
    footer p {
        font-size: 18px;
        margin-top: 20px;
    }
    .footerbrand {
        font-family: sans-serif;
        font-size: 60px;
        font-weight: 900;
        color: #70A9F7;
    }

.btn {
    border: 2px solid #70A9F7;
    color: #70A9F7;
    padding: 10px;
    margin-left: 20px;
    font-size: 18px;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all ease 0.2s;
}
    .btn:hover {
        color: #f2f6fa;
        background-color: #70A9F7;
    }
@media (min-width: 768px) and (max-width: 1024px) {
    .aboutp {
        font-size: 18px;
        max-width: 650px;
    }
    .card {
        flex-direction: column;
        gap: 50px;
    }
}


@media (max-width: 767px) {
    .imgli {
        display: none;
    }
    .li1 {
        display: none;
    }
    .li2 {
        display: none;
    }
    .brandh1 {
        font-size: 45px;
    }
    .aboutp {
        font-size: 18px;
        padding: 0 20px;
    }
    .card {
        flex-direction: column;
        gap: 50px;
    }
}

