body {
    background-color: #F5F9FD;
    margin: 0;
    overflow-x: hidden;
}

.red-ribbon {
    background-image: url("../img/red-ribbon.svg");
    height: 38px;
    background-size: contain;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-family: 'Creighton',sans-serif;
    display: flex;
    align-items: center;
}

.red-ribbon.fixed {
    position: fixed;
    width: 100vw;
    bottom: 0;
}

.navbar {
    box-shadow: 0px 4px 30px rgba(0, 28, 126, 0.14);
    position: relative;
    background-color: white;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 30px 10px 68px 10px;
}

.navbar > .container {
    padding: 15px 10px;
}

.navbar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
}

.red-text {
    width: 200px;
}

.hero-img {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;

    background-image: url("../img/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;

    position: absolute;
    top: 0;
    left: 0;
    padding: 44px 32px 88px 32px;

    background-image: url("../img/paint.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
}

@media screen and (max-width: 600px) {
    .navbar .logo {
        height: 28px;
        width: auto;
    }

    .navbar .red-text {
        height: 18px;
        width: auto;
    }
    
    .hero-img {
        aspect-ratio: 3 / 4;
        background-image: url("../img/hero-sm.jpg");
    }

    .hero-content {
        position: relative;
        max-width: 100%;
        padding: 24px 16px 64px 16px;

    }

    .hero-text {
      width: 75%;
      min-width: 240px;
      height: auto;
    }
  }

.webshop-btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    border-radius: 6px;
    color: #016AB3;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: fit-content;
}

.webshop-btn:hover {
    background: radial-gradient(68.03% 71.79% at 53.75% 100%, #A9DBFD 0%, #fff 100%), #fff;
}