@import "../fonts/MyriadPro/stylesheet.css";
@import "../fonts/OpenSans/stylesheet.css";
@import "../fonts/TrajanPro/stylesheet.css";

:root {
    --success-color: #4BB543;
    --error-color: #F14949;
    --bs-nav-link-font-size: 1.2rem;
    --bs-nav-link-font-weight: 400;
    --img-card-width: 360px
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'OpenSans';
    min-height: 100vh;
    position: relative;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-fluid {
    max-width: 1440px;
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

li {
    list-style-type: none;
}

h1,
h2,
h3,
th {
    font-family: 'TrajanPro';
}

h1 {
    font-size: 3.5rem;
}

h2 {
    color: #FFF;
    font-size: 3rem;
}

h3 {
    color: #FFF;
    font-size: 2.8rem;
    font-weight: bold;
}

th {
    font-size: 1.4rem;
    font-weight: bold;
}

a,
p,
li,
td,
button {
    font-family: 'OpenSans';
    color: #000;
    font-size: 1.4rem;
    transition: color .5s;
}

a:hover {
    color: #A26B13;
}

header,
header p,
header a,
footer,
footer p,
footer a {
    color: #000;
}

label {
    font-size: 1.4rem !important;
    font-family: 'OpenSans';
}

@media (min-width: 768px) {
    /* p,
    li {
        font-size: 1.6rem;
    } */

    /* a {
        font-size: 1.4rem;
    } */
}

@media (min-width: 992px) {
    .container-fluid {
        padding-right: 8.5rem !important;
        padding-left: 8.5rem !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}