body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: url('../assets/images/surf-bg2.gif') center/cover no-repeat fixed;
    min-height: 100vh;
    overflow: hidden;

}

a {
    text-decoration: none;
    color: black;
}

#content {
    width: 800px;
    margin: 40px auto 0;
}

.logo-container {
    padding: 20px;
    border-bottom: 1px solid black;
    margin-bottom: 15px;

}

.logo-container img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.logo-container p {
    margin: 0;
}

.top-banner p {
    background: #FFF200;
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
}

#shop-banner {
    display: flex;
    width: 100%;
    max-width: 798px;
    aspect-ratio: 798 / 67;
    background: #abcaf5;
    overflow: hidden;
}

#navbar-banner {
    background: #00000042;
    font-size: 14px;
    text-align: center;
    margin: 0px;
    color: white;
    padding: 25px;
    display: flex;
}

#navbar-banner>* {
    margin: 0px;
}


.banner-left {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 90px 5px 30px;
}

#banner-header {
    margin: 0;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    color: #000;
}

#banner-subheader {
    margin: 3px 0 0;
    font-size: 11px;
    font-weight: 400;
    color: #fff;
}

.banner-left::before,
.banner-left::after {
    content: "";
    position: absolute;
    top: 15%;
    bottom: 15%;
    width: 45px;
    background: #fff;
    clip-path: polygon(0 0, 35% 0, 100% 50%, 35% 100%, 0 100%, 65% 50%);
}

.banner-left::before {
    right: 55px;
}

.banner-left::after {
    right: 5px;
}


#shop-banner img {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    #content {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 480px) {
    .banner-left {
        padding: 5px 55px 5px 15px;
    }

    #banner-header {
        font-size: 16px;
    }

    #banner-subheader {
        font-size: 10px;
    }

    .banner-left::before,
    .banner-left::after {
        width: 28px;
    }

    .banner-left::before {
        right: 32px;
    }

    .banner-left::after {
        right: 3px;
    }
}