/*
 Theme Name:   LeadGenera
 Description:  LeadGenera
 Author:       Keiran Martin
*/

:root {
    --primary-color: blue;
    --secondary-color: green;
}

#header, #footer{
    display:none;
}

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;
}
.align-left{
    margin: 50px 0;
}


.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%
}
/*----------------------------
BODY / FONTS
----------------------------*/
body{
    position: relative;
    z-index: 0;
    font-family: 'Roboto', sans-serif;
    color: #151C48;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: 0px;
    font-family: 'Gelasio', sans-serif;
    color: #151C48;
    font-weight: 700;
}

h1{
    font-size: 40px;
    line-height: 47px;
}
h2{
    font-size: 37px;
    line-height: 42px;
    margin-bottom: 20px;
}
h3{
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 20px;
}
h4{
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 20px;
}
h5{
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 20px;
}

small{
    font-size: 14px;
}

a{
    color: #CC1F27;
}


/*----------------------------
CONTENT
----------------------------*/
#app {
    margin-top: 88px;
}

/*----------------------------
FOOTER
----------------------------*/

footer{
    background: #151C48;
    padding: 50px 0 10px;;
}

footer h4{
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}

footer .date{
    margin-top: 70px;
}

footer .date p{
    color: #D6D6D6;
    text-align: center;
    margin: 0;
    font-weight: 300;
}

footer ul{
    padding-left: 0px;
}

footer a{
    text-decoration: none;
    color: #fff;
}

footer a:hover{
    color: #CC1F27;
}

/*----------------------------
BUTTONS
----------------------------*/
.btn-red{
    background: #CC1F27;
    border-radius: 2px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    min-width: 230px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    border: 1px solid #CC1F27
}

.btn-red:hover{
    background: #fff;
    color: #1A1A1A;
}

.btn-r-holo{
    background: #fff;
    border-radius: 2px;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 700;
    min-width: 230px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    border: 1px solid #CC1F27
}

.btn-r-holo:hover{
    background: #CC1F27;
    color: #fff;
}

.btn-w-holo{
    background: transparent;
    border-radius: 2px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    min-width: 230px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    border: 1px solid #fff
}

.btn-w-holo:hover{
    background: #fff;
    color: #1A1A1A;
}

@media(max-width: 576px){
    .btn{
        width: 100%!important;
    }
}

/*----------------------------
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;
}

