.site_width {
max-width:1800px;
width:100%;
}

.maincontent {
position:relative;
padding:0px;
}



/* -- General -- */

.text-bold {
    font-weight: 700;
    color: #111;
}
.text-highlight {
    color: var(--accent-color);
}
.text-footnote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--accent-color);
}

.content-wrapper,
.content-wrapper-md,
.content-wrapper-sm,
.content-wrapper-x-sm {
    width: 100%;
    margin-inline: auto;
}
.content-wrapper {
    max-width: 1550px;
}
.content-wrapper-md {
    max-width: 1400px;
}
.content-wrapper-sm {
    max-width: 1250px;
}
.content-wrapper-x-sm {
    max-width: 1100px;
}

.g_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.g_wrapper-align-top {
    align-items: flex-start;
}
.g_wrapper-reverse {
    flex-direction: row-reverse;
}
.g_col-sm {
    width: 45%;
    padding: 20px 30px;
}
.g_col-lg {
    width: 55%;
    padding: 20px 25px;
}
.g_img-wrapper {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 20px auto;
}
.g_img-wrapper img {
    width: 100%;
    height: auto;
    background-color: #e2e4e8;
}
.g_img-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
}
.g_img-top-left {
    grid-row: 1 / 5;
    grid-column: 1 / 5;
    border: 5px solid #fff;
}
.g_img-bottom-right {
    grid-row: 3 / 6;
    grid-column: 3 / 6;
    border: 5px solid #fff;
    margin-top: 30px;
}



/* -- Our Objective -- */

#objective_section {
    background-color: #121418;
    color: #c2c4c8;
}
#objective_section::before,
#objective_section::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 50px;
}
#objective_section::before {
    top: -25px;
    right: 0;
    background-color: #fff;
    border-radius: 20px 0 0 20px;
}
#objective_section::after {
    bottom: -25px;
    left: 0;
    background-color: #f2f4f8;
    border-radius: 0 20px 20px 0;
}
.objective-icon {
    display: block;
    width: 50px;
    height: 50px;
    margin-block: 20px;
    border-radius: 10px;
    padding: 10px;
    border: 2px solid #929498;
    color: #929498;
}
.objective-wrapper h2,
.objective-wrapper .text-highlight {
    color: #fff;
}



/* -- Our Process -- */

#process_section {
    background-color: #f2f4f8;
}
.process-list {
    list-style: none;
    margin: 40px auto 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5%;
}
.process-item {
    width: calc(25% - (7.5% / 4));
    margin-block: 20px;
    padding: 45px 30px;
    border-radius: 15px;
    background-color: #fff;
    text-align: left;
    box-shadow: 0 4px 12px rgba(5, 5, 5, .1);
}
.process-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-block: 0 20px;
    width: fit-content;
    color: #b2b4b8;
    border-bottom: 2px solid var(--accent-color);
}
.process-item p {
    font-size: .95rem;
    color: #626468;
    margin: 0;
}



/* -- Why Us -- */

.why-us-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.why-us-item {
    margin-bottom: 15px;
}
.why-us-item p {
    font-size: .95rem;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    font-style: italic;
}
.why-us-item .material-icons {
    margin-right: 10px;
    color: var(--accent-color);
}



/* -- Responsiveness -- */

@media (max-width: 1200px) {
    .process-item {
        width: calc(50% - (2.5% / 2));
    }
}

@media (max-width: 1024px) {
    .g_wrapper {
        max-width: 800px;
        width: 100%;
        margin-inline: auto;
    }
    .g_col-sm,
    .g_col-lg {
        width: 100%;
        padding: 0;
    }
    .g_img-wrapper {
        margin-bottom: 35px;
    }
}

@media (max-width: 750px) {
    .process-item {
        width: 100%;
    }
}