/* ============== FONTS ============== */

* {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ============== COLORS ============== */

.bg-primary {
    background-color: #ff7012;
}

.text-primary{
    color: #ff7012;
}

.bg-secondary {
    background-color: #4a4d4e;
}

.text-secondary {
    color: #4a4d4e;
}

/* ============== BUTTONS ============== */

.btn-primary {
    background-color: #ff7012;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 0.15em;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #4a4d4e;
}

.btn-white {
    background-color: #ffffff;
    color: #4a4d4e;
    border: none;
    padding: 0.5em 1em;
    border-radius: 0.15em;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-white:hover {
    background-color: #4a4d4e;
    color: #ffffff;
}

/* ============== LINKS ============== */

.link-header {
    color: #4a4d4e;
    text-decoration: none;
    background-image: linear-gradient(#ff7012, #ff7012);
    background-size: 0% 0.1em;
    background-position-y: 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;
}

.link-header:hover,
.link-header:focus,
.link-header:active {
    color: #ff7012;
    background-size: 100% 0.1em;
    background-position-x: 0%;
}

.link-header-white {
    color: #ffffff;
    text-decoration: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-size: 0% 0.1em;
    background-position-y: 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.2s ease-in-out;
}

.link-header-white:hover,
.link-header-white:focus,
.link-header-white:active {
    opacity: 0.75;
    background-size: 100% 0.1em;
    background-position-x: 0%;
}