* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin-Sans', Sans-Seriff;
}

section {
    padding: 40px 15%;
}

.contact {
    background: #101010;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 6rem;
}

.contact-img img {
    max-width: 100%;
    width: 490px;
    height: auto;
    border-radius: 10px;
}

.contact-form h1 {
    font-size: 80px;
    color: #fff;
    margin-bottom: 20px;
}

span {
    color: aqua;
}

.contact-form p {
    color: #c6c9d8bf;
    letter-spacing: 1px;
    line-height: 26px;
    font-size: 1.1rem;
    margin-bottom: 3.8rem;

}

.contact-form form {

    position: relative;

}

.contact-form form input,
form textarea {
    width: 100%;
    padding: 17px;
    border: none;
    outline: none;
    background: #191919;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    border-radius: 10px;
}

.contact-form textarea {

    resize: none;
    height: 200px;
}

.contact-form .btn {

    display: inline-block;
    background: aqua;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 10px;
    width: 220px;
    transition: ease .20s;
    cursor: pointer;

}

.contact-form form .btn:hover {
    border: 2px solid #00f9f1;
    background: transparent;
    transform: scale(1.1);
}

@media(max-width: 1570px) {
    section {
        padding: 80px 3%;
        transition: .2s;
    }

    .contact-form h1 {
        font-size: 60px;
    }

    .contact-form p {
        margin-bottom: 3rem;
    }
}

@media(max-width:1070px) {
    .contact {
        grid: gap 2rem;
        transition: .3s;
    }
}

@media(max-width:1000px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .contact-form {
        order: 2;
    }

    .contact-img img {
        max-width: 100%;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 30px;
    }
}


ul {
    list-style-type: none;
}




nav {

    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {

    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {


    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
}

nav a:hover {
    background-color: #f0f0f0;

}

.logo {
    margin-right: auto;
    font-weight: bold;

}

.logo img {
    width: 115px;
    margin-top: 25px;
    align-items: end;
}



.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {

    display: none;
}

@media(max-width: 800px) {

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

.about-content {
    flex: 1;

}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;


}


.about-content p {
    font-size: 18px;
    line-height: 1.5;
}

.about-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-content .read-more:hover {

    background-color: #3e8e41;

}

.logo img {
    width: 85px;

}