@import url("https://fonts.googleapis.com/css2?family=Lexend&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: "Lexend", sans-serif;*/
}

body {
    top: 0px !important;
}

p {
    font-family: "Lexend", sans-serif !important;
    color: #506172 !important;
}
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    overflow: inherit;
}

.justify-content-center {
    justify-content: center !important;
}
.justify-content-flex-start {
    justify-content: flex-start !important;
}

a {
    text-decoration: none !important;
}

/* ------------------- dropdown styling ---------------------- */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown span::after {
    content: "\25Bc"; /* Unicode character for an up-pointing triangle */
    margin-left: 5px;
    font-size: 0.7em; /* Adjust the icon size */
    color: white;
    transition: transform 0.3s ease-in-out; /* Add smooth transition effect */
}
.dropdown:hover span::after {
    content: "\25B2";
    transform: rotateX(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}
@media screen and (max-width: 991px) {
    .dropdown-content {
        position: unset;
    }
}
/* ------------------- dropdown styling ---------------------- */
/* ------------------- show-more-content styling ---------------------- */
.show-more-content {
    text-align: center;
}
.show-more-content a {
    text-decoration: underline !important;
    text-decoration-color: #fc3f00;
    color: #fc3f00;
}
/* ------------------- show-more-content styling ---------------------- */

.single-page-heading-div {
    overflow: hidden !important;
}
.single-page-heading-div h3 {
    font-weight: bold;
}

.p-relative {
    position: relative;
}

.page-banner-div {
    position: relative;
}
.page-banner-div .image {
    width: 100%;
    aspect-ratio: 10/2;
}
.page-banner-div .heading_div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

.page-banner-div .heading {
    color: white;
    background-color: rgb(255 125 0 / 53%);
    height: 30%;
    width: 40%;
    font-size: 40px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
}


.importantTextRed{
    color: red !important;
}


table{
    width: -webkit-fill-available !important;
}

.table{
    width: -webkit-fill-available !important;
}

.dataTables_scrollHeadInner{
    width: unset !important;
}
