/* Reset CSS - Clean Base */

/* Remove Default Margins and Paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Resets base body styles */
body {
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    background-color: #fff;
    color: #000;

}

/* Default paragraph styles */
p {
    margin: 0 0 1em;
}

/* Default Link */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Default list styles */
ul, ol {
    list-style: none;
    padding-left: 1.5em;
}

/* Reset titles */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 0 0 0.5em;
    line-height: 1.2;
}

h1 { font-size: 2.75rem; color: #0000FF; text-transform: uppercase; }
h2 { font-size: 2.25rem; color : #FF6D01; text-transform: uppercase; }
h3 { font-size: 1.5em; color : #000; }
h4 { font-size: 1.25em; color : #000;}
h5 { font-size: 1em; color : #000; }
h6 { font-size: 0.875em; color : #000;   }


/* Reset Buttons */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: inherit;
    padding: 0.5em 1em;
}

/* Responsives Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Primary Button Styles */

.btn-primary {
    position: relative !important;
    overflow: hidden !important;    
    border: solid 1px #0000FF;
    color: transparent !important;
    transition: all .6 ease !important;
    margin-top: 50px;
}

.btn-primary::before {
    content: '' !important; 
    position: absolute ;
    top: 0;
    left: -100% !important; 
    width: 100%;
    height: 100%;
    background-color: #FFF;  
    color: #fff !important;
    transition: left 0.6s ease-in-out;
    z-index: 2;
}


.btn-primary:hover::before {
    left: 0 !important; 
}

.btn-primary::after {
    width: 100%;
    position: absolute;
    color: #FFF;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 50px;
    z-index: 5;
    transition: color 0.6s ease;
}

.btn-primary:hover::after {
    color: #0000FF !important;
}

/* Secondary Button Styles */

.btn-secondary {
    position: relative !important;
    overflow: hidden !important;    
    border: solid 1px #FF6D01;
    color: #FF6D01 !important;
    transition: all .6 ease !important;
}

.btn-secondary {
    color: #FF6D01 !important;
}

.btn-secondary:hover {
    background-color:  transparent !important;
    color: #FFF !important;
}

.btn-secondary::before {
    content: '' !important; 
    position: absolute ;
    top: 0;
    left: -100% !important; 
    width: 100%;
    height: 100%;
    background-color: #FF6D01;  
    color: #fff !important;
    transition: left 0.6s ease-in-out;
    z-index: -1;
}


.btn-secondary:hover::before {
    left: 0 !important; 
}

/* Hide Single metas */

.single .post-categories {
    display: none !important;
}

.single .post-meta {
    display: none !important;
}


