body{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}
.content {
    width: 1000px;
    margin: auto;
}
nav {
    width: 100%;
    margin: auto;
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
    height: 100px;
    box-shadow: 5px 2px 18px #888888;
}
.checkbtn {
    font-size: 30px;
    color: black;
    line-height: 80px;
    margin-right: 40px;
    margin-top: 10px;
    float: right;
    cursor: pointer;
    display: none;
}
#check {
    display: none;
}
nav .logo {
    float: left;
    width: 40%;
    height: 100%;
    padding-top: 30px;
}
nav .logo .loggan {
    width: 160px;
    float: left;
}
nav .links {
    float: right;
    padding: 0;
    padding-top: 30px;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    font-family: monospace;
    justify-content: space-around;
    align-items: center;
}
nav .links li {
    list-style: none;
}
nav .links a {
    display: block;
    padding: 1em;
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}
nav .links a:hover {
    color: #3673b6;
}
.active {
    border-bottom: 3px solid #3673b6;
}
header.hem {
    height: 800px;
    width: 100%;
    background-image: url(huvudkontor.jpg);
}
header {
    height: 500px;
    width: 100%;
    background-image: url(testbild2.jpg);
}
.rubrik {
    display: flex;
    float: left;
    width: 300px;
    margin-top: 200px;
    background: rgba(255,255,255,.8);
    padding-bottom: 50px;
    padding-right: 150px;
    border-radius: 30px;
}
.rubrik h1{
    font-size: 46px;
    margin-left: 30px;
    color: #24252A;
}
.rubrik p{
    color: #24252A;
    min-width: 350px;
    margin-top: 120px;
    margin-left: -230px;
    font-size: 30px;
}
h1.rubriker {
    font-size: 46px;
    padding-top: 230px;
    padding-left: 100px;
    color: #fff;
}
main {
    min-height: 630px;
}
.intro {
    text-align: center;
    margin: auto;
    width: 100%;
}
.intro h2 {
    font-size: 36px;
}
.intro p {
    font-size: 25px;
    width: 60%;
    margin: auto;
}
.jobben {
    width: 100%;
    display: flex;
    margin: auto;
}
.jobb {
    width: 50%;
    box-sizing: border-box;
    padding: 30px 0 30px 0;
}
.jobb-bild {
    margin: auto;
    width: 70%;
}
.jobb h3 {
    width: 50%;
    padding-left: 15px;
    font-size: 20px;
}
.jobb p{
    padding: 15px;
    width: 70%;
}
.lasmer {
    border: 1px solid #3673b6;
    border-radius: 5px;
    padding: 10px;
    font-family: sans-serif;
}
.lasmer:hover {
    background-color: #3673b6;
    color: #fff;
}
.jobb a {
    text-decoration: none;
    color: #3673b6;
}
.omoss{
    width: 50%;
    margin-top: 100px;
}
.historia {
    margin-top: 50px;
}
.omossbild {
    float: right;
    width: 50%;
    padding: 20px;
}
.referenser {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
.referensbild {
    margin: auto;
    width: 80%;
}
.referensbild img {
    width: 50%;
    margin: auto;
    display: block;
    border: 2px solid black;
}
.text {
    font-size: 34px;
}
.kontakt {
    width: 100%;
    float: left;
    padding: 20px;
    margin: 20px 0;
    margin-top: 0;
}
.kontakt input, textarea {
    width: 40%;
}
.kontakt button {
    padding: 0 10px;
}
.kontakt button:hover {
    background-color: lightgray;
}
.kontaktform {
    width: 40%;
    float: right;
    padding: 20px 20px 20px 0;
    margin: auto;
}
.kontakt h4 {
    font-size: 25px;
}
footer {
    background: #24252A;
    color: aliceblue;
    margin: 0;
    min-height: 100px;
    margin-bottom: 0;
    padding-bottom: 30px;
}
.kontaktfooter {
    width: 33%;
    float: left;
    margin: auto;
}
footer p strong {
    color: red;
}
footer p.footertext {
    text-align: center;
    padding-top: 170px;
}
@media (max-width: 1000px){
    .content{
        width: 100%;
    }
    .checkbtn {
        display: block;
    }
    nav .links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: rgba(53,115,182,.95);
        top: 100px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        display: block;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 40px;
        color: #fff;
        margin: auto;
        width: 100px;
    }
    nav .links a:hover {
        color: #fff;
    }
    a.active {
        background: none;
        color: #fff;
        display: block;
        border-bottom: 2px solid #fff;
    }
    #check:checked ~ ul {
        left: 0;
    }
    .rubrik {
        margin-left: 40px;
    }
}
@media (max-width: 600px){
    .rubrik {
        width: 100%;
        margin: 0;
        margin-top: 300px;
        border-radius: 0;
    }
    .kontaktfooter {
        width: 100%;
        float: left;
        margin: auto;
        padding-left: 20px;
    }
}