/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*                                     /*
    Author:      Nathaniel Winningham
    Contact:       nathaniel@asdc.net
/*                                     */

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

* {
    /* Adjust Variables Here */
    --transparent: #00000000;
    --white: #ffffff;
    --black: #000000;
    --tpwhite: #ffffffde;
    --tpblack: #0000007e;
    --main-bg-color: #ffffff;
    --main-font-color: #000000;
    --main-green: #738563;
    --grey: #555555;
    --main-nav-height: 35px;
    --main-nav-height-bottom: 45px;
    --total-nav-height: calc(var(--main-nav-height) + var(--main-nav-height-bottom));
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

body {
    min-width: 320px;
    background-color: var(--main-bg-color);
}

h2 {
    color: var(--main-green);
}

h3 {
    margin-bottom: 0.6em;
    color: var(--main-green);
}

p {
    line-height: 1.5;
}

img {
    display: block;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Custom styles
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.main-container {
    min-height: calc(100vh - 224px);
    position: relative;
}

.wrap-container {
    margin: 224px 0 0 0;
}

.home .wrap-container {
    margin-top: 80px;
}

.home .main-nav-holder > a {
    display: none;
}

.wrap-container-main {
    max-width: 2000px;
    margin: 224px 0 0 0;
}

.big-bold {
    font-size: 120%;
    font-weight: 700;
}

.enlarged {
    font-size: 120%;
    font-weight: 400;
}

.no-select {
    user-select: none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Main Navigation
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.main-nav-holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background-color: rgb(255, 255, 255);
}

.main-nav-holder > a img {
    width: 900px;
    max-width: 100%;
}

.main-nav-top {
    font-size: 90%;
    height: var(--main-nav-height);
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    background: var(--main-green);
}
.main-nav-bottom {
    height: var(--main-nav-height-bottom);
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    background: #AABA9C;
}


.main-nav-left,
.main-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.main-nav-left div a,
.main-nav-right div p {
    text-transform: uppercase;
    font-weight: 600;
}

.main-nav-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.leaf-img {
    width: 15px;
}

.main-nav-logo {
    width: 400px;
}

.nav-link-a {
    text-decoration: none;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

.nav-link-a-top {
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    /* font-weight: 300; */
}

.main-nav-link {
    padding: 10px 20px;
    background: var(--transparent);
}

a.nav-link-a:hover {
    color: var(--black);
}

.menu-button {
    align-self: flex-end;
    flex-shrink: 0;
    display: none;
    cursor: pointer;
    height: 45px;
    width: 50px;
    text-align: center;
}

.menu-button div {
    display: inline-block;
    position: relative;
    top: -12px;
    content: "";
    width: 24px;
    height: 0;
    box-shadow: 0 10px 0 2px #ffffff,
    0 20px 0 2px #ffffff,
    0 30px 0 2px #ffffff;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Home Page Style
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Main Slideshow
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.slideshow {
    position: relative;
    overflow: hidden;
}

.gallery-intro .slideshow {
    border: 5px solid var(--main-green);
    font-size: 2em;
}

.s {
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.5em 2.5em;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.s.active {
    opacity: 1;
}

.flex {
    max-width: 2000px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: stretch;
}

.sidebar,
.far-right {
    margin-left: 10px;
}

.sidebar-div1 {
    margin-bottom: 10px;
}

@media only screen and (max-width: 2000px) {
    .sidebar,
    .far-right {
        margin-left: calc((100vw)*0.005);
    }
    .sidebar-div1 {
        margin-bottom: calc((100vw)*0.005);
    }
}

.sidebar-img,
.far-right-img {
    width: 100%;
}

.holder-img,
.slide {
    width: 100%;
}

.ss-btns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s;
    justify-content: space-between;
    align-items: center;
}

.ss-prev,
.ss-next {
    color: var(--white);
    user-select: none;
    font-weight: 600;
    font-size: 4em;
    padding: 0.2em;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slideshow:hover .ss-btns {
    opacity: 1;
}

.ss-prev:hover,
.ss-next:hover {
    cursor: pointer;
    color: var(--white);
}

.ss-prev {
    padding-right: 0.5em;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.ss-next {
    padding-left: 0.5em;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.604079131652661) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.ss-li:hover {
    cursor: pointer;
}

.mobile {
    display: none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Main Content
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.separator {
    width: 70%;
    text-align: center;
    margin: 0 auto 3em auto;
}

.separator p {
    font-size: 120%;
}

.img-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto 1em;
}

.img-flex div {
    width: 100%;
}

.img-flex a {
    align-self: flex-start;
    flex-grow: 1;
    width: 23vw;
    max-width: 280px;
    min-width: 160px;
    margin-bottom: 2em;
    color: var(--main-green);
    padding: 0.7em;
    border: 1px solid transparent;
}

.img-flex a:hover {
    border-color: var(--main-green);
}

.img {
    width: 100%;
}

.text {
    text-align: center;
    font-size: 90%;
    font-weight: bold;
    padding-top: 5px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Footer
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.main-footer {
    padding: 0 1em 3em;
    text-align: center;
    /* height: 200px; */
    /* background: var(--main-green); */
}

.footer-link {
    /* text-decoration: none; */
    color: var(--black);
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Child Page Style
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.lte-550 {
  display: none;
}

.child-section {
    position: relative;
}

.services-intro-backdrop,
.about-intro-backdrop {
    position: absolute;
    min-height: 630px;
    height: calc(100vh - var(--total-nav-height));
    max-height: 800px;
    width: 100%;
    background: url("/assets/Coverimage_7.jpg");
    background-position: center;
    background-size: cover;
    z-index: -9999;
}

.services-intro-overlay,
.about-intro-overlay {
    position: absolute;
    min-height: 630px;
    height: calc(100vh - var(--total-nav-height));
    max-height: 800px;
    width: 100%;
    background: var(--tpwhite);
    z-index: -9998;
}

.services-intro-backdrop0 {
    background-image: url("/assets/background_waterfall.jpg");
}

.services-intro-backdrop1 {
    background-image: url("/assets/OS_P_FlowerScapes.jpg");
}

.services-intro-backdrop2 {
    background-image: url("/assets/OS_P_Lighting.jpg");
}

.services-intro-backdrop4 {
    background-image: url("/assets/OS_P_Excavating.jpg");
}

.services-intro-backdrop5 {
    background-image: url("/assets/services_04.jpg");
}

.services-intro-backdrop6 {
    background-image: url("/assets/OS_P_LawnMain.jpg");
}

.services-intro-backdrop7 {
    background-image: url("/assets/services_06.jpg");
}

.services-intro-backdrop8 {
    background-image: url("/assets/OS_P_Deer.jpg");
}

.services-intro-backdrop0,
.services-intro-backdrop1,
.services-intro-backdrop2,
.services-intro-backdrop3,
.services-intro-backdrop4,
.services-intro-backdrop5,
.services-intro-backdrop6,
.services-intro-backdrop7,
.services-intro-backdrop8,
.services-intro-backdrop9 {
    height: 400px;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro-spacer {
    width: 100%;
    height: 50px;
}

.about-intro,
.gallery-intro {
    width: 70%;
    margin: 0 auto;
}

.intro-text {
    font-size: 150%;
    font-weight: 600;
}

.space-p {
    margin: 20px 0;
}

.float-img-left,
.float-img-right {
    max-width: calc(20vw + 1em);
}

.float-img-left {
    float: left;
    margin: 0 20px 0.5em 0;
}

.float-img-right {
    margin: 0 0 0.5em 20px;
    float: right;
}

.service-sections {
    width: 70%;
    margin: 100px auto;
    text-align: left;
    min-height: 34.5vw;
}

.service-sections:before {
    content:"";
    display: block;
    height: calc(var(--total-nav-height) + 160px);
    margin: calc(-1 * var(--total-nav-height) - 160px) 0 0;
}

.intro-text-holder {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    /* text-align: left; */
}

.leaf-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px;
    clear: both;
}

.leaf-holder div {
    height: 1px;
    width: 100%;
    background: var(--main-green);
}

.leaf-holder img {
    margin: 0 20px;
}

.links-intro {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.link-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.link-flex a {
    margin: 10px;
}

.link-flex p {
    color: #c50000;
}

.link-container {
    /* max-width: 300px; */
    display: inline-block;
    margin: 0 20px;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Services Nav
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.service-nav {
    margin: 50px 20px 20px 20px;
    text-align: center;
}

.svc-nav {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.s-nav-link-a {
    text-decoration: none;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

.service-nav-link {
    width: 350px;
    padding: 5px;
    margin: 2px;
    background: var(--main-green);
    border-radius: 5px;
}

.s-nav-link-a:hover {
    color: var(--black);

}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Tabs and Panels
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.tabs {
    display: flex;
    align-items: flex-end;
}

.tab {
    margin: 0 0.15em;
    padding: 0.8em 1.5em 0.4em;
    cursor: pointer;
    background-color: #AABA9C;
    color: var(--white);
}

.tab:first-child {
    margin-left: 0;
}

.tab:hover,
.tab.active {
    background-color: var(--main-green);
    padding-top: 1em;
    padding-bottom: 0.6em;
    color: var(--black);
}

.panel {
    display: none;
}

.panel.active {
    display: block;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Go To Top Button
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#myBtn {
    opacity: 0;
    transition: opacity 0.5s;
    position: fixed;
    bottom: 4vh;
    right: 50px;
    z-index: 99;
    background-color: var(--main-green);
    color: var(--white);
    cursor: default;
    padding: 5px 11px 5px 20px;
    font-size: 60px;
    font-weight: 600;
    line-height: 0.9;
    /* border-radius: 5px; */
}

#myBtn.active {
    opacity: 1;
    cursor: pointer;
}

#myBtn:hover {
    background-color: var(--grey);
}

#myBtn span {
    display: inline-block;
    transform: rotate(90deg);
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     *
    Form
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.contact-form {
    margin: 0 auto;
    padding: 0 2%;
    max-width: 750px;
}

.form1-top {
    margin: 20px 50px 0 0;
    width: 100%;
}

.form1-bottom {
    margin: 20px 50px 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.tb-button {
    height: 76px;
    width: 100%;
    padding: 10px;
    margin-left: 25px;
    border-radius: 3px;
    border: 1px solid rgb(150, 150, 150);
    color: rgb(100, 100, 100);
    background: #ffffff;
    text-align: center;
    cursor: not-allowed;
}

.tb-button.active {
    color:rgb(255, 255, 255);
    font-weight: bold;
    background-color: #AABA9C;
    border: 1px solid #AABA9C;
    cursor: pointer;
}

.tb-button.active:hover {
    background-color: var(--main-green);
    border: 1px solid var(--main-green);
}

.tb-message,
.tb-name,
.tb-email {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    outline-style: none;
    border: 1px solid var(--grey);
    background: #ffffff;
    font-size: 100%;
    font-weight: 400;
}

.tb-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tb-phone span {
    font-size: 200%;
}

.tb-parea,
.tb-pthree,
.tb-pfour {
    padding: 10px;
    margin-top: 5px;
    outline-style: none;
    border: 1px solid var(--grey);
    background: #ffffff;
    font-size: 100%;
    font-weight: 400;
}

.tb-parea,
.tb-pthree {
    width: 58px;
}

.tb-pfour {
    width: 69px;
}

.tb-message {
    height: 300px;
    resize: none;
}

.tb-parea:focus,
.tb-parea:hover,
.tb-pthree:focus,
.tb-pthree:hover,
.tb-pfour:focus,
.tb-pfour:hover,
.tb-message:focus,
.tb-message:hover,
.tb-name:hover,
.tb-name:focus,
.tb-email:hover,
.tb-email:focus {
    border: 1px solid #000000;
}

.alert-success,
.alert-failure {
    padding: 2em 1em;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    color: #33962a;
}

.alert-failure {
    color: #ff0000;
}

.extra-lspace {
    line-height: 120%;
}





/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*                                     /*
    Media Queries
/*                                     */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

@media only screen and (max-width: 1450px) {
    .gallery-intro,
    .about-intro {
        width: 100%;
        max-width: calc(1015px + 8%);
        margin: 0 auto;
        padding: 0 4%;
    }
}

@media only screen and (max-width: 1200px) {
    .main-nav-middle .main-nav-link {
        padding: 10px 0.6em;
    }
}

@media only screen and (max-width: 1100px) {
    .tabs {
        flex-wrap: wrap;
        border-right: 1px solid #697e55;
    }

    .tab {
        min-width: 30%;
        margin: 0;
        padding: 0.5em 1.5em;
        flex-grow: 1;
        border-left: 1px solid #697e55;
        border-top: 1px solid #697e55;
        border-right: 1px solid #cfddc3;
    }

    .tab:hover,
    .tab.active {
        padding: 0.5em 1.5em;
    }

    .gallery-intro .slideshow {
        font-size: calc(2vw + 0.5em);
    }
}

@media only screen and (max-width: 1000px) {
    .main-nav-left,
    .main-nav-right {
        flex-direction: column;
    }

    .ss-btns {
        opacity: 1;
        font-size: 1.5vw;
    }

    .img-flex {
        max-width: 560px;
    }

    .img-flex a {
        width: 50vw;
    }
}

@media only screen and (max-width: 900px) {
    .wrap-container-main,
    .wrap-container {
        margin-top: calc(80px + 15vw);
    }

    .menu-button {
        display: block;
    }

    .main-nav-bottom {
        overflow: hidden;
    }

    .main-nav-bottom.active {
        height: auto;
    }

    .main-nav-bottom,
    .main-nav-bottom .main-nav-middle {
        flex-direction: column;
    }

    .main-nav-bottom .main-nav-left,
    .main-nav-bottom .main-nav-right {
        order: 1;
    }

    .main-nav-middle .main-nav-link {
        padding: 0.4em 0.6em;
    }

    .leaf-img {
        display: none;
    }

    .links-intro {
        flex-direction: column;
        align-items: center;
    }

    #myBtn {
        display: none;
    }

    .service-sections {
        width: 92%;
        margin: 6vw auto;
    }

    .service-sections:before {
      height: 240px;
    }
}

@media (orientation: portrait) and (max-width: 700px) {

    .services-intro-backdrop0 {
        background-image: url("/assets/M_OS_P_PLD.jpg");
    }

    .services-intro-backdrop1 {
        background-image: url("/assets/M_OS_P_FlowerScapes.jpg");
    }

    .services-intro-backdrop2 {
        background-image: url("/assets/M_OS_P_Lighting.jpg");
    }

    .services-intro-backdrop4 {
        background-image: url("/assets/M_OS_P_Excavating.jpg");
    }

    .services-intro-backdrop5 {
        background-image: url("/assets/M_OS_P_Ponds.jpg");
    }

    .services-intro-backdrop6 {
        background-image: url("/assets/M_OS_P_LawnMain.jpg");
    }

    .services-intro-backdrop7 {
        background-image: url("/assets/M_OS_P_Patios.jpg");
    }

    .services-intro-backdrop8 {
        background-image: url("/assets/M_OS_P_Deer.jpg");
    }

    .services-intro-backdrop0,
    .services-intro-backdrop1,
    .services-intro-backdrop2,
    .services-intro-backdrop3,
    .services-intro-backdrop4,
    .services-intro-backdrop5,
    .services-intro-backdrop6,
    .services-intro-backdrop7,
    .services-intro-backdrop8 {
        height: 60vw;
    }

}

@supports (-webkit-overflow-scrolling: touch) or (-webkit-touch-callout: none) {
    .services-intro-backdrop0,
    .services-intro-backdrop1,
    .services-intro-backdrop2,
    .services-intro-backdrop3,
    .services-intro-backdrop4,
    .services-intro-backdrop5,
    .services-intro-backdrop6,
    .services-intro-backdrop7,
    .services-intro-backdrop8 {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 550px) {
    .pc,
    .main-nav-top {
        display: none;
    }

    .mobile {
        display: initial;
    }

    .home .wrap-container {
        margin-top: 45px;
    }

    .home .wrap-container .flex {
        flex-direction: column-reverse;
    }

    .home .wrap-container .sidebar-div,
    .home .wrap-container .far-right {
        display: none;
    }

    .wrap-container-main,
    .wrap-container {
        margin-top: calc(30px + 15vw);
    }

    .main-nav-bottom {
        background-color: var(--main-green);
    }

    .about-intro .float-img-left {
        float: none;
        margin: 0.4em auto 0.6em;
        width: auto;
        max-width: 100%;
    }

    .gte-550 {
        display: none;
    }

    .lte-550 {
        display: block;
        margin: 1em auto 0;
        max-width: 100%;
    }

    .img-flex {
        justify-content: center;
    }

    .img-flex a {
        max-width: calc(160px + 1.4em);
    }

    .service-sections:before {
        height: 150px;
        margin: calc(-1 * var(--total-nav-height) - 80px) 0 0;
    }
}

@media only screen and (max-width: 500px) {
    .ss-btns {
        font-size: 3vw;
    }

    .ss-prev,
    .ss-next {
        padding: 0.12em;
    }

    .ss-prev {
        padding-right: 0.3em;
    }

    .ss-next {
        padding-left: 0.3em;
    }

    .img-flex {
        justify-content: center;
    }

    .intro-text {
        font-size: 130%;
    }
}


@media only screen and (max-width: 420px) {
    .form1-bottom {
        flex-direction: column;
        align-items: center;
    }

    .tb-button {
        margin-right: 25px;
        margin-top: 0.5em;
    }

    .tab {
        width: 100%;
        border-right: none;
    }

    .separator {
        width: 100%;
        padding: 0 5%;
        margin-bottom: 5vw;
    }

    .separator p {
        font-size: 90%;
    }

    .img-flex a {
        margin-bottom: 2vw;
    }
}

@media only screen and (max-width: 400px) {
    .service-sections .float-img-right,
    .service-sections .float-img-left {
        display: none;
    }

    .img-flex a {
        width: 100vw;
    }
}
