*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.donors-home{
    background-image: linear-gradient(to top, rgb(255 240 240 / 50%)70%, rgb(255 238 238 / 50%)30%),url(../image/Blood\ bag\ and\ hand\ of\ donor\ with.jpeg) ;
    background-repeat: no-repeat; 
    background-size: cover;  
    width: 100%; 
    height: 52em;
    margin-top: -6em;
    padding-top: 6em;
    background-position: bottom;
}
.donor-home{
    background-image: linear-gradient(to top, rgb(255 240 240 / 50%)70%, rgb(255 238 238 / 50%)30%),url(../image/Blood\ bag\ and\ hand\ of\ donor\ with.jpeg) ;
    background-repeat: no-repeat; 
    background-size: cover;  
    width: 100%; 
    height: 77em;
    background-position: bottom;
    margin-top: -11em;
    padding-top: 11em;
}
.start{
    background-image: linear-gradient(to top, rgb(255 240 240 / 50%)70%, rgb(255 238 238 / 50%)30%),url(../image/Blood\ bag\ and\ hand\ of\ donor\ with.jpeg) ;
    background-repeat: no-repeat; 
    background-size: cover;  
    width: 100%; 
    height: 52em;
    margin-top: -6em;
    padding-top: 6em;
    background-position: bottom;
}
a{
    text-decoration: none !important;
}
/*Navigation bar */
.navbar {
    background: #e0e0e0;
    background: brown;
    padding: 22px !important;
    color: black;
    padding: 1.5em 0;
    box-shadow: 0 3.5px 38px 3.5px #5e5e5e3d;
}
.navbar .navbar-brand{
    color: #fff;
    font-size: 2em;
    font-family: 'elmessiri-bold';
}
.navbar-brand .logo{
    width: 200px;
}
.navbar-nav{
    gap: 22px;
    align-items: baseline;
}
.navbar-collapse {
    flex-grow: 0 !important;
    display: flex;
    justify-content: center;
}
.navbar .nav-link{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    /* line-height: 21px; */
    height: 37px;
    margin-right: 10px;
    position: relative;
}
.navbar a:hover{
    color: #f0f0f0; 
}
.navbar .nav-link::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    margin-top: 1em;
    background-color: #fff;
    bottom: -10px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.navbar .nav-link:hover::before{
    transform-origin: left;
    transform: scaleX(1);
}
/* Navbar Toggler */
.hamburger {
    cursor: pointer;
}
.hamburger input {
    display: none;
}
.hamburger svg {
    height: 2.2em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line-top-bottom {
    stroke-dasharray: 12 63;
}
.hamburger input:checked + svg {
    transform: rotate(-45deg);
}
.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Language Btn */
.language-button {
    color: #fff;
    font-size: 20px;
    font-family: 'elmessiri-bold';
    width: 100%;
    border: none;
    background: none;
}
.language-button img {
    margin: 0 8px;
}
.dropdown-toggle::after {
    display: contents !important;
}
/* end of navbar */


/* Scroll Btn */
.scrollBtn{
    direction: rtl;
    position: fixed;
    right: 20px;
    bottom: 0;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: brown;
    border-radius: 50%;
    font-size: 20px;
    transition: .2s bottom ease-in-out;
    bottom: -50px;
    cursor:pointer;
}
.scrollBtn.active{
    bottom: 20px;
}

