html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input,
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

/* font-family: 'Josefin Sans',sans-serif; */



html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}


body {
    font-family: 'Work Sans', sans-serif;
    font-size: 12pt;
    color: #535353;
    padding: 2rem;
    font-style: normal;
    font-weight: 400;
}

#page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    font-size: 1em;
    line-height: 152.523%;
}

#header>h1 {
    color: #5B7889;
    font-family: 'Josefin Sans';
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

#header>h3 {
    color: #535353;
    font-family: 'Work Sans';
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 152.523%;
}

#page-wrapper>section {
    max-width: 100%;
}


.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1
}

.align-start {
    align-items: flex-start;
}

.block {
    display: block;
}

.padding-sides-huge {
    padding-left: 8rem;
    padding-right: 8rem;
}

.padding-right-huge {
    padding-right: 6rem;
}

.padding-sides-large {
    padding-left: 2rem;
    padding-right: 2rem;
}

.padding-sides-medium {
    padding-left: 3rem;
    padding-right: 3rem;
}

.padding-right-medium {
    padding-right: 3rem;
}

.padding-sides-small {
    padding-left: 1rem;
    padding-right: 1rem;
}

.margin-bottom-large {
    margin-bottom: 6rem;
}

.margin-bottom-medium {
    margin-bottom: 3rem;
}

.margin-bottom-small {
    margin-bottom: 1rem;
}

#about {
    padding: 5em 0;
}

#about_image {
    height: 700px;
}

#about_image>img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.double_column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2
}

/* #page-wrapper section h2 {
    color: #5B7889;
    font-family: 'Josefin Sans';
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: .5rem;
    border-bottom: dashed 1px rgba(204, 204, 204, .5);
    width: 100%;
} */

#faq {
    padding-top: 3em;
    padding-bottom: 3em;
}

#faq-list {
    width: 100%;
}


#faq-list>li>a.hide {
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #D9D9D9;
    background-color: rgb(91, 120, 137, .25);
    padding: 2rem;
    margin-top: 1rem;
    display: block;
    width: 100%;
    color: rgba(91, 120, 137);
    opacity: .8;
    font-family: Work Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

#faq-list>li>a.show {
    border-radius: 20px 20px 0 0;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #D9D9D9;
    background-color: rgba(255, 172, 158, .25);
    padding: 2rem 2rem 0 2rem;
    margin-top: 1rem;
    display: block;
    width: 100%;
    color: #5B7889;
    font-family: 'Work Sans';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

#faq-list>li>div {
    border-radius: 0 0 20px 20px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #D9D9D9;
    background-color: rgba(255, 172, 158, .25);
    padding: 1rem 2rem 2rem 2rem;
    /* margin-top: 1rem; */
    display: block;
    width: 100%;
}


#faq-list>li>div.details,
#faq-list>li>a.show,
#faq-list>li>a.hide:target {
    display: none;
}

#faq-list>li>a.hide:target+.show,
#faq-list>li>a.hide:target~.details {
    display: block;
}



section>div.left,
section>div.right {
    width: 50%;
    padding: 3rem;
}

#content p,
#about p,
#why p {
    color: #535353;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    line-height: 152.523%;
}

#why_image {
    width: 55%;
    text-align: center;
}



#contact {
    padding-top: 3em;
    color: #535353;
    font-family: 'Work Sans';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 152.523%;
    background-image: url(images/green_bubble_bg.png);
    background-repeat: no-repeat;
    background-size: 500px;
    background-position-y: 300px;
    background-position-x: 100px;
    padding-bottom: 5em;
}

#contact h2 {
    color: #5B7889;
    font-family: 'Josefin Sans';
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

#contact form {
    width: 100%;
    margin-top: 1em;
}

#contact form>input,
#contact form>textarea {
    border-radius: 8px;
    border: 1px solid #CCC;
    background: #FAFAFA;
    padding: 1em;
    display: block;
    width: 100%;
    margin-bottom: 2em;
}

#contact form>button {
    display: inline-flex;
    border-radius: 1rem;
    background: #5B7889;
    padding: 1rem 2.25rem;
    align-items: flex-start;
    gap: 8px;
    color: #FAFAFA;
    font-family: 'Work Sans';
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 152.523%;
    margin-top: 1em;
    /* 24.404px */
}

#contact form>label {
    color: #535353;
    text-align: justify;
    font-family: 'Work Sans';
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    /* 175% */
}

#contact .h-captcha {
    margin: 1em 0;
}

#mobile {
    display: none;
}

#nav {
    background: url(images/emblem.svg);
    background-repeat: no-repeat;
    background-size: 142px 120px;
    height: 120px;
}

#nav .menu {
    margin-left: 130px;
}

#nav .menu_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    justify-content: space-evenly;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 300;
    line-height: 152.523%;
}

#nav .menu_list>li>a {
    text-decoration: none;
    color: #535353;
}


#nav .menu_list>li>a:hover {
    text-decoration: underline;
}

#nav .opener {
    display: none;
}

#nav .header {
    display: none;
}


.link_button>svg {
    vertical-align: middle;
}

#service-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

#services {
    padding: 3em 0;
}

#service-list>li {
    flex: 0 0 25%;
    flex-shrink: 0;
    color: #535353;
    font-family: 'Josefin Sans';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 152.523%;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2em 0;
    text-align: center;
}

.icon-small {
    background-size: 3rem;
    height: 5rem;
    width: 5rem;
    padding: 1em;
}

.icon-normal {
    height: 8rem;
    width: 8rem;
}

.icon span {
    display: flex;
    text-align: center;
    background-color: rgba(255, 172, 158, .25);
    border-radius: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    background-size: 4rem 4rem;
}

.icon span.pink {
    background-color: rgba(255, 172, 158, .25);
}

.icon span.blue {
    background-color: rgb(91, 120, 137, .25);
}

.icon span.lightblue {
    background-color: rgb(122, 160, 188, .25);
}

.icon span.green {
    background-color: rgb(180, 222, 208, .25);
}

.icon span.basement {
    background-image: url(/images/basement.png);
}

.icon span.bathrooms {
    background-image: url(/images/bathroom.png);
}

.icon span.childplayplaces {
    background-image: url(/images/children.png);
}

.icon span.closets {
    background-image: url(/images/closets.png);
}

.icon span.commercial {
    background-image: url(/images/commercial.png);
}

.icon span.moving {
    background-image: url(/images/moving.png);
}

.icon span.garage {
    background-image: url(/images/garages.png);
}

.icon span.office {
    background-image: url(/images/homeoffices.png);
}

.icon span.kitchen {
    background-image: url(/images/kitchens.png);
}

.icon span.laundry {
    background-image: url(/images/laundry.png);
}

.icon span.linen {
    background-image: url(/images/linen.png);
}

.icon span.storage {
    background-image: url(/images/storage.png);
}

.floating_center_text {
    width: 50rem;
    display: block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}




.page-wrapper section {
    padding-left: 5em;
    padding-right: 5em;
}

.consult_bg>svg {
    height: 405px;
    width: 450px;
}

#why p {
    line-height: 2em;
}

.center_text {
    text-align: center;
}

#testimonials>div.background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.work_grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.work_grid>div {
    flex: 0 0 50%;
    flex-shrink: 0;
    padding: 1em .5em;
    height: 200px;
    display: flex;
    align-items: center;
}

.work_grid>div>a {
    position: relative;
}

.work_grid>div>a>h3 {
    padding: 1em 0;
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 1em;
    background: rgba(255, 255, 255, .7);
    width: 100%;
    text-align: right;
    color: #333;
}

.work_grid>div>a>img {
    display: block;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
}


#our_work h3,
#testimonials h3 {
    color: #5B7889;
    font-family: Josefin Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

#testimonials p {
    color: #535353;
    font-family: Work Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.testimonial {
    padding-top: 6rem;
    justify-content: space-around;
}

.testimonial_header {
    display: flex;
    align-items: center;
    margin: 1em 0;
}

.testimonial_header>span {
    margin-right: 1em;
}

#testimonials .background>div {
    position: absolute;
}

#testimonials .background>.one {
    left: 0;
    top: 0;
}

#testimonials .background>.two {
    right: 285px;
    top: 0px;
}

#testimonials .background>.three {
    right: 0;
    top: 0;
}

#testimonials .background>.four {
    right: 60px;
    top: 215px;
}

#paper-airplane {
    margin-top: 4rem;
    margin-left: 4rem;
}

.padding-left-6 {
    padding-left: 6rem;
}

.border_round_white {
    border-color: #fff;
    border-width: .5rem;
    border-style: solid;
    border-radius: 400px;
}

.centered {
    align-items: center;
}

.margin-top-small {
    margin-top: 1em;
}

.margin-bottom-small {
    margin-bottom: 1em;
}

#mobile_drawer {
    display: none;
}

#mobile_list {
    display: none;
}

#mobile_testimonails {
    display: none;
}


.quote_svg {
    width: 80px;
    height: 80px;
}

#content_image>img {
    width: 450px;
}

#header {
    padding: 0;
}

#about_text>p {
    width: 515px;
}

.image-slider {
    position: relative;
    display: inline-block;
    line-height: 100;
}

/* Could use a pseudo-element, but they’re currently
   super buggy. See: http://dabblet.com/gist/ab432c3f6a8f672cd077 */
.image-slider>div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 25px;
    max-width: 100%;
    overflow: hidden;
    resize: horizontal;
}

/* Cross-browser resizer styling */
.image-slider>div:before {
    content: '';
    position: absolute;
    right: -24;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background: #fafafa;
    border: solid 1px #000;
    background-clip: content-box;
    cursor: ew-resize;
}

.image-slider img {
    user-select: none;
    max-width: 400px;
}

#mobile_testimonails .slick-slide {
    margin: 0 auto;
}

.testimonial_slider_mobile {
    max-width: 400px;
    height: 500px;
    max-height: 500px;
    text-align: center;
}

.before,
.after {
    position: relative;
}

.pswp__zoom-wrap {
    position: relative;
}

.before-caption::after {
    content: 'Before';
    font-size: 2em;
    color: #fafafa;
    display: block;
    position: absolute;
    width: 150px;
    height: 55px;
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    right: 0;
    padding: 15px;
}

.after-caption::after {
    content: 'After';
    font-size: 2em;
    color: #fafafa;
    display: block;
    position: absolute;
    width: 150px;
    height: 55px;
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    right: 0;
    padding: 15px;
}

.image-grid {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
}

.image-grid {
    object-fit: cover;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    vertical-align: middle;
    border-radius: 5px;
}

.image-grid>div {
    max-width: 1000px;
}

.image-grid>div,
.image-grid img {
    width: 100%;
}

.image-grid>div.half {
    width: 50%;
    max-width: 500px;
}

.before-after-side {
    position: relative;
}

.before-after-top {
    position: relative;
}

.testimonial_slider {
    max-width: 1200px;
    width: 100%;
}


.before-after-side::before {
    content: 'Before';
    position: absolute;
    display: block;
    background-color: RGBA(255, 255, 255, .8);
    top: 0;
    left: 0;
    width: 50%;
    text-align: left;
    padding: .5em;
    color: #333;
    font-size: 1.5em;

}

.before-after-side::after {
    content: 'After';
    position: absolute;
    display: block;
    background-color: RGBA(255, 255, 255, .8);
    top: 0;
    left: 50%;
    width: 50%;
    text-align: left;
    padding: .5em;
    color: #333;
    font-size: 1.5em;
}

.before-after-top::before {
    content: 'Before';
    position: absolute;
    display: block;
    background-color: RGBA(255, 255, 255, .8);
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding: .5em;
    color: #333;
    font-size: 1.5em;

}

.before-after-top::after {
    content: 'After';
    position: absolute;
    display: block;
    background-color: RGBA(255, 255, 255, .8);
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding: .5em;
    color: #333;
    font-size: 1.5em;
}

.contact_layout {
    display: flex;
    flex-direction: row;
}

.contact_text {
    width: 40%;
    margin-top: 1em;

}

.contact_form {
    width: 60%;
}

.contact_text>p {
    width: 90%;
    line-height: 2em;
}



/** NEW CODE **/
/* 
    color: #5B7889;
    font-family: 'Josefin Sans';
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-bottom: dashed 2px rgba(204, 204, 204, .5);
    width: 100%;
    margin-bottom: .5em;
    padding-bottom: .25em; */

.font-josefin {
    font-family: 'Josefin Sans';
}

.font-dark {
    color: #5B7889;
}

.font-large {
    font-size: 40px;
}

.font-bold {
    font-weight: 500;
}

.font-uppercase {
    text-transform: uppercase;
}

.border-dashed {
    border-bottom: dashed 2px rgba(204, 204, 204, .5);
}

.width-full {
    width: 100%;
}

.margin-bottom-very-small {
    margin-bottom: .5em;
}

.padding-bottom-tiny {
    padding-bottom: .25em;
}

.font-lh-full {
    line-height: 100%;
}

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

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

#bubbles {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1100px;
    display: flex;
    margin: 48px auto;
}

#bubbles>div {
    position: relative;
    width: 50%;
}

#bubbles h3 {
    color: #7AA0BC;
    font-family: 'Josefin Sans';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin-bottom: .5em;
    padding-left: 2.5em;
    height: 45px;
}

#bubbles p {
    font-size: 12px;
    text-align: left;
}

.bubble_one {
    background-image: url(images/bubble_one.svg);
    padding-top: 4em;
    padding-left: 3em;
    background-size: 438px 335px;
    height: 400px;
    margin-top: -3em;
}

.bubble_two {
    padding-top: 7em;
    padding-left: 5em;
    background-image: url(images/bubble_two.svg);
    background-size: 435px 360px;
    margin-top: -4em;
}

.bubble_three {
    padding-bottom: 5em;
    padding-top: 10em;
    padding-left: 6em;
    height: 100%;
    margin-top: -9em;
    margin-left: -2em;
    background-image: url(images/bubble_two.svg);
    background-size: 480px 500px;
}

.bubble_four {
    background-size: 475px 370px;
    padding-top: 7em;
    padding-left: 5em;
    margin-top: -4em;
    padding-right: 1em;
    background-image: url(images/bubble_four.svg);
    background-position-x: 20px;
}

.bubble_two>p,
.bubble_one>p {
    max-width: 350px;
}

.bubble_three>p {
    max-width: 350px;
}

.bubble_four>p {
    max-width: 325px;
}

.bubble_one>h3 {
    background-image: url(images/chat_icon.png);
    background-repeat: no-repeat;
}

.bubble_two>h3 {
    background-image: url(images/consult.png);
    background-repeat: no-repeat;
}

.bubble_three>h3 {
    background-image: url(images/quote.png);
    background-repeat: no-repeat;
    max-width: 300px;
}

.bubble_four>h3 {
    background-image: url(images/rocket.png);
    background-repeat: no-repeat;
}

.bubble_one,
.bubble_two,
.bubble_three,
.bubble_four {
    background-repeat: no-repeat;
}

.testimonial_box {
    align-items: center;
    justify-content: space-between;
}

.space-between {
    justify-content: space-between;
}

.testimonial_icon {
    border-radius: 200px;
    border: solid 1em #fafafa;
    width: 375px;
    height: 375px;
}

.testimonial_text {
    width: 50%;
    padding: 2em;
}

.testimonial_text p {
    text-align: justify;
}

.testimonial_text h3 {
    /* Everything has a place */
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    /* identical to box height */
    text-transform: capitalize;
    color: #5B7889;
    padding: 1em 0;
}

.testimonial_text h4 {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
    color: #7AA0BC;
    margin: 1em 0;
}


.testmonial_bubble {
    background-image: url(images/test_background.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 600px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school_icon {
    background-image: url(images/school_highlight.jpg);
    background-color: #fff;
    background-position-x: -75px;
    background-position-y: -30px;
}

.dental_icon {
    background-image: url(images/dental_highlight.jpg);
    background-size: 766px 345px;
    background-repeat: no-repeat;
    background-position-x: -155px;
}

.center_icon {
    background-image: url(images/center_highlight.jpg);
}

.homeowner_icon {
    background-image: url(images/homeowner_highlight.jpg);
    background-size: 377px 344px;
    background-repeat: no-repeat;
    background-position-x: -19px;
}

.hidden {
    display: none;
    ;
}

.before-caption::after {
    content: 'Before';
    background: rgba(255, 255, 255, .7);
    left: 0;
    height: 55px;
    top: 100%;
    color: #484848;
    padding: 12px;
    width: 125px;
}

.pswp__zoom-wrap:has(> div > video)>.pswp__img {
    display: none;
}


.after-caption::after {
    content: 'After';
    background: rgba(255, 255, 255, .7);
    left: 0;
    height: 55px;
    top: 100%;
    color: #484848;
    padding: 12px;
    width: 100px;
}

.work-gallery {
    display: inline-block;
    margin-right: 1em;
}

.work-gallery .icon-small {
    padding: 3.5em
}

.slick-slide {
    max-width: 1200px;
    height: auto;
}

.testimonial_box {
    height: auto;
}

.slick-track {
    height: auto;
}

.slick-prev:before,
.slick-next:before {
    color: rgb(66, 66, 66) !important;
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#testimonials,
#how {
    padding-top: 3em;
}


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

    body {
        font-family: 'Work Sans', sans-serif;

    }

    #mobile_testimonails {
        display: block;
    }

    .testimonial_image {
        display: block;
        max-width: 1000px;
        max-height: 700x;
        width: auto;
        height: auto;
    }

    #nav .header {
        display: flex;
        flex-direction: column;
        margin-right: 165px;
    }

    #nav .header>h2 {
        font-size: 1.1rem;

    }

    #nav .header>h1 {
        font-size: 1.5rem;
    }

    #content {
        flex-direction: column-reverse;
    }

    #nav .opener {
        display: block;
        color: #535353;
        text-decoration: none;
        font-size: 1.75rem;
    }

    #nav .opener>span {
        font-size: 48px;
    }

    #header {
        display: none;
    }

    #nav {
        display: flex;
        flex-direction: row;
        height: auto;
        min-height: 122px;
        flex-wrap: wrap-reverse;
        padding-left: 0rem;
        position: relative;
        vertical-align: middle;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background-position: right;
        flex-flow: row-reverse;
    }

    #nav .menu {
        margin-left: initial;
    }

    #nav .menu_list {
        position: absolute;
        right: 0;
        width: 100%;
        background: #fff;
        height: initial;
    }

    #nav .menu_list {
        display: none;
    }

    #nav .open {
        display: block;
        z-index: 999;
    }

    #nav .menu_list>li>a.link_button {
        color: #535353;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 1.75rem;
        font-style: normal;
        font-weight: 300;
        padding: auto;
        padding: initial;
        background: initial;
    }

    body {
        padding: 1rem;
    }

    .padding-sides-medium {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .padding-sides-large {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .padding-sides-huge {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #content>#content_text {
        margin-top: 1rem;
    }

    .margin-bottom-large {
        margin-bottom: 1rem;
    }

    #about {
        position: relative;
        display: block;
    }

    #about>#about_image {
        position: relative;
        overflow: hidden;
        height: 250px;
        padding: 0;
    }

    #about>#about_image>img {
        height: 300px;
        object-fit: cover;
        object-position: 100% 48%;
    }

    #about_text>p {
        width: 100%;
    }

    #about>#about_text {
        align-items: center;
        margin: 1rem 0;
        padding: 0;
    }

    #service-list {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }



    #drawer {
        display: none;
    }

    #mobile_drawer {
        display: block;
    }

    #mobile_list h3 {
        vertical-align: middle;
        background-repeat: no-repeat;
        padding-left: 3rem;
        font-size: 1rem;
        min-height: 42px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        line-height: 42px;
    }

    .chat_bg {
        background-image: url(images/chat_icon.png);
    }

    .consult_bg {
        background-image: url(images/consult.png);
    }

    .quote_bg {
        background-image: url(images/quote.png);
    }

    .rocket_bg {
        background-image: url(images/rocket.png);
    }

    section {
        margin-top: 1rem;
    }

    #page-wrapper section h2 {
        font-size: 30px;

    }

    #why {
        flex-direction: column;
    }

    #content_image>img {
        height: 300px;
        object-fit: cover;
        object-position: 100% 80%;
        width: 100%;
    }

    #mobile_drawer {
        width: 100%;
    }

    #mobile_list {
        display: block;
    }

    #mobile_drawer>img {
        height: 150px;
        object-fit: cover;
        object-position: 100% 56%;
        width: 100%;
    }

    #testimonials {
        height: auto;
    }

    #testimonials h3 {
        font-size: 24px;
    }

    #testimonials>.background {
        display: none;
    }

    #testimonials .testimonial {
        padding: initial;
    }

    #testimonials .testimonial>div>p {
        margin-top: 1rem;
    }

    .quote_svg {
        width: 64px;
        height: 64px;
    }

    .slick-dots li button:before {
        font-size: 20px;
        line-height: 20px;
    }

    .testimonial_box {
        margin-top: 3em;
        height: auto;
    }

    #contact .row {
        flex-direction: column;
    }

    #paper-airplane {
        display: none;
    }

    #service-list>li {
        flex: 0 0 33%;
        margin: 0;
        font-size: 1.25em;
        margin: 1em 0;
    }

    #service-list>li>span {
        background-size: 45px;
        height: 5em;
        width: 5em;
    }

    ` #about {
        padding: 2em 0;
    }

    .bubble_one,
    .bubble_two,
    .bubble_three,
    .bubble_four {
        background: none;
        padding: 0;
        margin: 0;
        height: auto;
        padding: 1em 0em;
    }

    #bubbles p {
        font-size: 13px;
        text-align: justify;
    }

    #bubbles>div {
        padding: 1em;
        width: 100%;
        margin: 0;
    }

    #bubbles {
        flex-direction: column;
        margin: 0;
    }

    .bubble_two>p,
    .bubble_one>p,
    .bubble_three>p,
    .bubble_four>p {
        max-width: 100%;
    }

    body {
        font-size: 16px;
    }

    .margin-bottom-medium {
        margin-bottom: 1em;
    }

    #how {
        padding-bottom: 3em;
    }

    #why :nth-child(1) {
        order: 1;
    }

    #why :nth-child(2) {
        order: 3;
    }

    #why :nth-child(3) {
        order: 2;
    }

    #why_image {
        height: auto;
        width: 100%;
    }

    #why>h2 {
        text-align: center;
    }

    #why>#why_image>img {
        object-fit: cover;
        width: 100%;
        height: 200px;
    }

    .testmonial_bubble {
        background: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
    }

    .testimonial_slider {
        width: 100%;
    }

    .testimonial_box {
        flex-direction: column;
        margin-top: 1em;
    }

    .testimonial_text {
        order: 2;
        width: 100%;
    }

    .testimonial_icon {
        border-radius: 3px;
        border: solid 2px #fafafa;
        width: 100%;
        height: 200px;
    }

    .testimonial_quote {
        display: none;
    }

    .homeowner_icon {
        background-size: initial;
    }
}