/*
Theme Name: Mythos Veterinary Custom Theme
Author: Samantha Fung
Author URI: https://samanthafung.com/
Description: A custom theme by Samantha Fung for Mythos Veterinary.
Version: 1.0
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

@keyframes heroSlide {
	0% { transform: translateX(0); opacity: 1; }
	20% { transform: translateX(0); opacity: 1; }
	22.5% { opacity: 0; }
	25% { transform: translateX(-20%); opacity: 1; }
	45% { transform: translateX(-20%); opacity: 1; }
	47.5% { opacity: 0; }
	50% { transform: translateX(-40%); opacity: 1; }
	70% { transform: translateX(-40%); opacity: 1; }
	72.5% { opacity: 0; }
	75% { transform: translateX(-60%); opacity: 1; }
	95% { transform: translateX(-60%); opacity: 1; }
	97.5% { opacity: 0; }
	100% { transform: translateX(-80%); opacity: 1; }
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	margin: 0 auto;
	max-width: 1600px;
	min-width: 320px;
	font-family: 'Source Sans Pro', sans-serif;
	box-shadow: 5px 0px 5px rgba(0,0,0,.1), -5px 0px 5px rgba(0,0,0,.1);
	position: relative;
}

/* Default Mobile Class */
.mobile {
	display: none;
}

/* Hide Elements */
.hide {
	display: none;
}

.bold {
	font-weight: bold;
}

.italics {
	font-style: italic;
}

h1 {
	color: rgb(161,166,18);
	font-size: 1.8rem;
    font-family: 'Raleway', sans-serif;
	margin-top: 0;
}

h1.bigger {
    font-size: 2.15rem;
}

h2 {
    font-size: 1.3rem;
    margin-top: 0;
	font-family: 'Raleway', sans-serif;
}

h3 {
	font-family: 'Raleway', sans-serif;
}

p, body.single main.post ul, body.single main.post ol {
	line-height: 1.6;
}

p.bigger {
	font-size: 1.4rem;
}

a {
	color: unset;
	transition: color .5s ease;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

a:hover {
	color: rgb(161,166,18);
}

/* --- BUTTON --- */

a.button {
    padding: 12px;
    min-width: 175px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    background: rgb(161,166,18);
    color: rgb(255,255,255);
	transition: color .5s ease, background .5s ease;
	text-decoration: none;
}

a.button:hover {
	background: rgb(99,102,10);
}

a.button.bigger {
    font-size: 1.2rem;
    padding: 15px 20px;
    min-width: 200px;
}

/* White Button */
a.button.white {
	background: rgb(255,255,255);
	color: rgb(161,166,18);
}

a.button.white:hover {
	background: rgb(99,102,10);
	color: rgb(255,255,255);
}

/* --- Formidable Forms CSS --- */

label.frm_primary_label {
    color: rgb(99,102,10) !important;
	font-family: 'Raleway', sans-serif !important;
	font-weight: bold !important;
}

span.frm_required {
    display: none;
}

.with_frm_style input[type=text], .with_frm_style input[type=email], .with_frm_style textarea {
    border: none;
    color: rgb(0,0,0);
	font-family: 'Raleway', sans-serif !important;
}

button.frm_button_submit {
    font-weight: bold !important;
    font-family: 'Raleway', sans-serif !important;
    background: rgb(99,102,10) !important;
    border: solid 2px rgb(161,166,18) !important;
    box-shadow: none !important;
    width: 100px !important;
	transition: color .5s, background .5s;
}

button.frm_button_submit:hover {
    background: rgb(255,255,255) !important;
	color: rgb(161,166,18) !important;
}

/* --- HEADER --- */

/* Notice Bar */
div#notice-bar {
    width: 100%;
    margin: 0 auto;
    padding: 15px 35px;
    background: rgba(196,209,217,.3);
    text-align: center;
}

div#notice-bar p {
    margin: 0;
}

div#notice-bar a {
    color: rgb(161,166,18);
    font-weight: bold;
}

div#notice-bar a:hover {
    color: rgb(99,102,10);
}

/* Colour Bar */
.colour-bar {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	width: 100%;
}

.colour-bar svg{
	width: 25%;
	height: 8px;
}

.colour-bar svg line {
	stroke-width: 8;
}

/* Menu */
a#logo {
    max-width: 165px;
    width: 25%;
	min-width: 125px;
}

a#logo img {
	width: 100%;
}

#main-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    background: rgb(255,255,255);
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
	position: relative;
	z-index: 1;
}

#main-header nav {
    width: 75%;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

#main-header .menu-main-menu-container {
    height: 100%;
}

ul#menu-main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
	height: 100%;
}

#menu-main-menu li {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	position: relative;
}

#menu-main-menu li a {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: rgb(161,166,18);
    letter-spacing: .035rem;
	transition: color .5s ease;
	text-decoration: none;
}

#menu-main-menu li a:hover {
	color: rgb(84,166,217);
}

/* Lock Icon */
#menu-main-menu li#menu-item-23 > a:after {
	content: "";
	background-image: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Icon-lock-green.png");
	background-size: 15px 19px;
	width: 15px;
	height: 19px;
	display: inline-block;
	margin-left: 6px;
	transform: translateY(1px);
	transition: background .5s ease;
}

#menu-main-menu li#menu-item-23 > a:hover:after {
	background-image: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Icon-lock-blue.png");
}

/* Submenu */
#main-header ul.sub-menu {
    padding: 0;
    list-style: none;
    position: absolute;
    top: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	max-height: 0;
    overflow: hidden;
	transition: max-height 1s ease;
	width: 100%;
}

#main-header .sub-menu li {
    flex-basis: 100%;
    max-width: 225px;
	overflow: hidden;
}

#main-header .sub-menu li:last-child {
    border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#main-header .sub-menu li a {
    padding: 12px 12px;
    display: block;
    background: rgb(161,166,18);
    color: rgb(255,255,255);
	transition: background .5s ease;
}

#main-header .sub-menu li a:hover {
    background: rgb(84,166,217);
}

/* Open Submenu */
#menu-main-menu li#menu-item-23:hover ul.sub-menu {
	max-height: 345px;
}

/* Mobile Menu */
div#mobile-menu-button {
	display: none;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	margin-right: 5%;
}

div#mobile-menu-button:hover {
	cursor: pointer;
}

div#mobile-menu-button:hover img {
	transform: scale(1.1);
}

#mobile-menu-button p {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: .9rem;
    font-weight: bold;
    color: rgb(161,166,18);
}

#mobile-menu-button img {
    width: 60px;
	margin-left: 10px;
	transition: transform .5s ease;
}

/* --- FOOTER --- */

#main-footer {
    background: rgb(255,255,255);
    padding: 35px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

#main-footer .links {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

#main-footer .links a, #main-footer .links p {
    color: rgb(161,166,18);
    font-size: .8rem;
}

#main-footer .links a {
	font-weight: bold;
	transition: color .5s ease;
	text-decoration: none;
}

#main-footer .links a:hover {
	color: rgb(99,102,10);
}

#main-footer .links p {
	padding: 0 10px;
}

#main-footer p#copyright {
    font-size: .7rem;
}

/* --- MAIN --- */

body > main {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* --- HOMEPAGE --- */

/* Hero */
body.home .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
	background: rgb(161,166,18);
}

body.home .hero .left {
    flex-basis: 40%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    padding: 35px;
}

body.home .hero .left p {
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
    color: rgb(255,255,255);
    font-weight: 300;
	margin: 0;
}

body.home .hero .left h1 {
    color: rgb(255,255,255);
    font-size: 2.8rem;
    font-family: 'Raleway', sans-serif;
	margin: 15px 0;
}

body.home .hero .left h2 {
	color: rgb(99,102,10);
	margin: 0 0 25px 0;
}

body.home .hero .right {
    flex-basis: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
}

body.home .hero .right > .image.container {
    flex-basis: 50%;
	overflow: hidden;
	height: 225px;
}

body.home .hero .right > .image.container:nth-child(1) {
    border-right: solid 2px rgb(255,255,255);
	border-bottom: solid 2px rgb(255,255,255);
}

body.home .hero .right > .image.container:nth-child(2) {
    border-left: solid 2px rgb(255,255,255);
	border-bottom: solid 2px rgb(255,255,255);
}

body.home .hero .right > .image.container:nth-child(3) {
    border-right: solid 2px rgb(255,255,255);
	border-top: solid 2px rgb(255,255,255);
}

body.home .hero .right > .image.container:nth-child(4) {
    border-left: solid 2px rgb(255,255,255);
	border-top: solid 2px rgb(255,255,255);
}

body.home .hero .right .image.container img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

body.home .hero .right .slide {
	width: 500%;
	height: 100%;
	font-size: 0;
	animation: heroSlide 27s ease infinite;
}

body.home .hero .right .slide .image.container {
	width: 20%;
	height: 100%;
	display: inline-block;
}

/* Video */
body.home div.video {
    background: rgb(99,102,10);
    padding: 65px 5%;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

body.home div.video iframe {
    /*border: solid 3px rgba(255,255,255,1);*/
	width: 100%;
    max-width: 560px;
	box-shadow: 3px 3px 5px rgba(0,0,0,.2);
}

/* About */
body.home div.about {
    overflow: hidden;
    background: rgba(161,166,18,.15);
    text-align: center;
    padding: 100px 5%;
    width: 100%;
    margin: 0 auto;
}

body.home div.about h1 {
	margin-bottom: 35px;
}

body.home div.about img {
    width: 175px;
    border-radius: 100%;
	margin-bottom: 25px;
}

body.home div.about p {
    width: 65%;
    margin: 0 auto;
	max-width: 750px;
}

body.home div.about .button {
	margin-top: 25px;
}

/* Mission Statement */
body.home div.mission {
    margin: 65px 5%;
}

body.home div.mission h1, body.home div.mission > p {
	text-align: center;
}

body.home div.mission > p {
	width: 65%;
	margin: 35px auto;
	max-width: 750px;
}

body.home div.mission ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

body.home div.mission ul li {
    width: 31%;
    border-radius: 15px;
    overflow: hidden;
	box-shadow: 3px 3px 5px rgba(0,0,0,.2);
	transition: transform .5s ease;
}

body.home div.mission ul li:hover {
	transform: scale(1.01);
}

body.home div.mission ul li .image.container {
    height: 175px;
    overflow: hidden;
    width: 100%;
}

body.home div.mission ul li .image.container img {
    object-fit: cover;
	height: 100%;
	width: 100%;
}

body.home div.mission ul li .text.container {
    height: 100%;
    padding: 10%;
	color: rgb(255,255,255)
}

body.home div.mission ul li:first-child .text.container {
    background: rgb(161,166,18);
}

body.home div.mission ul li:nth-child(2) .text.container {
    background: rgb(84,166,217);
}

body.home div.mission ul li:last-child .text.container {
    background: rgb(217,92,135);
}

body.home div.mission ul li .text.container h2 {
	text-align: center;
	margin-bottom: 25px;
}

body.home div.mission ul li .text.container p:last-child {
	margin-bottom: 0;
}

/* Start */
body.home div.start {
    width: 100%;
    margin: 0 auto;
    background: rgb(84,166,217);
    text-align: center;
}

body.home div.start h1 {
	color: rgb(255,255,255);
	padding: 45px 5%;
	margin: 0;
}

body.home div.start ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

body.home div.start li {
    flex: 1;
    height: 350px;
    position: relative;
	background-position: center !important;
	background-size: cover !important;
	background-blend-mode: multiply;
	transition: background .5s ease;
}

body.home div.start li:first-child {
	background: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Home-Get-Started-For-Veterinarians-Anesthesia-machine.jpg") rgba(0,0,0,.65);
}

body.home div.start li:first-child:hover {
	background: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Home-Get-Started-For-Veterinarians-Anesthesia-machine.jpg") rgba(0,0,0,.3);
}

body.home div.start li:last-child {
	background: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Home-Get-Started-For-Clients-At-work-11.jpg") rgba(0,0,0,.65);
}

body.home div.start li:last-child:hover {
	background: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Home-Get-Started-For-Clients-At-work-11.jpg") rgba(0,0,0,.3);
}

body.home div.start li .button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

body.home div.start li .button:hover {
	background: rgb(255,255,255);
	color: rgb(84,166,217);
}

/* --- CONTACT SECTION --- */

body div.contact {
    text-align: center;
    padding: 65px 5%;
    width: 100%;
    margin: 0 auto;
}

div.contact ul.social {
    padding: 0;
    list-style: none;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
	max-width: 1250px;
}

div.contact ul.social li {
	width: 25%;
	padding: 15px;
}

ul.social li a {
    text-decoration: none;
}

ul.social li a:first-child {
    display: inline-block;
}

ul.social img {
    width: 80px;
	transition: transform .5s ease;
}

ul.social img:hover {
    transform: scale(1.05);
}

ul.social h3 {
	font-size: 1rem;
	text-transform: uppercase;
	transition: color .5s ease;
}

ul.social li:nth-of-type(1) h3 {
    color: rgb(161,166,18);
}

ul.social li:nth-of-type(1) h3:hover {
    color: rgb(99,102,10);
}

ul.social li:nth-of-type(2) h3 {
    color: rgb(84,166,217);
}

ul.social li:nth-of-type(2) h3:hover {
    color: rgb(61,117,153);
}

ul.social li:nth-of-type(3) h3 {
    color: rgb(217,92,135);
}

ul.social li:nth-of-type(3) h3:hover {
    color: rgb(153,66,97);
}

ul.social li:nth-of-type(4) h3 {
    color: rgb(140,148,153);
}

ul.social li:nth-of-type(4) h3:hover {
    color: rgb(196,209,217);
}

/* --- BOOK SECTION --- */

body div.book {
    width: 100%;
    margin: 0 auto;
    background: rgb(242,224,201);
}

body div.book > div.container {
	margin: 0 auto;
	width: 80%;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

body div.book .container .image.container {
	min-width: 250px;
    margin-right: 50px;
    width: 25%;
}

body div.book img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

body div.book .text.container {
	flex: 1;
	padding: 50px 0;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
}

body div.book h1 {
    margin-bottom: 10px;
}

body div.book p {
    margin-bottom: 25px;
}

body div.book .text.container .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

body div.book .text.container .container a.button {
    margin-right: 15px;
	margin-bottom: 20px;
}

body div.book .text.container .container a.button:last-child {
    margin-right: 0;
	margin-bottom: 0;
}

/* --- ERROR PAGE/ERROR MESSAGE --- */

body.error404 main div {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    padding: 100px 5%;
}

body div.error404 {
    text-align: center;
}

/* --- DEFAULT INDEX PAGE --- */

body main.index {
    width: 80%;
    margin: 0 auto;
    padding: 5% 0;
}

body main.index h2, body main.index h3, body main.index h4, body main.index h5, bbody main.index h6 {
	color: rgb(84,166,217);
}

/* Default Page Headers */
body.page div.page-header {
    padding: 5%;
    text-align: center;
}

body.page div.page-header h1 {
	margin-bottom: 0;
}

/* --- BLOG/ARCHIVE --- */

body.blog h1, body.archive h1 {
    color: rgb(217,92,135);
    text-align: center;
    margin: 65px;
}

body.blog div.bloglist, body.archive div.bloglist {
    width: 85%;
    margin: 0 auto;
}

div.bloglist ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 auto;
    width: 100%;
}

div.bloglist li {
    width: 31%;
    border: solid 1px rgb(161,166,18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	margin: 1%;
	transition: border .5s ease;
}

div.bloglist li:hover {
	border-color: rgb(84,166,217);
}

div.bloglist li div.image.container {
    width: 100%;
    height: 200px;
    overflow: hidden;
	background: url('/wp-content/uploads/2021/09/Mythos-Veterinary-Blog-Default-Image-01.png');
	background-position: center;
	background-size: cover;
}

div.bloglist li div.image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

div.bloglist li:hover div.image.container img {
	transform: scale(1.05);
}

div.bloglist a {
	text-decoration: none;
}

div.bloglist h3 {
    color: rgb(161,166,18);
	transition: color .5s ease;
	margin-bottom: 10px;
}

div.bloglist li:hover h3 {
	color: rgb(84,166,217);
}

div.bloglist a.date {
    text-transform: uppercase;
    font-weight: bold;
    font-size: .9rem;
	transition: opacity .5s ease;
}

div.bloglist li a.date:hover {
	color: rgb(0,0,0);
	opacity: .6;
}

div.bloglist a.button {
    width: 150px;
    margin: 0 auto 8px auto;
}

div.bloglist li:hover a.button {
	background: rgb(84,166,217);
}

/* Nav Footer */
footer.nav {
    width: 90%;
    text-align: center;
    margin: 35px auto;
	font-family: 'Raleway', sans-serif;
}

footer.nav h2 {
    font-size: 1rem;
    color: rgb(99,102,10);
}

footer.nav .nav-links .page-numbers {
    font-size: 1.5rem;
    color: rgb(161,166,18);
    font-weight: bold;
	margin: 0 10px;
	text-decoration: none;
}

footer.nav .nav-links .page-numbers.current, footer.nav .nav-links a.page-numbers:hover {
	color: rgb(99,102,10);
}

/* --- BLOG SINGLE --- */

body.single > main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
	margin-top: 45px;
}

body.single div.post-content {
    width: 65%;
    overflow: hidden;
}

body.single header.post {
    margin-bottom: 45px;
}

body.single header.post a.button {
    padding: 0;
    min-width: 0;
    background: none;
    color: rgb(161,166,18);
	margin-bottom: 35px;
}

body.single header.post a.button:hover {
    color: rgb(99,102,10);
}

body.single header.post .image.container {
    width: 100%;
    height: 350px;
    overflow: hidden;
	border-radius: 15px;
	margin-bottom: 25px;
	background: url('/wp-content/uploads/2021/09/Mythos-Veterinary-Blog-Default-Image-02.png');
	background-position: center;
	background-size: cover;
}

body.single header.post .image.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.single header.post h1 {
    color: rgb(99,102,10);
}

body.single header.post a.date {
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(161,166,18);
}

body.single header.post a.date:hover {
	color: rgb(99,102,10);
}

/* Post Content */
body.single main.post h1, body.single main.post h3, body.single main.post h5 {
	color: rgb(84,166,217);
}

body.single main.post h2, body.single main.post h4, body.single main.post h6 {
	color: rgb(217,92,135);
}

body.single main.post h5, body.single main.post h6 {
	text-transform: uppercase;
	letter-spacing: 1px;
}

body.single main.post blockquote.wp-block-quote {
    border-left: solid 3px rgb(161,166,18);
    margin: 35px 0px 35px 25px;
    padding-left: 25px;
}

body.single main.post blockquote.wp-block-quote cite {
	color: rgb(161,166,18);
}

body.single main.post figure.wp-block-pullquote {
    margin: 25px 0;
    font-weight: 300;
    color: rgb(161,166,18);
}

body.single main.post figure.wp-block-pullquote cite {
    font-weight: bold;
}

/* Share */
div#share {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
	margin: 45px 0 0 0;
    padding: 15px;
    background: rgba(242,224,201,.5);
}

div#share p {
    font-size: .9rem;
	margin-right: 15px;
	color: rgb(191,150,102);
}

div#share ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

div#share a {
	font-size: 0;
	display: block;
}

div#share img {
    transition: transform .5s ease;
    width: 45px;
}

div#share img:hover {
	transform: scale(1.05);
}

/* Sidebar */
aside#sidebar {
    width: 31%;
	border-left: solid 1px rgb(161,166,18);
}

aside#sidebar header {
    background: rgb(161,166,18);
    padding: 10px;
    color: rgb(255,255,255);
    text-align: center;
}

aside#sidebar header h2 {
	margin: 0;
}

aside#sidebar .bloglist {
    padding: 15px;
}

aside#sidebar div.bloglist ul {
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

aside#sidebar div.bloglist li {
    width: 100%;
    border-top: none;
	border-left: none;
	border-right: none;
	padding: 15px 0;
}

aside#sidebar div.bloglist li:first-child {
	padding-top: 0;
}

aside#sidebar div.bloglist li:hover {
	border-color: rgb(161,166,18);
}

aside#sidebar div.bloglist li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Single Post Footer */
footer.post {
    width: 100%;
    margin-top: 45px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
}

footer.post nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

footer.post nav a {
    text-decoration: none;
	color: rgb(161,166,18);
	margin: 0 10px;
}

footer.post nav a:hover {
	color: rgb(99,102,10);
}

/* --- ABOUT PAGE --- */

body.page-id-8 div.section {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

body.page-id-8 div.section .image.container {
    width: 35%;
}

body.page-id-8 div.section .image.container img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-8 div.section .text.container {
    width: 65%;
    padding: 5%;
	color: rgb(255,255,255);
	display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-id-8 div.section.a .text.container {
	background: rgb(161,166,18);
}

body.page-id-8 div.section.a .text.container a:hover {
	color: rgb(99,102,10);
}

body.page-id-8 div.section.b .text.container {
	background: rgb(217,92,135);
}

body.page-id-8 div.section.b .text.container a:hover {
	color: rgb(153,66,97);
}

/* --- CONTACT PAGE --- */

body.page-id-20 h1 {
	color: rgb(84,166,217);
}

body.page-id-20 div.section {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

body.page-id-20 div.section .image.container {
    width: 50%;
}

body.page-id-20 div.section .image.container img {
    width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 25%;
}

body.page-id-20 div.section .text.container {
    width: 50%;
    padding: 5%;
	color: rgb(255,255,255);
	display: flex;
    flex-direction: column;
    justify-content: center;
	background: rgb(161,166,18);
}

/* --- REQUIREMENTS PAGE --- */

body.page-id-14 div.hero {
    width: 100%;
    margin: 0 auto;
}

body.page-id-14 div.hero .text.container {
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	background: rgba(0,0,0,.8) url('/wp-content/uploads/2021/07/Mythos-Veterinary-Requirements-Hero-Monitoring-4.jpg');
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
}

body.page-id-14 div.hero .text.container h1, body.page-id-14 div.hero .text.container p {
	color: rgb(255,255,255);
	width: 65%;
}

body.page-id-14 div.checklist {
    margin: 65px auto;
    width: 65%;
}

body.page-id-14 div.checklist .container.a {
	margin-bottom: 45px;
}

body.page-id-14 div.checklist .container h2 {
	margin-bottom: 25px;
}

body.page-id-14 div.checklist .container.a h2 {
	color: rgb(161,166,18);
}

body.page-id-14 div.checklist .container.b h2 {
	color: rgb(84,166,217);
}

body.page-id-14 div.checklist ul {
    list-style: none;
    padding: 0;
}

body.page-id-14 div.checklist li {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
}

body.page-id-14 div.checklist input[type="checkbox"] {
	-webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
	width: 25px;
	height: 25px;
	border: solid 2px;
	outline: none;
	cursor: pointer;
    margin-right: 15px;
	flex: none;
	position: relative;
	border-radius: 0;
}

body.page-id-14 div.checklist .container.a input[type="checkbox"] {
	border-color: rgb(161,166,18);
}

body.page-id-14 div.checklist .container.b input[type="checkbox"] {
	border-color: rgb(84,166,217);
}

body.page-id-14 div.checklist .container.a input[type="checkbox"]:checked::before, body.page-id-14 div.checklist .container.b input[type="checkbox"]:checked::before {
	content: '\2713';
    display: block;
    text-align: center;
    position: absolute;
	font-size: 1.5rem;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
}

body.page-id-14 div.checklist .container.a input[type="checkbox"]:checked::before {
	color: rgb(161,166,18);
}

body.page-id-14 div.checklist .container.b input[type="checkbox"]:checked::before {
	color: rgb(84,166,217);
}

body.page-id-14 div.checklist label {
    transform: translateY(4px);
}

body.page-id-14 div.checklist span.note {
    font-style: italic;
    display: block;
    margin-top: 10px;
}

body.page-id-14 div.disclaimer {
    width: 100%;
    margin: 0 auto;
    background: rgb(217,92,135);
    padding: 65px 0;
    color: rgb(255,255,255);
}

body.page-id-14 div.disclaimer .container {
	width: 65%;
	margin: 0 auto;
}

/* --- PASSWORD FORM --- */
div.password {
    width: 60%;
    margin: 0 auto;
    padding: 10% 5% 0 5%;
    line-height: 1.5;
    text-align: center;
	color: rgb(255,255,255);
}

div.password form {
    padding: 50px;
    background: rgb(161,166,18);
    border-radius: 15px;
}

div.password form div {
    margin-top: 15px;
}

div.password form label {
    font-weight: bold;
    color: rgb(99,102,10);
    margin-right: 5px;
}

div.password form input[type="password"] {
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    padding: 5px;
}

div.password form input[type="submit"] {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 20px;
    border: none;
    background: rgb(99,102,10);
    color: rgb(255,255,255);
    margin-left: 10px;
	transition: background .5s ease, color .5s ease;
}

div.password form input[type="submit"]:hover {
	cursor: pointer;
	background: rgb(255,255,255);
	color: rgb(161,166,18);
}

p.password-error {
    margin: 15px auto 5% auto;
    text-align: center;
    width: 300px;
    color: rgb(255,255,255);
    font-style: italic;
    padding: 5px;
    background: rgb(196,209,217);
    border-radius: 10px;
}

/* --- FOR VETS --- */
body.page-id-12 div.page-header h1 {
    color: rgb(84,166,217);
}

body.page-id-12 div ul {
	padding: 0;
	list-style: none;
	display: flex;
}

/* Hero */
body.page-id-12 .hero {
    width: 100%;
    margin: 0 auto;
}

body.page-id-12 div.hero .text.container {
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,.8) url(/wp-content/uploads/2021/08/Mythos-Veterinary-For-Vets-Hero-Anesthesia-machine.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

body.page-id-12 .hero h1.bigger, body.page-id-12 .hero h1, body.page-id-12 .hero p {
	width: 75%;
}

body.page-id-12 .hero h1.bigger {
    color: rgb(242,224,201);
	margin-bottom: 50px;
}

body.page-id-12 .hero h1 {
    color: rgb(255,255,255);
}

body.page-id-12 .hero p {
	color: rgb(255,255,255);
}

/* Benefits */
body.page-id-12 .benefits, body.page-id-12 .scheduling, body.page-id-12 .extras {
    width: 80%;
    margin: 0 auto;
	padding: 75px 0;
}

/* H1 Color */
body.page-id-12 .benefits h1, body.page-id-12 .scheduling h1, body.page-id-12 .qualifications h1 {
	color: rgb(0,0,0);
}
/* H1 Text Alignment */
body.page-id-12 .benefits h1, body.page-id-12 .scheduling h1, body.page-id-12 .requirements h1, body.page-id-12 .extras h1, body.page-id-12 .skills h1, body.page-id-12 .pricing h1 {
	text-align: center;
}
/* H1 Margin Bottom */
body.page-id-12 .benefits h1, body.page-id-12 .scheduling h1, body.page-id-12 .extras h1:last-of-type {
	margin-bottom: 75px;
}

body.page-id-12 .benefits ul {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

body.page-id-12 .benefits ul li {
    margin-bottom: 45px;
    border: solid 2px;
    box-shadow: 5px 5px 8px rgb(0 0 0 / 15%);
	padding: 50px;
	border-radius: 15px;
	display: flex;
    justify-content: center;
    align-items: center;
	transition: transform .5s ease;
}

body.page-id-12 .benefits ul li:hover {
	transform: scale(1.01);
}

body.page-id-12 .benefits ul li:nth-child(1) {
	border-color: rgb(161,166,18);
}
body.page-id-12 .benefits ul li:nth-child(2) {
	border-color: rgb(84,166,217);
}
body.page-id-12 .benefits ul li:nth-child(3) {
	border-color: rgb(217,92,135);
}
body.page-id-12 .benefits ul li:nth-child(4) {
	border-color: rgb(191,150,102);
}

body.page-id-12 .benefits ul li img {
    width: 125px;
	margin-right: 50px;
}

body.page-id-12 .benefits ul li:nth-child(1) h2 {
	color: rgb(161,166,18);
}
body.page-id-12 .benefits ul li:nth-child(2) h2 {
	color: rgb(84,166,217);
}
body.page-id-12 .benefits ul li:nth-child(3) h2 {
	color: rgb(217,92,135);
}
body.page-id-12 .benefits ul li:nth-child(4) h2 {
	color: rgb(191,150,102);
}

/* Questions */
body.page-id-12 .question {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

body.page-id-12 .question .image.container {
    width: 35%;
    overflow: hidden;
}

body.page-id-12 .question .image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-12 .question .text.container {
    width: 65%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	color: rgb(255,255,255);
}

body.page-id-12 .question .text.container h1 {
	color: rgb(255,255,255);
}

body.page-id-12 .question.a {
	background: rgb(217,92,135);
}
body.page-id-12 .question.a a:hover {
	color: rgb(153,66,97);
}
body.page-id-12 div.question.b {
	background: rgb(153,66,97);
}

body.page-id-12 div.question.b .image.container {
	order: 2;
}

/* Scheduling */
body.page-id-12 .scheduling {
	text-align: center;
}

body.page-id-12 .scheduling p {
	text-align: center;
}

body.page-id-12 .scheduling ul {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin: 65px auto 25px auto;
}

body.page-id-12 .scheduling ul li {
    flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
}

/* Hidden 08.17.22 according to client changes
body.page-id-12 .scheduling ul li:first-of-type {
    padding-right: 50px;
	border-right: solid 1px rgb(140,148,153);
}*/

body.page-id-12 .scheduling ul li:last-of-type {
    padding-left: 50px;
}

body.page-id-12 .scheduling ul li img {
    width: 125px;
	margin-bottom: 25px;
}

body.page-id-12 .scheduling ul li:first-of-type h2 {
	color: rgb(161,166,18);
}

body.page-id-12 .scheduling ul li:last-of-type h2 {
	color: rgb(84,166,217);
}

body.page-id-12 .scheduling ul li p {
	text-align: center;
	margin-top: 0;
}

body.page-id-12 .scheduling ul li a.button {
	margin-top: auto;
}

body.page-id-12 .scheduling ul li:last-of-type a.button {
	background: rgb(84,166,217);
}
body.page-id-12 .scheduling ul li:last-of-type a.button:hover {
	background: rgb(61,117,153);
}

/* Requirements/Skills */
body.page-id-12 .requirements, body.page-id-12 .skills {
    width: 100%;
    margin: 0 auto;
    padding: 60px 10%;
    text-align: center;
    color: rgb(255,255,255);
}

body.page-id-12 .requirements {
	background: rgb(84,166,217);
}

body.page-id-12 .requirements h1, body.page-id-12 .skills h1 {
	color: rgb(255,255,255);
}

body.page-id-12 .requirements a.button.white {
	color: rgb(84,166,217);
}
body.page-id-12 .requirements a.button.white:hover {
	color: rgb(255,255,255);
	background: rgb(61,117,153);
}
body.page-id-12 .requirements a.button, body.page-id-12 .skills a.button {
	margin-top: 15px;
}

body.page-id-12 .requirements a.button, body.page-id-12 .skills a:hover {
	color: rgb(153,66,97);
}

/* Qualifications */
body.page-id-12 .qualifications {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

body.page-id-12 .qualifications .image.container {
    width: 35%;
    overflow: hidden;
}

body.page-id-12 .qualifications .image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-12 .qualifications .text.container {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: rgba(196,209,217,.5);
	width: 65%
}

body.page-id-12 .qualifications .text.container p:last-of-type {
	margin-top: 5px;
}

body.page-id-12 .qualifications .text.container a.button {
    background: rgb(84,166,217);
	margin-top: 20px;
}
body.page-id-12 .qualifications .text.container a.button:hover {
    background: rgb(61,117,153);
}

/* Extras */
body.page-id-12 .extras h1:first-child {
	color: rgb(99,102,10);
}

body.page-id-12 .extras ul {
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

body.page-id-12 .extras ul li {
    border-radius: 15px;
    background: rgb(84,166,217);
    width: 45%;
    overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 3px 3px 8px rgba(0,0,0,.1);
	transition: transform .5s ease;
}

body.page-id-12 .extras ul li:hover {
	transform: scale(1.01);
}

body.page-id-12 .extras ul li .image.container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

body.page-id-12 .extras ul li .image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-12 .extras ul li .text.container {
    padding: 30px;
    color: rgb(255,255,255);
	flex: 1;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

body.page-id-12 .extras ul li .text.container h2 {
	text-align: center;
}

body.page-id-12 .extras ul li .text.container a.button {
	background: rgb(61,117,153);
	margin-top: 15px;
}
body.page-id-12 .extras ul li .text.container a.button:hover {
	background: rgb(255,255,255);
	color: rgb(84,166,217);
}

body.page-id-12 .extras ul li .text.container a:hover {
	color: rgb(61,117,153);
}

/* Skills */
body.page-id-12 .skills {
	background: rgb(217,92,135);
}

body.page-id-12 .skills a.button.white {
	color: rgb(217,92,135);
}
body.page-id-12 .skills a.button.white:hover {
	color: rgb(255,255,255);
	background: rgb(153,66,97);
}

/* Pricing */
body.page-id-12 .pricing {
    background: rgb(161,166,18);
    width: 100%;
    margin: 60px auto;
    padding: 60px 10%;
}

body.page-id-12 .pricing h1:first-of-type {
	color: rgb(99,102,10);
}

body.page-id-12 .pricing h1.bigger {
	color: rgb(255,255,255);
	margin-bottom: 60px;
}

body.page-id-12 .pricing ul {
    width: 100%;
    margin: 0 auto 35px auto;
    flex-direction: column;
    align-items: center;
}

body.page-id-12 .pricing ul li {
    margin-bottom: 50px;
    background: rgb(255,255,255);
    box-shadow: 5px 5px 8px rgb(0 0 0 / 20%);
    border-radius: 15px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
	overflow: hidden;
	transition: transform .5s ease;
}

body.page-id-12 .pricing ul li:last-child {
	margin-bottom: 0;
}

body.page-id-12 .pricing ul li:hover {
	transform: scale(1.01)
}

body.page-id-12 .pricing ul li .image.container {
    width: 30%;
    overflow: hidden;
}

body.page-id-12 .pricing ul li .image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-12 .pricing ul li .text.container {
    width: 70%;
    padding: 45px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

body.page-id-12 .pricing ul li .text.container h2 {
	color: rgb(161,166,18);
	margin-right: 10px;
}

body.page-id-12 .pricing ul li .text.container h2, 
body.page-id-12 .pricing ul li .text.container h3 {
	display: inline-block;
}

body.page-id-12 .pricing ul li .text.container h3 {
	margin-top: 0;
}

body.page-id-12 .pricing ul li .text.container p {
	margin-top: 0;
	margin-bottom: 25px;
}

body.page-id-12 .pricing ul li .text.container a.button:hover {
	background: rgb(84,166,217);
} 

body.page-id-12 .pricing .dualsession {
    margin-top: 60px;
}

body.page-id-12 .pricing .dualsession h1 {
	color: rgb(255,255,255);
}

body.page-id-12 .pricing .dualsession div {
    background: rgb(99,102,10);
    padding: 50px;
    border-radius: 15px;
    color: rgb(255,255,255);
    text-align: center;
    margin-top: 35px;
}

body.page-id-12 .pricing .dualsession div a.button:hover {
	background: rgb(255,255,255);
	color: rgb(161,166,18);
}

body.page-id-12 .pricing .terms {
    text-align: center;
    color: rgb(255,255,255);
    width: 75%;
    margin: 60px auto 0 auto;
}

body.page-id-12 .pricing .terms p {
	margin-bottom: 15px;
	font-size: .85rem;
}

/* CTA */
body.page-id-12 .cta {
    width: 90%;
    margin: 0 auto;
}

body.page-id-12 .cta ul {
    justify-content: space-between;
    align-items: stretch;
}

body.page-id-12 .cta ul li {
	background: rgb(84,166,217);
    border-radius: 15px;
    box-shadow: 5px 5px 6px rgb(0 0 0 / 5%);
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
	width: 48%;
	overflow: hidden;
	transition: transform .5s ease;
}

body.page-id-12 .cta ul li:hover {
	transform: scale(1.01);
}

body.page-id-12 .cta ul li .text.container {
	padding: 45px 25px;
}

body.page-id-12 .cta ul li .text.container h1 {
	color: rgb(255,255,255);
	margin-bottom: 0;
}

body.page-id-12 .cta ul li .text.container > p {
    color: rgb(255,255,255);
    margin-bottom: 0;
    font-size: 1.1rem;
}

body.page-id-12 .cta ul li div:last-child {
    height: 300px;
	width: 100%;
    background-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,.3);
	transition: background .5s ease;
}

body.page-id-12 .cta ul li:hover div:last-child {
	background-color: rgba(0,0,0,.5);
}

body.page-id-12 .cta ul li:first-child div:last-child{
	background-image: url('/wp-content/uploads/2021/08/Mythos-Veterinary-CTA-Demo.png');
}

body.page-id-12 .cta ul li:last-child div:last-child{
	background-image: url('/wp-content/uploads/2021/08/Mythos-Veterinary-CTA-Session.png');
}

body.page-id-12 .cta ul li a.button {
	transition: transform .5s ease, color .5s ease, background .5s ease, box-shadow .5s ease;
}
body.page-id-12 .cta ul li a.button:hover {
	transform: scale(1.1);
	background: rgb(255,255,255);
	box-shadow: 3px 3px 5px rgba(0,0,0,.05);
}

body.page-id-12 .cta ul li:first-child a.button {
	color: rgb(217,92,135);
}
body.page-id-12 .cta ul li:last-child a.button {
	color: rgb(84,166,217);
}

/* --- FOR CLIENTS --- */
body.page-id-10 .split {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

body.page-id-10 .synergy {
	margin-bottom: 45px;
	background: rgb(217,92,135);
}

body.page-id-10 .consultation {
	background: rgb(84,166,217);
	min-height: 400px;
}

body.page-id-10 .split .image.container {
    width: 40%;
    overflow: hidden;
}

body.page-id-10 .consultation .image.container {
	order: 2;
}

body.page-id-10 .split .image.container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.page-id-10 .split .text.container {
    width: 60%;
    padding: 45px;
    color: rgb(255,255,255);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: flex-start;
}

body.page-id-10 .split .text.container h1 {
	color: rgb(255,255,255);
}

body.page-id-10 .split .text.container a.button {
	margin-top: 10px;
}

body.page-id-10 .synergy a.button {
	color: rgb(217,92,135);
}
body.page-id-10 .synergy a.button:hover {
	color: rgb(255,255,255);
	background: rgb(153,66,97);
}

body.page-id-10 .consultation a.button {
	color: rgb(84,166,217);
}
body.page-id-10 .consultation a.button:hover {
	color: rgb(255,255,255);
	background: rgb(61,117,153);
}

body.page-id-10 .tools {
    width: 90%;
    margin: 65px auto;
}

body.page-id-10 .tools h1 {
	text-align: center;
	margin-bottom: 60px;
}

body.page-id-10 .tools ul {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	width: 100%;
	margin: 0 auto;
}

body.page-id-10 .tools ul li {
	width: 31%;
	border: solid 2px rgb(161,166,18);
	border-radius: 10px;
	padding: 35px 25px 25px 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	color: rgb(161,166,18);
	transition: transform .5s ease;
	background: rgb(255,255,255);
	text-align: center;
}

body.page-id-10 .tools ul li:hover {
	transform: scale(1.01);
}

body.page-id-10 .tools img {
	width: 95px;
	margin-bottom: 25px;
}

body.page-id-10 .tools h2 {
	margin-bottom: 20px;
}

body.page-id-10 .tools p {
	text-align: left;
}

body.page-id-10 .tools a.button {
	margin-top: 10px;
	align-self: center;
}
body.page-id-10 .tools a.button:hover {
	background: rgb(84,166,217);
}

/* --- COMING SOON --- */
body.page-id-103 .page-header h1 {
	color: rgb(84,166,217);
}

body.page-id-103 .page-header.b {
    background: rgb(161,166,18);
}

body.page-id-103 .page-header.b h1 {
	color: rgb(255,255,255);
}

body.page-id-103 .newslist {
    width: 80%;
    margin: 60px auto 0 auto;
}

body.page-id-103 .newslist ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

body.page-id-103 .newslist li {
    width: 100%;
    border: solid 1px rgb(161,166,18);
    border-radius: 15px;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 10%);
    margin-bottom: 45px;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
	transition: border .5s ease;
	overflow: hidden;
}
body.page-id-103 .newslist li:hover {
	border-color: rgb(84,166,217);
}

body.page-id-103 .newslist li .image.container {
    width: 35%;
    overflow: hidden;
	background: url(/wp-content/uploads/2021/09/Mythos-Veterinary-Blog-Default-Image-01.png);
    background-position: center;
    background-size: cover;
}

body.page-id-103 .newslist li .image.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform .5s ease;
}
body.page-id-103 .newslist li:hover .image.container img {
	transform: scale(1.1);
}

body.page-id-103 .newslist li .text.container {
    width: 65%;
    padding: 35px;
}

body.page-id-103 .newslist li .text.container a {
    text-decoration: none;
}

body.page-id-103 .newslist li .text.container h2 {
    color: rgb(161,166,18);
	transition: color .5s ease;
}
body.page-id-103 .newslist li:hover .text.container h2 {
	color: rgb(84,166,217);
}

body.page-id-103 .newslist li .text.container a.category {
    display: inline-block;
    background: rgba(84,166,217);
    color: rgb(255,255,255);
    padding: 4px 8px;
    margin-right: 10px;
	transition: background .5s ease;
}

body.page-id-103 .newslist li .text.container a.category:hover {
	background: rgb(61,117,153);
}

body.page-id-103 .newslist li:hover .text.container a.button, body.page-id-103 .newslist li .text.container a.button:hover {
	color: rgb(255,255,255);
	background: rgb(84,166,217);
}

/* --- RESPONSIVE --- */

@media all and (min-width: 1400px) {
	/* For Vets */
	body.page-id-12 .cta ul li div:last-child {
    	height: 400px;
	}
}

@media all and (max-width: 1300px) {
	/* For Vets CTA */
	body.page-id-12 .cta ul li .text.container {
    	min-height: 231.88px;
	}
}

@media all and (min-width: 1250px) {
	/* Font Sizing */
	h1 {
		font-size: 2rem;
	}
	h1.bigger {
		font-size: 2.3rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.3rem;
	}
	p {
		font-size: 1.2rem;
	}
	p.bigger {
		font-size: 1.6rem;
	}
	a.button {
		font-size: 1.3rem;
		padding: 15px 20px;
		min-width: 215px;
	}
	a.button.bigger {
		font-size: 1.4rem;
		padding: 18px 30px;
    	min-width: 235px;
	}
	/* Header */
	a#logo {
    	max-width: 200px;
	}
	#menu-main-menu li a {
		font-size: 1.2rem;
	}
	#main-header .sub-menu li {
		max-width: 255px;
	}
	/* Hero */
	body.home .hero .left {
    	padding: 3%;
	}
	body.home .hero .right > .image.container {
		height: 275px;
	}
	/* Video */
	body.home div.video iframe {
		max-width: 640px;
		height: 400px;
	}
	/* Start */
	body.home div.start li {
		height: 425px;
	}
	/* Book */
	body div.book .container {
		width: 65%;
	}
	/* Blog */
	div.bloglist li div.image.container {
		height: 250px;
	}
	/* Single Post */
	body.single header.post .image.container {
		height: 400px;
	}
	/* For Vets */
	body.page-id-12 .question .image.container {
    	width: 40%;
	}
	body.page-id-12 .question .text.container {
    	width: 60%;
	}
	body.page-id-12 .scheduling, body.page-id-12 .extras {
    	width: 65%;
	}
	body.page-id-12 .requirements, body.page-id-12 .skills {
		padding: 60px 20%;
	}
	body.page-id-12 .qualifications {
		max-height: 600px;
	}
	/* For Clients */
	body.page-id-10 .split .image.container {
		width: 45%;
	}
	body.page-id-10 .split .text.container {
		width: 55%;
		padding: 65px;
	}
	body.page-id-10 .tools ul li {
		padding: 45px 35px 35px 35px;
	}
}

@media all and (max-width: 950px) {
	/* Mission Statement */
	body.home div.mission ul {
		align-items: self-end;
	}
	body.home div.mission ul li {
		width: 80%;
		margin: 0 auto 35px;
	}
	body.home div.mission ul li .image.container {
    	height: 200px;
	}
	body.home div.mission ul li .text.container {
		padding: 8%;
	}
	/* Blog */
	div.bloglist li div.image.container {
		height: 150px;
	}
	/* Single Post */
	body.single header.post .image.container {
		height: 250px;
	}
	/* Sidebar */
	aside#sidebar div.bloglist li div.image.container {
		height: 135px;
	}
	/* For Vets */
	body.page-id-12 .benefits, body.page-id-12 .scheduling, body.page-id-12 .extras {
    	width: 90%;
	}
}

@media all and (max-width: 900px) {
	/* Requirements */
	body.page-id-14 div.hero .text.container h1, body.page-id-14 div.hero .text.container p {
		width: 100%;
	}
	body.page-id-14 div.checklist, body.page-id-14 div.disclaimer .container {
		width: 90%;
	}
	/* Password Form */
	div.password {
    	width: 80%;
	}
	/* For Clients */
	body.page-id-10 .tools ul {
		flex-direction: column;
		align-items: center;
	}
	body.page-id-10 .tools ul li {
		width: 80%;
		margin-bottom: 45px;
	}
	body.page-id-10 .tools ul li:last-child {
    	margin-bottom: 0;
	}
	/* Coming Soon */
	body.page-id-103 .newslist {
    	width: 90%;
	}
}

@media all and (max-width: 800px) {
	/* Header */
	#main-header {
		justify-content: space-between;
	}
	a#logo {
    	margin-left: 15px;
	}
	div#mobile-menu-button {
		display: flex;
		margin-right: 20px;
	}
	#main-header nav {
    	flex-basis: 100%;
		display: block;
		transition: max-height 1s ease;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		overflow: hidden;
		border-bottom-left-radius: 5%;
		border-bottom-right-radius: 5%;
		box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
	}
	#main-header nav.closed {
		max-height: 0;
	}
	#main-header nav.opened {
		max-height: 499px;
	}
	#main-header .menu-main-menu-container {
		height: unset;
	}
	ul#menu-main-menu {
    	flex-wrap: wrap;
	}
	#menu-main-menu li {
    	flex-basis: 100%;
	}
	#menu-main-menu li a, #main-header .sub-menu li a {
		background: rgb(161,166,18);
		color: rgb(255,255,255);
		padding: 25px;
		text-align: center;
		font-size: 1.1rem;
		transition: background .5s ease;
	}
	#menu-main-menu li a:hover, #main-header .sub-menu li a:hover {
		background: rgb(99,102,10);
		color: rgb(255,255,255);
	}
	#menu-main-menu li#menu-item-23 > a:after {
		background-image: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Icon-lock-white.png");
	}
	#menu-main-menu li#menu-item-23 > a:hover:after {
		background-image: url("/wp-content/uploads/2021/06/Mythos-Veterinary-Icon-lock-white.png");
	}
	#main-header ul.sub-menu {
		position: static;
		max-height: unset;
	}
	#main-header .sub-menu li {
		max-width: unset;
	}
	#main-header .sub-menu li:last-child {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	#main-header .sub-menu li a:before {
		content: "—";
		margin-right: 5px;
	}
	/* Hero */
	body.home .hero .left {
		flex-basis: 100%;
		align-items: center;
		padding: 50px 5%;
		text-align: center;
	}
	body.home .hero .right {
		flex-basis: 100%;
		border-top: solid 4px rgb(255,255,255);
		border-bottom: solid 4px rgb(255,255,255);
	}
	/* Book Section */
	body div.book > div.container {
		width: 100%;
	}
	body div.book .text.container {
		padding: 50px 50px 50px 0;
	}
	/* Blog */
	div.bloglist li {
    	width: 48%;
	}
	div.bloglist li div.image.container {
		height: 200px;
	}
	/* Single Post */
	body.single div.post-content {
    	width: 100%;
	}
	/* Share */
	div#share {
		justify-content: center;
	}
	/* Sidebar */
	aside#sidebar {
		width: 100%;
		order: 3;
	}
	aside#sidebar div.bloglist li div.image.container {
		height: 225px;
	}
	aside#sidebar div.bloglist a.button {
		margin: 0 0 8px 0;
	}
	/* Single Post Footer */
	footer.post {
		margin-bottom: 45px;
	}
	/* For Vets */
	body.page-id-12 .hero h1.bigger {
		margin-bottom: 35px;
	}
	body.page-id-12 .question .image.container img {
		object-position: 70%;
	}
	body.page-id-12 .scheduling ul li img {
		width: 100px;
	}
	body.page-id-12 .extras ul li {
		width: 47%;
	}
	body.page-id-12 .cta ul li .text.container {
		min-height: 294.02px;
	}
}

@media all and (max-width: 750px) {
	/* Default Page Headers */
	body.page div.page-header {
    	padding: 8% 5%;
	}
	/* For Vets */
	body.page-id-12 .hero h1.bigger, body.page-id-12 .hero h1, body.page-id-12 .hero p {
		width: 100%;
	}
	body.page-id-12 .benefits ul li {
		flex-direction: column;
	}
	body.page-id-12 .benefits ul li img {
		margin-right: 0;
		margin-bottom: 45px;
	}
	body.page-id-12 .benefits ul li h2 {
		text-align: center;
		margin-bottom: 35px;
	}
	body.page-id-12 .extras ul {
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	body.page-id-12 .extras ul li {
		width: 80%;
		margin-bottom: 55px;
	}
	body.page-id-12 .extras ul li:last-child {
		margin-bottom: 0;
	}
	body.page-id-12 .pricing {
		padding: 60px 8%;
	}
	body.page-id-12 .pricing ul li {
		flex-direction: column;
		align-items: center;
	}
	body.page-id-12 .pricing ul li .image.container {
		width: 100%;
		height: 225px;
		display: none;
	}
	body.page-id-12 .pricing ul li .image.container.mobile {
		display: block;
	}
	body.page-id-12 .pricing ul li .text.container {
    	width: 100%;
	}
	body.page-id-12 .pricing .terms {
		width: 100%;
	}
	/* Coming Soon */
	body.page-id-103 .newslist li .image.container {
		max-height: 400px;
	}
}

@media all and (max-width: 665px) {
	/* For Vets */
	body.page-id-12 .cta ul {
		flex-direction: column;
		align-items: center;
	}
	body.page-id-12 .cta ul li {
		width: 80%;
		margin-bottom: 50px;
	}
	body.page-id-12 .cta ul li:last-child {
		margin-bottom: 0;
	}
}

@media all and (max-width: 650px) {
	/* About */
	body.home div.about {
		padding: 65px 5%;
	}
	body.home div.about p {
    	width: 100%;
	}
	/* Mission Statement */
	body.home div.mission > p {
    	width: 100%;
	}
	body.home div.mission ul li {
    	width: 100%;
	}
	body.home div.mission ul li .image.container {
    	height: 165px;
	}
	/* Start */
	body.home div.start li {
    	height: 250px;
		flex-basis: 100%;
	}
	/* Book */
	body div.book > .container {
		padding: 50px 0;
	}
	body div.book .container .image.container {
		min-width: 0;
		margin-right: 0;
		width: 250px;
		height: 300px;
		margin-bottom: 35px;
	}
	body div.book .text.container {
		padding: 0 5%;
		flex-basis: 100%;
		text-align: center;
	}
	body div.book h1, body div.book .button {
		margin: 0 auto;
	}
	body div.book .text.container .container {
		justify-content: center;
		margin: 0 auto;
	}
	/* Default Index Page -- */
	body main.index {
		width: 90%;
		padding: 8% 0;
	}
	/* Blog */
	div.bloglist li div.image.container {
		height: 150px;
	}
	/* About */
	body.page-id-8 div.section .image.container {
		width: 100%;
		height: 300px;
	}
	body.page-id-8 div.section .text.container {
		width: 100%;
		padding: 10% 5%;
		order: 2
	}
	/* Password Form */
	div.password {
    	width: 100%;
	}
	/* For Vets */
	body.page-id-12 .question {
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	body.page-id-12 .question .image.container {
		width: 100%;
		height: 250px;
	}
	body.page-id-12 .question .text.container {
		width: 100%;
		padding: 50px 5%;
	}
	body.page-id-12 div.question.b .image.container {
		order: 0;
	}
	body.page-id-12 .cta ul li .text.container {
		min-height: 0;
	}
	body.page-id-12 .scheduling ul {
		align-items: center;
		justify-content: start;
		flex-direction: column;
	}
	body.page-id-12 .scheduling ul li {
		width: 100%;
	}
	body.page-id-12 .scheduling ul li:first-of-type {
		padding-right: 0;
		/* padding-bottom: 55px;*/
		border-right: none;
		/* border-bottom: solid 1px rgb(140,148,153); */
		/* Removed padding and border 08.17.22 according to client changes */
	}
	body.page-id-12 .scheduling ul li:last-of-type {
		padding-left: 0;
		padding-top: 55px;
	}
	/* For Clients */
	body.page-id-10 .split {
		flex-direction: column;
	}
	body.page-id-10 .split .image.container {
		width: 100%;
		order: 0 !important;
		height: 250px;
	}
	body.page-id-10 .split .image.container img {
		object-position: top;
	}
	body.page-id-10 .split .text.container {
    	width: 100%;
	}
}

@media all and (max-width: 600px) {
	/* Contact */
	body.page-id-20 div.section .image.container {
    	width: 100%;
	}
	body.page-id-20 div.section .image.container.desktop {
		display: none;
	}
	body.page-id-20 div.section .image.container.mobile {
		display: block;
	}
	body.page-id-20 div.section .text.container {
    	width: 100%;
		padding: 10% 5%;
	}
	/* Requirements */
	body.page-id-14 div.hero .text.container {
    	padding: 15% 5%;
	}
	/* For Vets */
	body.page-id-12 div.hero .text.container {
    	padding: 15% 5%;
	}
	body.page-id-12 .scheduling ul li img {
		width: 85px;
	}
	body.page-id-12 .qualifications {
		align-items: center;
		flex-direction: column;
	}
	body.page-id-12 .qualifications .image.container {
		display: none;
	}
	body.page-id-12 .qualifications .image.container.mobile {
		display: block;
	}
	body.page-id-12 .qualifications .image.container {
		width: 100%;
		height: 250px;
	}
	body.page-id-12 .qualifications .text.container {
		width: 100%;
	}
	body.page-id-12 .extras ul li {
    	width: 100%;
	}
	/* For Clients */
	body.page-id-10 .tools ul li {
    	width: 100%;
	}
	/* Coming Soon */
	body.page-id-103 .newslist li {
    	flex-direction: column;
	}
	body.page-id-103 .newslist li .image.container {
		width: 100%;
		max-height: 250px;
	}
	body.page-id-103 .newslist li .text.container {
    	width: 100%;
	}
}

@media all and (max-width: 500px) {
	/* Font Sizing */
	h1 {
		font-size: 1.6rem;
	}
	h1.bigger {
		font-size: 1.8rem;
	}
	h2 {
    	font-size: 1.25rem;
	}
	h3 {
		font-size: 1.05rem;
	}
	p, body.single main.post ul, body.single main.post ol {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	p.bigger {
		font-size: 1.3rem;
	}
	a.button.bigger {
		font-size: 1rem;
		padding: 12px;
		min-width: 165px;
	}
	/* Hero */
	body.home .hero .left h1 {
    	font-size: 2.5rem;
	}
	body.home .hero .left h2 {
		font-size: 1.4rem;
	}
	body.home .hero .right > .image.container {
		height: 150px;
	}
	/* Video */
	body.home div.video {
    	padding: 45px 5%;
	}
	body.home div.video iframe {
		height: 250px;
	}
	/* Contact Section */
	div.contact ul.social li {
    	width: 50%;
	}
	/* Blog */
	body.blog h1 {
		margin: 45px 0;
	}
	div.bloglist li {
		width: 100%;
	}
	div.bloglist li div.image.container {
		height: 200px;
	}
	/* Single Post */
	body.single > main {
		margin-top: 35px;
	}
	body.single header.post {
		margin-bottom: 35px;
	}
	body.single header.post a.button {
		margin-bottom: 25px;
	}
	body.single header.post .image.container {
    	height: 225px;
	}
	body.single header.post a.date {
    	font-size: 1rem;
	}
	body.single main.post figure.wp-block-pullquote {
		padding: 15px 0;
	}
	body.single main.post figure.wp-block-pullquote blockquote {
		margin-left: 0;
		margin-right: 0;
	}
	/* Sidebar */
	aside#sidebar div.bloglist li div.image.container {
		height: 175px;
	}
	/* Single Post Footer */
	footer.post {
    	font-size: 1.1rem;
	}
	/* Password Form */
	div.password form {
    	padding: 30px;
	}
	div.password form input[type="submit"] {
		padding: 5px 30px;
		margin-left: 0;
		display: block;
		margin: 0 auto;
		margin-top: 10px;
	}
	/* For Vets */
	body.page-id-12 .benefits h1, body.page-id-12 .scheduling h1, body.page-id-12 .extras h1:last-of-type {
		margin-bottom: 50px;
	}
	body.page-id-12 .benefits ul li {
		padding: 35px;
		margin-bottom: 35px;
	}
	body.page-id-12 .benefits ul li img {
		width: 75px;
		margin-bottom: 25px;
	}
	body.page-id-12 .benefits ul li h2 {
		margin-bottom: 25px;
	}
	body.page-id-12 .qualifications .text.container {
    	padding: 60px 8%;
	}
	body.page-id-12 .extras {
		padding: 55px 0;
	}
	body.page-id-12 .pricing ul li .text.container {
		padding: 35px;
	}
}

@media all and (max-width: 450px) {
	/* Book Section */
	body div.book .text.container .container {
    	flex-direction: column;
		align-items: center;
	}
	body div.book .text.container .container a.button {
    	margin-right: 0;
		margin-left: 0;
	}
}

@media all and (max-width: 400px) {
	/* Video */
	body.home div.video iframe {
		height: 200px;
	}
	/* Book */
	body div.book > div.container {
    	width: 90%;
	}
	body div.book .container .image.container {
		width: 200px;
		height: 250px;
	}
	/* Default Index Page -- */
	body main.index {
		width: 90%;
		padding: 10% 0;
	}
	/* Blog */
	div.bloglist li div.image.container {
		height: 150px;
	}
	/* Single Post */
	body.single header.post .image.container {
		height: 200px;
	}
	/* Share */
	div#share {
		flex-wrap: wrap;
		margin-top: 35px;
	}
	div#share p {
		width: 100%;
		text-align: center;
		margin-bottom: 5px;
		margin-right: 0;
		margin-top: 0;
	}
	/* Default Page Headers */
	body.page div.page-header {
    	padding: 10% 5%;
	}
	/* Contact */
	body.page-id-20 div.section .image.container {
		min-height: 275px;
	}
	/* Requirements */
	body.page-id-14 div.hero .text.container {
    	padding: 15% 5%;
	}
	body.page-id-14 div.disclaimer {
    	padding: 45px 0;
	}
	/* For Vets */
	body.page-id-12 div.hero .text.container {
   		padding: 15% 10%;
	}
	body.page-id-12 .hero h1.bigger {
		margin-bottom: 25px;
	}
	body.page-id-12 .hero p {
		margin-top: 5px;
	}
	body.page-id-12 .benefits ul li {
		padding: 25px;
	}
	body.page-id-12 .scheduling ul li img {
		width: 75px;
	}
	body.page-id-12 .requirements, body.page-id-12 .skills {
   		padding: 45px 8%;
	}
	body.page-id-12 .qualifications .image.container {
		height: 225px;
	}
	body.page-id-12 .qualifications .text.container {
    	padding: 50px 8%;
	}
	body.page-id-12 .qualifications .text.container a.button {
		margin-top: 10px;
	}
	body.page-id-12 .extras ul li .image.container {
		height: 200px;
	}
	body.page-id-12 .extras ul li .text.container {
    	padding: 25px;
	}
	body.page-id-12 .pricing ul li .image.container {
		height: 200px;
	}
	body.page-id-12 .pricing ul li .text.container {
		padding: 25px;
	}
	body.page-id-12 .pricing .dualsession div {
		padding: 35px;
	}
	body.page-id-12 .cta ul li {
		width: 90%;
		margin-bottom: 35px;
	}
	/* For Clients */
	body.page-id-10 .split .text.container {
		padding: 35px 35px 45px 35px;
	}
	body.page-id-10 .tools ul li {
		margin-bottom: 35px;
	}
	/* Coming Soon */
	body.page-id-103 .newslist {
		margin: 40px auto 0 auto;
	}
	body.page-id-103 .newslist li {
    	margin-bottom: 35px;
	}
	body.page-id-103 .newslist li .image.container {
		max-height: 200px;
	}
	body.page-id-103 .newslist li .text.container {
		padding: 25px;
	}
}