/*
Theme Name: Copy Writer theme
Theme URI: google.com
Description: Website Theme for Sindie
Version: 1.2
Author: Zachary Hollatz
Author URI: google.com
*/


@font-face {
  font-family: 'Didot';
  src: url('fonts/Medio.woff2') format('woff2'),
       url('fonts/Medio.woff') format('woff'),
       url('fonts/Medio.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Silver South';
    src: url('fonts/Silver-South-Script-Alt.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Dido';
    src: url('fonts/Silver-South-Serif.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Futura';
  src: url('fonts/FuturaBT-Book.ttf') format('truetype'),
      url('fonts/FuturaBT-Book.html') format('opentype'),
      url('fonts/FuturaBT-Book.woff') format('woff'),
      url('fonts/FuturaBT-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
}

body,html {
    height: 100%;
}

body {
    font-family: 'Futura';
    font-weight: lighter;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: white;
}

.clearfix {
    content: "";
    display: table;
    clear: both;
}

hr {
    display: block;
    height: 1px;
    max-width: 1200px;
    width: 95%;
    margin: 80px auto;
    background-color: #c5d2d8;
    border: none;
    outline: none;
}

h1 {
    font-size: 7.5em;
}

h2 {
    font-size: 5em;
}

h3 {
    font-size: 4em;
}

h4 {
    font-size: 3.5em;
}

h5 {
    font-size: 1.5em;
}

h6 {
    font-size: 1em;
}

p {
    font-size: 1.1em;
    line-height: 2em;
    font-weight: lighter;
}

.panel-layout a {
    color: #AABA78;
    font-style: italic;
}

.ul-class ul li {
    font-size: 1.1em;
    font-weight: lighter;
    line-height: 2em;
    margin-left: 35px;
}

.legal-cont h2, .legal-cont h3, .legal-cont h4, .legal-cont h5, .legal-cont h6 {
    margin-bottom: 30px;
    padding-top: 20px;
}

@media only screen and (max-width: 1050px) {
    h1 {
        font-size: 6.5em;
    }

    h2 {
        font-size: 4em;
    }

    h3 {
        font-size: 3em;
    }

    h4 {
        font-size: 2.5em;
    }

    h5 {
        font-size: 1.25em;
    }

    h6 {
        font-size: .5em;
    }
}

@media only screen and (max-width: 800px) {

    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2.5em;
    }

    h4 {
        font-size: 2em;
    }

    h5 {
        font-size: 1.2em;
    }

    h6 {
        font-size: .8em;
    }

    p {
        font-size: 1em;
    }
}

a {
    color: black;
    text-decoration: none;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::before {
    content: "";
    width: 105%;
    position: absolute;
    background-color:  #aaba78;
    left: 0;
    height: 50%;
    bottom: -10%;
    left: -2.5%;
    z-index: -1;
}

.pink::before {
    background-color: #eae8e5;
}

.green::before {
    background-color: #aaba78;
}

.flavor {
    position: absolute;
    left: -4.5em;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flavor p {
    width: auto;
    transform: rotate(90deg);
    font-size: 8em;
    color: white;
    opacity: .3;
    font-family: 'Silver South', cursive;
}

.horz-line {
    width: 200px;
    height: 4px;
    background-color: black;
    display: block;
}

.center {
    margin: auto;
}

.center-btn {
    text-align: center;
    width: 100%;
}

.left {
    text-align: left;
}

.small {
    width: 50px;
}

/* NAV SECTION */

.menu-item-type-post_type {
     font-style: normal;
}

.mobile-nav {
    display: none;
    position: fixed;
    width: 100%;
    max-width: 100%;
    border-bottom: black 2px solid;
    z-index: 5;
    background-color: white;
    top: 0;
    left: 0;
    height: 55px
}

.mobile-nav img {
    height: 55px;
    padding-left: 2px;
}

.ham-menu {
    position: fixed;
    cursor: pointer;
    right: 20px;
    top: 8px;
    z-index: 6;
}

.ham-line {
    width: 35px;
    height: 4px;
    border-radius: 1em;
    background-color: #aaba78;
    display: block;
    margin: 7px 0;
}

.short {
    width: 25px;
    margin: 7px auto;
    background-color: #c5d2d8;
}


nav {
    position: fixed;
    width: 100%;
    max-width: 100%;
    border-bottom: black 2px solid;
    z-index: 9999999999;
    transition: 400ms;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
    top: 0;
    left: 0;
    right:0;
    background-color: white;
}

.to-top {
    position: fixed;
    top:18px;
    left: 10px;
    z-index: 6;
    display: none;
    height: 40px!important;
    width: 37px;

    -webkit-animation: slideInLeft 0.35s ease-in;
    -moz-animation: slideInLeft 0.35s ease-in;
    -o-animation: slideInLeft 0.35s ease-in;
    animation: slideInLeft 0.35s ease-in;

}

.to-top::before {
    transition: 300ms;
    opacity: 0;
    content: "TOP";
    color: white;
    background-color: #7caaa6;
    font-size: 1em;
    position: absolute;
    left: -7px;
    top: 10px;
    padding: 0 5px;
    border: black solid 2px;
    border-top: none;
}

.to-top:hover::before {
    content: "TOP";
    color: white;
    background-color: #7caaa6;
    font-size: 1em;
    position: absolute;
    left: -7px;
    top: 39px;
    padding: 0 5px;
    opacity: 1;
    border: black solid 2px;
    border-top: none;
    }

.to-top img {
    height: 18px;
}

.arrow-up {
    padding: 5px;
    border-right: black solid 2px;
    border-top: black solid 2px;
    display: block;
}

nav ul li a:hover {
    color: #c5d2d8;
}

nav ul li a {
    transition: 300ms;
}

nav ul {
    display: flex;
    justify-content: center;
    width:100%;
}

nav ul li {
    padding: 0 20px;
    list-style: none;
    white-space: nowrap;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    color: black;
    text-decoration: none;
    transition: 400ms;
    font-size: 1.05em;
    font-style: normal;
}

nav ul li ul {
    position: absolute;
    z-index: -1;;
    top: 0px;
    padding-top: 32px;
    left: 9px;
    right: 0;
    margin: auto;
    min-width: 200px;
    display: none;
}

nav ul li ul li {
    display: block;
    color: black;
    padding: 8px 10px;
    font-size: 1em;
    background-color:white;
    border: black solid 2px;
    border-top: none;
}

nav ul li:hover > ul{
    display: block;
}

nav ul li:hover {
   height: 100%;
}

nav ul li ul::before {
    border: transparent solid 9px;
    content: "";
    border-bottom: black solid 9px;
    width: 0;
    height: 0;
    position: absolute;
    z-index: 6;
    top: 17px;
    left: 9px;
}

.nav-spacer {
    position: relative;
    width: 100%;
    height: 110px;
}

.left-nav, .mid-nav, .right-nav {
    height: 110px;
}

.left-nav .bot-nav, .right-nav .bot-nav{
    height: 55px;
}

.left-nav, .right-nav {
    width: 45%;
}

.mid-nav {
    width: 10%;
}

.left-nav .top-nav, .left-nav .bot-nav {
    border-right: black solid 2px;
}

.right-nav .top-nav, .right-nav .bot-nav {
    border-left: black solid 2px;
}

.top-nav {
    border-bottom: black solid 2px;
    height: 53px;
}

.mid-nav, .left-nav, .right-nav {
    float: left;
}

.top-nav, .bot-nav, .mid-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 400ms;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
}

.left-nav .top-nav img{
    height: 30px;
    width: 30px;
    padding: 0 2px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container img {
    cursor: pointer;
}

.search-container input {
    background-color: white;
    border: none;
    outline: none;
    border-bottom: black solid 2px;
    font-family: 'Futura';
    font-size: 1em;
    text-align: center;
    margin-top: 5px;
    margin-right: 20px;
}

.search-container input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-align: center;
    color: #c5d2d8;
}
.search-container input::-moz-placeholder { /* Firefox 19+ */
    text-align: center;
    color: #c5d2d8;
}
.search-container input:-ms-input-placeholder { /* IE 10+ */
    text-align: center;
    color: #c5d2d8;
}
.search-container input:-moz-placeholder { /* Firefox 18- */
    text-align: center;
    color: #c5d2d8;
}

.mid-nav img {
    height: 100px;
    transition: 300ms;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
}

.side-nav {
    height: 100%;
    width: 0;
    left: -150px;
    position: fixed;
    z-index: 10;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 400ms;
}



.side-nav ul li {
    list-style: none;
    white-space: nowrap;
    text-transform: capitalize;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 18px;
    border-bottom: #c5d2d8 solid 1px;
}

.side-nav ul li ul {
    padding-left: 25px;
    border-top: black solid 2px;
}

.side-nav ul li ul li {
    border: none;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #aaba78;
}

/* END NAV SECTION */

/* HOMEPAGE SECTION */

.homepage-img {
    background-image: url(assets/img/illustration.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.homepage-content {
    width: 90%;
    margin: auto;
    padding-top:120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.homepage-left,.homepage-right {
    float: left;
    width: 50%;
}

.homepage-left h1 {
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 300;
}

.homepage-left p {
    font-size: 6em;
    font-family: 'Silver South';
    padding-left: 20px;
}

.homepage-left span {
 font-family: 'Futura';
 font-size: .4em;
 position: relative;
 bottom: .4em;
 margin: 0 20px;
}

.homepage-left span::before {
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 4;
    content: "";
}

.homepage-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; /* for media query, make it flex-end */
}

.homepage-right h4 {

}

.btn {
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
    font-size: 1.4em;
    background-color: white;
    outline: none;
    border: black solid 2px;
    box-shadow: 4px 4px black;
    padding: 16px 15px;
    font-family: 'Futura', sans-serif;
    min-width: 310px;
    position: relative;
    transition: 400ms;
    font-weight: lighter;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    font-style: normal!important;
    color: black!important;
}

.btn:hover {
    background-color: black;
    color: white!important;
}

.homepage-button-bot {
    margin-top: 50px;
}

.homepage-button-bot .btn::before, .homepage-button-bot .btn::after, .homepage-button-top .btn::before  {
    height: 50px;
    width: 2px;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    background-color: black;
    display: block;
    position: absolute;
    z-index:4;
}

.homepage-button-bot .btn::before {
    bottom: -50px;
}


.homepage-button-bot .btn::after {
    top: -50px;
}

.homepage-button-top .btn::before {
    top: -50px;
}

.arrow-down-img {
    position: absolute;
    z-index: 2;
    bottom: -69px;
    left: 60px;
}

/* END HOMEPAGE SECTION */

/* WELCOME SECTION */

.welcome-section {
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: auto;
}

.welcome-left-cont {
    position: relative;
    margin-right: 40px;
}

.welcome-left-cont img {
    width: 400px
}

.welcome-left-cont::before {
    content: "hi there";
    display: block;
    position: absolute;
    top: -35px;
    left: 0;
    font-family: 'Silver South';
    font-size: 6.8em;
    transform: rotate(-13deg);
    color: black;
}

.welcome-left-cont {
    float: left;
    width: 40%;
}

.welcome-right-cont {
    float: left;
    width: 60%;
}

.welcome-right-cont h4{
    text-align: center;
    font-size: 2.4em;
}

.welcome-right-cont img {
    display: block;
    margin: auto;
    margin-top: 22px;
    width: 160px;
}

.welcome-number {
    font-family: 'Silver South', cursive;
    border-radius: 10em;
    border: black solid 2px;
    width: 80px;
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.welcome-num-1 {
    margin-top: 25px;
    font-size: 8em;
}

.welcome-num-2 {
    margin-top: 22px;
    font-size: 7em;
}

.welcome-content p {
    font-size: 1.4em;
    margin-left: 20px;
    float: left;
    line-height: 1.5em;
}

.welcome-text {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

/* QUIZ SECTION */

.quiz-comeon-section {
    background-color: #aaba78;
    color: white;
    position: relative;
}

.quiz-comeon-cont {
    text-align: center;
}

.quiz-comeon-cont h5 {
    text-align: center;
    padding-top: 40px;
    font-weight: lighter;
}

.quiz-comeon-cont .btn {
    margin: auto;
    margin-top: 35px;
    font-size: 1.2em;
    min-width: 260px;
    position: relative;
    z-index: 4;
}

.quiz-spacer {
    display: block;
    max-width: 100%;
    height: 35px;
}

/* PHILOSOPHY SECTION */

.philosophy-section {
    background-image: url("assets/img/pattern-green.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

    margin-top: 140px;
    width: 100%;
    max-width: 100%;
}

.philosophy-header h2 {
    text-align: center;
    color: white;
    padding-top: 30px;
    font-weight: lighter;
}

.phil-content-cont {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
    margin-top: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-bottom: 100px;   /* controls space on bottom */
}

.phil-num-wrap {
    padding:  0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phil-left {
    border-right: white solid 4px;
}

.phil-num {
    font-family: 'Silver South Serif';
    font-size: 6.5em;
}

.phil-num-text p {
    font-size: 1.7em;
    text-align: center;
    padding-left: 10px;
}

.phil-underline {
    position: relative;
}

.phil-underline::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    display: block;
    position: absolute;
    bottom: 10px;;
    right: 0;
}

/* CLIENT RESULTS SECTION */

.client-results-section {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.client-results-section p {
    line-height: 1.4em;
}

.client-results-header {
    text-align: center;
    padding-top: 90px;
}

.client-results-header h2{
    font-size: 4em;
}

.left-tab {
    position: absolute;
    left:-2px;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-cont img {
    width: 40px;
    padding: 60px 15px;
    border: black solid 2px;
    box-shadow:  -10px 10px black;
    background-color: white;
    transition: 400ms;
}

.tab-cont img:hover {
    box-shadow: -14px 14px black;
}

.client-results-content {
    width: 800px;
    margin: auto;
    margin-top: 100px;
}

.results-wrap {
    height: 100%;
    max-height: 100%;
    position: relative;
}

.results-top-left {
    width: 350px;
    height: 280px;
    float: left;
}

.results-top {
    border-bottom: #c5d2d8 solid 2px;
    height: 280px;
    width: 750px;
    margin: auto;
}

.client-top-left {
    border-right: #c5d2d8 solid 2px;
}

.results-top-right {
    width: 400px;
    float: left;
}

.results-top-right-top{
    border-bottom: #c5d2d8 solid 2px;
    height: 140px;
}

.results-top-right-bot {
    height: 140px;
}

.results-bot-left {
    height: 140px;
    width: 550px;
    float: left;
}

.results-bot-right {
    height: 140px;
    width: 200px;
    float: left;
}

.results-bot-left .results-wrap {
    border-right: #c5d2d8 solid 2px;
}

.results-bot {
    margin: auto;
    width: 750px;
}

.client-img {
   position: absolute;
   z-index: -1;
   left: 0;
   right: 0;
   margin: auto;
}

.client-img img {
    width: 300px;
}

span.results {
    font-family: 'Silver South';
    font-size: 7em;
}

span.results-number {
    font-family: 'Silver South';
    font-size: 11em;
    margin-top: 40px;
}

span.results-number-small {
    font-family: 'Silver South';
    font-size: 9em;
    margin-top: 30px;
    padding: 0 10px;
}

.client-results-content p {
    font-size: 1.5em;
    position: relative;
}

.results-top-left p {
    width: 70%;
    margin: auto;
    top: -45px;
}

.results-top-right .results-wrap, .results-bot-left .results-wrap, .results-bot-right .results-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.results-bot-left img {
    width: 140px;
}

.results-bot-right img {
    width: 135px;
    margin-top: 20px;
}


.results-top-right-bot p {
    margin-left: 15px;
}


@media only screen and (max-width: 800px) {


    .results-top, .results-top-left, .results-top-right, .results-bot, .results-bot-left, .results-bot-right {
        width: 100%;
    }

    .results-top-right-bot {
        border-bottom: #c5d2d8 solid 2px;
    }

    span.results {
        font-size: 6em;
    }

    .client-top-left p {
        margin-top: 8px;
    }

    .results-top-left .results-wrap{
       border-right: none;

    }
    .client-results-content {
        width: 400px;
        padding: 0 10px;
    }

    .client-results-content p {
        font-size: 1.2em;
    }

    .results-top-left p {
        width: 50%;
    }

    span.results-number {
        font-size: 9em;
    }

    span.results-number-small {
        font-size: 7.5em;
        margin-top: 0px;
    }

    .client-img img{
        width: 270px;
    }

    .results-bot-left img {
        width: 90px;
        margin-bottom: 20px;
    }

    .results-bot-left .results-wrap {
        border-right: none;
        border-bottom: #c5d2d8 solid 2px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .results-bot-left {
        height: auto;
    }

    .bot-p-results {
        position: relative;
        bottom: 30px;
    }

    .menu-item-has-children {
        font-style: italic;
    }

}

@media only screen and (max-width: 500px) {
    .client-results-content {
        width: 280px;
    }

    .results-top-left p {
        width: 70%;
    }
}

/* HOMEPAGE BLOG SECTION */

.homepage-blog-section {
    margin-top: 100px;
    width: 100%;
    max-width: 100%;
}

.homepage-blog-cont {
    max-width: 1160px;
    min-width: 200px;
    padding: 0 20px;
    margin: auto;
    justify-content: center;
    flex-direction: row;
}

.homepage-blog-head {
    font-family: 'Didot', serif;
    font-weight: bold;
    font-style: italic;
    position: relative;
}

.homepage-blog-head h2 {
    display: inline;
    background-color: white;
    position: relative;
    z-index: 4;
    padding-right: 20px;
}

.homepage-blog-head::before {
    width: 100%;
    position: absolute;
    content: "";
    background-color: transparent;
    padding: 2px 0;
    border-bottom: black solid 2px;
    border-top: black solid 2px;
    top: 50%;
    z-index: 2;
}

.homepage-blog-content {
    margin-top: 80px;
}

.homepage-blog-col {
    width: 33.3333%;
    float: left;
}

.homepage-blog-wrap {
    padding: 0 5%;
}

.homepage-blog-col img {
    margin: auto;
    display: block;
    max-width: 100%!important;
    height: auto!important;

}

.blog-offset {
    position: relative;
    width: 78%;
    margin: auto;
    border-top: black solid 3px;
    top: -27px;
    background-color: white;
}

.blog-offset::before {
    content: "";
    height: 24px;
    position: absolute;
    width: 3px;
    top: 0;
    left: 0;
    display: block;
    background-color: black;
}

.blog-offset::after {
    content: "";
    height: 24px;
    position: absolute;
    width: 3px;
    top: 0;
    right: 0;
    display: block;
    background-color: black;
}

.blog-offset h5 {
    font-weight: lighter;
    padding: 5px 12px
}

/* FOOTER SECTION */

footer {
    max-width: 100%;
    margin-top: 100px;
}

.footer-cont {
    max-width: 900px;
    min-width: 300px;
    margin: auto;
}

.footer-top {
    border: black solid 4px;
    position: relative;
}

.footer-top-col {
    width: 33.33333%;
    float: left;
}

.footer-top-wrap {
    padding: 20px;
    padding-top: 8px;
    height: 250px;
}

.footer-top-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-kh-logo {
    position: absolute;
    right: -45px;
    top: -35px;
}

.footer-kh-logo img {
    width: 90px;
}

.footer-contact-logo {
    position: absolute;
    bottom: -30px;
    left: 28%;
    width: 10%;
}

.footer-contact-logo img {
    width: 100%;
}

.footer-top-right img {
    margin-top: 12px;
    width: 45%;
}

.footer-top-left {
    border-right: black solid 4px;
}

.footer-top h4 {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    font-size: 3.5em;
}

footer ul li {
    font-size: 1.5em;
    padding: 4px 0;
    list-style-type: none;
}

footer ul a {
    position: relative;
    transition: 400ms;
    font-style: normal;
}

footer ul a::before {
    transition: 400ms;
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 0%;
    background-color: black;
}

footer ul a:hover::before {
    width: 100%;
}

.footer-top-col ul {
    margin-top: 20px;
}

.footer-mid {
    max-width: 100%;
    border: black solid 4px;
    border-top: none;
}

.footer-mid-col-left {
    width: 83.7%;
    float: left;
}

.footer-mid-col-left .footer-mid-wrap {
    border-right: black solid 4px;
}

.footer-mid-col-right {
    width: 16.3%;
    float: left;
}

.footer-mid-wrap {
    height: 120px;
    padding: 11px;
}


.footer-mid-col-left .footer-mid-wrap form{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.footer-mid-col-right .footer-mid-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mid-wrap input[type="text"], .footer-mid-wrap input[type="email"] {
    border: black solid 2px;
    font-size: 1.3em;
    padding: 10px 4px;
    outline: none;
    font-family: 'Futura', sans-serif;
}

.footer-mid-wrap form button {
    border: black solid 2px;
    font-size: 1.1em;
    padding: 10px 4px;
    outline: none;
    font-family: 'Futura', sans-serif;
    background-color: transparent;
    width: 35%;
    letter-spacing: 3px;
    box-shadow: 4px 4px black;
    transition: 400ms;
}

.footer-mid-wrap form button:hover {
    color: white;
    background-color: black;
}

.footer-mid-col-left form {
    width: 100%;
}

.fd_firstNameField {
    width: 25%;
}

.fd_emailField {
    width: 25%;
}

.ff__success {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.fd-has-success .ff__success{
  display:flex;
}

.fd-has-success input[type="text"], .fd-has-success input[type="email"], .fd-has-success button {
  display:none;
}

.fd_success_msg p {
    font-family: 'Futura', sans-serif;
    text-align: center;
}

.footer-mid-col-right img {
    width: 85%;
}


.footer-bot {
    max-width: 100%;
    border: black solid 4px;
    border-top: none;
    border-bottom: none;
}

.footer-bot-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.space {
    height: 500px;
    width: 100%;
}

/* HOMEPAGE MEDIA QUERIES */

@media only screen and (max-width: 1600px) {

    .homepage-right {
        align-items: flex-end;
    }
}

@media only screen and (max-width: 1300px) {

    .homepage-left h1 {
        font-size: 5.5em;
    }

    .philosophy-header {
        padding: 0 4px;
    }

    .phil-content-cont {
        width: 1050px;
    }

    .phil-num {
        font-size: 6em;
    }

    .phil-num-text p{
        font-size: 1.4em;
    }

}

@media only screen and (max-width: 1050px) {

    .homepage-content {
        width: 95%;
    }

    .homepage-right .btn {
        font-size: 1.1em;
        padding: 15px;
        min-width: 270px;
    }

    .homepage-left h1 {
        font-size: 4em;
    }

    .homepage-left p {
        font-size: 4.5em;
    }

    .homepage-left span::before {
        bottom: -10px;
    }

    .homepage-img {
        position: relative;
    }

    .welcome-section {
        padding-top: 80px;
    }

    .welcome-left-cont {
        width: 40%;
    }

    .welcome-left-cont img {
        width: 100%;
        display: block;
    }

    .welcome-left-cont::before {
        font-size: 5.5em;
        top: -30px;
        left: 10px;
    }

    .welcome-content p {
        font-size: 1.2em;
    }

    .left-tab {
        display: none;
    }

    .philosophy-header {
        padding: 0 4px;
    }

    .phil-content-cont {
        width: 800px;
    }

    .phil-num {
        font-size: 5em;
    }

    .phil-num-text p{
        font-size: 1.1em;
    }

    .phil-content-cont {
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .flavor p{
        font-size: 5em;
    }

    .flavor {
        left: -60px;
    }

    .philosophy-section {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 800px) {

    .homepage-content {
        flex-direction: column;
        padding-top: 0;
    }

    .homepage-left, .homepage-right {
        width: 100%;
    }

    .homepage-right {
        align-items: center;
        margin-top: 40px;
    }


    .homepage-right .btn {
        font-size: .95em;
        min-width: 240px;
    }

    .homepage-left h1 {
        font-size: 3.5em;
        text-align: center;
    }

    .homepage-left p {
        text-align: center;
        padding: 0;
    }

    .homepage-left p {
        font-size: 3.2em;
    }

    .homepage-button-top .btn::before {
        height: 20px;
        bottom: 22px;
    }

    .homepage-button-bot {
        margin-top: 30px;
    }

    .homepage-button-bot .btn::before {
        height: 20px;
        bottom: -22px;
    }

    .homepage-button-bot .btn::after {
        height: 30px;
        bottom: 32px;
    }

    .quiz-comeon-cont .btn {
        font-size: .95em;
        min-width: 240px;
    }

    .welcome-content {
        max-width: 500px;
    }

    .welcome-section {
        flex-direction: column;
        padding-top: 100px;
    }

    .welcome-left-cont {
        width: 250px;
        margin: auto;
    }

    .welcome-left-cont::before {
        font-size: 5em;
    }

    .welcome-right-cont {
        width: 100%;
        margin-top: 25px;
    }

    .welcome-right-cont h4 {
        font-size: 2em;
    }

    .welcome-text {
        flex-direction: column;
    }

    .welcome-content {
        margin-top: 20px;
    }

    .welcome-content p {
        margin: 0px;
        font-size: 1.05em;
    }

    .blog-offset {
        border-width: 2px;
    }

    .blog-offset::before, .blog-offset::after {
        width: 2px;
    }

    .homepage-blog-section {
        max-width: 100%;
        margin-top: 60px;
    }

    .homepage-blog-content {
        margin: auto;
        padding: 0;
        width: 100%;
        max-width: 300px;
    }

    .homepage-blog-wrap {
        padding: 0;
    }

    .homepage-blog-col {
        width: 100%;
        float: none;
    }

    .homepage-blog-head {
        margin-bottom: 40px;
    }

    .phil-content-cont {
        width: 100%;
        flex-direction: column;
    }

    .phil-num {
        font-size: 5em;
    }

    .phil-num-wrap {
        max-width: 400px;
        margin: auto;
    }

    .phil-num-text p{
        font-size: 1.1em;
    }

    .phil-content-cont {
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .flavor p{
        font-size: 5em;
    }

    .phil-left {
        border-right: none;
        border-bottom: white solid 4px;
    }

    .phil-num-cont {
        width: 96%;
        margin: 10px 0;
    }

    .client-results-header {
        padding-top: 50px;
    }

    .client-results-header h2 {
        font-size: 3em;
    }

    .flavor {
        left: -60px;
    }

    .results-top-right-top {
        border-right: #c5d2d8 solid 2px;
    }

    .results-top-right-bot {
        border-left: #c5d2d8 solid 2px;
    }
}

@media only screen and (max-width: 450px) {
    .homepage-left h1 {
        font-size: 2.5em;
    }

    .homepage-left p {
        font-size: 2.5em;
    }
}

/* CONTENT PAGE SECTION */

.content-head-cont {
    margin: auto;
    margin-top: 60px;
    max-width: 1200px;
    min-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-head-col1 {
    width: 50%;
}

.content-head-col2 {
    width: 50%;
}

.content-head-col1 h3 {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    font-size: 3em;
}

.content-head-col2 img {
    width: 60%;
    margin: auto;
    display: block;
}

.content-head-col1 h5 {
    margin-top: 20px;
    text-align: center;
    font-weight: lighter;
    font-size: 1.7em;
}

.content-head-col1 .btn {
    display: inline-block;
    margin: auto;
    margin-top: 40px;
}

.content-head-col1 {
    text-align: center;
}

.content-head-wrapper {
    padding: 15px;
}

.content-intro-section {
    max-width: 100%;
}

.content-intro-cont {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
}

.content-intro-cont h4 {
    text-align: center;
}

.content-intro-cont .horz-line {
    margin-top: 10px;
}

.text-green {
    color: #aaba78;
}

.content-intro-col-cont {
    margin-top: 60px;

}

.content-intro-col {
    width: 50%;
    float: left;
}

.content-intro-wrap {
    padding: 0 10%;
}

.content-process-cont {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
}

.content-process-col1, .content-process-col2 {
    width: 50%;
    float: left;
}

.content-process-cont img {
    display: block;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    height: 180px;
}

.content-process-wrap {
    padding: 0 10%;;
}

.content-process-cont h5 {
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
}

.client-work-cont img{
    max-width: 280px;
    padding: 20px 10px;
}

.client-work-half {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.client-work-half div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.client-work-cont h4 {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.add-on-section {
    max-width: 100%;
    position: relative;
    margin-top: 100px;
    background-color: #7caaa6;
}

.add-on-section::before {
    content: url("assets/img/dog-ear-top.png");
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    position: absolute;
}

.add-on-section::after {
    content: url("assets/img/dog-ear-bot.png");
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    position: absolute;
}

.add-on-cont {
    width: 85%;
    margin: auto;
    padding: 110px 0;
}

.add-on-col {
    width: 33.3333%;
    float: left;
}

.add-on-col1 {
    position: relative;
}

.add-on-col1 .add-on-col-wrap {
    border-top: white solid 3px;
    border-right: white solid 3px;
}

.add-on-col1::before {
    position: absolute;
    content: "";
    background-color: white;
    width: 50%;
    height: 3px;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 4;
}

.add-on-col-wrap {
    padding: 10px 20px;
}

.add-on-cont h4 {
    font-size: 3em;
    padding: 15px 0;
    color: white;
    font-family: 'Didot', serif;
    font-weight: normal;
    font-style: italic;
}

.add-on-col2 .add-on-col-wrap{
    border-right: white solid 3px;
}

.add-on-col {
    color: white;
}

.add-on-col ul li {
    font-size: 1.2em;
    margin-left: 20px;
    line-height: 2em;
    list-style-type: none;
    text-align: center;
}


@media only screen and (max-width: 1300px) {
    .add-on-cont {
        width: 97%;
    }
}

@media only screen and (max-width: 800px) {

    .content-head-cont {
        flex-direction: column-reverse;
        min-width: 300px;
        margin-top: 20px;
    }

    .content-head-col1 {
        width: 100%;
    }

    .content-head-col2 {
        width: 100%;
    }

    .content-head-col2 img {
        max-width: 320px;
        width: 80%;
    }

    .content-head-col1 h5 {
        font-size: 1.5em;
    }

    .content-intro-col {
        width: 100%;
        float: none;
    }

    .content-intro-wrap {
        padding: 15px;
    }

    .content-intro-col-cont {
        margin-top: 30px
    }

    .content-intro-col-cont h4 {
        width: 100%;
    }

    .content-process-wrap {
        padding: 15px;
    }

    .content-process-col1, .content-process-col2 {
        width: 100%;
        float: none;
    }

    .content-process-col2 {
        margin-top: 50px;
    }

    .content-process-cont p {
        max-width: 400px;
        margin: auto;
    }

    .client-work-cont h4 {
        padding-top: 60px;
    }

    .add-on-section {
        margin-top: 40px;
    }

    .add-on-col {
        width: 100%;
        float: none;
    }

    .add-on-col2 .add-on-col-wrap {
        border-right: none;
        border-bottom: white solid 3px;
        padding: 20px 0px;
    }

    .add-on-col1 h4 {
        font-size: 1.8em;
    }

    .add-on-col ul li {
        list-style-type: inherit;
        text-align: left;
        font-size: 1em;
    }

    .about-head-cont {
        flex-direction: column;
    }

    .add-on-col-wrap {
        margin: 15px;
        padding: 0;
    }

    .add-on-col2 .add-on-col-wrap {
        padding-bottom: 20px;
    }

    .add-on-col1::before {
        right: 15px;
    }
}

/* ABOUT PAGE SECTION */

/* uses a lot of content pages css in first section */

.about-head-cont .btn {
    position: relative;
    margin-top: 50px;
}

.about-head-cont .horz-line {
    margin-top: 20px;
}

.about-head-cont .btn::before {
    width: 4px;
    height: 54px;
    top: -54px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    background-color: black;
}

.about-head-cont .content-head-col2 {
    position: relative;
}

.about-head-cont .content-head-col2 p{
    position: absolute;
    bottom: 5px;
    background-color: white;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 1.5em;
    width: 40%;;
    display: inline;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.about-portfolio p {
    border-top: black solid 3px;
}

.about-portfolio p::before, .about-portfolio p::after  {
    content: "";
    height: 1.6em;
    position: absolute;
    width: 3px;
    top: 0;
    display: block;
    background-color: black;
}

.about-portfolio p::before {
    left: 0;
}

.about-portfolio p::after {
    right: 0;
}

.about-intro-section {
    max-width: 100%;
}

.about-intro-cont {
    margin-top: 40px;
    max-width: 1200px;
    margin: auto;
}

.about-intro-cont h4 {
    text-align: center;
    padding-bottom: 10px;
    font-weight: lighter;
}

.about-intro-col-cont {
    margin: auto;
    margin-top: 60px;
    width: 90%;
}

.about-intro-col {
    width: 50%;
    float: left;
}

.about-intro-wrap {
    padding: 10px 40px;
}


.polaroid-cont {
    margin-top: 110px;
    margin-bottom: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.green-polaroid::before {
    height: 30%;
    width: 100%;
    background-color: #7caaa6;
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    z-index: -1;
}

.pink-polaroid::before {
    height: 30%;
    width: 100%;
    background-color: #EAE8E5;
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    z-index: -1;
}


.about-intro-col h4 {
    font-size: 2.8em;
    text-align: left;

}

.about-intro-col .horz-line {
    margin-bottom: 40px;
}

.about-intro-col ul li {
    font-size: 1.1em;
    line-height: 2em;
    margin-left: 15px;

}

.about-intro-col img {
    width: 90%;
    margin: auto;
    display: block;
}

.drive-section {
    margin-top: 100px;
    background-color: #7caaa6;
    color: white;
    max-width: 100%;
    padding-top: 60px;
    position: relative;
}

.drive-section a {
    color: white;
}

.drive-heading {
    text-transform: capitalize;
    text-align: center;
    position: relative;
}

.drive-heading h2{
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    background-color: #7caaa6;
    display: inline;
    position:relative;
    z-index: 4;
    padding: 0 10px;
}

.drive-heading::before {
    height: 2px;
    background-color: white;
    width: 100%;
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    z-index: 3;
}

.drive-section .drive-cont {
    padding-bottom: 5px;
}

.drive-section .gallery-cell {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
}


.drive-section .gallery-cell p {
    margin-top: 25px;
}

.drive-cont img {
    width: 100px;
    display: block;
}

.drive-cont a {
    text-decoration: underline;
}

.half-arrow {
    position: absolute;
    left: 30px;
    bottom: -69px;
}

.about-steps-cont h4{
    font-weight: lighter;
    text-align: center;
    padding-top: 60px;
}

.about-steps-btn-cont {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-steps-btn-cont .btn{
    margin: 0 40px;
}

.vert-line {
    height: 130px;
    width: 3px;
    position: relative;
    background-color: black;
}

.vert-left {
    margin-right: 40px;
}

.vert-right {
    margin-left: 40px;
}

.vert-left::before {
    content: "";
    background-color: black;
    height: 3px;
    width: 84px;
    position: absolute;
    left: 0;
    top: 63px;
}

.vert-right::before {
    content: "";
    background-color: black;
    height: 3px;
    width: 82px;
    position: absolute;
    left: -82px;
    top: 63px;
}

.about-left-btn {
    position: relative;
}

.about-left-btn::before {
    content: "";
    background-color: black;
    height: 3px;
    width: 82px;
    position: absolute;
    right: -82px;
    top: 50%;;
}

.about-steps-section {
    padding-bottom: 60px;
}

.about-portfolio p{
    width: 100%;
}

@media only screen and (max-width: 1050px) {

    .about-head-cont .content-head-col2 p {
        font-size: 1.2em;
        bottom: 8px;
    }

    .polaroid-cont img {
        width: 700px;
    }
}


@media only screen and (max-width: 800px) {

    .about-head-cont .content-head-col2 p {
        width: 40%;
        min-width: 180px;
        bottom: 8px;
        font-size: 1.1em;
    }

    .content-head-cont h3 {
        font-size: 2em;
    }

    .content-head-cont h5 {
        font-size: 1.5em;
    }

    .about-intro-cont h4 {
        padding: 10px 10px;
    }

    .about-intro-col {
        float: none;
        width: 100%;
    }

    .about-intro-wrap {
        padding: 20px;
    }

    .about-intro-col-cont {
        margin: 0;
        width: 100%;
        margin-top: 30px;

    }

    .polaroid-cont img {
        width: 90%;
    }

    .polaroid-cont {
        margin: 40px 0;
    }

    .about-intro-col h4{
        font-size: 2em;
    }

    .vert-line {
        display: none;
    }

    .about-left-btn::before {
        display: none;
    }

    .about-steps-btn-cont {
        flex-direction: column;
        margin-top: 40px;
    }

    .about-steps-btn-cont .btn {
        margin-top: 25px;
    }
}

/* COPY PAGE SECTION */

.copy-head-section {
    background-image: url('assets/img/illustration-stretch.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.copy-head-cont h4 {
    text-align: center;
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: bold;
}

.copy-head-spacer {
    width: 100%;
    height: 100px;
}

.copy-head-spacer-bottom {
    width: 100%;
    height: 120px;
}

.copy-head-cont .horz-line {
    margin-top: 40px;
}

.copy-head-cont h5 {
    margin-top: 40px;
    text-align: center;
    font-weight: lighter;
}

.copy-button {
    position: absolute;
    display: block;
    bottom: -2.2em;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.copy-jump-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}

.green-dot {
    height: 15px;
    width: 15px;
    background-color: #7caaa6;
    border-radius: 2em;
    display: inline-block;
    margin-top: 5px;
}

.copy-jump-cont img {
    transform: rotate(90deg);
    width: 30px;
    height: 20px;
    margin: 4px 15px 0 3px;
}

.copy-jump-cont a {
    font-size: 1.5em;
    padding: 0 20px;
    transition: 400ms;
}

.copy-jump-cont a:hover {
    color: #c5d2d8;
}

.copy-jump-section hr {
    width: 100%;
    max-width: 100%;
}

.bot-copy-line {
    margin: 0;
    height: 2px;
    margin-top: 8px;
}

.top-copy-line {
    margin: 0;
    margin-top: 40px;
    height: 2px;
}

.copy-jump-cont h5 {
    font-size: 2em;
}

.copy-intro-cont h4{
    font-weight: lighter;
    text-align: center;
    padding: 60px 20px 0px 20px;
}

.copy-intro-content-cont {
    margin: auto;
    margin-top: 60px;
    max-width: 1200px;
    min-width: 300px;
}

.copy-intro-col-cont{
    width: 50%;
    float: left;
}

.copy-intro-wrap {
    padding: 0 15px;
}

.intro-emphasis {
    font-weight: lighter;
    font-size: 1.3em;
    margin-top: 0!important;
    margin-bottom: 0!important;
}

.copy-intro-col-cont .horz-line{
    height: 2px;
    margin: 10px 0 20px 0;
}

.copy-intro-col-right p{
    margin: 10px 0;
}

.copy-num-cont {
    margin: auto;
    margin-top: 40px;
    max-width: 1160px;
    min-width: 260px;
    padding: 0 20px;
}

.copy-num-col {
    width: 33.3333%;
    float: left;
}

.copy-num-wrap {
    padding: 15px;
}
.copy-num-col p {
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}

.copy-num-section h5{
    text-align: center;
    font-size: 2em;
    padding-top: 60px;
    padding-bottom: 10px;
    font-weight: 700;
}

.copy-num {
    margin: auto;
    margin-top: 20px;
    font-size: 4em;
    background-color: #eae8e5;
    width: 1.5em;
    height: 1.5em;
    border-radius: 5em;
    border: #7caaa6 solid 4px;
    color: #7caaa6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-num span {
    padding-bottom: 5px;
}

.copy-tab-section {
    margin-top: 100px;
    background-color: #7caaa6;
    color: white;
}

.copy-tab-section h4 {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    text-align: center;
    display: inline;
    background-color: #7caaa6;
    z-index: 9;
    padding: 0 15px;
}

.copy-tab-head {
    position: relative;
    display: block;
    text-align: center;;
    z-index: 4;
    background-color: #7caaa6;
    padding: 30px 0;
}

.copy-tab-head::before {
    height: 2px;
    background-color: white;
    width: 100%;
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    z-index: 3;
}

.copy-tab-head-wrap {
    background-color: #7caaa6;
    position: relative;
    z-index: 4;
    width: auto;
    display: inline;
    margin: auto;
}

/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #aaba78;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

/* ---- previous/next button ---- */

.flickity-prev-next-button {
  top: 50%;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 20px;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  display: none;
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}


.copy-tab-section .gallery , .drive-section .gallery{
  background-color: #7caaa6;
  max-width: 1200px;
  min-width: 300px;
  margin: 40px auto;
}

.gallery-cell {
  width: 100%;
  height: 200px;
  margin-right: 10px;
  counter-increment: gallery-cell;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.copy-tab-section .gallery-cell p{
  color: white;
  max-width: 500px;
  font-size: 1.4em;
}

.drive-section .gallery-cell p {
    color: white;
    max-width: 400px;
}

.copy-fourth-section {
    max-width: 100%;
    margin-top: 60px;
}

.copy-fourth-cont {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    padding: 40px 0;
    max-width: 1240px;
}

.copy-fourth-img img {
    width: 100%;
}

.copy-fourth-img {
    width: 400px;
    flex-shrink: 0;
    padding: 0 20px;
    min-width: 300px;
}

.copy-fourth-text {
    width: 100%;
}

.copy-fourth-text h5 {
    font-size: 2.2em;
    text-align: center;
    font-weight: lighter;
}
.copy-fourth-text .horz-line {
    margin-top: 15px;
    margin-bottom: 35px;
}

.copy-fourth-text p {
    padding: 0 40px;
}

.copy-list-cont{
    margin-top: 15px;
    padding: 0 40px;
}

.copy-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.copy-list span {
    font-family: 'Silver South', cursive;
    font-size: 3em;
}

.copy-list p {
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5em;
}

.copy-process-section {
    max-width: 100%;
    background-color: #eae8e5;
    margin-top: 100px;
    position: relative;
}

.copy-process-cont{
    position: relative;
    max-width: 1600px;
    margin: auto;
    min-width: 300px;
}

.copy-process-cont h5 {
    position: absolute;
    top: -85px;
    font-size: 2.1em;
    font-weight: lighter;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.custom-col, .process-col {
    width: 50%;
    float: left;
    margin-top: 60px;
    margin-bottom: 60px;
}

.custom-wrap, .process-wrap {
    padding: 10px 80px;
    position: relative;
}

.process-col h6 {
    text-align: center;
    transform: translateY(-30px);
    color: gray;
    font-style: italic;
}

.process-col .gallery {
    width: 100%;
}

.process-col .gallery-cell {
    height: auto;
    text-align: left;
}

.process-col .flickity-button {
    background: transparent;
    box-shadow: none;
    position: absolute;
}

.process-col .flickity-prev-next-button.next {
  right: -40px;
}

.process-col .flickity-prev-next-button.previous {
  left: -40px;
}

.custom-wrap::before {
    height: 60%;
    top: 40%;
    border-radius: 5em;
    width: 4px;
    position: absolute;
    content: '';
    right: 0px;
    background-color: black;
}

.copy-process-section::after {
    content: url('assets/img/chevron.png');
    bottom: -10px;
    position: absolute;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.white-top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.white-top-right {
    position: absolute;
    top: -2px;
    right: 0;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.white-bot-right {
    position: absolute;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    bottom: 0;
    right: 0;
}

.white-bot-left {
    position: absolute;
    left: 0;
    bottom: -2px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

/* testimonials */

.testimonial-section {
    width: 100%;
    max-width: 100%;
    margin-top: 120px;
}
.testimonial-cont {
    max-width: 1220px;
    min-width: 300px;
    padding: 0 20px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.testimonial-pic {
    width: 315px;
    flex-shrink: 0;
    float: left;
}

.testimonial-pic-wrap, .testimonial-text-wrap {
    padding: 15px;
}

.testimonial-text p {
    line-height: 1.5em;
}

.testimonial-pic img {
    width: 100%;
}

.testimonial-name-cont {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.name-cont-right {
    justify-content: flex-end!important;
}

.testimonial-name {
    font-family: 'Silver South', cursive;
    font-size: 3em;
    padding-right: 15px;
}

.testimonial-section .gallery-cell {
    height: auto;
    display: block;
    text-align: left;
}

.testimonial-section .flickity-prev-next-button {
    top: inherit;
    bottom: -15px!important;

}

.testimonial-section .previous {
    left: 35%;
}

.testimonial-section .next {
    right: 35%;
}


.testimonial-section .flickity-prev-next-button:hover {
     background: transparent;
}

.in-link {
    display: block;
    transform: translateY(-40px);
    padding: 5px;
    background: transparent;
}

.accordion {
    color: black;
    cursor: pointer;
    padding: 20px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-style: italic;
}

.accordion:hover {
    background-color: #c5d2d8;
}

.active {
    background-color: #7caaa6;
    color: white;
}

.accordion::before {
    content: '\002B';
    color: black;
    font-weight: 700;
    float: left;
    margin-left: 5px;
    padding-right: 10px;
}

.active::before {
    content: "\2212";
}

.panel {
    padding: 5px 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faqs-section a {
    font-style: italic;
    color: #AABA78;
}

.faqs-section {
    margin-top: 60px;
    padding: 20px;
}

.faqs-cont {
    margin: auto;
    max-width: 1200px;
}

.faqs-cont h4 {
    text-align: center;
    margin-bottom: 20px;
}




@media only screen and (max-width: 1000px) {
    .copy-fourth-img {
        max-width: 350px;
    }

    .copy-list-cont {
        padding: 15px;
        margin-top: 0;
    }

    .copy-fourth-text p{
        padding: 0 15px;
    }

    .copy-fourth-cont {
        align-items: center;
    }

}

@media only screen and (max-width: 800px) {

    .copy-jump-cont {
        flex-direction: column;
    }

    .copy-jump-cont img {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px;

    }

    .green-dot {
        height: 12px;
        width: 12px;
    }

    .copy-jump-cont h5 {
        font-size: 1.6em;
    }

    .copy-jump-cont a {
        padding: 5px 5px;
        font-size: 1.3em;
    }

    .copy-intro-col-cont {
        width: 100%;
        float: none;
    }

    .intro-emphasis {
        font-size: 1.2em;
        padding-top: 40px;
        font-weight: 700;
    }

    .copy-num-col {
        width: 100%;
        float: none;
    }

    .copy-num span {
        font-size: .7em;
    }

    .copy-num {
        height: 65px;
        width: 65px;
    }

    .copy-tab-section {
        margin-top: 60px;
    }

    .copy-tab-section h4 {
        padding: 0 5px;
    }

    .copy-tab-section .gallery {
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .copy-tab-section .gallery p{
        padding: 15px;
        font-size: 1.2em;
    }

    .copy-tab-section .flickity-prev-next-button {
        top: auto;
    }

    .copy-tab-section .flickity-prev-next-button.previous {
        bottom: -75px;
        left: 25%;
    }

    .copy-tab-section .flickity-prev-next-button.next {
        bottom: -75px;
        right: 25%;
    }

    .copy-fourth-cont {
        flex-direction: column;
    }

    .copy-fourth-img {
        width: 90%;
        min-width: inherit;
        max-width: 400px;
        margin: auto;
        margin-bottom: 20px;
        padding: 0;
    }

    .custom-col {
        margin-top: 0px;
    }

    .copy-process-section {
        margin-top: 40px;
    }

    .copy-fourth-text p{
        padding: 0 15px;
    }

    .copy-list.copy-list-long {
        margin-top: 10px;
    }

    .custom-col, .process-col {
        padding-top: 40px;
        width: 100%;
        float: none;
    }

    h5.custom-head {
        top: -65px;
    }

    .custom-wrap {
        padding: 15px;
    }

    .custom-wrap::before {
        width: 0;
    }

    h5.process-head {
        top: -60px;
    }

    .process-wrap {
        padding: 15px;
    }

    .process-col {
        padding-top: 0;
    }

    .process-col .flickity-viewport {
        height: 100%;
    }

    .process-col .gallery {
        height: auto;
    }

    .process-col .flickity-prev-next-button {
        top: auto;
    }

    .process-col .flickity-prev-next-button.previous {
        bottom: -70px;
        left: 25%;
    }

    .process-col .flickity-prev-next-button.next {
        bottom: -70px;
        right: 25%;
    }

    .testimonial-section {
        max-width: 100%;
        margin-top: 60px;
    }

    .testimonial-cont {
        flex-direction: column;
        padding: 0;
    }

    .testimonial-pic {
        width: 100%;
    }

    .testimonial-text p {
        line-height: 2em;
    }

    .testimonial-bot {
        flex-direction: column-reverse;
    }

    .testimonial-pic img{
        max-width: 300px;
        margin: auto;
        display: block;
    }
}

@media only screen and (max-width: 500px) {
    .copy-jump-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

/* MAIN BLOG SECTION */

.blog-head-cont h4 {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    text-align: left;
}

.blog-head-cont p {
    margin-top: 20px;
    text-align: left;
}

.blog-head-cont {
    align-items: flex-start;
}

.blog-head-cont .content-head-col2 {
    width: 40%;
}

.blog-head-cont .content-head-col2 img {
    width: 90%;
}

.blog-head-cont .content-head-col1 {
    width: 60%;
}

.blog-learn-col {
    width: 33.33333%;
    float: left;
}

.blog-learn-wrap {
    padding: 8px;
}

.blog-learn-cont img {
    width: 80%;
    display: block;
    margin: auto;
}

.blog-learn-cont p {
    margin-top: 0px;
    font-size: 1.6em;
    text-align: center;
    transform: translateY(-8px);
}

.blog-head-cont h5 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* query for intro section of blog */
@media only screen and (max-width: 1050px) {

    .blog-head-cont .content-head-col2 img {
        width: 95%;
    }

    .blog-head-cont h5 {
        font-size: 2em;
        margin-top: 15px;
    }

    .blog-learn-cont p {
        font-size: 1.3em;
    }
    .blog-learn-cont {
        margin-top: 5px;
    }
}

.blog-latest-section {
    max-width: 100%;
    margin-top: 100px;
}

.blog-latest-cont {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
}

.blog-latest-cont h2 {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    padding: 0 40px;
    display: inline;
    position: relative;
}

.blog-latest-cont h2::before {
    content: "{";
    color: #7caaa6;
    font-size: 3em;
    position: absolute;
    font-family: 'Silver South';
    right: -80px;
    bottom: -.67em;
    z-index: -1;
}

.time-crunch-section {
    position: relative;
    margin-top: 150px;
    background-color: #7caaa6;
}

.time-crunch-head{
    text-align: center;
    position: absolute;
    top: -2.6em;
    left:0;
    right: 0;
    margin: auto;
}

.time-crunch-section::before {
    content: url("assets/img/dog-ear-top.png");
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    position: absolute;
}

.time-crunch-section::after {
    content: url("assets/img/dog-ear-bot.png");
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    position: absolute;
}

.time-crunch-head h3 {
    display: inline;
    background: #eae8e5;
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
    padding: 4px 20px;
    font-size: 4em;
}

.time-crunch-cont {
    max-width: 1000px;
    min-width: 300px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.time-crunch-col {
    width: 33.3333%;
    float: left;
}

.time-crunch-wrap {
    padding: 15px;
}

.time-crunch-col img {
    margin: auto;
    width: 100%;
    max-width: 250px;
    display: block;
}

.time-crunch-col p {
    text-align: center;
    color: white;
    font-size: 1.6em;
}

.chron-blog-section {
    margin-top: 80px;
}

.chron-blog-cont {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
}

.blog-preview-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.blog-preview-left {
    max-width: 300px;
    flex-shrink: 0;
}

.blog-preview-left img {
    margin: auto;
    display: block;
    max-width: 100%!important;
    height: auto!important;
}

.blog-preview-right {
    margin-left: 15px;
}

.blog-preview-wrap {
    padding: 15px;
    position: relative;
}

.blog-preview-right h5{
    font-size: 2em;
    font-weight: lighter;
}

.blog-preview-right .horz-line {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-preview-left span{
    font-size: 1.5em;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
}

.blog-preview-left span a{
    background-color: white;
    padding: 0 20%;
    border-top: black solid 3px;
    position: relative;
}

.blog-preview-left span a::before, .blog-preview-left span a::after {
    content: "";
    height: 100%;
    width: 3px;
    background-color: black;
    top: 0;
    z-index: 4;
    position: absolute;
}

.blog-preview-left span a::after {
    right: 0;
}

.blog-preview-left span a::before {
    left: 0;
}

.archive-btn-cont {
    text-align: center;
}

@media only screen and (max-width: 800px) {

    .content-head-cont.blog-head-cont {
        flex-direction: column;
    }

    .blog-head-cont .content-head-col1, .blog-head-cont .content-head-col2 {
        width: 100%;
    }

    .blog-head-cont .content-head-wrapper {
        padding: 20px;
    }

    .blog-head-cont .content-head-col2 img {
        width: 100%;
        max-width: 400px;
    }

    .blog-learn-cont {
        margin-top: 20px;
    }

    .blog-learn-col img{
        max-width: 180px;
    }

    .blog-latest-cont h2 {
        padding: 0 20px;
    }

    .blog-latest-cont .homepage-blog-cont {
        margin-top: 20px;
    }

    .blog-latest-cont h2::before {
    font-size: 2.6em;
    right: -30px;
    }

    .time-crunch-section {
        margin-top: 80px;
    }

    .time-crunch-head {
        top: -20px;
    }

    .time-crunch-head h3 {
        font-size: 1.8em;
        padding: 4px 10px;
    }

    .time-crunch-section::before {
        display: none;
    }

    .time-crunch-col p {
        font-size: 1.2em;
        margin-top: 8px;
        line-height: 1.2em;
    }

    .time-crunch-wrap {
        padding: 10px;
    }

    .time-crunch-col img {
        max-width: 250px;
        width: 80%;
    }

    .time-crunch-cont {
        padding-top: 50px;
    }

    .chron-blog-section {
        margin-top: 60px;
    }

    .blog-preview-left {
        margin: auto;
    }

    .blog-preview-right {
        margin-left: 0;
    }

    .blog-preview-right h5 {
        font-size: 1.5em;
    }

    .blog-preview-cont {
        flex-direction: column;
    }

    .blog-offset {
        max-width: 270px;
        min-width: 200px;
        top: -26px;
    }
}

@media only screen and (max-width: 450px) {
    .blog-learn-col {
        width: 100%;
        float: none;
    }

    .blog-learn-col img {
        max-width: 150px;
    }

    .time-crunch-col {
        width: 100%;
        float: none;
    }

    .time-crunch-col img {
        max-width: 150px;
    }
}

/* SINGLE BLOG POST SECTION */

.blog-sidebar {
    width: 25%;
    max-width: 370px;
    position: fixed;
    transition: 300ms;
}

.blog-sidebar-wrap {
    padding: 15px;
    padding-right: 35px;
    padding-top: 0;
    padding-bottom: 35px;
    border-right: #c5d2d8 solid 2px;
    position: relative;
}

.blog-sidebar-wrap::before {
    content: "";
    background-color: #c5d2d8;
    height: 2px;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
}

.blog-sidebar img {
    width: 100%;
}

.blog-post-section {
    max-width: 1460px;
    min-width: 250px;
    padding: 20px;
    margin: auto;
    margin-top: 10px;
}

.blog-sidebar h4 {
    text-align: center;
}

.blog-sidebar p {
    margin-top: 15px;
}

.blog-post-content {
    width: 75%;
    float: right;
}

.blog-sidebar .btn {
    font-size: 1em;
    min-width: 270px;
    margin: auto;
    margin-top: 15px;
    display: block;
    font-weight: 700;
}

.blog-sidebar h5 {
    font-size: 1.6em;
    font-weight: lighter;
    text-align: center;
    margin-top: 30px;
}

.blog-post-content-wrap {
    margin-left: 20px;
}

.blog-post-background {
    width: 100%;
    max-width: 100%;
    height: 200px;;
    position: relative;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-category-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 160px;
    background-color: white;
    margin: auto;
    height: 150px;
    width: 150px;
    bottom: -75px;
    left: 0;
    right: 0;
    border: #c5d2d8 solid 2px;
}

.blog-post-actual {
    padding: 80px;
    margin-top: 70px;
}

.blog-post-actual .horz-line {
    margin-top: 15px;
    margin-bottom: 35px;
}

.blog-post-actual p, .blog-post-actual h2, .blog-post-actual h3, .blog-post-actual h4, .blog-post-actual h5, .blog-post-actual h6 {
    margin-top: 1em;
    margin-bottom: 1em;
}

.blog-post-actual h1{
    text-align: center;
}

.blog-post-actual h1 {
    font-size: 3em;
}

.blog-post-actual h2 {
    font-size: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.blog-post-actual h3 {
    font-size: 1.25em;
    font-weight: lighter;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.blog-post-actual h4 {
    font-size: 1.3em;
    font-weight: lighter;
    font-size: 1.3em;
}

.blog-post-actual h5,h6 {
    font-size: 1.2em;
    font-weight: lighter;
}

.blog-date {
    color: gray;
    text-align: center;
    font-size: .9em;
}

.current {
    text-decoration: underline;
    text-decoration-color: #aaba78;
}

.pagination {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}

.pagination a, .current {
    padding: 0 4px;
}

.blog-post-actual li{
    font-size: 1.1em;
    margin-left: 20px;
    line-height: 2em;
}

.blog-post-actual img {
    max-width: 100%;
    display: block;
    margin: auto;
    height: auto!important;
}

.blog-post-actual a {
    font-style: italic;
    color: #AAB97E;
}


/* BLOG POST MEDIA QUERIES */

@media only screen and (max-width: 1400px) {

    .blog-sidebar .btn {
        min-width: 185px;
    }

}

@media only screen and (max-width: 1050px) {

    .blog-post-content {
        width: 100%;
    }

    .blog-post-section {
        padding: 0;
        margin-top: 0;
    }

    .blog-post-content-wrap {
        margin-left: 0;
    }

    .blog-sidebar {
        display: none;
    }

    .blog-category-icon {
        width: 120px;
        height: 120px;
        bottom: -50px;
    }

    .blog-post-actual h1 {
        font-size: 2em;
    }

    .blog-post-actual h2 {
        font-size: 1.3em;
        letter-spacing: 8px;
    }

    .blog-post-actual h3 {
        font-size: 1.2em;
        letter-spacing: 5px;
    }

    .blog-post-actual h4 {
        font-size: 1.3em;
    }

    .blog-post-actual h5, .blog-post-actual h6 {
        font-size: 1.2em;
    }

    .blog-post-actual li{
        font-size: 1em;
    }
}

@media only screen and (max-width: 800px) {

    .blog-post-actual {
        padding: 20px;
    }
}

/* 404 page */

.error-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error-content img {
    padding-left: 4%;
}

.error-content h4 {
    max-width: 700px;
    text-align: center;
    padding: 0 10px;
}

.error-content h5 {
    margin-top: 25px;
    font-weight: lighter;
}

.error-content .btn{
    margin-top: 20px;
}

@media only screen and (max-width: 800px) {

    .error-container {
        margin-top: 25px;
    }
    .error-content img {
        width: 150px;
    }

    .error-content h4 {
        max-width: 400px;
        margin-top: 10px;
    }
}

.didot {
    font-family: 'Didot', serif;
    font-style: italic;
    font-weight: normal;
}

.web-copy-quiz {
    max-width: 1200px;
    padding: 5px;
    margin: auto;
}

.web-copy-quiz h4 {
    text-align: center;
    padding-top: 60px;
}

.web-copy-quiz h6 {
    text-align: center;
    line-height: 1.5em;
    max-width: 600px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    font-style: italic;
}

/* HALF WIDTH SECTION */
.content-container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}


/* ARCHIVE PAGE SECTION */
button {
	outline: none;
	background-color: transparent;
	border: none;
}

.archive-col-cont {
    margin-bottom: 30px;
}

.archive-col-cont ul li, .cat-item {
	list-style: none;
	font-size: 1.2em;
	text-transform: capitalize;
}

.archive-col-cont ul li a, .cat-item a {
	position:relative;
}

.archive-col-cont ul li a::before, .cat-item a::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	transition: 300ms;
	background-color: black;
	height: 2px;
}

.archive-col-cont ul li a:hover::before, .cat-item a:hover::before {
	width: 100%;
}

.main-content {
    max-width: 1200px;
    min-width: 300px;
    margin: auto;
}

.main-content-wrap {
    padding: 0 20px;
}

.no-search-results {
    text-align: center;
    margin-top: 130px;
    margin-bottom: 150px;
}

.no-search-results h4, .no-search-results h5 {
    text-align: center;
    font-weight: lighter;
}

.small-spacer {
    width: 100%;
    background-color: inherit;
    height: 65px;
}

.category-title {
    padding-top: 40px;
    padding-bottom: 5px;
    text-align: center;
    text-transform: capitalize;
}

.category-line {
    margin-top: 10px;
    margin-bottom: 30px;
}

.archive-col {
    width: 33.3333%;
    float: left;
}

.archive-wrap {
    padding: 15px;
}


@media only screen and (max-width: 600px) {
    .archive-col {
        width: 100%;
        float: none;
        margin: auto;
    }

    .drive-heading::before {
        display: none;
    }

    .copy-tab-head::before {
        display: none;
    }
}


/* GENERAL MEDIA QUERIES */

@media only screen and (max-width: 1050px) {

    .btn {
        font-size: 1em;
        min-width: 210px;
    }

    hr {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    nav ul li  {
        font-size: .9em
    }

    nav ul li ul li {
        font-size: .9em;
    }

    nav ul li ul {
        min-width: 140px;
        padding-top: 30px;
    }

    .left-nav ul li ul {
        min-width: 110px;
    }

    nav ul li ul::before {
        border-bottom: transparent;
    }

    .mid-nav {
        width: 15%;
    }

    .left-nav, .right-nav {
        width: 42.5%;
    }

    footer {
        width: 90%;
        margin: auto;
        margin-top: 80px;
    }

    .footer-top h4 {
        font-size: 3em;
    }
}

.portfolio-item-btn {
    text-align: center;
}

@media only screen and (max-width: 800px) {

    .nav-spacer {
        height: 55px;
    }

    .horz-line {
        width: 100px;
        margin-top: 10px;
    }

    .small {
        width: 50px;
    }

    #nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .to-top {
        left: 65px;
        animation: ease-in slideInTop 200ms;
    }

    footer {
        width: 100%;
    }

    .footer-top-col {
        width: 100%;
        float: none;
    }

    .footer-top ul li {
        font-size: 1.3em;
    }

    .footer-top-wrap {
        border: none;
    }

    .footer-top-left {
        border-bottom: black solid 4px;
    }

    .footer-top-right {
        display: none;
        border: none;
    }

    .footer-top-col img  {
        width: 60px;
        position:relative;
        bottom: 40px;
    }

    .footer-kh-logo {
        right: -5px;
    }

    .footer-resources {
        height: 210px;
    }

    .footer-contact-logo {
        width: 80px;
        left:0;
        right: 0;
        margin: auto;
    }

    .footer-top {
        border-bottom: none;
    }
    .footer-mid-col-left {
        width: 100%;
        float: none;
        height: auto;
    }

    .footer-mid-wrap {
        border-right: none!important;
        border-bottom: black solid 4px;
        height: auto;
    }

    .footer-mid-col-right .footer-mid-wrap {
        border-bottom: none;
    }

    .footer-mid-col-right img{
       width: 110px;
    }

   .fd_firstNameField, .fd_emailField, .fd_subscribe_form {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 8px 0;
        box-sizing: border-box;
    }

    .fd_subscribe_form {
        margin: auto;
        min-width: 240px;
    }

    .fd_firstNameField {
        margin-top: 25px;
    }

    .footer-mid-col-left .footer-mid-wrap form {
        display: block;
    }

    .footer-mid-col-right {
        width: 100%;
    }

    footer {
        max-width: 500px
    }


}

/* ANIMATIONS */

/* slideInLeft Animation */

@-webkit-keyframes slideInLeft {
    0% {
        transform: translate(-30px);
    }

    100%{

    }
}

@-moz-keyframes slideInLeft {
    0% {
        transform: translate(-30px);
    }

    100%{

    }
}

@-o-keyframes slideInLeft {
    0% {
        transform: translate(-30px);
    }

    100%{

    }
}

@keyframes slideInLeft {
    0% {
        transform: translate(-30px);
    }

    100%{

    }
}

/* slideInTop animation */

@keyframes slideInTop {
    0% {
        transform: translateY(-30px);
    }

    100%{

    }
}

@-o-keyframes slideInTop {
    0% {
        transform: translateY(-30px);
    }

    100%{

    }
}

@-moz-keyframes slideInTop {
    0% {
        transform: translateY(-30px);
    }

    100%{

    }
}

@-webkit-keyframes slideInTop {
    0% {
        transform: translateY(-30px);
    }

    100%{

    }
}

.ff__success p{
    padding: 15px;
    text-align:center;
}

/* GROUP SALES */

.group-jump {

}

.group {

}

.group-list {
  font-size: 1.1em;
  line-height: 2em;
  margin-left: 20px;
}

.btn-small {
  font-size: 1.1em;
}

.center-btn {
  text-align: center;
}

.group-inspo {
  font-size: 2.7em;
  padding: 0 15px 15px 15px;
  text-align: center;
}

.group-works h6 {
  margin-top: 0;
}

.group-works h4{
  padding-top: 30px;
}

.green-back {
  margin-top: 20px;
  color: #eae8e5;
}


.group-three .copy-num-cont {
  margin-top: 0;
  text-align: center;
}

.group-three .copy-num-cont p {
  font-style: normal;
}

.group-three img {
  display: block;
  margin: auto;
  text-align: center;
  max-width:100%;
}


.group-three h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4em;
  letter-spacing: 3px;
}

.green-back .copy-num-cont a {
  color: #eae8e5;
  text-decoration: underline;
}

.green-back .btn {
  border-color: #7caaa6;
  box-shadow: 4px 4px #7caaa6;
  color: #7caaa6!important;
}

.green-back .btn:hover {
  box-shadow: 6px 6px #7caaa6;
  background-color: white;
  color: #7caaa6!important;
}

.green-back {
  background-color: #7caaa6;
  position:relative;
}

.green-back .web-copy-quiz {
  padding: 0;
}

.green-back .copy-head-spacer-bottom {
  height: 60px;
}

.group-details {
  max-width:100%;
  width: 700px;
  margin: 80px auto 15px auto;
}

.group-details-cont {
  border: 2px solid black;
  box-shadow: 4px 4px black;
  position:relative;
}

.detail-line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 60px;
  width: 50px;
  z-index: -1;
}

.detail-green {
  background-color: #7caaa6;
  top:-60px;
}

.detail-pink {
  background-color: #eae8e5;
  height: 70px;
  bottom: -70px;
}

.group-details-wrap {
  padding: 15px;
  text-align: center;
}

.group-details h4 {
  text-align: center;
  letter-spacing: 8px;
  padding: 12px 0 15px 0;
  border-bottom: 2px solid black;
}

.group-details-cont h6 {
  line-height: 1.75em;
}

.group-test {
  margin-top: 60px;
  background-color: #eae8e5;
  padding-bottom:10px;
}

.large-quote {
  font-size: 1.8em;
  text-align: center;
  position:relative;
  font-weight: bold;
  padding-top: 20px;
  font-style: italic;
  padding-bottom: 10px;
}

.quote-green {
  color: white;
  font-weight: bolder;
  padding: 0 5px;
}

.white::before {
  background-color: white;
}

.group-intro .copy-intro-col-cont {
  width: 65%;
}

.group-intro .copy-intro-col-right {
  width: 35%;
}

.group-why {
  padding-bottom:0;
}

.group-intro .copy-intro-wrap img {
  margin: auto;
  max-width:100%;
}

.hr-less {
  margin-top:40px;
  margin-bottom:30px;
}

.group-head-mid {
  margin-top: 60px;
  background-image: url('assets/img/pattern-green.png');
  color: white;
}

.group-head-mid .copy-head-cont {
  margin: auto;
  max-width: 100%;
  width: 1000px;
  padding-bottom: 30px;
}

.group-head-mid h4 {
  font-size: 3em;
}

.group-head-mid h5 {
  line-height: 1.5em;
  font-size: 1.4em;
  margin-top: 10px;
}

.group-head-mid .copy-head-spacer {
  height: 40px;
}

.green-back .group-inspo {
  letter-spacing: 4px;
}

.copy-head-cont .group-white {
  background-color: white;
  margin-top: 20px;
  margin-bottom: 20px;
}

.group-center-btn {
  padding-bottom: 30px;
}

.group-included {
  text-align: center;
}

.group-included h5 {
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1.8em;
  letter-spacing: 4px;
}

.green-back .testimonial-text {
  width: 50%;
}

.green-back .testimonial-section {
  padding-top: 20px;
  margin-top: 60px;
  color: white;
}

.green-back .large-quote {
  font-size: 1.6em;
}

.green-back .testimonial-section .highlight{
  color: white;
}

.group-test-space {
  width:100%;
  height: 60px;
}

.green-back .gallery-cell {
  padding-bottom: 50px;
}

.green-back .flickity-button {
  bottom: 00px!important;
}

.green-back .quote-green {
  color: #aaba78;
}

.group-faqs {
  margin-top: 40px;
}

.group-works-wrap {
  text-align: center;
  position:relative;
  margin-top: 40px;
}

.group-works-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  width: 10000px;
  z-index: 3;
  left:-2000px;
  background-color: #eae8e5;
}

.group-works-wrap-line {
  position: relative;
  z-index: 4;
}

.group-works h4{
  display: inline;
  padding: 0 20px;
  padding-top: 0;
  background-color: #7caaa6;
  z-index: 4;
}

/* GROUP MEDIA QUERIES */

@media only screen and (max-width: 1400px) {

  .group-jump {
    font-size: .8em;
    padding: 0 30px;
    margin-top: 70px;
  }

  .group-head-sect h4, .group-head-sect h5 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .group-jump {
    flex-direction: column;
    margin-top: 60px;
  }

  .group-jump img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .group-why, .group-fourth .copy-fourth-cont {
    align-items:flex-start;
  }

}

@media only screen and (max-width: 800px) {
  .group-jump {
    font-size: 1em;
  }

  .group-fourth .copy-fourth-cont {
    padding-bottom: 0;
  }

  .group-intro {
    margin-top: 10px;
  }

  .group-intro .copy-intro-col-cont {
    width: 100%;
    float: none;
  }

    .group-question {
      width: 150px;
      padding: 15px 0 0 0;
      margin: auto;
      display: block;
    }

    .group-list {
      font-size: 1em;
    }

    .group-inspo {
      font-size: 1.8em;
    }

    .group-fourth {
      margin-top: 30px;
    }

    .group-fourth .copy-fourth-cont {
      padding-top: 25px;
    }

    .btn-small {
      font-size: .9em;
    }

    .group-fourth .copy-fourth-img {
      margin-top: 20px;
    }

    .group-fourth .copy-fourth-img img {
      display: block;
      margin: auto;
      max-width: 100%;
      width: 340px;
    }

    .group-works h4 {
      font-size: 1.5em;
    }

    .group-works h6 {
      padding-top: 10px;
    }

    .group-three .copy-num-wrap h6 {
      font-size: 1.1em;
    }

    .group-three p {
      margin-top: 10px;
    }

    .group-details-cont {
      width: 90%;
      margin: auto;
    }

    .group-details-wrap h6 {
      font-size: 1em;
    }

    .large-quote {
      font-size: 1.15em;
      width: 100%;
      padding-bottom: 0;
    }

    .group-why {
      padding-top: 0px;
    }

    .group-why h5 {
      font-size: 1.5em;
      padding: 0px 15px;
    }

    .group-why .horz-line {
      margin-bottom: 20px;
    }

    .hr-less {
      margin-bottom: 00px;
    }

    .group-intro .intro-emphasis {
      font-size: 1.1em;
    }

    .group-img {
      width: 400px;
      max-width: 100%;
      display: block;
      margin: auto;
      padding-top: 20px;
    }

    .group-head-mid h4 {
      font-size: 2em;
      padding: 0 15px;
    }

    .group-head-mid h5 {
      font-size: 1.1em;
      padding: 15px;
      padding-top: 0;
    }

    .group-head-mid .copy-head-spacer {
      height: 30px;
    }

    .group-head-mid .copy-head-cont {
      padding-bottom: 10px;
    }

    .group-included {
      margin-top: 30px;
    }

    .group-included h5 {
      font-size: 1.3em;
      letter-spacing: 3px;
    }

    .group-intro .intro-emphasis {
      padding-top: 10px;
    }

    .green-back .testimonial-text {
      width: 100%;
      float: none;
    }

    .green-back .large-quote {
      font-size: 1.3em;
      padding-top:0
    }

    .group-faqs {
      margin-top: 10px;
    }

    .group-faqs .accordion {
      font-size: 1.1em;
    }
}
