@charset "utf-8";
/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #FFFFFF;
    font-size: 18px;
    line-height: 1.4;
    color: #272727;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* width */
body::-webkit-scrollbar {
    width: 6px;
}
  
/* Track */
body::-webkit-scrollbar-track {
    background: #FFFFFF;
}
  
/* Handle */
body::-webkit-scrollbar-thumb {
    background: #BB7E5D;
}

:root {
    --grey: #F4F3EF;
    --form-grey: #7B7B7B;
    --red: #FF4141;
    --orange: #dac133;
    --green: #1A9848;
    --dark-green: #007259;
    --brown: #BB7E5D;
    --white: #FFFEFA;
    --black: #272727;
    --trans-white: rgba(242, 244, 243, 0.3);
}

.red { background-color: var(--red); }
.orange { background-color: var(--orange); }
.green { background-color: var(--green); }
.black { background-color: var(--black); }

/*********************** Fonts ************************/
h1, h2, h3, h4, h5 {
    font-family: area-normal, sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--black);
}

h1 {
    font-size: 70px;
    line-height: 1.3;
    margin-top: 0;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

@media (max-width: 750px) {
    h1 {
        font-size: 60px;
        text-align: center;
    }

    h2 {
        font-size: 48px;
    }

    h3 {
        font-size: 30px;
    }
}

p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 16px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small, .page_wrapper {
    position: relative;
    margin: 0 auto;
}

.page_wrapper {
    max-width: calc(100vw - 80px);
}

.wrapper_large {
    max-width: calc(100vw - 340px);
}

.wrapper_small {
    max-width: 45%;
    width: 900px;
}

.large_text_body {
    width: 680px;
    margin-bottom: 80px;
}

.large_text_body h1 {
    text-align: left;
    margin-top: 0px;
}

.large_text_body h2,
.large_text_body h3,
.large_text_body h4 {
    margin-bottom: 10px;
}

#introduction_jump {
    position: absolute;
    top: -160px;
}

@media (max-width: 1350px) {
    .wrapper_small {
        max-width: 75%;
    }

    .wrapper_large {
        max-width: calc(100vw - 160px);
    }
}

@media (max-width: 1250px) {
    .page_wrapper,
    .wrapper_large {
        max-width: calc(100% - 50px);
    }
}

@media (max-width: 800px) {
    .page_wrapper,
    .wrapper_large {
        max-width: calc(100% - 40px);
    }

    .large_text_body {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .wrapper_small {
        max-width: calc(100% - 40px);
    }
}

.wrapper_small h1 {
    text-align: center;
}

.page {
    width: 100%;
    min-height: 100vh;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.buttons_container .button:first-of-type {
    margin-right: 20px;
}

.button,
.button_2,
input[type="submit"],
input[type="reset"],
input[type="button"],
.square_button {
    padding: 0 30px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--green);
    text-align: center;
    color: var(--white);
    font-family: area-normal, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 1;
    border-radius: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: var(--brown) !important;
    color: var(--white) !important;
}

.square_button {
    position: relative;
    width: 46px;
    padding: 0;
    box-sizing: border-box;
}

.square_button i {
    font-size: 16px;
    margin: 0 !important;
}

.button i,
.button_2 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 8px;
}

.button:hover,
.button_2:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.square_button:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.button:active,
.button_2:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.square_button:active,
.button:focus,
.button_2:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.square_button:focus {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

/*********************** Page Banner ************************/
.page_banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 800px;
    padding: 40px;
    border-radius: 20px;
    margin: 40px auto 140px;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--grey);
    z-index: 10;
}

.homepage_banner {
    height: calc(100vh - 80px);
    min-height: 760px;
}

.page_banner_image {
    background-color: var(--green);
    width: calc(50%);
    height: calc(100% - 86px);
    margin-top: 86px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.page_banner_content {
    width: calc(50% - 160px);
    margin-top: 86px;
    z-index: 5;
}

.page_banner h1 {
    width: 100%;
    margin: -10px 0 35px 0;
}

.page_banner p {
    width: 100%;
    margin: 0;
}

.page_banner .button_2,
.page_banner .button {
    margin-top: 40px;
}

.homepage_banner .page_banner_image {
    width: calc(100% - 80px);
    height: calc(100% - 166px);
    position: absolute;
    z-index: 0;
    top: 40px;
    left: 40px;
    background-color: var(--black);
}

.homepage_banner .page_banner_image img {
    mask-image: linear-gradient(90deg, transparent 3%, black 80%);
    -webkit-mask-image: linear-gradient(90deg, transparent 3%, black 80%);
}

.homepage_banner .page_banner_content {
    margin-left: 40px;
    width: calc(50% - 80px);
}

.homepage_banner .page_banner_content h1,
.homepage_banner .page_banner_content p {
    color: var(--white);
}

.logo_wrapper {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.dbm {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: 30px;
}

.design_build_maintain {
    background-color: var(--brown);
    text-transform: uppercase;
    color: var(--white);
    font-family: area-normal, sans-serif;
    font-style: normal;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 8px 12px;
    margin-right: 10px;
    font-weight: 700;
    font-size: 15px;
}

.design_build_maintain:nth-of-type(2) {
    opacity: 0.8;
}

.design_build_maintain:nth-of-type(3) {
    opacity: 0.6;
}

@media (max-width: 1450px) {
    .page_banner_content {
        width: calc(50% - 40px);
    }

    .homepage_banner .page_banner_content {
        width: 50%;
    }
}

@media (max-width: 1250px) {
    .page_banner {
        width: calc(100% - 50px);
        height: calc(100vh - 50px);
        margin-top: 25px;
        padding: 25px;
    }

    .homepage_banner {
        height: calc(100vh - 50px);
    }

    .page_banner_image {
        height: calc(100% - 71px);
        margin-top: 71px;
    }

    .homepage_banner .page_banner_image {
        height: calc(100% - 120px);
        width: calc(100% - 50px);
        top: 25px;
        left: 25px;
    }

    .page_banner_content {
        margin-top: 71px;
    }

    .page_banner h1 {
        font-size: 44px;
    }

    .banner_spacer {
        height: 25px;
    }
}

@media (max-width: 1050px) {
    .page_banner {
        flex-direction: column-reverse;
        height: max-content;
    }

    .page_banner .page_banner_image,
    .page_banner .page_banner_content {
        width: 100%;
    }

    .page_banner .page_banner_image {
        height: 500px;
    }

    .page_banner .page_banner_content {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 60px;
        width: 80%;
    }

    .homepage_banner .page_banner_image img {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .homepage_banner .page_banner_content h1,
    .homepage_banner .page_banner_content p {
        color: var(--black);
    }

    .homepage_banner .page_banner_content {
        margin-left: 0px;
    }

    .dbm {
        display: none;
    }
}

@media (max-width: 800px) {
    .page_banner {
        width: calc(100% - 40px);
        margin-top: 20px;
        padding: 20px;
        margin-bottom: 80px;
    }

    .homepage_banner {
        height: max-content;
    }
}

@media (max-width: 600px) {
    .page_banner {
        margin-bottom: 80px;
    }

    .page_banner .page_banner_image {
        height: 450px;
    }

    .page_banner .page_banner_content {
        width: 100%;
        margin-top: 60px;
        margin-bottom: 0;
    }

    .homepage_banner .page_banner_content {
        margin-top: 10px;
    }

    .homepage_banner .page_banner_image {
        top: 0;
    }

    .page_banner .page_banner_content .button {
        width: 100%;
    }

    .homepage_banner .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .homepage_banner .page_banner_content .button:last-of-type {
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .page_banner .page_banner_image {
        height: 300px;
    }
}