/*
Theme Name: The HTML5 Reset Theme
Theme URI: http://html5reset.org
Description: A style-free theme to get you started on an HTML5-based WordPress theme of your own.
Author: Monkey Do! + @ckhicks
Author URI: http://monkeydo.biz
Version: 2.0
License: BSD 2-Clause
License URI: http://opensource.org/licenses/bsd-license.php
*/

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {font: 13px Helmet, Freesans, sans-serif;}

/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */

/* We like off-black for text. */
body, select, input, textarea {color: #454545;}

a {color: #03f;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;}

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }


/* And here begins the WordPress fun.
-------------------------------------------------------------------------------*/

#wrapper {width: 960px; margin: 20px auto;}


/* Print styles!
-------------------------------------------------------------------------------*/
@media print {

}


/* Media queries!
-------------------------------------------------------------------------------*/

/* Always do mobile-first, and consider using em units: http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw

@media screen and (min-width: 480px) {

} */


@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
        
html {
    background-color: #111;
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    max-width: 1920px;
    margin: 0 auto;
}

.whitewrap {
    background-color: #fff;
}

p {
    color: #454545;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', serif;
}

.home .logoRoundTop {
    display: none;
}

.logoRoundTop {
    width: 220px;
    position: absolute;
    left: 4vw;
    top: -20px;
}

.menubtn {
    height: 80px;
    width: 80px;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    left: 0;
    background-color: #fff;
    z-index: 21;
    animation-name: animateAsideIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .8s;
    border-radius: 80px;
    margin-top: 40px;
    margin-right: 4vw;
    margin-left: 20px;
}

.menubtn span {
    
    background-color: #ebb5c5;
    height: 10px;
    width: 80%;
    display: block;
    margin: 5px 0;
    border-radius: 2px;
}

.menubtn::before {
    content: '';
    background-color: #ebb5c5;
    height: 10px;
    border-radius: 2px;
    display: block;
    width: 80%;
}

.menubtn::after {
    content: '';
    background-color: #ebb5c5;
    height: 10px;
    border-radius: 2px;
    display: block;
    width: 80%;
}

.menubtn span, .menubtn::before, .menubtn::after {
    transition: ease-out .4s;
}

.menubtn:hover span, .menubtn:hover::before, .menubtn:hover::after {
    transition: ease-out .4s;
    background-color: #cf614e;
}

.menubtn:hover {
    background-color: #fbda63;
}

#main_nav {
    position: fixed;
    background-color: #fff8;
    transition: all .4s;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

}

.navtoggled #pageEffects {
    /*filter: blur(5px);*/
    opacity: .5
}

.navtoggled #main_nav {
    
    visibility: visible;
    opacity: 100;
    z-index: 999;
    transition: ease-in .5s;

}

.navtoggled .navcontain {
    animation-name: myfadeInAnimation;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .8s;
    background-color: #454545;
    margin-top: 15vh;
    min-width: 600px;
    border-radius: 6px;
    display: flex;
    box-shadow: 0px 1px 7px #1112;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
    z-index: 4;

}

.closemenu {
    position: absolute;
    right: -90px;
    left: auto;
    top: -60px;
}

.closemenu::before, .closemenu::after {
    display: none;
}

.contacttop a {
    color: #fff;
    text-decoration: none;
}

.contacttop p {
    font-size: 40px 30px 20px 20px;
}

.menu_contact p {
    max-width: 500px;
    margin-bottom: 30px;
    font-weight: 800;
}

.closemenu:hover {
    background-color: #cf614e;
    transition: all .2s;
}

.backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.nav_footer img {
    margin-bottom: 40px;
    width: 140px;
    display: block;
}

.menuContainer {
    display: flex;
    font-size: 2em;
    font-family: 'PT Serif', serif;
    align-items: flex-start;
    flex-direction: column;
    background-color: #454545;
    color: #fff;
    position: relative;
    z-index: 2;
    background-position: 80% -2px;
    background-repeat: no-repeat;
    background-size: auto 137%;
    background-image: url(images/tail.svg);
}

.privacy {
    font-size: 16px;
}

.privacy a {
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.menuContainer p {
    color: #fff;
}

.menuContainer div {
    padding: 20px;
}

.menuContainer ul {
    flex: ;
}

.menu_contact form {
    display:flex;
    flex-direction: column;
}

.menu_contact input {
    width: 90%;
    height: 40px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    padding: 10px;
}

.menu_contact div {
    flex: 1;
}

.menu_contact h5 {
    margin-bottom: 30px;
    padding-top: 30px;
    font-size: 2em;
}

.menu_contact textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    padding: 10px;
}

.wpcf7-submit {
    background-color: #fff;
    color: #454545;
    display: block;
    width: max-content;
    text-decoration: none;
    font-size: 18px;
    font-family: 'PT Serif', serif;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: none;
    float: right;
    margin-top: 10px;
    
}

#main_nav ul {
    padding: 0;
    flex: 1;
    
}

#main_nav ul li {
    list-style: none;
    padding: 5px 0px 5px 0;
}

#main_nav ul li:hover {
    padding: 5px 0px 5px 8px;
    border-left: 4px solid #cf614e;
}

#main_nav ul li a {
    background-color: #fbda63;
    color: #454545;
    display: block;
    width: max-content;
    text-decoration: none;
    font-size: .8em;
    font-family: 'PT Serif', serif;
    padding: 8px;
    border-radius: 4px;
    border: none;
}

#main_nav ul {
    white-space: nowrap;
    padding: 40px 90px 20px 20px;
    
}

.menu_contact {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fbda63;
    padding-right: 30px;
    
}

.nav_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: #fff;
}

#footer a {
    color: #494949;
    text-decoration: none;
}

.nav_footer .logo_menu {
    height: 43px;
}

.nav_email {
    position: absolute;
    left: 4vw;
    letter-spacing: 1.4px;
    font-weight: bold;
}

#main_nav #mc_embed_signup {
    text-align: center;
    font-size: 1.4em;
}

header {
    position: fixed;
    top: 0;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.page header {
    justify-content: flex-end;
}

.admin-bar header {
    position: fixed;
    top: 32px;
}

.socialtop {
    background-color: #fff;
    display: flex;
    margin-left: 4vw;
    margin-top: 40px;
    padding: 0 10px;
    border-radius: 100px;
    width: max-content;
}

.socialtop li {
    display: inline-block;
    padding: 10px 5px;
}

.socialtop img {
    width: 60px;
    height: 60px;
}

.socialtop a {
    
}

#hero {
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-position: bottom center;
}

#hero.innerhero {
    justify-content: center;    
}

#hero.innerhero h1 {
    max-width: 900px;
}

#hero .logo {
    width: 400px;
    display: block;
    margin: 0 auto;
    padding-top: 40px;
}

#hero h1 {
    font-size: 4em;
    line-height: 1em;
    padding: 0 8vw;
    color: #fff;
    text-shadow: 3px 3px 3px #1112;
    margin-bottom: 10%;
}

#leadins {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    font-family: 'PT Serif', serif;
    padding: 40px 8vw;
    background-color: #fbd963;
    position: relative;
}

#leadins span {
    background-color: #f3f3f3;
    height: 190px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

#leadins a {
    color: #454545;
    background-color: #fff;
    width: 32%;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
}

#leadins img {
    display: block;
    width: 100%;
}

#leadins a:hover img {
    opacity: .7;
    transition: all .2s;
}

#leadins h3 {
    padding: 20px;
    height: 150px;
    font-size: 1.4em;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    align-items: center;
    font-size: 1em;
    font-weight: bold;
}

footer div {
}

footer img {
    width: 150px;
}

#pageS1 {
    margin: -320px 4vw 0;
    padding: 40px 8vw;
    font-size: 1.2em;
    background-color: #fff;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#pageS1 div {
    display:flex;
}

#pageS1 h2 {
    padding-bottom: 20px;
    font-size: 2em
}

#pageS1 p {
    padding-bottom: 40px;
    font-family: 'PT Serif', serif;
    font-size: 1.4em;
}

#pageS1 ul {
    display: inline-block;
    margin: 0 auto;
    padding-top: 10%;
    padding-left: 70px;
    padding-right: 40px;
}

#pageS1 li {
    font-size: 1.2em;
    position: relative;
}

#pageS1 li::before {
    content: '';
    height: 12px;
    width: 12px;
    display: block;
    background-color: #fbd963;
    border-radius: 20px;
    position: absolute;
    left: -20px;
    top: 9px;
}

.topFlex {
    display: flex;
}

.ps1Left {
    flex-direction: column;
    justify-content: space-between;
}

.ps1Left img {
}

.ps1Right {
    align-items: flex-end;
}

.ps1Right img {
    margin-left: 20px;
}

#sectionCard {
    display: flex;
    align-items: center;
    padding: 40px 4vw;
    background-color: #f3e19e;
    position: relative;
}

#sectionCard p:first-of-type{
    font-weight: bold;
}

#sectionCard.rev {
    flex-direction: row-reverse;
    background-color: #bcdcdf;
}

#sectionCard div {
    width: 70%;
    background-color: #f3f3f3;
    border-radius: 6px;
    padding: 40px 15% 40px 40px;
    overflow: hidden;
    position: relative;
}

#sectionCard.rev div {
    width: 70%;
    background-color: #f3f3f3;
    border-radius: 6px;
    padding: 40px 40px 40px 15%;
    position: relative;
}

#sectionCard div.contdiv::after {

    content: '';
    background-color: #fff;
    height: 500px;
    width: 500px;
    display: block;
    position: absolute;
    z-index: 0;
    border-radius: 1000px;
    top:-20%;
    left: -10%;

}

#sectionCard.rev div.contdiv::after {

    content: '';
    background-color: #fff;
    height: 500px;
    width: 500px;
    display: block;
    position: absolute;
    z-index: 0;
    border-radius: 1000px;
    bottom: -20%;
    right: -10%;
    top: auto;
    left: auto;

}

#sectionCard h3 {
    font-size: 2.4em;
    margin-bottom: 20px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
}

#sectionCard h3 span{
    background-color: #cf614e;
    display: table;
    padding: 0 5px 0 40px;
    color: #fff;
}

#sectionCard h3 span:nth-last-child() {
    border-bottom: 5px solid #cf614e;
}

#sectionCard p {
    padding-bottom: 20px;
    font-size: 1.2em;
    position: relative;
    z-index: 2;
}

#sectionCard img {
    border-radius: 1000px;
    width: 600px;
    position: absolute;
    right: 4vw;
    max-width: 35%;
}

#sectionCard.rev img {
    border-radius: 1000px;
    width: 600px;
    position: absolute;
    left: 4vw;
    max-width: 35%;
}

h1 span {
    color: #fbd963;
}

#sectionCard .round1 {
    background-color: #83ba6d;
    position: absolute;
    width: 140px;
    right: 2vw;
    height: 140px;
    padding: 0;
    top: 40px;
    border-radius: 100px;
}

#sectionCard .round2 {
    background-color: #cf614e;
    position: absolute;
    width: 50px;
    right: 2vw;
    height: 50px;
    padding: 0;
    top: 32%;
    border-radius: 100px;
}

#sectionCard.rev .round3 {
    background-color: transparent;
    border: 9px solid #f3e19e;
    position: absolute;
    width: 160px;
    left: 32vw;
    height: 160px;
    padding: 0;
    bottom: 2%;
    border-radius: 100px;
}

#sectionCard .round3 {
    background-color: transparent;
    border: 9px solid #f3e19e;
    position: absolute;
    width: 160px;
    left: 32vw;
    height: 160px;
    padding: 0;
    bottom: 2%;
    border-radius: 100px;
}

#introHome {
    max-width: 900px;
    display: flex;
    margin: 0px auto;
    padding: 80px 0;
}

#introHome h4 {
    color: #fbd963;
    flex: 1;
    font-size: 2.4em;
    font-weight: bold;
}

#introHome p {
    flex: 2;
    font-size: 2.4em;
    font-family: 'PT Serif', serif;
    border-left: 3px solid #fbd963;
    padding-left: 10px;
}

 #aboutHome {
     display: flex;
     padding: 40px 8vw;
     background-color: #fff;
 }

 #aboutLeft {
     flex: 1;
     position: relative;
 }

 #aboutLeft img {
     border-radius: 1000px;
     overflow: hidden;
 }

 #aboutLeft .imageRound {
    padding-left: 80px;
    padding-top: 80px;
 }

 #aboutContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 80px;
     background-color: #fff;
 }

  #aboutContent p {
    font-family: 'PT Serif', serif;
    font-size: 1.8em;
    padding-bottom: 40px;
 }

#aboutpage {
    display: flex;
    padding: 0px 12vw;
    background-color: #fff;
    flex-direction: row-reverse;
}

#aboutpage.rev {
    display: flex;
    padding: 0px 12vw 80px;;
    background-color: #fff;
    flex-direction: row;
}

#aboutpage h2 {
    background-color: #cf614e;
    display: table;
    padding: 0 5px 0 40px;
    color: #fff;
    font-size: 2.4em;
    margin-bottom: 20px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
}

#aboutpage h3 {
    font-size: 2em;
    padding-bottom: 20px;
}

#aboutpage h3 em {
    opacity: .5;
}

#aboutpage #aboutLeft {
     flex: 1;
     position: relative;
 }

#aboutpage #aboutLeft img {
     border-radius: 1000px;
     overflow: hidden;
 }


#aboutpage #aboutLeft .imageRound {
    padding-right: 0px;
    padding-left: 80px;
    padding-top: 80px;
 }
#aboutpage.rev #aboutLeft .imageRound {
    padding-left: 0px;
    padding-right: 80px;
    padding-top: 0px;

}

#aboutpage #aboutContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 80px;
     background-color: #fff;
 }

#aboutpage  #aboutContent p {
    font-family: 'PT Serif', serif;
    font-size: 1.2em;
    padding-bottom: 40px;
 }

 .logoRoundHome {
    width: 240px;
    position: absolute;
    top: 0;
    left: 0;
 }

.mainLogo {
    display: block;
    cursor: pointer;
}

 #aboutContent .readmore {
    background-color: #fbda63;
    color: #454545;
    display: block;
    width: max-content;
    text-decoration: none;
    font-size: 1.4em;
    font-family: 'PT Serif', serif;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
 }

 #articleHome {
     display: flex;
     background-color: #fbda63

 }

 #articleHome {
     object-fit: cover;
 }

 #articleHome img {
     display: block;
 }

 #articleHome>div {
     flex: 1;
     display: flex;
     align-items: center;
 }

 #articleHome .pad {
     padding: 0 8vw 0 40px;
 }

 #articleHome h4 {
     font-size: 1.8em;
     padding-bottom: 10px;
 }

 #articleHome p {
     font-size: 1.2em;
     padding-bottom: 40px;
 }

 #articleHome .readmore {
    background-color: #fff;
    color: #454545;
    display: block;
    width: max-content;
    text-decoration: none;
    font-size: 1.4em;
    font-family: 'PT Serif', serif;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
 }

 #articleHome .readmore:hover, #aboutContent .readmore:hover {
    background-color: #cf614e;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
}

#testimonialHome {
    background-color: #f3f3f3;
    display: block;
    padding: 40px 0;
}

#testimonialHome .slide>div {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

#testimonialHome>div>div {
    flex: 2;
}

#testimonialHome p {
    padding-bottom: 15px;
}

#testimonialHome img {
    flex: 1;
    margin-left: 40px;
    border-radius: 500px;
    width: 40%;
}

#testimonialHome a {
    color: #202020;
}
.quotename {
    text-align: right;
    padding-top: 10px;
}
#testimonialHome h4 {
    font-size: 1.8em;
    padding-bottom: 10px;
}

#testimonialHome p {
    font-size: 1.2em;
}

#newsletterFooter {
    display: block;
    padding: 40px 0;
    background-color: #b3c0c1;
}

#newsletterFooter h5 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

#newsletterFooter .fmfields {
    display: flex;
    justify-content: space-between;
}

#newsletterFooter input {
    width: 49%;
    display: block;
    margin-bottom: 20px;
    height: 40px;
    border: none;
    border-radius: 4px;
}

#newsletterFooter button {
    background-color: #fff;
    color: #454545;
    display: block;
    width: max-content;
    text-decoration: none;
    font-size: 18px;
    border: none;
    font-family: 'PT Serif', serif;
    padding: 8px;
    margin-bottom: 20px;
    float: right;
    border-radius: 4px;
}

#newsletterFooter form::after {
    content: '';
    height: 1px;
    display: block;
    clear: both;
}

#newsletterFooter form {
    max-width: 900px;
    margin: 0 auto;
    display: none;
}

footer {
    background-color: #fff;

}

footer div {
    flex: 1;
    font-weight: bold;
}

footer div:nth-child(1) {
    
}

footer div:nth-child(2) {
    text-align: center;
}

footer div:nth-child(3) {
    text-align: right;
}

.contact_btn:hover, #newsletterFooter button:hover {
    background-color: #cf614e;
    color: #fff;
    transition: all .2s;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}


@media screen and (max-width: 920px) {
    
    body {
    }
    
    .socialtop {
        display: none;
    }
    
    header {
        position: fixed;
        top: 0;
        z-index: 9;
        display: flex;
        justify-content: flex-end;
        width: 100%;

    }
    
    #hero .logo {
        width: 210px;
        display: block;
        padding-top: 51px;
        margin: 0 30px;
    }
    
    #leadins {
        flex-direction: column;
    }
    
    #leadins a {
        width: auto;
        margin-bottom: 40px;
    }
    
    #introHome {
        max-width: 900px;
        display: flex;
        margin: 0px auto;
        padding: 80px 4vw;
    }
    
    #introHome p {
        font-size: 2em;
    }
    
    #leadins img {
        display: block;
        width: 100%;
        height: auto;
    }
    
    #testimonialHome > div {
        max-width: 900px;
        margin: 0 auto;
        align-items: center;
        flex-direction: column-reverse;
        padding: 40px 8vw;
    }
    
    #testimonialHome .slide>div {
        flex-direction: column-reverse;
    }
    
    .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
        position: relative !important;
    }
    
    #testimonialHome img {
        flex: 1;
        margin-left: 0;
        border-radius: 500px;
        margin-bottom: 40px;
    }
    
    #aboutHome {
        display: flex;
        padding: 40px 8vw;
        background-color: #fff;
        flex-direction: column;
    }      
    
    #aboutContent {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 0;
        background-color: #fff;
        margin-top: 40px;
        text-align: center;
    }
    
    #aboutContent .readmore {
        background-color: #fbda63;
        color: #454545;
        display: block;
        width: max-content;
        text-decoration: none;
        font-size: 1.4em;
        font-family: 'PT Serif', serif;
        padding: 8px;
        margin-bottom: 20px;
        border-radius: 4px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #articleHome {
        flex-direction: column;
    }
    
    #articleHome .pad {
        padding: 40px 8vw 30px 40px;
    }
    
    footer {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        align-items: center;
        font-size: 1em;
        font-weight: bold;
        flex-direction: column;
    }
    
    footer img {
        padding: 30px 0;
    }
    
    #hero {
        background-position: center;
        background-image: url(images/m_hero_homepage.jpg) !important;
        height: 900px;
    }
    
    .page-id-10 #hero {
        background-position: center;
        background-image: url(images/m_catnip_about_hero.jpg) !important;
        height: 900px;
    }
    
    .page-id-8 #hero {
        background-position: center;
        background-image: url(images/m_catnip_innerpge_hero.jpg) !important;
        height: 900px;
    }
    
    .menu_contact {
        display: none;
    }
    
    .navtoggled .navcontain {
        min-width: inherit;
    }
    
    .closemenu {
        position: absolute;
        right: -60px;
        left: auto;
        top: -70px;
    }
    
    .menubtn {
        margin-top: 60px;
    }
    
    #hero h1 {
        font-size: 8vw;
        line-height: 1em;
        padding: 0 8vw;
        color: #fff;
        text-shadow: 3px 3px 3px #1112;
        margin-bottom: 10%;
    }
    
    #sectionCard div, #sectionCard.rev div {
        width: auto;
    }
    
    #sectionCard {
        display: flex;
        align-items: center;
        padding: 40px 4vw;
        background-color: #f3e19e;
        position: relative;
        flex-direction: column-reverse
    }
    
#sectionCard img {
    border-radius: 1000px;
    width: 100%;
    position: relative;
    right: 4vw;
    max-width: 100%;
    padding-left: 30px;
    padding-bottom: 20px;
}
    
    #sectionCard.rev img {
    border-radius: 1000px;
    width: 100%;
    position: inherit;
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
    padding-right: 50px;
}
    

#sectionCard.rev div {

    width: auto;
    background-color: #f3f3f3;
    border-radius: 6px;
    padding: 40px 40px 40px 40px;
    position: relative;

}
    
    
#newsletterFooter {

    display: block;
    padding: 40px 4vw;
    background-color: #b3c0c1;

}
    
    #sectionCard.rev {
    flex-direction: column-reverse;
    background-color: #bcdcdf;
}
    
    .ps1Right {
    align-items: flex-end;
    visibility: hidden;
}
    
    #pageS1 div.topFlex {
        display: none;
    }
    
    #leadins {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        font-family: 'PT Serif', serif;
        padding: 40px 8vw 0;
        background-color: #fbd963;
        position: relative;
    }
    
    #sectionCard img {
        border-radius: 1000px;
        width: 100%;
        position: relative;
        right: 4vw;
        max-width: 100%;
        padding-left: 30px;
        padding-bottom: 20px;
        margin-top: -60px;
    }
    
    .parallax-mirror {
        left: inherit;
        right: 0;
    }
    #aboutpage {
    display: flex;
    padding: 0px 12vw;
    background-color: #fff;
    flex-direction: column-reverse;
    }
    
    #aboutpage.rev {
        display: flex;
        padding: 0px 12vw 80px;
        background-color: #fff;
        flex-direction: column-reverse;
    }
    
    #aboutpage.rev #aboutLeft .imageRound {
    padding-left: 0px;
    padding-right: 0;
    padding-top: 0px;
    }
    
    #aboutpage #aboutContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0;
    background-color: #fff;
    }
    
    #aboutpage #aboutLeft .imageRound {
    padding-right: 0px;
    padding-left: 0;
    padding-top: 0;
    }
    
    .parallax {
    background-attachment: inherit;
  }

    
}
