@font-face {
    font-family: "Favorit Pro";
    src: url("fonts/favoritpro-bold-webfont.woff2") format("woff2"),
    url("fonts/favoritpro-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Favorit Pro";
    src: url("fonts/favoritpro-bolditalic-webfont.woff2") format("woff2"),
    url("fonts/favoritpro-bolditalic-webfont.woff") format("woff");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Favorit Pro";
    src: url("fonts/favoritpro-regular-webfont.woff2") format("woff2"),
    url("fonts/favoritpro-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Favorit Pro";
    src: url("fonts/favoritpro-italic-webfont.woff2") format("woff2"),
    url("fonts/favoritpro-italic-webfont.woff") format("woff");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Favorit Pro";
    src: url("fonts/favoritpro-light-webfont.woff2") format("woff2"),
    url("fonts/favoritpro-light-webfont.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

html {
    font-size: 16px;
}

body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    color: white;
    background-color: black;
    background-image: url(background.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: "Favorit Pro", Arial, Helvetica Neue, Helvetica, sans-serif;
}

a, a:active, a:visited {
    color: white;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: underline;
}


nav {
    background-color: white;
    padding: 0 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

main {
    padding-top: 60px;
    min-height: calc(100vh - 380px);
}

.brand {
    padding: 10px 0;
}

.brand-logo {
    width: auto;
    height: 40px;
    padding-right: 1.5rem;
    display: block;
    color: black;
}

.card {
    background-color: white;
    color: black;
    padding: 2rem 3rem;
    margin: 80px auto;
    max-width: 650px;
}

label {
    font-size: 1.2rem;
    font-weight: 400;
}

input[type=text], input[type=email] {
    vertical-align: middle;
    width: 100%;
    height: 38px;
    line-height: 1.42857;
    display: block;
    color: var(#000);
    background-color: transparent;
    border: 1px #000;
    border-bottom-style: solid;
    border-radius: 0;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    outline: none;
}

button {
    border-radius: 0;
    text-decoration: none;
    border: 1px solid #ff195a;
    background-color: #ff195a;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 9px 15px 9px 15px;
    transition: all .125s cubic-bezier(.86, 0, .07, 1);
    display: inline-flex;
    gap: 1rem;
    position: relative;
    font-size: 1rem;
    cursor: pointer;
}

button:hover{
    background-color: white;
    color: #ff195a;
}

.arrow-svg {
    width: 20px;
    height: auto;
}

footer {
    background-color: black;
    padding: 60px 80px;
}

footer a {
    font-weight: bold;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding-bottom: 60px;
}

.footer-logo-link {
    display: block;
    color: white;
    width: 79px;
    height: 97px;
}

.follow-us, .contact-us {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-link{
    align-items: center;
    display: inline-flex;
    gap: 1rem;
}

.social-media-logo {
    width: 20px;
    height: 20px;
}

.linked-in:hover svg {
    color: rgb(0, 128, 182);
}

.social-media-logo.hover {
    display: none;
}

.slack:hover .social-media-logo {
    display: none;
}

.slack:hover .social-media-logo.hover {
    display: block;
}

.copyright {
    height:50px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}
