/*
 Theme Name:   LeadGenera
 Description:  LeadGenera
 Author:       Keiran Martin
*/

:root {
    --primary-color: blue;
    --secondary-color: green;
}

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
----------------------------*/
body{
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #0D0F12;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Poppins', sans-serif;
    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: 86px;
}

/*----------------------------
FOOTER
----------------------------*/
footer{
    background: #002237;
    padding: 40px 0 0;
    color: #fff;
    color: #FFF;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
}
footer a{
    color: #fff;
}
footer .date{
    text-align: center;
    margin: 90px 0 0;
}
footer .left img{
    margin-bottom: 70px;
}
footer .left{
    padding-right: 80px;
}
footer .right{
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
footer .right .btn{
    margin-bottom: 50px;
}
footer .right .email,
footer .right .phone{
    text-decoration: none;
    color: #FFF;
    text-align: right;
    font-family: 'Inter';
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.66px;
    padding: 10px 0;
}
footer .right .email:hover,
footer .right .phone:hover{
    color: #A1874B
}
footer .middle a{
    text-decoration: none;
}
footer .middle a:hover,
footer .date a:hover{
    color: #A1874B
}
footer .middle ul{
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
footer .middle .menu-item-17{
    padding: 0 20px;    
}
footer .middle .menu-item-17::after{
    content: '|';
    position: relative;
    left: 10px;
}
footer .middle .menu-item-17::before{
    content: '|';
    position: relative;
    right: 10px;
}

@media(max-width: 1400px){
    footer .middle ul{
        flex-direction: column;
    }
    footer .middle li{
        padding: 10px 0;
    }
    footer .middle .menu-item-17{
        padding: 0;    
    }
    footer .middle .menu-item-17::after,
    footer .middle .menu-item-17::before{
        content: '';
    }
}
@media(max-width: 1200px){
   footer .left{
        padding-right: 0;
       text-align: center;
       margin-bottom: 30px;
    } 
    footer .right{
        align-items: center;
        padding: 0;
        margin-top: 30px;
    }
}

/*----------------------------
BUTTONS
----------------------------*/
.btn-primary {
    border-radius: 50px;
    background: #A1874B;
    border: 1px solid #A1874B;
    display: flex;
    width: 270px;
    height: 57px;
    padding: 18px 38px 18px 37px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: 'Inter';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.54px;
}
.btn-primary:hover{
    background: #fff;
    border: 1px solid #314151;
    color: #314151;
}

@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;
}

