.image-container {
    position: relative;
    height: 600px;
}

.aside-image-container {
    margin: 100px auto;
    position: relative;
    height: 600px;
}

.aside-image {
    height: 600px;
    width: 100%;
    position: absolute;
    z-index: 2;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.main-image-blur {
    height: 600px;
    width: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(20, 30, 29, .5);
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    color: #ccd4dd;
}

.company-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.company-name {
    font-size: 95px;
}

.company-tagline {
    font-size: 40px;
    font-weight: 300;
}

.introduction-text {
    font-size: 20px;
    color: #ccd4dd;
    line-height: 2;
}

.introduction-text-container {
    width: 100%;
    /*background-color: #ccd4dd;*/
    line-height: 2;
    display: flex;
    justify-content: center;
}

.introduction-text-container p {
    margin: 20px 0;
}

.secondary-text-container {
    color: #ccd4dd;
    font-size: 20px;
    line-height: 2;
}

a.action-button {
    padding: 15px 35px;
    position: relative;
    background: none;
    border: none;
    font-size: 15px;
    z-index: 99999;
    background: #141e1d;
    color: #ccd4dd;
    cursor: pointer;
    text-decoration: none;
}

a.action-button {
    &:before,
    &:after {
        display: block;
        content: "";
        position: absolute;
        background: #ccd4dd;
        z-index: -1;
    }
}

.animated-button {
    &:before {
        top: -0.1rem;
        bottom: 100%;
        left: -0.1rem;
        right: calc(100% + 0.1rem);
        transition: left .3s, right .3s, bottom .3s;

    }

    &:after {
        top: 100%;
        bottom: -0.1rem;
        left: calc(100% + 0.1rem);
        right: -0.1rem;
        transition: left .3s, right .3s, top .3s;
    }

    &:hover {
        &:before {
            top: -0.1rem;
            bottom: -0.1rem;
            left: -0.1rem;
            right: -0.1rem;
        }

        &:after {
            top: -0.12rem;
            bottom: -0.12rem;
            left: -0.12rem;
            right: -0.12rem;;
        }
    }
}

.separator {
    height: 10px;
    width: 100%;
    background-color: #141e1d;
}

.photoblock-container {
    justify-content: space-evenly;
}

.photoblock {
    position: relative;
    margin-bottom: 40px;
}

.photoblock h2 {
    color: #ccd4dd;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
}

.photoblock-info {
    position: relative;
}

.photoblock-info .content-overlay {
    background: rgba(255, 255, 255, 0.85);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.photoblock-info:hover .content-overlay {
    opacity: 1;
}

.content-details {
    color: #141e1d;
    display: flex;
    width: 85%;
    flex-direction: column;
    gap: 20px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content-details button {
    padding: 10px 20px;
    position: relative;
    background: none;
    border: none;
    font-size: 14px;
    z-index: 99999;
    background: #2a3837;
    color: #ccd4dd;
    cursor: pointer;
    text-decoration: none;
}

.content-details p {
    font-weight: 500;
    margin-bottom: 0;
}

.photoblock-info:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.fadeIn-top {
    top: 20%;
}

.slide {
    overflow: hidden;
    position: absolute;
    background-color: #000;
    height: 600px;
    width: 100%;
    z-index: 1;
}

.slide > img {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    opacity: 0;
    object-fit: cover;
}

@keyframes slide {
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    40% {
        transform: scale(1.05);
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 60px;
    }

    .company-tagline {
        font-size: 20px;
    }

    .content-image {
        height: 250px;
    }

    .content-details p {
        font-size: 15px;
    }

    .content-details {
        width: 95%;
        gap: 10px;
    }
}
