:root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
}

#Home {
    display: flex;
    align-items: center;
    padding: 10px 30px;
    justify-content: space-between;
    max-width: 1500px;
    gap: 100px;
}

#Home aside {
    max-width: 500px;
}

#Home aside img {
    width: 100%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#Home article h1 {
    font-size: 3.7rem;
    color: var(--Basic-Text-Color);
    font-weight: 700;
}

#Home article {
    padding-left: 50px;
}

#Home article p {
    color: var(--Paragraph-Text-Color);
    font-weight: 500;
    font-size: 1rem;
    max-width: 730px;
    line-height: 30px;
}

#Home article h1 span:first-child {
    color: var(--Polygon-Text-Color);
}

#Home article h1 span:last-child {
    color: var(--Secondary-Text-Color);
}

#Home article h1 {
    line-height: 80px;
}

.Buttons_Home a {
    background-color: var(--Background-Color);
    color: var(--White-Color);
    padding: 12px 50px;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid var(--Background-Color);
    transition: all 0.3s ease;
}


.Buttons_Home a:hover {
    transform: translateY(-5px);
}

.Buttons_Home {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.Buttons_Home a:last-child {
    background-color: var(--Background_Body);
    color: var(--Background-Color);
    padding: 12px 45px;
    cursor: not-allowed;
}

.Buttons_Home a:last-child i {
    color: var(--Background-Color);
}

#Img {
    display: none;
}

@media only screen and (max-width: 1500px) {
    #Home article h1 {
        font-size: 3.1rem;
        line-height: 65px;
    }

    #Home aside {
        max-width: 420px;
    }

    #Home article p {
        font-size: 0.9rem;
        max-width: 600px;
        line-height: 25px;
    }

    .Buttons_Home {
        margin-top: 10px;
    }

    .Buttons_Home a {
        padding: 12px 45px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 1300px) {
    #Home {
        gap: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    #Home article h1 {
        font-size: 2.7rem;
        line-height: 60px;
    }

    #Home aside {
        max-width: 380px;
    }

    #Home article p {
        font-size: 0.7rem;
        max-width: 600px;
        line-height: 25px;
    }

    .Buttons_Home {
        margin-top: 10px;
    }

    .Buttons_Home a:last-child {
        padding-block: 10px;
    }

    .Buttons_Home a {
        padding: 10px 45px;
        font-size: 0.9rem;
    }

    #Home article {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 1100px) {
    #Img {
        display: block;
        -webkit-mask-image: linear-gradient(to top, #8b6a6a00, #121212);
        width: 250px;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    #Home aside {
        display: none;
    }

    #Home {
        text-align: center;
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 100vh;
    }

    .Buttons_Home {
        justify-content: center;
    }

    #Home article h1 {
        font-size: 2.9rem;
        line-height: 60px;
    }

    #Home article p {
        font-size: 1rem;
    }
}


@media only screen and (max-width:700px) {
    #Home article h1 {
        font-size: 2.5rem;
        line-height: 45px;
    }

    #Home article {
        padding-left: 0;
    }

    #Home article p {
        font-size: 0.85rem;
        line-height: 20px;
        max-width: 500px;
    }

    #Img {
        width: 200px;
    }
}

@media only screen and (max-width:500px) {
    #Home article h1 {
        font-size: 2rem;
        line-height: 39px;
    }

    #Home article p {
        max-width: 500px;
    }
}

@media only screen and (max-width:400px) {
    .Buttons_Home{
        flex-direction: column;
    }
}

.mode{
    color: var(--Secondary-Text-Color);
    cursor: pointer;
}

.non-active-mode{
    display: block;
}

.active-mode{
    display: none;
}