/*
 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;
}
.slick-autoplay-toggle-button{
    display: none;
}
/*----------------------------
BODY / FONTS
----------------------------*/
body{
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: #0D0F12;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Oswald', 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: 80px;
}

/*----------------------------
FOOTER
----------------------------*/
footer {
    padding: 30px 0;
    background: #060406;
}
footer .row {
    align-items: center;
}
footer .top ul {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
}
footer .top ul li {
    margin-right: 20px;
}
footer .top ul li a {
    color: #DEDEDE;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    text-decoration: none;
}
footer .line {
    background: #585858;
    height: 2px;
    margin: 20px 0;
}
footer .bottom {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991px) {
    footer .bottom {
        flex-direction: column;
        align-items: start;
    }
}
footer .bottom .left {
    display: flex;
}
@media (max-width: 1200px) {
    footer .bottom .left {
        flex-direction: column;
    }
}
@media (max-width: 1200px) {
    footer .bottom .left .links {
        margin-bottom: 10px;
    }
}
footer .bottom .left .links a {
    color: #B7B7B7;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-right: 20px;
}
footer .bottom .left .socials img {
    width: 18px;
}
footer .bottom .left .socials a {
    text-decoration: none;
}
@media (max-width: 991px) {
    footer .bottom .left .socials {
        margin-bottom: 10px;
    }
}
footer .bottom .right p {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
}

@media(max-width:576px){
    footer .logo{
        margin: 0 auto;
        display: block;
    }
}

/*----------------------------
BUTTONS
----------------------------*/

.btn-main {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #00FDF2;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
    padding: 0;
}
.btn-main:hover {
    color: #00FDF2;
}


@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;
}

/* =======================================================
ANIMATIONS
=======================================================*/
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}