/*
Theme Name: Strutt Your Mutt
Author: Geoff Boult
Author URI: https://struttyourmutt.uk
Description: A custom theme for Strutt your mutt 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: struttyourmutt
*/

:root {
    --color-1: #5b443d;
    --color-2: #ffebcf;
    --color-3: #fff6eb;
    --color-4: #dbbf96;
    --color-5: #b79462;
    --color-6: #bb998e;
    --color-7: #411e13;
}

.container {
    font-size: 1rem;
}

a.more, span.more {
    padding: 12px 20px 16px 20px;
    display: inline-block;
}

img {
    max-width: 100%!important;
}

/* Default Styles */
.container {
	padding:0 5%;
	position:relative;
}

@media (min-width:1500px) {
	.container {
		max-width: 1500px;
		padding: 0 50px;
		margin:0 auto;
	}
}

/* Header Styles */
header#main-header {
    height: 130px;
    background-color: var(--color-1);
    position: relative;
    z-index: 9000;  
}
header#main-header .logoHolder {
    width: 202px;
    height: 200px;
    position: absolute;
    top: 20px;
    left: 50px;
}
header#main-header .logoHolder a {
    display: block;
    width: 202px;
    height: 200px;
}
header#main-header .logoHolder svg {
    display: inline-block;
    width: 202px;
    height: 200px;
}
header#main-header .socials {
    position: absolute;
    right: 50px;
    top: 20px;
    display: flex;
    gap: 0 10px;
    align-items: center;
} 
header#main-header .socials .cluster {
    display: flex;
    gap: 0 10px;
} 
header#main-header .socials a {
    color: white;
    font-size: 1.2rem;
}
header#main-header .socials .font-22 {
    font-size: 1.8rem;
    transition: opacity 0.2s ease-in-out;
} 
header#main-header .socials .font-22:hover {
    opacity: 0.7;
} 
header#main-header .socials a.tel {
    margin-left: 20px;
}
header#main-header .socials a.tel i {
    margin-right: 8px;
} 
header#main-header button.mobile-menu {
    width: 28px;
    height: 18px;
    position: absolute;
    right: 5%;
    top: 72px;
    appearance: none;
    padding: 0;
    background-color: transparent;
    border: none;
    display: none;
    font-size: 1.8rem;
    color: white;
} 
/* Header Navigation */
nav#mainMenu {
    position: absolute;
    top: 80px;
    right: 50px;
    button.close-menu {
        border: none;
        display: none;
        appearance: none;
        padding: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: transparent;
        color: white;
        font-size: 1.25rem;
    }
    ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        gap: 0 30px;
        li a {
            display: inline-block;
            color: #ffffff;
            font-size: 1.25rem;
            text-decoration: none;
            position: relative;
            &:after {
                content: "";
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 0;
                height: 0.05rem;
                background: white;
                transition: width 0.2s ease-in-out;
            }
            &:hover:after {
                width: 100%;
            }
        }
    }
}

/* Any Paw Prints throughout site */
.paw-print {
    position: absolute;
    svg {
        width: 100%;
        height: 100%;
    }
    &.top-left {
        left: -20px;
        top: -20px;
    }
    &.bottom-right-1 {
        bottom: 20px;
        right: 30px;
    }
    &.bottom-right-2 {
        bottom: 30px;
        right: 150px;
    }
    &.size-3 {
        width: 300px;
        height: 300px;
    }
    &.size-2 {
        width: 200px;
        height: 200px;
    }
    &.size-1 {
        width: 100px;
        height: 100px;
    }
    &.rotate-minus-20 {
        transform: rotate(-20deg);
    }
    &.rotate-minus-30 {
        transform: rotate(-30deg);
    }
    &.rotate-minus-40 {
        transform: rotate(-40deg);
    }
    &.rotate-minus-50 {
        transform: rotate(-50deg);
    }
    &.rotate-minus-60 {
        transform: rotate(-60deg);
    }
    &.rotate-plus-20 {
        transform: rotate(20deg);
    }
    &.rotate-plus-30 {
        transform: rotate(30deg);
    }
    &.rotate-plus-40 {
        transform: rotate(40deg);
    }
    &.rotate-plus-50 {
        transform: rotate(50deg);
    }
    &.rotate-plus-60 {
        transform: rotate(60deg);
    }
    /* Colours */
    &.color-1 svg {
        fill: var(--color-1);
    }
}

/* Slider Section */
#slider {
    height: 600px;
    width: 100%;
    position: relative;
    max-height: 65vh;
    overflow: hidden;
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.68%, rgba(0, 0, 0, 0.7) 80.67%);
    }
    img {
        width: 100%!important;
        height: 100%!important;
        object-fit: cover;
        object-position: center;
    }
}

body.page-template-home #slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 10px;
    .hero3__item {
        position: relative;
    }
    .hero3__item img {
        width: 100%!important;
        height: 100%!important;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}

.sectionTitle {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-1);
}

/* Main About Me Section */
section#main {
    padding: 100px 0;
    font-family: "Verdana", sans-serif;
    position: relative;
    overflow: hidden;
    #scroll-to-welcome {
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 1px;
    }
    .sectionTitle {
        font-size: 3.8rem;
        color: var(--color-1);
        font-weight: 700;
        margin-bottom: 45px;
        text-align: left;
        font-family: "Corben", serif;
    }
    .flex {
        display: flex;
        gap: 0 80px;
    }
    #welcomeMessage {
        flex: 1;
        p {
            line-height: 1.6;
        }
        p:first-of-type {
            font-weight: 700;
        }
    }
    #welcomeTicks {
        flex: 0 0 360px;
        div {
            display: flex;
            gap: 10px 25px;
            align-items: center;
            i {
                font-size: 2rem;
                color: green;
            }
            span {
                line-height: 1.5;
                font-weight: 700;
                font-size: 1.25rem;
            }
        }
    }
    /* Styles for basic full width page template */
    .default-content {
        flex: 0 0 100%;
        p {
            line-height: 1.6;
        }
        p:first-of-type {
            font-weight: 700;
        }
    }
    /* Styles for article.php */
    article {
        h1 {
            margin: 0 0 45px 0;
        }
        .postCreated {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 30px;
        }
        p {
            line-height: 1.6;
            a {
                color: var(--color-1);
                text-decoration: underline;
                &:hover {
                    text-decoration: none;
                }
            }
        }
        ul li,
        ol li {
            line-height: 1.7;
        }
    }
    #welcomeMessage,
    .default-content,
    article {
        a {
            color: #000;
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }
    }
    article a {
        text-decoration: none!important;
        color: inherit;
    } 
}

.share {
    padding: 35px 0;
    border-top-width: 0.05rem;
    border-top-style: solid;
    border-bottom-width: 0.05rem;
    border-bottom-style: solid;
    border-color: var(--color-6);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    .title {
        font-size: 1.875rem;
        font-weight: 700;
        color: var(--color-1);
        margin-bottom: 15px;
        flex: 0 0 100%;
        text-align: center;
        font-family: "Corben", serif;
    }
    a {
        padding: 10px;
        font-size: 1.625rem;
        color: var(--color-1);
        transition: color 0.2s ease-in-out;
    }
    a:hover {
        color: #000;
    }
}

/* My Services Section */
#myServices {
    clear: both;
    padding: 100px 0;
    background-color: var(--color-1);
    .sectionTitle {
        color: white;
        margin-bottom: 50px;
    }
    .flex {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 30px;
        .service-card {
            border-width: 0.4rem;
            border-style: solid;
            border-color: var(--color-3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
            box-sizing: border-box;
            &.width-30 {
                flex: 0 0 calc(33.3333% - 20px);
            }
            &.width-50 {
                flex: 0 0 calc(50% - 27px);
            }
            a {
                display: flex;
                align-items: flex-end;
                align-content: flex-end;
                flex-wrap: wrap;  
                height: 400px;
                position: relative;
                padding: 30px;
                overflow: hidden;
                color: white;
            }
            .overlay {
                position: absolute;
                z-index: 2;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.20) 100%);
                mix-blend-mode: multiply;
            }
            .image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all 0.2s ease-in-out;
                }
            }
            .title {
                z-index: 5;
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 20px;
                width: 100%;
            }
            .excerpt {
                z-index: 5;
                line-height: 1.6;
                transition: all 0.2s ease-in-out;
            }
            span.more {
                opacity: 0;
                position: absolute;
                bottom: 30px;
                left: 30px;
                z-index: 5;
                border-style: solid;
                border-width: 0.05rem;
                transition: all 0.2s ease-in-out;
            }
            a:hover {
                .image img {
                    transform: scale(1.1);
                }
                .excerpt {
                    padding-bottom: 75px;
                }
                span.more {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}

/* FAQs Section */
#faq {
    clear: both;
    padding: 100px 0;
    background-color: var(--color-4);
    #accordion {
        display: flex;
        flex-wrap: wrap;
        margin-top: 70px;
        .accordion-item {
            flex: 0 0 100%;
            margin-bottom: 10px;
            button {
                width: 100%;
                text-align: left;
                padding: 27px 60px 27px 25px;
                position: relative;
                line-height: 1.5;
                border: none;
                font-size: 1.25rem;
                color: white;
                font-weight: 700;
                background-color: var(--color-1);
                font-family: "Corben", serif!important;
                i {
                    position: absolute;
                    right: 30px;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
            button[aria-expanded="true"] i:before {
                content: "\f068";
            }
            button:hover,
            button:focus {
                cursor: pointer;
            }
            .accordion-panel {
                padding: 30px 20px;
                background-color: white;
                font-family: "Verdana", sans-serif;
                p {
                    line-height: 1.5;
                }
            }
        }
    }
}

/* Articles Section */
#articles {
    clear: both;
    padding: 100px 0;
    .blogPosts {
        margin: 60px 0;
        display: flex;
    }
    article.post a {
        display: block;
        border-width: 0.4rem;
        border-style: solid;
        border-color: var(--color-1);
        transition: all 0.2s ease-in-out;
        figure {
            margin: 0;
            height: 240px;
            overflow: hidden;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                transition: all 0.2s ease-in-out;
            }
        }
        .postContent {
            padding: 30px 30px 100px 30px;
            position: relative;
            color: #000;
            background-color: white;
            .date {
                font-weight: 700;
            }
            .title {
                color: var(--color-1);
                font-size: 2rem;
                line-height: 1.2;
                margin: 20px 0;
            }
            .excerpt {
                line-height: 1.5;
                font-family: "Verdana", sans-serif;
            }
            span.more {
                position: absolute;
                bottom: 30px;
                left: 30px;
                background-color: var(--color-1);
                color: white;
                transition: all 0.2s ease-in-out;
            }
        }
        &:hover {
            border-color: var(--color-7);
            figure img {
                transform: scale(1.1);
            }
            .postContent span.more {
                background-color: var(--color-7);
            } 
        }
    }
    .owl-nav {
        position: absolute;
        top: calc(50% - 22px);
        width: 100%;
        height: 44px;
        button {
            width: 44px;
            height: 44px;
            border: none;
            -webkit-appearance: none;
            appearance: none;
            outline: none;
            position: absolute;
            top: 0;
            background: none;
            padding: 0;
            margin: 0;
            z-index: 10;
            color: var(--color-1);
            transition: color 0.2s ease-in-out;
            &:before {
                position: relative;
                width: 44px;
                height: 44px;
                font-family: "Font Awesome 6 Free";
                font-weight: 700;
                font-size: 2rem;
            }
            &:hover {
                color: var(--color-5);
            }
        }
        button.owl-prev {
            left: -110px;
            &:before {
                content: "\f053";
            }
        }
        button.owl-next {
            right: -110px;
            &:before {
                content: "\f054";
            }
        }
    }
    .center {
        text-align: center;
        a.viewAll {
            background-color: var(--color-1);
            color: white;
            transition: background-color 0.2s ease-in-out;
            position: relative;
            z-index: 5;
            &:hover {
                background-color: var(--color-7);
            }
        }
    }
}

/* Contact Me Section */
#contactMe {
    padding: 100px 0;
    background-color: #fff;
    .wpforms-container {
        width: 900px;
        max-width: 100%;
        border-width: 0.4rem;
        border-style: solid;
        border-color: var(--color-1);
        padding: 20px 30px 30px 30px;
        margin-top: 50px;
    }
    .wpforms-container .wpforms-form .wpforms-field-label {
        margin-bottom: 15px;
    }
    div.wpforms-container-full input[type=text],
    div.wpforms-container-full input[type=number] {
        border-width: 0.1rem;
        border-style: solid;
        border-color: var(--color-1);
        height: 50px;
        padding: 0 15px;
    }
    div.wpforms-container-full .wpforms-form textarea {
        border-width: 0.1rem;
        border-style: solid;
        border-color: var(--color-1);
        min-height: 300px;
        padding: 15px;
    }
    div.wpforms-container-full .wpforms-form .wpforms-submit-container button[type=submit] {
        padding: 0 20px;
        background-color: var(--color-1);
        color: white;
        font-weight: 400;
        &:hover {
            background-color: var(--color-4);
            color: var(--color-1);
        }
    }
    div.wpforms-container-full .wpforms-confirmation-container-full {
        background-color: transparent;
        border-color: none;
        margin: 20px auto;
    }
}

/* Footer */
footer#siteFooter {
    padding: 20px 0;
    background-color: #5b443d;
    color: #fff;
    font-size: 1rem;
    .flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footerRight {
        display: flex;
        align-items: center;
        gap: 0 10px;
        a {
            color: white;
            font-size: 1.2rem;
        }
        .font-22 {
            font-size: 1.8rem;
        }
        a.tel {
            margin-left: 20px;
            i {
                margin-right: 8px;
            }
        }
    }
}


/* Any Template without an image banner and just a title */
#pageTitle {
    clear: both;
    padding: 150px 0 70px 0;
    background-color: var(--color-4);
    h1 {
        margin: 0;
        font-size: 4rem;
        font-weight: 700;
        color: var(--color-1);
    }
}

/* Main Blog Posts Template */
section#main .blogPosts.full-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 30px;
    article.post {
        flex: 0 0 calc(25% - 1.406rem);
        a {
            display: block;
            border-width: 0.4rem;
            border-style: solid;
            border-color: var(--color-1);
            transition: all 0.2s ease-in-out;
            box-sizing: border-box;
            figure {
                margin: 0;
                height: 240px;
                overflow: hidden;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                    transition: all 0.2s ease-in-out;
                }
            }
            .postContent {
                padding: 30px 30px 100px 30px;
                position: relative;
                color: #000;
                background-color: white;
                .date {
                    font-weight: 700;
                }
                .title {
                    color: var(--color-1);
                    font-size: 2rem;
                    line-height: 1.2;
                    margin: 20px 0;
                }
                .excerpt {
                    line-height: 1.5;
                    font-family: "Verdana", sans-serif;
                }
                span.more {
                    position: absolute;
                    bottom: 30px;
                    left: 30px;
                    background-color: var(--color-1);
                    color: white;
                    transition: all 0.2s ease-in-out;
                }
            }
            &:hover {
                border-color: var(--color-7);
                figure img {
                    transform: scale(1.1);
                }
                .postContent span.more {
                    background-color: var(--color-7);
                } 
            }
        }
    }
}








@media (max-width:400px) {
    body.page-template-home #slider {
        grid-template-columns: repeat(3, 1fr);
        .hero3__item:first-child {
            display: none;
        }
    }
}

@media (max-width:600px) {
    nav#mainMenu {
        width: 90%;
        right: -90%;
        ul {
            padding: 30px 5%;
            li a {
                font-size: 1.125rem;
                padding: 15px 0;
                &:after {
                    display: none!important;
                }
            }
        }
        &.open {
            right: 0;
        }
        button.close-menu {
            top: 10px;
            right: 10px;
        }
    }
}

@media (max-width:767px) {
    header#main-header {
        height: 110px;
    }
    header#main-header .logoHolder,
    header#main-header .socials {
        top: 8px;
    }
    header#main-header .logoHolder,
    header#main-header .logoHolder a,
    header#main-header .logoHolder a svg {
        width: 130px;
        height: 129px;
    }
    header#main-header .socials {
        flex-wrap: wrap;
        justify-content: flex-end;
        a.tel {
            margin-left: 0;
        }
        .cluster {
            flex: 0 0 100%;
            justify-content: flex-end;
            margin-bottom: 6px;
        }
        .font-22 { /* Drop down to 24px */
            font-size: 1.5rem;
        }
    }
    #slider {
        height: 220px;
    }
    section#main {
        padding: 35px 0 40px 0;
        .sectionTitle {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 30px;
        }
        & #welcomeTicks div {
            gap: 10px 18px;
            span {
                font-size: 1.125rem;
            }
        }
    }
    body.home section#main {
        padding-bottom: 100px;
    }
    .paw-print {
        &.bottom-right-1,
        &.bottom-right-2 {
            bottom: 5px;
        }
    }
    #myServices {
        padding: 35px 0 30px 0;
        .flex {
            gap: 15px 0;
        }
        .sectionTitle {
            font-size: 1.875rem;
            margin-bottom: 30px;
        }
        .flex .service-card {
            a {
                height: 200px;
                padding: 20px;
            }
            &.width-30,
            &.width-50 {
                flex: 0 0 100%;
            }
            .title {
                font-size: 1.25rem;
                margin-bottom: 10px;
            }
        }
    }
    #faq {
        padding: 35px 0 30px 0;
        .sectionTitle {
            font-size: 1.875rem;
            margin-bottom: 30px;
        }
        #accordion {
            margin-top: 30px;
            .accordion-item {
                button {
                    font-size: 1rem;
                    padding: 20px 50px 20px 15px;
                    i {
                        right: 15px;
                    }
                }
                .accordion-panel {
                    padding: 10px 15px;
                }
            }
        }
    }
    #articles {
        padding: 35px 0 30px 0;
        .sectionTitle {
            font-size: 1.875rem;
            margin-bottom: 30px;
        }
        .blogPosts {
            margin: 30px 0 18px 0;
        }
        article.post a {
            figure {
                height: 200px;
            }
            .postContent {
                padding: 20px 20px 90px 20px;
                .title {
                    font-size: 1.6rem;
                }
                span.more {
                    left: 20px;
                    bottom: 20px;
                }
            }
        }
        .owl-nav {
            top: auto;
            bottom: -61px;
            button.owl-prev {
                left: 0;
            }
            button.owl-next {
                right: 0;
            }
            button.owl-prev:before,
            button.owl-next:before {
                font-size: 1.6rem;
            }
        }
    }
    #contactMe {
        padding: 35px 0 30px 0;
        .sectionTitle {
            font-size: 1.875rem;
            margin-bottom: 30px;
        }
        .wpforms-container {
            margin-top: 30px;
        } 
    }
    footer#siteFooter {
        padding: 10px 0 20px 0;
        .flex {
            gap: 20px 0;
            flex-wrap: wrap;
            justify-content: unset;
        }
        .footerLeft,
        .footerRight {
            flex: 0 0 100%;
            text-align: center;
            flex-wrap: wrap;
            line-height: 1.4;
        }
        .footerRight {
            justify-content: center;
            margin-top: -20px;
            a.tel {
                flex: 0 0 100%;
                margin-left: 0;
                margin-top: 15px;
            }
        }
    }
    #pageTitle {
        padding: 50px 0 30px 0;
        h1 {
            font-size: 2.25rem;
        }
    }
    section#main .blogPosts.full-page {
        gap: 10px 0;
        article.post {
            flex: 0 0 100%;
        }
    }
}

@media all and (min-width:600px) and (max-width:1023px) {
    nav#mainMenu {
        width: 50%;
        right: -50%;
        &.open {
            right: 0;
        }
        ul {
            padding: 50px 8%;
            li a {
                font-size: 1.375rem;
                padding: 25px 0;
            }
        }
    }
}

@media (max-width:1023px) {
    #slider .overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.68%, rgba(0, 0, 0, 0.5) 80.67%);
    }
    header#main-header button.mobile-menu {
        display: block;
    }
    nav#mainMenu {
        position: fixed;
        top: 0;
        bottom: 0;
        height: 100vh;
        background-color: var(--color-1);
        box-shadow: -8px 0px 13px -4px rgba(0,0,0,0.20);
        transition: right 0.3s ease;
        button.close-menu {
            display: block;
        }
        ul {
            gap: 0 0;
            flex-wrap: wrap;
            li {
                flex: 0 0 100%;
                border-bottom-width: 0.05rem;
                border-bottom-style: solid;
                border-bottom-color: var(--color-5);
            }
        }
        button.close-menu {
            display: block;
        }
    }
    body.page-template-home #slider {
        gap: 0 2px;
    }
}

@media (min-width:1024px) {
    nav#mainMenu {
        display: block!important;
    }
}


@media all and (min-width:768px) and (max-width:1024px) {
    section#main {
        padding: 60px 0;
        .sectionTitle {
            font-size: 3rem;
        }
    }
    #slider {
        height: 400px;
    }
    #articles {
        padding: 50px 0 40px 0;
        .sectionTitle {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        .blogPosts {
            margin: 35px 0;
        }
        .owl-nav {
            top: auto;
            bottom: -75px;
            button.owl-prev {
                left: 0;
            }
            button.owl-next {
                right: 0;
            }
            button.owl-prev:before,
            button.owl-next:before {
                font-size: 1.8rem;
            }
        }
    }
    #contactMe {
        padding: 50px 0 40px 0;
    }
    #myServices {
        padding: 50px 0 80px 0;
        .sectionTitle {
            font-size: 2.25rem;
        }
        .flex .service-card.width-30 {
            flex: 0 0 calc(50% - 15px);
        }
        .flex .service-card .title {
            font-size: 1.625rem;
        }
    }
    #faq {
        padding: 50px 0 40px 0;
        .sectionTitle {
            font-size: 1.875rem;
            margin-bottom: 32px;
        }
        #accordion {
            margin-top: 30px;
            .accordion-item button {
                font-size: 1.125rem;
            }
        }
    }
    #pageTitle h1 {
        font-size: 2.75rem;
    }
}

@media all and (min-width:768px) and (max-width:1200px) {
    section#main .blogPosts.full-page {
        gap: 20px 20px;
        article.post {
            flex: 0 0 calc(50% - 10px);
        }
    }
}

@media (max-width:1200px) {
    section#main .flex {
        flex-wrap: wrap;
        gap: 40px 0;
        #welcomeMessage {
            flex: 0 0 100%;
        }
    }
}

@media all and (min-width:1024px) and (max-width:1400px) {
    #pageTitle h1 {
        font-size: 3.25rem;
    }
}

@media all and (min-width:1200px) and (max-width:1500px) {
    section#main .blogPosts.full-page {
        gap: 20px 20px;
        article.post {
            flex: 0 0 calc(33.3333% - 0.844rem);
        }
    }
}

@media all and (min-width:1024px) and (max-width:2000px) {
    #articles {
        .container {
            padding-left: 100px;
            padding-right: 100px;
        }
        .owl-nav {
            button.owl-prev {
                left: -70px;
            }
            button.owl-next {
                right: -70px;
            }
        }
    }
}

@media (max-width:1500px) {
    header#main-header {
        .logoHolder {
            left: 5%;
        }
        .socials {
            right: 5%;
        }
    }
}

@media (max-width:2100px) {
    .paw-print {
        opacity: 0.2;
    }
    .paw-print.top-left {
        left: -150px;
        top: 25px;
    }
}




/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   html {
    color:#000;
	height:100vh;
    font-size:16px;
	-webkit-font-smoothing:antialiased;
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 3 */
    box-sizing: border-box;
}
.indent {
	text-indent: -999em;
}

a {
    background-color: transparent;
    text-decoration: none;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


/*
 * Enable Smooth Scrolling.
 */

 @media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
 }

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
	width:100%;
	height:100%;
	min-height:100%;
	font-size: 62.5%; /* 1em = 10px */
	line-height: 1;
	font-family: "Corben", serif;
	background-color: var(--color-2);
	margin:0;
	color:#000;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.visuallyhidden {
	border:0;
	margin:-1px;
	padding:0;
	width:1px;
	height:1px;
	overflow:hidden;
	clip:rect(0 0 0 0);
	clip:rect(0);
	position:absolute;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
