/*
 Theme Name:   LeadGenera
 Description:  LeadGenera
 Author:       Keiran Martin
*/

:root {
    --red: #196839;
    --green: #269553;
    --darkBlue: #23285C;
    --white: #ffffff;
    --offWhite: #F3F5F2;

    --roboto: "Roboto", sans-serif;
    --space: "Space Grotesk", sans-serif;
}

#header, #footer{
    display:none;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
 
html {
    scroll-behavior: smooth;
    scroll-padding-top: 250px !important;
}

.skip-link {
    background: #319795;
    color: #000;
    font-weight: 700;
    left: 50%;
    padding: 10px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}
.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:focus {
    transform: translateY(0%);
}

hr{
    border-top: 1px solid #fff;
    opacity: 1;
    width: 200px;
    margin: 30px auto;
}
.slick-autoplay-toggle-button{
    display: none!important;
}

/*----------------------------
BODY / FONTS
font-family: "Space Grotesk", sans-serif;
font-family: "Roboto", sans-serif;
----------------------------*/
body{
    position: relative;
    z-index: 0;
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: 0px;
    font-family: "Space Grotesk", sans-serif;
    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: #000;
    transition: .3s all ease;
}

a:hover{
    color: #A048C6;
    transition: .3s all ease;
}


/*----------------------------
CONTENT
----------------------------*/
#app {
    margin-top: 71px;
}

/*----------------------------
FOOTER
----------------------------*/
footer {
    background: var(--offWhite);
    padding: 50px 0 10px;
}
footer .date {
    margin: 50px 0 0;
}
footer .date p {
    margin: 0;
    text-align: center;
    font-weight: 300;
    font-size: 15px;
}
footer .content p {
    font-weight: 300;
    font-size: 15px;
    margin: 0;
}
footer .row {
    align-items: center;
}
footer .phone {
    color: var(--red);
}
footer .phone a {
    color: var(--red);
    text-decoration: none;
    font-size: 30px;
    font-family: var(--space);
    font-weight: 700;
}
footer .phone i {
    margin-right: 10px;
    font-size: 30px;
}
footer img {
    margin: 0 auto;
    display: block;
}
@media (max-width: 1400px) {
    footer .phone a {
        font-size: 20px;
    }
    footer .phone i {
        font-size: 20px;
    }
}
@media (max-width: 1200px) {
    footer .phone {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}


/*----------------------------
BUTTONS
----------------------------*/
.btn-red {
    background: #83BF42;
    font: normal normal normal 18px/18px Roboto;
    color: #000000;
    font-weight: 600;
    padding: 15px 20px;
    border: 1px solid #83BF42;
	width: fit-content!important
}
.btn-red i {
    margin-left: 10px;
}
.btn-red:hover {
    border: 1px solid #83BF42;
    background: #23285C;
    color: #fff;
}

@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;
}

