/* Hero section home */
main {
    display: flex;
    flex-direction: column;
}

#hero-home {
    position: relative;
    overflow: hidden;
    height: calc(100vh);
    max-height: 1080px;
    min-height: 620px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light_blue);
}

#hero-home img {
    position: absolute;
    z-index: 1;
    width: 100%;
    min-width: max-content;
    min-height: max-content;
}

#hero-home #background-mobile {
    display: none;
}

#hero-home .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

#hero-home .container .title {
    display: flex;
    flex-direction: column;
}

#hero-home .container .title h1 {
    font-family: var(--fontOne);
    color: var(--white);
    font-weight: 400;
    font-size: 110px;
    white-space: nowrap;
}

#hero-home .container .title h1:last-child {
    margin-top: -35px;
}

#hero-home .container p {
    font-family: var(--fontTwo);
    color: var(--white);
    font-weight: 500;
    font-size: 22px;
}

#hero-home .container button {
    position: relative;
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 70px;
    font-size: 18px;
    font-family: var(--fontTwo);
    border: 2px solid var(--black);
    background-color: transparent;
    color: var(--black);
    cursor: pointer;
}

#hero-home .container button::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 5px;
    top: 5px;
    width: 230px;
    height: 70px;
    background-color: var(--white);
}

.btn {
    font-size: 18px;
    font-family: var(--fontTwo);
    width: 230px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    background-color: var(--white);
    color: black;
    padding: 12.5px 50px;
    font-family: var(--fontTwo);
    font-size: var(--small);
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* box-shadow: var(--shadow);  */
}

.btn:hover {
    background-color: var(--green);
}

.btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: +8px;
    bottom: +8px;
    border: 2px solid var(--black);
}

.btn:active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#hero-home .container button:hover {
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    #hero-home .container .title h1 {
        font-size: var(--large-xxl);
    }
    #hero-home .container .title h1:last-child {
        margin-top: -20px;
    }
    #hero-home .container button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 920px) {
    #hero-home .container p {
        font-size: var(--small-s);
    }
    #hero-home svg {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #hero-home .container .title h1 {
        font-size: var(--large-xl);
    }
    #hero-home .container .title h1:last-child {
        margin-top: -10px;
    }
    #hero-home .container button {
        margin-top: 10px;
        width: 190px;
        height: 60px;
    }
    #hero-home .container button::after {
        width: 190px;
        height: 60px;
    }
    #hero-home img {
        display: none;
    }
}

@media only screen and (max-width: 650px) {

}

@media only screen and (max-width: 450px) {
    #hero-home .container .title h1 {
        font-size: var(--large-l);
    }
    #hero-home .container .title p {
        font-size: var(--small-s);
    }
    #hero-home .container .title h1:last-child {
        margin-top: -5px;
    }
    #hero-home .container button {
        margin-top: 5px;
    }
}