*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main{
    width: 100%;

}
/* Section1 */
main div.section1{
    height: 100vh;
    background-color: #080808;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 80px;
}

/* NavBar */

main div.section1 div.nav-container
{
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: center;
}

main div.section1 div.nav-container nav{
    width: 86.7%;
    height: 100%;

    background-color: #1B1B1B;

    /* position: fixed;
    top: 0; */

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    color: #9C9C9C;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    /* font */
    font-size: 14px;
    letter-spacing: 1%;
    line-height: 100%;
    vertical-align: bottom;
}


main div.section1 div.nav-container nav div.links ul{
    list-style-type: none;
    display: flex;
    gap: 70px;
}
main div.section1 div.nav-container nav div.links ul li a{
    text-decoration: none;
    color: #9C9C9C;

    /* Transition */
    transition: all 0.5s ease;
}
main div.section1 div.nav-container nav div.links ul li a:hover{
    color: #ffffff;
}

main div.section1 div.nav-container nav div.icons i{
    font-size: 18px;
    margin-left: 25px;

    color: #ffffff;
    opacity: 30%;

    cursor: pointer;

    /* Transition */
    transition: all 0.5s ease;
}
main div.section1 div.nav-container nav div.icons i:hover{
    opacity: 80%;
}

/* ------------------------------------------------------ */

main div.section1 div.welcome{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

main div.section1 div.welcome div.hi{
    width: 538px;
    height: 247px;

    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}
main div.section1 div.welcome div.hi h1{
    font-size: 44px;
    padding: 10px 0 0 10px;
}
main div.section1 div.welcome div.hi p{
    font-size: 14px;
    line-height: 21px;
}
main div.section1 div.welcome div.hi button{
    width: 307.89px;
    height: 63px;
    padding: 21px 64px;

    background-color: #3F8E00;

    border: 1px solid #62BA1B;
    border-radius: 4px;

    box-shadow: 0px 8px 30px 0 rgba(64, 143, 0, 0.502);

    color: #ffffff;
    font-size: 16px;

    transition: all 0.3s ease;
}
/* .welcome .hi button:hover {
    background-color: #62BA1B;
    transform: scale(1.05);
    box-shadow: 0px 10px 35px rgba(64, 143, 0, 0.6);
} */
.welcome .hi button {
    position: relative;
    overflow: hidden;   
    z-index: 1;
}

.welcome .hi button::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #3F8E00, #62BA1B);
    transition: all 0.5s ease;
    z-index: -1;
}
.welcome .hi button:hover::before {
    left: 0;
}
/* --------------- */

main div.section1 div.welcome div.pic{
    width: 350px;
    height: 350px;

    background-image: url(../imgs/profilePic.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-radius: 50%;
}

/* ========================================================================== */

main div.section1 div.sponsors{
    margin: 0px 311px;
}
main div.section1 div.sponsors p{
    font-size: 14px;

    margin-bottom: 20px;
}
main div.section1 div.sponsors div.logos{
    width: 920;
    height: 60px;

    display: flex;
    justify-content: space-between;
}

main div.section1 div.sponsors div.logos div.brand{
    width: 160px;
    height: 100%;

    border: 1px solid #1B1B1B;
    border-radius: 4px;

    background-color: #ffffff;
}


.bgi{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.clickup{
    background-image: url(../imgs/logos/clickup.png);    
}
.dropbox{
    background-image: url(../imgs/logos/dropbox.png);
}
.paychex{
    background-image: url(../imgs/logos/paychex.png);
}
.elactic{
    background-image: url(../imgs/logos/elastic.png);
}
.stripe{
    background-image: url(../imgs/logos/stripe.png);
}
