*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
html, body{
    height: 100vh;
    width: 100vw;
}
#page1{
    height: 100vh;
    width: 100vw;
    /* background-color: rgb(210, 234, 125); */
}
#nav{
    height: 12vh;
    width: 100vw;
    /* background-color: royalblue; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 3vw;
}
#nav-part1{
    width: 38vw;
    /* background-color: yellow; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#nav-part1 h4{
    font-size: 15px;
    font-weight: 600;
    font-family: 'Work sans';
}
#nav-part2{
    width: 40vw;
    /* background-color: yellow; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
#nav-part2 button{
    padding: 2vh 1vw;
    border-radius: 15vw;
    font-size: 1.2vw;
    font-weight: 600;
    font-family: 'Work sans';
    border: none;
    background-color: rgb(0, 0, 0);
    color: #fff;
    margin: 0 5px;
}
#nav-part2 button:nth-child(1){
    background-color: transparent;
    color: #000;
}
#nav img{
    height: 12vh;
}
#content{
    height: calc(100% - 100px);
    width: 100vw;
    /* background-color: crimson; */
    /* padding-top: 60px; */
    padding-top: 10vh;
}
#content h3{
    background-color: #f2b0ea;
    padding: 0.8vh 1vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 15vh;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    font-size: 1.2vw;
    font-family: "Source Serif ";
    font-weight: 100;
}
#content h1{
    font-size: 5vw;
    text-align: center;
    margin: 20px 0;
    font-family: "Source Serif ";
    font-weight: 100;
    line-height:60px;
    padding: 4vh;
}
#content h4{
    font-size: 1.4vw;
    text-align: center;
    font-weight: 500;
}
#content button{
    padding: 2.5vh 1vw;
    border-radius: 12vh;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Work sans';
    border: none;
    background-color: black;
    color: #fff;
    margin: 20px 0px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
}
#bottom{
    height:45vh;
    width: 100vw;
    /* background-color: red; */
    padding: 1vh;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 4vh;
    margin-bottom: 10vh;
}
#bottom::-webkit-scrollbar{
    display: none;
}
.elem{
    position: relative;
    display: inline-block;
    height: 100%;
    width: 20vw;
    margin-right: 2vh;
    border-radius: 2.5vw;
    /* background-color: royalblue; */
    overflow: hidden;
    -webkit-animation-name: anime;
            animation-name: anime;
    -webkit-animation-duration: 15s;
            animation-duration: 15s;  
    -webkit-animation-iteration-count: infinite;  
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
}
.elem img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;

}
.elem video{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;

}
@-webkit-keyframes anime{
    /* from{
        transform: translateX(0);
    }  
    to{
        transform:translateX(calc(-100% -  230px));
    } */
    from{
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    to{
        -webkit-transform: translateX(calc(-100% - 20vw));
                transform: translateX(calc(-100% - 20vw));
    }
}
@keyframes anime{
    /* from{
        transform: translateX(0);
    }  
    to{
        transform:translateX(calc(-100% -  230px));
    } */
    from{
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    to{
        -webkit-transform: translateX(calc(-100% - 20vw));
                transform: translateX(calc(-100% - 20vw));
    }
}

#page2{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100vw;
    /* background-color: rgb(245, 170, 170); */
    position: relative;
     
    padding: 5vh;
    margin-top: 35vh;
    /* text-align: center; */
    padding: 0 5vw;
}
#page2-titel{
    margin-bottom: 5vh;
}
#page2-titel h1{
    text-align: center;
    font-size: 2.3vw;
    font-weight: 500;
    font-family: 'Work sans';
}
.box{
    height: 45vh;
    width: 28vw;
    /* background-color: red; */
    border-radius: 2vh;
    overflow: hidden;
    display: inline-block;
    margin: 1.9vh;
    position: relative;
}
.box img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.box video{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover  
}
.box-bottom{
    height: 40%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.731)));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.731));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.731));
    position: absolute;
    bottom: -40%;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
}
.box-bottom i{
    background-color: #fff;
    padding: 8px 9px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50%;
}
.box-bottom h5{
    font-size: 20px;
    font-family:'Work sans';
}
.box:hover .box-bottom{
    bottom: 0;
}
.box:hover{
    -webkit-box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.6);
            box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.6);
}
#page2-bottom button{
    padding: 2vh 0.9vw;
    border-radius: 5vh;
    font-size: 1vw;
    font-weight: 600;
    font-family: 'Work sans';
    border: none;
    background-color: black;
    color: #fff;
    margin: 15px 0px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%)

}
#footer{
    height: 30%;
    width: 100vw;
    /* background-color: red; */
    padding: 0 7vw;
}
#part1-f{
    height: 50%;
    width: 100%;
    /* background-color: blue; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
#footer-part1{
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;

}
#footer-part1 img{
    height: 100px;
    width: 200px;
    -o-object-fit: cover;
       object-fit: cover;
}
#footer h4{
    font-size: 1vw;
    font-family: 'Mona Sans';
    font-weight: 500;
}
#footer-part2{
    height: 100%;
    width:-webkit-fit-content;
    width:-moz-fit-content;
    width:fit-content;
    /* background-color: yellow; */
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1vw;
}
#footer-part2 i{
    font-size: 30px;
}
#part2-f{
    height: 40%;
    width: 100%;
    /* background-color:orange; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 40px;
}
#part2-f-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
#part2-f-1 h6{
    font-size: 15px;
    font-weight: 400;
    font-family: 'Mona Sans';
}
#part2-f-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
}
#part2-f-2 h6{
    font-size: 15px;
    font-weight: 400;
    font-family: 'Mona Sans';
}