/*
 Theme Name:   KM Web Dev
 Description:  Boiler Plate theme created for KM Web Dev by Keiran Martin
 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;
    z-index: 0;
    font-family: 'PT Sans', sans-serif;
    color: #343434;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: 20px;
    font-family: 'PT Serif', serif;
    font-weight: 700;
}

small{
    font-size: 14px;
}

h1,
.xl-header{
    font-size: 44px;
    line-height: 52px;
}

h2,
.lg-header{
    font-size: 35px;
    line-height: 45px;
}

h3,
.md-header{
    font-size: 32px;
    line-height: 39px;
}

h4,
.sm-header{
    font-size: 29px;
    line-height: 39px;
}

h5,
.xsm-header{
    font-size: 25px;
    line-height: 33px;
}

@media(max-width:576px){
    h1{
        font-size: 32px;
        line-height: 38px;
    }
}

/*----------------------------
CONTENT
----------------------------*/
#app {
    margin-top: 120px;
}

/*----------------------------
FOOTER
----------------------------*/


/*----------------------------
BUTTONS
----------------------------*/
.btn-holo{
    width: 250px;
    border: 1px solid #006B6D;
    font-size: 18px;
    color: #26555A;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 0;
}

.btn-holo:hover{
    background: #006B6D;
    color: #fff;
}

.btn-solid{
    width: 250px;
    background: #00B3BF;
    border: 1px solid #00B3BF;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
}

.btn-solid:hover{
    border: 1px solid #00B3BF;
    color: #00B3BF;
    background: #fff;
}
@media(min-width: 1920px){
    .top img, .bot img{
        width: 100%;
    }
}
@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;
}

/*----------------------------
FOOTER
----------------------------*/
footer .links{
    display: flex;
    justify-content: center;
}
footer .links a{
    margin: 20px 10px 30px;
}
footer{
    background:#DFEFEF;
    padding: 50px 0 10px;
}

footer ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
#nav .click .social{
    font-size: 25px;
    color: #26555A;
    height: 100%;
    margin: 0 50px 0 0;
}
#nav .click .social:hover{
    color: #000;
}
#nav .click {
    display: flex;
    align-items: center;
}
footer .social{
    display: block;
    text-align: center;
        font-size: 25px;
    color: #26555A;
    margin: 10px 0 20px;
}
footer li{
    margin: 0 10px;
}

footer li a{
    text-decoration: none;
    color: #26555A;
    font-size: 18px;
    font-weight: 700;
}

footer .date p{
    margin: 0;
    color: #006787;
}

footer .date a{
    color: #006787;
    text-decoration: none;
}

footer a:hover{
    color: #000;
}

@media(max-width:767px){
    footer ul{
        flex-wrap: wrap
    }
}