#main-content {
    display: flex;
    min-height: calc(100vh - 100px);
    flex-direction: row;
}

.left-side {
    position: relative;
    flex: 1;
    width: 35%;
    background-color: #591111;
}

.left-side .text-box {
    position: absolute;
    top: 25%; left: 30%;
    width: 40vw;
    z-index: 1;
}

.left-side .text-box h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #fff;
}

.left-side .text-box h2 span {
    color: #FC3030;
}

.left-side .text-box p {
    font-size: 0.750em;
    color: #fff;
    line-height: 160%;
}

#about-btn {
    position: absolute;
    left: 30%; bottom: 40px;
    display: block;
    padding: 12px 40px;
    font-size: 0.750em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #FC3030;
    border-radius: 15px;
    transition: background-color 0.3s ease-in-out;
}

#about-btn:hover {
    background-color: #CC2020;
}

.right-side {
    flex: 2;
    width: 65%;
}

.right-side .img-holder {
    position: relative;
    height: 65vh;
    background-image: url('./images/img-home.png');
    background-size: cover;
}

.img-holder { height: 100%; }

.img-holder img {
    position: absolute;
    top: 50px; right: 25%;
    height: 70%;
}

#social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

#social-media .text-box {
    width: 580px;
    color: #333;
}

#social-media .text-box h3 {
    margin-bottom: 10px;
    font-size: 0.950em;
}

#social-media .text-box p {
    font-size: 0.650em;
    line-height: 160%;
}

#social-media .media-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#social-media .media-box a {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-size: 1.25em;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
}

#social-media .media-box a.instagram {
    background-color: #E1306C;
}

#social-media .media-box a.facebook {
    background-color: #3B5998;
}

#social-media .media-box a.linkedin {
    background-color: #0077b5;
}

#social-media .media-box a.whatsapp {
    background-color: #25d366;
}

@media screen and (max-width: 768px) {
    body { font-size: 16px; }

    #main-content { min-height: calc(100vh - 82px); }

    #main-content .left-side { width: 25%; }

    #main-content .right-side { width: 75%; }

    .img-holder img { top: 100px; right: 15%; height: 52%; }

    #about-btn { bottom: 90px; }

    #social-media .text-box { width: auto; margin-right: 40px; }

    #social-media .media-box a { width: 40px; height: 40px; font-size: 1.1em; }
}

@media screen and (max-width: 475px) {
    #main-content { min-height: unset; }

    .left-side { flex-grow: 0; width: 0; }

    .left-side .text-box {
        top: 45px; left: 0;
        width: 100vw;
        padding: 0 30px;
    }

    .left-side .text-box h2 { font-size: 2.125em; }

    .left-side .text-box p {
        font-size: 1.125em;
        text-align: justify;
    }

    .right-side .img-holder { height: 410px; }

    #about-btn {
        bottom: unset;
        top: 40vh; left: 50vw;
        width: 170px;
        height: 45px;
        padding: 0;
        font-size: 1em;
        text-align: center;
        line-height: 45px;
        vertical-align: middle;
        transform: translateX(-50%);
        z-index: 1;
    }

    .img-holder img { display: none; }

    #social-media { flex-direction: column; }

    #social-media .text-box {
        margin-right: 0;
        margin-bottom: 30px;
    }

    #social-media .text-box h3 {
        font-size: 1.375em;
    }

    #social-media .text-box p {
        font-size: 1em;
        text-align: justify;
        line-height: 160%;
    }

    #social-media .media-box a {
        width: 50px;
        height: 50px;
        font-size: 1.375em;
    }
}

@media screen and (max-width: 430px) {
    #about-btn { top: 45%; }
}

@media screen and (max-width: 360px) {
    .right-side .img-holder {
        height: 460px;
    }

    #about-btn { top: 48%; }
}

@media screen and (min-width: 1024px) {
    .img-holder img {
        right: 20%;
        height: 60%;
    }

    #social-media .text-box { width: 370px; }
}

@media screen and (min-width: 1280px) {
    #about-btn { bottom: 80px; }
}

@media screen and (min-width: 1440px) {
    #about-btn { bottom: 90px; }
}

