/* HOME - SPLIT */
.home-container {
    width: 100%;
    height: 800px;
    min-height: fit-content;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
}

.home-half {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.3s linear;
}

.home-half-overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px) brightness(50%);
    background-color: #3d7ee71a;
    transition: all 0.3s linear;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-half-overlay:hover {
    backdrop-filter: blur(0px) brightness(80%);
    background-color: #3d7ee700;
}

.home-half-overlay:hover ~ img {
    transform: scale(1.05);
}

.home-line-split {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: calc(50% - 2px);
    background-color: var(--main-gray);
    z-index: 3;
}

.home-logo-wrap {
    width: 70px;
    height: 70px;
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    z-index: 4;
    background-color: var(--main-gray);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-logo-wrap img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.home-services-card {
    width: fit-content;
    color: white;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(136, 136, 136, 0.5);
    margin-bottom: 50px;
    transition: background-color 0.3s linear;
}

.home-half-overlay:hover .home-services-card {
    background-color: rgba(136, 136, 136, 0.85);
}

.home-services-card h2 {
    margin: 0;
    font-size: 2rem;
    text-align: center;
}

.home-services-card p {
    margin: 20px 0px 0px 0px;
    text-align: center;
    font-size: 1rem;
}

.home-services-card .highlight {
    color: var(--main-blue-darker);
    font-weight: 600;
    font-size: 1.1rem;
}

.home-services-card .highlight-red {
    color: var(--red-color-darker);
}

.home-container .button {
    color: white;
}

.blue-button {
    background-color: var(--main-blue);
    box-shadow: 4px 4px 0px 0px var(--main-blue-darker);
}

.blue-button:hover {
    background-color: var(--main-blue-darker);
    box-shadow: none;
}

.red-button {
    background-color: var(--red-color);
    box-shadow: 4px 4px 0px 0px var(--red-color-darker);
}

.red-button:hover {
    background-color: var(--red-color-darker);
    box-shadow: none;
}


@media (max-width: 1000px) {
    .home-half {
        width: 100%;
        height: 500px;
    }

    .home-line-split {
        width: 100%;
        height: 4px;
        left: 0;
        top: 50%;
    }
}