:root {
  --color-1: #424240;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1 {
    color: #d62e42;
    font-size: 1.5rem;
}

h4 {
    font-size: 1rem;
}

.bodywidth {
    max-width: 100%;
}

.flex-wrapper {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     min-height: 80vh;
}

.optionrow select {
     margin-right: 3vw;
     max-width: 120px;
     padding: 5px 10px;
     width: 100%;
}

#vwquantity {
     color: #424242;
     font-size: 15px;
     font-weight: 600;
     height: 30px;
     margin-right: 2.5vw;
     text-align: center;
     width: 110px;
}

body {
    background-color: #ffffff;
    flex-direction: column;
    font: normal .875rem Montserrat, sans-serif;
    margin: 0px;
    max-width: 100%;
    min-height: 100vh;
    padding: 0px;
    position: relative;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    display: flex;
    margin: auto;
    max-width: 100%;
    padding-bottom: 7vh;
    padding-top: 3vh;
    position: relative;
}

.container-2 {
    display: flex;
    margin: auto;
    max-width: 70%;
    padding-bottom: 4vh;
    padding-top: 3vh;
    position: relative;
}

.container-3 {
    display: flex;
    margin: auto;
    max-width: 100%;
    padding-bottom: 0;
    padding-top: 3vh;
    position: relative;
}

.textalign {
    margin: auto;
    max-width: 100%;
    text-align: center;
}

.row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.column {
  flex: 20%;
  padding: 2vw;
} 

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
}

.button-2 {
    background-color: red; /* For browsers that do not support gradients */
    background-image: linear-gradient(#d62e42, #912536);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    margin: 0;
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

p {
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.center {
    margin: auto;
    text-align: center;
    width: 80%;
}

.header {
    background-color: var(--color-1);
    padding:12px 0;
    position: relative;
}

.header .logo,
.header .nav {
    padding:0 5vw;
    z-index: 1;
}

.header .logo a {
    color: #ffffff;
    font-size: 1.875rem;
    text-transform: capitalize;
}

.header .nav ul li {
    display: inline-block;
    margin-left: 40px;
}

.header .nav ul li a {
    color: rgba(255,255,255,0.7);
    display: block;
    font-size: .938rem;
    padding: 10px 0;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.header .nav ul li a:hover,
.header .nav ul li a.active {
    color: #ffffff;
}

.header #nav-check {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.nav-toggler {
    align-items: center;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    height: 34px;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
    width: 44px;
}

.nav-toggler span {
    background-color: var(--color-1);
    display: block;
    height: 2px;
    position: relative;
    width: 20px;
}

.nav-toggler span::before,
.nav-toggler span::after {
    background-color: var(--color-1);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.nav-toggler span::before {
    top: -6px;
}

.nav-toggler span::after {
    top: 6px;
}


@media(max-width: 991px) {
    .nav-toggler {
        display: flex;
}

    .header .logo {
        width: 27vw;
}

    .column {
        flex: 50%;
}

    h1 {
        font-size: 2rem;
}

    h4 {
        font-size: 1rem;
}

    .header .nav {
        background-color: var(--color-1);
        border-top: 1px solid rgba(255,255,255,0.2);
        left: 0;
        opacity: 0;
        position: absolute;
        top: 100%;
        visibility: hidden;
        width: 100%;
}

    .header .nav ul li {
        display: block;
        margin: 0;
}

    .header #nav-check:checked ~ .nav {
         opacity: 1;
         visibility: visible;
}

    .header #nav-check:focus ~ .nav-toggler {
        box-shadow: 0 0 15px #000000;
}

    .header #nav-check:checked ~ .nav-toggler span {
        background-color: transparent;
}

    .header #nav-check:checked ~ .nav-toggler span::before {
        top:0;
        transform: rotate(45deg);
}

    .header #nav-check:checked ~ .nav-toggler span::after {
        top:0;
        transform: rotate(-45deg);
}

    html {
        background-color: #ffffff;
        height: 100%;
}

    .grid-container > div {
        font-size: 1.5vw;
        padding: 4vw 0;
}
}

@media screen and (max-width: 768px) {
      h1 {
        font-size: 1.5rem;
}

      h4 {
        font-size: .75rem;
}
}

@media screen and (max-width: 415px) {
    .header .logo {
        width: 40vw;
}
}



