*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}

.nav{
    width: 100vw;
    height: 7rem;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #a13f36;
    color: #fcd9b1;
    font-size: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a{
    color: #fcd9b1;
    text-decoration: none;
}
.list{
    display: flex;
    list-style: none;
    gap: 0.75rem;
    padding-left: 20rem;
}

.listitem:hover{
    cursor: pointer;
    text-decoration: underline;
}
.cta{
    padding-right: 20rem;
    border: none;
    list-style: none;
    font-size: 1.5rem;
}
.cta:hover{
    cursor: pointer;
    text-decoration: underline;
}

.banner{
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: #a13f36;
    background-image: linear-gradient(rgba(161, 63, 54,.5),rgba(161, 63, 54,.5)),url(../img/banner.webp);
    background-size: cover; 
    display: flex;
    flex-direction: column;
}
.heading{
    width: 88vw;
    height: 100%;
    color: #fcd9b1;
    font-size: 21rem;
    padding-left: 23rem;
}
.articleSection{
    width: 100vw;
    height: 90vh;
    background: #fcd9b1;
    color: #a13f36;
}
.articleSection > section {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 10rem;
    gap: 13rem;
}
.headingMain{
    font-size: 10rem;
}
.articleText{
    width: 75vw;
    display: flex;
    justify-content: center;
    gap: 30rem;
}
.articleText > p {
    width: 50%;
    font-size: 2.3rem;
}
.mainImage{
    width: 64rem;
    height: 36rem;
    background:linear-gradient(rgba(252, 217, 177, .5),rgba(252, 217, 177, .5)) , url(../img/intro.webp);
    background-size: cover;
}
.featureSection{
    width: 100vw;
    height: 110vh;
    background: #eecda8;
    color: #a13f36;
}
.featureGrid{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 25rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.featureTop{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.featureBottom{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10rem;
}
.features{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featureImg {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
}
.img1{
    background:linear-gradient(rgba(252, 217, 177, .5),rgba(252, 217, 177, .3)) , url(../img/Walt.webp);
    background-size: cover;
}
.img2{
    background:linear-gradient(rgba(252, 217, 177, .5),rgba(252, 217, 177, .3)) , url(../img/celAnimation.webp);
    background-size: cover;
}
.img3{
    background:linear-gradient(rgba(252, 217, 177, .5),rgba(252, 217, 177, .3)) , url(../img/celAnimation.webp);
    background-size: cover;
}
.img4{
    background:linear-gradient(rgba(252, 217, 177, .5),rgba(252, 217, 177, .3)) , url(../img/teamfoto.webp);
    background-size: cover;
}

.featuresText{
    width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 175%;
    text-align: center;
}
.imgSection{
    height: 100vh;
    width: 100vw;
    background-color: #a13f36;

}
.imgGrid{
    height: 100vh;
    width: 100vw;;
    display: flex;
}
.row{
    width: 100vw;
    height: 33vh;
}
.foto > img{
    height: 100%;
    width: 100%;
}
.foto{
    height: 100%;
    width: 101%;
    list-style: none;
    position: relative;
}
.foto::after{
    height: 101%;
    width: 100%;
    background: rgba(161, 63, 54,.3);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(1);
    transition: .8s;
    transform-origin: right;
}
.foto:hover::after{
    transform: scaleX(0);

}
footer{
    height: 40rem;
    background-color: #a13f36;
    color: #fcd9b1;
    font-size: 3rem;
}