:root {
    --bs-primary: #a50202;
    --bs-primary-rgb: 165, 2, 2;
    --bs-link-color: #a50202;
    --bs-link-color-rgb: 165, 2, 2;
    --bs-border-color: #545454;
    --bs-btn-bg-hover: #8a0202;
    --bs-link-hover-color: #8a0202;
    --bs-link-hover-color-rgb: 138, 2, 2;
    --bs-border-radius: 8px;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    letter-spacing: .02rem;
    font-weight: 400;
}

a {
    text-decoration: none;
}

main {
    min-height: calc(100vh - 260px);
}

#logo {
    padding-left: 100px;
    height: 80px;
    line-height: 80px;
    background: url(../images/logo.svg) no-repeat left center;
    background-size: contain;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--bs-primary);
    font-size: 1.5rem;
}

@media (min-width: 1200px) {
    #logo {
        padding-left: 120px;
        height: 100px;
        line-height: 100px;
        font-size: 2rem;
    }
}

header .menu,
header ul {
    display: inline;
}

header ul,
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header li {
    display: inline;
    margin: 0 .5rem;
}

@media (min-width: 1200px) {
    header li {
        margin: 0 1rem;
    }
}

header a {
    color: #000;
    -webkit-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

header a:hover {
    color: var(--bs-link-hover-color);
}

footer li {
    padding-bottom: .5rem;
}

footer a {
    color: #fff;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: var(--bs-btn-bg-hover);
    border-color: var(--bs-btn-bg-hover);
}

.btn-secondary {
    background-color: #4267B2;
    border-color: #4267B2;
}

.btn-secondary:hover {
    background-color: #3b5998;
    border-color: #3b5998;

}

p:last-child {
    margin-bottom: 0;
}

.custom-accordion-item {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    margin-bottom: 1rem;
}

.custom-accordion-header {
    cursor: pointer;
}

.custom-accordion-header i {
    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.custom-accordion-header.active i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.testimonials-container {
    background: rgb(177, 39, 45);
    background: linear-gradient(0deg, rgba(177, 39, 45, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.testimonial-item {
    margin-top: 80px;
}

.card {
    border: 0;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.card-image {
    width: 160px;
    height: 160px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: -80px auto 0;
    background: no-repeat center center;
    background-size: cover;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    left: -10px;
    font-size: 32px !important;
    color: var(--bs-primary) !important;
    margin-top: -24px;
}

.owl-next {
    left: auto;
    right: -10px;
}

@media (min-width: 992px) {

    .owl-next,
    .owl-prev {
        left: 10px;
        font-size: 42px !important;
        margin-top: -32px;
    }

    .owl-next {
        left: auto;
        right: 10px;
    }
}

.text-primary>a {
    color: var(--bs-primary);
}

iframe {
    max-width: 100%;
    width: 635px;
    height: 200px;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    iframe {
        height: 360px;
    }
}

#menu {
    width: 48px;
    height: 48px;
    background: url(../images/menu.png) no-repeat center center;
    background-size: 32px 32px;
}

@media (max-width: 991px) {
    #menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid var(--bs-border-color);
        padding: 1rem 0;
        -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
        display: none;
    }

    #menu-container.active {
        display: block;
    }

    #menu-container ul {
        display: block;
        text-align: center;
    }

    #menu-container li {
        display: block;
        margin: 0 0 .5rem 0;
    }
}

.woocommerce-cart .product-quantity {
    display: none !important;
}

a.button,
button.button {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

a.button:hover,
button.button:hover {
    background: var(--bs-btn-bg-hover) !important;
}

.input-text {
    /* bootstrap form-control styling */
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-text:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.cart #coupon_code {
    width: 200px;
}

#customer_details {
    padding-bottom: 1rem;
}

.woocommerce-MyAccount-content p:nth-child(3) {
    display: none;
}

.woocommerce-additional-fields>h3 {
    display: none !important;
}

.btn-huge {
    padding: 1rem 2rem;
    font-size: 2rem;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.product-thumbnail {
    display: none;
}