@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');
@import "fonts.css";

/* :root { */
/* --header1Height: 78px;
    --header2Height: 100px;
    --footerHeight: 35vh;
    --headerParentDivHeight: calc(var(--header1Height) + var(--header2Height)); */
/* } */



.midContent {
    /* border: 1px solid red; */
    /* background: rgb(216, 209, 209); */
    background: url("../images/bg-faqs.jpg");
    /* background-size: cover;
    background-position: top; */
    background-size: contain;
    /* background-position: 200px; */
    background-position: center;
}

.midContent div {
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
    gap: 10px;
    padding: 10px;
    padding: 5% 10% 0% 10%;
}

.midContent div h1 {
    font-family: 'BentonSans';
    font-style: normal;
    font-weight: 600;
    /* font-size: 0.7em; */
    margin-bottom: 2%;
}

.midContent div p {
    font-family: 'BentonSans';
    font-style: normal;
    font-weight: 500;
    /* text-align: justify; */
    display: flex;
    justify-content: center;
    align-items: center;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f4f3f3;
    margin-top: 3px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px #6f42c1;
    border-radius: 10px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@media (max-width:1000px) {

    .midContent {
        min-height: 60vh;

    }
}