:root {
    --primary-color: #607D8B;
    --secondary-color: #2F3032;
    --tertiary-color: #333333;
    --primary-text-color:#ffffff;
    --secondary-text-color:#ffffff;
    --tertiary-text-color:#ffffff;
    --primary-font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
    --secondary-font-family:'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

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

a:hover{
    text-decoration:none;
    cursor:pointer;
}
.text-primary{
    opacity: 1 !important;
}

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


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

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

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

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

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

.btn-tertiary:hover{    
    background: var(--tertiary-text-color) !important;
    color: var(--tertiary-color) !important; 
    border-color: var(--tertiary-text-scolor);
}
button:focus{
    outline:none !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var( --secondary-font-family);
}

.btn {
    font-family: var( --secondary-font-family);
    border: none;
    border-radius: 0px !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    text-shadow: none !important;
}
.opacity{
    width: 100%;
    height:100%;
    background: rgba(0,0,0, .25);
    left: 0px;
    top:0px;    
}

.modal h3, .modal h2, .modal h1, .modal h4, .modal h5, .modal h6{
    color: #ffffff;
    text-shadow: none !important;
    z-index: 1;
}

.modal p{
   color: #ffffff;
   text-shadow: none !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: var(--primary-text-color);
    opacity: .8;
}

 .modal-header, .modal-footer{
    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;
}


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


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

    h3{
        font-size: 35px !important;
    }
    
    h4{
        font-size: 26px !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;
    }
    h3{
        font-size: 25px !important;
    }
    
    h4{
        font-size: 22px !important;
    }

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

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

    h2{
        font-size:25px !important;
    }
    h3{
        font-size: 22px !important;
    }
    h4{
        font-size: 20px !important;
    }

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