body{
    background-image: url(/img/background_img/home.png);
    background-repeat: no-repeat;
    background-size: cover;
}

h3{
    font-size: 2.25rem;
}

.caroussel{
    position: relative;
    width: 100%;
    overflow: visible;
    height: 50vh;
    margin: 2rem 0 2rem 0;
}
.caroussel__btn{
    position: absolute;
    background: none;
    border: none;
    outline: none;
    font-size: 2.6rem;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    color: white;
}

#prev{
    left: 5px;
}

#next{
    right: 5px;
}

.slide{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.slide.active{
    opacity: 1;
}

.caroussel__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.article{
    width: 90%;
    display: flex;
    margin: 1.25rem 0;
}

.article:nth-child(odd){
    flex-direction: row;
    justify-content: flex-end;
}

.article:nth-child(even){
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.article__title{
    margin: 1.25rem;
    color: #187795;
    font-weight: bold;
    font-size: 2.25rem;
    line-height: 3rem;
    text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

.article__title a {
    display: flex;
}

.article__title a:hover{
    color: #004d66;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.article__title a i {
    margin-left: 1rem;
    line-height: 3.2rem;
}

.animation__arrow--right{
    display: inline-block;
    animation: moveArrowRight 1s ease-in-out infinite;
}

.animation__arrow--left{
    display: inline-block;
    animation: moveArrowLeft 1s ease-in-out infinite;
}

@keyframes moveArrowRight {
    0% {
        transform: translateX(0);
    }
    50%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes moveArrowLeft {
    0% {
        transform: translateX(0) scaleX(-1);
    }
    50%{
        transform: translateX(-100%) scaleX(-1);
    }
    100%{
        transform: translateX(0) scaleX(-1);
    }
}

.article:nth-child(even) .article__title a {
    flex-direction: row-reverse;
}

.article:nth-child(even) .article__title a i {
    margin-right: 1rem;
    transform: scaleX(-1);
}

.article__img{
    opacity: 1;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25); 
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
    .article__img {
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    h3{
        font-size: 1rem;
    }
    .article__title{
        line-height: normal;
    }
    .article__title a{
        line-height:normal;
        font-size: 1rem;
    }
    .article__title a i{
        line-height:1.4rem;
    }
    .caroussel{
        margin: 0;
    }
    /* #menu{
        display: block;
    } */
}

/* @media (min-width: 600px) {
    #menu{
        display: none;
    }
} */