/*
    Theme Name: MWD
    Author:  Buildahome
    Author URL: https://buildahome.se/
    Description: ---- 2022.
    Document   : Framework
    Created on :  March 18th 2022, 10.00 AM
*/

html {
    scroll-behavior: smooth;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}


@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-size: 90%;
    color: #292929;
    background: #F8F5F0;
    font-family: 'Inter', sans-serif;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-text-size-adjust: none;
    font-weight: 300;
}


::placeholder {

    color: rgba(0, 0, 0, 0.66);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.clear {
    clear: both;
    font-size: 0px;
    line-height: 0px;
    height: 0px;
    margin: 0px;
    padding: 0px;
}

:focus {
    outline: 0;
}

a,
a:link,
a:visited {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #000;
}




a:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}



a:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

img {
    border: none;
    max-width: 100%;
}

ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: roc-grotesk, sans-serif;
    font-weight: 700;
    font-style: normal;
}



p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 20px;
    color: #292929;
    padding: 0 0 20px 0;
    font-family: roc-grotesk, sans-serif;
    font-weight: 400;
    font-style: normal;

}

h1 {
    margin: 0;
    padding: 0;
    color: #292929;
    line-height: 1;
    font-size: 1.7em;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    width: 100%;
    text-align: center;
}

h1 a {
    background: #00A098;
    color: #fff !important;
    padding: 25px 30px;
    border-radius: 100px;
    font-size: 0.8em;
    margin: 20px 0;
    display: inline-block
}


h1 a:hover {
    background: #333;
    color: #fff;
}



.outer:before,
.outer:after,
.container:after,
.container:before {
    content: " ";
    display: table;
}

.outer:after,
.container:after {
    clear: both;
}

body {
    width: 100%;
    height: 100vh;
    background: url(../img/bg.jpg) center center /cover;
    display: flex;
    flex-wrap: wrap;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 85%;
    margin: 50px auto 0 auto;
}

.container img {
    padding: 60px 0;
}

.container-big {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px;
    margin: 100px auto;
}

.menu {
    display: flex;
    width: 50%;
    justify-content: flex-start;
}

.menu a {
    padding: 0 20px;
    font-weight: 500;
    font-size: 0.8em;
}

.social {
    display: flex;
    width: 50%;
    justify-content: flex-end;
}

.social a {
    padding: 0 10px;
}

@media screen and (min-width:200px) and (max-width:1024px) {
    body {
        font-size: 80%;
    }

    .menu {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu a {
        padding: 2px 20px;
        font-weight: 500;
        display: block;
        width: 100%;
        text-align: center;
    }

    .social {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding: 10px 0 25px 0;
    }

    .social a {
        padding: 0 6px;
    }

    .social a img {
        height: 20px;
    }

    .container-big {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0px;
        margin: 0;
    }
}