*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


li, a, button, h1 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    list-style-type: none;
}

h2 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style-type: none;
}

h3 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style-type: none;
}

h4 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style-type: none;
    padding: 12px;
}

h6 {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    list-style-type: none;
}


input, textarea {
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style-type: none;
}


Header {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 25px 35px 15px 35px;
}


a:hover{
    color: rgba(135, 210, 245, 1);
}


.logo {
    height: auto;
    width: auto;
    max-height: 60px;
    min-width: 180px;
    cursor: pointer;
    margin-right: auto;
}


.menu li{
    font-size: 16px;
    padding: 15px 5px;
}


.button{
    border-bottom:1px rgb(88, 89, 89) solid;
}

.send{
    font-family: helvetica Neue, helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgb(88, 89, 89);
    text-decoration: none;
    list-style-type: none;
}

/* Mobile Menu */


.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.toggle{
    order: 1;
}


.item.button{
    order: 2;
}


.item{
    width: 100%;
    text-align: center;
    order: 3;
    display: none;
}


.item.active{
    display: block;
}


.toggle{
    cursor:pointer;
}


.bars{
    background: rgb(88, 89, 89);
    display: inline-block;
    height: 2px;
    position: relative;
    width: 18px;
    margin-bottom: 5px;
}


.bars::before,.bars::after{
    background: rgb(88, 89, 89);
    content: "";
    display: inline-block;
    height: 2px;
    position: absolute;
    width: 18px;
}


.bars:before{
    top: 5px;
}


.bars:after{
    top: -5px;
}


/* Tablet Menu */


@media all and (min-width:468px){
    .menu{
        justify-content: center;
    }
    .item.button{
        width: auto;
        order: 1;
        display: block;
    }
    .toggle{
        order: 2;
    }
    .button{
        border: 0px;
    }
    .button a{
        text-decoration: none;
        padding: 7px 15px;
        background: rgb(88, 89, 89);
        border: 0;
        border-radius: 50em;
    }
    .button a:hover{
        transition: all .3s;
        background: rgba(255, 255, 255, 0.5);
    }
}


/* Desktop View */


@media all and (min-width: 768px){
    .item{
        display: block;
        width: auto;
    }
    .toggle{
        display: none;
    }
    .logo{
        order: 0;
    }
    .item{
        order: 1;
    }
    .button{
        order: 2;
    }
    .menu li{
        padding: 15px 10px;
    }
    .menu li.button{
        padding-right: 0;
    }
}

section {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.container {
    width: 80%;
    margin: 50px auto;
}


.container-box {
    background: red;
    display: flex;
}


.contact-left {
    flex-basis: 60%;
    padding: 40px 60px;
}


h1 {
    margin-bottom: 10px;
}


.container p{
    margin-bottom: 40px;
}


.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}


.imput-row .input-group{
    flex-basis: 45%;
}


input{
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(88, 89, 89);
    outline: none;
    padding-bottom: 5px;
}


textarea{
    width: 100%;
    border: 1px solid rgb(88, 89, 89);
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}


footer {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 8px;
    margin-top: auto;
}

/* custom scrollbar safari */

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-track{
    background-color: rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb{
    background-color: rgb(88, 89, 89);
}
