*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: none;
}

html,
body {
    min-width: 100%;
    max-width: 100vw;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scrollbar-gutter: stable;
    position: relative;

}


img {
    width: 100%;
    height: 100%;
    display: block;
}


a,
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    outline: none;
}

textarea{
    resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    font-family: var(--font-family_1), sans-serif;
}
a,
a:visited,
button {
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-family_2), sans-serif;
}

p,
a {
    font-size: 16px;
    color: inherit;
    font-family: var(--font-family_2), sans-serif;
}


section{
    padding: 2vw 0;
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;

    @media(width <=1379px){
        width: 80%;
    }

    @media(width <=969px){
        width: 90%;
    }

    @media(width <=769px){
        width: 100%;
    }

}