* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*::before,
*::after {
  box-sizing: border-box;
}
body {
    font-family: "VNBText";
    line-height: 1.4;
    font-size:16px;
    background-color: #f4f4f4;
    color: var(--text-main);
}

input:focus {
    box-shadow: none;
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .3s;
}

ul,
li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

p {
    margin-top: 0;
}
.clear-fix {
    clear: both;
}
img {
    max-width: 100%;
}