:root {
    scroll-behavior: inherit;
    --font-fraunces: "Fraunces", serif;
    --font-clashGrotesk: 'ClashGrotesk-Variable', sans-serif;
    --highlighted_brown: 155, 108, 67;     /* #9B6C43 */
    --muted_gold: 212, 163, 115;           /* #D4A373 */
    --neutral_mid: 58, 58, 58;             /* #3A3A3A */
    --base_black: 27, 27, 27;              /* #1B1B1B */
    --bg_accent: 240, 237, 233;            /* #F0EDE9 */
    --body_bg: 246, 247, 248;              /* #F6F7F8 */
    --bg_white: 255, 255, 255;             /* #FFF */
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 3rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 7.5rem;
    --transition: all 400ms ease-in-out;
}
header{
    background-color: rgba(var(--body_bg), 0.95);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1040;
}
footer{
    padding: 4rem 0 1rem;
    background-color: rgb(var(--muted_gold));
    background-color: #F0E7DF;
    background-color: #EDE0D4;
}

.hero_banner{
    padding: 10rem 0 0;
    color: rgb(var(--bg_white));
    background: #232526;
    background: -webkit-linear-gradient(to right, #414345, #232526);
    background: linear-gradient(to right, #414345, #232526);
    position: relative;
    overflow: hidden;
}
.hero_banner::before{
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    background-image: url(images/topography-background.png);
    background-repeat: repeat;
    background-position: center;
    background-size: 300px;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: overlay;    
}
.hero_banner > .container{
    position: relative;
    z-index: 4;
}
.hero_banner strong{
    font-weight: 600;
}
.hero_content{
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0;
    justify-content: center;
    height: 100%;
}
.hero_content h1{
    line-height: 1.2;
}
.hero_cta_wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hero_cta_wrap a + a{
    margin: 0 !important;
}
.hero_img_wrap{
    text-align: center;
    position: relative;
}
.hero_img_wrap .img_wrap{
    overflow: hidden;
}

.hero_img_wrap .img_wrap img{
    width: auto;
    height: auto;
}

.html_files{
    position: absolute;
    left: -25px;
    top: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1;
    gap: 10px;
    background-color: rgb(var(--muted_gold));
    padding: 7px 15px;
    border-radius: 4px;
    
        
    background: #bc4e9c;
    background: -webkit-linear-gradient(to bottom, #f80759, #bc4e9c);
    background: linear-gradient(to bottom, #f80759, #bc4e9c);

}

.html_files span{
    display: block;
    margin-bottom: 0px;
    line-height: 1;
    font-size: 2.25rem;
}

.inner_page_item_row{
    margin-bottom: -40px;
}
.inner_page_item{
    text-align: center;
    margin-bottom: 40px;
}
.inner_page_item a{
    color: rgb(var(--neutral_mid));
    font-weight: 500;
}
.inner_page_item a *{
    font-family: var(--font-clashGrotesk);
}
.inner_page_item a:hover{
    color: rgb(var(--highlighted_brown));
}
.inner_page_item .img_wrap{
    box-shadow: rgba(0, 0, 0, 0.20) 0px 0px 20px 0px;
    margin-bottom: 1.25rem;
    border: 7px solid rgba(var(--body_bg), 0.95);
    overflow: hidden;
}

.inner_page_item .img_wrap img{
    transform: scale(1.001);
    transition: var(--transition);
}
.inner_page_item a:hover .img_wrap img{
    transform: scale(1.03);
}
.small_label:not(:last-child) {
    margin-bottom: 5px;
}
#demo{
    background-color: #EDE0D4;
}

.features_item_row{
    margin-bottom: -30px;
}
.features_item{
    height: calc(100% - 30px);
    text-align: center;
    margin-bottom: 30px;
    background-color: rgb(var(--bg_white));
    padding: 25px;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(var(--base_black), 0.95);
}

.features_item .icon_wrap{
    margin: 0 auto 25px;
}
.features_item .icon_wrap img{
    width: auto;
    height: 50px;
}
.features_item .label_text{
    font-size: 14px;
    color: rgba(var(--base_black), 0.4);
    font-weight: 500;
}

.copyrigh_wrap{
    text-align: center;
    margin-top: 4.125rem;
    padding-top: 1.125rem;
    border-top: 1px solid rgba(var(--neutral_mid), 0.1);
}

.copyrigh_wrap,
.copyrigh_wrap p{
    font-size: 0.874rem;
}


.navbar-toggler{
    background-color: rgb(var(--base_black));
}


@media (max-width: 1199px) {
    .hero_content {
        text-align: center;
    }
    .hero_cta_wrap{
        justify-content: center;
    }
    .hero_img_wrap{
        margin-top: 40px;
    }
    .html_files {
        left: 0;
        top: 0;
        transform: none;
        position: relative;
        max-width: fit-content;
        margin: 0 auto -15px;
    }
    .hero_banner {
        padding: 6rem 0 0 !important;
    }
}
@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }
    .section_spacing {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }
    .navbar-toggler {
        margin-left: 25px;
        margin-right: 0;
    }
    .offcanvas.offcanvas-start {        
        top: 0;
    }
}
@media (max-width: 767px) {
    .section_spacing {
        padding-top: var(--spacing-md);
    }
}