* {
    margin: 0;
    padding: 0;
    border: 0 solid transparent;
    font-family: Montserrat;
}


html,
body {
    scroll-behavior: smooth
}

body {
    height: 100vh;
    background: #F2F2F2;
}

/*
    Image Area
*/
.main-image-area {
    position: relative;
    display: flex;
    max-height: 40vh!important;
}

.bg-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(35%);
}

.image-area-text-section {
    position: absolute;
    width: 40%;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 1em;
    color: white;

}

@media screen and (min-width: 0px) {
    .image-area-header {
        font-size: x-large;
        font-weight: 600;
    }

    .image-area-text {
        font-size: 6px;
        font-weight: 300;
    }
}

@media screen and (min-width: 640px) {
    .image-area-header {
        font-size: xx-large;
        font-weight: 600;
    }

    .image-area-text {
        font-size: 12px;
        font-weight: 300;
    }
}

/*
    Main Content
*/
.main-content {
    padding-top: 2em;
    padding-bottom: 1em;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/*
    Progress Area
*/
.progress-area {
    margin-top: 2em;
}

.btn-back {
    border-radius: 0.3em;
    border: 1px solid #e8eaed;
    margin: 0.3em;
    transition: all 1s cubic-bezier(0.39, 0.58, 0.57, 1);
    cursor: pointer;
}

.btn-back img {
    user-select: none;
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.btn-back:hover {
    transform: scale(1.1);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

/* .btn-forward-backward {
    position: absolute;
    border-radius: 0.5em;
    border: 1px solid #e8eaed;
}


.page_change_active svg {
    fill: #434343;
    pointer-events: none;
    user-select: none;
}

.page_change_active {
    border: 1px solid #434343 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.page_change_active:hover {
    transform: scale(1.1);
}

.go-back-btn {
    left: 1em;
}

.go-forward-btn {
    right: 1em;
} */