/*
 Theme Name:   LeadGenera
 Description:  LeadGenera
 Author:       Keiran Martin
*/

:root {
    --grey: #5F5F5F;
    --darkGrey: #4B4B4B;
    --white: #ffffff;
    --black: #000000;
}

#header, #footer{
    display:none;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
 
html {
    scroll-behavior: smooth;
}

.skip-link {
    background: #319795;
    color: #000;
    font-weight: 700;
    left: 50%;
    padding: 10px;
    position: absolute;
    transform: translateY(-200%);
    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%);
}

.slick-autoplay-toggle-button{
    display: none!important;
}

hr{
    border-top: 1px solid #fff;
    opacity: 1;
    width: 200px;
    margin: 30px auto;
}

/*----------------------------
BODY / FONTS
----------------------------*/
body{
    position: relative;
    z-index: 0;
    font-family: "futura-pt", sans-serif;
    color: var(--darkGrey);
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: 0px;
    font-family: "futura-pt", sans-serif;
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
}

h1{
    font-size: 25px;
    line-height: 33px;
}
h2{
    font-size: 24px;
    line-height: 31px;
}
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: 0px;
}

/*----------------------------
FOOTER
----------------------------*/
footer{
    background: var(--grey);
    padding: 50px 100px 0;
}

footer .date p{
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--white);
    font-weight: 300;
}

footer h2{
    color: var(--white);
    font-size: 18px;
}

footer ul{
    list-style-type: none;
    padding: 0;
}

footer li a{
    color: var(--white);
    text-decoration: none;
    /* text-transform: uppercase; */
    font-weight: 300;
    font-size: 14px;
}

footer li{
    margin-bottom: 10px;
}

footer h2{
    margin-bottom: 20px;
}
footer .socials i{
    color: #fff;
}
footer .socials a{
    font-size: 20px;
    padding: 0 4px;
}
#menu-works{
    column-count: 2;
}

@media(max-width:767px){
    footer{
        padding: 50px 15px 0;
    }
    #menu-works{
        column-count: 1;
    }
}
/*----------------------------
BUTTONS
----------------------------*/
.btn-black{
    background: var(--black);
    border-radius: 0;
    color: var(--white);
    text-transform: uppercase;
    border: 1px solid var(--black);
}

.btn-black:hover{
    background: var(--white);
    border-radius: 0;
    color: var(--black);
    text-transform: uppercase;
    border: 1px solid var(--black);
}

@media(max-width: 576px){
    .btn{
        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;
}

