:root {
    --primary-color: #ef6249;
    --secondary-color: #2F3032;
    --tertiary-color: #333333;
    --primary-text-color:#ffffff;
    --secondary-text-color:#ffffff;
    --tertiary-text-color:#ffffff;
    --primary-font-family: 'Open Sans', sans-serif;

    --xs-font-size: 16px;
    --sm-font-size: 18px;
    --md-font-size: 24px;
    --lg-font-size: 30px;
    --xl-font-size: 40px;

}

body{
    font-family: var(--primary-font-family);
}

a:hover{
    text-decoration:none;
    cursor:pointer;
}

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

.btn-secondary{
    background: var(--secondary-color);
    color: var(--secondary-text-color);
    border-color: var(--secondary-color);
}

.btn-tertiary{
    background: var(--tertiary-color);
    color: var(--tertiary-text-color);
    border-color: var(--tertiary-color);
}
.btn-primary:hover{
    background: var(--primary-text-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.btn-secondary:hover{
    background: var(--secondary-text-color) !important;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.btn-tertiary:hover{
    background: var(--tertiary-text-color) !important;
    color: var(--tertiary-color) !important;
    border-color: var(--tertiary-scolor);
}

.btn {
    width: auto;
    margin-right: 4px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
    box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
    margin: 5px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
}

.opacity{
    width: 100%;
    height:100%;
    background: rgba(0,0,0, .25);
    left: 0px;
    top:0px;
}

.bg-none{
    background: none !important;
}

.row-pb{
    padding-bottom: 7em;
}

.card{
    color:black;
    text-shadow: none;
}

.parallax{
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/*Modal*/

.modal .close span{
    margin-bottom: 0px !important;
    font-size: 30px !important;
}


.modal-dialog .modal-header{
    background: var(--primary-color);
    font-family: var(--primary-font-family);
    position: relative;
}

 .modal-dialog .modal-header:before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,.85);
}

 .modal-header, .modal-footer{
    z-index:1;
    border-bottom: none;
    border-top: none;
}

 .modal-header h4{
    font-size:22px;
    font-weight: 400;
    margin: 0px auto;
    z-index: 1;
    color: #fff;
}
 .modal-header h4 span{
    margin-right: 10px;
}

 .modal-header .close {
    padding: 0px;
    margin: 0px;
    text-shadow: none;
    color: #fff;
}

 .modal-header .close{
    order: 1;
}

/*Pagination*/


.pagination{
    margin-top: 50px;
}

.pagination .page-item{
    border-color: var(--primary-color);
    background: var(--primary-color);
    position: relative;
}

.pagination .page-item.disable .page-link{
    opacity: .5;
    background: var(--primary-color);

}

.pagination .page-item.disable .page-link span{
    color: var(--primary-text-color);
}

.pagination .page-item.active .page-link{
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link span{
    color: var(--primary-text-color);
}

.pagination .page-item .page-link{
    background: transparent;
    margin: 0px;
    border:none;
}
.pagination .page-item:before{
    content: "";
    background: var(--primary-text-color-inverse);
    opacity: .5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.pagination .page-item:hover:before{
   opacity: .8;
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

.pagination .page-item .page-link span{
    color: var(--primary-text-color);
    opacity: 1;
    margin-bottom: 0px;
}

/*breadcrumb*/

.section-product .categories .breadcrumb{
    background: transparent;
}

.section-product .categories .breadcrumb a{
    color : #000;
}

.lg-backdrop{
    z-index: 1060;
}
.lg-outer {
    z-index: 1080;
}

.page.section {
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (max-width: 769px) {
    h2{
        font-size:40px !important;
    }

    h4{
        font-size: 26px !important;
        margin-bottom: 24px !important;
    }

    h5{
        font-size: 24px !important;
    }

    p{
        font-size: 16px !important;
    }
}


@media screen and (max-width: 425px) {

    h2{
        font-size:30px !important;
        margin-bottom: 10px;
    }

    h4{
        font-size: 22px !important;
    }

    h5{
        font-size: 20px !important;
    }
}

@media screen and (max-width: 320px) {

    h2{
        font-size:25px !important;
    }

    h4{
        font-size: 20px !important;
    }

    h5{
        font-size: 18px !important;
    }

    p:not(.product-value p){
        font-size: 14px !important;
    }
}
