/*General Styling*/
body {
    background: rgb(240, 240, 240);
    font-family: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px 
}

a {
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    padding: 10px;
    font-family: 'Ubuntu', sans-serif;
    color: #a2da52;
}

p {
    padding: 10px;
}

.btn {
    padding: .5rem 1rem;
    background: #a2da52;
    color: black;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.btn:hover {
    color: white !important;
    background: grey;
    transition: 0.3s;
}

.container {
    width: 100%;
    margin: 0px auto;
}
/*Header*/
/*Not displayed, only display in media queries*/
header .menu-toggle {
    display: none;
}

header {
    background: white;
    height: 130px;
    width: 100%;
}

header .current {
    color: #a2da52;
    font-weight: bolder;
}

header .logo {
    float: left;
    height: auto;
    padding: 10px;
    margin: 5px 20px 20px 10px;
    width: 50%;
}

header .logo .displayed {
    float: left;
}

header .logo .contact {
    margin: 30px 180px 0px 0px;
    display: block;
    float: right;
    color: rgb(34, 34, 34);
    font-weight: bold;
}

header .logo .contact span {
    display: block;
    padding: 0px;
    margin: 0px;
}

header ul{
    float: right;
    width: auto;
    margin: 5px 20px 0px 20px;
    padding: 30px 0px 0px 30px;
    list-style: none;
}

header ul li {
    float: left;
    position: relative;
}

header ul li:hover ul {
    display: block;
}

header ul li a{
    padding: 15px 15px;
    display: inline-block;
    text-decoration: none;
    color: rgb(34, 34, 34);
    text-align: center;
}

header ul li a:hover { 
    color: #a3a3a3;
    font-weight: bold;
    transition: 0.3s;
}

header ul li ul {
    position: absolute;
    text-align: right;
    margin-left: 20px;
    top: 40px;
    right: 0px;
    padding: 0;
    width: 580px;
    display: none;
    z-index: 99999;
} 

header ul li ul li {
    display: inline-block;
}

header ul li ul li a {
    padding: 15px 15px;
    text-decoration: none;
    color: #a2da52;
    text-align: center;
}

header ul li ul li a:hover{
    color: #a3a3a3;
    font-weight: bold;
    transition: 0.3s;
}

/*Main Body*/
.main-body {
    width: 100%;
    height: auto;
    position: relative;
}

.main-article {
    margin: 20px 10px 10px 20px;
    height: auto;
    float: left;
    width: 65%;
    color: white;
    min-height: 450px;
    background: rgb(240, 240, 240);
    position: absolute;
}

.main-article .article1 {
    margin-bottom: 20px;
    padding: 20px;
    background: rgb(95, 95, 95);
    min-height: 215px;
    border-radius: 5px;
    box-shadow: black 1rem 1rem 1rem -1rem;
}

.main-article .article2 {
    margin-top: 20px;
    padding: 20px;
    background: rgb(95, 95, 95);
    min-height: 215px;
    border-radius: 5px;
    box-shadow: black 1rem 1rem 1rem -1rem;
}

.main-article .article3 {
    margin: 0px 0px 20px 0px;
    padding: 20px;
    background: rgb(95, 95, 95);
    min-height: 450px;
    border-radius: 5px;
    color: white;
    box-shadow: black 1rem 1rem 1rem -1rem;
}

.main-article .article3 span {
    display: block;
    top: 0;
    margin: 0px 0px 0px 10px;
}

.main-article .article3 .message {
    margin-top: 20px;
}

.main-article form{
    position: relative;
    width: 100%;
    height: 190px;
    margin: 0px 20px 0px 10px;
    padding: 10px 10px 10px 0px;
}

.main-article input {
    height: 40px;
    margin: 0px 10px 10px 0px;
    width: 60%;
    padding: 5px;
    top: 0;
    border-radius: 5px;
    background: #2b2a2a;
    line-height: 1.5rem;
    border: none;
}

.main-article textarea {
    margin: 10px 10px 10px 0px;
    height: 110px;
    width: 60%;
    border-radius: 5px;
    padding: 5px;
    bottom: 0;
    background: #2b2a2a;
    line-height: 1.5rem;
    border: none;
}

.main-article .contact-input:focus {
    background: #1a1a1a;
    color: white;
    font-size: large;
}

.main-article .contact-btn {
    position: absolute;
    clear: both;
    bottom: 0;
    margin-bottom: 10px;
}

.sidebar {
    margin: 20px 20px 20px 10px;
    padding: 20px;
    float: right;
    width: 30%;
    color: white;
    min-height: 450px;
    border-radius: 5px;
    background: rgb(95, 95, 95);
    box-shadow: black 1rem 1rem 1rem -1rem;
}

/*Footer*/
footer {
    width: 100%;
    background: rgb(54, 54, 54);
    padding: 10px 0px 10px 0px;
    color: rgb(221, 221, 221);
    text-align: center;
    font-size: .9em;
    clear: both;
}

