*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero{
    height: 100vh;
    background-color: white;
    display: flex;
    font-family: "Montserrat";
}

    .left{
        flex: 55%;
        background-image: url("../imgs/goldbackground.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .right{
        flex: 45%;
        width: 100%;
        margin-right: 8rem;
    }

        #logo{
            display: flex;
            justify-content: flex-end;
            padding-top: 3rem;
        }
            #logo img{
                width: 30%;
            }

        .nav-links{
            display: flex;
            justify-content: flex-end;
            padding-top: 2rem;
        }

            .nav-links ul{
                display: flex;
            }

                .nav-links li{
                    margin-left: 6rem;
                    list-style: none;
                }

                    .nav-links a{
                        text-decoration: none;
                        color: black;
                        font-weight: bold;
                    }

                    .active-item{
                        border: solid 1px black;
                        padding: 0.1rem 0.5rem;
                    }

        .title-slogan{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            width: 100%;
            padding: 4rem 0;
        }

            .title-slogan h1{
                font-size: 6rem;
                letter-spacing: 1.5;
                color: #dc991f;
            }

            .title-slogan h2{
                font-size: 2rem;
                letter-spacing: 4px;
                font-weight: 600;
            }


        .site-info{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

            .site-info p{
                text-align: end;
                line-height: 1.5;
                font-size: 1.3rem;
                font-weight: 400;
            }

            .site-info a{
                margin: 2rem 0;
                color: #dc991f;
                text-decoration: none;
                font-weight: bold;
                font-size: 1.2rem;
            }

        .social-links{
            display: flex;
            justify-content: flex-end;
        }

            .social-links img{
               height: 20px;
                margin-left: 2rem;
                cursor: pointer;
            }