:root {
    --primary-color:#33CCCC;
    --primary-dark-color:#1D7575;
    --button-color:#61b752;
    --button-hover-color:#4f9742;
    --secondary-color:#4f810d;
    --secondary-dark-color:#273B14;
    --overlay-color:#333333;
    --grey-color:#A1A1A1;
    --grey-light-color:#EDEDED;
    --white-color:#fff;
    --alert-color:#f7991e;
    --warning-color:rgb(252, 38, 38);
    --menu-speed: 0.7s;

    --gbv-color1: #eb1212;
    --gbv-color2: #9c29e9;

    --cde-color2: #057695;
    --cde-color3: #A11F4E;

    --scft-color1: #ffa200;
    --scft-color2: #00d9ff; 

    --scd-color1: #f7d61d;
    --scd-color2: #89C541;
    
    --animate-speed:1s;

    --c1: hsla(348, 97%, 63%, 0.65);
    --c2: hsla(230, 96%, 62%, 0.65);
    --c3: hsla(184, 96%, 62%, 0.65);
  }

.success{
    border: 3px solid green !important;
}
.error{
    border: 3px solid red !important;
}


.spectral-extralight {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-style: normal;
}
  
  /* website fonts Spectral static */
.spectral-light {
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: normal;
}
.spectral-regular {
    font-family: "Spectral", serif;
    font-weight: 400;
    font-style: normal;
}
.spectral-medium {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-style: normal;
}
.spectral-semibold {
    font-family: "Spectral", serif;
    font-weight: 600;
    font-style: normal;
}
.spectral-bold {
    font-family: "Spectral", serif;
    font-weight: 700;
    font-style: normal;
}
.spectral-extrabold {
    font-family: "Spectral", serif;
    font-weight: 800;
    font-style: normal;
}
.spectral-extralight-italic {
    font-family: "Spectral", serif;
    font-weight: 200;
    font-style: italic;
}
.spectral-light-italic {
    font-family: "Spectral", serif;
    font-weight: 300;
    font-style: italic;
}
.spectral-regular-italic {
    font-family: "Spectral", serif;
    font-weight: 400;
    font-style: italic;
}
.spectral-medium-italic {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-style: italic;
}
.spectral-semibold-italic {
    font-family: "Spectral", serif;
    font-weight: 600;
    font-style: italic;
}

.success{
    border-color: 3px solid green !important;
}
.error{
    border-color: 3px solid red !important;
}
small{
    color: red;
    font-weight: bolder;
}
h1{
    font-size: 70px;
    color: rgb(75, 74, 74);
    font-weight: 100;
}
h2{
    font-size: 60px;
    color: rgb(75, 74, 74);
    font-weight: 100;
}
h3{
    font-size: 40px;
    color: rgb(75, 74, 74);
    font-weight: 100;
}
h4{
    font-size: 30px;
    font-weight: 500;
    color: rgb(75, 74, 74);
}
h5{
    font-size: 20px;
    font-weight: 400;
    color: rgb(75, 74, 74);
}
p{
    font-size: 16px;
    color: rgb(75, 74, 74);
}
small{
    font-size: 13px;
    font-weight: 100;
    color: rgb(75, 74, 74);
}
span{
    font-size: 16px;
}                            
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
html{
    overflow-x: hidden;
}

/* website body */
body{
    margin: 0px;
    height: 100vh;    
   
    font-family: "Open Sans", serif;
    font-weight: 400;
    transition: 0.3s;
    font-style: normal;
    background-color: white;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    
}

/*Navigation Section*/
.primary-header{ 
    width: 100%;
    padding: 10px 80px;
    background-color: var(--primary-color);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;

    #brand {
        font-weight: bold;
        font-size: 18px;
        display: flex;
        align-items: center;

        img{
            width: 320px;
        }
    }
    
    .navbar{
        list-style: none;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .navbar .nav-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
 
    .navbar i{
        font-size: 30px;
        transition: 0.2s;
        margin-bottom: 10px;
    }
    .navbar a{
        color:#124e4e;
        text-decoration: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
        font-weight: 500;
    }
    .navbar a:hover, .navbar  a.active{
        color: rgb(255, 255, 255);
    }
 
    .navbar .nav-item{
        padding: 5px 15px;
        transition: all 2s ease;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
    }
   
    #hamburger-icon{
        margin: auto 0;
        display: none;
        cursor: pointer;
    }
    #hamburger-icon div{
        width: 35px;
        height: 3px;
        background-color: white;
        margin: 6px 0;
        transition: 0.4s;
    }
    .open .bar1{
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    .open .bar2{
        opacity: 0;
    }
    .open .bar3{
        -webkit-transform: rotate(45deg) translate(-6px, -8px);
        transform: rotate(45deg) translate(-6px, -8px);
    }
    .open .mobile-menu{
        width:100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        text-align: end;
        background-color: rgb(46, 45, 45);
    }
    .mobile-menu{
        display: none;
        position: absolute;
        align-items: start;
        top: 80px;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: #212425;
        padding: 30px 60px;
        text-decoration: none;
    }
    .mobile-menu {
        margin-top: 15px;
        text-decoration: none;

        a{
            text-decoration: none;
            font-size: 16px;
            color: white;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;

            i{
                font-size: 30px;
                margin-right: 10px;
            } 
        }
        a:hover{
            color: var(--primary-color);
        }
    }
}

.primary-header.sticking{
    background-color: hsl(0 0% 7%);
   
     .navbar i{
        font-size: 25px;
        transition: 0.2s;
    }
    nav a{
        color:#949494;
        text-decoration: none;
        text-align: center;
    }   
}

section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title span{
    font-size: 60px;
    color: var(--primary-color);
  
}

/*compliance section start */
.org-compliance{
    width: 100%;
    height: 50px;
    background-color: var(--primary-dark-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0 0 0;
  
    .group-holder{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: end;
        padding: 0 60px;
        color: white;
         
        marquee{
            display: flex;
            align-items: center;

            .in-marquee{
                display: flex;
                align-items: center;
                flex-direction: row;
                .flag{
                    display: flex;
                    align-items: center;
                    img{
                width: 40px;
                border-radius: 3px;
                margin-right: 15px;
                    }
                    h2{
                    font-weight: 100;
                    color: white;
                    line-height: 35px;
                    font-size: 16px;
                    padding: 0;
                    margin-right: 15px;
                    }
                }
                .content{
            height: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            p{
                font-size: 13px;
                color: white;
                margin-left: 25px;
            }
                }
            }
        }
}   }

/*Hero section start */
.hero{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    .hero-main{
        width: 100%;
        margin: 0;
    
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
 
        .mySlides {
            display: none
        }

        img {
            vertical-align: middle;
        }

        /* Slideshow container */
        .slideshow-container {
            max-width: 100%;
            height: 100vh;
            position: relative;
            margin: auto;
            
            .mySlides{
                width: 100%;
                height: 100%;
                overflow: hidden;
 
                img{
                    width: 100%;
                    background-size:auto;
                }
            }
            .mySlides.one{
                height: 100%;
                background:linear-gradient(to bottom, #ffffff, #ffffffc0, #ffffff), 
                url(/img/images/img6.jpg) no-repeat center center / cover;
            }
            .mySlides.two{
                height: 100%;
                background:linear-gradient(to bottom, #02c0b0, #01f5e181, #02c0b0),
                url(/img/images/img10.jpg) no-repeat center center / cover;
            }
        }

        /* Next & previous buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 30px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease-in-out;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: var(--scd-color2);
           
        }

        /* Position the "next button" to the right */
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        /* On hover, add a black background color with a little bit see-through */
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* Caption text */
        .text {
            color: #464343;
            font-size: 15px;
            padding: 8px 12px;
            position: absolute;
            bottom: 8px;
            width: 100%;
            text-align: center; 
    
            .footer{
                width: 100%;
                background:linear-gradient(to right, #ffffff00, #1d75751a, #ffffff00);
                   
                h2{ 
                    color: rgb(49, 49, 49);
                    font-size: 20px;
                    letter-spacing: 3px;
                    font-weight: 100;
                }
            }
        }

        .text-body{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

            .information-body{
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 0 120px;

                .title{
                    margin-bottom: 30px;
                    h4{
                        margin-bottom: 90px;
                    }
                    h1{
                        font-size: 90px;
                        font-weight: 900;
                        line-height: 100px;
                        color: var(--primary-dark-color);
                        span{
                            font-size: 90px;
                        }
                    }
                    h3{
                        font-size: 60px;
                    }
                }
 
                .inner-group{
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    text-align: center;
                    justify-content: center;
                    margin-top: 30px;
               
                    .in-circle{
                        width: 200px;
                        height: 200px;
                        background-color: #165858;
                        border: 12px solid var(--primary-dark-color);
                        border-radius: 100%;
                        margin: 9px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        
                        i{
                            font-size: 90px;
                            color: white;
                        }
                    }

                    p{
                        font-size: 20px;
                        font-weight: 400;
                        color: #222;
                        letter-spacing: 2px;
                    }
                }
            }

            .donation-group{
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                padding: 0px 120px;

                .donation-head{
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    justify-content: center;
                    text-align: start;
                    padding: 0 70px 0 0;

                    h2{
                        font-size: 60px;
                        font-weight: 900;
                        line-height: 70px;
                        color: var(--primary-dark-color);
                    }
                    span{
                        font-size: 60px;
                        color: white;
                        text-transform: uppercase;
                    }
                    h4{
                        font-weight: 300;
                        color: rgb(255, 255, 255);
                        line-height: 45px;
                        margin-top: 25px;
                    }
                    
                    .don-btn{
                        width: 100%;
                        display: flex;
                        align-items: start;
                        margin-top: 30px;
                        
                        a{
                            font-size:20px;
                            text-decoration: none;
                            margin: 5px;
                            padding: 10px 50px;
                            font-weight: 200;
                            background-color: rgb(3, 104, 134);
                            color: white;
                            border-radius: 6px;
                        }
                        .info-don-btn:hover{
                            background-color: #09568a;
                        }
                        .donate-btn:hover{
                            background-color: #8a6c09;
                        }
                    }
                }

                .donation-info{
                    background-color: rgba(1, 41, 53, 0.534);
                    border-radius: 9PX;
                    padding: 30px 30px;

                    h3{
                        color: rgb(44, 44, 44);
                    }
              
                    #countdown-wrap {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 20px;
                        max-width: 600px;

                        .donation-wrapper{
                            width: 100%;
                            .font{
                                position: relative;
                                display: flex;
                                justify-content: space-between;
                            }
                            .goal{
                                width: 100%;
                                display: flex;
                                justify-content: space-between;
                                
                            } 

                            #goal, .fontFix {
                                font-size: 35px;
                                color: #ffffff;

                                h4{
                                    color: white;
                                }
                                @media only screen and (max-width : 640px) {
                                    text-align: center;  
                                }
                            }
                            #glass {
                                width: 100%;
                                height: 20px;
                                background: #c7c7c7;
                                border-radius: 10px;
                                float: left;
                                overflow: hidden;
                            }
                            #progress {
                                float: left;
                                height: 20px;
                                background: #ee3a43;
                                z-index: 333;
                            }
                            .goal-stat {
                                padding: 10px;
                                float: left;
                                margin: 0;
                                color: #ffffff;
  
                                @media only screen and (max-width : 640px) {
                                    width: 50%;
                                    text-align: center;
                                }
                            }
                            .goal-number, .goal-label {
                                display: block;
                            }
                            .goal-number {
                                font-weight: bold;
                            }
                        }
                    }
                     
                    hr{
                        margin: 20px 0;
                        color: white;
                    }
                    .donation-track{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                    }
                    .donation-track.equipment{
                        width: 600PX;
                        padding: 0 0px;
                        
                        h3{
                            font-size: 40px;
                            font-weight: 300;
                            color: whitesmoke;
                            margin-bottom: 20px;
                        }

                        .equip-group{
                            width: 100%;
                            height: 100%;
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            justify-content: center;

                            .equip-item {
                                max-height:max-content;
                                width: 100%;
                                
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                justify-content: center;
                                text-align: center;
                                margin: 5px;

                                i{
                                    width: 120px;
                                    height: 120px;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    font-size: 60px;
                                    margin-bottom: 10px;
                                    color: whitesmoke;
                                    border-radius: 100px;
                                    background-color: var(--primary-dark-color);
                                    padding: 20px;
                                }
                                h3{
                                    font-size: 16px;
                                    font-weight: 600;
                                    color:#ffffff;
                                    margin-bottom: 5px;
                                }
                                .counter{
                                    font-size: 60px;
                                    color:#ffffff;
                                    font-weight: 400;
                                    font-family: 'Robot Mono',          sans-serif;                
                                }
                            }

                            .equip-item.one{
                                i{
                                  
                                    background-color: #d8a911;
                                }
                            }
                            .equip-item.two{
                                i{
                                 
                                    background-color: #c43939;
                                }
                            }
                            .equip-item.three{
                                i{
                             
                                    background-color: #027bcc;
                                } 
                            }
                            .equip-item.four{
                                i{
                        
                                    background-color: #0ba80b;
                                }
                            }
                        }
                    }
                }
            }
        }

        .progres-bar{
            background-color: #959595;
            width: 300px;
            height: 10px;
            border-radius: 5px;  
        }
       
        .progres-bar div{
            height: 10px;
            border-radius: 5px;
            width: 50%;
            background: red;
             animation: grow 5s linear forwards;
            transform-origin:left ;
        }
         @keyframes grow {
            0%{
                transform: scaleX(0);
            } 
        }

        /* Number text (1/3 etc) */
        .numbertext {
            color: #f2f2f2;
            font-size: 12px;
            padding: 8px 12px;
            position: absolute;
            top: 0;
        }
        .slide-btn{
            padding: 8px 12px;
            position: absolute;
            bottom: 0px;
            width: 100%;
            text-align: center;

            .dot {
                cursor: pointer;
                height: 30px;
                width: 30px;
                margin: 0 6px;
                background-color: #bbb;
                border-radius: 50%;
                display: inline-block;
                transition: background-color 0.6s ease;
            }
        }
        /* The dots/bullets/indicators */
        

        .active, .dot:hover {
            background-color: #717171;
        }

        /* Fading animation */
        .fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }

        @keyframes fade {
            from {opacity: .4} 
            to {opacity: 1}
        }

        /* On smaller screens, decrease text size */
        @media only screen and (max-width: 300px) {
            .prev, .next,.text {font-size: 11px}
        }
    }
}

/* Testimonial sections start */
.subscribtion{
    width: 100%;
    background-color: var(--primary-dark-color);
    padding: 0 60px;

    .subscribe-form{
        width: 100%;
        height: 150px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    
        .content{
           
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px;
            display: flex;
            flex-direction: row;
            align-items: center;
           
            i{
                font-size: 50px;
                color: #ffffff;
                margin-right: 15px;
            }
            h5{
                font-size: 25px;
                font-weight: 100;
                color: white;
                font-style: italic;
            }
        }

        .form-group{
            display: flex;
            align-items: center;
            justify-content: center;

            form{
                display: flex;
                width: fit-content;
                align-items: center;
                justify-content: center;
                flex-direction: row;
                padding: 10px 90px;
                border-radius: 50px;
                
                input{
                    outline: none;
                    padding: 10px 20px;
                    width: 400px;
                    height: 50px;
                    font-size: 16px;
                    border-radius: 0px;
                    border: 1px solid #bbbbbb;
                }

                button{
                    width: 150px;
                    height: 50px;
                    background-color: red;
                  
                    border: none;
                    outline: none;
                    cursor: pointer;
                    border-radius: 0px;
                    font-size: 16px;
                    color: white;
                }
                button:hover{
                    background-color: var(--button-hover-color);
                }

                img{
                    width: 40px;
                }
            }
        }
    }
}

/* about the organisation section start */
.about{
    width: 100%;
    max-height: auto;
    display: flex;
    padding: 120px 120px;

    .about-container{
        width: 100%;
        max-height: 100%;
        height: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 0;

        .in-container.info{
            width: 100%;
            max-height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            padding: 0;
            margin: 0;     

            h3{
                font-size: 50px;
                margin-bottom: 25px;
            }
            
            .inner-container{
                display: flex;
                flex-direction: column;
                padding: 0 60px 0 0;
                .title{
                    width: 100%;
                    text-align: start;
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    margin-bottom: 10px;
                }

                .title span{
                    font-size: 60px;
                    color: var(--primary-color);
                    margin-right: 15px;
                }

                h4{
                    font-size: 30px;
                    font-weight: 300;
                    margin-bottom: 10px;
                    color: #222222;
                }

                p{
                    margin-top: 15px;
                    font-size: 20px;
                    line-height: 35px;
                    font-weight: 100;
                    color: #222222;
                }

                .mission{
                    display: flex;
                    width: 100%;
                    flex-direction: column;
                    justify-content: start;
                    align-items: start;
                    overflow: hidden;
                    background-color: #f0f0f0a2;
                    padding: 40px;
                    margin-top: 60px;
                    border-radius: 15px;

                    .title{
                     
                        h2{
                            font-size: 40px;
                            span{
                                font-size: 40px;
                                margin: 0;
                            }
                        }
                    }

                    .info{
                        h4{
                            font-size: 25px;
                        }
                        .info-content{
                            margin-top: 20px;
                            p{
                                font-size: 20px;
                                line-height: 30px;
                                color: #222222;
                                margin: 15px 0;
                            } 
                        }  
                    }
                }
            }

            .right-side{
                width: 1200px;
                max-height: 100%;
                background-color: var(--primary-color);
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 30px;
                border-radius: 15px;

                .card{
                    width: 100%;
                    padding: 20px;
                    border: 1px solid #076f7c;
                    background-color: var(--primary-dark-color);
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    margin: 10px;
                    border-radius: 9px;

                    .card-header{
                        width: 100%;
                        height: 150px;

                        h2{
                            font-size: 25px;
                        }
                    }
                    .card-content{
                        margin: 15px 0;
                        text-align: center;

                        h2{
                            font-size: 40px;
                            margin-bottom: 10px;
                            color: white;
                        }
                        p{
                            color: white;
                            font-weight: 100;
                            font-size: 13px;
                            line-height: 25px;
                        }
                    }

                    .card-header.one{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-image: url(/img/images/img7.jpg), linear-gradient(0deg, rgb(41, 40, 40),rgba(22, 22, 22, 0.836),rgb(41, 40, 40));
                        background-size: cover;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                    .card-header.two{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-image: url(/img/images/pro/img4.jpg), linear-gradient(0deg, rgb(41, 40, 40),rgba(22, 22, 22, 0.836),rgb(41, 40, 40));
                        background-size: cover;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
            }
        }
    }
}

 

/* Testimonial sections start */
#initiatives{
    width: 100%;
    max-height: max-content;
    padding: 60px 60px;
    background-color: #1e1f1f;
    display: flex;
    align-items: center;
    justify-content: center;

    .cards-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        
        h2{
            margin-bottom: 30px;
            font-weight: 100;
            font-size: 50px;
            color: white;
        }

        .item-group{
            display: flex;

            .item-list{
                display: flex;
                .card-item{
                    width: 250px;
                    height: 350px;
              
                    margin: 9px;
                    border-radius: 16px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;

                    img{
                        width: 120px;
                        margin-bottom: 30px;
                    }

                    .content{
                    
                        padding: 0 10px;
                        h3{
                            font-size: 16px;
                        }

                        p{
                            color: white;
                            font-size: 13px;
                            line-height: 20px;
                            margin-top: 10PX;
                        }
                    }
                    .brand{
                        width: 100%;
                        height: 100%;
                        display: none;
                     
                        img{
                            display: none;
                        }
                    }
                }
            
                .card-item.one{
                    border: 2px solid var(--cde-color2);
                    transition: flex 1.7s ease-in-out;

                    img{
                        width: 120px;
                    }
                    .content{
                        h3{
                            color: var(--primary-color);
                        }
                    }
                }
                .card-item.one:hover{
                    background-color: #ffffff;
                    box-shadow: none;

                    img{
                        width: 120px;
                        display: none;
                    }
                    .content{
                        display: none;
                        h3{
                            color: var(--primary-color);
                        }
                    }
                    .brand{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        img{
                            display: flex;
                            width: 250px;
                        }
                    }
                }
        
                .card-item.two{
                    border: 2px solid var(--scft-color1);
                    transition: flex 1.7s ease-in-out;
               
                    img{
                        width: 70px;
                    }
                    .content{
                        h3{
                            color: var(--scft-color1);
                        }
                    }
                }
                .card-item.two:hover{
                    background-color: #ffffff;
                    box-shadow: none;
                    img{
                        width: 120px;
                            display: none;
                    }
                    .content{
                        display: none;
                        h3{
                            color: var(--primary-color);
                        }
                    }
                    .brand{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        img{
                            display: flex;
                            width: 200px;
                        }
                    }
                }
        
                .card-item.three{
                    border: 2px solid var(--scd-color1);
                    transition: flex 1.7s ease-in-out;

                    img{
                        width: 100px;
                    }
                    .content{
                        h3{
                            color: var(--scd-color1);
                        }
                    }
                }
                .card-item.three:hover{
                    background-color: #ffffff;
                    box-shadow: none;
                    img{
                        width: 120px;
                        display: none;
                    }
                    .content{
                        display: none;
                        h3{
                            color: var(--primary-color);
                        }
                    }
                    .brand{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        img{
                            display: flex;
                            width: 250px;
                        }
                    }
                }
          
                .card-item.four{
                    border: 2px solid var(--gbv-color1);
                    transition: flex 1.7s ease-in-out;
                
                    img{
                        width: 100px;
                    }
                    .content{
                        h3{
                            color: var(--gbv-color1);
                        }
                    }
                }
                .card-item.four:hover{
                    background-color: #ffffff;
                    box-shadow: none;
                    img{
                        width: 120px;
                        display: none;
                    }
                    .content{
                        display: none;
                        h3{
                            color: var(--primary-color);
                        }
                    }
                    .brand{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        img{
                            display: flex;
                            width: 250px;
                        }
                    }
                }
            } 
        }
    }
}

/* Gallery section starts */
#gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 120px 0;
        
    .cons{
        display: flex;
        flex-direction: column;
        align-items: center;

        .in-con{
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            padding: 0 60px;

            .title {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: start;
                  
                h3{
                    font-size: 30px;
                    font-weight: 100;
                }
                
                p{
                    font-size: 25px;
                    font-weight: 100;
                    color: #486870;
                }          
            }

            .view-button{
                width: 100%;
                display: flex;
                justify-content: end;
                margin-top: 55px;
                display: flex;
                
                text-align: center;
                justify-content: end;
           
                a{
                    width: 250px;
                    height: 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    background-color: var(--scd-color2);
                   
                    border-radius: 9px;
                    text-decoration: none;
                    color: white;
                    font-size: 20px;
                }
            }
        }
        
        .carousel-list {
            overflow-x: auto;
            padding: 30px 36px;
            background-color: #ffffff;
            margin-top: 90px;
    
            &::-webkit-scrollbar {
                display: none;
            }

            .slider-content {
                padding: 0 28px;
                height: 350px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                -ms-overflow-style: -ms-autohiding-scrollbar;
    
                li{
                    list-style-type: none;
                    flex: 0 0 auto;
                    width: calc(30.333% - 8px);
                    margin: 0 10px;
                    cursor: pointer;
                    overflow: hidden;
                  
                    div{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
    
                        img{
                            border-radius: 8px;
                            width: 100%;
                        }
                    }
    
                    &:nth-of-type(3),
                    &:nth-of-type(7) {
                        position: relative;
                    }
                }
          
                &.next-animation {
                    transition: transform .7s ease;
                    pointer-events: none;
                }
            }
        }
    
        .prev, .next {
            height: 90px;
            width: 90px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            bottom: 0;
            top: 200px;
            margin: auto;
            cursor: pointer;
            background: rgba(22, 145, 0, 0.5);
            z-index: 999;
            color: white;
           
            &:hover {
                background: rgb(22, 145, 145);
            }
        
            i {
                color: #fff;
                padding: 12px;
                display: none;
            }
        }

        .next {
            right: 0px;
        }
        .prev{
            left: 0px;
        }

        &:hover {
            .prev i,
            .next i {
                display: block;
                font-size: 24px;
            }
        }

        .content{
            width: 100%;
            display: flex;
            justify-content: center;
            text-align: center;
            margin-top: 0px;
            display: flex;
            flex-direction: column;

            h3{
                font-size: 30px;
                font-weight: 100;
                color: rgb(59, 59, 59);
                padding: 35px 3px;
                background-color: #eeeeee;
            }

            .footprint{
                width: 100%;
                display: flex;
                justify-content: center;
                padding: 0 90px;
                margin-top: -20px;

                .print-item{
                    width: 200px;
                    height: 150px;
                    border: 2px solid #222222;
                    background-color: white;
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    justify-content: center;
                    margin: 0 5px;
                    padding: 10px 10px;
                    border-radius: 9px;
                    
                    h4{
                        color: #222222;
                    }
                    h5{
                        font-size: 16px;
                        font-weight: 100;
                        margin: 6px 0;
                    }
                    .item-box{
                        display: none;
                    }
                }

                .print-item:hover{
                    background-color: #222222;
                    border: 3px solid #00aaf3;
                    h4{
                        display: none;
                    }
                    h5{
                        display: none;
                    }
                    .item-box{
                        display: block;
                        p{
                            color: white;
                            cursor: pointer;
                        }
                    }
                }
            }
        }
    }
}

#gallery-view{
    width: 100%;
    max-height: max-content;
    padding: 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    .view-container{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title{
            width: 100%;
            text-align: center;
            margin-bottom: 30px;
        }

        .image-wrapper{
            width: 100%;
            height: 100%;
  
            display: flex;
            flex-wrap: wrap;
            justify-content: center;

            img{
                width: 450px;
                margin: 5px;
            }
        }
    }
    
}

.mini-nav{
    width: 100%;
    height: 70px;
    background-color: var(--primary-dark-color);
    padding: 0 60px;

    .nav-wrapper{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        .logo{
            img{
                width: 200px;
            }
        }
        .nav-item{
            a i{
                font-size: 40px;
                color: white;
                text-decoration: none;
            }
            a i:hover{
                color: var(--primary-color);
            }
        }
    }
}

/* Testimonial sections start 
    #testimonial{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    background-color: #f8f8f8;

    .wrap-testimonial{
        width: 100%;
        height: 100%;
        height: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .title{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;

            h2{
                font-weight: 100;
            }
        }
      
        .testimonials-container{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            background-color: #222222;
            color: white;
            border-radius: 15px;
            padding: 0 60px;
                   
            max-width: 986px;
            height: 350px;
            position: relative;
        
            .fa-qoute{
                color: rgba(255, 255, 255, 0.3);
                font-size: 28px;
                position: absolute;
                top: 70px;
            }

            .fa-qoute-right{
                left: 40px;
            }
            .fa-qoute-left{
                right: 40px;
            }

            .testimonial{
                line-height: 35px;
                text-align: justify;
                color: white;
                font-size: 25px;
            }
        
            .user{
                width: 100%;
                display: flex;
                align-items: center;
                justify-content:space-between;
                margin-top: 30px;

                .user-data{
                    border-radius: 50%;
                    margin-right: 15px;
                    display: flex;
                }
                        
                .user-image{
                    border-radius: 50%;
                    width: 70px;
                    height: 70px;
                    object-fit: cover;
                    border: 2px solid white;
                    margin-right: 15px;
                }

                .user-details{
                   margin-left: 10px;

                    p{
                        color: white;
                    }

                    .username{
                        margin: 0;
                    }
                            
                    .user-role{
                        font-weight: normal;
                        margin: 10px 0;
                    } 
                }         
            }
        }   
    }
    }
    .progress-bar{
    background-color: white;
    height: 4px;
    width: 100%;
    animation: grow 5s linear infinite;
    transform-origin: left;
    margin-bottom: 30px;
    }
    @keyframes grow {
    0%{
        transform: scaleX(0);
    }
    }
*/


/* Partnership sections start */
#founder{
    width: 100%;
     
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .title{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items:start;
        justify-content: center;
        margin-bottom: 30px;
        
        h2{
            color: #333333;
        }
        h4{
            font-size: 20px;
            font-weight: 100;
        }
    }
 
    .vid-testimonial{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
     
        .test-wrap{
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            
            .image{
                width: 40%;
                img{
                    width: 95%;
                    margin-bottom: 10px;
                }
                .vid-info{
                    width: 95%;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    
                    .info-item{
                        width: 50%;
                        height: 100%;
                        text-align: start;
                        h5{
                            color: #212425;
                        }
                    }
                    .button{
                        width: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: end;

                        a{
                            background-color: var(--scd-color2);
                            width: 100px;
                            height: 50px;
                            text-decoration: none;
                            color: white;
                            border-radius: 6px;
                            font-size: 16px;
                            display: flex;
                            text-align: center;
                            align-items: center;
                            justify-content: center;
                        }
                    }
                }
            }

            .vid-group{
                width: 60%;
                height: 100%;
                padding: 0 30px;
                display: flex;
                flex-direction: column;
                align-items: start;
                text-align: start;
                justify-content: center;
                
                .note{
                    width: 100%;
                    text-align: start;
                    margin-top: 15px;
                        
                    h5{
                        font-size: 20px;
                        color: var(--primary-color);
                        margin-bottom: 0;
                    }
                }

                .body-info{
                    width: 100%;
                    
                    p{
                        text-align: start;
                        font-size: 20px;
                        font-weight: 100;
                        margin-bottom: 15px;
                        line-height: 35px;
                    }
                }
               
            }
        }
    }     
}

/* Donatino section start */
.donations{
    width: 100%;
    height: 100%;
    padding: 0px;
    background-color: var(--primary-color);
      
    .wrap-donation{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content:space-between;
        text-align: center;

        .icon{
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            i{
                font-size: 330px;
                margin-bottom: 30px;
                color: white;    
            }
        }
        
        .body-text{
            width: 50%;
            height: 100%;
            background-color: var(--primary-dark-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px;

            .title{
                width: 100%;
                margin-bottom: 30px;
                text-align: center;

                h2{
                    color: white;
                }
            
                h3{
                    font-size: 25px;
                    font-weight: 100;
                    color: #ffffff;
                }
            }
            h4{
                color: white;
                font-weight: 100;
            }
            .button-btn{
                margin-top: 60px;

                a{
                    font-size: 25px;
                    text-decoration: none;
                    color: rgb(255, 255, 255);
                    background-color: var(--scd-color2);
                    padding: 10px 90px;
                    border-radius: 6px;
                }
            }
        }    
    }
}

/* Contact sections start */
#contact{
    width: 100%;
    height: 100vh;
    
    .contact-container{
        width: 100%;
        height: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title{
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

          
            h2{
                font-weight: 100;
            }
        }

        .content{
            width: 100%;  
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
     
            .content-group{
                width: 100%;
                height: inherit;
              
                .content-item{
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    display: flex;
                    flex-direction: column;

                    .item-info{
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        margin: 15px 0;

                        i{
                            font-size: 40px;
                            margin-right: 15px;
                            color: #1e1f1f;
                        }
                        h4{
                            font-size: 25px;
                            font-weight: 100;
                            color: #1e1f1f;
                        }
                        a{
                            font-size: 25px;
                            text-decoration: none;
                            color: #1e1f1f;
                            font-weight: 100;
                        }
                    }
                }

                .social-accounts{
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: end;
                    justify-content: center;
                    padding: 30px;

                    h5{
                      
                        font-weight: 100;
                         
                    }
                    
                    ul{
                        list-style: none;
                        display: flex;
                        align-items: end;
                        justify-content: center;
                        flex-direction: column;
                        border-radius: 50px;
                    }
                    
                    ul li{
                        padding: 5px;
                        margin: 10px;
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        justify-content: end;
                    }
                    ul li:hover{
                        transform: scale(1.1);
                        transition: 0.3s;
                    }

                    ul li a{
                        font-size: 25px;
                        font-weight: 100;
                        color: rgb(48, 48, 48);
                        text-decoration: none;
                        display: flex;
                        align-items: center;

                        span{
                            margin-left: 15px;
                        }
                    }
                    ul li i{
                        font-size: 40px;
                        margin-left: 15px;
                    }
                    ul li a .linkedin{
                        padding: 5px 30px;
                        border-radius: 6px;
                        font-weight: 500;
                        color: wheat;
                        background-color: #054480;
                        border: 3px solid #04315c;
                    }
                    ul li a .youtube{
                        padding: 5px 27px;
                        font-weight: 500;
                        border-radius: 6px;
                        background-color: red;
                        border: 3px solid rgb(199, 2, 2);
                        color: rgb(245, 245, 244);
                    }
                    ul li a .instagram{
                        padding: 5px 20px;
                        font-weight: 500;
                        border-radius: 6px;
                        color:wheat;
                        background-color: blueviolet;
                        border: 3px solid rgb(117, 38, 190);
                    }
                    ul li a .twitter{
                        padding: 5px 30px;
                        font-weight: 500;
                        border-radius: 6px;
                        background-color: dodgerblue;
                        border: 3px solid rgb(30, 124, 218);
                        color: wheat;
                    }
                }
            }
        }
    }
}

#underconstruction{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: start;

    .con-container{
        width: 100%;
        height: 400px;
        text-align: center;
        display: flex;
        justify-content: center;

        .in-container{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
         
            .bank-details{
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                background-color: var(--primary-color);

                .in-bank{
                    
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    .logo{
                        width:250px;
                        height: 250px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: #276331;
                        border-radius: 9px;
                        img{
                        
                        width: 150px;
                    }

                    } 
                    .inner-bank{
                        
                        display: flex;
                        align-items: start;
                        text-align: START;
                        flex-direction: column;
                        justify-content: center;
                        padding: 30px;
                        
                        .bank-info{
                            p{
                                font-size: 20px;
                            }
                        }
                    }
                }

            }
        }
        
        .in-container.one{
            background-color: #00aaf3;
        }
    }

    .un-body{
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        text-align: center;
        padding: 60px;
        
        h2{
            font-weight: 900;
                color: #f7991e;
                span{
                    font-size: 60px;
                    color: #1e1f1f;
                }
        }
    }
}

#donations-campaign{
    max-height: max-content;
    display: flex;
    justify-content: start;
    align-items: start;
    padding: 0;

    .campaign-container{
        width: 100%;
        max-height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .campaign-header{
            width: 100%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-image: url(/img/images/pro/img11.jpg),
            linear-gradient(0deg, rgb(41, 40, 40),
            rgba(22, 22, 22, 0.836),rgb(41, 40, 40));
            background-repeat: none;
            background-size: cover;
            background-blend-mode: multiply;

            .icon{
                width: 450px;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--primary-color);

                i{
                    font-size: 250px;
                    color: white;
                }
            }

            .title{
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: end;
                text-align: end;
                padding: 0 60px;
                line-height: 70px;
                h3{
                    color: var(--primary-color);
                }
                h2{
                    color: white;
                }
                h4{
                    color: white;
                }

            }
        }

        .campaign-body{
            width: 100%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;


            h2{
                font-weight: 900;
                color: #f7991e;
                span{
                    font-size: 60px;
                    color: #1e1f1f;
                }
            }
        }
    }
}

/* Footer sections start */
footer{
    background-color: #222222;
    padding: 60px;
    text-align: center;
    color: white;

    p{
        color: white;
    }
}

#quotes-container{
    width: 100%;
    min-height: 600px;
    display: flex;
    text-align: center;
    padding: 60px 120px;

    h2{
        font-weight: 600;
        font-style: italic;
        color: var(--primary-dark-color);
    }
 
}
.qone{
    background-image: url(/img/images/pro/img3.jpg), 
    linear-gradient(0deg, 
     rgb(255, 255, 255),
     rgba(255, 255, 255, 0.603),
     rgb(255, 255, 255));

    background-blend-mode: lighten;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}
.reveal.active{
    transform: translateY(0px);
    opacity: 1;
}



/* Desktop Computer size */
@media only screen and (max-width:1371px){ 
    .primary-header{ 
        padding: 10px 50px;

        #brand {
            img{
                width: 250px;
            }
        }
 
        .navbar i{
            margin-right: 0px;
            margin-bottom: 5px;
        }
 
        .navbar .nav-item{
            padding: 5px 10px;
            font-size: 14px;
        }
    }
    
    #home{
        max-height: max-content;

        .hero-main{
            width: 100%;
            max-height: 100%;
            display: flex;
            flex-direction: column;

            .slideshow-container{
                width: 100%;
                height: 100%;

                .text-body{
                    height: 100%;
                    
                    .information-body{
                        padding: 120px 60px;

                        .title{
                            
                            h4{
                                margin-bottom: 30px;
                                line-height: 0px;
                                font-weight: 100;
                            }
                            h1{
                                font-size: 70px;
                                font-weight: 800;
                                line-height: 70px;

                                span{
                                    font-size: 70px;
                                }
                            }
                            h3{
                                margin-top: 15px;
                                font-size: 30px;
                            }
                        }
 
                        .inner-group{
                            .in-circle{
                                width: 150px;
                                height: 150px;
                                border: 9px solid var(--primary-dark-color);
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                i{
                                    font-size: 60px;
                                    color: white;
                                }
                            }

                            p{
                                font-size: 16px;
                                letter-spacing: 1px;
                            }
                        }
                    }

                    .donation-group{
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        padding: 120px;

                        .donation-head{
                            text-align: center;
                            padding: 0;
              
                            h4{
                                font-size: 30px;
                                line-height: 40px;
                                text-align: center;
                                margin-top: 10px
                            }

                            .don-btn{
                                width: 100%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                a{
                                    font-size: 16px;
                                    padding: 10px 40px;
                                    font-weight: 200;
                                }
                            }
                        }

                        .donation-info{
                            width: 100%;

                            margin-top: 30px;

                            #countdown-wrap{
                                min-width: 100%;
                                background-color: #24242486;
                                border-radius: 15px;
                                margin-bottom: 30px;
                                padding: 10px 60px;

                                .donation-wrapper{
                                    width: 100%;
                         
                                    .font{
                                        fontFix{
                                            display: flex;
                                            align-items: end;
                                            justify-content: end;
                                            margin-bottom: 5px;
                                        }
                                        #goal, .fontFix{
                                            font-size: 30px;
                                        }
                                        h4{
                                            font-size: 19px;
                                        }
                                    }
                                }
                            }

                            hr{display: none;}

                            .donation-track{
                                width: 100%;

                                h3{
                                    display: none;
                                }
                                .equip-group{
                                    width: 100%;

                                    .equip-item{
                                        margin: 0 15px;

                                        i{
                                            width: 120px;
                                            height: 120px;
                                            font-size: 40px;
                                            margin-bottom: 10px;
                                            border-radius: 50%;
                                            padding: 20px;
                                            
                                        }
                                        h3{
                                            display: block;
                                            text-transform: uppercase;
                                            font-size: 13px;
                                            font-weight: 700;
                                            color:#ffffff;
                                            margin-bottom: 0px;
                                        }
                                        .counter{
                                            font-size: 60px;
                                            color:#ffffff;
                                            font-weight: 600;
                                            font-family: 'Robot Mono', sans-serif;                
                                        }
                                    }
                                }
                            }
                        } 
                    }
                }

                .prev, .next {
                    cursor: pointer;
                    position: absolute;
                    top: 50%;
                    width: auto;
                    padding: 30px;
                    margin-top: -22px;
                    color: white;
                    font-weight: bold;
                    font-size: 18px;
                    transition: 0.6s ease-in-out;
                    border-radius: 0 3px 3px 0;
                    user-select: none;
                    background-color: var(--scd-color2);
           
                }
            }
        }  
    }

    .about{
        padding: 120px 60px;
        .about-container{
            .in-container.info{    
                h3{
                    font-size: 50px;
                    margin-bottom: 25px;
                }
            
                .inner-container{
                    display: flex;
                    flex-direction: column;
                    padding: 0 60px 0 0;
                    .title{
                        width: 100%;
                        text-align: start;
                        display: flex;
                        align-items: start;
                        justify-content: start;
                        margin-bottom: 10px;
                    }

                    .title span{
                        font-size: 60px;
                        color: var(--primary-color);
                        margin-right: 15px;
                    }

                    h4{
                        font-size: 30px;
                        font-weight: 300;
                        margin-bottom: 10px;
                        color: #222222;
                    }

                    p{
                        margin-top: 15px;
                        font-size: 20px;
                        line-height: 35px;
                        font-weight: 100;
                        color: #222222;
                    }

                    .mission{
                        padding: 40px;
                        .title{
                            h2{
                                font-size: 40px;
                                span{
                                    font-size: 40px;
                                    margin: 0;
                                }
                            }
                        }

                        .info{
                            h4{
                                font-size: 20px;
                            }
                            .info-content{
                                p{
                                    font-size: 16px;
                                    line-height: 25px;
                                    margin: 15px 0;
                                } 
                            }  
                        }
                    }
                }

                .right-side{
                    width: 1350px;
                    max-height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    padding: 30px;
                    border-radius: 15px;

                    .card{
                        width: 100%;
                        padding: 20px;
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                        margin: 10px;
                        border-radius: 9px;

                        .card-header{
                            width: 100%;
                            height: 150px;
                        }
                        .card-content{
                            margin: 15px 0;
                            text-align: center;

                            h2{
                                color: white;
                                font-size: 30px;
                                margin-bottom: 10px;
                            }
                            p{
                                color: white;
                                font-weight: 100;
                                font-size: 13px;
                                line-height: 25px;
                            }
                        }
                    }
                }
            }
        }
    }

    #initiatives-intro{
        height: 350px;

        .content{
            h3{
                font-size: 40px;
            }
            p{
                line-height: 35px;
            }
        }
        .cards-group{
            .card-item{
                width: 170px;
                height: 170px;
            } 
        }
    }

    #initiatives{
        max-height: max-content;
        padding: 120px 60px;
        .cards-group{
            .title{
                h2{
                    font-size: 45px;
                    span{
                        font-size: 45px;
                    }
                }
            }
            .item-group{
                .item-list{
                    display: flex;
                    flex-direction: row;

                    .card-item{
                        width: 250px;
                        height: 300px;

                        img{
                            margin-bottom: 10px;
                        }
                    }
                } 
            }
        }
    }

    #gallery {
        .cons{
            .title{
                background:none;
                h2{
                    font-size: 45px;
                    color: #333333;
                    span{
                        font-size: 45px;
                    }
                }
                h4{
                    font-size: 16px;
                }
            }
            .carousel-list {
                margin-top: 0px;

                .slider-content {
                    height: 250px;
    
                    li{
                        width: calc(25.333% - 8px);
                    }
                }
            }

            .prev, .next {
                top: 100px;
            }
        }
    }

    #quotes-container{
        min-height: 300px;
        h2{
            font-size: 40px;
        }
    }

    #founder{
        .title{
            background:none;
            h2{
                font-size: 45px;
                color: #333333;
                span{
                    font-size: 45px;
                }
            }
            h4{
                font-size: 16px;
            }
        }
 
        .vid-testimonial{
            .test-wrap{
                .image{
                    .vid-info{
                        .info-item{
                            h4{
                                font-size: 20px;
                            }
                            h5{
                                font-size: 16px;
                                color: #212425;
                            }
                        }
                    }
                }

                .vid-group{
                    .note{
                        width: 100%;
                        text-align: start;
                        margin-top: 15px;
                        
                        h5{
                            font-size: 25px;
                        }
                    }

                    .body-info{
                        p{
                            font-size: 16px;
                            line-height: 25px;
                        }
                    }
                }
            }
        }     
    }

    .donations{
        height: 100%;
        padding: 0px;
        background-color: var(--primary-dark-color);
  
        .wrap-donation{
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            .icon{
                width: 50%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--primary-color);
                i{
                    font-size: 350px;
                    color: #ffffff;
                }
            }
            
            .body-text{
                width: 50%;
                height: 100%;
                padding: 60px;
                display: flex;
                align-items: center;
                justify-content: center;

                .body-content{

                    .title{
                        width: 100%;
                        margin-bottom: 10px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;

                        h2{
                            font-size: 40px;
                            color: #ffffff;
                        }

                        h3{
                            font-size: 20px;
                            font-weight: 600;
                            color: #ffffff;
                        }
                    }

                    h4{
                        font-size: 20px;
                        color: #ffffff;
                        font-weight: 300;
                        font-style: italic;
                    }

                    .button{
                        margin-top: 60px;

                        a{
                            font-size: 20px;
                            padding: 10px 60px;
                            border-radius: 6px;
                            color: #1e1f1f;
                        }
                    }
                }
            }    
        }
    }

    #donations-campaign{
        .campaign-container{
            .campaign-header{
                .icon{
                    i{
                        font-size: 150px;
                    }
                }
                .title{
                    h3{
                        color: var(--primary-color);
                    }
                    h2{
                        font-size: 45px;
                    }
                    h4{
                        color: white;
                    }
                }
            }

            .campaign-body{
                h2{
                    span{
                        font-size: 60px;
                    }
                }
            }
        }
    }
    #contact{
        width: 100%;
        height: 100vh;
    
        .contact-container{
            width: 100%;
            height: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .title{
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                h2{
                    font-size: 45px;
                    font-weight: 100;
                    span{
                        font-size: 45px;
                    }
                }
            }

            .content{ 
                .content-group{
                    .content-item{
                        .item-info{
                            margin: 5px 0;
                            i{
                                font-size: 35px;
                            }
                            h4{
                                font-size: 20px;
                            }
                            a{
                                font-size: 20px;
                            }
                        }
                    }

                    .social-accounts{
                        h5{
                        font-weight: 100;
                        }
                        ul li{
                            margin: 2px;
                        }

                        ul li a{
                            font-size: 20px;

                            span{
                                margin-left: 15px;
                            }
                        }
               
                        ul li a .linkedin{
                        padding: 5px 10px;
                        }
                        ul li a .youtube{
                        padding: 5px 17px;
                        }
                        ul li a .instagram{
                            padding: 5px 10px;
                        }
                        ul li a .twitter{
                            padding: 5px 20px;
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (max-width:1024px){ 
    .primary-header { 
        .navbar{
            display: none;
        }
        #hamburger-icon{
          
            display: block;
            cursor: pointer;
        }
    }

    #home .hero-main{
        .donation-group{
            padding: 0px 60px;

            .donation-head{
                h2{
                    font-size: 50px;
                    line-height: 60px;
                    text-align: center;
                }
                span{
                    font-size: 50px;
                    text-transform: uppercase;
                }
                h4{
                    font-size: 25px;
                    line-height: 30px;
                    text-align: center;
                    margin-top: 10px
                }

                .don-btn{
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    a{
                        font-size: 16px;
                        padding: 10px 40px;
                        font-weight: 200;
                    }
                }
            }
        }
    }

    .subscribtion{
        width: 100%;
        background-color: var(--primary-dark-color);
        padding: 0 60px;

        .subscribe-form{
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
    
            .content{
                height: 0;
                display: flex;
            
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin-bottom: 30px;
           
                i{
                    display: none;
                }
                h5{
                    font-size: 25px;
                    font-weight: 100;
                    color: white;
                    font-style: italic;
                }
            }

            .form-group{
                display: flex;
                align-items: center;
                justify-content: center;

                form{
                    display: flex;
                    width: fit-content;
                    align-items: center;
                    justify-content: center;
                    flex-direction: row;
                    padding: 0px;
 
                    input{
                        outline: none;
                        padding: 10px 20px;
                        width: 400px;
                        height: 50px;
                        font-size: 16px;
                        border-radius: 0px;
                        border: 1px solid #bbbbbb;
                    }

                    button{
                        width: 150px;
                        height: 50px;
                        background-color: red;
                  
                        border: none;
                        outline: none;
                        cursor: pointer;
                        border-radius: 0px;
                        font-size: 16px;
                        color: white;
                    }
                    button:hover{
                        background-color: var(--button-hover-color);
                    }

                    img{
                        width: 40px;
                    }
                }
            }
        }
    }

    .about{
        padding: 120px 60px;

        .about-container{

            .in-container.info{    
                flex-direction: column;
                text-align: center;

                .inner-container{
                    display: flex;
                    flex-direction: column;
                    padding: 0px;

                    .title{
                        width: 100%;
                        text-align: center;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 10px;
                    }

                    .title span{
                        font-size: 60px;
                        color: var(--primary-color);
                        margin-right: 15px;
                    }

                    h4{
                        font-size: 30px;
                        font-weight: 300;
                        margin-bottom: 10px;
                        color: #222222;
                    }

                    p{
                        margin-top: 15px;
                        font-size: 20px;
                        line-height: 35px;
                        font-weight: 100;
                        color: #222222;
                    }

                    .mission{
                        padding: 40px;
                        .title{
                            h2{
                                font-size: 40px;
                                span{
                                    font-size: 40px;
                                    margin: 0;
                                }
                            }
                        }

                        .info{
                            h4{
                                font-size: 20px;
                            }
                            .info-content{
                                p{
                                    font-size: 16px;
                                    line-height: 25px;
                                    margin: 15px 0;
                                } 
                            }  
                        }
                    }
                }

                .right-side{
                    width: 100%;
                    max-height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    padding: 30px;
                    border-radius: 15px;
                    margin-top: 60px;

                    .card{
                        width: 100%;
                        padding: 20px;
                        display: flex;
                        align-items: center;
                        flex-direction: row;
                        margin: 10px;
                        border-radius: 9px;
                        padding: 0;
                     

                        .card-header{
                            width: 50%;
                            height: 225px;
                            border-radius: 9px;
                        }
                        .card-content{
                            width: 50%;
                            margin: 0;
                            padding: 25px;
                            text-align: start;

                            h2{
                                color: white;
                                font-size: 30px;
                                margin-bottom: 10px;
                            }
                            p{
                                color: white;
                                font-weight: 100;
                                font-size: 13px;
                                line-height: 25px;
                            }
                        }
                    }
                }
            }
        }
    }

    #initiatives{
        .cards-group{
            flex-direction: column;

            .item-group{
                display: flex;

                .item-list{
                    display: flex;
                    flex-direction: column;

                    .card-item{
                        width: 350px;
                        height: 250px;
              
                        margin: 9px;
                        border-radius: 16px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;

                        img{
                            width: 110px;
                            margin-bottom: 0px;
                        }

                        .content{
                            padding: 0 10px;
                            h3{
                                font-size: 16px;
                            }

                            p{
                                color: white;
                                font-size: 13px;
                                line-height: 20px;
                                margin-top: 10PX;
                            }
                        }
                        .brand{
                            width: 100%;
                            height: 100%;
                            display: none;
                     
                            img{
                                display: none;
                            }
                        }
                    }
                    .card-item.one{
                        img{
                            width: 140px;
                        }
                            .content{
                            h3{
                                color: var(--primary-color);
                            }
                        }
                    }
                    .card-item.one:hover{
                        .brand{
                            width: 100%;
                            height: 100%;
                            img{
                                width: 250px;
                            }
                        }
                    }
        
                    .card-item.two{
                        img{
                            width: 70px;
                        }
                        .content{
                            h3{
                                color: var(--scft-color1);
                            }
                        }
                    }
                    .card-item.two:hover{
                        .brand{
                            img{
                                display: flex;
                                width: 150px;
                            }
                        }
                    }
        
                    .card-item.three{
                        img{
                            width: 100px;
                        }
                        .content{
                            h3{
                                color: var(--scd-color1);
                            }
                        }
                    }
                    .card-item.three:hover{
                        .brand{
                            img{
                                width: 150px;
                            }
                        }
                    }
          
                    .card-item.four{
                        img{
                            width: 100px;
                        }
                        .content{
                            h3{
                                color: var(--gbv-color1);
                            }
                        }
                    }
                    .card-item.four:hover{
                        .brand{
                            img{
                                display: flex;
                                width: 150px;
                            }
                        }
                    }
                } 
            }
        }
    }

    #gallery {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        padding: 120px 0;
        
        .cons{
            display: flex;
            flex-direction: column;
            align-items: center;

            .in-con{
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .title {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center; 
                }

                .view-button{
                    display: flex;
                    justify-content: center;
                    margin-top: 30px;      
           
                    a{
                        width: 350px;
                        height: 50px;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        background-color: var(--scd-color2);
                   
                        border-radius: 50px;
                        text-decoration: none;
                        color: white;
                        font-size: 20px;
                    }
                }
            }
        
            .carousel-list {
                margin-top: 60px;
                .slider-content {
                    li{
                        width: calc(50.333% - 8px);
                    }
                }
            }
    
            .prev, .next {
                top: 250px;
            }

            .next {
                right: 0px;
                border-radius: 0;
            }
            .prev{
                left: 0;
                border-radius: 0;
            }
        }
    }

    #founder{
        width: 100%;
        padding: 120px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items:start;
        justify-content: center;
        margin-bottom: 30px;
        
        h2{
            color: #333333;
        }
        h4{
            font-size: 20px;
            font-weight: 100;
        }
        }
 
        .vid-testimonial{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            overflow: hidden;
     
            .test-wrap{
                .image{
                    .vid-info{
                        .info-item{
                            h4{
                                font-size: 16px;
                            }
                            h5{
                                font-size: 13px;
                            }
                        }
                        .button{
                            width: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: end;

                            a{
                                background-color: var(--scd-color2);
                                width: 100px;
                                height: 50px;
                                text-decoration: none;
                                color: white;
                                border-radius: 6px;
                                font-size: 16px;
                                display: flex;
                                text-align: center;
                                align-items: center;
                                justify-content: center;
                            }
                        }
                    }
                }

                .vid-group{
                    .note{
                        h5{
                            font-size: 20px;
                        }
                    }

                    .body-info{
                        p{
                            font-size: 13px;
                            line-height: 20px;
                        }
                    }
                }
            }
        }     
    }

    .donations{
        padding: 0px;
        .wrap-donation{
            .icon{
                i{
                    font-size: 250px;
                }
            }

            .body-text{
                .title{
                    h2{
                        font-size: 40px;
                    }
                    h3{
                        font-size: 20px;
                    }
                }
                h4{
                    font-size: 20px;
                    margin-top: 30px;
                }
                .button-btn{
                    width: 100%;
                    margin-top: 60px;

                    a{
                        font-size: 20px;
                        padding: 10px 30px;
                        border-radius: 9px;
                    }
                }
            }
        }
    }

    #donations-campaign{
        .campaign-container{
            width: 100%;
            max-height: max-content;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            .campaign-header{
                width: 100%;
                height: 500px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                .icon{
                    width: auto;
                    height:auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: none;

                    i{
                        font-size: 150px;
                        color: white;
                    }
                }
            
                .title{
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    padding: 0 60px;

                    h3{
                        margin-top: 15px;
                        font-size: 25px;
                    }
                    h2{
                        margin-top: -15px;
                    }
                    h4{
                        margin-top: -15px;
                        font-weight: 100;
                    }
                }
            }

            .campaign-body{
                width: 100%;
                height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;

                h2{
                    font-weight: 900;
                    color: #f7991e;
                    span{
                        font-size: 60px;
                        color: #1e1f1f;
                    }
                }
            }
        }
    }

    #contact{
        width: 100%;
        height: max-content;
        padding: 120px 60px;
    
        .contact-container{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;

            .title{
                width: 100%;
                margin-bottom: 30px;

                h2{
                    font-weight: 100;
                }
            }

            .content{
                width: 100%;
                height: max-content;
                display: flex;
                flex-direction:column;
         
                .content-group{
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
               
                    .content-item{
                        align-items: center;
                        order: 2;
                        margin-top: 30px;

                        ul.li{
                            width: 100%;
                            display: flex;
                            flex-direction: row;
                     
                            text-align: start;
                            margin: 15px 0;
                            i{
                                font-size: 40px;
                                margin-right: 15px;
                                color: #1e1f1f;
                            }
                            h4{
                                font-size: 25px;
                                font-weight: 100;
                                color: #1e1f1f;
                            }
                            a{
                                font-size: 25px;
                                text-decoration: none;
                                color: #1e1f1f;
                                font-weight: 100;
                            }
                        }
                    }

                    .social-accounts{
                        width: 600px;
                        align-items: center;
                        margin: 0;
                        background-color: #e9e8e838;
                        border-radius: 16px;
                        order: 1;

                        h5{font-weight: 100;}
                    
                        ul{
                            list-style: none;
                            display: flex;
                            align-items: end;
                            justify-content: center;
                            flex-direction: column;
                            border-radius: 50px;
                        }
                    
                        ul li{
                            margin: 0px;
                        }
                        ul li:hover{
                            transform: scale(1.1);
                            transition: 0.3s;
                        }

                        ul li a{
                            font-size: 16px;
                            font-weight: 100;
                            font-style: italic;
                             
                            span{
                                margin-left: 15px;
                            }
                        }
                        ul li i{
                            font-size: 40px;
                            margin-left: 15px;
                        }
                    }
                }
            }
        }
    }

    #underconstruction{
        width: 100%;
        .con-container{
            width: 100%;
            height: 300px;
            background-color: var(--primary-color);
    
            .in-container{
                width: 100%;
                height: 100%;
                padding: 0;

                .bank-details{
                    display: flex;
                    justify-content: center;
                    
                    .in-bank{
                        width: auto;
                         
                        .logo{
                            width:150px;
                            height: 150px;
                            img{
                                width: 100px;
                            }
                        } 
                        .inner-bank{
                            h4{
                                color: #1e1f1f;
                                font-weight: 600;
                                margin-bottom: 10px;
                            }
                            .bank-info{
                                p{
                                    color: #1e1f1f;
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                    .in-bank.one{
                        width: auto; 
                    }
                    .in-bank.two{
                        width: auto;
                    }
                }
            }
        
            .in-container.one{
                width: 40%;
                padding: 0;
                background-color: #00aaf3;
            }
        }
        .un-body{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 60px;
            h4{
                font-weight: 100;
                margin-bottom: 30px;

                span{
                    font-size: 30px;
                    color: var(--primary-color);
                }
            }
        }
    }
}

@media only screen and (max-width:768px){
    
    #home .hero-main{
        max-height: 100%;

        .slideshow-container{
            height: 100%;
            background-color: blue;

            .mySlides{
                height: 100%;
                background-color: rgb(255, 0, 212);

                .text-body{
                    height: 100%;

                    .donation-group{
                        max-height: 100%;
                        padding: 120px 60px;
                        

                        .donation-head{
                            padding: 0;
                
                            h2{
                                font-size: 40px;
                                line-height: 45px;
                            }
                            span{
                                font-size: 40px;
                                text-transform: uppercase;
                            }
                        }

                        .donation-info{
                            margin-top: 30px;

                            #countdown-wrap{
                                min-width: 600px;
                                padding: 10px 30px;

                                .donation-wrapper{
                                    width: 100%;
                         
                                    .font{
                                        .fontFix{
                                            display: flex;
                                            align-items: end;
                                            justify-content: end;
                                            margin-bottom: 5px;
                                        }
                                        #goal, .fontFix{
                                            font-size: 30px;
                                        }
                                        h4{
                                            font-size: 19px;
                                        }
                                    }
                                }
                            }

                            .donation-track{
                                min-width: 600px;
                                .equip-group{
                                    .equip-item{
                                        margin: 0 15px;

                                        h3{
                                            font-size: 10px;
                                        }
                                        .counter{
                                            font-size: 40px;              
                                        }
                                    }
                                }
                            }
                        } 
                    }
                }
            }

            .prev,.next{
                display: none;
            }
        }
    }


    #gallery {
        .cons{
            .in-con{
                .view-button{ 
                    a{
                        width: 200px; 
                        border-radius: 9px;
                        font-size: 16px;
                    }
                }
            }
        
            .carousel-list {
                margin-top: 30px;
                .slider-content {
                    li{
                        width: calc(50.33% - 8px );
                    }
                }
            }
        }
    }

    #quotes-container{
        min-height: 300px;
        padding: 60px 60px;

        h2{
            font-size: 40px;
        }
 
    }

    #founder{
        padding: 120px 60px;
        .title{
            align-items:center;
        }
 
        .vid-testimonial{
            .test-wrap{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;

                .image{
                    width: 100%;
                 
                    .vid-info{
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                        h4{
                            font-size: 25px;
                        }
                        h5{
                            font-size: 13px;
                        }
                    }
                }
                .vid-group{
                    width: 100%;
                    padding: 0;
                }
            }
        }     
    }

    .donations{
        padding: 0px 60px;

        .wrap-donation{
            justify-content: center;
            flex-direction: column;

            .icon{
                background: none;
                height: auto;
                i{
                    font-size: 200px;
                }
            }
            
            .body-text{
                width: 100%;
                height:auto;
                margin-top: 0;
                padding: 0;
                .title{
                    h2{
                        font-size: 40px;
                    }
                    h3{
                        font-size: 20px;
                    }
                }
                h4{
                    font-size: 20px;
                    margin-top: 30px;
                }
                .button{
                    margin-top: 60px;
                    padding: 0;
                    a{
                        padding: 10px 30px;
                     
                        font-size: 16px;
                        margin: 0;
                    }
                }
            }
        }
    }

    #donations-campaign{
        .campaign-container{
            .campaign-header{
                .icon{
                    width: auto;
                    height:auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: none;

                    i{
                        font-size: 150px;
                        color: white;
                    }
                }
            
                .title{
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    padding: 0 60px;

                    h3{
                        margin-top: 15px;
                        font-size: 30px;
                    }
                    h2{
                        font-size: 40px;
                        margin-top: -20px;
                    }
                    h4{
                        font-size: 25px;
                        margin-top: -20px;
                    }
                }
            }

            .campaign-body{
                width: 100%;
                height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;

                h2{
                    font-weight: 900;
                    color: #f7991e;
                    span{
                        font-size: 60px;
                        color: #1e1f1f;
                    }
                }
            }
        }
    }

    #underconstruction{
        width: 100%;
        .con-container{
            width: 100%;

            background-color: var(--primary-color);
    
            .in-container{
                width: 100%;
                height: 100%;
                padding: 0;

                .bank-details{
                    display: flex;
                    justify-content: center;
                    
                    .in-bank{
                        width: auto;
                         
                        .logo{
                            width:150px;
                            height: 150px;
                            img{
                                width: 100px;
                            }
                        }

                        .inner-bank{
                            .bank-info{
                                p{
                                    font-size: 20px;
                                }
                            }
                        }
                    }

                    .in-bank.one{
                        width: auto;    
                    }

                    .in-bank.two{
                        width: auto;
                    }
                }
            }
            
            .in-container.one{
                width: 40%;
                padding: 0;
                background-color: #00aaf3;
              
            }
        }
        .un-body{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 60px;
            h4{
                font-weight: 100;
                margin-bottom: 30px;

                span{
                    font-size: 30px;
                    color: var(--primary-color);
                }
            }
        }
    }
}

@media only screen and (max-width:588px){

    .org-compliance{
        .group-holder{
            padding: 0 0px;
            color: white;
 
            p{
                font-size: 13px;
                color: white;
                margin-left: 25px;
            }
        }
    }

    #home .hero-main{
        max-height: 100%;

        .slideshow-container{
            height: 100%;
            background-color: blue;

            .mySlides{
                height: 100%;
                background-color: rgb(255, 0, 212);

                .text-body{
                    height: 100%;

                    .donation-group{
                        max-height: 100%;
                        padding: 120px 30px;
                        
                        .donation-head{
                            padding: 0;
                
                            h2{
                                font-size: 40px;
                                line-height: 45px;
                            }
                            span{
                                font-size: 40px;
                                text-transform: uppercase;
                            }
                        }

                        .donation-info{
                            margin-top: 30px;

                            #countdown-wrap{
                                min-width: 500px;
                                padding: 10px 30px;

                                .donation-wrapper{
                                    width: 100%;
                         
                                    .font{
                                        .fontFix{
                                            display: flex;
                                            align-items: end;
                                            justify-content: end;
                                            margin-bottom: 5px;
                                        }
                                        #goal, .fontFix{
                                            font-size: 30px;
                                        }
                                        h4{
                                            font-size: 19px;
                                        }
                                    }
                                }
                            }

                            .donation-track{
                                min-width: 500px;
                                .equip-group{
                                    .equip-item{
                                        margin: 0 5px;

                                        i{
                                            width: 90px;
                                            height: 90px;
                                            border: none;
                                        }

                                        h3{
                                            font-size: 10px;
                                        }
                                        .counter{
                                            font-size: 40px;              
                                        }
                                    }
                                }
                            }
                        } 
                    }
                }
            }
        }
    }

    .subscribtion{
        .subscribe-form{
            .form-group{
                form{
                    input{
                        width: 300px;
                    }
                }
            }
        }
    }

    .about{
        padding: 120px 60px;

        .about-container{

            .in-container.info{    
                flex-direction: column;
                text-align: center;

                .inner-container{
                    display: flex;
                    flex-direction: column;
                    padding: 0px;

                    .title{
                        width: 100%;
                        text-align: center;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 10px;
                    }

                    .title span{
                        font-size: 60px;
                        color: var(--primary-color);
                        margin-right: 15px;
                    }

                    h4{
                        font-size: 25px;
                        font-weight: 300;
                        margin-bottom: 10px;
                        color: #222222;
                    }

                    p{
                        margin-top: 15px;
                        font-size: 16px;
                        line-height: 30px;
                        font-weight: 100;
                        color: #222222;
                    }

                    .mission{
                        padding: 30px;

                        .info{
                            h4{
                                font-size: 16px;
                            }
                            .info-content{
                                p{
                                    font-size: 13px;
                                    line-height: 20px;
                                } 
                            }  
                        }
                    }
                }

                .right-side{
                    .card{
                        width: 100%;
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                     
                        .card-header{
                            width: 100%;
                        }
                        .card-content{
                            width: 100%;
                            margin: 0;
                            padding: 25px;
                            text-align: start;

                        }
                    }
                }
            }
        }
    }

    #initiatives{
        height: max-content;
        .cards-group{
            flex-direction: column;

            .title{
                h2{
                    font-size: 40px;
                }
                span{
                    font-size: 40px;
                }
            }
            .item-group{
                display: flex;
                flex-direction: column;
            }
        }
    }

    #gallery {
        overflow: hidden;
        .cons{
            .in-con{
                .title {
                   h2{
                    font-size: 40px;
                   }
                   span{
                    font-size: 40px;
                   }
                   p{
                    font-size: 20px;
                    text-align: center;
                   }
                }

                .view-button{ 
                    a{        
                        border-radius: 9px;
                        font-size: 16px;
                    }
                }
            }
        
            .carousel-list {
                margin-top: 60px;
                .slider-content {
                    li{
                        width: calc(100% );
                    }
                }
            }
    
            .prev, .next {
                top: 250px;
                display: none;
            }
        }
    }

    #quotes-container{
        min-height: 300px;
        padding: 60px 60px;

        h2{
            font-size: 30px;
        }
 
    }

    #founder{
        .title{
            margin-bottom: 30px;

            h2{
                font-size: 40px;
            }
            span{
                font-size: 40px;
            }
            
            h4{
                font-size: 16px;
                font-weight: 100;
            }
        }
 
        .vid-testimonial{
            .test-wrap{
                width: 100%;

                .image{
                    width: 100%;
                 
                    .vid-info{
                        h4{
                            font-size: 20px;
                        }
                    }
                }
            }
        }     
    }

    .donations{
        .wrap-donation{
            .icon{
                i{
                    font-size: 200px;
                }
            }
            
            .body-text{
                .title{
                    h3{
                        font-size: 20px;
                        font-style: italic;
                    }
                }
                h4{
                    font-size: 20px;
                    margin-top: 30px;
                }
                .button-btn{
                     padding: 0;
                    a{
                        padding: 10px 30px;
                        width: 250px;
                        font-size: 20px;
                        margin: 0;
                    }
                }
            }
        }
    }

    #contact{
        height: max-content;
        
        .contact-container{
            .title{

                h2{
                    font-size: 40px;
                    font-weight: 100;
                }
                span{
                    font-size: 40px;
                }
            }

            .content{
                .content-group{
                    .content-item{
                        .item-info{
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin: 10px 0;
                            h4{
                                font-size: 20px;
                                margin: 0;
                                padding: 0;
                            }
                            a{
                                font-size: 20px;
                                margin: 0;
                                padding: 0;
                            }
                        }
                    }
                }
            }
        }
    }

    #underconstruction{
        .container{
            
            h2{
                font-size: 45px;
            }
        }
    }

    #donations-campaign{
        .campaign-container{
            .campaign-header{
                .icon{
                    i{
                        font-size: 100px;
                    }
                }
            
                .title{
                    h3{
                        margin-top: 15px;
                        font-size: 30px;
                    }
                    h2{
                        font-size: 40px;
                        margin-top: -10px;
                        line-height: 50px;
                    }
                    h4{
                        font-size: 25px;
                        margin-top: -10px;
                    }
                }
            }

            .campaign-body{
                width: 100%;
                height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;

                h2{
                    font-size: 50px;
                    span{
                        font-size: 50px;

                    }
                }
            }
        }
    }

    #underconstruction{
        .con-container{
            min-height: 300px;
            .in-container{
                .bank-details{
                    .in-bank{
                        .inner-bank{
                            height: auto;
                            margin-left: 20px;
                            padding: 0;
                             
                            h4{
                                margin-bottom: 10px;
                                color: #1e1f1f;
                            }
                            .bank-info{
                                p{
                                    font-size: 16px;
                                    color: #1e1f1f;
                                }
                            }
                        }
                    }
                    .in-bank.one{
                        width: auto;   
                    }
                    .in-bank.two{
                        width: auto;
                    }
                }
            }
        
            .in-container.one{
                width: 40%;
                padding: 0;
                background-color: #00aaf3;
              
            }
        }

        .un-body{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 60px;

            h2{
                font-size: 45px;
            }
        }
    }
}

@media only screen and (max-width:481px){

    #home .hero-main{
        .slideshow-container{
            .mySlides{
                .text-body{
                    .information-body{
                        padding: 120px 10px;
                        .title{
                            width: 100%;
                         
                            h1{
                                font-size: 50px;
                               

                                span{
                                    font-size: 50px;
                                }
                            }
                            h3{
                                margin-top: 15px;
                                font-size: 25px;
                            }
                        }
                        .inner-group{
                            .in-circle{
                                width: 120px;
                                height: 120px;
                                i{
                                    font-size: 45px;
                                }
                            }

                            p{
                                font-size: 13px;
                                letter-spacing: 1px;
                            }
                        }
                    }

                    .donation-group{
                        padding: 120px 10px;

                        .donation-head{
                            h2{
                                font-size: 40px;
                                line-height: 40px;
                            }
                            span{
                                font-size: 40px;
                            }
                            h4{
                                font-size: 20px;
                                line-height: 30px;
                            }
                        }

                        .donation-info{
                            margin-top: 20px;

                            #countdown-wrap{
                                min-width: 350px;
                                padding: 10px 10px;

                                .donation-wrapper{
                                    width: 100%;
                         
                                    .font{
                                        .fontFix{
                                            display: flex;
                                            align-items: end;
                                            justify-content: end;
                                            margin-bottom: 5px;
                                        }
                            
                                        #goal, .fontFix{
                                            font-size: 30px;
                                        }
                                        h4{
                                            font-size: 19px;
                                        }
                                    }

                                    .goal{
                                        padding: 0;
                                        display: flex;
                                        justify-content: space-between;

                                        .goal-stat{
                                            padding: 0;
                                            margin: 5px;
                                            border-radius: 6px;
                                        }
                                        .goal-label{
                                            font-size: 13px;
                                        }
                                        .goal-number,span{
                                            font-size: 16px;
                                        }
                                    }
                                }
                            }

                            .donation-track{
                                min-width: 400px;
                                .equip-group{

                                    .equip-item{
                                        margin: 3px;
                                        i{
                                            width: 50px;
                                            height: 50px;
                                            font-size: 40px;
                                            background: none;
                                        }

                                        h3{
                                            display: block;
                                            text-transform: uppercase;
                                            font-size: 9px;
                                            font-weight: 700;
                                            color:#ffffff;
                                            margin-bottom: 0px;
                                        }
                                        .counter{
                                            font-size: 30px;
                                            color:#ffffff;
                                            font-weight: 600;
                                            font-family: 'Robot Mono', sans-serif;                
                                        }
                                    }
                                }
                            }
                        } 
                    }
                }
            }
        }
    }

    .subscribtion{
        .subscribe-form{
            .content{    
                i{
                    display: none;
                }
                h5{
                    font-size: 20px;
                }
            }

            .form-group{
                form{
                    input{
                        width: 270px;
                        font-size: 13px;
                    }

                    button{
                        width: 100px;
                        font-size: 13px;
                    }
                }
            }
        }
    }
  
    .about{
        padding: 120px 60px;

        .about-container{

            .in-container.info{    
                flex-direction: column;
                text-align: center;

                .inner-container{
                    .mission{
                        padding: 0px;
                        background: none;

                        .info{
                            h4{
                                font-size: 16px;
                            }
                            .info-content{
                                p{
                                    font-size: 13px;
                                    line-height: 20px;
                                } 
                            }  
                        }
                    }
                }

                .right-side{
                    padding: 0;
                    background: none;
                    .card{
                        width: 100%;
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                     
                        .card-header{
                            width: 100%;
                        }
                        .card-content{
                            width: 100%;
                            margin: 0;
                            padding: 25px;
                            text-align: start;

                        }
                    }
                }
            }
        }
    }

    #founder{
         padding: 120px 30px;
        .title{
            
            h4{
                font-size: 20px;
                text-align: center;
            }
        }
 
        .vid-testimonial{
            .test-wrap{

                .vid-group{
                    .vid-info{                     
                        .info-item{
                            h4{
                                font-size: 16px;
                            }
                            h5{
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }     
    }

    #gallery{
        overflow: hidden;
    }

    .donations{
        padding: 0 30px;
        .wrap-donation{
            .icon{
                i{
                    font-size: 150px;
                }
            }
            
            .body-text{
                .button-btn{
                    a{
                        padding: 10px 30px;
                        font-size: 20px;
                    }
                }
            }
        }
    }

    #underconstruction{
        width: 100%;
        .con-container{
            width: 100%;

            background-color: var(--primary-color);
    
            .in-container{
                width: 100%;
                height: 100%;
                padding: 0;

                .bank-details{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    
                    .in-bank{
                        width: auto;
                         
                        .logo{
                            width:80px;
                            height: 80px;
                            margin: 0;
                            img{
                                width: 50px;
                            }
                        }

                        .inner-bank{
                            text-align: center;
                            justify-content: center;
                            align-items: center;
                            h4{
                                font-size: 25px;
                            }
                            .bank-info{
                                p{
                                    font-size: 15px;
                                    text-align: center;
                                }
                            }
                        }
                    }

                    .in-bank.one{
                        width: auto;
                        height: auto;
                        background-color: #027bcc; 
                    }

                    .in-bank.two{
                        width: auto;
                        height: auto;
                        margin-top: 10px;
                    }
                }
            }
        }
        .un-body{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 60px;
            h4{
                font-weight: 100;
                font-size: 25px;
                margin-bottom: 30px;

                span{
                    font-size: 25px;
                    color: var(--primary-color);
                }
            }
            h2{
                font-size: 35px;
            }
        }
    }

    #donations-campaign{
        .campaign-container{
            .campaign-header{
                .title{
                    padding: 0  10px;
                    h3{
                  
                        font-size: 20px;
                        line-height: 30px;
                    }
                    h2{
                        font-size: 40px;
                        margin-top: 10px;
                        line-height: 50px;
                    }
                }
            }
            .campaign-body{
                h2{
                    font-size: 50px;
                    span{
                        font-size: 50px;

                    }
                }
            }
        }
    }
}

@media only screen and (max-width:320px){
    .primary-header { 
        padding: 30px;
        #brand{
            img{
                width: 150px;
            }
        }
        .navbar{
            display: none;
        }
      
    }
  
    .mini-nav{
        padding: 0 20px;
        .nav-wrapper{
            .logo{
                img{
                    width: 120px;
                }
            }   
        }
    }

    .org-compliance{
        .group-holder{
            .flag{
                h2{
                    font-size: 16px;
                }
            }
      
        }
    }

    #home .hero-main{
        height: auto;
        .slideshow-container{
            .prev, .next {
                display: none;
            }

            .mySlides{
                .text-body{
                    .information-body{
                        padding: 120px 10px;

                        .title{
                            width: 100%;
                            h4{
                                font-size: 16px;
                            }
                            h1{
                                font-size: 35px;
                                line-height: 40px;

                                span{
                                    font-size: 35px;
                                }
                            }
                            h3{
                                margin-top: 13px;
                                font-size: 20px;
                            }
                        }
 
                        .inner-group{
                            .in-circle{
                                width: 85px;
                                height: 85px;
                                border: 1px solid var(--primary-dark-color);
                                display: flex;
                                align-items: center;
                                justify-content: center;
                 
                                i{
                                    font-size: 30px;
                                }
                            }

                            p{
                                font-size: 10px;
                                letter-spacing: 1px;
                                font-weight: 600;
                            }
                        }
                    }

                    .donation-group{
                        padding: 120px 20px;

                        .donation-head{
                            h2{
                                font-size: 30px;
                                line-height: 35px;
                                font-weight: 700;
                            }
                            span{
                                font-size: 30px;
                            }
                            h4{
                                font-size: 20px;
                                line-height: 30px;
                            }
                            .don-btn{
                                padding: 0;
                                a{
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    text-align: center;
                                    font-size: 13px;
                                    padding: 10px 25px;
                                }
                            }
                        }

                        .donation-info{
                            min-width: auto;
                            margin-top: 20px;
                            background: none;

                            #countdown-wrap{
                                min-width: auto;
                                padding: 10px 10px;

                                .donation-wrapper{
                                    width: 100%;
                         
                                    .font{
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;

                                        .fontFix.one{
                                            display: none;
                                        }
                            
                                        #goal, .fontFix{
                                            font-size: 30px;
                                        }
                                        h4{
                                            font-size: 19px;
                                        }
                                    }

                                    .goal{
                                        padding: 0;
                                        display: flex;
                                        justify-content: space-between;

                                        .goal-stat{
                                            padding: 0;
                                            margin: 5px;
                                            border-radius: 6px;
                                        }
                                        .goal-label{
                                            font-size: 10px;
                                        }
                                        .goal-number,span{
                                            font-size: 13px;
                                        }
                                    }

                                    #glass {
                                        height: 15px;
                                    }
                                    #progress {
                                        height: 50px;
                                    }
                                }
                            }

                            .donation-track{
                                min-width: auto;
                                .equip-group{
                                    .equip-item{
                                        margin: 0 5px;

                                        h3{
                                            display: block;
                                            text-transform: uppercase;
                                            font-size: 10px;
                                            font-weight: 500;
                                            color:#ffffff;
                                            margin-bottom: 0px;
                                        }
                                        .counter{
                                            font-size: 20px;
                                            font-weight: 600;
                                            margin-top: 10px;            
                                        }
                                    }
                                }
                            }
                        } 
                    }
                }
            }
        } 
    }

    .subscribtion{
        .subscribe-form{
            .content{    
                h5{
                    font-size: 16px;
                    text-align: center;
                }
            }

            .form-group{
                form{
                    display: flex;
                    flex-direction: column;
                    input{
                        width: 250px;
                        font-size: 13px;
                       
                    }

                    button{
                        width: 250px;
                        height: 40px;
                        font-size: 13px;
                        border-radius: 50px;
                        margin-top: 15px;
                    }
                }
            }
        }
    }


    .about{
        padding: 60px 20px;

        .about-container{

            .in-container.info{    
                flex-direction: column;
                text-align: center;

                .inner-container{
                    .title{
                        h2{
                            font-size: 40px;
                            
                            span{
                                font-size: 40px;
                                margin: 0;
                            }
                        }
                    }
                    h4{
                        font-size: 20px;
                    }
                    p{
                        font-size: 16px;
                        line-height: 25px;
                    }
                    .mission{
                        padding: 0px;
                        background: none;

                        .info{
                            h4{
                                font-size: 16px;
                            }
                            .info-content{
                                p{
                                    font-size: 13px;
                                    line-height: 20px;
                                } 
                            }  
                        }
                    }
                }

                .right-side{
                    padding: 0;
                    background: none;
                    .card{
                        width: 100%;
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                     
                        .card-header{
                            width: 100%;
                        }
                        .card-content{
                            width: 100%;
                            margin: 0;
                            padding: 25px;
                            text-align: start;

                        }
                    }
                }
            }
        }
    }
   

    #initiatives{
        padding: 120px 10px;
        .cards-group{
            flex-direction: column;

            .item-group{
                display: flex;

                .item-list{
                    display: flex;
                    flex-direction: column;

                    .card-item{
                        width: 250px;
                        height: 350px;


                        img{
                            width: 110px;
                            margin-bottom: 0px;
                        }

                        .content{
                            padding: 0 10px;
                            h3{
                                font-size: 16px;
                            }

                            p{
                                color: white;
                                font-size: 13px;
                                line-height: 20px;
                                margin-top: 10PX;
                            }
                        }
                        .brand{
                            width: 100%;
                            height: 100%;
                            display: none;
                     
                            img{
                                display: none;
                            }
                        }
                    }
                    .card-item.one{
                        img{
                            width: 140px;
                        }
                            .content{
                            h3{
                                color: var(--primary-color);
                            }
                        }
                    }
                    .card-item.one:hover{
                        .brand{
                            width: 100%;
                            height: 100%;
                            img{
                                width: 250px;
                            }
                        }
                    }
        
                    .card-item.two{
                        img{
                            width: 70px;
                        }
                        .content{
                            h3{
                                color: var(--scft-color1);
                            }
                        }
                    }
                    .card-item.two:hover{
                        .brand{
                            img{
                                display: flex;
                                width: 150px;
                            }
                        }
                    }
        
                    .card-item.three{
                        img{
                            width: 100px;
                        }
                        .content{
                            h3{
                                color: var(--scd-color1);
                            }
                        }
                    }
                    .card-item.three:hover{
                        .brand{
                            img{
                                width: 150px;
                            }
                        }
                    }
          
                    .card-item.four{
                        img{
                            width: 100px;
                        }
                        .content{
                            h3{
                                color: var(--gbv-color1);
                            }
                        }
                    }
                    .card-item.four:hover{
                        .brand{
                            img{
                                display: flex;
                                width: 150px;
                            }
                        }
                    }
                } 
            }
        }
    }

    #gallery {
        height: auto;
        overflow: hidden;
        .cons{
            .in-con{
                .title {
                   h2{
                    font-size: 30px;
                   }
                   span{
                    font-size: 30px;
                   }
                   p{
                    font-size: 16px;
                    text-align: center;
                   }
                }

                .view-button{ 
                    a{        
                        border-radius: 9px;
                        font-size: 16px;
                    }
                }
            }
        
            .carousel-list {
               
                margin-top: 0px;
                .slider-content {
                    li{
                        width: calc(45% );
                    }
                }
            }
        }
    }

    #quotes-container{
        padding: 60px 30px;

        h2{
            font-size: 20px;
        }
 
    }

    #founder{
        height: auto;
        padding: 60px 30px;
        .title{
            h2{
                font-size: 30px;
                span{
                    font-size: 30px;
                }
            }
            h4{
                font-size: 16px;
                text-align: center;
            }
        }
 
        .vid-testimonial{
            .test-wrap{
                .image{
                    .vid-info{

                        .info-item{
                            h4{
                                font-size: 13px;
                            }
                            h5{
                                font-size: 10px;
                            }
                        }
                        .button{
                            a{
                                width: 80px;
                                height: 30px;
                                font-size: 13px;
                            }
                        }
                    }
                }
                .vid-group{
                    .body-info{
                        .note{
                            h5{
                                 font-size: 16px;
                            }
                        }
                        p{
                            font-size: 12px;
                            line-height: 17px;
                            text-align:justify;
                        }
                    }
                }
            }
        }     
    }

    .donations{
        padding: 0 10px;
        .wrap-donation{
            .icon{
                i{
                    font-size: 150px;
                }
            }
            
            .body-text{
                .button-btn{
                    a{
                        width: 250px;
                    }
                }
            }
        }
    }

    #contact{
        padding: 60px 30px;
        .contact-container{
            .content{
                .content-group{
                    .content-item{
                        .item-info{
                            i{
                                font-size: 20px;
                            }
                            h4{
                                font-size: 13px;
                            }
                            a{
                                font-size: 13px;
                            }
                        }
                    }

                    .social-accounts{
                        ul li a{
                            font-size: 13px;
                            span{
                                font-size: 13px;
                            }
                        }
                        ul li i{
                            font-size: 30px;
                            margin-left: 15px;
                        }
                        ul li a .linkedin{
                            padding: 5px 15px;
                        }
                        ul li a .youtube{
                            padding: 5px 12px;
                        }
                        ul li a .instagram{
                            padding: 5px 10px;
                        }
                        ul li a .twitter{
                            padding: 5px 15px;
                        }
                    }
                }
            }
        }
    }

    #underconstruction{
        .container{
            h2{
                font-size: 25px;
            }
        }
    }

    #donations-campaign{
        .campaign-container{
            .campaign-header{
                .icon{
                    i{
                        font-size: 100px;
                    }
                }
            
                .title{
                    padding: 0  10px;
                    h3{
                        margin-top: 15px;
                        font-size: 20px;
                        line-height: 30px;
                    }
                    h2{
                        font-size: 30px;
                        margin-top: 0px;
                        line-height: 40px;
                    }
                    h4{
                        font-size: 25px;
                  
                    }
                }
            }

            .campaign-body{
                width: 100%;
                height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;

                h2{
                    font-size: 35px;
                    span{
                        font-size: 35px;

                    }
                }
            }
        }
    }

    #underconstruction{
        .un-body{
            h4{
                font-weight: 100;
                font-size: 16px;
                margin-bottom: 30px;

                span{
                    font-size: 16px;
                    color: var(--primary-color);
                }
            }
            h2{
                font-size: 25px;
            }
        }
    }
} 
