/*
 Theme Name:   LeadGenera
 Description:  LeadGenera
 Author:       Keiran Martin
*/

:root {
    --primary-color: #393d48;
    --secondary-color: #ec6097;
    --bg-color: #f0ebea;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
 
html {
    scroll-behavior: smooth;
    scroll-padding-top: 250px !important;
}

.screen-reader-only {
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}

.wp-video, video{
    max-width: 100% !important; 
    display: block;
    margin: 50px auto;
}

.skip-link {
    background: #319795;
    color: #fff;
    font-weight: 700;
    left: 50%;
    padding: 4px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.skip-link:focus {
    transform: translateY(0%);
}

hr{
    border-top: 1px solid #fff;
    opacity: 1;
    width: 200px;
    margin: 30px auto;
}

picture{
    width: 100%
}
.adminLabel{
    display: none !important;
}
/*----------------------------
BODY / FONTS
----------------------------*/
@font-face {
    font-family: 'SegoePro';
    src: url('fonts/SegoePro-Semilight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'VAGRoundedLTProBlack';
    src: url('fonts/VAGRoundedLTPro-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'VAGRoundedLTProBold';
    src: url('fonts/VAGRoundedLTPro-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'VAGRoundedLTProLight';
    src: url('fonts/VAGRoundedLTPro-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    position: relative;
    font-family: 'SegoePro';
    color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'VAGRoundedLTProBold';
    font-weight: 700;
    color: #000;
}
h1{
    font-size: 40px;
    line-height: 47px;
}
h2{
    font-size: 37px;
    line-height: 42px;
}
h3{
    font-size: 27px;
    line-height: 32px;
}
h4{
    font-size: 25px;
    line-height: 32px;
}
h5{
    font-size: 23px;
    line-height: 32px;
}
small{
    font-size: 14px;
}

/*----------------------------
CONTENT
----------------------------*/
#app {
    margin-top: 80px;
}

/*----------------------------
FOOTER
----------------------------*/

footer{
    /* background: #F6F6F6; */
    background: #393d48;
    color: #fff;
    padding: 50px 0 0;
}
footer .bottom{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
footer .content{
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 100px;
}

footer .images{
    display: flex;
    align-items: center;
    justify-content: end;
}

footer #menu-footer{
    list-style: none;
    padding: 0;
    display: flex;
}

footer .links a{
    margin-right: 15px;
}

footer .images{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .images img{
    margin-bottom: 15px;
    max-width: 150px;
}

footer h4{
    font-size: 16px;
}

footer a{
    /* color: #A7204F; */
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    color: var(--secondary-color);
}
footer .date{
    margin: 30px 0;
}
footer .content img {
    height: 60px;
}
@media(max-width:1200px){
    footer .images{
        justify-content: center;
        flex-wrap: wrap;
    }
    
    footer .content{
        padding: 0;
    }
    footer .bottom{
        flex-direction: column;
        margin-bottom: 20px;
    }
}


/*----------------------------
BUTTONS
----------------------------*/
.btn{
    line-height: 16px;
    height: 48px;
    font-family: 'SegoePro';
    display: flex;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    max-width: fit-content;
}

.btn-primary{
    background: #FFF3F8;
    border: 2px solid #EB6097;
    color: #393d48;
    padding-top: 9px;
}

.btn-primary:hover{
    background: #EB6097!important;
    color: #fff!important;
    border: 2px solid #EB6097;
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #393d48;
    background-color: #fff;
    border-color: #EB6097;
}

.btn-primary:focus{
    background: #FFF3F8;
    color: #393d48;
    box-shadow: none;
    border: 2px solid #EB6097;
}


.btn-secondary{
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #fff;
}

.btn-secondary:hover{
    border: 2px solid #FFFFFF;
    background: #fff;
    color: #333333
}
@media(max-width: 576px){
    .btn{
        max-width: 100%;
    }
}

/*----------------------------
PAGINATION
----------------------------*/

#pagination ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

#pagination li{
    margin: 0 5px;
}

#pagination li a{
    font-size: 18px;
    font-weight: 700;
}

