*{
    margin: 0;
    padding: 0;
    
}
@font-face {
    font-family: "Milliard";
    src: url(Rene\ Bieder\ \ Milliard\ Light.woff);
}
@font-face {
    font-family:"celestina" ;
    src: url(Celestina.otf);
}
nav{
    width: 100%;
    display:flex;
    justify-content: space-around;
    z-index: 11;
    gap: 70%;
}
nav img{
    width: 150px;
    padding: 10px;
}
nav ul{
    display:flex;
    list-style: none;   
    gap: 50px;
    align-items: center;
}
.slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:1;
}
.banner{
    height: 80vh;
    position: relative;
    overflow: hidden;
}
.banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: center;
}

.banner-content{
    position: absolute;
    inset: 0;
    color: white;
    display: flex;
    font-family: "celestina";
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    z-index: 11;
    text-align: center;
}
.slide.active{
    animation: slide 1s ease;
}
@keyframes slide {
    from{
        transform: translateX(1000px);
    }
    to{

        transform: translateX(0px);
    }
}
.slide.active .banner-content{
    animation: slide-reverse 1s ease;
}
@keyframes slide-reverse {
    from{
        opacity: 0;
        transform: translateX(-95%);
    }
    to{
        opacity: 1;
        transform: translateX(0%);
    }
}
.banner-content h1{
    font-size: 80px;
}
.banner-content p{
    font-size: large;
    letter-spacing: 5px;
}
.slide{
    position:absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.slide.active{
    opacity: 1;
}
.our-story{
    display: flex;
    flex-direction: column;
}
.our-story img{
    width: 30vw;
}
.our-story h2{
    font-family: "Milliard";
    color:#C33138;
    font-size: xx-large;
    padding: 30px;
    text-align: center;
}
.story-text{
    display: flex;
    margin: 0px 90px;
    gap: 10%;
    padding: 70px;
}
.story-text p{
    display: flex;
    align-items: center;
    line-height: 40px;
    text-align: left;
}
.gallery h2{
    font-family: "Milliard";
    color:#C33138;
    font-size: xx-large;
    padding: 30px;
    text-align: center;
}
.gallery .images{
    column-count: 4;
    margin: 0px 40px;
    padding: 40px;
    gap: 10px;
}
.gallery .images img{
    width: 100%;
}
footer img{
    width: 300px;
}
footer{
    width: 100%;
    background-color: rgba(128, 128, 128, 0.114);
}
.footer-container{
    display: flex;
    justify-content: space-between;
    margin: 0px 60px;
    padding: 60px;
    align-items: center;
}
.footer-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-content h3{
    font-family: "Milliard";
    color:#C33138;
}
.footer-content img{
    width: 30px;
}
.footer-content a{
    text-decoration: none;
    color: inherit;
}
@media screen and (max-width:750px) {
    nav ul{
        display: none;
    }
    .our-story h2{
        font-size: larger;
        padding: 20px;
    }
    .our-story img{
        object-fit: cover;
        object-position:70%;
    }
    .story-text{
        margin: 0;
        padding: 20px;
    }
    .story-text p{
        line-height: 17px;
    }
    .gallery .images{
        padding: 0;
    }
    .gallery h2{
        font-size: larger;
    }
    .gallery .images{
        column-count: 2;
    }
    footer img{
        width:200px;
        object-fit: contain;
    }
    .footer-container{
        flex-direction: column;
        gap: 40px;
    }
    .footer-container h3{
        font-size: medium;
    }
    .footer-container p{
        font-size: smaller;
    }
}