@import "../../components/style.css";
@font-face {
    font-family: "Franklin Gothic Book";
    src: url('../../assets/fonts/Franklin_Gothic_Book.ttf') format('truetype')
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #fff;
    font-family: "Franklin Gothic Book", serif;
    color: #1A2B3C;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
    font-weight: 400;
    line-height: 1;
}
h3 {
    font-size: 24px;
}
.p-large {
    font-size: 30px;
}
.p-big {
    font-size: 20px;
}
.p-medium {
    font-size: 14px;
}
p, .p {
    font-size: 12px;
}
.p-small {
    font-size: 10px;
}
.font-weight-bold {
    font-weight: 700;
}
.color-white {
    color: #fff;
}
a {
    color: #0022FF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
input,
label ,
button,
img {
    outline: none;
    border: none;
    width: 100%;
    background-color: transparent;
}
button:disabled {
    pointer-events: none;
}
ul {
    list-style-type: none;
}