:root {
    --color-red: #490303;
    --color-white: #f8f6f2;
    --color-black: #00171f;
    --color-blue: #50858b;
    --color-orange: #cb793a;
    --color-blue-dark: #437075;
}

@font-face {
    font-family: Oswald;
    src: url('../fonts//Oswald.woff');
}

@font-face {
    font-family: Quattrocento Sans;
    src: url('../fonts/QuattrocentoSans-Regular.woff');
}

h1,
h2,
h3,
button {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
}

p,
a,
span {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 16px;
}

main {
    min-height: 100vh;
}

footer {
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

li {
    list-style: none;
}

a {
    text-decoration: none !important;
}

iframe {
    border-radius: 5px;
}

table {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    border-collapse: collapse;
    margin: 0 auto;
}

td {
    border: none;
    text-align: left;
    padding: 8px 10px;
}

tr:nth-child(even) {
    background-color: var(--color-white);
}

.form-check-input:checked {
    background-color: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
}

.accordion-body {
    margin-bottom: 0 !important;
}

.accordion-item {
    border: 0;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button-white.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button-white-collapsed.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* FONTS */

.main-head {
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sub-head {
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.category-head {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.headline-top-line {
    font-size: 20px;
}

.headline-bottom-line {
    line-height: 15px;
}

.label-text {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.body-text {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
}

.title-text {
    font-size: 16px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: bolder;
}

.bold-text {
    font-weight: bolder;
}

.text-black {
    color: var(--color-black) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-orange {
    color: var(--color-orange) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.small-text {
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
}

.underline {
    border-bottom: 1px solid var(--color-blue);
}

/* NAVIGATION */

.navbar-top {
    top: 10px;
    width: 100%;
}

.navbar-bottom {
    top: 80px;
    width: 100%;
}

.navbar-brand {
    margin-left: 20px;
    width: 170px;
}

.navbar-brand.absolute {
    left: 50%;
    transform: translate(-50%);
}

.nav-link.active {
    border: 2px solid var(--color-red);
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    filter: brightness(90%);
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
}

.mobile-nav {
    display: none;
}

.mobile-nav-list {
    position: fixed;
    top: -1000px;
    z-index: 3;
    width: 100%;
    transition: top 0.5s;
    overflow-y: scroll;
    overflow-x: hidden;
}

.mobile-nav-search {
    position: fixed;
    top: 15px;
    left: 15px;
}

.header-category {
    flex-wrap: wrap;
    justify-content: center;
}

.header-category-mobile {
    height: 400px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.bg-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.25);
    z-index: 2;
    width: 100vw;
    height: 100vh;
}

.footer-list {
    min-width: 220px;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.footer-list li a {
    color: var(--color-white) !important;
}

.footer-list li a:hover {
    filter: brightness(0.9);
}

.mobile-footer {
    display: none;
}

.search-input {
	border: 0;
	outline: none;
	border-radius: 5px;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
}
/* UTILITIES */

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.vp-100 {
    min-height: 100vh;
    min-width: 100vw;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.mr-3 {
    margin-right: 15px;
}

.bg-red {
    background-color: var(--color-red);
    color: var(--color-white);
}

.bg-red-gradient {
	background: linear-gradient(90deg, rgba(98,4,4,.9) 20%, rgba(73,3,3,1) 100%);
	color: var(--color-white);
}

.bg-black {
    background-color: var(--color-black);
    color: var(--color-white);
}

.bg-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.bg-orange {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.bg-transparent {
    background-color: transparent;
    color: var(--color-white);
}

.pointer {
    cursor: pointer;
}

.text-right {
    text-align: right;
}

.center-absolute {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.p-80 {
    padding-top: 80px;
}

.p-no-hero {
    padding-top: 100px;
}

.margin-bottom-lg {
    margin-bottom: 100px;
}

.line-height-sm {
    line-height: 0.85;
}

.border-right {
    border-right: 1px solid var(--color-black);
    padding-right: 10px;
}

/* ICONS */

.icon-search {
    color: white;
    cursor: pointer;
    font-size: 24px;
}

.fa-shopping-cart {
    font-size: 24px;
}

.fa-quote-left,
.fa-quote-right {
    font-size: 50px;
    color: var(--color-orange);
    opacity: 0.5;
}

.fa-quote-left {
    left: 20%;
}

.fa-quote-right {
    right: 22%;
    bottom: 5%;
}

.social-media-icon {
    margin-right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.social-media-icon:hover {
    filter: brightness(75%);
}

.fa-facebook {
    color: #1877f2;
}

.fa-twitter {
    color: #1da1f2;
}

.fa-instagram {
    color: #e1306c;
}

.service-icon,
.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: var(--color-blue);
}

/* BUTTONS */

.btn-som {
    border-radius: 5px;
    padding: 15px 25px !important;
    outline: none;
    border: 0;
    min-width: 150px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.btn-som:hover {
    filter: brightness(75%);
}

.btn-blue {
    background-color: var(--color-blue) !important;
    color: var(--color-white) !important;
}

.mobile-button {
    display: none;
}

/* HERO SECTION */

.hero-img {
    width: 350px;
    transform: rotate(-23deg);
}

.hero-transparent {
    opacity: 0.5;
}

/* SLIDERS */

.prev-slide1,
.prev-slide2,
.prev-slide3,
.prev-slide4,
.prev-slide5,
.next-slide1,
.next-slide2,
.next-slide3,
.next-slide4,
.next-slide5 {
    position: absolute;
    font-size: 40px;
    opacity: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.next-slide1,
.next-slide2,
.next-slide3,
.next-slide4,
.next-slide5 {
    right: 0;
}

.vendor-logos {
    display: flex !important;
}

/* CART AND CHECKOUT */

.gui-block-subtitle {
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* OTHER */

.about-us-card {
    width: 30%;
    margin: 20px 10px;
}

.about-us-card img {
    width: 100%;
    border-radius: 5px;
}

.product-listing-container {
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    border-radius: 5px;
}

.product-listing-card,
.related-product-listing-card,
.slider-card {
    background-color: var(--color-white);
    border: 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin: 5px;
    cursor: pointer;
    position: relative;
}

.slider-card,
.product-listing-card {
    height: 400px;
}

.slider-card {
    max-width: 300px;
}

.product-listing-card {
    width: 30%;
	max-width: 300px;
}

.related-product-listing-card {
    width: 20%;
    height: 350px;
}

.product-listing-card:hover,
.related-product-listing-card:hover,
.slider-card:hover {
    filter: brightness(98%);
}

.product-listing-card img,
.slider-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin: 0 auto;
}

.related-product-listing-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin: 0 auto;
}

.card-body {
    height: 135px;
}

.special-offer-img {
    border-radius: 5px;
    width: 95% !important;
    margin: 5px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.special-offer-img:hover {
    filter: brightness(95%);
}

.badge {
    border-radius: 50px !important;
    padding: 8px 12px !important;
}

.badge-top {
    top: 10px;
    right: 10px;
    background-color: var(--color-blue);
    font-family: 'Quattrocento Sans', sans-serif;
}

.badge-bottom {
    bottom: 10px;
    right: 10px;
    background-color: var(--color-orange);
    font-family: 'Quattrocento Sans', sans-serif;
}

.service-features {
    margin: -50px auto 0 auto;
    justify-content: center;
}

.card__service-feature {
    background-color: var(--color-white);
    border: 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    height: 300px;
    width: 280px;
    margin: 0 10px;
}

.av-logo {
    width: 200px;
    margin: 0 10px;
}

.testimonial p {
    width: 50%;
    margin: 0 auto;
}

.slider__value {
    color: var(--color-black);
}

.footer-link {
    color: var(--color-white);
    font-size: 18px;
    font-family: 'Quattrocento Sans', sans-serif;
}

.footer-link:hover {
    color: var(--color-white);
    filter: brightness(85%);
}

.contain {
    width: 150px;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-inner {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.product-img-container {
    height: 500px;
    width: 500px;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    width: 100%;
    position: relative;
}

.carousel-indicators button {
    background-color: var(--color-blue) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
}

.product-detail-callout {
    background-color: var(--color-black);
    margin: 50px 10px;
    padding: 20px 10px;
    border-radius: 5px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 120px;
    text-align: center;
}

.product-detail-callout p {
    margin: 0;
}

.pagination-item {
    background-color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    cursor: pointer;
}

.pagination-item.active {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.pagination-item:hover {
    filter: brightness(95%);
}

.sort-select {
    width: 30%;
}

.sort-select select {
    width: 100%;
}

.accordion-button:not(.collapsed) {
    color: var(--color-white);
    background-color: var(--color-blue);
}

.cart-counter {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 14px;
    right: -30%;
    bottom: -30%;
    opacity: 0.9;
}

.affirm-logo {
    width: 60px;
    padding-left: 10px;
}

.breadcrumb-link {
    color: var(--color-orange) !important;
}

.breadcrumb-link:hover {
    font-weight: bolder;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 1980px) {
    .nav-item a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1730px) {
    .nav-item a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1000px) {
    .card__service-feature {
        width: 100%;
        margin: 10px 0;
    }
    .mobile-nav {
        display: flex;
    }
    .mobile-footer {
        display: block;
    }
    .mobile-button {
        display: block;
    }
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
    }
    .desktop-nav {
        display: none !important;
    }
    .desktop-footer {
        display: none;
    }
    .nav-item {
        width: 100%;
        padding: 10px;
        cursor: pointer;
        border-radius: 5px;
    }
    .product-detail-callout {
        margin: 10px;
    }
    .p-no-hero {
        padding-top: 50px;
    }
    .margin-bottom-lg {
        margin-bottom: 75px;
    }
    .testimonial p {
        width: 80%;
    }
    .fa-quote-left {
        left: 5%;
    }
    .product-listing-card {
        width: 47%;
    }
    .about-us-card {
        width: 45%;
    }
}

@media only screen and (max-width: 600px) {
    .special-offer-img {
        width: 368px !important;
    }
    .prev-slide1,
    .prev-slide2,
    .prev-slide3,
    .prev-slide4,
    .next-slide1,
    .next-slide2,
    .next-slide3,
    .next-slide4 {
        display: none;
    }
    .about-us-card {
        width: 90%;
        margin: 20px auto;
    }
}
