* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: whitesmoke;
}

nav {
    width: 100vw;
    height: 60px;
    background-color: rgb(14, 181, 181);
    display: flex;
    position: sticky;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

nav a {
    height: 100%;
    padding: 0 20px;
    align-items: center;
    text-decoration: none;
    color: rgb(219, 212, 212);
}

nav .home-link {
    margin-right: auto;
}

nav a:hover {
    background-color: rgb(22, 55, 201);
}

#sidebar-active {
    display: none;
}

.open-sidebar-button,
.close-sidebar-button {
    padding: 0 20px;
    display: none;
}

@media(max-width: 450px) {
    .links-container {

        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 200px;
        /* height: 300px; */
        background-color: black;
        box-shadow: -5px 0 5px rgb(175, 164, 164);
        transition: .75s ease-out;
    }

    nav a {
        box-sizing: border-box;
        width: 100%;
        padding: 20px 30px;
        display: flex;
        justify-content: flex-start;
    }

    .open-sidebar-button,
    .close-sidebar-button {
        padding: 20px;
        display: block;
    }

    #sidebar-active:checked~.links-container {
        /* display: flex; */
        right: 0;
    }
}

#sidebar-active:checked~#overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

.numbertext {
    display: none;
}

.section {
    width: 80vw;
    box-sizing: border-box;
    display: flex;
    margin: auto;
    background-color: rgb(221, 227, 219);
}

.intro {
    width: 50vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 65px;
}

.intro h1 {
    padding-bottom: 20px;
}

.images {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    mix-blend-mode: multiply;
}

.box {
    display: flex;
    padding: 20px;
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
}

.logo{
    position: relative;
    right: 60vw;
    color: aliceblue;
    font-family: sans-serif;
}

.logo:hover{
    color: black;
    cursor: pointer;
}

.logo2 img{
    margin: 20px 0px 0px 100px;
    height: 100px;
    width: 100px;
    border-radius: 50px;
}
.box a {
    text-decoration: none;
}

.box a p {
    color: rgb(100, 152, 204);
}

.button {
    display: flex;
    justify-content: center;
}

.button button {
    margin-top: 20px;
    padding: 10px;
    border-radius: 13px;
    font-size: large;
    background-color: rgb(15, 174, 213);
    color: white;
}
.links-container img{
    width: 100vw;
}

.main {
    box-sizing: border-box;
    width: 90vw;
    background-color: rgb(132, 152, 152);
    display: flex;
    margin: auto;
}


.first {
    width: 45vw;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    font-size: .7em;
}

.second {
    width: 45vw;
    font-size: .7em;
}
.call{
    position: fixed;
    top: 620px;
    right: 10px;
    z-index: 10;
    }
    .call a{
        text-decoration: none;
        color: rgb(39, 35, 56);
        display: flex;  
       flex-direction: column;      }
.call img{
    height: 50px;
    width: 50px;
    border-radius: 85px;
    } 
.Why{
    text-align: center;
    margin: 20px;
    font-size: 30px;
    font-weight: 600;
}
footer{
    width: 100vw;
    background-color: black;
    display: flex;
    padding: 20px;
    margin-top: 20px;
    padding-top: 50px;
}
footer p{
    color: white;
    font-size: 30px;
}

.footer1{
    width: 50vw;
    display: flex;
    flex-direction: column;
    
}
.footer2{
    display: flex;
    flex-direction: column;
}
.footer1 a{
text-decoration: none;
    color: rgb(150, 137, 137);
}
.footer2 a{
    text-decoration: none;
    color: rgb(171, 146, 146);
}
.end{
    background-color: #1a1a1a;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.moving{
    width: 100vw;
    height: 15vh;
    background-color: rgb(30, 162, 228);
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.moving p{
    color: white;
    font-size: 20px;
}
.moving1{
    margin-top: 20px;
    font-size: 30px;
}

/* Responsiveness Section */
@media(max-width: 450px){
    .section {
        width: 100vw;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        margin: auto;
        background-color: rgb(221, 227, 219);
    }
    .logo{
        position: relative;
        right: 110px;
        color: aliceblue;
        font-family: sans-serif;
    }
    .logo:hover{
        color: black;
        cursor: pointer;
    }
    .intro {
        width: 90vw;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 65px;
    }
    .images {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: auto;
        mix-blend-mode: multiply;
    }
    footer{
        width: 100vw;
        background-color: #1a1a1a;
        display: flex;
        flex-direction: column;
    }
    .footer1{
        margin-top: 10px;
    }
    .footer2{
        margin-top: 20px;
    }
    .footer1 a{
        padding: 10px;
    }
    .footer2 a{
        padding: 10px;
    }
    .call{
        position: fixed;
        top: 620px;
        right: 10px;
        z-index: 10;
        
    }
    .call img{
        height: 50px;
        width: 50px;
        border-radius: 85px;
        top: 620px;
        right: 10px;
        z-index: 10;
        }
    .call a{
        text-decoration: none;
        color: rgb(39, 35, 56);
        display: flex;  
       flex-direction: column;      }
    
    
}