.hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    display: none;
    margin: 100px 0 0 0;

    @media (min-width: 768px) {
        display: flex;
    }
}

.hero__left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    background-color: var(--white-2);
}

.hero__header {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 0 40px 0;

    @media (min-width: 1024px) {
        font-size: 48px;
    }

    @media (min-width: 1300px) {
        font-size: 70px;
    }
}

.hero__right {
    width: 50%;
    background-color: var(--turquoise);
    position: relative;
    display: flex;
    align-items: center;
}

.hero__fog {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--turquoise);
    display: flex;
    align-items: center;
}

.hero__fog-border-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: center;
}

.hero__fog-border {
    border-bottom: solid #F8F4EE 10px;
    border-right: solid #F8F4EE 10px;
    border-top: solid #F8F4EE 10px;

    width: 404px;
    height: 448px;

    @media (min-width: 1024px) {
        width: 464px;
        height: 538px;
    }

    @media (min-width: 1300px) {
        width: 544px;
        height: 620px;
    }
}

.hero__logo-container {
    background-color: var(--black);
    padding: 32px;
    border: 10px #1E2C30 solid;
    margin-left: -64px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 400px;
    height: 400px;

    @media (min-width: 1024px) {
        width: 460px;
        height: 460px;
    }

    @media (min-width: 1300px) {
        width: 540px;
        height: 540px;
    }
}

.hero__logo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 56%;
}

.hero__logo {
    position: relative;
    width: 240px;
    height: 240px;

    @media (min-width: 1024px) {
        width: 300px;
        height: 300px;
    }

    @media (min-width: 1300px) {
        width: 374px;
        height: 374px;
    }
}

.hero__button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.25);
    width: 220px;
    padding: 8px 16px;
    background-color: var(--green);
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;

    @media (min-width: 1024px) {
        font-size: 14px;
        padding: 16px 33px;
    }
}

.hero__button:hover {
    background-color: rgba(30, 44, 48, 1);
}

.hero__content-container {
    width: 220px;

    @media (min-width: 1024px) {
        width: 340px;
    }
    
    @media (min-width: 1300px) {
        width: 440px;
    }
}