* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --dark-green: #19381f;
    --medium-green: #53A548;
    --light-green: #91CB3E;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: london;
    src: url(../London\ Bridge\ Font\ Family.otf);
}

@font-face {
    font-family: trap;
    src: url(../Trap_/Trap_V1.1/Trap-Black.otf);
}

.menu-icon {
    display: none;
}

.slide-ctn {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem;
    width: 50vw;
    height: 100vh;
    background-color: white;
    z-index: 4;
}

.slide-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 2rem;
}

.logo-img {
    width: 40px;
}

.close-slide {
    width: 40px;
    cursor: pointer;
}

.slide-nav {
    text-decoration: none;
    color: var(--dark-green);
    font-family: london;
    font-size: 1.2em;
    transition: 0.3s ease-in-out;
}

.slide-nav:nth-child(2) {
    color: var(--light-green);
}

.slide-nav:hover {
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.8rem 1rem;
    background-color: white;
    z-index: 5;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navlink {
    text-decoration: none;
    font-family: london;
    font-weight: 100;
    color: var(--light-green);
    border: 1px solid var(--light-green);
    padding: 0.2rem 1rem;
    border-radius: 15px;
}

.logo {
    font-size: 1.8em;
    font-style: 800;
    font-family: trap;
    text-decoration: none;
    color: var(--dark-green);
}

.features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    padding: 0.8rem 1rem;
}

.feature {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.level {
    font-family: london;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    z-index: 3;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


.feat-img-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    transition: 0.3s ease-in-out;
}


.feat-img {
    width: 100%;
}

.feat-info {
    font-family: "Inter", serif;
    color: var(--dark-green);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: 0.4s ease-in-out;
    background-color: white;
}

.feature:hover>.feat-img-ctn {
    scale: 1.05;
}

.feature:hover>.feat-info {
    transform-origin: left;
    transform: rotateZ(-20deg);
}

.feat-title {
    font-size: 1.1em;
}

small {
    font-style: italic;
    font-family: "Inter", serif;
}

.learn-ctn {
    margin-block: 1rem;
    height: 250px;
    width: 97%;
    margin-inline: auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.learn-img-ctn {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    filter: blur(4px);
}

.learn-ctn:hover>.learn-img-ctn {
    filter: blur(0px);
}

.learn-info {
    position: absolute;
    bottom: 0;
    background-color: white;
    padding: 1.6rem 1rem;
    font-family: "Inter", serif;
    color: var(--dark-green);
}

@media (max-width: 570px) {
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 525px) {
    .nav-right {
        display: none;
    }

    .menu-icon {
        display: flex;
        width: 40px;
        cursor: pointer;
    }
}