@import url('../css/fonts.css');
* {
    margin: 0;
    padding: 0;
}

* a, * p, * h1, * h2, * h3, * h4, * ul, * li {
    margin: 0;
    padding: 0;
}

* a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-in-out;
}

* a:hover {
    text-decoration: none;
    color: #ffffff;
}

* button {
    border: none;
    cursor: pointer;
}

* button:focus {
    outline: none!important;
}

* ul, * ol {
    list-style-type: none;
    margin: 0;
}

* b{
    font-family: "m_bold";
}

:root {
    --black: #000000;
    --dark: #000000;
    --purple: #582fbc;
    --purplel: #a79ebc;
    --gray: #d6d4d4;
    --grayl: #646367;
    --white: #ffffff;
    --orange: #e58200;
    --placeholder: #9d84bb;
    --nocolor: transparent;
}

body {
    overflow-x: hidden;
    font-family: "m_regular";
}

.contfull{
    position: relative;
    height: 100%;
}