@font-face {
    font-family: Poppins-Light;
    src: url("../font/Poppins/Poppins-Light.ttf");
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url("../font/Poppins/Poppins-SemiBold.ttf");
}

#animation-fade {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        background-color: rgb(241, 240, 235);
    }
    100% { 
        opacity: 1; 
    }
}

.projects-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.box-container {
    margin-bottom: 15px;
}

.box-container div:hover {
    filter: grayscale(100%);
    transition-duration: 0.5s;
}

.box-container div:hover .go-arrow {
    opacity: 1;
    text-align: right;
    width: 40px;
    transform: rotate(180deg);
    transition-duration: 0.5s;
}

.fit-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.presentation-title-container {
    background-color: rgb(4, 106, 144);
}

.presentation-title {
    font-size: 2vw;
    padding: 5px;
    font-family: Poppins-Light;
    color: white;
}

.presentation-title strong {
    font-family: Poppins-SemiBold;
}

.go-arrow-container {
    background-color: rgb(4, 106, 144);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.go-arrow {
    opacity: 0;
    text-align: right;
    width: 40px;
    transform: rotate(180deg);
    transition-duration: 0.5s;
}

.loader {
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0eb;
    z-index: 1001;
}

.loader img {
    height: 200px;
    width: 200px;
}

.no-display {
    display: none !important;
}


/*MOBILE*/
@media screen and (max-width:767px) {
    .presentation-title {
        font-size: 4vw;
    }
}