:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
}

body {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    font-family: var(--default-font);
}

.hero-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.divMain {
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    background-image: url("assets/img/bg_img.jpg");
    object-fit: cover;
    position: absolute;
    inset: 0;

}

.container {
    margin: auto;
    text-align: center !important;
    padding: 20px;

}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}