:root {
    --primary-clr: #fdba21;
    --secondary-clr: #1a61b8;
    --accent-clr: #4DFFF3;
    --body-clr: #121638;
    --button-clr: #FF1053;
    --font-light: #F7FFF7;
    --font-dark: #0A0903;
}

@font-face {
    font-family: Headers;
    src: url(/static/Crypto/fonts/Mont2.ttf);
}

@font-face {
    font-family: General;
    src: url(/static/Crypto/fonts/Quicksand.ttf)
}

@font-face {
    font-family: Unique;
    src: url(/static/Crypto/fonts/Mont2.ttf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: General;
    font-size: 10px;
}

body {
    position: relative;
    color: var(--font-light);
    width: 100%;
    background: var(--body-clr);
    overflow-x: hidden;
}

.body-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p, h1, h2, h3, h4 {
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 300;
    letter-spacing: 0.15rem;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* loader section */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--body-clr);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 1.5s;
    z-index: 20000;
}

#loader h2 {
    font-family: Unique;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    color: var(--font-light);
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
    border-right: 0.2rem solid var(--accent-clr);
    border-left: 0.2rem solid var(--accent-clr);
}

.load-cont {
    position: relative;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-reflect: below 0.5rem linear-gradient(transparent, transparent, #000);
}

.load-cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    object-fit: cover;
    z-index: 10;
}

.load-cont::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--primary-clr) 0%, var(--secondary-clr) 100%);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.load-cont::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background: var(--body-clr);
    border-radius: 50%;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* scroll to top */

.scrolltotop {
    position: fixed;
    bottom: 40rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--font-dark);
    border-radius: 50%;
    border: 0.15rem solid var(--primary-clr);
    z-index: 5000;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.scrolltotop svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.8rem;
    height: 2.8rem;
}

.scrolltotop svg path {
    fill: var(--primary-clr);
}

.scrolltotop.active {
    bottom: 4rem;
    visibility: visible;
    opacity: 1;
}

/* header section */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right,  var(--primary-clr), #000, #000, #000);
    border-bottom: 0.15rem solid var(--primary-clr);
    backdrop-filter: blur(0.5rem);
    z-index: 10000;
}

.header-cont {
    position: relative;
    max-width: 160rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.logo-cont:hover {
    transform: scale(0.95);
}

.logo-cont .logo {
    position: relative;
    height: 4rem;
    width: 4rem;
}

.logo-cont .logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-cont .logo-name {
    font-family: Unique;
    font-size: 3.5rem;
    color: var(--font-light);
    letter-spacing: 0.4rem;
    font-weight: 700;
    transition: 0.3s;
}

.logo-cont:hover .logo-name {
    opacity: 0.8;
}

.menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 1;
}

#toggle {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 0.5rem;
    border: 0.2rem solid var(--primary-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

#toggle.openmenu {
    border: 0.2rem solid var(--button-clr);
}

#toggle::before {
    content: "";
    position: absolute;
    width: 3rem;
    height: 0.25rem;
    background: var(--primary-clr);
    border-radius: 0.5rem;
    transition: 0.3s;
    transform: translateY(-1rem);
    box-shadow: 0 1rem var(--primary-clr);
}

#toggle.openmenu::before {
    transform: translateY(0rem) rotate(45deg);
    box-shadow: none;
    background: var(--button-clr);
}

#toggle::after {
    content: "";
    position: absolute;
    width: 3rem;
    height: 0.25rem;
    background: var(--primary-clr);
    border-radius: 0.5rem;
    transition: 0.3s;
    transform: translateY(1rem);
}

#toggle.openmenu::after {
    background: var(--button-clr);
    transform: translateY(0rem) rotate(-45deg);
}

#navbar {
    position: relative;
    height: 6rem;
    right: 6rem;
    transition: 0.3s;
    width: 0rem;
    overflow: hidden;
}

#navbar.active {
    width: 66rem;
}

#navbar ul {
    position: relative;
    display: flex;
    flex-direction: row;
}

#navbar ul li a {
    color: var(--font-light);
    height: 6rem;
    line-height: 6rem;
    display: inline-block;
    font-size: 2rem;
    font-family: Unique;
    letter-spacing: 0.2rem;
    padding: 0 1.5rem;
    transition: 0.3s;
}

#navbar ul li a:hover {
    transform: scaleX(1.1);
    color: var(--primary-clr);
}

/* footer section */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    background: var(--font-dark);
    width: 100%;
    height: auto;
    border-top: 0.15rem solid var(--accent-clr);
}

.brand {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand h2 {
    font-family: Unique;
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    font-weight: 300;
    color: var(--primary-clr);
    text-align: center;
}

.brand h2 span {
    color: var(--secondary-clr);
}

.links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1rem;
}

.links ul li {
    width: 10.5rem;
    height: 3rem;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.links ul li:hover {
    border-right: 0.15rem solid var(--primary-clr);
    border-left: 0.15rem solid var(--primary-clr);
}

.links ul li a {
    font-family: Headers;
    font-size: 1.5rem;
    color: var(--font-light);
    font-weight: 300;
    transition: 0.3s;
}

.links ul li:hover a {
    transform: scaleX(1.1);
}

.foot-icons ul{
    display: flex;
    justify-content: center;
    align-self: center;
}

.foot-icons ul li {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: 1rem;
    transition: 0.3s;
}

.foot-icons ul li:hover {
    transform: scale(0.95)
}

.foot-icons ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-box-reflect: below 0.5rem linear-gradient(transparent, transparent, #000);
}

.foot-icons ul li a svg {
    fill: transparent;
    stroke: var(--primary-clr);
    stroke-width: 6;
    transition: 0.3s;
}

.foot-icons ul li:nth-child(2) a svg,
.foot-icons ul li:nth-child(5) a svg {
    stroke-width: 1;
}

.foot-icons ul li:hover a svg {
    stroke: var(--font-light);
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
}

.copyright p {
    font-size: 1.2rem;
    text-align: center;
}

.copyright a {
    color: #a9feca;
    font-family: Unique;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    transition: 0.3s;
}

.copyright a span {
    color: #f5494d;
}

.copyright a:hover {
    color: #f5494d;
}

.copyright a:hover span {
    color: #a9feca;
}

/* home section */

.home-sec {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    height: calc(100vh - 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/static/Crypto/gifs/crypto.gif);
    background-size: cover;
}

.home-sec .canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: rgba(0,0,0,0.25);
}

.home-cont {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.home-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.home-inner h1 {
    font-family: Unique;
    font-size: 5rem;;
    letter-spacing: 0.3rem;
    text-align: center;
    font-weight: 700;
}

.home-inner h2 {
    margin-top: 3rem;
    font-family: Headers;
    font-size: 2rem;
    width: fit-content;
    border-bottom: 0.1rem solid var(--primary-clr);
    letter-spacing: 0.2rem;
    font-weight: 300;
    text-align: center;
}

.home-inner h2 span {
    color: var(--primary-clr);
    font-size: 2.5rem;
    font-weight: 700;
}

.home-btns {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2.5rem 1.5rem;
    border: 0.1rem solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0.25rem);
}

.gen-btn {
    position: relative;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    -webkit-box-reflect: below 0.5rem linear-gradient(transparent, transparent, #000);
}

.btn-title {
    z-index: 1;
    font-family: Headers;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--font-light);
    text-transform: uppercase;
    transition: 0.5s;
}

.gen-btn:hover .btn-title {
    color: var(--font-dark);
    font-weight: 700;
}

.img-body {
    z-index: 2;
    transition: transform 0.25s 0.4s cubic-bezier(0,0,0.5,2);
}

.btn-img {
    display: block;
    width: 2rem;
    height: 2rem;
}

.btn-img path {
    fill: var(--font-dark);
}

.gen-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(120%, -50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: var(--primary-clr);
    transition: transform 0.25s 0.25s cubic-bezier(0,0,0.5,2),
                width 0.25s cubic-bezier(0,0,0.5,2);
}

.gen-btn:hover::before {
    transform: translate(0, -50%);
    width: 100%;
    border-radius: 0;
    border: 0.1rem solid var(--font-dark);
    transition: transform 0.25s cubic-bezier(0,0,0.5,2),
                width 0.25s 0.25s cubic-bezier(0,0,0.5,2);
}

.home-about {
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.home-abt-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 90%;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem; 
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
    border-radius: 0.5rem;
}

.home-abt-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem;
    border-right: 0.15rem solid var(--accent-clr);
}

.home-abt-left .home-title {
    font-family: Headers;
    font-weight: 700;
    font-size: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-abt-left .home-title span {
    font-size: 4rem;
    padding: 1rem;
    border: 0.1rem solid var(--accent-clr);
    margin-right: 2rem;
    line-height: 4rem;;
}

.home-abt-left p {
    font-size: 1.4rem;
}

.gen-btn.btn2 {
    padding: 1rem 0.5rem;
}

.gen-btn.btn2 .btn-title {
    font-size: 1.4rem;
}

.btn2 .btn-img,
.btn3 .btn-img {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
}

.gen-btn.btn2::before {
    width: 2.5rem;
    height: 2.5rem;
    transform: translate(185%, -50%);
}

.gen-btn.btn2:hover::before,
.gen-btn.btn3:hover::before {
    transform: translate(0, -50%);
    width: 100%;
    border-radius: 0;
    border: 0.1rem solid var(--font-dark);
    transition: transform 0.25s cubic-bezier(0,0,0.5,2),
            width 0.25s 0.25s cubic-bezier(0,0,0.5,2);

}

.gen-btn.btn3 {
    margin-top: 1rem;
    padding: 1rem 0.5rem;
    -webkit-box-reflect: below -0.6rem linear-gradient(transparent, transparent, #000);
}

.gen-btn.btn3 .btn-title {
    font-size: 1.4rem;
}

.gen-btn.btn3::before {
    width: 2.5rem;
    height: 2.5rem;
    transform: translate(145%, -50%);
}

.home-abt-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-abt-right-cont {
    position: relative;
    width: 50rem;
    height: 40rem;
}

.home-abt-right-cont img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.25);
}

.home-walimu {
    width: 100%;
    height: auto;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.walimu-title {
    position: relative;
    font-family: Headers;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.35);
}

.walimu-title.mbili {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.walimu-title span {
    color: var(--font-dark);
}

.walimu-title::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: var(--primary-clr);
    z-index: -1;
}

.walimu-title.mbili::before {
    width: 57%;
}

.walimu-cont {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.walimu-card {
    position: relative;
    width: 30rem;
    height: 19rem;
    background: var(--body-clr);
    transition: 0.5s;
    margin: 4rem 2rem;
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.35);
}

.walimu-card:hover {
    height: 40rem;
}

.walimu-card .walimu-line {
    position: absolute;
    inset: 0;
    background: var(--font-dark);
    overflow: hidden;
}

.walimu-card .walimu-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60rem;
    height: 12rem;
    background: linear-gradient(transparent, var(--secondary-clr), var(--secondary-clr), var(--secondary-clr), transparent);
    animation: rotate1 4s linear infinite;
}

.walimu-card .walimu-line::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    background: #141414;
}

.walimu-imgbx {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 15rem;
    height: 15rem;
    background: #000;
    transition: 0.5s;
    z-index: 10;
    overflow: hidden;
}

.walimu-card:hover .walimu-imgbx {
    width: 25rem;
    height: 25rem;
}

.walimu-card .walimu-imgbx::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60rem;
    height: 12rem;
    transform: translate(-50%, -50%);
    background: linear-gradient(transparent, var(--primary-clr), var(--primary-clr), var(--primary-clr), transparent);
    animation: rotate2 6s linear infinite;
}

@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.walimu-card .walimu-imgbx::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    background: #141414;
}

.walimu-card .walimu-imgbx img {
    position: absolute;
    z-index: 1;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    filter: grayscale(1);
    transition: 0.5s;
}

.walimu-card:hover .walimu-imgbx img {
    filter: grayscale(0);
}

.walimu-card .walimu-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.walimu-card .walimu-content .walimu-deets {
    padding: 2rem;
    width: 100%;
    transition: 0.5s;
    transform: translateY(13rem);
}

.walimu-card:hover .walimu-content .walimu-deets {
    transform: translateY(0rem);
}

.walimu-card .walimu-content .walimu-deets h3 {
    font-family: Unique;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-align: center;
}

.walimu-card .walimu-content .walimu-deets h3  span {
    color: var(--font-light);
    opacity: 0.5;
    font-size: 1.4rem;
    font-weight: 700;;
}

.walimu-card .walimu-content .walimu-deets .walimu-data {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.walimu-card .walimu-content .walimu-deets .walimu-data h4 {
    font-family: Headers;
    font-size: 1.2rem;
    font-weight: 300;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.walimu-card .walimu-content .walimu-deets .walimu-data h4:first-child {
    margin-bottom: 1rem;
}

.walimu-card .walimu-content .walimu-deets .walimu-data h4 i {
    font-size: 1.6rem;
    color: var(--primary-clr);
}

.walimu-card .walimu-content .walimu-deets .walimu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.walimu-card .walimu-content .walimu-deets .walimu-btn a {
    padding: 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    font-size: 1.6rem;
    color: var(--accent-clr);
    border-radius: 0.5rem;
    transition: 0.5s;
}

.walimu-card .walimu-content .walimu-deets .walimu-btn a:hover {
    color: var(--font-light);
}

.home-partners {
    margin-top: 6rem;
    margin-bottom: 8rem;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-cont {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0,0,0,0.25);
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
}

.part-head {
    margin: 2rem;
}

.part-ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.part-ul li {
    position: relative;
    width: 15rem;
    height: 10rem;
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
    margin: 2rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.part-ul li:nth-child(7) {
    background: #fffefe;
}

.part-ul li img {
    width: 12rem;
    height: 7rem;
}

.part-ul li:nth-child(3) img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.part-ul li:nth-child(4) img,
.part-ul li:nth-child(5) img ,
.part-ul li:nth-child(6) img  {
    width: 15rem;
    height: 10rem;
}

.part-ul li:nth-child(7) img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.the-courses {
    width: 100%;
    height: auto;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.courses-cont {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.25);
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
}

.courses-right {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.c-right-title {
    font-family: Headers;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    border-bottom: 0.15rem solid var(--primary-clr);
    padding-bottom: 0.5rem;
}

.c-right-title i {
    font-size: 2rem;
    opacity: 0.5;
}

.act-courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.act-c-card {
    position: relative;
    width: 25rem;
    height: 38rem;
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
    margin: 2rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    overflow: hidden;
}

.c-img-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
}

.c-img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-card-cont {
    position: absolute;
    top: 45%;
    left: 0;
    padding: 1rem 2em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.c-card-cont .course-card-title {
    font-family: Headers;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    font-weight: 700;
    border-bottom: 0.1rem solid var(--primary-clr);
    margin-bottom: 1rem;
    width: 100%;
}

.c-card-cont .course-card-title span {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
}

.c-card-cont p {
    font-size: 1.2rem;
    color: var(--font-light);
    opacity: 0.8;
}

.c-card-cont h4 {
    font-family: Headers;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--font-light);
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-card-cont h4 i {
    margin-right: 1rem;
    font-size: 1.6rem;
    color: var(--primary-clr);
}

.the-team {
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.the-team-cont {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0,0,0,0.25);
}

.the-team-cont-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.the-team-card {
    width: 26rem;
    height: 30rem;
    margin: 2rem;
    background: url(/static/Crypto/images/Brian_Adams.jpg) no-repeat top center/cover;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.25);
}

.the-team-card:nth-child(2) {
    background: url(/static/Crypto/images/kendi.jpg) no-repeat top center/cover;
}

.the-team-card:nth-child(3) {
    background: url(/static/Crypto/images/kanja.jpg) no-repeat top center/cover;
}

.the-team-card:nth-child(4) {
    background: url(/static/Crypto/images/Emmanuel_Muguna.jpg) no-repeat top center/cover;
}

.the-team-card:nth-child(5) {
    background: url(/static/Crypto/images/Obinna.jpg) no-repeat top center/cover;
}

.the-team-card:nth-child(6) {
    background: url(/static/Crypto/images/Success_Ole_Ojo.jpg) no-repeat top center/cover;
}

.the-team-card:nth-child(7) {
    background: url(/static/Crypto/images/Temid.jpg) no-repeat top center/cover;
}

.the-team-card .teamer-cont {
    position: relative;
    padding: 2rem;
    width: 100%;
    height: 24rem;
    background:rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5rem);
    border-top-left-radius: 5rem;
    cursor: pointer;
    transform: translateY(60%);
    transition: all 0.5s;
}

.teamer-title {
    font-family: Headers;
    color: var(--primary-clr);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.teamer-sub {
    font-family: Headers;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    border-bottom: 0.15rem solid var(--accent-clr);
    width: fit-content;
}

.teamer-desc {
    font-size: 1.2rem;
}

.teamer-cont:hover {
    transform: translateY(0);
}

/* responsiveness starts here bro */

@media (max-width: 991px) {
    #navbar {
        position: fixed;
        top: 100%;
        left: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url(/static/Crypto/gifs/crypto1.gif);
        background-size: cover;
        backdrop-filter: blur(0.5rem); 
        border: 0.15rem solid var(--primary-clr);
        transition: all 0.3s;
    }

    #navbar ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #navbar.active {
        left: 0;
        height: calc(100vh - 6rem);
        width: 100%;
    }

    #navbar ul li {
        height: 4rem;
        width: 20rem;
        background: rgba(0, 0, 0, 0.25);
        margin: 1rem 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 0.2rem solid var(--primary-clr);
        border-left: 0.2rem solid var(--primary-clr);
        backdrop-filter: blur(0.5rem);
        transition: all 0.3s;
    }

    #navbar ul li a {
        height: 4rem;
        line-height: 4rem;
    }

    #navbar ul li:hover {
        border-bottom: 0.2rem solid var(--primary-clr);
        border-top: 0.2rem solid var(--primary-clr);      
        border-right: none;
        border-left: none;
    }

    .home-abt-cont {
        flex-direction: column;
    }

    .home-abt-left {
        width: 100%;
        border-right: none;
        border-left: 0.15rem solid var(--accent-clr);
    }

    .home-abt-right {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 500px) {
    #toggle {
        width: 3.5rem;
        height: 3.5rem;
        border: 0.15rem solid var(--primary-clr);
    }

    #toggle.openmenu {
        border: 0.15rem solid var(--button-clr);
    }

    #toggle::before {
        width: 2.5rem;
        height: 0.15rem;
        transform: translateY(-0.75rem);
        box-shadow: 0 0.75rem var(--primary-clr);
    }

    #toggle::after {
        width: 2.5rem;
        height: 0.15rem;
        transform: translateY(0.75rem);
    }

    .foot-icons ul li{
        width: 2.2rem;
        height: 2.2rem;
    }

    .home-inner h1 {
        font-size: 2.75rem;
    }

    .home-inner h2  {
        font-size: 1.6rem;
    }

    .home-inner h2 span {
        font-size: 2rem;
    }

    .home-abt-left .home-title {
        font-size: 2.2rem;;
    }

    .home-abt-left .home-title span {
        font-size: 3rem;
        margin-right: 0;
    }

    .gen-btn {
        padding: 1rem 0.5rem;
    }

    .btn-title {
        font-size: 1.4rem;
    }

    .btn-img  {
        width: 1.2rem;
        height: 1.2rem;
    }

    .gen-btn::before {
        width: 2.5rem;
        height: 2.5rem;
        transform: translate(125%, -50%);
    }

    .home-btns .gen-btn:nth-child(2)::before,
    .home-btns .gen-btn:nth-child(3)::before {
        width: 2.5rem;
        height: 2.5rem;
        transform: translate(165%, -50%);
    }

    .home-btns .gen-btn:nth-child(2):hover::before,
    .home-btns .gen-btn:nth-child(3):hover::before {
        transform: translate(0, -50%);
        width: 100%;
        border-radius: 0;
        border: 0.1rem solid var(--font-dark);
        transition: transform 0.25s cubic-bezier(0,0,0.5,2),
                width 0.25s 0.25s cubic-bezier(0,0,0.5,2);
    }

    .home-abt-right-cont {
        width: 40rem;
        height: 30rem;
    }

    .c-right-title {
        font-size: 2rem;
    }

    .walimu-title {
        font-size: 2rem;
    }
}