@font-face {
    font-family: 'Science';
    src: url(Lato-Bold.ttf);
}

.txtincrease {
    color: #afafaf;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition-duration: 0.4s;
}

.txtincrease:hover {
    transform: scale(1.2);
}

.translate-down-eighth {
    transform: translateY(12vh);
}

.translate-up-eighth {
    transform: translateY(-12vh);
}

.section-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: black;
}

.image-container {
    position: relative;
    width: 66.66%;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: skewY(-6deg);
}

.text-container {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    z-index: 1;
}

.text-container p {
    margin: 0.5rem 0;
    color: white;
    
}

.text-container .highlight {
    color: #FFDE59;

}
 .logo img {
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
    display: block;
    flex-shrink: 0;
}


