@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    display: flex;
}

.left {
    height: 100vh;
    width: 9vw;
    background-color: rgb(76 122 88);
}

.logo {
    height: 18vh;
    align-items: center;
    background-image: url(./assets/AKS_Logo_Portfolio_Transparent.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.logo:hover {
    cursor: pointer;
    filter: invert();
}

.hamburger {
    height: 45px;
    width: 45px;
    background-color: rgb(76 122 88);
    border-radius: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
}

.hamburger img {
    height: 30px;
}

.hamburger img:hover {
    filter: invert();
    transform: scale(1.1);
    transition: 0.3s;
}

.line {
    border: 2px solid;
}

.left-links {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 70px;
    padding: 110px 0;
    border-top: 2px solid;
}

.left-links img {
    height: 28px;
}

.left-links img:hover {
    cursor: pointer;
    transform: scale(1.3);
    transition: 0.3s;
    filter: invert();
}

.is-active img {
    transform: scale(1.2);
    transition: 0.3s;
    filter: invert();
    border-bottom: 2px solid black;
    padding-bottom: 4px;
}

.right {
    height: 100vh;
    width: 91vw;
    background-color: rgb(255 255 237);
}

.box {
    height: 85vh;
    width: 80vw;
    margin: 7vh 6vw;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 0px 150px 0px 150px;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.489);
}

.sec-1 {
    height: 17vh;
    max-width: 1000px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin: auto 10%;
    padding: 2% 0;
}

.sec-1 span {
    display: flex;
    align-items: center;
}

.heading-1 {
    font-size: 40px;
    font-weight: 600;
}

.sec-1 span img {
    height: 45px;
    position: absolute;
}

.sec-1 p {
    margin-left: 10px;
    margin-top: 10px;
}

.sec-2 {
    height: 25vh;
    max-width: 700px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin: auto 10%;
}

.sec-2 span {
    display: flex;
    align-items: center;
}

.heading-2 {
    font-size: 20px;
    font-weight: 600;
}

.sec-2 span img {
    height: 45px;
    margin-right: 15px;
}

.sec-2 ul {
    margin-left: 40px;
    margin-top: 15px;
}

.sec-2 ul li {
    margin-bottom: 8px;
}

.sec-3 {
    height: 32vh;
    max-width: 700px;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin-top: 1%;
    margin-left: 11%;
}

.sec-3 span {
    display: flex;
    align-items: center;
}

.sec-3 span img {
    height: 40px;
    margin-right: 18px;
}

.sec-3 ul {
    margin-left: 30px;
    margin-top: 15px;
}

.sec-3 ul li {
    margin-bottom: 8px;
}

@media (max-width: 480px) and (min-width: 320px) {
    body {
        display: block;
    }

    .left {
        height: 15vh;
        width: auto;
    }

    .logo {
        height: 15vh;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 10px;
        top: 20px;
    }

    .left-links {
        width: 32vw;
        position: absolute;
        left: -100%;
        background-color: rgb(76 122 88);
        z-index: 10;
        transition: all .3s;
        border-radius: 0 0 16px 0;
    }

    .right {
        height: auto;
        width: auto;
        display: flex;
    }

    .box {
        height: auto;
        width: auto;
        margin: 10% 4%;
        padding: 25px 10px;
        border-radius: 0px 30px 0px 30px;
    }

    .sec-1 {
        /* height: 15vh; */
        margin: auto 3%;
    }

    .heading-1 {
        font-size: 23px;
    }

    .sec-1 p {
        font-size: 13px;
    }

    .sec-1 span img {
        height: 30px;
    }

    .sec-2 {
        height: 21vh;
        margin: auto 3%;
    }

    .sec-2 span img {
        height: 37px;
    }

    .sec-2 ul {
        font-size: 13px;
    }

    .sec-3 {
        height: 25vh;
        margin: auto 3%;
    }

    .sec-3 span img {
        height: 37px;
    }

    .sec-3 ul {
        font-size: 13px;
    }
}


@media (min-width: 750px) and (max-width: 1023px) {
    body {
        display: block;
    }

    .left {
        height: 15vh;
        width: auto;
    }

    .logo {
        height: 15vh;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 10px;
        top: 20px;
    }

    .left-links {
        width: 20vw;
        position: absolute;
        left: -100%;
        background-color: rgb(76 122 88);
        z-index: 10;
        transition: all .3s;
        border-radius: 0 0 16px 0;
    }

    .right {
        height: auto;
        width: auto;
        display: flex;
    }

    .box {
        height: auto;
        width: auto;
        margin: 4%;
        padding: 10px;
        border-radius: 0px 30px 0px 30px;
    }

    .sec-1 {
        height: 20vh;
        margin: auto 3%;
    }

    .heading-1 {
        font-size: 30px;
    }

    .sec-1 p {
        font-size: 15px;
    }

    .sec-1 span img {
        height: 30px;
    }

    .sec-2 {
        height: 28vh;
        margin: auto 3%;
    }

    .heading-2 {
        font-size: 25px;
    }

    .sec-2 span img {
        height: 37px;
    }

    .sec-2 ul {
        font-size: 14px;
    }

    .sec-3 {
        height: 34vh;
        margin: auto 3%;
    }

    .heading-2 {
        font-size: 25px;
    }

    .sec-3 span img {
        height: 37px;
    }

    .sec-3 ul {
        font-size: 14px;
    }
}