@font-face {
    font-family:'Sequel-Sans-bold';
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/Sequel-Sans/Sequel_Sans_Bold_Disp.otf") format('opentype');
 }
 @font-face {
    font-family:'Sequel-Sans-medium';
    font-style: normal;
    font-weight: normal;
    src: url("/../fonts/Sequel-sans\ Sans\ Medium\ Disp.otf") format('opentype');
 }

 @font-face {
    font-family:'Sequel-Sans-light';
    font-style: normal;
    font-weight: light;
    src: url("../fonts/Sequel-Sans/Sequel\ Sans\ Light\ Disp.otf") format('opentype');
 }

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    font-family: 'Sequel-Sans-medium', 'Helvetica';
    letter-spacing: 1px;
}


h1 {
    font-family: "Sequel-Sans-bold", 'Helvetica';
    font-weight: bold;
    color: #ffffff;
}

.wrapper {
    text-align: center;
    padding-top: 40px;
    width: 100%;
    height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url("../Resources/phone.jpg");
    background-size: cover;
    background-position: center;
    flex-direction: row;
}

.nav {
    justify-content: space-around;
    height: 50px;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav-link {
    color: white;
    font-size: 15px;
    font-family: 'Sequel-Sans-light';
    letter-spacing: 2px;
}

.nav-link:hover {
    color: lightgrey;
}

.logo-active {
    font-family: 'Sequel-Sans-bold';
    font-size: 17px;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.headline {
    color: black;
    margin-top: 40px;
    font-size: 20px;
}

.cards {
    flex-direction: column;
    width: 95%;
    margin-top: 50px;
    justify-content: space-around;
    display: flex;
    font-family: "Sequel-Sans-light";
}

.card-selection {
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}

.card-selection h1 {
    font-size: 20px;
    color: black;
}

.description span {
    font-size: 10px;
}

footer {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: black;
    background-color: #000;
    margin-top: 100px;
    height: 200px;
    color: white;
    bottom: 0;
}

footer h1 {
    font-size: 24px;
}

footer p {
    font-family: 'Sequel-Sans-light';

}

footer a {
    list-style-type: none;
    text-decoration: none;
    color: white;
    font-family: 'Sequel-Sans-light';
}

footer a:hover {
    color: lightgrey;
}

.contact {
    display: flex;
    flex-direction: column;
}

.about {
    display: flex;
    flex-direction: column;
}

.social {
    display: flex;
    flex-direction: column;
}

.container-footer {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

@media screen and (max-width: 1080px) {
    .cards {
        flex-direction: column;
        width: 85%;
        display: flex;
        justify-content: space-around;
        font-family: "Sequel-Sans-light";
    }
    .card-selection {
        display: flex;
        flex-direction: row;
        margin-bottom: 50px;
    }
    section {
        width: 85%;
    }

    section h1 {
        padding: 0;
        font-size: 20px;
    }

    .disclaimer {
        font-size: 10px !important;
    }





    footer {
        height: 400px !important;
        width: 100%;
        display: flex;
    
    }

    .container-footer {
        width: 95%;
        display: flex;
        flex-direction: column !important;
        justify-content: space-around;

    }
    footer h1 {
        font-size: 12px;
    }

    .about a {
        font-size: 12px;
    }

    .contact p {
        font-size: 12px;
    }

    .social a {
        font-size: 12px;;
    }
}