@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    color: #0a5050;
}

body {
    /* margin: 0 16px; */
}

/* 
body *:not(svg *) {
    color: hsl(228, 4%, 14%);
} */

a {
    color: #323336;
    text-decoration: none;
}

a:hover {
    /* color: #323336; */
    text-decoration: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


.sc_mt40 {
    margin-top: 40px !important;

}

.sc_mb40 {
    margin-bottom: 40px !important;

}

.sc_mt24 {
    margin-top: 24px !important;
}

.sc_mt16 {
    margin-top: 16px !important;
}

.sc_mt8 {
    margin-top: 8px !important;
}

.sc_strong {
    font-weight: 600;
    font-size: 18px;
    color: inherit;
}

.display_h1 {
    font-size: 24px;
    font-weight: 600;
}

.display_h2 {
    font-size: 18px;
    font-weight: 600;
}

.main-section_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page_contect_section {
    display: flex;
    /* height: 100vh; */
}

.page_contect_div {
    width: 100%;
    margin-bottom: 60px;
}

footer.footer {
    z-index: 10;
    position: fixed;
    left:0;
    bottom: 0;
    width: 100%;
    padding: 6px 4px 2px;
    background-color: #0a5050;
}

footer.footer p {
    color: #fff;
    font-size: 14px;
}

footer.footer img {
    height: 22px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}

.session_div {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e5e5;
    /* width: 90%; */
}

.session_div>h1 {
    white-space: nowrap;
}