    /* Fonts */
    
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Poppins&display=swap');
     :root {
        --font-default: 'Open Sans', sans-serif;
        --font-secondary: "Inter", sans-serif;
    }
    /* Colors */
    
     :root {
        --color-default: #0E0147;
        --color-primary: #2B49D6;
        --color-secondary: #6D04FF;
    }
    /* Smooth scroll behavior */
    
     :root {
        scroll-behavior: smooth;
    }
    /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
    
    body {
        font-family: 'Open Sans', sans-serif;
    }
    
    a {
        color: var(--color-primary);
        text-decoration: none;
    }
    
    a:hover {
        color: 355e4a;
        text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-secondary);
    }
    /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
    
    .goog-te-banner-frame {
        display: none !important
    }
    
    .header {
        background: #fff;
        transition: all 0.5s;
        z-index: 997;
        height: 100px;
        border-bottom: 1px solid #fff;
        position: relative;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    }
    
    @media (max-width: 575px) {
        .header {
            height: 70px;
        }
    }
    
    .header.sticked {
        border-color: #fff;
        border-color: #eee;
    }
    
    .header .logo img {
        max-height: 50px;
        margin-right: 6px;
        margin-left: 50%;
    }
    
    .header .logo h1 {
        font-size: 28px;
        font-weight: 700;
        color: #000;
        margin: 0;
        font-family: var(--font-secondary);
    }
    
    .header .logo h1 span {
        color: var(--color-primary);
    }
    
    .header .get-involve-btn,
    .header .get-involve-btn:focus {
        font-size: 14px;
        color: #fff;
        background: var(--color-primary);
        padding: 8px 20px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 50px;
        transition: 0.3s;
    }
    
    .header .get-involve-btn:hover,
    .header .get-involve-btn:focus:hover {
        color: #fff;
        background: rgb(10, 89, 215);
    }
    
    section {
        scroll-margin-top: 90px;
    }
    /*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
    
    @media (min-width: 1280px) {
        .header .logo img {
            max-height: 80px;
            margin-right: 6px;
            margin-left: 50%;
        }
        .navbar {
            padding: 0;
            margin-right: 2%;
        }
        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }
        .navbar li {
            position: relative;
        }
        .navbar>ul>li {
            white-space: nowrap;
            padding: 10px 0 10px 28px;
        }
        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: #7f7f90;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }
        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }
        .navbar>ul>li>.nav-list-data:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--color-primary);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }
        .navbar a:hover:before,
        .navbar li:hover>a:before,
        .navbar .active:before {
            visibility: visible;
            width: 100%;
        }
        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover>a {
            color: #000;
        }
        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 28px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
            border-radius: 4px;
        }
        .navbar .dropdown ul li {
            min-width: 200px;
        }
        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            font-weight: 600;
        }
        .navbar .dropdown ul a i {
            font-size: 12px;
        }
        .navbar .dropdown ul a:hover,
        .navbar .dropdown ul .active:hover,
        .navbar .dropdown ul li:hover>a {
            color: var(--color-primary);
        }
        .navbar .dropdown:hover>ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }
        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }
        .navbar .dropdown .dropdown:hover>ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
    }
    
    @media (min-width: 1280px) and (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
            left: -90%;
        }
        .navbar .dropdown .dropdown:hover>ul {
            left: -100%;
        }
    }
    
    @media (min-width: 1280px) {
        .mobile-nav-show,
        .mobile-nav-hide {
            display: none;
        }
    }
    /*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
    
    @media (max-width: 1279px) {
        .header .get-involve-btn,
        .header .get-involve-btn:focus {
            font-size: 14px;
            color: #fff;
            background: var(--color-primary);
            padding: 8px 20px;
            margin-left: 10px;
            margin-right: 10px;
            border-radius: 50px;
            transition: 0.3s;
        }
        .navbar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            border-left: 1px solid #666;
            bottom: 0;
            transition: 0.3s;
            z-index: 9997;
        }
        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(255, 255, 255, 0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }
        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-secondary);
            border-bottom: 2px solid rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-weight: 600;
            color: #7f7f90;
            white-space: nowrap;
            transition: 0.3s;
        }
        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }
        .navbar a:hover,
        .navbar .nav-list-data:hover>a {
            color: #000;
        }
        .navbar .active,
        .navbar .active:focus {
            color: #000;
            border-color: var(--color-primary);
        }
        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid #eee;
        }
        .navbar .dropdown>.dropdown-active,
        .navbar .dropdown .dropdown>.dropdown-active {
            display: block;
        }
        .mobile-nav-show {
            color: var(--color-secondary);
            font-size: 28px;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s;
            z-index: 9999;
            margin: 0 10px 0 20px;
        }
        .mobile-nav-hide {
            color: var(--color-secondary);
            font-size: 32px;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s;
            position: fixed;
            right: 20px;
            top: 20px;
            z-index: 9999;
        }
        .mobile-nav-active {
            overflow: hidden;
        }
        .mobile-nav-active .navbar {
            right: 0;
        }
        .mobile-nav-active .navbar:before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.8);
            z-index: 9996;
        }
    }
    
    a,
    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
    }
    
    a,
    a:active,
    a:focus {
        color: #333;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -webkit-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        transition-duration: .2s;
        -ms-transition-duration: .2s;
        -moz-transition-duration: .2s;
        -webkit-transition-duration: .2s;
        -o-transition-duration: .2s;
    }
    
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    section {
        padding: 60px 0;
        /* min-height: 100vh;*/
    }
    
    .footer {
        position: absolute;
        width: 100%;
        background: linear-gradient(105deg, #6e99e6, #093c94);
        padding-top: 80px;
        padding-bottom: 40px;
    }
    /*END FOOTER SOCIAL DESIGN*/
    
    @media only screen and (max-width:768px) {
        .single_footer {
            margin-bottom: 30px;
        }
    }
    
    .single_footer h4 {
        color: #fff;
        margin-top: 0;
        margin-bottom: 25px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 20px;
    }
    
    .single_footer h4::after {
        content: "";
        display: block;
        height: 2px;
        width: 40px;
        background: #fff;
        margin-top: 20px;
    }
    
    .single_footer p {
        color: #fff;
    }
    
    .single_footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .single_footer ul li a {
        color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        line-height: 36px;
        font-size: 15px;
        text-transform: capitalize;
    }
    
    .single_footer ul li a:hover {
        color: #090909;
    }
    
    .single_footer_address ul li {
        color: #fff;
    }
    
    .single_footer_address ul li span {
        font-weight: 400;
        color: #fff;
        line-height: 28px;
    }
    
    .contact_social ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }
    /*START NEWSLETTER CSS*/
    
    .subscribe {
        display: block;
        position: relative;
        margin-top: 15px;
        width: 100%;
    }
    
    .subscribe__input {
        background-color: #fff;
        border: medium none;
        border-radius: 5px;
        color: #333;
        display: block;
        font-size: 15px;
        font-weight: 500;
        height: 60px;
        letter-spacing: 0.4px;
        margin: 0;
        padding: 0 150px 0 20px;
        text-align: center;
        text-transform: capitalize;
        width: 100%;
    }
    
    @media only screen and (max-width:768px) {
        .subscribe__input {
            padding: 0 50px 0 20px;
        }
    }
    
    .subscribe__btn {
        background-color: transparent;
        border-radius: 0 25px 25px 0;
        color: #01c7e9;
        cursor: pointer;
        display: block;
        font-size: 20px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
    }
    
    .subscribe__btn i {
        transition: all 0.3s ease 0s;
    }
    
    @media only screen and (max-width:768px) {
        .subscribe__btn {
            right: 0px;
        }
    }
    
    .subscribe__btn:hover i {
        color: #ffffff;
    }
    
    button {
        padding: 0;
        border: none;
        background-color: transparent;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
    /*END NEWSLETTER CSS*/
    /*START SOCIAL PROFILE CSS*/
    
    .social_profile {
        margin-top: 40px;
    }
    
    .social_profile ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
    }
    
    .social_profile ul li {
        float: left;
    }
    
    .social_profile ul li a {
        text-align: center;
        border: 0px;
        text-transform: uppercase;
        transition: all 0.3s ease 0s;
        margin: 0px 5px;
        font-size: 18px;
        color: #fff;
        border-radius: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    @media only screen and (max-width:768px) {
        .social_profile ul li a {
            margin-right: 10px;
            margin-bottom: 10px;
        }
    }
    
    @media only screen and (max-width:480px) {
        .social_profile ul li a {
            width: 40px;
            height: 40px;
            line-height: 40px;
        }
    }
    
    .social_profile ul li a:hover {
        background: #060606;
        border: 1px solid #000000;
        color: #fff;
        border: 0px;
    }
    /*END SOCIAL PROFILE CSS*/
    
    .copyright {
        margin-top: 70px;
        padding-top: 40px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        text-align: center;
    }
    
    .copyright a {
        color: #01c7e9;
        transition: all 0.2s ease 0s;
    }
    
    .copyright a:hover {
        color: #000000;
    }