body {
    font-family: 'Source Sans Pro', Arial, sans-serif !important;
    font-weight: 400;
}

a {
    text-decoration: none !important;
    margin: 0;
    padding: 0;
}

header,
footer {
    background: #c52127;
}

.navbar {
    padding: .5rem 0 !important;
}

.nav-link {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px;
    padding: 10px 22px 10px 22px !important;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.nav-link:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

.navbar-brand img {
    width: 300px;
}

footer p {
    color: #fff !important;
    margin: 0;   
}

h2 {
    font-family: 'Bebas Neue', cursive !Important;
    color: #c52127;
    border-bottom: 1px solid #c52127;
    display: inline-block;
    margin: 0;
    line-height: .8;
    font-size: 36px;
}

.modal-header h2 {
    font-size: 26px;
}

label span {
    color: #c52127;
}

label.error {
    color: #c52127;
    font-size: 14px;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease-in-out;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: #c52127;
}

textarea {
    resize: none;
}

.product-wrap {
    margin-top: 35px;
    box-shadow: 0 4px 10px rgba( 0,0,0,0.05 );
}

.btns {
    background: #ffffdd;
    border-top: none;
}

.btn-custom {
    background: #ffffff;
    color: #c52127;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 15px;
    transition: all 0.5s ease-in-out;
}

.product-wrap:hover .btn-custom,
.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
    color: #ffffff;
    background: #c52127;
}

input.btn-custom {
    text-transform: uppercase;
    min-width: 150px;
    text-align: center;
    padding: 10px 35px;
}

.btns p {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1;
}

.image-wrap {
    min-height: 200px;
    background: #e0e0e0;
    border-bottom: none;
}

.image-wrap img:hover {
    cursor: zoom-in;
}

@media( max-width: 500px ) {
    .image-wrap {
        min-height: 150px;
    }
}

@media( max-width: 380px ) {
    .image-wrap {
        min-height: 100px;
    }
}

@media( max-width: 768px ) {
    .navbar-brand img {
        width: 200px;
    }

    h2 {
        font-size: 50px;
    }
}

@media( max-width: 444px ) {
    .btn-custom {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    input.btn-custom {
        padding: 10px 35px;
        font-size: 15px;
    }
    
    .btns p {
        font-size: 14px;
    }
}

@media( max-width: 375px ) {
    .btn-custom {
        padding: 8px 10px;
        font-size: 14px;
        max-width: auto;
        width: calc( 50vw - 30px );
    }

    .btns p {
        font-size: 14px;
        padding: 8px 10px;
    }
}

.filter-selector h5 {
    margin: 0px;
    font-size: 16px;
}

.filter-selector p {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 700;
}

.filter-selector select {
    width: 300px;
    border: 1px solid #e0e0e0 !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    font-size: 15px;
    padding: 5px 10px;
}

@media( max-width: 600px ) {
    .filter-selector select {
        padding: 10px 15px;
        font-size: 16px;
        background: transparent;
        width: 100%;
    }

    .filter-selector h5 {
        font-size: 19px;
    }
    
    .filter-selector p {
        font-size: 16px;
    }
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 95%;
    max-width: 500px;
    min-height: 100px;
    transform: translate(-50%,-50%);
    background: #c52127;
    z-index: 999;
    box-shadow: 0px 5px 10px rgba( 0,0,0,0.15 );
}

.popup .close-btn {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ebb321;
    z-index: 3;
    top: 0px;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.popup .close-btn:after,
.popup .close-btn:before {
    position: absolute;
    z-index: 4;
    content: "";
    width: 70%;
    height: 2px;
    border-radius: 50%;
    background: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.popup .close-btn:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#myModallightbox .modal-dialog {
    max-width: 800px !important;
    margin: 1.75rem auto;
}