@import url('https://fonts.googleapis.com/css?family=Orbitron:100,200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Orbitron', sans-serif;
}
header
{
    position: fixed;
    width: 100%;
    height: 80px;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    z-index: 1000;
}
header .logo
{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 700;
}
header ul
{
    position: relative;
    display: flex;
}
header ul li
{
    position: relative;
    list-style: none;
}
header ul li a
{
    position: relative;
    padding: 5px 20px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;

}
header ul li a.active,
header ul li a:hover
{
    background: #205aff;
}
.toggle
{
    display: none;
}
section
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 150px 100px 100px;
}
section img
{
    max-width: 350px;
    margin-left: 30px;
}
section form
{
    max-width: 500px;
    margin-left: 10px;
}
section h2
{
    font-size: 2.5em;
    text-transform: uppercase;
}
section p
{
    font-size: 18px;
}
#read
{
    display: inline-block;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 18px;
    background: #111;
    color: #fff;
    margin-top: 20px;
}
section:nth-child(odd)
{
    position: relative;
    justify-content: center;
    align-items: center;
    background: #111;
    color: #fff;
}
form
{
	width: 95%;
}
.input-container
{
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
  }
.formicon
{
    padding: 10px;
    background: #111;
    color: white;
    width: 35px;
}
.formicon1
{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 55px;
    background: #111;
    color: white;
    width: 35px;
}
.input-field
{
    width: 100%;
    padding: 10px;
}
textarea
{
    height:110px;
    width: 100%;
    padding: 10px;
    outline: none;
}
.submit
{
    width:127px;
    height:38px;
    margin-top:10px;
    cursor:pointer;
    font-weight: bold;
    background: #111;
    color: #fff;
}
.submit:hover
{
    background-color: #205aff;
    color: #fff;
}
.footer
{
    height: 80px;
    width: 100%;
    padding: 5px 0 5px 0;
    background: #111;
	color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}
.footer p
{
    padding-top: 15px;
}
.phone
{
    color: #2196f3;
    text-decoration: none;
  }

@media (max-width: 768px)
{
    section
    {
        padding: 100px 50px 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    section img
    {
        margin: 50px 0 0;
        max-width: 100%;
    }
    section form
    {
        margin-top: 30px;
    }
    header
    {
        padding: 0 50px;
    }
    header ul
    {
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 50px 100px;
        text-align: center;
        overflow: auto;
        transition: 0.5s;
        background: #111;
        flex-direction: column;
        opacity: 0;
        transform: translateY(-100%);
    }
    header.active ul
    {
        opacity: 1;
        top: 80px;
        transform: translateY(0);
    }
    header ul li a
    {
        margin: 5px 0;
        font-size: 24px;
    }
    .toggle
    {
         display: block;
         position: relative;
         width: 30px;
         height: 30px;
         cursor: pointer;
    }
    .toggle:before
    {
        content: '';
        position: absolute;
        top: 4px;
        width: 100%;
        height: 2px;
        background: #fff;
        z-index: 1;
        box-shadow: 0 10px 0 #fff;
        transition: 0.5s;
    }
    .toggle:after
    {
        content: '';
        position: absolute;
        bottom: 4px;
        width: 100%;
        height: 2px;
        background: #fff;
        z-index: 1;
        transition: 0.5s;
    }
    header.active .toggle:before
    {
        top: 14px;
        transform: rotate(45deg);
        box-shadow: 0 0 0 #fff;
    }
    header.active .toggle:after
    {
        bottom: 14px;
        transform: rotate(-45deg);
        box-shadow: 0 0 0 #fff;
    }
}