:root {
    --primary-color: #00A6D9;
    --secondary-color: #D9DE72;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --font-color: #293134;
    --background-color: #fff;
    --light-blue-color: #F6FBFD;
    --light-green-color: #FEFFE4;
    --light-grey-color: #DBDBDB;

    --primary-font: 'Roboto Condensed', sans-serif;
    --secondary-font: 'Poppins', sans-serif;

    --primary-font-size: 18px;
}

/* Example usage */

body {
    background-color: var(--background-color);
    color: var(--font-color);
    font-family: var(--primary-font);
    font-size: var(--primary-font-size);
    font-weight: 300
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--font-color)
}

.info-box .container {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
    background-image: url(../img/shapes-bg.svg);
    background-position: top right;
    background-size: 30%;
    background-repeat: no-repeat;
    padding: 80px 40px;
    text-align: left;
}
.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);

}
a:hover{
    opacity: .9;
}

body {
    font-family: "Roboto Condensed", sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: var(--secondary-font);
    letter-spacing: -1px;
    font-weight: 600;
    margin-bottom: 30px;
}
.h1, h1 {
    font-size: 3rem;
}
.h2, h2 {
    font-size: 2.6rem;
}
.h3, h3 {
    font-size: 2.3rem;
}
p{
    margin-bottom: 40px;
}
.btn-wrapper{
    display: flex;
    align-items: center;
    gap: 20px
}
.btn {
    text-transform: uppercase;
    line-height: 1;
    padding: 13px 65px;
    border-radius: 12px;
    font-size: 0.9em;
    outline: none !important;
    box-shadow: none !important;
}
.btn-icon{
display: flex;
    align-items: center;
    padding: 0;
    width: auto
}
.btn-icon svg{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background-color: var(--secondary-color);
}
.align-items-center{
    align-items: center;
}
.header{
    /*background-color: #f8f9fa;*/
    padding: 20px 0;
}
.navbar {
    padding: .5rem 0;
}
.navbar-brand img {
    max-width: 120px;
}
ul.navbar-nav{
    align-items: center;
}
li.nav-item {
    margin: 0 20px;
}
li.nav-item:last-of-type {
    margin-right: 0
}
.navbar-light .navbar-nav .nav-link {
    color: inherit;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.2px;
    font-weight: 400;
}
.navbar-light .navbar-nav .nav-link.active{
    color: var(--primary-color)
}
.section {
    padding: 100px 20px;
}
.hero-section{
    padding: 50px 20px
}
.hero-section .row{
    align-items: center;
}
.hero-section .btn {
    /*margin-top: 20px;*/
}
.section-title {
    text-align: center;
    padding: 60px 20px;
}
.section-title h2 {
    margin-bottom: 20px;
}
.card img {
    max-width: 100%;
    height: auto;
}

.project-section, .support-section, .cta-section >div {
    padding: 60px 20px;
}
.section.cta-section {
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
}
.cta-section >div{
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 12px;
}
.cta-section p{
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn {
  /*  background-color: #fff;
    color: #007bff;
    border: none;
    margin-top: 20px;*/
}
.bg-light-blue{
    background: var(--light-blue-color)
}
.bg-light-green{
    background: var(--light-green-color) !important;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.bg-secondary{
    background-color: var(--secondary-color) !important;
}
.no-bg{
    background: none !important;
}
.img-shape{
    position: relative;
    margin-right: 30px
}
.img-shape img{
    border-radius: 12px;
}
.img-shape:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 30px;
    top: 30px;
    background: var(--light-grey-color);
border-radius: 12px;
    z-index: -1;
}
.project-section{
    background-image: url(../img/circles-bg.svg);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    /*padding: 80px 40px;*/
}
.project{
    display: flex;
    align-items: center;
    background: #EAF2F4;
    border-radius: 12px;
    overflow: hidden;
}
.project-body {
    padding: 50px;
}
.project-img{
    height: 100%;
}
.project-img img{
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.project-tag{
    text-transform: uppercase;
    line-height: 1;
    padding: 13px 40px;
    font-size: 0.9em;
    position: absolute;
    top: 0;
    font-weight: 400;
    text-align: center;
    left: 15px;
}
.card-title {
    margin-bottom: 30px;
}
button.slick-arrow {
    position: absolute;
    top: 43%;
    font-size: 0;
    width: 40px;
    height: 40px;
    background-image: url(../img/slide-arrow.svg);
    background-size: contain;
    background-color: transparent;
    background-position: center;
    border: none;
    outline: none
}
button.slick-prev.slick-arrow {
    left: -50px;
}
button.slick-next.slick-arrow{
    right: -50px;
    transform: rotate(180deg);
}
.section .info-box{
    padding: 25px;
    border-radius: 12px;
    box-shadow: 1px 1px 18px 2px #efeded;
}
.section .info-box p{
    margin-bottom: 0;
}
.section .info-box .num{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    font-family: var(--secondary-font);
}
.support-section .info-box.bg-primary .num{
    background-color: #fff;
    color: var(--primary-color);
}
.info-box h4 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.hero-section .project-tag{
    position: static;
    width: auto;
    display: inline-block;
}
.project-cover{
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.summary-box {
    padding: 50px 40px !important;
    border: 1px solid #D2D7D8;
    border-radius: 12px;
    box-shadow: none !important;
    margin-top: 60px;
    margin-right: 50px
}
.summary-section .project-info {
    margin-top: 0px;
    box-shadow: 0 13px 18px 0px #efeded;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.summary-section .h2, .summary-section h2 {
    font-size: 2rem;
}
.summary-section .project-info p {
    margin-bottom: 30px;
}
.features{
    margin-top: 40px
}
.features .feature{
    margin-bottom: 10px;
}
.feature img{
    float: left;
    margin: 0 10px 10px 0
}
.title-box{
    padding: 10px;
    text-align: center;
    background-color: #fff;
    line-height: 1.1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-box{
    padding: 40px 40px 40px 70px;
    background-color: #fff;
    margin-top: 15px;
    min-height: 225px
}
.text-box .features{
    margin-top: 0;
    margin-left: -35px;
}
.projects-hero{
    background-image: url(../img/project-hero-bg.svg);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px
}
.projects-hero p, .features-hero p{
    max-width: 600px;
    margin: 0 auto
}
.features-hero{
    background-image: url(../img/features-hero-bg.svg);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px
}
.boxes .info-box{
    min-height: 287px;
}
.sidebar-sticky {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 20px; /* Adjust this value as needed */
}
.article-nav li{
    list-style: none;
}
.article-nav li a{
    padding: 20px 40px;
    color: inherit;
    font-weight: bold;
    display: block;
    text-decoration: none !important;
  }
.article-nav li a.active{
    background-color: var(--light-blue-color);
}
.article-nav{
    padding: 0;
}
.article-section{
    padding-top: 50px;
}
.article-section:first-of-type{
    padding-top:20px
}
.article-section h3{
    color: var(--primary-color);
    margin-bottom: 0
}
.article-section h4{
    text-transform: uppercase;
}
.article-section .subtitle{
    margin-bottom: 0;
}
hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.mission-section .container{
    background-image: url("../img/mission-bg.svg");
    background-size: contain;
    position: relative;
}
.mission-section p{
    max-width: 550px;
    margin: 0 auto 20px;
    font-weight: 500
}
.mission-section .container:before{
    content: "";
    position: absolute;
    left: 0;
    top: 60px;
    width: 150px;
    height: 50px;
    background-image: url("../img/waves.svg");
    background-size: contain;
    background-repeat: no-repeat;

}
.vision-bg{
    background-image: url("../img/our-vision-img.jpeg");
    background-size: cover;
    height: 100%
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: var(--primary-color);
}
.marquee {
    display: flex;
    animation: marquee 20s linear infinite;
    padding: 20px 0 20px 20px
}
.marquee .word{
    margin-right: 10%;
    font-size: 3.3rem;
font-family: var(--secondary-font);
    font-weight: 500;
    color: #fff
}
.pt-100{
    padding-top: 100px
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
footer{
    background-color: var(--light-blue-color);
    padding: 200px 0 80px;
    margin-top: -150px;
    z-index: 0;
    position: relative;
}
footer .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-end;
}
footer .navbar-nav a{
    color: inherit;
    text-transform: uppercase;
    font-size: 0.9em;
}
.learn-more{
    cursor: pointer;
}
.more-text{
    display: none;
}
@media screen and (max-width: 992px){
    .navbar-light .navbar-toggler {
        outline: none;
    }
    .h1, h1 {
        font-size: 2rem;
    }
    .h2, h2 {
        font-size: 1.6rem;
    }
    .h3, h3 {
        font-size: 1.3rem;
    }
    header.header {
        padding-left: 15px;
    }
    .hero-section .btn-wrapper {
        margin-bottom: 40px;
    }
    .btn-primary, .btn-secondary{
        padding-right: 30px;
        padding-left: 30px;
        white-space: nowrap;
    }
    .img-shape {
        margin-bottom: 60px;
    }
    .section {
        padding: 50px 10px !important;
    }
    .section-title {
        padding: 0 0 20px;
    }
    .project-section {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0 !important;
    }
    .project-body {
        padding: 20px;
    }
    div#project-carousel {
        padding: 0 10px;
    }
    footer{
        text-align: center;
    }
  li.nav-item {
        margin: 0;
    }
    footer ul{
        gap: 20px
    }
    footer .navbar-brand{
       margin-bottom: 30px;
    }
    footer .navbar-nav {
        justify-content: center;
    }
    .summary-box{
        margin-right: 0;
        margin-top: 40px;
        padding: 30px 20px !important;
    }
    .order-md-2{
        order: 2
    }
    .pb-0, .py-0 {
        padding-bottom: 0 !important;
    }
    .pt-0 {
        padding-top: 0 !important;
    }
    .p-b-md-0{
        padding-bottom: 0 !important;
    }
    .text-box .features {
        margin-left: 0;
    }
    .text-box {
        padding: 30px 20px;
        margin-top: 5px;
    }
    .feature img {
        margin: 0 10px 0 0;
    }
    button.slick-next.slick-arrow {
        right: -20px;
    }
    button.slick-prev.slick-arrow {
        left: -20px;
    }
    .projects-hero, .features-hero {
        background-size: 100px;
    }
    .marquee .word{
        font-size: 2rem
    }
    .mission-section .container:before{
        top: 20px
    }
    .mission-section .container {
        background-size: 85px;
    }
}