:root {
    --black: rgba(0, 0, 0, 1);
    --white: rgba(255, 255, 255, 1);
    --box-shedow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
    --liner-grdient: linear-gradient(81.74deg, #2845EA 8.62%, #0BCF7E 53.22%);
    /* fonts */
    --h1-font: 34px;
    --h2-font: 24px;
    --h3-font: 20px;
    --h4-font: 18px;
    --h5-font: 16px;
    --h6-font: 34px;
    --h1-tag-font-size: 60px;
    --h1-tag-font-weight: 600x;
    --h1-tag-line-height: 70px;
    --h2-tag-font-size: 38px;
    --h2-tag-font-weight: 600x;
    --h2-tag-line-height: 45px;
    --h3-tag-font-size: 24px;
    --h3-tag-font-weight: 600x;
    --h3-tag-line-height: 32px;
    --p-tag-line-height: 24px;
    --p-tag-font-weight: 400x;
    --a-tag: 16px;
    --p1-font: 14px;
    --p2-font: 16px;
}

.fa-bars {
    color: var(--black);
}

body.dark .fa-bars {
    color: var(--white);
}

.fa-times {
    color: var(--black);
}

body.dark .fa-times {
    color: var(--white);
}

nav {
    z-index: 99;
    width: 100%;
    background: transparent;
}

.just_fr__sm {
    display: none;
    position: absolute;
    top: 11px;
    left: 32px;
}

.nav-bb::after {
    background: url(../img/l-globe-03.svg) center center;
    content: '';
    position: relative;
    width: 980px;
    height: 361px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 60%;
    transform: translate(-50%, -11%);
    top: 514px !important;
    /* z-index: 14; */
    z-index: -1;
}

.nav-container {
    margin: 0px auto;
    max-width: 1480px;
    padding: 0px 10px;
}

nav .wrapper {
    position: relative;
    height: 90px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0px;
}

.nav-links li {
    list-style: none;
}

.nav-links li>a:hover {
    color: rgb(103, 103, 103);
}

.nav-links>li>a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ser-item {
    padding: 0 20px;
    display: none;
    font-size: 20px;
    /* color: var(--white); */
}

.nav-links li a:hover {}

.fa-angle-down:before {
    font-size: 14px;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.6s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
    z-index: 11111;
}

#triangle-up0 {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid var(--black);
    left: 43%;
    position: relative;
}

#triangle-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid var(--black);
    left: 47%;
    position: relative;
}

.ul-nav {
    padding: 0px 8px 10px 8px;
    font-size: 16px;
    line-height: 40px;
    width: 20%;
}

.ul-nav>header {
    border-bottom: 1px solid var(--white);
    padding: 2px 0px 0px 10px;
}

.ul-nav>header>a {
    font-size: 16px;
    font-weight: bold;
    padding: 0px;
    text-decoration: none;
    color: var(--white);
}

.ul-nav>ul {
    padding-left: 0px;
    padding-top: 14px;
}

.ul-nav>ul>li>a {
    color: var(--white);
    padding: 0px;
    font-size: 16px;
    line-height: 40px;
    text-decoration: none;
    padding: 8px 10px 6px 10px;
}

.ul-nav>ul>li>a:hover {
    color: var(--white) !important;
    font-size: 16px;
    line-height: 40px;
    text-decoration: none;
    padding: 8px 10px 6px 10px;
    border-radius: 5px;
    background: linear-gradient(81.74deg, #2845EA 8.62%, #0BCF7E 53.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ul-nav>header:hover {
    background: linear-gradient(81.74deg, #2845EA 8.62%, #0BCF7E 53.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mega-box .nav-content {
    background: var(--black);
    padding: 15px 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

.mega-box .nav-content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.nav-content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-content .row header {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    padding: 0px 23px;
}

.nav-content .row .mega-links {}

.mega-links {
    padding-left: 0px;
}

.row .mega-links li a {
    color: var(--white);
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 22px;
}

.mb_menu_btn {
    position: absolute;
    right: 22px;
    top: 20px;
}

.let-talk-btn {
    text-decoration: none;
    color: var(--white) !important;
    padding: 12px 36px;
    border-radius: 50px;
    margin-top: 10px;
    font-size: 22px;
    background: linear-gradient(92.02deg, #0420BF 2.61%, #00FF96 105.39%);
    font-weight: 400;
}

.let-talk-btn:hover {
    color: var(--white);
}

nav input {
    display: none;
}

@media screen and (max-width: 1080px) {
    .ser_item_for_sm {
        display: none;
    }
    .ul-nav {
        width: 100%;
    }
    .let-talk-btn {
        display: none;
    }
    .wrapper .btn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: -100%;
        background: var(--white);
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: scroll;
        box-shadow: inset 0px 0px 10px rgb(143 132 132 / 50%);
        transition: all 0.3s ease;
        z-index: 2;
    }
    body.dark .wrapper .nav-links {
        background: var(--black);
        box-shadow: inset 0px 0px 10px rgb(163 155 155 / 50%);
    }
    .ser-item {
        padding: 0 20px;
        display: block;
        font-size: 20px;
        /* color: var(--black); */
        font-weight: 600;
    }
    .nav-links>li>a {
        color: var(--black);
    }
     ::-webkit-scrollbar {
        width: 10px;
    }
     ::-webkit-scrollbar-track {
        background: #242526;
    }
     ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }
    #menu-btn:checked~.nav-links {
        left: 0%;
    }
    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }
    #close-btn:checked~.btn.menu-btn {
        display: block;
    }
    .nav-links li {
        margin: 15px 10px;
    }
    .nav-links>li>a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box,
    #showMega1:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: var(--black);
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .nav-content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .nav-content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .nav-content .row:nth-child(1),
    .mega-box .nav-content .row:nth-child(2) {
        border-top: 0px;
    }
    .nav-content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }
    .row .mega-links li {
        margin: 0;
    }
    .nav-content .row header {
        font-size: 19px;
    }
}


/*_______ footer-sec section start _______*/

.footer-col h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.footer-col>h2>i {
    display: none;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000;
}

.footer-col ul {
    display: block;
}

.footer-section {
    margin-bottom: 15px;
}

.footer-sec {
    margin-top: -15px;
    margin-bottom: 25px;
}

.upper-footer {
    background: linear-gradient(51.45deg, #2845EA 20.72%, rgba(0, 255, 150, 0.75) 74.65%);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    display: flex;
    /* background: linear-gradient(90deg, hsla(239, 100%, 74%, 1) 0%, hsla(190, 68%, 50%, 1) 100%); */
}

.test {
    background: hsla(239, 94%, 14%, 1);
    background: linear-gradient(90deg, hsla(239, 94%, 14%, 1) 0%, hsla(190, 68%, 50%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(239, 94%, 14%, 1) 0%, hsla(190, 68%, 50%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(239, 94%, 14%, 1) 0%, hsla(190, 68%, 50%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#020344", endColorstr="#28B8D5", GradientType=1);
}

.upper-footer-l {
    width: 60%;
    padding: 20px 0px 30px 20px;
}

.upper-footer-r {
    width: 40%;
}

.upper-inner-footer-first {
    display: flex;
    flex-direction: column;
    /* margin-left: 150px; */
    color: var(--white);
    /* padding: 40px 1px; */
}

.upper-inner-footer {
    border: 2px solid;
    justify-content: center;
    margin: 0px auto;
}

.upper-inner-footer-f>a {
    text-decoration-line: underline;
    margin-bottom: 0px;
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
    font-weight: 700;
    line-height: 50px;
    font-size: 32px;
    color: white;
}

.upper-inner-footer-f>h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    padding-top: 15px;
}

.upper-inner-footer-s {
    display: flex;
    gap: 50px;
    padding-top: 20px;
}

.upper-inner-footer-s>div>h2 {
    text-decoration: none;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 32px;
}

.upper-inner-footer-s>div>p {
    font-size: 16px;
    margin-bottom: 0px;
}

.upper-inner-footer-t {
    padding-top: 16px;
}

.upper-inner-footer-t>a {
    border: none;
    border-radius: 50px;
    font-size: 18px;
    padding: 18px 40px;
    color: var(--black);
    font-weight: 500;
    margin-top: 0px;
    background: rgba(244, 247, 246, 1);
    text-decoration: none;
}

body.dark .upper-inner-footer-t>a {
    background: rgba(42, 42, 44, 1);
    color: var(--white);
}

.upper-inner-footer-t>a:hover {
    color: var(--black);
}

.upper-inner-footer-b {
    justify-content: end;
    display: flex;
}

.upper-inner-footer-bg>img {
    width: 398px;
    height: 270px;
    position: relative;
    top: 2%;
}

.middle-footer {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 2.11px solid rgba(188, 202, 200, 1);
    background: rgba(244, 247, 246, 1);
    display: flex;
    margin: 0;
}

.social-media {
    align-items: center;
    text-align: center;
}

.social-media>i {
    font-size: 20px;
    margin-right: 3px;
    color: var(--black);
}

.social-media>span {
    font-weight: 600;
    font-size: 24px;
}

.lower-footer {
    background: rgba(244, 247, 246, 1);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    padding: 30px 10px 10px 10px;
    color: var(--black);
}

.footer-section::after {
    background: url(../img/footer-bg.svg);
    position: absolute;
    width: 1000px;
    height: 1000px;
    background-size: cover;
    left: 250px;
    top: 192px;
}

.donation-shktkhnum {
    border-radius: 13px;
    background-color: var(--black);
    padding: 13px;
    display: flex;
    justify-content: right;
    width: 405px;
}

.donation-shktkhnum::before {
    background: url(../img/hospital.jpg);
    content: '';
    position: absolute;
    width: 152px;
    height: 157px;
    background-size: cover;
    background-repeat: no-repeat;
    left: 73px;
    border-radius: 8px;
}

.donation-desc {
    border-radius: 10px;
    padding: 10px;
    background-color: var(--black);
    width: 250px;
    margin: 8px;
    z-index: 1;
}

.donation-desc>h2 {
    background: linear-gradient(81.74deg, #2845EA 8.62%, #0BCF7E 53.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 20px;
}

.donation-desc>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--white);
}

.donation-desc>a {
    border: none;
    border-radius: 50px;
    font-size: 18px;
    padding: 5px 13px;
    color: var(--white);
    background: linear-gradient(93.01deg, #0420BF 2.99%, #32CDC4 123.23%);
    font-weight: 400;
    margin-top: 0px;
    text-decoration: none;
}

.lflower {}

.lflower-bg {
    position: relative;
    z-index: 1;
}

.lflower-bg::before {
    display: none;
}

.googleplay {
    margin-top: 10px;
}

.inside-cookie-sec {
    color: var(--black);
    position: relative;
    margin-top: 100px;
}

.inside-cookie-row {
    display: flex;
    position: relative;
}

.copy-right-privacy {
    border-top: 2.11px solid rgba(188, 202, 200, 1);
    margin: 0px 15px;
    display: flex;
    justify-content: space-between;
    padding-top: 7px;
    padding-bottom: 10px;
}

.privacy-heading2size {
    font-size: 40px;
    line-height: 70px;
    font-weight: 600;
}

.privacy-paragrapsize {
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 16px;
}

.cblog-heading2size {
    font-size: 75px;
    line-height: 68px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

.social-media-link {
    padding-top: 10px;
    padding-bottom: 6px;
}

.social-link {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.social-link>a>img {
    width: 25px;
    height: 25px;
}

.copy-right,
.cookies-privacy {
    margin-top: 8px;
}

.copy-right>span {
    margin-right: 30px;
    font-weight: 500;
    font-size: 16px;
}

.cookies-privacy>a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    margin-right: 8px;
}

.cookies-privacy>a:hover {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
}

.cookie-setting {
    margin-top: 60px;
}

.cookie-setting>a {
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(93.01deg, #0420BF 2.99%, #32CDC4 123.23%);
    font-size: 18px;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 500;
}


/* footer-end */

.contain {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer {
    width: 100%;
    position: relative;
    height: auto;
}

.footer-col>h2 {
    font-size: 22px;
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    padding-top: 13px;
}

.footer .footer-col {
    width: 190px;
    height: auto;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.footer .footer-col h1 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 17px;
    padding: 20px 0px 5px 0px;
    color: var(--black);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.flag-icon {
    width: 65px;
    height: 65px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.flag-icon-f {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-col ul {
    display: block;
}

.footer .footer-col ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer .footer-col ul li a {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    text-decoration: none;
    line-height: 30px;
    display: flex;
}

.footer .footer-col ul li a:hover {
    color: #635f5f;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
}

@media (max-width: 425px) {
    .contain {
        padding-left: 0px;
    }
    #triangle-up {
        left: 15%;
    }
    .just_fr__sm {
        display: block;
    }
    .let__talk__btn__fr__sm {
        width: 100px;
        color: var(--white);
        border-radius: 50px;
        padding: 0px 20px;
        font-size: 17px;
        margin-left: 18px;
        border-radius: 50%;
    }
    .footer-col>h2 {
        font-size: 22px;
        font-weight: 600;
        text-decoration-line: none;
        text-decoration-thickness: 0px;
        padding-top: 13px;
    }
    .upper-inner-footer-f {
        padding-right: 10px;
    }
    .upper-inner-footer-f>a {
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
        line-height: 24px;
        font-size: 20px;
    }
}