/* main{
    width: 100%;
    background: rgb(232, 230, 230);
    display: grid;
    gap: 4px;
    padding: 4px 0px;
} */

/* ------------------------------- */

/* section{
    background: #fff;
} */

/* ------------------- */

.breadcrum{
    padding: 10px;
    color: gray;
    border-bottom: solid 1px rgba(128, 128, 128, 0.242);
}

/* ------------------- */


img{
    width: 100px;
}
/* -------------------- Font Measure ------------------------ */
h1{
    /* emergency usaging */
}

/* ------ title ------- */
h2{
    font-size: 24px;
    font-weight: 400;
}

h3{
    font-size: 22px;
    font-weight: 400;
}

/* --------- Sub title ---- */
h4{
    font-size: 20px;
    font-weight: 300;
}

/* ------- Paragraphs */
h5{
    font-size: 16px;
    font-weight: 400;
}

h6{
    font-size: 10px;
    font-weight: 400;
    color: grey;
}

p{
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 250;
}

.switch{
    height: 35px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: solid 1px rgba(128, 128, 128, 0.44);
}

.btn, .log-btn{
    background: transparent;
    border: none;
    border: solid grey 1px;
    width: 50px;
    padding: 4px 1px 3px 1px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 100;
    cursor: pointer;
}
.log-btn{
    background: dodgerblue;
    color: #fff;
    width: 60px;
    padding: 3px 8px 4px 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.active{
    background: rgba(23, 144, 29, 0.353);
}



@media (max-width: 675px) {
    /* -------------------- Font Measure ------------------------ */
    /* ------ title ------- */
    h2{
        font-size: 22px;
    }
    
    h3{
        font-size: 22px;
    }
    
    /* --------- Sub title ---- */
    h4{
        font-size: 20px;
    }
    
    /* ------- Paragraphs */
    h5{
        font-size: 16px;
    }
    
    h6{
        font-size: 9px;
    }
    
    p{
        font-size: 14px;
    }
}