/*  Page styles  */
body{
    background-color: rgb(250,250,250);
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  HERO IMAGE CAPTIONS
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.featureSlider__titlewrapper {
    width: 90%;
    height: auto;
    margin: 0px 5%;
    padding: 3%;
    color: #fff;
    border: 1px rgba(255,255,255,0.3) solid;
    border-radius: 5px;
    position: relative;
    top: 40%;
    z-index: 2000;
}

.featureSlider__titlewrapper--toptitle {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;    
    font-weight: 300;
    font-size: calc(24px + (40 - 24) * ((100vw - 700px) / (1600 - 700)));
    margin-bottom: 1%;
}

.featureSlider__titlewrapper--bottomtitle {
    text-align: center;
    text-transform: lowercase;
    font-family: 'Raleway', sans-serif;    
    font-weight: 300;
    font-size: calc(16px + (28 - 16) * ((100vw - 700px) / (1600 - 700)));
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  HEADER
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.header_wrapper {
    width: 100%;
    height: 60px;
    padding: 0px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0.25);
    position: fixed;
    z-index: 20000;
    top: 0px;
    left: 0px;
}

.header_wrapper__menu_btn {
    width: 25%;
    padding-left: 2%;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: calc(16px + (28 - 16) * ((100vw - 700px) / (1600 - 700)));
    cursor: pointer;
}

.header_wrapper__menu_btn:hover {
    color: #8DC540;
}

.header_wrapper__menu_btn--caption {
    display: none;
}

.header_wrapper__menu_btn .fas {
    font-size: calc(28px + (36 - 28) * ((100vw - 700px) / (1600 - 700)));
    margin-right: 5%;
}

.header_wrapper__social_wrap {
    width: 25%;
    display: none;
    justify-content: center;
    align-items: center;
}

.social_btn a {
    color: #949496;
    margin: 0px 5px;
    font-size: calc(22px + (32 - 22) * ((100vw - 700px) / (1600 - 700)));
}

.social_btn a:hover {
    color: #8DC540;
}

.header_wrapper__contact_wrap {
    width: 35%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.header_wrapper__contact_wrap--tag {
    width: 100%;
    color: #fff;
    line-height: 0.8em;
    text-align: right;
    letter-spacing: -1px;
    font-size: calc(14px + (20 - 14) * ((100vw - 700px) / (1600 - 700)));
}

.header_wrapper__contact_wrap--number {
    width: 100%;
    color: #8DC540;
    text-align: right;
    letter-spacing: -1px;
    font-weight: 800;
    font-size: calc(18px + (28 - 18) * ((100vw - 700px) / (1600 - 700)));
}

.header_wrapper__quote_btn {
    width: 10%; 
    padding: 8px;
    background-color: #8DC540;
    border-radius: 5px;
    height: 70px;
    display: none;
    justify-content: space-between;
    align-items: center;
    color: #000;
    cursor: pointer;
    border: 1px #8DC540 solid;
}

.header_wrapper__quote_btn:hover {
    background-color: #000;
    color: #8DC540;
}

.header_wrapper__quote_btn .far {
    display: none;
    font-size: calc(26px + (32 - 26) * ((100vw - 700px) / (1600 - 700)));
}

.header_wrapper__quote_btn--caption_wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.header_wrapper__quote_btn--caption_top {
    width: 100%;
    line-height: 0.8em;
    font-size: calc(12px + (18 - 12) * ((100vw - 700px) / (1600 - 700)));
}

.header_wrapper__quote_btn--caption_bottom {
    width: 100%;
    font-weight: 800;
    letter-spacing: -2px;
    font-size: calc(24px + (32 - 24) * ((100vw - 700px) / (1600 - 700)));
}

.header_wrapper__logo {
    width: 30%;
    height: 90px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../images/Top-Logo.png");
    cursor: pointer;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  SUB PAGE HEADER
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.subpage_header {
    width: 100%;
    height: 200px;
    padding: 0px 4% 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.subpage_header_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.4);
}

.subpage_header_headline {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: calc(40px + (58 - 40) * ((100vw - 700px) / (1600 - 700)));
}

.subpage_header_subheadline {
    color: #fff;
    font-weight: 600;
    font-style: italic;
    margin-top: 10px;
    font-size: calc(16px + (22 - 16) * ((100vw - 700px) / (1600 - 700)));
}

.subpage-header_headline--small {
    width: 100%;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  TOP NAVIGATION
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.topmenu_wrapper {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(141,197,64,1);
    position: fixed;
    top: 60px;
    left: -100vw;
    z-index: 15000;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    opacity: 0;
}

.topmenu_wrapper--open {
    left: 0px;
    opacity: 1;
}

.menu_item {
    width: 80%;
    margin: 5px 10%;
    color: #fff;
    font-size: 2em;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 
}

.menu_item:hover {
    background-color: rgba(0,0,0,0.5);
}

.selected_menu {
    width: 80%;
    margin: 5px 10%;
    color: #000;
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  HOME PAGE
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.indexpage__topsection_wrap {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #fff;
    padding: 80px 5%;
    margin-top: calc(100vw * 0.5);
    display: flex;
    flex-direction: column;
}


.indexpage__midsection_wrap {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #6A7B76;
    padding: 0px 0% 80px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.indexpage__bottomsection_wrap {
    width: 100%;
    height: auto;
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
}

.indexpage__bottomsection_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.3);
}

.indexpage__bottomsection_btn {
    width: 100%;
    height: 60px;
    padding: 8px 12%;
    margin: 10px 0px;
    background-color: #000;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    line-height: 1.1em;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 2000;
}

.indexpage__bottomsection_btn:hover {
    transform: scale(1.1);
} 


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  SUB PAGE WRAPPER
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.page_wrapper {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #fff;
    padding: 50px 5% 80px;
    display: flex;
    flex-direction: column;
}

.page__bottomsection_wrap {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #fff;
    padding: 0px 5% 80px;
    color: #000;
    display: flex;
    flex-direction: column;
}

.half_page_wrapper {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: #fff;
    padding: 50px 5% 80px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.page_container_imageblock {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.page_container_half {
    width: 100%;
}

.page_container_imageblock--top {
    width: 100%;
    height: calc(100vw * 0.75);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 2px #fff solid;
}

.page_container_imageblock--bottom {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 2px #fff solid;
}

.page_container_imageblock--bottomwrap {
    width: 100%;
    height: calc(100vw * 0.75);
    display: flex;
    justify-content: space-around;
}

.page_container_contactblock {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

.page_container_contactblock--name {
    width: 100%;
    font-size: calc(22px + (26 - 22) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
}

.page_container_contactblock--address {
    width: 100%;
    font-size: calc(18px + (22 - 18) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 500;
}

.page_container_contactblock--phone {
    width: 100%;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
}


.page_container_formblock {
    width: 100%;
    height: auto;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  SERVICES PAGE
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.services_pagebtn__contact_btn {
    width: 70%;
    height: 90px;
    padding: 8px 12%;
    background-color: #8DC540;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
    cursor: pointer;
    margin-bottom: 50px;
}

.services_pagebtn__contact_btn:hover {
    background-color: #000;
    color: #fff;
} 

.services_pagebtn__contact_btn .far {
    font-size: 5em;
}

.services_pagebtn__contact_btn--caption_wrap {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_pagebtn__contact_btn--caption_top {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.5em;
    letter-spacing: -1px;
}

.services_pagebtn__contact_btn--caption_bottom {
    width: 100%;
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 0.8em;
    font-size: 2.5em;
}


.services_pagebtn__quote_btn {
    width: 70%;
    height: 90px;
    padding: 8px 12%;
    background-color: #8DC540;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
    cursor: pointer;
    margin-bottom: 50px;
}

.services_pagebtn__quote_btn:hover {
    background-color: #000;
    color: #fff;
} 

.services_pagebtn__quote_btn .far {
    font-size: 5em;
}

.services_pagebtn__quote_btn--caption_wrap {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_pagebtn__quote_btn--caption_top {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.5em;
    letter-spacing: -1px;
}

.services_pagebtn__quote_btn--caption_bottom {
    width: 100%;
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 0.8em;
    font-size: 2.5em;
}

.servicepage_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}    
    
.servicepage_block {
    width: 100%;
    height: auto;
    padding: 0px 0%;
    min-height: 500px;
    background-color: #000;
    display: flex;
    flex-direction: column;
}

.servicepage_block:nth-child(even) {
    background-color: #6A7B76;
}

.servicepage_block--image {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.servicepage_block--desc {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
}

.servicepage_block--title{
    width: 100%;
    height: auto;
    color: #fff;
    line-height: 1.1em;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: calc(26px + (34 - 26) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 300;
    margin: 10px 0px;
}

.servicepage_block--blurb, .servicepage_block--blurb p {
    color: #ddd;
    font-size: calc(14px + (16 - 14) * ((100vw - 700px) / (1600 - 700)));
    line-height: 1.4em;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  FAQ BLOCK
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.faq_wrapper {
    width: 100%;
    height: auto;
    displsy: flex;
    flex-direction: column;
}

.faq_block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px #ddd solid;
}

.faq_block--question {
    width: 100%;
    color: #3B3B3B;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
    font-size: calc(24px + (30 - 24) * ((100vw - 700px) / (1600 - 700)));
}

.faq_block--answerbox {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.faq_block--image {
    width: 100%;
    height: 220px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 15px;
}

.faq_block--answer {
    width: 100%;
    height: auto;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  PROJECTS PAGE 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.projectlist_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.projectlist_block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    z-index: 2000;
    cursor: pointer;
}

.projectlist_block--image:hover {
    background-size: 105%;
}

.projectlist_block--image {
    width: 100%;
    height: 280px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 5px 5px 0px 0px;
}

.projectlist_block--imagename {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 800;
    padding: 0px 2%;
    font-size: calc(20px + (24 - 20) * ((100vw - 700px) / (1600 - 700)));
    background-color: rgba(255,255,255,0.3);
}

.projectlist_block--wrapper {
    width: 100%;
    height: 190px;
    border-radius: 0px 0px 5px 5px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    padding: 3%;
    justify-content: space-between;
}

.projectlist_block--cat {
    width: 100%;
    color: #8DC540;
    font-size: calc(14px + (18 - 14) * ((100vw - 700px) / (1600 - 700)));
}

.projectlist_block--btn {
    width: 100%;
    height: auto;
    color: #8DC540;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    text-align: right; 
    cursor: pointer;
}

.projectlist_block--btn .far {
    margin-left: 5px;
}

.projectlist_block--btn:hover {
    color: #fff;
}

.projectlist_block--summary {
    width: 100%;
    height: 100px;
    color: #ddd;
    overflow: hidden;
    font-size: calc(15px + (16 - 15) * ((100vw - 700px) / (1600 - 700)));
    line-height: 1.2em;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  PROJECTS DETAILS PAGE 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.detail_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.detail_wrapper_imageside{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.detail_wrapper_mainimage {
    width: 100%;
    height: calc(100vw * 0.5);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.detail_wrapper_navblock {
    width: 100%;
    height: 50px;
    background-color: #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail_wrapper_navblock--prevbtn {
    width: 15%;
    text-align: center;
    font-size: calc(30px + (40 - 30) * ((100vw - 700px) / (1600 - 700)));
}

.detail_wrapper_navblock--prevbtn:hover {
    color: #8DC540;
    transform: scale(1.2);
}

.detail_wrapper_navblock--nextbtn {
    width: 15%;
    text-align: center;
    font-size: calc(30px + (40 - 30) * ((100vw - 700px) / (1600 - 700)));
}

.detail_wrapper_navblock--nextbtn:hover {
    color: #8DC540;
    transform: scale(1.2);
}

.detail_wrapper_navblock--caption {
    width: 60%;
    height: auto;
    text-align: center;
    font-size: calc(16px + (20 - 16) * ((100vw - 700px) / (1600 - 700)));
}
  
.detail_wrapper_navblock--piccaption {
    font-size: 0.7em;
    margin-right: 10px;
}


.detail_wrapper_textside {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.detail_wrapper_name {
    width: 100%;
    font-size: calc(24px + (28 - 24) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
    color: #000;
}

.detail_wrapper_cat     {
    width: 100%;
    font-size: calc(15px + (16 - 15) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
    color: #8DC540;
}

.detail_wrapper_moreinfo{
    width: 100%;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 500;
    font-style: italic;
    color: #444;
}

.detail_wrapper_details {
    width: 100%;
    height: auto;
    font-size: calc(15px + (16 - 15) * ((100vw - 700px) / (1600 - 700)));
    line-height: 1.2em;
    margin-top: 20px;
}

.detail_wrapper_testimonials_wrapper {
    width: 100%;
    height: auto;
    background-color: #D1E8B2;
    color: #000;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
    font-size: calc(15px + (16 - 15) * ((100vw - 700px) / (1600 - 700)));
}

.detail_wrapper_testimonial {
    line-height: 1.2em;
    font-style: italic;
}

#st-1 {
    z-index: 2000 !important;
}

.detail_wrapper_navwrapper {
    width: 100%;
    height: auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    z-index: 2100; 
}

.detail_wrapper_navwrapper--prevbtn {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8DC540;
    color: #000;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    margin: 5px 0px;
}

.detail_wrapper_navwrapper--prevbtn:hover {
    background-color: #000;
    color: #fff;
}

.detail_wrapper_navwrapper--prevbtn .fas {
    margin-right: 10px;
    font-size: calc(36px + (40 - 36) * ((100vw - 700px) / (1600 - 700)));
}

.detail_wrapper_navwrapper--nextbtn {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8DC540;
    color: #000;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    margin: 5px 0px;
}

.detail_wrapper_navwrapper--nextbtn:hover {
    background-color: #000;
    color: #fff;
}

.detail_wrapper_navwrapper--nextbtn .fas {
    margin-left: 10px;
    font-size: calc(36px + (40 - 36) * ((100vw - 700px) / (1600 - 700)));
}

.detail_wrapper_navwrapper--backbtn {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8DC540;
    color: #000;
    font-size: calc(18px + (20 - 18) * ((100vw - 700px) / (1600 - 700)));
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    margin: 5px 0px;
}

.detail_wrapper_navwrapper--backbtn:hover {
    background-color: #000;
    color: #fff;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  SERVICES BLOCK
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/

.services_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_block_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_block {
    width: 100%;
    min-height: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

.services_block__image {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services_block__title {
    width: 100%;
    height: 80px;
    padding: 0px 5%;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: calc(22px + (26 - 22) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services_block__blurb {
    width: 100%;
    height: auto;
    padding: 0px 5%;
    font-size: calc(16px + (18 - 16) * ((100vw - 700px) / (1600 - 700)));
}

.services_btn_wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.services_btn__contact_btn {
    width: 90%;
    height: 160px;
    padding: 8px 12%;
    margin: 10px;
    background-color: #8DC540;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
    cursor: pointer;
}

.services_btn__contact_btn:hover {
    transform: scale(1.1);
} 

.services_btn__contact_btn .far {
    font-size: 6em;
}

.services_btn__contact_btn--caption_wrap {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_btn__contact_btn--caption_top {
    width: 100%;
    line-height: 1.2em;
    font-size: 2em;
    letter-spacing: -1px;
}

.services_btn__contact_btn--caption_bottom {
    width: 100%;
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 0.8em;
    font-size: 3.5em;
}


.services_btn__quote_btn {
    width: 90%;
    height: 160px;
    padding: 8px 12%;
    margin: 10px;
    background-color: #8DC540;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
    cursor: pointer;
}

.services_btn__quote_btn:hover {
    transform: scale(1.1);
} 

.services_btn__quote_btn .far {
    font-size: 6em;
}

.services_btn__quote_btn--caption_wrap {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services_btn__quote_btn--caption_top {
    width: 100%;
    line-height: 1.2em;
    font-size: 2em;
    letter-spacing: -1px;
}

.services_btn__quote_btn--caption_bottom {
    width: 100%;
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 0.8em;
    font-size: 3.5em;
}

.services_btn__more_btn {
    width: 90%;
    height: 160px;
    padding: 8px 12%;
    margin: 10px;
    background-color: #000;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.services_btn__more_btn:hover {
    transform: scale(1.1);
} 

.services_btn__more_btn--icons {
    width: 35%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.8em;
}

.services_btn__more_btn--caption {
    width: 58%;
    display: flex;
    align-items: center;
    line-height: 1.1em;
    font-size: 1.8em;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------
/*  FOOTER
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/


.footer_wrapper {
    width: 100%;
    height: auto;
    position: relative;
    min-height: 325px;
    background-color: #CFCFCF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_wrapper__container {
    width: 100%;
    height: auto;
    padding: 30px 5%;
    display: flex;
    flex-direction: column;
}

.footer_wrapper__links_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer_wrapper__links_title {
    width: 100%;
    color: #000;
    font-size: calc(16px + (18 - 16) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
    text-align: center;
}

.foot_menu_item {
    width: 100%;
    color: #6A7B76;
    text-align: center;
    font-size: calc(16px + (18 - 16) * ((100vw - 700px) / (1600 - 700)));
}

.foot_menu_item:hover {
    color: #000;
}

.footer_wrapper__center_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer_wrapper__logo {
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../images/bottom-Logo.png");
}

.footer_wrapper__address {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 0px;
    color: #000;
    font-family: 'Raleway', sans-serif;    
    font-weight: 300;
    font-size: calc(18px + (24 - 18) * ((100vw - 700px) / (1600 - 700)));
}

.footer_wrapper__address--line {
    width: 100%;
    line-height: 1.4em;
    text-align: center;
}

.social_media_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_wrapper__testimonial_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    color: #000;
    z-index: 2000;
}

.footer_wrapper__testimonial_headline {
    width: 100%;
    font-size: calc(18px + (24 - 18) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.footer_wrapper__testimonial_blurbwrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer_wrapper__testimonial_blurbwrap .fas {
    width: 10%;
    text-align: center;
    font-size: calc(18px + (24 - 18) * ((100vw - 700px) / (1600 - 700)));
}

.footer_wrapper__testimonial_blurb {
    width: 100%;
    font-style: italic;
    line-height: 1.2em;
    font-size: calc(18px + (24 - 18) * ((100vw - 700px) / (1600 - 700)));
}

.footer_wrapper__testimonial_bottombwrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.footer_wrapper__testimonial_name {
    font-size: calc(14px + (20 - 14) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
}

.footer_wrapper__testimonial_btn {
    width: auto;
    padding: 8px 12px;
    background-color: #8DC540;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: calc(14px + (20 - 14) * ((100vw - 700px) / (1600 - 700)));
    font-weight: 700;
    cursor: pointer;
}

.footer_wrapper__testimonial_btn:hover {
    background-color: #000;
    color: #fff;
}

.footer_wrapper__blackbar {
    width: 100%;
    height: 40px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(10px + (12 - 10) * ((100vw - 700px) / (1600 - 700)));
}

.footer_wrapper__blackbar a {
    color: #8DC540;
}

.footer_wrapper__blackbar a:hover {
    color: #fff;
}

.big_l {
    width: 40%;
    height: 90vh;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    background-image: url("../images/L.png");
    position: absolute;
    bottom: 250px;
    right: 0;
    z-index: 1000;
    opacity: 0.4;
}
