
.home {
    position: relative;
    height: 85vh;
    background-image: url("../assets/images/Group 88.png");
    background-color: var(--o_dark-blue);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;


}
.home_first_line_design{
    position: absolute;
    max-width: 80vw;
    top: 24px;
    right: 0;
}
.home_second_line_design{
    position: absolute;
    top: 36px;
    right: 0;
    max-width: 70vw;
}
.home_third_line_design{
    position: absolute;
    bottom: 24px;
    left: 0;
    max-width: 70vw;
}
.home_fourth_line_design{
    position: absolute;
    bottom: 36px;
    left: 0;
    max-width: 70vw;
}
.social-icons{
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    bottom: 52px;
    left: 24px;
    max-width: 70vw;
}
.social-icons .icon{
    background-color: var(--o_cyan);
    border-radius: 50%;
    padding: 4px;
    width: 36px;
}

.home-container {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    height: 100%;
    font-size: 1.6rem;
    text-align: right;


}

.home_title{
    font-size: 4rem;
    margin-bottom: 36px;
}
.home_text{
    max-width: 40vw;
    text-transform: uppercase;
}


@media (max-width: 768px) {

    .home {

        background-position: right center;
        background-repeat: no-repeat;

    }
    .home_text{
        max-width: 90vw;
        text-transform: uppercase;
    }
    .home {
        background-size: auto;
        background-position: top ;


    }



}