@font-face {
    font-family: "Inter Light";
    src: url("../fonts/Inter-Light.ttf")
}

@font-face {
    font-family: "Inter Regular";
    src: url("../fonts/Inter-Regular.ttf")
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Regular.ttf")
}

@font-face {
    font-family: "Barlow Medium";
    src: url("../fonts/Barlow-Medium.ttf")
}

@font-face {
    font-family: "Barlow Semi Condensed Semi Bold";
    src: url("../fonts/Barlow-Semi-Condensed-Semi-Bold.woff")
}

@font-face {
    font-family: "Barlow Semi Condensed";
    src: url("../fonts/Barlow-Semi-Condensed.woff")
}

body {
    font-family: 'Barlow', sans-serif;
    background: #F8F8F8;
}

/* footer */

footer {
    background-color: #121212;
    padding: 5px;
    color: white;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.slogan {
    color: #cecece;
    font-size: 10px;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
}

.social {
    width: 30px;
    object-fit: cover;
    color: #363636;
}

.social:hover {
    color: #6C6C6C;
}

.brand {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.socials {
    display: flex;
    margin-left: 20px;
    gap: 10px;
}

h4 {
    text-transform: uppercase;
    margin: 15px 0;
    font-family: 'Barlow Semi Condensed Semi Bold', sans-serif;
    font-size: 14px;
}

nav {
    padding: 0 10% 20px 10%;
    min-width: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

nav a {
    margin: 5px 0;
    font-size: 14px;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
    margin: 0.5em 0;
}

nav a:hover {
    color:#00FFD1;
}

.nav-section {
    padding: 5px 0;
    display: flex;
    flex-direction: column;

}

@media only screen and (min-width:1300px) {




    h4 {
        font-size: 18px;
    }

    nav a {
        font-size: 18px;
    }

    .logo {
        width:300px;
    }

    .slogan {
        font-size: 16px;
    }

    .social {
        width: 50px;
    }




    
    }