@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&family=Mulish:ital@0;1&display=swap');

/* Default Styling */
:root {
    --title-font:"Manrope", sans-serif;;
    --paragraph-font:"Mulish", sans-serif;;
    --h1:90px;
    --h2:52px;
    --h3:24px;
    --h4:20px;
    --h5:18px;
    --p:16px;
    --main_accent:#000;

}
.h1, 
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--title-font);
}
h1 {
    font-size: var(--h1);
    font-weight:600;
    * {
        font-size: var(--h1);
    }
}
h2 {
    font-size: var(--h2);
    text-transform: uppercase;
    font-weight:600;
    * {
        font-size: var(--h2);
    }
}
h3 {
    font-size: var(--h3);
    * {
        font-size: var(--h3);
    }
}
h4 {
    font-size: var(--h4);
    * {
        font-size: var(--h4);
    }
}
h5 {
    font-size: var(--h5);
    * {
        font-size: var(--h5);
    }
}
body,
p {
    font-size: var(--p);
}
a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header,
span,
.loading_screen  {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
img {
    max-width: 100%;
    height: auto;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}
.margin-top-240 {
    margin-top: 240px;
}
.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-120 {
    padding-top: 120px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}

.btn_1,
.btn_2 {
    background: #000;
    border: solid thin #000;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0px 15px 40px 0px rgba(13, 29, 13, 0.1);
    margin-left: 15px;
}
.btn_1:hover {
    background: #fff;
    color: #000;
}
.btn_3 {
    background: #fff;
    border: solid thin #fff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 600;
    color: #000 !important;
    box-shadow: 0px 15px 40px 0px rgba(13, 29, 13, 0.1);
    margin-left: 15px;
}
.btn_3:hover {
    opacity: 0.6;
}
.btn_2 {
    color: var(--main_accent);
    background: #fff;
}
.btn_2:hover {
    background: var(--main_accent);
    color: #fff !important;
}

/* Module 1 Styling */
.module_1 .section_panel {
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0px 3px 30px #00000014;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: calc(100% - 30px);
}
.module_1 .section_panel *:not(span) {
    color: #000;
}
.module_1 .section_panel .section_panel_details {
    padding: 30px;
}
.module_1 .section_panel .section_panel_details h3 {
    margin-bottom: 1rem;
}
.module_1 .section_panel .section_panel_details p {
    margin-bottom: 0;
}
.module_1 .section_panel .section_panel_details a {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;  
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
}
.module_1 .section_panel .section_panel_details a:hover {
    background: var(--main_accent);
    color: #fff;
}
.module_1 .section_panel .section_panel_details span {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;  
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;
}
.module_1 .section_panel .section_panel_details span:hover {
    background: var(--main_accent);
    color: #fff;
}
.module_1 .section_panel img {
    width: 100%;
}

.list_projects img {
    height: 450px;
    object-fit: cover;
    -webkit-object-fit: cover;
}
.module_0 .block_detail_content .default_section_title h2 {
    font-size: var(--h3);
}
.module_0 .block_detail_content h3 {
    font-size: var(--h4);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.module_0 .block_detail_content .description_h3:has(h3) h3:nth-child(1) {
    margin-top:0;
}
.page-template-template-splash-item .banner_var-1 h1 {
font-size:var(--h1) !important;
}
.page-template-template-splash-item .banner_var-1 h1 sm {
    display: inline-block;
    width:100%;
    font-size:var(--h4);
}

/* Module 2 Styling */
.module_2 h1 {
    margin-bottom: 1rem;
}
.module_2 h2 {
    margin-bottom: 1rem;
}
.module_2 h3 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.module_2 img {
    border-radius: 7.5px;
    box-shadow: -3px 3px 5px rgba(0, 0, 0, .2);
}
.module_2 .btn_items {
    display: inline-flex;
    align-items: center;
}
.module_2 .btn_items a {
    border-radius: 3.75px;
}
.module_2 .btn_items a.btn_1 {
    margin-left: 0;
}
.module_2 .btn_items a.btn_1:hover {
    color: var(--main_accent);
    background: #fff;
}
.module_2 .btn_items a.btn_2 {
    color: var(--main_accent);
    margin-left: 15px;
}
.module_2 .btn_items a.btn_2:hover {
    color:#fff !important;
}
/* Testimonials */
.testimonial_items .section_panel {
    padding: 30px;
    text-align: center;
}
.testimonial_items .section_panel p {
    font-style: italic;
}
.testimonial_items .section_panel .testimonail_item img {
    max-width: 75px;
    margin-bottom: 0.5rem;
}
.testimonial_items .section_panel .testimonail_item p {
    font-style: normal;
}

/* Module 0 */
.module_0 .default_section_title h1 {
    font-size: var(--h2);
    margin-bottom: 1rem;
}
.module_0 .default_section_title h2 {
    margin-bottom: 1rem;
}
.module_0 .default_section_title p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 30px 0 0;
    background: #fff;
}
footer svg {
    margin-bottom: 1rem;
    max-width: 200px;
    margin: 0 auto 1rem;
}
footer .footer_2 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer .footer_2 ul li a {
    color: #000;
}
footer .copy_item {
    text-align: center;
    padding: 7.5px 0;
    background: #000;
}
footer .copy_item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}
footer .copy_item p a {
    color: #fff;
}
/* Footer End */

/* Module 6 Styling */
/* Module 6 Styling */
.module_6 .gform-theme--foundation .gform_fields {
    row-gap: 15px;
}
.module_6 input:not([type="submit"]) {
    width: 100%;
    height: 50px;
    padding:0 15px;
    margin-top: 7.5px;
}
.gform-theme--framework .field_sublabel_below .gform-field-label--type-sub {
    font-size:14px;
}
.gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section)) {
    margin-bottom:15px;
}
.module_6 textarea {
    margin-top: 0px;
    width: 100%;
    padding:15px;
    margin-top: 7.5px;
}
.gfield_required.gfield_required_text {
    display: none;
}
.module_6 label {
    display: inline-block;
    width: 100%;
}
.module_6 .wpcf7-form-control-wrap {
    display: inline-block;
    width: 100%;
}
.module_6 input.button {
    margin-top: 1rem;
    background: #000 !important;
    border: solid thin #000 !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7.5px 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    box-shadow: 0px 15px 40px 0px rgba(13, 29, 13, 0.1) !important;
    cursor: pointer !important;
}
.module_6 input.button:hover {
    background: #fff !important;
    color: #000 !important;    
}
.module_6 .l_contact_1 p {
    margin-top: 1rem;
}
.module_6 .r_contact_1 h2 {
    margin-bottom: 1rem;
}
.module_6 .r_contact_1 h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.module_6 .r_contact_1 p {
    margin-bottom: 0.5rem;
}
.module_6 .r_contact_1 a {
    margin-top: 1rem;
    color: #000;
    text-decoration: underline;
}
.module_6 .r_contact_1 a.social_media {
    font-size: 20px;
    margin-right: 7.5px;
}
.module_6 .r_contact_1 a.social_media svg {
    width: 20px;
    max-height: 20px;
    height: auto;
}
/* Module 6 Styling End */

.gform_wrapper form {
    box-shadow: 1px 0px 7.5px rgba(0, 0, 0, .2);
    padding: 30px;
    border-radius: 7.5px;
}

.social-icon {
    font-size: 20px;
    margin-right: 7.5px;
}

body:not(.home) .banner_var-1 {
    max-height: 500px;
}
body:not(.home) .banner_var-1 h1 {
    margin-bottom: 1rem;
    font-size: var(--h1);
    text-transform: uppercase;
    font-weight: 600;
}

.module_sections_1 {
    text-align: center;
}
.module_sections_1 h3 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}
.module_sections_1 p {
    margin-bottom: 0;
}
.module_sections_1 .panel_item_module {
    box-shadow: 0px 3px 30px #00000014;
    border-radius: 0.25rem;
    overflow: hidden;
    padding: 60px;
    text-align: center;
    height: 100%;
}

/* Module 5 Styling */
.module_5 {
    text-align: center;
}
.module_5 p {
    margin-top: 1rem;
    margin-bottom: 0;
}
.module_5 a {
    margin-top: 1rem;
    padding: 7.5px 15px;
    border: solid thin var(--main_accent);
    display: inline-flex;
    min-width: 135px;
    height: 50px;
    justify-content: center;
    align-items: center;  
    background: #fff;
    color: var(--main_accent);
    border-radius: 3.75px;    
}
.module_5 a:hover {
    background: var(--main_accent);
    color: #fff;
}
/* Module 5 Styling End */

.single .module_2 img {
    border-radius: 0;
}

/* Header Mobile */
#mobile_toggle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 99999
}

#mobile_toggle nav {
    background-color: #fff;
    height: 50px;
    position: relative;
    box-shadow: 0 4px 4px rgba(0,0,0,.4)
}

#mobile_toggle #menuToggle input {
    display: flex;
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    left: 0;
    top: 0
}

#mobile_toggle #menuToggle span {
    display: flex;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    position: relative;
    background: #000;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform .5s cubic-bezier(.77,.2,.05,1),background .5s cubic-bezier(.77,.2,.05,1),opacity .55s ease
}

#menuToggle span:first-child {
    transform-origin: 0% 0%
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%
}

#menuToggle span {
    display: block;
    background-color: var(--mdb-body-color);
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    transition: transform .3s,opacity .3s
}

#menuToggle input:checked~label span:first-child {
    transform: rotate(45deg) translate(1px,1px)
}

#menuToggle input:checked~label span:nth-child(2) {
    opacity: 0
}

#menuToggle input:checked~label span:nth-child(3) {
    transform: rotate(-45deg) translate(0,-1px)
}

#mobile_toggle .menu-main-container_outer {
    box-shadow: 4px 0 4px rgba(0,0,0,.4);
    left: 0;
    position: absolute;
    width: 100%;
    height: calc(100vh + 50px);
    padding: 30px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%,0);
    transition: transform .5s cubic-bezier(.77,.2,.05,1);
    top: 50px
}

#mobile_toggle .menu-main-container_outer strong {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 32px;
    text-align: center;
    font-weight: 800;
    color: var(--mdb-body-color)
}

#mobile_toggle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0
}

#mobile_toggle ul li ul {
    display: none
}

#mobile_toggle ul li {
    text-align: left;
    padding: 10px 0;
    transition-delay: 2s;
    color: var(--mdb-body-color);
    font-size: 32px;
    text-transform: uppercase;
    width: 100%
}

#mobile_toggle ul li a {
    color: var(--mdb-body-color);
    padding: 0 0;
    line-height: 1.5
}

#mobile_toggle ul li a:hover {
    background: 0 0!important
}

#mobile_toggle #menuToggle input:checked~div {
    transform: none
}

.ham {
    position: absolute;
    top: 35px;
    transform: translate(-50%,-50%);
    left: 30px;
    z-index: 9999;
    height: 41px
}

#mobile_toggle a.mobile-toggle-img {
    position: absolute;
    top: calc(50% + 1px);
    left: calc(50%);
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 1
}

#mobile_toggle a.mobile-toggle-img svg {
    max-height: 30px;
    width:100%;
}
.module_sections_1.module_section_packages .panel_item_module {
    text-align: left;
}
.module_sections_1.module_section_packages .panel_item_module h3 {

}
.module_sections_1.module_section_packages .panel_item_module p {
    margin-bottom: 1rem;
}
.module_sections_1.module_section_packages .panel_item_module ul {
    padding-left:15px;
}
/* Responsive Styling */
.single .module_2 .btn_1 {
    margin-left: 0;
}
.gform-field-label {
    margin-bottom: 0;
    margin-top: 15px;
}
.logo_flex {

}
.logo_flex img {
    width: 100%;
    height: auto;
}
.inner_logo_item {
    margin-bottom: 30px;
}
.inner_logo_item div {
    box-shadow: 0 3px 30px #00000014;
    padding:15px;
    height:0;
    padding-bottom: 100%;
}
.inner_logo_item div img {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    max-width: calc(100% - 90px);
}
.testimonial_section {
    text-align: center;
}
.testimonial_section p {
    font-style: italic;
}
.testimonial_section p cite {
    font-weight: bold;
    text-transform: uppercase;
    font-style: normal;
}
.testimonial_section .normal_text p {
    font-style: normal;
}
.testimonial_section div {

}
.border-bottom {
    border-bottom: solid thin #000;
}
.testimonial_section p cite sm {
    font-weight: 500;
    font-size: 12px;
}
.testimonial_section p:has(cite) {
    margin-bottom: 0;
}

.page-id-119 .module_6 .gfield_radio .gchoice {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 15px;
}
.page-id-119 .module_6 .gfield_radio .gchoice input {
    width: auto;
    margin-top: 0;
    margin-right: 15px;
    width:45px;
    height: 25px;
}
.page-id-119 .module_6 .gfield_radio .gchoice label {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: var(--p);
}
.page-id-119 .module_6 .ginput_container_select select {

}
.page-id-119 .module_6 .gfield--type-select label, .page-id-119 .module_6 .gfield--type-email label, .page-id-119 .module_6 .gfield--type-number label {
    margin-bottom:0.5rem
}
.gform-theme--framework .field_sublabel_below .gform-field-label--type-sub {
    font-size: 12px !important;
    margin-bottom:0 !important;
    font-weight:normal !important;
}
.page-id-119 .module_6 .gform-field-label {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--p);
}
.page-id-119 #gform_1_validation_container h2{
    font-size: var(--p) !important; 
}
.page-id-119 .module_6 label[for="input_1_49"] {
    font-size: var(--p); 
}
.page-id-119 .module_6 .gfield--type-select label,
.page-id-119 .module_6 .gfield--type-email label,
.page-id-119  .module_6 .gfield--type-number label {
    font-size: var(--p);
    margin-bottom: 0.5rem;
}
.page-id-119 .module_6 .gform_page_fields h3 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--h3);   
}
.page-id-119 .module_6 .gform-page-footer {
    display: inline-flex;
    align-items: center;
}
.page-id-119 .module_6 .gform-page-footer input.button{
    width: auto;
    height: 50px;
    margin-right: 15px;
}
.category-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.category-nav li {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 7.5px;
}
.category-nav a {
    padding: 7.5px 15px;
    margin-left: 0px;
}

.category-nav a.active {
    background: #000;
    color: #fff;
}
.article_content {

}
.article_content img {
}
.article_content a {
    color:#000;
    text-decoration:underline !important;
}
.article_content h2 {
    margin-top:60px;
    margin-bottom:15px;
    font-size:var(--h3);
}
.article_content h3 {
    margin-top:30px;
    margin-bottom:15px;
    font-size: var(--h5);
}
@media (max-width: 1199.98px) {
    /* Default Styling */
    :root {
        --h1:62px;
        --h2:42px;
        --h3:24px;
        --h4:20px;
        --h5:18px;
        --p:16px;
    }
    .flex-grow-1 {
        flex-grow: 1;
    }
    header {
        .text-center {
            flex-grow: 1;
        }
    }
}

@media (max-width: 991.98px) {
    /* Default Styling */
    :root {
        --h1:62px;
        --h2:42px;
        --h3:24px;
        --h4:20px;
        --h5:18px;
        --p:16px;
    }



    .margin-bottom-90 {
        margin-bottom: 60px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    .margin-top-90 {
        margin-top: 60px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    .margin-top-240 {
        margin-top: 120px;
    }
    .padding-bottom-90 {
        padding-bottom: 60px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    .padding-top-90 {
        padding-top: 60px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }












    body {
        padding-top: 50px;
    }

    .module_2 .btn_items {
        flex-wrap: wrap;
    }
    .module_2 .btn_items a {
        margin-bottom: 15px;
        width: 100%;
        margin-left: 0;
    }
    .module_2 .btn_items a.btn_2 {
        margin-left: 0;
    }

    .banner_var-1 {
        padding: 60px 0 60px;
        height: auto;
        max-height: none;
    }

    body:not(.home) .banner_var-1 {
        padding: 60px 0 60px;
        height: auto;
        max-height: none;
    }



}

@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
    }
    .btn_1, 
    .btn_2 {
        width:100%;
        margin-left: 0;
    }
    .banner_var-1 .banner_btns  a.btn_1 {
        margin-bottom: 15px;
    }
    .module_1 .section_panel .section_panel_details  span {
        width:100%;
    }
    .module_2 img {
        margin-bottom: 30px;
    }
    .module_2 .btn_items a.btn_1 {
        margin-left: 0;
        width: 100%;
    }
    .module_2 .btn_items {
        width: 100%;
    }
    .module_sections_1 .panel_item_module {
        padding:30px;
    }
    .list_projects img {
        height: 350px;
    }
    .category-nav li {
        margin-right:0;
        width: 100%;
    }
    .category-nav a {
        padding:15px 30px;
        width:100%;
    }
}

/* End Responsive Styling */