html {
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    html {
        font-size: 17px;
    }
}

@media screen and (max-width: 400px) {
    html {
        font-size: 16px;
    }
}

* {
    box-sizing: border-box;
}

:root {
    --main-font: 'Nunito', sans-serif;
    --secondary-font: 'Abril Fatface', sans-serif;
    --tertiary-font: 'Montserrat', sans-serif;
    --quaternary-font: 'Open Sans', sans-serif;
    --blue: #004b93;
    --yellow: #eeb73c;
    --white: #ffffff;
    --black: #343434;
    --grey: #f7f7f7;
    --charcoal: #3b3b3b;
}

body {
    font-family: var(--main-font);
    color: var(--black);
}

a {
    text-decoration: none;
}

p {
    line-height: 1.4em;
}

@font-face {
    font-family: 'icomoon';
    src:  url('./fonts/icomoon/fonts/icomoon.eot?3no1kb');
    src:  url('./fonts/icomoon/fonts/icomoon.eot?3no1kb#iefix') format('embedded-opentype'),
    url('./fonts/icomoon/fonts/icomoon.ttf?3no1kb') format('truetype'),
    url('./fonts/icomoon/fonts/icomoon.woff?3no1kb') format('woff'),
    url('./fonts/icomoon/fonts/icomoon.svg?3no1kb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
    content: "\e903";
    color: #004b93;
}
.icon-menu:before {
    content: "\e904";
    color: #004b93;
}
.icon-piggybank:before {
    content: "\e902";
    color: #000;
}
.icon-eye1:before {
    content: "\e900";
    color: #000;
}
.icon-eye2:before {
    content: "\e901";
    color: #000;
}
.icon-eye3:before {
    content: "\e906";
    color: #000;
}
.icon-form:before {
    content: "\e90b";
    color: #000;
}
.icon-laptop:before {
    content: "\e910";
    color: #000;
}
.icon-phone:before {
    content: "\e913";
    color: #fff;
}
.icon-facebook:before {
    content: "\ea90";
    color: #fff;
}
.icon-twitter:before {
    content: "\ea96";
    color: #fff;
}
.icon-linkedin2:before {
    content: "\eaca";
    color: #fff;
}

.secondary-font {
    font-family: var(--secondary-font);
}

.tertiary-font {
    font-family: var(--tertiary-font);
}

.quaternary-font {
    font-family: var(--quaternary-font);
}

.semiBold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extraBold {
    font-weight: 800;
}

.blackBold {
    font-weight: 900;
}

.upper {
    text-transform: uppercase;
}

.blue {
    color: var(--blue);
}

.yellow {
    color: var(--yellow);
}

.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.grey-bkg {
    background-color: var(--grey);
}

.charcoal-bkg {
    background-color: var(--charcoal);
}

.blue-bkg {
    background-color: var(--blue);
}

.yellow-bkg {
    background-color: var(--yellow);
}

.white-bkg {
    background-color: var(--white);
}

.blue-bdr {
    border: 2px solid var(--blue);
}

.light-grad {
    background: linear-gradient(to top, rgba(68,68,68,0.80) 0%, rgba(153,153,153,0) 100%);
    background: -moz-linear-gradient(to top, rgba(68,68,68,0.80) 0%, rgba(153,153,153,0) 100%);
    background: -webkit-linear-gradient(to top, rgba(68,68,68,0.80) 0%, rgba(153,153,153,0) 100%);
    background: -ms-linear-gradient(to top, rgba(68,68,68,0.80) 0%, rgba(153,153,153,0) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dark-grad {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(153,153,153,0) 100%);
    background: -moz-linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(153,153,153,0) 100%);
    background: -webkit-linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(153,153,153,0) 100%);
    background: -ms-linear-gradient(to top, rgba(0,0,0,0.7) 60%, rgba(153,153,153,0) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.dark-grad-alt {
    background: linear-gradient(to top, rgba(0,0,0,0.25) 60%, rgba(153,153,153,0) 100%);
    background: -moz-linear-gradient(to top, rgba(0,0,0,0.25) 60%, rgba(153,153,153,0) 100%);
    background: -webkit-linear-gradient(to top, rgba(0,0,0,0.25) 60%, rgba(153,153,153,0) 100%);
    background: -ms-linear-gradient(to top, rgba(0,0,0,0.25) 60%, rgba(153,153,153,0) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.btn {
    border-radius: 20px;
}

.btn-wrapper {
    display: inline;
    border-radius: 20px;
}

a.consult-btn {
    color: inherit;
}

/* BUTTON HOVER EFFECTS */
.yellow-flip:hover {
    background-color: var(--blue);
    color: var(--yellow);
}

.yellow-flip2:hover {
    background-color: var(--yellow);
    color: var(--blue);
}

a.blue-flip:hover {
    background-color: white;
    color: var(--blue);
    border: 2px solid var(--blue);
}

a.white-flip:hover {
    background-color: var(--blue);
    color: white;
}


/*==========  Header  ==========*/


#top-container {
    background-color: #fff;
    border-bottom: 25px solid var(--yellow);
    display: flex;
    padding-right: 1rem;
}

#header-logo {
    display: inline-block;
    width: 1%;
    max-height: 192px;
    z-index: 100000;
}

#logo {
    background-image: url(./images/logo.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 350px;
    height: 168px;
    margin: 0 0 0 1.25rem;
}

#top-right-container {
    display: inline-block;
    text-align: right;
    text-align: -moz-right;
    text-align: -webkit-right;
    width: 63%;
    margin-top: 0.8rem;
    margin-left: auto;
}

#contact-container {
    padding: 0.5rem 0.75rem 0.5rem 0;
    margin-bottom: 2rem;
    display: inline-block;
}

#contact-container .icon-phone {
    font-size: 30px;
    padding-right: 2rem;
}

#contact-container a {
    display: inline-block;
    text-align: left;
    text-align: -moz-left;
    text-align: -webkit-left;
    font-size: 0.85rem;
    line-height: 1.2;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
}

#contact-container a:last-of-type {
    margin-left: 1rem;
}

#contact-container span {
    display: inline-block;
}

#contact-container a span:first-of-type {
    color: #e6e4dd;
}

#contact-container a span:last-of-type {
    letter-spacing: 2px;
}

#nav-container {
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
}

#nav-container input#menu, label {
    display: none;
}

#nav-container ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-left: 0;
    margin: 0;
}

#nav-container ul li {
    display: inline-block;
    margin: 0 5px 15px;
    position: relative;
    padding: 24px 10px;
}

#nav-container ul li a {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 900;
}

#nav-container ul #menu-item-1026 > a {
    color: var(--yellow);
}

#nav-container ul li a:hover {
    border-bottom: 3px solid var(--blue);
}

#nav-container ul li .sub-menu {
    display: none;
}

#nav-container ul #menu-item-1026 .sub-menu {
    left: -180px;
}

#nav-container ul li:hover .sub-menu {
    position: absolute;
    top: 69px;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    display: -o-flex;
    flex-flow: column;
    -webkit-flex-flow: column;
    width: 400px;
    max-width: 305px;
    background-color: white;
    border: 2px solid var(--blue);
    /*right: 0;*/
    text-align: center;
    text-align: -moz-center;
    text-align: -webkit-center;
    left: -50px;
    z-index: 999;
}

#nav-container ul #menu-item-264:hover .sub-menu {
    max-width: 340px;
}

#nav-container ul #menu-item-263:hover .sub-menu {
    max-width: 400px;
}

#nav-container ul #menu-item-266:hover .sub-menu {
    max-width: 400px;
    left: -200px;
}

#nav-container ul li .sub-menu li {
    padding: 12px 10px;
    margin: 0 auto;
}

#nav-container ul li .sub-menu li a {
    line-height: 1.6em;
}

#nav-container ul li .sub-menu li a:hover {
    border-bottom: 3px solid var(--yellow);
}

#btm-container {
    text-align: right;
    text-align: -moz-right;
    text-align: -webkit-right;
    background-image: url("./images/header-bg3.jpg");
    background-size: 56.19rem 100%;
    /*background-size: 56.19rem 50rem;*/
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 840px;
}

#header-cta {
    display: inline-block;
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    width: 100%;
    max-width: 1920px;
    padding: 0 0 8% calc(1vw - -40.3rem);
    /*padding: 0 0 12% calc(1vw - -40.3rem);*/
}

#header-cta div h2 {
    font-size: 2.15rem;
    letter-spacing: 3px;
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    padding: 22px 0;
    margin: 0;
}

#header-cta h3 {
    font-size: 5.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    max-width: 875px;
    padding: 0 0.5rem;
    margin: 3.5rem auto 2rem;
    text-align: center;
    text-align: -moz-center;
    text-align: -webkit-center;
}

#header-cta p {
    font-size: 1.125rem;
    max-width: 720px;
    /*margin-bottom: 4rem;*/
    line-height: 1.5;
    margin: 0 auto 4rem;
}

#header-cta #cta-btn-container {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-flex;
    flex-flow: column;
    -webkit-flex-flow: column;
}

#header-cta #cta-btn-container a:last-of-type {
    margin-top: 2rem;
}

#header-cta .btn-wrapper {
    font-size: 1.375rem;
    padding: 1rem 1.75rem;
    border-radius: 15px;
    /*max-width: 625px;*/
    max-width: 460px;
    align-self: center;
    -webkit-align-self: center;
}

@media screen and (max-width: 1700px) {
    #header-cta {
        padding: 0 0 12% calc(1vw - -40.4rem);
    }
}

@media screen and (max-width: 1600px) {
    #header-cta {
        padding: 0 0 12% calc(1vw - -40.5rem);
    }

    #header-cta div h2 {
        font-size: 1.75rem;
    }

    #header-cta h3 {
        font-size: 4rem;
        max-width: 670px;
    }

    #header-cta p {
        font-size: 1rem;
        max-width: 585px;
    }

    #header-cta .btn-wrapper {
        font-size: 1.125rem;
        /*padding: 1rem 1.75rem;*/
    }
}

@media screen and (max-width: 1440px) {
    #top-right-container {
        width: 100%;
    }

    #contact-container a {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    #nav-container {
        /*max-width: 75%;*/
        margin: 1rem auto 0;
    }
}

@media screen and (max-width: 1390px) {
    #header-cta {
        padding: 0 0 12% calc(1vw - -40.55rem);
    }

    #header-cta div h2 {
        font-size: 1.25rem;
    }

    #header-cta h3 {
        font-size: 3rem;
        max-width: 510px;
    }

    #header-cta p {
        max-width: 500px;
    }

    #header-cta .btn-wrapper {
        font-size: 0.925rem;
        padding: 1rem 0.75rem;
    }
}

/*max-width: 1267px*/
@media screen and (max-width: 1330px) {
    #btm-container {
        background-image: none;
    }

    #header-cta {
        padding-bottom: 20%;
        padding-left: unset;
    }

    #header-cta div h2 {
        font-size: 1.85rem;
    }

    #header-cta h3 {
        font-size: 4.5rem;
        padding: 0 1rem;
        max-width: 895px;
    }

    #header-cta p {
        font-size: 1.25rem;
        padding: 0 1rem;
        max-width: 840px;
    }

    #header-cta .btn-wrapper {
        font-size: 1.35rem;
        padding: 1rem 1.5rem;
        display: inline-block;
        display: -moz-inline-block;
    }
}

@media screen and (max-width: 1297px) {
    #header-cta h2 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1093px) {
    #header-cta h2 {
        font-size: 0.9rem;
    }

    /*#nav-container {*/
    /*    max-width: 80%;*/
    /*}*/
}

@media screen and (max-width: 980px) {
    #contact-container {
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
        flex-flow: column;
        -webkit-flex-flow: column;
        max-width: 320px;
        margin-bottom: 0;
    }

    #contact-container a {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #contact-container a:last-of-type {
        margin-left: 0;
    }
}

@media screen and (max-width: 955px) {
    #masthead {
        background-image: none;
    }

    #header-logo {
        max-width: 25%;
    }

    #logo {
        background-image: url("./images/logo.jpg");
    }

    #nav-container {
        margin-top: 0;
        margin-right: 0;
        max-width: 100%;
    }

    #nav-container label {
        display: block;
        cursor: pointer;
        background-image: url(./images/menu.jpg);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 45px;
        height: 60px;
        margin-right: 1rem;
    }

    .menu-menu-home-container {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        text-align: center;
        text-align: -moz-center;
        text-align: -webkit-center;
    }

    #menu-menu-home {
        flex-flow: column;
        -webkit-flex-flow: column;
        margin-right: 1rem;
    }

    #nav-container input:checked + label {
        background-image: url(./images/close.jpg);
    }

    #nav-container input:checked ~ .menu-menu-home-container {
        max-height: 100%;
    }

    #nav-container ul li:hover .sub-menu{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    #btm-container {
        min-height: 700px;
    }

    #header-cta div h2 {
        font-size: 1.25rem;
    }

    #header-cta h3 {
        font-size: 3.25rem;
        max-width: 675px;
    }

    #header-cta p {
        font-size: 1rem;
        max-width: 680px;
    }

    #header-cta .btn-wrapper {
        font-size: 1.125rem;
        max-width: 375px;
    }
}

@media screen and (max-width: 745px) {
    #top-container {
        padding-right: 0;
    }

    #header-logo {
        margin-top: 5rem;
        margin-bottom: 2rem;
        max-width: 0.1%;
    }

    #logo {
        background-size: contain;
        width: 300px;
        height: 145px;
    }

    #top-right-container {
        margin-top: 0;
    }

    #contact-container {
        flex-flow: row;
        -webkit-flex-flow: row;
        justify-content: space-evenly;
        -webkit-justify-content: space-around;
        padding-top: 0;
        padding-right: 0;
        max-width: unset;
    }

    #contact-container a {
        padding: 0.5rem 1rem;
    }

    #contact-container .icon-phone {
        padding-right: 1rem;
    }

    #nav-container {
        margin-top: 7.25rem;
    }
}

@media screen and (max-width: 600px) {
    #logo {
        width: 250px;
        height: 120px;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 490px) {
    #contact-container .icon-phone {
        display: none;
    }

    #header-cta div h2 {
        font-size: 1rem;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    #header-cta h3 {
        font-size: 2.5rem;
    }

    #cta-btn-container {
        padding: 0 1rem;
    }

    #header-cta .btn-wrapper {
        font-size: 1rem;
        max-width: 350px;
    }
}

@media screen and (max-width: 445px) {
    #header-cta .btn-wrapper {
        padding: 1rem 0.5rem;
    }
}

@media screen and (max-width: 375px) {
    #logo {
        width: 200px;
        height: 95px;
        margin-top: 5rem;
    }

    #contact-container {
        flex-flow: column;
        -webkit-flex-flow: column;
        justify-content: center;
        -webkit-justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }

    #contact-container .icon-phone {
        display: contents;
    }

    #contact-container span:nth-of-type(2) {
        padding-left: 1rem;
    }

    #nav-container {
        margin-top: 4.75rem;
    }

    #header-cta div h2 {
        line-height: 1.4em;
    }

    #header-cta .btn-wrapper {
        max-width: 250px;
    }
}

@media screen and (max-width: 350px) {
    #header-cta .btn-wrapper {
        font-size: 0.925rem;
    }
}

/*==========  Section 1 ==========*/
#content {
    overflow: visible;
}

#section1 {
    font-size: 1rem;
    text-align: center;
    padding: 10em 1em 5em;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#imgs-container {
    display: inline-block;
    width: 100%;
    margin-top: -12.5em;
}


#imgs-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1320px;
    margin: 0 auto;
}

#imgs-layout .link-anchor {
    padding: 0.5rem 0.75rem;
}

#section1 .link-imgs {
    display: inline-block;
    width: 275px;
    height: 275px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#section1 .link-icons {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    transition: width 0.5s, height 0.5s;
    -moz-transition: width 0.5s, height 0.5s;
    -webkit-transition: width 0.5s, height 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#link-icon1 {
    font-size: 38px;
}

#link-img1:hover #link-icon1 {
    width: 100%;
    height: 100%;
}

#link-img1:hover .icon-eye1:before {
    transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    transform: scale(2.5);
    -moz-transform: scale(2.5);
    -webkit-transform: scale(2.5);
}

#link-icon2 {
    font-size: 26px;
}

#link-img2:hover #link-icon2 {
    width: 100%;
    height: 100%;
}

#link-img2:hover .icon-eye2:before {
    transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    transform: scale(2.5);
    -moz-transform: scale(2.5);
    -webkit-transform: scale(2.5);
}

#link-icon3 {
    font-size: 46px;
}

#link-img3:hover #link-icon3 {
    width: 100%;
    height: 100%;
}

#link-img3:hover .icon-eye3:before {
    transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    transform: scale(2.5);
    -moz-transform: scale(2.5);
    -webkit-transform: scale(2.5);
}

#link-icon4 {
    font-size: 34px;
}

#link-img4:hover #link-icon4 {
    width: 100%;
    height: 100%;
}

#link-img4:hover .icon-laptop:before {
    transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    transform: scale(2.5);
    -moz-transform: scale(2.5);
    -webkit-transform: scale(2.5);
}

#section1 .link-title {
    font-size: 1.75em;
    letter-spacing: 0.75px;
    line-height: 1.25;
}

[id*='link-img'] .link-title {
    margin-bottom: 0.5em;
}

#section1 h2 {
    font-size: 3em;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 6rem;
}

.section1-text {
    max-width: 750px;
    padding: 0 1rem;
    margin-right: auto;
    margin-bottom: 3em;
    margin-left: auto;
}

.section1-text:last-of-type {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2em;
}

#video-container {
    /*width: 800px;*/
    /*height: 500px;*/
    /*max-width: calc(20vw - -18rem);*/
    /*max-height: 372px;*/
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 1rem 3rem;
}

#video-container video {
    max-width: 100%;
    height: auto;
}

#video-btn {
    width: 0;
    height: 0;
    border-top: calc(2vw - -2.4rem) solid transparent;
    border-left: calc(2vw - -5.45rem) solid #fff;
    border-bottom: calc(2vw - -2.4rem) solid transparent;
    cursor: pointer;
}

@media screen and (max-width: 1267px) {
    #imgs-layout {
        max-width: 1110px;
    }

    #section1 .link-imgs {
        max-width: 250px;
        max-height: 250px;
    }
}

@media screen and (max-width: 600px) {
    #imgs-layout .link-anchor .link-imgs {
        max-width: 225px;
        max-height: 225px;
    }

    #section1 h2 {
        font-size: 2.5rem;
    }

    /*#video-container {*/
    /*    max-width: calc(20vw - -16rem);*/
    /*}*/
}

@media screen and (max-width: 400px) {
    #section1 {
        padding-bottom: 0;
    }

    #imgs-layout .link-anchor .link-imgs {
        max-width: 200px;
        max-height: 200px;
    }

    #section1 h2 {
        font-size: 2.25rem;
    }

    #section1-text {
        margin-bottom: 0;
    }

    /*#video-container {*/
    /*    max-width: calc(20vw - -14rem);*/
    /*}*/
}

/*==========  Section 2  ==========*/

#section2 {
    font-size: 1rem;
    text-align: center;
    padding: 3rem 1rem 6rem;
}

#reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1250px;
    margin-right: auto;
    margin-bottom: 2.5em;
    margin-left: auto;
}

#section2 h2 {
    font-size: 4.75em;
    font-weight: 400;
    margin: 1.75rem 0 1.25rem;
}

#section2-text {
    max-width: 780px;
    margin: 0 auto 3em;
}

#section2 .reviews {
    max-width: 405px;
    padding: 0 0.5rem;
    margin: 0 auto;
}

#section2 .review-img {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#section2 .review-img-title {
    font-size: 1.45em;
    margin: 0;
    line-height: 1.25;
}

#section2 .review-img-text {
    max-width: 95%;
    margin: 0.5em auto 0;
    letter-spacing: 1.125px;
}

#lasik-img p:last-of-type {
    margin-bottom: 3em;
}

#cataract-img p:last-of-type {
    margin-bottom: 0.4em;
}

#general-img p:last-of-type {
    margin-bottom: 1em;
}

#section2 .btn-wrapper {
    padding: 1em 1.5em;
    display: inline-block;
    display: -moz-inline-block;
}

@media screen and (max-width: 1280px) {
    #section2 h2 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1205px) {
    #reviews-container {
        max-width: 825px;
    }

    #review1 p:last-of-type, #review2 p:last-of-type {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 600px) {
    #section2 h2 {
        font-size: 3.25rem;
    }
}

@media screen and (max-width: 412px) {
    #section2 .btn-wrapper {
        font-size: 0.9rem;
        padding: 1em;
    }
}

@media screen and (max-width: 400px) {
    #section2 h2 {
        font-size: 3rem;
    }

    #section2 .btn-wrapper {
        font-size: 0.9rem;
    }
}



/*==========  Section 3  ==========*/

#section3 {
    font-size: 1rem;
    padding: 3em 1em 6em;
}

#section3 h3 {
    font-size: 2.65rem;
    font-weight: 400;
    letter-spacing: 1px;
}

#section3 .section3-containers {
    display: flex;
}

/*#pricing-container {*/
/*    margin-bottom: 7em;*/
/*}*/

#section3 .section3-text {
    max-width: 36%;
}

#pricing-text {
    margin-left: auto;
}

#pricing-text p {
    max-width: 80%;
}

/*#info-text {*/
/*    padding-top: 2em;*/
/*    margin-right: auto;*/
/*}*/

/*#info-text p {*/
/*    max-width: 95%;*/
/*    margin-bottom: 3em;*/
/*}*/

#section3 .section3-imgs {
    width: 700px;
    height: 500px;
    max-width: 650px;
    max-height: 488px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#pricing-img {
    margin-top: 6em;
    margin-right: auto;
    margin-left: 2.25em;
}

/*#info-img {*/
/*    margin-left: auto;*/
/*    margin-right: 3em;*/
/*}*/

#section3 .img-icons {
    width: 110px;
    height: 110px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pricing-icon {
    right: 0;
    font-size: 76px;
}

/*#info-icon {*/
/*    left: 0;*/
/*    font-size: 60px;*/
/*}*/

#section3 .info-btns {
    display: block;
    max-width: 450px;
    text-align: center;
    padding: 0.75em;
}

#pricing-btn {
    margin-top: 3em;
    margin-bottom: 1em;
}

@media screen and (max-width: 1400px) {
    #pricing-img {
        margin-top: 7em;
    }
}

@media screen and (max-width: 1267px) {
    #section3 {
        padding: 3rem 1rem 6rem;
    }

    #section3 .section3-containers {
        flex-flow: column;
    }

    #section3 .section3-text {
        max-width: unset;
        text-align: center;
        text-align: -moz-center;
        text-align: -webkit-center;
    }

    #section3 .info-btns {
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: -moz-flex;
        justify-content: center;
        -webkit-justify-content: center;
        margin-right: 1em;
        margin-left: 1em;
    }

    #section3 .section3-imgs {
        width: 100%;
        height: 0px;
        padding-top: 57%;
        max-width: 1000px;
    }

    #pricing-container {
        margin-bottom: 3em;
    }

    #pricing-img {
        margin-top: 2em;
        margin-left: auto;
    }

    #section3 #info-container {
        flex-flow: column-reverse;
    }

    #info-img {
        margin-top: 2em;
        margin-right: auto;
    }
}

@media screen and (max-width: 690px) {
    #section3 .section3-imgs {
        width: 100%;
        height: 0px;
        padding-top: 67%;
    }
}

@media screen and (max-width: 600px) {
    #section3 h3 {
        font-size: 2.25rem;
        padding: 0 1rem;
    }

    #section3 .img-icons {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 500px) {
    #section3 .section3-containers a {
        font-size: 0.9rem;
    }

    #section3 .info-btns {
        margin-right: 0;
        margin-left: 0;
    }
}

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

    /*#section3 .section3-containers a {*/
    /*    font-size: 0.9rem;*/
    /*}*/

    #section3 .img-icons {
        width: 75px;
        height: 75px;
        font-size: 3.5rem;
    }

    /*#section3 .info-btns {*/
    /*    margin-right: 0;*/
    /*    margin-left: 0;*/
    /*}*/
}


/*==========  Section 4 ==========*/

#section4 {
    text-align: center;
    font-size: 1rem;
    padding: 3rem 1rem 3rem;
}

#section4-top h2 {
    font-size: 4.4rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

#section4-top p {
    max-width: 793px;
    margin: 0 auto 3rem;
}

#section4-btm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1240px;
    margin: 0 auto;
}

#section4-btm .dr-container {
    max-width: 380px;
    padding: 0 0.5rem;
    margin-bottom: 3rem;
}

#section4-btm .dr-img {
    height: 260px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#section4-btm .dr-name {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

#section4-btm .dr-btn {
    padding: 1rem 1.5rem;
}

#dr-f-container p, #dr-d-container p {
    margin-bottom: 2.75rem;
}

#dr-e-container p {
    margin-bottom: 2.75rem;
}

@media screen and (max-width: 795px) {
    #dr-e-container p {
        margin-bottom: 2.75rem;
    }
}

@media screen and (max-width: 600px) {
    #section4-top h2 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 400px) {
    #section4-top h2 {
        font-size: 3rem;
    }
}


/*==========  Footer  ==========*/

#foot-container {
    text-align: center;
    padding: 1rem 0 1.25rem;
}

#foot-top {
    padding-right: 2.75rem;
    margin-bottom: 1.5rem;
}

#foot-top p {
    font-size: 3.5rem;
    line-height: 1.25;
    /*padding-right: 2.75rem;*/
    margin: 0;
}

#foot-top a:hover:before {
    color: var(--yellow);
}

#foot-top #social-icon-container {
    display: flex;
    justify-content: space-between;
    max-width: 240px;
    margin: 1rem auto 0;
}
#social-icon-container .social-icons {
    font-size: 28px;
    cursor: pointer;
}

#foot-mid {
    display: flex;
    justify-content: center;
    font-size: 1.08rem;
    margin-top: 0.75rem;
}

#foot-mid div:first-of-type {
    text-align: right;
    line-height: 0.25;
    padding-right: 1rem;
    border-right: 0.5px solid white;
}

#foot-mid div:last-of-type {
    text-align: left;
    line-height: 0.25;
    padding-left: 1rem;
    border-left: 0.5px solid white;
}

#foot-mid .spacer-top {
    margin-top: 0.5rem;
}

#foot-mid .spacer-bottom {
    margin-bottom: 0.5rem;
}

#foot-mid div p {
    line-height: 0.5;
}

#foot-mid a:hover {
    color: var(--yellow);
}

#foot-btm {
    font-size: 0.8rem;
    padding-right: 2.75rem;
    margin: 2rem 0;
}

@media screen and (max-width: 600px) {
    #foot-top {
        padding-right: 0;
    }

    #foot-mid {
        flex-flow: column;
        -webkit-flex-flow: column;
    }

    #foot-mid div:first-of-type {
        max-width: 310px;
        text-align: center;
        text-align: -moz-center;
        text-align: -webkit-center;
        padding-bottom: 0.25rem;
        padding-right: 0;
        border-right: none;
        margin: 0 auto;
    }

    #foot-mid div:last-of-type {
        max-width: 310px;
        text-align: center;
        text-align: -moz-center;
        text-align: -webkit-center;
        padding-top: 0.25rem;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid white;
        margin: 0 auto;
    }

    #foot-btm {
        padding-right: 0;
    }
}