/*
 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: "Ropa Sans", sans-serif;
    color: #fff;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: #fff;
}
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: 100px;
}

/*----------------------------
FOOTER
----------------------------*/
footer {
    background: #1A1424;
    padding: 10px;
}
footer img {
    margin-bottom: 20px;
}
footer .date {
    color: #B7B7B7;
    text-align: center;
    font-family: "Ropa Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/*----------------------------
BUTTONS
----------------------------*/
.btn{
    border-radius: 5px;
    border: 1px solid #000;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding: 15px;
}
.btn-primary{
    background: #EE3195;
    border-color: #EE3195;
}
.btn-secondary{
    background: #9F2CC5;
    border-color: #9F2CC5;
}
.btn:hover{
    background: #fff;
    color: #EE3195;
    border-color: #EE3195;
}
@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;
}

/* =======================================================
NAV
=======================================================*/
#nav {
    position: fixed;
    margin-bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #1a1424;
    padding: 15px 0;
}
#nav .container {
    display: flex;
    justify-content: space-between;
    align-content: center;
}
#nav .left img {
    height: 70px;
}
#nav .right {
    display: flex;
    align-items: center;
}
@media(max-width: 767px){
    #nav .right{
        display: none;
    }
    #nav .container {
        justify-content: center;
    }
}
/* =======================================================
DOWNLOAD MODAL
=======================================================*/
#downloadModal .modal-content {
    background-color: #022B31;
    border-radius: 10px;
}
#downloadModal .modal-header {
    border-bottom: none;
}
#downloadModal .btn-close {
    color: #fff !important;
    background: none !important;

}
#downloadModal .btn-close::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* required for solid icons */
    content: "\f00d";
    /* Unicode for user icon */
}
#downloadModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px 50px;
}
#downloadModal img {
    width: 432px;
    height: 278px;
    aspect-ratio: 216/139;
}
#downloadModal h2 {
    color: #FFF;
    text-align: center;
    font-family: "Bebas Neue";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
    /* 130.556% */
}
#downloadModal h2 strong {
    color: #EE3195;
    font-family: "Bebas Neue";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 47px;
}
#downloadModal p {
    color: #FFF;
    text-align: center;
    font-family: "Ropa Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
}
#downloadModal .right {
    padding: 0 0 0 50px;
}
.btn a{
    text-decoration: none;
}
@media(max-width: 1200px) {
    #downloadModal .modal-body {
        display: block;
        padding: 20px 20px 50px;
    }
    #downloadModal img {
        max-width: 432px;
        width: 100%;
        max-height: 278px;
        height: auto;
        display: block;
        margin: 0 auto 30px;
    }
    #downloadModal .right {
        padding: 0;
    }
}

