/* CSS Document */

/* popup */


#popup {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100000;
    transition: .5s;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.popup-bg {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background-color: rgba(0,0,0,.7);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.popup-box {
    max-width: 800px;
    margin: 20px;
    z-index: 90;
    background: #dff1f5;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    transition: .5s;
    transition-delay: .5s;
    text-align: center;
    max-height: 80vh;
    overflow-y: auto;
}

.hidden-popup .popup-box {
    opacity: 0;
    transform: translatey(50px);
}

.visible-popup .popup-box {
    opacity: 1;
    transform: translatey(0px);
}

.hidden-popup {
    opacity: 0;
    pointer-events: none;
}

.visible-popup {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    color: #fff;
    background: red;
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin-left: auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-box img {
    max-width: 200px;
    margin-inline: auto;
    display: block;
}

.popup-title {
    color: var(--blue);
     font-style: italic;   
    font-size: 22px;
}

.stars i {
    color: #f9ca00;
}

.popup-box p {
    margin-block: 10px;
    margin-inline: auto;
    max-width: 650px;
    line-height: 1.1;
}
/* end popup */

.surface-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.surface-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.surface-content {
    position: relative;
    height: 100%;
}

.surface-title {
    font-family: "Kanit-Bold";
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1.13px;
    font-size: 45px;
    line-height: 50px;
    margin: 0 0 80px;
}

    .surface-black {
        color: #121523;
    }

    .surface-pink {
        color: #F43C8B;
    }

    .surface-blue {
        color: #41599F;
    }

.surface-link-flex {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.surface-link {
    text-align: center;
    display: inline-block;
    font-family: "Kanit-Bold";
    border: 3px solid #F43C8B;
    color: #121523;
    letter-spacing: -0.8px;
    font-size: 32px;
    padding: 2px 0;
    width: 242px;
}

    .surface-link:first-child {
        margin-right: 36px;
    }

    .surface-link:hover {
        background: #F43C8B;
        color: #fff;
    }

/* Hero */

#hero {
    position: relative;
}

#hero .surface-background {
    background: rgba(65, 89, 159, 80%);
}

#hero .surface-background img {
    mix-blend-mode: multiply;
}

#hero .wrap {
    max-width: 781px;
}

#hero-flex {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 938px;
}

#hero-flex h2 {
    color: white;
}

#hero-title {
    font-family: "Kanit-Bold";
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2.38px;
    font-size: 95px;
    line-height: 90px;
    margin: 0 0 44px;
}

#hero p {
    font-family: "Kanit-Bold";
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1.13px;
    font-size: 45px;
    line-height: 50px;
    margin: 0 0 44px;
}

#hero .surface-link-flex {
    justify-content: center;
}

.hero-link {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 40%);
    color: #fff;
}

/* Quote */

#quote {
    background: #41599F;
    padding: 33px 0;
    text-align: center;
}

#quote .surface-title {
    margin: 0 0 10px;
}

#quote p {
    font-family: "Kanit-Regular";
    color: #fff;
    letter-spacing: -0.6px;
    font-size: 24px;
    line-height: 28px;
    margin: 20px auto;
}

/* About */

#about-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 155px 0;
}

#about-left {
    width: 55%;
    padding-right: 82px;
}

#about-title {
    font-size: 72px;
    line-height: 75px;
    margin: 0 0 45px;
}

#about-left p {
    font-family: "Kanit-Regular";
    color: #121523;
    letter-spacing: -0.8px;
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 45px;
}

#about-right {
    order: 1;
    width: 45%;
}

#about-right img {
    object-fit: cover;
    width: 100%;
    height: 765px;
}

/* What */

#what {
    text-align: center;
    position: relative;
    color: white;
    font-weight: 600;
}

#what .surface-background {
    background: rgba(65, 89, 159, 80%);
}

#what .surface-background img {
    mix-blend-mode: multiply;
}

#what p {
    font-family: "Kanit-Regular";
    color: #fff;
    letter-spacing: -0.6px;
    font-size: 24px;
    line-height: 28px;
    margin: 20px auto;
	flex-grow: 1;
    }

#what .surface-content {
    padding: 72px 0;
}

#what .surface-title {
    margin: 0 0 10px;
}

#what-mobile {
    display: none;
}

#what .soliloquy-outer-container.soliloquy-carousel,
#what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
#what .soliloquy-container .soliloquy-viewport,
#what .soliloquy-container .soliloquy-wrap,
#what .soliloquy-container .soliloquy-item,
#what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
#what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
#what .soliloquy-fc-caption {
    height: 492px !important;
}

.soliloquy-container .soliloquy-caption {
    display: block !important;
}

#what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
    text-align: left;
    text-shadow: none;
    background: rgba(65, 89, 159, 70%);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.16);
    border: 4px solid #F43C8B;
    padding: 0 40px;
}

#what .soliloquy-fc-caption {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#what .soliloquy-fc-title {
    font-family: "Kanit-Bold";
    color: #fff;
    background: linear-gradient(180deg, rgba(244,60,139,1) 0%, rgba(244,60,139,1) 50%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    font-size: 32px;
    line-height: 36px;
    width: 251px;
    margin: 0 0 14px;
}

    #what .soliloquy-fc-title::after {
        content: '.';
    }

#what .soliloquy-fc-content p {
    font-family: "Kanit-Bold";
    color: #fff;
    letter-spacing: -0.6px;
    font-size: 24px;
    line-height: 28px;
    margin: 0;
}

#what .soliloquy-fc-read-more {
    text-align: right;
    display: block;
    margin: 14px 0 0;
}

/* Remodeling */
#remodeling {
    background: white;
    padding: 92px 0;
    text-align: center;
}

#remodel-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

#remodel-left {
	width: 50%;
}

#remodeling .surface-title {
    margin: 0 0 10px;
    color: black;
}

#remodeling p {
    font-family: "Kanit-Regular";
    color: black;
    letter-spacing: -0.6px;
    font-size: 24px;
    line-height: 28px;
    margin: 20px auto;
}

#remodel-right {
	order: 1;
	width: 45%;
}

#remodel-right p {
	margin: 0;
}

#remodel-right iframe {
	width: 100%;
	height: 450px;
}

/* NEWER services section */

#services {
    display: flex;
    flex-wrap: wrap;
}

#services li {
    width: calc(50% - 40px);
    margin: 20px;
    padding: 40px 20px;
    background: rgba(65, 89, 159, 70%);
    border: 4px solid #F43C8B;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-title {
    color: white;
    font-weight: bold;
    font-family: 'Kanit-Bold';
    text-transform: uppercase;
    margin-bottom: 0px;
}

.service-link {
    font-family: 'Kanit-Bold';
    color: white;
    font-size: 24px;
}

.service-link:hover {
    color: #F43C8B;
}


/* Home Advisor */

#home-advisor {
    text-align: center;
    background: #E9E9E9;
}

#home-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 136px 0;
}

#home-left {
    width: 25%;
}

#bbb {
	display: block;
	margin: 0 0 20px;
}

#bbb img {
	width: 315px;
}

#home-left ul {
    width: 375px;
    float: right;
}

#advisor-items li {
    display: inline-block;
    vertical-align: middle;
    width: 160px;
}

    #advisor-items li {
        margin: 12px;
    }

#advisor-items img {
    object-fit: contain;
    height: 185px;
}

#home-right {
    width: 70%;
}

#home-right p {
    margin: 0;
}

#home-right iframe {
    height: 390px;
    border: 0;
}

#home-right iframe .horizontal.both .rating-container {
    max-width: 220px !important;
    width: 100% !important;
} 


#home-right iframe .horizontal.both .container ~ .container {
    max-width: 450px !important;
    width: 100%!important;
}

/* Why */

#why {
    text-align: center;
    background: #41599F;
    padding: 74px 0;
}

#why-items li {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    color: white;
    font-family: "Kanit-Regular";
    font-size: 22px;
}

#why-items img {
    margin: 0 0 53px;
}

.why-title {
    text-transform: none;
    font-size: 33px;
    line-height: 34px;
    margin: 0 !important;
}

.why-title .surface-white {
    display: block;
}

/* Contact */

#contact {
    text-align: center;
    padding: 108px 0;
}

#contact-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contact-left {
    width: 45%;
}

#contact-left iframe {
    width: 100%;
    height: 100vh;
}

#contact-left p {
    margin: 0;
}

#contact-right {
    text-align: left;
    width: 55%;
    padding-left: 77px;
}

#contact-right p:first-child {
    height: 0;
    margin: 0;
}

.gfield_label {
    font-family: "Kanit-Bold";
    color: #121523;
    font-size: 34px !important;
    line-height: 39px;
    margin: 0;
}

.gform_wrapper input,
.gform_wrapper textarea {
    border: 1px solid #121523;
    box-shadow: inset 3px 3px 6px rgba(18, 21, 35, 0.2);
    padding: 13px 8px !important;
}

.gform_wrapper textarea {
    height: 254px !important;
}

.gform_footer.top_label {
    border-top: 4px solid #121523;
    justify-content: flex-end;
    margin: 38px 0 0 !important;
    padding: 62px 0 0 !important;
}

.gform_footer.top_label input {
    border: 0;
    box-shadow: none;
    padding: 7px 55px !important;
}

#contact-right p:last-of-type {
	margin: 0;
}

#marketsharpmFormDiv {
	margin: 0 0 28px;
}

#marketsharpmFormDiv p {
    margin: 0 0 14px;
}

#marketsharpmFieldSet {
    border: 0 !important;
    padding: 0 !important;
}

#marketsharpmFormDiv label {
    font-family: "Kanit-Bold";
    color: #121523;
    font-size: 34px !important;
    line-height: 39px;
    margin: 0;
}
#marketsharpmFormDiv input,
#marketsharpmFormDiv textarea {
    border: 1px solid #121523;
    box-shadow: inset 3px 3px 6px rgba(18, 21, 35, 0.2);
    padding: 13px 8px !important;
}
#marketsharpmFormDiv .submit {
    text-align: right;
    margin: 0;
}

#marketsharpmFormDiv #SubmitButton {
    border: 0;
    box-shadow: none;
    padding: 7px 55px !important; 
}

#marketsharpmFormDiv label.error {
    color: red;
    float: none;
    display: inline;
    margin-left: 0.5em;
}
#marketsharpmFormDiv p input.error {
    background-color: #FFFFD5;
    border-bottom-color: red;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-left-color-ltr-source: physical;
    border-left-color-rtl-source: physical;
    border-left-color-value: red;
    border-left-style-ltr-source: physical;
    border-left-style-rtl-source: physical;
    border-left-style-value: solid;
    border-left-width-ltr-source: physical;
    border-left-width-rtl-source: physical;
    border-left-width-value: 2px;
    border-right-color-ltr-source: physical;
    border-right-color-rtl-source: physical;
    border-right-color-value: red;
    border-right-style-ltr-source: physical;
    border-right-style-rtl-source: physical;
    border-right-style-value: solid;
    border-right-width-ltr-source: physical;
    border-right-width-rtl-source: physical;
    border-right-width-value: 2px;
    border-top-color: red;
    border-top-style: solid;
    border-top-width: 2px;
	border-right-color: red;
    border-right-style: solid;
    border-right-width: 2px;
	border-left-color: red;
    border-left-style: solid;
    border-left-width: 2px;
    color: red;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}
#marketsharpmFormDiv div.error {
    text-align: center;
    color: red;
}
#marketsharpmFormDiv .hidden {
    display: none;
}

/* Responsive */

@media (max-width: 1920px) {

/* Hero */
    
    #hero-flex {
        height: 898px;
    }  
}

@media (max-width: 1750px) {

/* About */
    
    #about-left p {
        letter-spacing: 0.8px;
        font-size: 28px;
        line-height: 34px;
    }

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 532px !important;
    }  
}

@media (max-width: 1650px) {

/* Hero */
    
    #hero-flex {
        height: 858px;
    }

/* About */
    
    #about-title {
        font-size: 68px;
        line-height: 71px;
    }
    
    #about-left p {
        font-size: 24px;
        line-height: 30px;
    }  

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 612px !important;
    }
    
    #what .soliloquy-fc-content p {
        letter-spacing: 0.6px;
    } 

/* Home */

	#home-left {
	    width: 30%;
	}
	
	#home-right {
	    width: 67%;
	}	
}

@media (max-width: 1550px) {

/* Hero */
    
    #hero-flex {
        height: 818px;
    }
}

@media (max-width: 1440px) {

/* Hero */
    
    #hero-flex {
        height: 778px;
    } 

/* About */

    #about-flex {
        padding: 115px 0;
    }
    
    #about-title {
        font-size: 64px;
        line-height: 67px;
    }
    
    #about-left p {
        font-size: 20px;
        line-height: 26px;
    }
    
    #about-right img {
        height: 725px;
    }  

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 532px !important;
    }
    
    #what .soliloquy-fc-content p {
        font-size: 20px;
        line-height: 24px;
    }

/* Remodeling */
	
	#remodel-right iframe {
		height: 350px;
	}
	
/* Home */

	#home-left {
	    width: 31%;
	}

	#bbb img {
	    width: 335px;
	}	
	
	#home-right {
	    width: 65%;
	}	 
}

@media (max-width: 1350px) {

/* About */

    #about-flex {
        padding: 75px 0;
    }
    
    #about-left {
        padding-right: 62px;
    }
    
    #about-title {
        font-size: 60px;
        line-height: 63px;
    }     

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 492px !important;
    }
    
    #what .soliloquy-fc-title {
        font-size: 28px;
        line-height: 32px;
        width: 224px;
    }
    
    #what .soliloquy-fc-content p {
        letter-spacing: 1px;
        font-size: 18px;
        line-height: 22px;
    }   

/* Remodeling */
	
	#remodeling .surface-title {
	    font-size: 40px;
	    line-height: 45px;
	}
	
	#remodeling p {
	    font-size: 20px;
	    line-height: 24px;
	}
	
	#remodel-right iframe {
		height: 350px;
	}	

/* Contact */

    #contact {
        padding: 78px 0;
    }

    #contact-right {
        text-align: left;
        width: 55%;
        padding-left: 67px;
    }   
}

@media (max-width: 1250px) {

/* About */
    
    #about-left {
        width: 50%;
        padding-right: 42px;
    }
    
    #about-title {
        font-size: 45px;
        line-height: 50px;
        margin: 0 0 30px;
    }
    
    #about-left p {
        margin: 0 0 30px;
    }

    .about-link {
        font-size: 24px;
        width: 172px;
    }
    
    #about-right {
        width: 50%;
    }
    
    #about-right img {
        height: 685px;
    }    

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 452px !important;
    }
    
    #what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
        padding: 0 30px;
    }
    
    #what .soliloquy-fc-content p {
        font-family: "Kanit-Regular";
        font-size: 16px;
        line-height: 20px;
    } 

/* Remodeling */
	
	#remodeling {
	    padding: 72px 0;
	}
	
	#remodeling .surface-title {
	    font-size: 35px;
	    line-height: 40px;
	}
	
	#remodel-right iframe {
		height: 300px;
	}		

/* Home */

	#home-left {
	    width: 37%;
	}
	
	#home-right {
	    width: 60%;
	}	 

/* Why */
    
    .why-title {
        font-size: 29px;
        line-height: 30px;
    } 

/* Contact */

    #contact-left {
        width: 50%;
    }
    
    #contact-right {
        width: 50%;
        padding-left: 47px;
    }
    
    .gfield_label {
        font-size: 30px !important;
        line-height: 35px;
    }
    
    .gform_footer.top_label {
        padding: 42px 0 0 !important;
    }     

    #marketsharpmFormDiv label {
        font-size: 30px !important;
        line-height: 35px;
    }    
}

@media (max-width: 1150px) {

/* Hero */
    
    #hero .wrap {
        max-width: 690px;
    }
    
    #hero-title {
        font-size: 85px;
        line-height: 80px;
        margin: 0 0 34px;
    }
    
    #hero p {
        font-size: 40px;
        line-height: 45px;
        margin: 0 0 34px;
    }  

/* About */
    
    #about-left p {
        font-size: 18px;
        line-height: 24px;
    }   

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 452px !important;
    }
    
    #what .soliloquy-fc-title {
        font-size: 24px;
        line-height: 28px;
        width: 190px;
    }  

/* Remodeling */
	
	#remodeling p {
	    font-size: 18px;
	}	

/* Home Advisor */

    #home-flex {
        padding: 76px 0;
    }

	#home-left {
	    width: 38%;
	}

	#bbb img {
	    width: 300px;
	}	

	#advisor-items li {
	    width: 120px;
	}
		
	#home-right {
	    width: 60%;
	}

/* Why */
    
    .why-title {
        font-size: 25px;
        line-height: 26px;
    } 

/* Contact */
    
    .gfield_label {
        font-size: 26px !important;
        line-height: 31px;
    }    

    #marketsharpmFormDiv label {
        font-size: 26px !important;
        line-height: 31px;
    }   
}

@media (max-width: 1024px) {

.surface-title {
    margin: 0 0 40px;
}
    
.surface-link-flex {
    justify-content: center;
}
    
/* Hero */
    
    #hero .wrap {
        max-width: 90%;
    }
    
    #hero-flex {
        height: 738px;
    } 

/* Quote */

    #quote {
        text-align: center;
    }
    
    #quote p {
        width: auto;
    }

/* About */

    #about-flex {
        flex-direction: column;
    }
    
    #about-left {
        text-align: center;
        width: 100%;
        padding: 0;
    }
    
    #about-left p {
        font-size: 24px;
        line-height: 28px;
    }

    .about-link {
        font-size: 32px;
        width: 242px;
    }
    
    #about-right {
        order: 0;
        width: 100%;
        padding: 0 0 33px;
    }
    
    #about-right img {
        height: 645px;
    } 

/* What */
    
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, 
    #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 532px !important;
    }

    #what .soliloquy-container .soliloquy-item {
        width: 3% !important;
    }
    
    #what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
        padding: 0 40px;
    }
    
    #what .soliloquy-fc-title {
        font-size: 32px;
        line-height: 36px;
        width: 251px;
    }
    
    #what .soliloquy-fc-content p {
        letter-spacing: 0px;
        font-size: 22px;
        line-height: 26px;
    }  

/* Home Advisor */
    
    #home-flex {
        flex-direction: column;
    }
    
    #home-left {
        width: 100%;
    }

    #home-left ul {
        width: 100%;
    }
    
    #advisor-items li {
        width: 24%;
        margin: 0 0 24px;
    }
    
    #home-right {
        width: 100%;
    }  

/* Why */
    
    #why-items img {
        margin: 0 0 33px;
    }  

/* Contact */

    #contact-flex {
        flex-direction: column;
    }
    
    #contact-left {
        width: 100%;
        margin: 0 0 30px;
    }

    
#contact-left iframe {
    width: 100%;
    height: 450px;
}
    
    #contact-right {
        width: 100%;
        padding-left: 0;
    }
    
    .gfield_label {
        font-size: 28px !important;
        line-height: 33px;
    }
    
    .gform_footer.top_label {
        justify-content: center;
    }  

    #marketsharpmFormDiv label {
        font-size: 28px !important;
        line-height: 33px;
    }

    
}

@media (max-width: 900px) {

/* Hero */
    
    #hero-flex {
        height: 698px;
    }
    
    #hero-title {
        letter-spacing: -2.38px;
        font-size: 75px;
        line-height: 70px;
        margin: 0 0 34px;
    }

/* About */

    #about-right img {
        height: 605px;
    }

/* What */
    
    #what .soliloquy-fc-content p {
        font-size: 20px;
        line-height: 24px;
    }  

    #services li {
        width: calc(100% - 40px);
    }

/* Why */
    
    #why-items li {
        width: 40%;
    }

        #why-items li:first-child,
        #why-items li:nth-child(2) {
            margin: 0 0 30px;
        }
    
    #why-items img {
        margin: 0 0 33px;
    }
    
    .why-title {
        font-size: 33px;
        line-height: 34px;
    }   

/* Remodeling */
	
	#remodel-flex {
		flex-direction: column;
		gap: 20px 0;
	}
	
	#remodel-left {
		width: 100%;
	}
	
	#remodel-right {
		order: 0;
		width: 100%;
	}
	
	#remodel-right iframe {
		height: 450px;
	}		
}

@media (max-width: 768px) {

/* Hero */
    
    #hero .wrap {
        max-width: 85%;
    }
    
    #hero-flex {
        height: 658px;
    }
    
    #hero-title {
        font-size: 65px;
        line-height: 60px;
    }
    
    #hero p {
        font-size: 30px;
        line-height: 35px;
    }  

/* About */

    #about-right img {
        height: 565px;
    } 

/* What */
    
    #what .surface-title {
        margin: 0 0 32px;
    }

    #what .soliloquy-container .soliloquy-wrap {
        width: 100% !important;
    }

    #what .soliloquy-container .soliloquy-item {
        width: 100% !important;
    }
    
    #what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
        text-align: center;
    }
    
    #what .soliloquy-fc-title {
        margin: 0 auto 14px;
    }
    
    #what .soliloquy-fc-content p {
        font-size: 24px;
        line-height: 28px;
    }
    
    #what .soliloquy-fc-read-more {
        text-align: center;
    }    

/* Remodeling */
	
	#remodel-right iframe {
		height: 400px;
	}	
	
/* Home Advisor */
    
    #advisor-items li {
        width: 34%;
    }  

/* Why */
    
    #why-items li {
        display: inline-block;
        vertical-align: bottom;
        width: 49%;
    }  
	
	/* popup */

    .popup-box p {
        font-size: 16px;
    }
}

@media (max-width: 660px) {

.surface-link-flex {
    flex-direction: column;
    align-items: center;
}

.surface-link {
    letter-spacing: 0px;
    font-size: 28px;
    padding: 0px 0;
    width: 100%;
}
       
    .surface-link:first-child {
        margin: 0 0 10px;
    }
    
/* Hero */
    
    #hero-flex {
        height: 618px;
    }
    
    #hero-title {
        letter-spacing: -1.38px;
        font-size: 60px;
        line-height: 55px;
        margin: 0 0 26px;
    }
    
    #hero p {
        letter-spacing: 0px;
        font-size: 30px;
        line-height: 35px;
        margin: 0 0 26px;
    }

/* About */

    .about-link {
        font-size: 28px;
        width: 100%;
    }

    #about-right img {
        height: 525px;
    }  

/* What */
    
    #what .soliloquy-fc-title {
        font-size: 28px;
        line-height: 32px;
    }  

/* Why */
    
    #why-items img {
        padding: 0 30px;
    }
    
    .why-title {
        font-size: 28px;
        line-height: 29px;
    }   


/* Remodeling */
	
	#remodeling {
	    padding: 62px 0;
	}
	
	#remodeling .surface-title {
	    font-size: 30px;
	    line-height: 35px;
	}
	
	#remodel-right iframe {
		height: 350px;
	}	
	
/* Contact */
    
    .gform_footer.top_label {
        border-top: 4px solid #121523;
        justify-content: center;
        margin: 38px 0 0 !important;
        padding: 42px 0 0 !important;
    }
    
    .gform_footer.top_label input {
        border: 0;
        box-shadow: none;
        width: 100%;
        padding: 7px 10px !important;
        line-height: normal !important;
        min-height: auto !important;
    }  

    #marketsharpmFormDiv #SubmitButton {
        text-align: center;
        border: 0;
        box-shadow: none;
        width: 100%;
        padding: 7px 10px !important;
        line-height: normal !important;
        min-height: auto !important;
    }    
}

@media (max-width: 550px) {

.surface-title {
    letter-spacing: -0.13px;
}
    
.surface-link {
    font-size: 24px;
}
    
/* Hero */
    
    #hero-flex {
        height: 538px;
    }
    
    #hero-title {
        letter-spacing: -0.38px;
        font-size: 50px;
        line-height: 45px;
        margin: 0 0 22px;
    }
    
    #hero p {
        font-size: 25px;
        line-height: 30px;
        margin: 0 0 22px;
    } 

/* About */

    .about-link {
        font-size: 24px;
    }
    
    #about-right img {
        height: 445px;
    } 

/* What */
        
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 552px !important;
    }
    
    #what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
        padding: 0 30px;
    } 

    #services li {
        margin: 10px 0px;
        width: 100%;
        padding: 20px;
    }

    #services p {
        font-size: 18px;
    }

    .service-title {
        font-size: 22px;
    }

/* Remodeling */
	
	#remodeling .surface-title {
	    font-size: 25px;
	    line-height: 30px;
	}
	
	#remodeling p {
	    font-size: 16px;
	}
	
	#remodel-right iframe {
		height: 300px;
	}		

/* Home Advisor */
    
    #advisor-items li {
        /* width: 45%; */
    }

    #advisor-items img {
        height: 145px;
    }  

/* Why */
    
    #why-items li {
        width: 100%;
        margin: 0 0 30px;
    }

        #why-items li:last-child {
            margin: 0;
        }  

/* Contact */

    .gfield_label {
        font-size: 24px !important;
        line-height: 29px;
    }
    
    .gform_wrapper textarea {
        height: 214px !important;
    }  

    #marketsharpmFormDiv label {
        font-size: 24px !important;
        line-height: 29px;
    }    
}

@media (max-width: 450px) {

.surface-link {
    font-size: 20px;
}
    
/* Hero */
    
    #hero-flex {
        height: 498px;
    }
    
    #hero-title {
        font-size: 45px;
        line-height: 40px;
    }
    
    #hero p {
        font-size: 20px;
        line-height: 25px;
    }

/* Quote */
    
    #quote p {
        letter-spacing: 0px;
        font-size: 20px;
        line-height: 24px;
    }   

/* About */

    #about-flex {
        padding: 55px 0;
    }
    
    #about-left p {
        letter-spacing: 0px;
        font-size: 20px;
        line-height: 24px;
    }

    .about-link {
        font-size: 20px;
    }
    
    #about-right img {
        height: 365px;
    }   

/* What */
    
    #what .surface-content {
        padding: 52px 0;
    }

    #what .soliloquy-fc-title {
        background: none;
        -webkit-text-fill-color: #fff;
        color: #fff;
        width: 100%;
    }    
    
    #what .soliloquy-fc-content p {
        font-size: 20px;
        line-height: 24px;
    }

/* Remodeling */
	
	#remodeling {
	    padding: 42px 0;
	}
	
	#remodel-right iframe {
		height:200px;
	}	

/* Home Advisor */

    #home-flex {
        padding: 56px 0;
    }
    
    #advisor-items li {
        width: 49%;
    }  

/* Why */

    #why {
        text-align: center;
        background: #41599F;
        padding: 54px 0;
    }

/* Contact */

    #contact {
        padding: 58px 0;
    }
    
    #contact-left iframe {
        height: 420px;
    }
    
    .gfield_label {
        font-size: 20px !important;
        line-height: 25px;
    }   

    #marketsharpmFormDiv label {
        font-size: 20px !important;
        line-height: 25px;
    }    
}

@media (max-width: 350px) {

.surface-title {
    font-size: 40px;
    line-height: 45px;
}
    
/* Hero */
    
    #hero-title {
        font-size: 40px;
        line-height: 35px;
    }

/* About */

    #about-title {
        font-size: 40px;
        line-height: 45px;
    }
    
    #about-right img {
        height: 325px;
    } 

/* What */
        
    #what .soliloquy-outer-container.soliloquy-carousel,
    #what .soliloquy-container, #what .soliloquy-container .soliloquy-wrapper,
    #what .soliloquy-container .soliloquy-viewport,
    #what .soliloquy-container .soliloquy-wrap,
    #what .soliloquy-container .soliloquy-item,
    #what .soliloquy-container .soliloquy-caption.soliloquy-caption-bottom,
    #what .soliloquy-theme-base .soliloquy-caption-bottom .soliloquy-caption-inside,
    #what .soliloquy-fc-caption {
        height: 552px !important;
    }

    #what .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
        padding: 0 20px;
    }
    
    #what .soliloquy-fc-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    #what .soliloquy-fc-content p {
        font-size: 18px;
        line-height: 24px;
    }

/* Home Advisor */
    
    #advisor-items li {
        width: 100%;
    } 

/* Why */

    #why-items img {
        padding: 0 40px;
    }
    
    .why-title {
        font-size: 24px;
        line-height: 25px;
    } 

/* Contact */

    #contact-left iframe {
        width: 100%;
        height: 340px;
    }  
}