* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'General sans medium', sans-serif;
    cursor: pointer;
    text-decoration: none;
}

body::-webkit-scrollbar {
    display: none;
}

html, body {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    background-color: #000;
}

#main {
    background-color: #000;
    height: 100%;
    width: 100%;
}

#hero {
    width: 100%;
    height: 100vh;
    color: #fff;
}

#nav {
    width: 100%;
    padding: 5px 45px;
    text-decoration: none;
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav a {
    font-size: 20px;
    margin-top: 2vh;
    text-decoration: none;
    color: aliceblue;
}

#head {
    margin-top: 40px;
}

#head h1 {
    line-height: .9;
    text-transform: uppercase;
    font-size: 10vw;
    font-weight: 500;
    opacity: .7;
    margin-left: 40px;
}

#secondh {
    width: fit-content;
    margin-left: 160px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}

#secondh h5 {
    margin-top: 7px;
    text-align: end;
    text-transform: uppercase;
    font-size: 15px;
}

#smallheadings {
    display: flex;
    flex-direction: column;
    align-items: end;
    line-height: 1.5;
    text-align: right;
    margin-top: 170px;
    text-transform: uppercase;
    font-size: 1.2vw;
    margin-right: 50px;
    font-weight: 100;
}

#herofooter {
    margin-left: 4vw;
    width: 93%;
    margin-top: 4vh;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

#herofooter a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.2vw;
}

#icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000f7;
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.664);
    border-radius: 50%;
    gap: 20px;
}

#chapter2 {
    padding-right: 10vw;
    padding-top: 130px;
    width: 100%;
    background-color: #000;
    padding-left: 40px;
}

#chapter2 .elem {
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #888;
    width: 100%;
}

#chapter2 .elem img {
    transition: opacity 0.3s ease, left 0.3s ease, top 0.3s ease;
    opacity: 0;
    border-radius: 10px;
    max-width: 350px;
    max-height: 350px;
    width: 350px;
    height: 350px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}

.elem h5 {
    text-align: end;
    opacity: .7;
    font-size: 15px;
    color: #fff;
}

.elem h1 {
    text-transform: uppercase;
    opacity: .6;
    font-size: 7vw;
    font-weight: 500;
    color: #fff;
}

#somos {
    border-bottom: 1px solid #888;
}

#chapter3 {
    padding-top: 30vh;
    gap: 55px;
    width: 100%;
    background-color: #000;
}

#chapter3 {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    padding-bottom: 10rem;
}

#chapter3 img {
    padding-left: 30rem;
    height: 220px;
}

#chapter3 #text {
    text-decoration: none;
    opacity: .9;
    font-size: 18px;
    width: 100%;
    line-height: 1.5;
    padding-right: 6rem;
}

#chapter3 #text a {
    margin-top: 10px;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100px;
    height: 20px;
    border: 1px solid white;
    color: #fff;
    text-decoration: none;
}

#text p {
    margin-top: 7px;
    margin-bottom: 15px;
}

#footer {
    color: #fff;
    width: 100%;
    padding: 2vw;
    padding-left: 4.5%;
    padding-right: 0%;
    background-color: #000;
}

#footertab {
    margin-top: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#forgot {
    text-decoration: none;
    font-size: 15px;
    opacity: .6;
    font-weight: 500;
    text-transform: uppercase;
}

#subscribe {
    opacity: .9;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
}

#left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

#left h4 {
    font-size: 17px;
    font-weight: 500;
    margin-right: 0%;
}

#right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

#right a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
}

#cursor {
    transition: cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    position: fixed;
    z-index: 9999;
    background-color: white;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 1px solid white;
}

.bounding {
    width: fit-content;
    overflow: hidden;
}

.bounding .boundingelem {
    transform: translateY(100%);
}

/* Media Queries for Mobile Responsiveness */

@media (max-width: 1024px) {
    #nav {
        padding: 5px 20px;
    }

    #head h1 {
        font-size: 8vw;
    }

    #secondh {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    #secondh h5 {
        font-size: 12px;
    }

    #smallheadings {
        margin-top: 120px;
        font-size: 3vw;
        margin-right: 30px;
    }

    #chapter2 .elem {
        flex-direction: column;
        text-align: center;
    }

    #chapter3 {
        padding-left: 10rem;
        padding-right: 5rem;
    }

    #chapter3 img {
        padding-left: 15rem;
        height: 180px;
    }

    #footer {
        padding: 3vw;
    }

    #footertab {
        flex-direction: column;
    }

    #left, #right {
        flex-direction: column;
    }

    #right a, #left h4 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    #head h1 {
        font-size: 15vw;
    }

    #smallheadings {
        font-size: 4vw;
    }

    #chapter2 .elem {
        padding: 20px;
    }

    #chapter3 #text {
        font-size: 16px;
        padding-right: 3rem;
    }

    #chapter3 img {
        padding-left: 3rem;
        height: 150px;
    }

    #footer {
        padding: 5vw;
    }

    #cursor {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    #head h1 {
        font-size: 18vw;
    }

    #secondh h5 {
        font-size: 5vw;
    }

    #smallheadings {
        font-size: 5vw;
        margin-right: 20px;
    }

    #chapter2 .elem img {
        width: 100%;
        height: auto;
    }

    #chapter3 img {
        padding-left: 1rem;
        height: 120px;
    }

    #footer {
        padding: 8vw;
    }

    #cursor {
        width: 10px;
        height: 10px;
    }
}
