/* font Mulish */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* font inter */

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');


/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 200 to 1000 */

.mulish-500 {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.mulish-600 {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.mulish-700 {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.mulish-900 {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name */

.inter-400 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}

/* header banner */
.header-banner {
    background-size: cover;
    background-position: center;
    height: 550px;
    width: screen;
    border-radius: 2rem;
    background-image: url(../images/bgbanner.png), linear-gradient(180deg, rgba(03, 07, 18, 0.5) 50%, rgba(18, 19, 45, 1) 80%);
    /* background-color: #ffffff; */
    background-repeat: no-repeat;
}

.tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black; */
}

.tooltip+.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover+.tooltiptext {
    visibility: visible;
}

