*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    background: white;
}
.s1{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    background: url('./assets/s1bg.png') no-repeat center/cover;
}
.s1-header{
    width: 100%;
    padding: max(1vw, 10px) max(3vw, 30px);
    display: flex;
    align-self: center;
    justify-content: center;
}
.s1-header a{
    color: white;
    font-size: max(1.3vw, 13px);
    text-decoration: none;
    margin: 0 max(2vw, 20px);
}
.s1-header a:active, .s1-header a:hover, .s1-header a:focus{
    color: #a96aad;
}
.s1-l, .s1-r{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 70vh;
}
.s1-l{
    align-items: flex-start;
    width: max(30%, 250px);
}
.s1-l img{
    width: max(15vw, 150px);
}
.s1-r{
    align-items: flex-end;
    height: 70vh;
    justify-content: center;
    width: max(40%, 250px);
}
.s1-r span{
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #a96aad;
    border-bottom: none;
    width: max(80%, 250px);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: max(2vw, 20px);
    color: white;
}
.s1-r span h1{
    font-size: max(2vw, 20px);
    font-weight: 500;
}
.s1-r a{
    text-transform: uppercase;
    font-size: max(1.5vw, 15px);
    display: block;
    margin-top: max(1.5vw, 15px);
    color: white;
}
.s1-arr{
    width: max(10%, 80px);
}
.s1-arr img{
    width: max(10vw, 100px);
}

.s2, .s3{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.s2{
    flex-wrap: wrap-reverse;
}
.s2-l, .s2-r, .s3-l, .s3-r{
    width: max(45%, 250px);
    padding: max(3vw, 30px);
}
.s2-l p{
    font-size: max(1.2vw, 12px);
}
.s2-r h1{
    font-size: max(8vw, 80px);
}
.s3{
    background: black;
    color: white;
}
.s3-l h1{
    font-size: max(6.5vw, 65px);
}
.s3-l p, .s2-r p{
    font-size: max(1.4vw, 14px);
}
.s3-l p a{
    color: white;
}
.s3-r p{
    font-size: max(1.25vw, 12.5px);
}
.s5{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: max(2vw, 20px);
}
.s5 h1{
    width: 100%;
    font-size: max(7vw, 70px);
}
.s5 span{
    width: max(30%, 250px);
    padding: max(1vw, 10px);
}
.s5-e{
    height: 0;
    padding: 0;
}
.s5 span small{
    color: black;
    font-size: max(1.2vw, 12px);
}
.s5 span h2{
    color: rgb(61, 61, 61);
    font-size: max(1.7vw, 17px);
}
.s5 span p{
    color: grey;
    font-size: max(1.15vw, 11.5px);
}
footer{
    width: 100%;
    text-align: center;
    color: white;
    padding: max(2.5vw, 25px) max(1.5vw, 15px);
    background: black;
    font-size: max(1vw, 10px);
}
@media all and (max-width:600px) {
    .s1-l{
        align-items: center;
        min-height: max-content;
        padding: max(2vw, 20px) 0;
    }
    .s1-r{
        width: 90vw;
        height: max-content;
        min-height: max-content;
    }
    .s1-r span{
        width: 100%;
        border: 2px solid #a96aad;
        display: grid;
        place-items: center;
    }
    .s2, .s3, .s5{
        min-height: max-content;
    }
    .s2-l, .s2-r, .s3-l, .s3-r{
        padding: max(1.5vw, 15px);
        width: 100%;
    }
    .s2-r h1, .s3-l h1, .s5 h1{
        font-size: max(4vw, 40px);
    }
    .s5 span{
        width: 100%;
    }
}

@keyframes slideY {
    0%{
        transform: translateY(10%);
        opacity: 0;
    }
    100%{
        transform: translate(0);
        opacity: 1;
    }
}