:root {
    --primaryColor: #2d37bd;
    --secondaryColor: #97845a;
    --bgColor: #eeebe3;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #333;
    background: var(--bgColor);
}

.site-sections {
    padding: 2.5em 0;
}
a {
    text-decoration: none;
}
.logo{
    width: 8em;
}
.nav-cancel, a.nav-link.text-light.bg-danger.fs-6.navUnderline{
    background-color: var(--secondaryColor) !important;
    border-radius: 10px;
}
.hero {
    background:
      linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      url('../img/background1440pGS150.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-height: 500px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.helpline {
    background: #f5f5f5;
}
.help-icon{
    font-size: 16px;
}
.help-icon i{
    color: var(--primaryColor);
    padding-right: 5px;
}
.navbar {
    box-shadow: none;
    background: var(--bgColor) !important;
}

.need-help {
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    font-weight: 900;
}

.lead {
    font-size: 20px;
    color: white;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 0;
}

.contact-details {
    font-size: 14px;
    color: white;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 0;
}

.btn.btn-white {
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.btn.btn-white:hover {
    background-color: #fff;
    color: var(--primaryColor);
}

.section-sub-title {
    font-size: 13px;
    color: var(--secondaryColor);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title {
    color: var(--primaryColor);
    font-size: 40px;
    font-weight: 900;
}
.need-help{
    color: var(--primaryColor);
}
.header-primary{
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 28px;
}
.product-item-2 .product-title-wrap {
    position: relative;
    z-index: 2;
}

.product-item-2 .number {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondaryColor);
}

.btn.btn-black {
    border-width: 2px;
    background: #000;
    color: #fff;
    font-size: 22px;
}

.btn.btn-black:hover {
    background: var(--primaryColor);
    color: #fff;
}

.product-item figure {
    overflow: hidden;
    position: relative;
    margin: 0;
}

.product-item figure:before {
    z-index: 2;
    -webkit-transition: .4s all ease;
    -o-transition: .4s all ease;
    transition: .4s all ease;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    position: absolute;
    content: "";
    border: 4px solid var(--primaryColor);
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
}

.product-item figure img {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 100%;
}

.product-item:hover figure:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.product-item:hover figure img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


.image-subheader {
    background-color: #fff;
    color: #333;
}

.btn.btn-spec {
    background: var(--secondaryColor);
    color: #000;
}

.btn.btn-spec, .btn.btn-black {
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 20px;
}

.btn.btn-spec:hover{
    background: var(--primaryColor);
    color: #fff;
}

.footerBackground {
    background-color: #000;
}

@media only screen and (max-width: 768px) {
    .nav-wrapper {
        justify-content: center !important;
    }
}