html {
    display: block;
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
}

body {
    background-color: #FFF;
    overflow-x: hidden;
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
}

h1 {
    font-size: 63px;
    font-weight: 600;
    color: #FFF;
}

.basic h1 {
    color: #000;
}

h2 {
    font-size: 48px;
    font-weight: 100;
    color: #000;
}

p,
a {
    font-size: 22px;
    /* font-weight: 200; */
}

a,
a:hover {
    text-decoration: none;
}

.link-button-light,
.link-button-light:hover {
    border: 2px solid #FFF;
    border-radius: 35px 35px 35px 35px;
    padding: 10px 40px 10px 40px;
}

.link-button-dark,
.link-button-dark:hover {
    color: #2c56a3;
    border: 2px solid #2c56a3;
    border-radius: 35px 35px 35px 35px;
    padding: 10px 40px 10px 40px;
}

section {
    opacity: 1;
    padding: 25px;
}

#first-section-background {
    background-color: black;
    background-image: url("background.png");
    width: 100%;
    /* opacity: 0.64; */
    height: 100vh;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    filter: brightness(25%);
}

#last-section-background h3 {
    color: #FFF;
}

.brand-logo {
    max-width: 320px;
}
/* .basic header {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #FFF;
}

.basic header a {
    text-decoration: none;
} */

.basic section {
    min-height: 80vh;
}
footer {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #FFF;
}

footer a,
footer p {
    font-size: 16px;
    opacity: 0.8;
}

section#first {
    position: relative;
    font-size: 20px;
    height: 100vh;
}

.menu-link,
.menu-button {
    font-weight: 400;
    letter-spacing: 1px;
    color: #FFF;
    padding-bottom: 6px;
    padding-top: 6px;
    line-height: 30px;
    vertical-align: middle;
}

.navbar-toggler {
    color: #FFF !important;
    background-color: #000 !important;
    border-color: #FFF !important;
}

.menu-link:hover {
    border-bottom: 3px solid #FFF;
}

.menu-button,
.menu-button:hover {
    border: 3px solid #FFF;
    border-radius: 35px 35px 35px 35px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 3px;
    padding-top: 3px;
    vertical-align: middle;
}

.with-background,
.with-background a {
    color: #FFF;
}

.with-background a.menu-button {
    background-color: #000 !important;
}

.highlight-card {
    border: 1px solid #2C56A3;
    border-radius: 35px 35px 35px 35px;
    padding: 35px;
}

.fadein {
    opacity: 0;
    animation-duration: 2s;
    animation-delay: 0;
    animation-name: fadein;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.icon-blue {
    color: #2C56A3 !important;
}