/* ...................General (applies to all pages).................*/

body .tempmsg{
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin: 0px;
    background-color:#ffd000;
    position: relative;
    text-align: center;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #2b2b2b;
    font-weight: bold;
    font-size: 0.5rem;
    display: block;
}


.thegroupsub .undercon{
    margin-top: 35px;
    margin-bottom: 50px;
    
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    font-size: 12px;
    width: 100%;
    opacity: 40%;
}
.thegroupsub .undercon h3{

    font-size: 18px;
    color: #414141;
    margin: 30px;
    text-align: center;
}

#nn{
    color: #464646;
}

.undercon #tools{
width: 100px;
}

body .tempmsg .redirect{
    color: #0004ff;
    margin-left: 6px;
    margin-right: 6px;

}

body .tempblock{
    display: block;
    height: 100vh;
}


body {
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-image: linear-gradient(#aeb1bd00,#0053c000);*/
    background-image: radial-gradient(#dae2fc 1px, #f3f5ff 1px);
    background-size: 15px 15px;
    z-index: -1;
    background-repeat: repeat;
    /*background-size: contain;*/
    /*background-attachment: fixed;*/
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    width: 100%;
    height: fit-content;

}


header {
    top: 0;
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(90deg, #ffffff00,#ffffff69,#ffffffad);
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0);
    position: relative;   
    z-index: 1000;
    width: 100%; /* Make the header full width */
    transition: box-shadow 0.5s, height 0.5s;
    height: fit-content;
}

header:hover {
    box-shadow: 0 2px 15px rgba(28, 30, 32, 0.148);
    background-color: #ffffff;
}


#menu-toggle {
    display: none; 
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #004085;
    position: relative;
}

.logo {
    width: 150px; /* Explicit smaller width */
    height: auto;
    max-width: 100%; /* Prevents it from exceeding container width */
    object-fit: contain; /* Ensures it doesn't distort */
    vertical-align: middle; /* Aligns with other navbar elements */
    position: relative; /* Keeps it positioned properly */
    padding-top: 0px;
    padding-bottom: 0px;
}

.nav{
    width: 100%;
}

nav ul :first-child{
    margin-right: auto;
}

nav ul{
    list-style: none;
    margin-right: 20px;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}


.nav ul li {
    display: flex;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;

}

.Contribute{
    padding-top: 20px;
    padding-bottom: 20px;

}

.Bulletin{
    padding-top: 20px;
    padding-bottom: 20px;

}

.nav ul li a {
    font-size: 12px;
    display: flex;
    text-align: center;
    color: #003a77;
    text-decoration: none;
    transition: color 0.3s, font-size 0.3s, font-style 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
}

.nav ul li a:hover {
    color: #000ed2;
}

.Donatebutton {
    vertical-align:middle;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #010164;
    background: #00004e00;
    border-color: #010164;
    border-style:solid ;
    border-radius: 8px;
    cursor: pointer;
    transition: ease-in-out 0.3s, transform 0.3s;
    margin-right: 20px;
    
}

.Donatebutton:hover {
    color: #0003bd;
    border-color: #0003bd;
    background: #0003bd00;
    transform: scale(1.03);
}



.dropdown {
    display: none; 
    position: absolute;
    z-index: -1;
    top:0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 50vh;
    padding-bottom: 5%;
    background-image: linear-gradient(#ffffff,#ffffff);
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease, transfrom 0.5s ease;
    -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
    -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
    box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
    animation: expand 0.5s;
}


.dropdown .d {
    width: 100%;
    text-align: start;
    flex-direction: row;
    margin-top: 100px;
    margin-right: 10px;
    margin-left: 10px;
    
}

.dropdown li .C{
    text-align: start;
    color: #414141;
    font-size: 75%;
    font-weight: light;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    margin-bottom: 10px;
}
.dropdown .C:hover {
    color: #414141;
}

.dropdown li .Csub {
    text-align: start;
    font-size: 100%;
    padding-bottom: 10px;
    font-weight: bold;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #003a77;
    text-decoration: none;
}

.dropdown li .Csub:hover {
    color: #333;
} 


.nav li:hover > .dropdown {
    margin:0px;
    text-align: left;
    display: flex;
    opacity: 100%;
    align-items: start;
    z-index: 0.5;
}


.dropdown2 {
    display: none; 
    position: absolute;
    z-index: -1;
    top:0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(#ffffff,#ffffff);
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease, transfrom 0.5s ease;
    -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
    -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
    box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
    animation: expand 0.5s;
}

.dropdown2 .d {
    display: flex;
    align-items: flex-start;
    margin-top: 100px;
    margin-right: 80px;
    float: left;
}

.dropdown2 li .C{
    color: #414141;
    font-size: 12px;
    font-weight: light;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    margin-bottom: 10px;
}
.dropdown2 .C:hover {
    color: #414141;
}

.dropdown2 li .Csub {
    text-align: left;
    flex-wrap: wrap;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: bold;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #003a77;
    text-decoration: none;
}

.dropdown2 li .Csub:hover {
    color: #333;
} 


.nav li:hover > .dropdown2 {
    display: flex;
    align-items:flex-start;
    align-content: center;
    justify-content:center;
    justify-items: center;
    opacity: 100%;
}



@keyframes expand{
    0% {height: 0px; opacity: 0%;}
    100%{height: 50vh; opacity: 100%;}
}

@keyframes trans{
    0% {align-items:flex-end; opacity: 0%;}
    100%{align-items:baseline; opacity: 100%;}
}


nav ul li .Home{
    display: none;
    text-align: center;
}

.plus{
    display: inline-flex;
    vertical-align: middle;
}

nav .logo2{
    display: none;
}



@media (max-width: 900px) {


    header{
        top: 0;
        display: flex;
        justify-content: space-between;
        background-image: linear-gradient(90deg, #1500ff26, #3b96ec12,#3becb110,#ff005137);
        align-items: center;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0);
        position: sticky; 
        z-index: 1000;
        width: 100%;
        -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.532);
        -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.562);
        box-shadow: 0 5px 5px rgba(182, 182, 182, 0.516);
        height: fit-content;
    }

    .nav{
        background-image: linear-gradient(#ffffff,#ffffffb3);
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-around;
        width: 100%;
    }

    .logo{
        display: none;
    }

    .nav .hidden1{
        display: none;
    }


    nav .Home{
        display: flex;
    }

    .nav .logo2{
        display: flex;
        width:15%;
        height: auto;
        max-width: 100%; /* Prevents it from exceeding container width */
        object-fit: contain; /* Ensures it doesn't distort */
        vertical-align: middle; /* Aligns with other navbar elements */
        position: relative; /* Keeps it positioned properly */
        padding: 15px;
    }

    #menu-toggle {
        display: flex; /* Show menu button */
        color: #0f1247;
        float: right;
    }

    .nav ul {
        display: none; /* Hidden initially */
    }

    .nav ul.show {
        position: absolute;
        top: 75px;
        z-index: 10000;
        display: block;
        width: 100%;
        height:fit-content;
        gap: 0px;
        padding: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0px;
        background-color: #ededed;
        -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
        -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
        box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
        animation: expand2 0.3s;
    }

    .nav ul li {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
        margin-bottom: 1px;
        margin-top: 1px;
        margin-right: 0px;
        margin-left: 0px;
        width: 100%;
        background-color: #ffffff;
    }

    .nav ul li :hover{
        background-color: #e3e3e3;
    }
    
    .Contribute{
        padding-top: 0px;
        padding-bottom: 0px;
        height: fit-content;
    }
    .Bulletin{
        padding-top: 0px;
        padding-bottom: 0px;
        height: fit-content;
    }

    
    .nav ul li a {
        display: inline-flex;
        text-align: center;
        font-family: "Satoshi", Helvetica, Arial, sans-serif;
        font-size: medium;
        font-weight: bold;
        color: #1d27b0;
        text-decoration: none;
        transition: color 0.3s, font-size 0.3s, font-style 0.3s;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0px;
        animation: trans2 2s;
    }


    @keyframes expand2{
        0% {height: 0px; opacity: 0%;}
        100%{height:fit-content; opacity: 100%;}
    }
    
    @keyframes trans2{
        0% {opacity: 0%;}
        100%{opacity: 100%;}
    }

    .dropdown .d .Csub{
        display: none;
        }
        
    .dropdown {
        position: relative;
        z-index: 1;
        top:0px;
        left: 0px;
        right: 0px;
        width: 100%;
        height: fit-content;
        display:flex;
        flex-direction: column;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom:0px ;
        background:#ffffff;
        backdrop-filter: blur(0px);
        transition: opacity 0.3s ease, transfrom 0.5s ease;
        -moz-box-shadow:none;
        -webkit-box-shadow:none;
        box-shadow:none;
        animation: expand 0.5s;
    }
    
    ul .dropdown .d{
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
        text-align: center;
        margin-top: 1px;
        margin-bottom: 1px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 0px;
        width: 100%;
        background-color: #f5f5f5;
        animation: trans 0.6s;
    } 
    
    ul .dropdown .d a {
        font-size: 16px;
        display: inline-flex;
        flex-direction: column-reverse;
        text-align: center;
        color: #1d27b0;
        font-weight:normal;
        text-decoration: none;
        transition: color 0.3s, font-size 0.3s, font-style 0.3s;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
        left: 0%;
        right: 0%;
        gap: 0px;
        background-color:none;
        animation: trans 2s;
    }
    
 
    
    .nav li:hover > .dropdown {
        display: flex;
        opacity: 100%;
    }
    
    
    @keyframes expand{
        0% {height: 0px; opacity: 0%;}
        100% {height: 50%; opacity: 50%;}
        100%{height: fit-content; opacity: 100%;}
    }
    
    @keyframes trans{
        0% {align-items:flex-end; opacity: 0%;}
        100%{align-items:baseline; opacity: 100%;}
    }

    .dropdown2 .d .Csub{
        display: none;
        }
        
    .dropdown2 {
        position: relative;
        z-index: 1;
        top:0px;
        left: 0px;
        right: 0px;
        width: 100%;
        height: fit-content;
        display:flex;
        flex-direction: column;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 0px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom:0px ;
        background:#ffffff;
        backdrop-filter: blur(0px);
        transition: opacity 0.3s ease, transfrom 0.5s ease;
        -moz-box-shadow:none;
        -webkit-box-shadow:none;
        box-shadow:none;
        animation: expand 0.5s;
    }
    
    ul .dropdown2 .d{
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
        text-align: center;
        margin-top: 1px;
        margin-bottom: 1px;
        margin-left: 0px;
        margin-right: 0px;
        gap: 0px;
        width: 100%;
        background-color: #f5f5f5;
        animation: trans 0.6s;
    } 
    
    ul .dropdown2 .d a {
        font-size: 16px;
        display: inline-flex;
        flex-direction: column-reverse;
        text-align: center;
        color: #1d27b0;
        font-weight:normal;
        text-decoration: none;
        transition: color 0.3s, font-size 0.3s, font-style 0.3s;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 0px;
        padding-left: 0px;
        left: 0%;
        right: 0%;
        gap: 0px;
        background-color:none;
        animation: trans 2s;
    }
    
    .nav li:hover > .dropdown2 {
        display: flex;
        opacity: 100%;
    }
    
    
    @keyframes expand{
        0% {height: 0px; opacity: 0%;}
        100% {height: 50%; opacity: 50%;}
        100%{height: fit-content; opacity: 100%;}
    }
    
    @keyframes trans{
        0% {align-items:flex-end; opacity: 0%;}
        100%{align-items:baseline; opacity: 100%;}
    }
}

@media (max-width:500px) {
    .nav ul.show {
        position: absolute;
        top: 60px;
        z-index: 10000;
        display: block;
        width: 100%;
        height:fit-content;
        gap: 0px;
        padding: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0px;
        background-color: #ededed;
        -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
        -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
        box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
        animation: expand2 0.3s;
    }
}

.thegroupsub .standard-image{
    position: relative;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    background-image:linear-gradient(60deg, #9f469c17,#004cfe25,#1700e415,#c5000d15);
    text-align: center;
    align-self: center;
    height: fit-content;
    border-radius: 18px;
    align-self: center;
}

.Flowcontent{
    position: relative;
    margin: 10px;
    align-self: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: fit-content;

}

.Flowcontent1{
    position: relative;
    margin-top: 50px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 50px;
    align-self: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: fit-content;


}
.Flowcontent2{
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 30px;
    display: none;
    position: relative;
    margin: 10px;
    align-self: center;
    width: fit-content;
    flex-direction: column;
    flex-wrap: wrap;
    height: fit-content;


}
@media(max-width:500px){
    .Flowcontent1{
        display: none;
    }
    .Flowcontent2{
        display: flex;
    }
}

.flowpng{
    width: 100%;
    
}

.thegroupsub .standard-image img{
    max-width: 50%;
    aspect-ratio: 70%;
    align-self: center;
    
}

.thegroupsub .standard-call-out{
    position: relative;
    margin: 30px;
    display: flex;
    height: fit-content;
    background-color: #c9c9cd27;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 30px;
    border-radius: 18px;
}


.thegroupsub .standard-call-out p{
    font-style: italic;
    margin: 0%;
    color: #383838;
    text-align: start;
    text-justify:newspaper;
}
.thegroupsub .standard-call-out p{
    font-style: italic;
    margin: 0%;
    color: #383838;
    text-align: start;
    text-justify: inter-word;
    hyphens: auto;
}
/* Footer */
footer {
    display: flex;
    flex-direction: row;
    background: #e6e6f4;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items:center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #525252;
    border-top: 1px solid #ddd;
    width: 100%;
}
footer .sub-footer{
    text-align: left;
    align-items: start;
    display: flex;
    flex-direction: column;
    padding: 50px;
    
}

footer .sub-footer3{
    text-align: left;
    align-items: start;
    display: flex;
    flex-direction: column;
    padding: 50px;
    margin-right: 50px;
    
}

@media (max-width: 885px){
    footer .sub-footer3{
        text-align: left;
        align-items: start;
        display: flex;
        flex-direction: column;
        padding: 50px;
        margin-right: 0px;
        
    }

    footer {
    flex-direction: column;
    }
}

footer div div{
    display: flex;
    flex-direction: row;
    text-align: left;
}

footer .logo2{
    width: 50px;
    filter: grayscale(1);
    opacity: 75%;


}

footer .logo2:hover{
    filter: grayscale(0.2);
    opacity: 100%;


}

.fa {
    padding: 20px;
    width: 10px;
    height: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    margin: 5px 2px;
    background: #d5ddee00;
    color: rgb(0, 0, 0);
  }

  
  .fa-facebook:hover {
    background: #0b4cd879;
    color: white;
  }
  
  .fa-google:hover {
    background: #dd4c397b;
    color: white;
  }
  
  .fa-youtube:hover {
    background: #bb00008a;
    color: white;
  }
  
  .fa-instagram:hover {
    background: #7700637a;
    color: white;
  }
  
  @media (max-width:500px) {
    footer {
        display: flex;
        flex-direction: column;
        background: #e6e6f4;
        text-align: center;
        justify-content: center;
        justify-items: center;
        align-items:center;
        font-size: 0.7rem;
        font-weight: bold;
        color: #525252;
        border-top: 1px solid #ddd;
        width: 100%;
    }
    footer .sub-footer{
        text-align: left;
        align-items: start;
        display: flex;
        flex-direction: column;
        
    }
    
    footer div div{
        display: flex;
        flex-direction: row;
        text-align: left;
    }
    
    footer .logo2{
        width: 50px;
        filter: grayscale(1);
        opacity: 75%;
    
    
    }

  }



/* .........................................(1) INDEX (1).......................................*/

.news {
    display:flex;
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px ;
    width: 100%;
    height: inherit;
    top: 0px;
    position: relative;
}


.Hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    position: relative;
    margin-bottom: 100px;
}

.Hero h1{
    text-align: center;
    font-size: 80px;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    font-weight: light;
    font-kerning: auto;
    line-height: 99%;
    padding-bottom: 10px;
    background-image:linear-gradient(60deg, #9f469c,#004cfe,#1700e4,#c5000d);
    -webkit-text-fill-color: #00004e00;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    animation: fadeInDown ease 2s;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 0%;
    margin-top: 50px;
}

@keyframes fadeInDown{
    0% { opacity: 0%;}
    100%{ opacity: 100%;}
}


.Hero h2{
    text-align: center;
    font-size: 20px;
    font-weight: lighter;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #000c45a7;
    font-style: italic;
    margin-right: 23px;
    margin-left: 23px;
    margin-bottom: 35px;
    max-width: 500px;
}   

.Hero div {
    display: flex ;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    gap: 20px;
}
 .learbutton {
    width: fit-content;
    padding: 8px 20px;
    font-size: 1rem;
    border: transparent;
    font-weight: 500;
    color:#010164;
    border-width: 1.5px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    background:none;
    font-style: none;
    text-decoration: none;
    transition:ease-in-out background 0.3s, transform 0.2s;
}
.joinbutton{
    margin-left: 10px;
    width: fit-content;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    border: transparent;
    border-radius: 10px;
    cursor: pointer;
    background:#2536e7;
    font-style: none;
    text-decoration: none;
    transition:ease-in-out background 0.3s, transform 0.2s; 
}

.joinbutton:hover{
    color: #ffffff;
    background: #00004e;
    transform: scale(1.05);  
}

.learbutton:hover {
    color:#0000ff;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}


.SI{
    background-color:#f2f2f200;
    position: relative;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content:center;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding-bottom: 50px;

}

.SI p{
    text-align: center;
    font-size: 20px;
    font-weight: lighter;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #000c45a7;
    font-style: italic;
    margin-top: 0%;
    margin-right: 23px;
    margin-left: 23px;
    margin-bottom: 35px;
    max-width: 500px;

}

.SI .SIcard h3{
    text-align: center;
    font-size: 20px;
    font-weight: medium;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    color: #000c45a7;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 35px;
    max-width: 500px;

}

.SI .SIcards{
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-bottom: 35px;
    margin-right: 35px;
    margin-left: 35px;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;


}
.SI .SIcard{
    text-align: center;
    align-items: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    width: 250px;
    margin-bottom: 35px;
    border-radius: -20px;
    padding: 15px;


}

.SI .size-6{
    width: 50px;
    text-align: left;
    position:relative;
    margin-top: 20px;
    background-color: #ffffff94;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
    -moz-box-shadow:0 5px 20px rgba(155, 186, 237, 0.436);
    -webkit-box-shadow: 0 5px 20px rgba(155, 186, 237, 0.434);
    box-shadow: 0 5px 20px rgba(155, 186, 237, 0.358);
    transition: 0.2s;
}
.SI .size-6:hover{
    width: 53px;

}

.SubHero{
    background-color:#030335;
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content:center;
    justify-items: center;
    align-items: center;
    align-content: center;
    -moz-box-shadow:0 -20px 20px rgba(155, 186, 237, 0.274);
    -webkit-box-shadow: 0 -20px 20px rgba(155, 186, 237, 0.276);
    box-shadow: 0 -20px 20px rgba(155, 186, 237, 0.237);
}

.SubHeroscroller{
    position: relative;
    height: 100%;
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 45%;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}


.snaps-inline{
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 100px;
}

.snaps-inline > *{
    scroll-snap-align: start;
}


#SubHeroTitle{
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    color:#ffffff;
    font-size: 32px;
    margin: 50px;
    text-wrap: wrap;
    text-align: center;
}
.SubHeroscroller div{
    display: flex;
    height: fit-content;
    margin-left: 25px;
    margin-bottom: 50px;
    background-color:#dae2ff;
    border-radius: 20px;
    -moz-box-shadow:0 5px 20px rgba(155, 186, 237, 0.436);
    -webkit-box-shadow: 0 5px 20px rgba(155, 186, 237, 0.434);
    box-shadow: 0 5px 20px rgba(155, 186, 237, 0.358);
}

.SubHeroscroller #slide{
    display: grid;
    grid-template-rows: min-content;
}

.SubHeroscroller #slide img{
    width: 200px;
    position: relative;
    opacity: 30%;
    border-top-right-radius: 18px ;
    border-bottom-right-radius: 18px;
}

.SubHeroscroller #slide .card{
    position: relative;
    display: flex;
    text-align: start;
    align-items: start;
    align-content: start;
    justify-content: start;
    justify-items: start;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 10px;
    
}

.SubHeroscroller h1{
    text-align: start;
    align-items: start;
    align-content: start;
    justify-content: start;
    justify-items: start;
    font-size: 20px;
    font-family:  "Satoshi", Helvetica, Arial, sans-serif;
    margin: 30px;
    margin-bottom: 10px;
    color: #010164;
}
.SubHeroscroller h2{
    text-align: start;
    align-items: start;
    align-content: start;
    justify-content: start;
    justify-items: start;
    font-size: 16px ;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    margin: 30px;
    margin-bottom: 10px;
    margin-top: 0px;
    color:#010164;
}
.SubHeroscroller h2:hover{
    color:#0000ff;
    text-decoration-line: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.SubHeroscroller p{
    text-align: start;
    align-items: start;
    align-content: start;
    justify-content: start;
    justify-items: start;
    font-size: 16px;
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    color: #515256;
    margin: 30px;
    margin-top: 10px;
}


.SubHeroscroller .card a{
    text-decoration:none;
}
  

.homecards{
    position: relative;
    display: flex;
    padding-bottom: 100px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    height: fit-content;
    background-image:linear-gradient(#fdfdfd,#ffffff);
    -moz-box-shadow:0 10px 20px rgba(155, 186, 237, 0.274);
    -webkit-box-shadow: 0 10px 20px rgba(155, 186, 237, 0.276);
    box-shadow: 0 10px 20px rgba(155, 186, 237, 0.237);
    width:100%;
}
#homecardsTitle{
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    color:#010164;
    font-size: 32px;
    margin: 50px;
    text-wrap: wrap;
    text-align: center;
}
.empth{
    font-style: italic;
    background-image:linear-gradient(60deg, #9f469c,#004cfe,#1700e4,#c5000d);
    -webkit-text-fill-color: #00004e00;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    padding: 5px;
    font-size: 40px;
}

.homecards div{
    width:100%;
    margin-right: 20px;
    margin-left: 20px;
    display: grid;
    align-items: center;
    align-content: center;
    justify-items: center;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
}

.homecards div div{
    height: fit-content;
    flex-grow: 1;
    flex-basis:1;
    padding: 15px;
    z-index: 10;
    display: block;
    color:#010164;
    width: 80%;
    height: 270px;
    border-radius: 18px;
    background-image: linear-gradient(#dae2ff,#30666d00);
}

.homecards .size-6{
    width: 25px;
    text-align: left;
    position:relative;
    margin: 10px;
    background-color: #0000ff94;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
}

.homecards div div:hover .size-6{
    background-color: #ffffff82;
    color: #0000ffcc;
}

.homecards div div:hover h2{
    text-decoration-line: underline;
    text-underline-offset: 3px;
}


.homecards div h2{
    font-size: 20px;
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    font-weight: bold;
    text-align: left;
    margin:10px;
    color: #010164;

}

.homecards div p{
    font-size: 16px;
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    color: #515256;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
}



.VMV{
    background-image: linear-gradient(#ffffff,#0000,#0000,#dae2ff) ;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
    margin: 0;
    width: 100%;
}



.VMV h2{
    font-family: "Satoshi", Helvetica, Arial,  sans-serif;
    color:#010164;
    font-size: 20px;
    margin: 10px;
    text-align: center;
}

.VMV div {
    justify-content:center ;
    justify-items: center;
    align-items: center;
    align-content: center;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;

    
}
.VMV div div{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 10px;
    text-align: center;
    justify-content:center ;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.VMV img{
    width: 150px;
    margin: 0;

}

@media (max-width: 1230px) and (min-width:920px) {
    .homecards div{
        width:70%;
    }
}

@media (max-width: 1100px) {

    .SubHero .card #none{
        display: none;
        position: absolute;
    }
   #none{
        display: none;
        position: absolute;
    }

    .SubHero .card h2{
        text-decoration-line: underline;
        text-underline-offset: 3px;
    }

    .SubHeroscroller{
        position: relative;
        width: 100%;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 70%;
        gap: 15px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    .Hero{
        text-align: start;
        justify-items: start;
        justify-content: start;
        align-items: start;
        align-content: start;
    }

    .learbutton{
        margin-left: 20px;
    }

    .Hero h1{
        text-align: start;
    }

    .Hero h2{
        text-align: start;
        font-size: 1.3rem;
        }

    .Hero div {
        justify-content: start;
        justify-items: start;
        align-items: start;
        width: 100%;
        gap: 15px;
    }
        
}

/* ....................................(2) THE GROUP (2).......................................*/

.max {
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(#aeb1bd00,#0053c000);
    background-attachment: fixed;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; 
    justify-items: center;
    align-content: center;/* Center items vertically */
    width: 100%;
    height: fit-content;
    background-color: #ffffff;
}

.headline{
    width: 100%;
    background-color: #f0f3fff7;
    height: 50px;
    display: flex;
    align-items: center;
}

.headline h1{
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    font-size: medium;
    color: #1b26c6;
    text-align: start;
    margin-left: 30px;
    
}
.headline a{
    color: inherit;
    font-family: inherit;
    text-decoration: none;
  
}

.doubleback{
    width: 100%;
    background-color: #fefefe;
    height: 52px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg,#ffffff,#7481e4b5,#f6f7ff);
}

.doublebackmain{
    width: 100%;
    background-color: #fefefe;
    margin-top: 20px;
    height: 52px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg,#ffffff,#7481e4b5,#f6f7ff);
}

.headlinemain h1{
    text-align: center;
    font-size: 50px;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;
    font-weight: lighter;
    font-kerning: auto;
    line-height: 100%;
    padding-bottom: 10px;
    background-image:linear-gradient(60deg, #9f469c,#004cfe,#1700e4,#c5000d);
    -webkit-text-fill-color: #00004e00;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;

}

.headlinemain{
    margin-top: 60px;
    margin-bottom: 10px;
}

.bellowmax{ 
    width: 100%;
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    grid-template-areas: 
    "aside main";
    margin-left:  10px;
    margin-right: 10px;
}

.sidebar {
    width: 100%; /* Set a width for the sidebar */
    height: fit-content;
    background-image: linear-gradient(90deg,#ffffff,#7481e4b5,#f6f7ff); /* Light background color */
    position: relative; /* Fix the sidebar to the left */
    margin-top: 25px;
    border-radius: 0px;
    margin-left: 0px;
    margin-right: 0px;
    z-index: 1;
    grid-area: aside;
    transition: box-shadow 0.4s;
}

.sidebar:hover {
    
    background-image: linear-gradient(90deg,#ffffff,#7481e4b5,#f6f7ff);
}

.sidebar div{
    display: flex;
    margin-top: 1px;
    margin-bottom: 1px;
    width: 100%;
    background-color: #ffffff;
    transition: 0.1s;
}

.sidebar div:hover{   
    background-image:linear-gradient(90deg,#33333300,#8882e211,#33333300);
}

.sidebar div:hover a{   
    color: #241ab8;
}

.sidebar a {
    padding: 10px;
    padding-left: 30px;
    display: flex;
    text-decoration:none;
    font-size: 14px;
    color: #002f55;
}

.sidebar :first-child{
    margin-top: 0px;
}


.Thegroupmain{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    flex-wrap: wrap;
    grid-area: main;
    padding: 0%;
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 100px;
    width: 100%;
}
  

.vmg-3-img{
    display: flex;
    flex-direction: row;
    width: 100%;
}



.thegroupsub h2{
    background-image:linear-gradient(60deg, #9f469c,#004cfe,#1700e4,#c5000d);
    -webkit-text-fill-color: #00004e00;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    font-size: 30px;
    font-weight: bold;
    margin-top: 0%;
    margin-left: 30px;

 }
 .thegroupsub h3{
    color: #000069;
    font-size: 20px;
    font-weight: bold;
    margin-top: 0%;
    margin-left: 30px;
    margin-right: 10px;

 }
 .thegroupsub ul li{
    list-style: none;
 }


 .thegroupsub #vmgtitle{
    text-align: center;
    align-self: center;
    margin-top: 30px;
    margin-right: 0%;
    margin-left: 0%;
}

 hr {
     width: 100%; 
     height: 2px;
     border: none;
     background-image: linear-gradient(90deg, #57575700, #000069,#57575700);
    }

.thegroupsub {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    position: relative;
    align-items: start;
    width: 100%;
    height: fit-content;

   
    
}

.thegroupsub p{
    margin-right:30px;
    margin-left: 30px;
}



#visionImg{
    position: relative;
    width:100px;
}

.Thegroupmain .Border{
    position: relative;
    margin: 10px 10px 10px 10px;
    align-self: center;
    width: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: fit-content;
    background-color: #c9c9cd27;
    padding-left: 15px;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 30px;
    border-radius: 12px;
}


.Border h3{
    text-align: center;
    margin-bottom: 20px;
}

.Border .TOFmember {

    margin: 20px;

}

.Border .TOFmember p1{
    text-decoration: solid;
    font-weight: bold;

}
.Border .TOFmember p{
    margin: 0%;

}

.Border .TOFmember p3{
    opacity: 65%;

}

.thegroupsub details summary{

    list-style: none;
    cursor: pointer;
}
.thegroupsub details {
    margin-left: 15px;
}
.thegroupsub details h4:hover {
    color: #1200b0;
}

.thegroupsub details li{
    list-style: none;
    margin:10px;
    text-indent: -15px;
    color: #424248c4;
}
.thegroupsub details li:hover{
    color: #101027;
}


.thegroupsub details p{
    color: #424248c4;
}
.thegroupsub details p:hover{
    color: #101027;
}

summary::-webkit-details-marker {
     display: none }



@media (max-width: 900px) {

    .bellowmax{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        justify-items: center;
        width: 100%;
    }

    .Thegroupmain {
        display: inline-flex;
        margin-top: 25px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 25px;
        width:100%;
    }
    
    .sidebar{
       display: inline-block;
       position: relative;
       text-align: center;
       margin:0%;
       width:100%;
       
    }

}

/* .........................................(1) become a memeber (1).......................................*/
.Becomemember{
    width:100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}
.membershipbox{
    background-color:#adb5d684;
    box-shadow: #0000ff;
    width: 50%;
    height: 500px;
    margin:35px;
    border-radius: 20px;
}

.membershipbox:hover{
    -moz-box-shadow:0 5px 20px rgba(182, 182, 182, 0.75);
    -webkit-box-shadow: 0 5px 20px rgba(182, 182, 182, 0.75);
    box-shadow: 0 5px 20px rgba(182, 182, 182, 0.75);
}

.sub-page-cards .card0 {
   

}
/* .........................................(1) CONTACT US (1).......................................*/
.leadbutton{
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background:#00004e;
    border: none;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius:50%;
    cursor: pointer;
    transition:ease-in-out background 0.3s, transform 0.2s;
}

.leadbutton:hover {
    color: #ffffff;
    background: #c30000;
    transform: scale(1.05);
}

.Contactusmain h1{
    text-align: center;
    font-size: 2.5rem;

}

.Contactusmain h2{
    font-size: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;

}

.sub-page-cards {
    padding: 50px;  
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    gap: 20px;
}

.sub-page-cards div {
    text-align: left;
    width: 140px;
    height: 210px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-top: 20px ;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.041);
    background-image: linear-gradient(#ffffffa8,#ffffff00);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}
.sub-page-cards div #icons{
    width: 20%;
}




.sub-page-cards  div:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
    background-image: linear-gradient(#0013a4e4,#5f84ffd0);
}

.sub-page-cards .cardx{
    text-align: left;
    width: 140px;
    height: 210px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
    padding-top: 20px ;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.041);
    background-image: linear-gradient(#ffffffa8,#ffffff00);
    transition: box-shadow 0.3s, transform 0.3s;
    opacity: 50%;
    cursor:not-allowed;
}

.sub-page-cards .cardx:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    transform: translateY(-3px);
    background-image: linear-gradient(#0013a4e4,#5f84ffd0);
    opacity: 30%;
}

.sub-page-cards  div:hover h2 {
    color: #ffffff;
}

.sub-page-cards div h1{
    text-align:left;
    font-size: 1.5rem;
}


.sub-page-cards div h2{
    text-align:left;
    color: #3d3d44;
    font-size: 1rem;
    font-weight: lighter;
    font-family: "Satoshi", Helvetica, Arial, sans-serif;


}

.sidebar div .chosen{
    color: #0004ff;
}

#clickables{
    text-decoration: inherit;
    color: inherit;
    
}


/* .........................................(4) Bulletin (4).....#e5f1ff54..................................*/


.Bulletinbody{ 
height: 100%;
}

.bulletinmain section{
height: 100%;
width:inherit;
}

.blogsx .announcementsx div{
    display: flex;
    position: relative;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    text-align: center;
    overflow:hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 50px;
    margin-left: 50px;
    padding: 20px;
    border: 1px solid #ffffff00;
    border-radius: 10px;
    background: #ffffff00;
    transition: box-shadow 0.3s, transform 0.3s;

}


.blogsx :hover{
    border: 1px solid #ffffff00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background-image: linear-gradient(#c0000000,#e5f1ff54);
}


.announcementsx :hover{
    border: 1px solid #ffffff00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background-image: linear-gradient(#c0000000,#e5f1ff54);
}


/* Main Content ****************************************************8*/









