* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    background-color: #EEEEEE;
    font-family: Apercu Mono, Arial, sans-serif;
}

body button:hover {
    cursor: pointer;
    border: 1px dotted black !important;
}

#banner {
    width: 100%;
    height: 10%;
    display: flex;
    white-space: nowrap;
    overflow-x: hidden;
    transition: all 1s linear;
    border-bottom: 1px solid black;
    padding-bottom: .3vw;
    background-color: #FBFBFB;
    overflow-y: hidden;
}

#banner::-webkit-scrollbar {
    display: none;
}

#banner-1::-webkit-scrollbar {
    display: none;
}

#banner #banner-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2vw;
    cursor: text;
    animation-name: slider;
    animation-duration: 50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.part {
    display: flex;
    align-items: center;
}

.part p {
    font-weight: 100;
    color: rgb(56, 49, 49);
}

.part p u {
    text-decoration: none;
    border-bottom: 1px solid rgba(56, 49, 49, 0.493);
    ;
}

#banner #banner-1 img {
    height: 40px;
}


@keyframes slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#page1 {
    width: 100%;
    min-height: 100vh;
    /* background-color: red; */
    position: relative;
    z-index: 999;
}

#p1-top {
    width: 100%;
    height: 30vh;
    /* background-color: aqua; */
}

#p1-top #t-top {
    height: 60%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vw;
    position: relative;
}

#p1-top #t-top i {
    position: absolute;
    top: 37.5%;
    right: 8%;
    font-size: 2vw;
    color: rgba(0, 0, 0, 0.409);
}

#p1-top #t-top img {
    height: 3vw;
}

#p1-top #t-top input[type="search"] {
    border-radius: 100px;
    padding: 1vw 2vw;
    width: 35%;
    border: 1px solid black;
}

#t-bottom {
    display: flex;
    gap: 5vw;
    padding: .5vw 5vw;
    white-space: nowrap;
}

#t-bottom a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.826);
    text-transform: uppercase;
    font-size: 1vw;
    transition: all ease 0.3s;
}

#t-bottom a:hover {
    font-weight: bolder;
}

#p1-bottom {
    width: 100%;
    height: 90vh;
    /* background-color: rgb(0, 255, 102); */
    display: flex;
    position: relative;
}

#p1-bottom #b-left {
    width: 60%;
    height: 100%;
    /* background-color: aquamarine; */
    position: absolute;
    overflow: hidden;
    padding-right: 2vw;
    z-index: 999;
}

#p1-bottom #b-left h1 {
    font-family: "Trithart, Georgia, sans-serif";
    -webkit-text-stroke: 1px black;
    color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(10%, 50%);
    font-size: 8vw;
    padding-left: 3vw;
}

#p1-bottom #b-left #star {
    position: absolute;
    top: 55%;
    animation-name: rotate;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* animation-direction: reverse; */
}

#p1-bottom #b-left>img {
    position: absolute;
    top: 25%;
    left: 75%;
}

#p1-bottom #b-left #plane {
    position: absolute;
    z-index: 9999;
    left: 0;
    height: 120px;
    top: 75%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#p1-bottom #b-right {
    width: 40%;
    height: 100%;
    /* background-color: red; */
    position: absolute;
    right: 0;
    z-index: 10;
    overflow-x: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swiper-slide h3 {
    font-size: 3vw;
    padding: 1.5vw;
    width: 60%;
}

.swiper-slide p {
    width: 55%;
    line-height: 2vw;
    letter-spacing: .1vw;
}

.swiper-slide button {
    font-size: 2vw;
    color: rgba(0, 0, 0, 0.642);
    padding: 1vw;
    margin-top: 3vw;
    border-radius: 10px;
    border: 1px solid black;
}

.swiper-slide button:hover {
    border: 1px dotted black;
    cursor: pointer;
}

.swiper-pagination {
    height: 13%;
    display: flex !important;
    justify-content: center;
    gap: 10px !important;
}

.swiper-pagination-bullet {
    background-color: transparent;
    width: 13px;
    height: 13px;
    opacity: 1;
    border: 1px solid black;
}

.swiper-pagination-bullet-active {
    background-color: #000000df;
}

#b-right>img {
    position: absolute;
    top: 20%;
    right: -25%;
    height: 30vw;
    animation-name: megaphone;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition: all ease-in-out 0.3s;
    animation-direction: alternate;
}

@keyframes megaphone {
    from {
        transform: rotate(15deg);
    }

    to {
        transform: rotate(-10deg);
    }

}

#page2 {
    height: 100vh;
    width: 100%;
    /* background-color: #F8F7F7; */
    display: flex;
    z-index: 1;
    position: relative;
}

#pg2-left {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 10vw;
}

#pg2-left h3 {
    font-size: 3vw;
    text-align: center;
    width: 50%;
}

#pg2-left p {
    font-size: 1.5vw;
    letter-spacing: .1vw;
    line-height: 2vw;
    text-align: center;
    margin-top: 1.5vw;
}

#pg2-right {
    height: 100%;
    width: 50%;
    /* background-color: aquamarine; */
    background-image: url("assets/leo.png");
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

#page3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    /* background-color: #F8F7F7; */
}

#images {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 100;
    overflow: hidden;
}

#images #starr {
    height: 20vw;
    object-fit: cover;
    position: absolute;
    left: 10%;
    padding: 2vw 4vw;
}

#images #lip {
    height: 20vw;
    object-fit: cover;
    position: absolute;
    left: 30%;
    top: 50%;
    padding: 2vw 4vw;
}

.card-container {
    /* background-color: aquamarine; */
    position: absolute;
    width: 100%;
    height: 100vh;
    right: 0;
    display: flex;
    justify-content: space-between;
    background-color: #EEEEEE;
    padding: 5vw;
    font-weight: 200;
    top: 100%;
    z-index: 100;
}

.card-container h3 {
    left: 35%;
    position: absolute;
    top: 0;
    padding: 2vw;
    font-size: 2vw;
}

.card-container .card {
    padding: 2vw;
    height: 100%;
    width: 100%;
    text-align: center;
}

.card-container .card #img1 {
    background-image: url("assets/cats.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.card-container .card #img2 {
    background-image: url("assets/butterflies.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.card-container .card #img3 {
    background-image: url("assets/cart.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.card-container .card h5 {
    width: 100%;
    font-size: 2vw;
    height: 25%;
    padding: 1vw .5vw;
}

.card-container .card button {
    font-size: 1vw;
    border: 1px solid black;
    padding: 1.5vw 1vw;
    border-radius: 10px;
    width: 50%;
    text-transform: uppercase;
}

#page4 {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

#playlist {
    height: 20vh;
    background-color: #EEEEEE;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 1;
    top: 100%;
    /* background-color: rebeccapurple; */
}

#playlist h3 {
    font-size: 2vw;
    text-align: center;
    padding: 7vw;
}

#playlist img {
    position: absolute;
    right: 25%;
    animation-name: rotate;
    animation-duration: 50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    height: 90px;
}

#play-cards {
    /* background-color: red; */
    z-index: 999;
    position: absolute;
    height: 120vh;
    width: 100%;
    top: 120%;
    padding: 5vw;
    display: flex;
    justify-content: space-around;
}

#card-1 {
    height: 70%;
    width: 45%;
    margin-top: 8vw;
    border: 1px solid;
    border-radius: 10px;
    transform: rotate(-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2vw;
    background: linear-gradient(to bottom, #f5f5f5 0%, #5a56564e 100%);
    font-size: 1.2vw;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#card-1 h3 {
    width: 50%;
    padding-bottom: .5vw;
}

#card-1 button {
    padding: 1.5vw 3.5vw;
    border-radius: 10px;
    border: 1px solid black;
    font-size: 1.5vw;
    position: relative;
    z-index: 99;
    top: 5%;
}

#card-1>button:hover,
#card-2>button:hover {
    box-shadow: 0px 22px 22px rgb(252, 152, 252);
}

#card-1 img {
    position: absolute;
    top: 75%;
}

#card-2 {
    height: 70%;
    width: 45%;
    margin-top: 8vw;
    border: 1px solid;
    border-radius: 10px;
    transform: rotate(-1deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2vw;
    background: linear-gradient(to bottom, #f5f5f5 0%, #5a56564e 100%);
    font-size: 1.3vw;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#card-2 h3 {
    width: 50%;
    padding-bottom: .5vw;
}

#card-2 button {
    padding: 1.5vw 3.5vw;
    border-radius: 10px;
    border: 1px solid black;
    font-size: 1.5vw;
    position: relative;
    z-index: 99;
    top: 5%;
}

#card-2 img {
    position: absolute;
    top: 90%;
}


.mini-card1 img {
    height: 200px;
    transform: scale(1.5);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    border-radius: 20px;
    left: 20%;
    top: 20%;
}

.mini-card2 img {
    height: 200px;
    background-color: transparent;
    transform: scale(1.5);
    background-position: center;
    background-size: cover;
    object-fit: cover;
    position: absolute;
    border-radius: 10px;
    left: 63%;
    top: 15%;
}

#page4 .cards {
    position: absolute;
    top: 240%;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    /* background-color: rosybrown; */
    padding: 6vw;
    font-weight: 200;
    z-index: 999;
}

.cards h3 {
    left: 35%;
    position: absolute;
    top: 0;
    padding: 3vw 1vw 1vw 1vw;
    font-size: 2vw;
}

.cards .card {
    padding: 1vw;
    height: 100%;
    width: 100%;
    text-align: center;
}

.cards .card #cards-img1 {
    background-image: url("assets/remove_2025.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.cards .card #cards-img2 {
    background-image: url("assets/Love.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.cards .card #cards-img3 {
    background-image: url("assets/Success.png");
    object-fit: cover;
    background-position: center;
    height: 70%;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
}

.cards .card h5 {
    width: 100%;
    font-size: 2vw;
    height: 25%;
    padding: 1vw .5vw;
}

.cards .card button {
    font-size: 1vw;
    border: 1px solid black;
    padding: 1.5vw 1vw;
    border-radius: 10px;
    width: 50%;
    text-transform: uppercase;
}

#page4 #chain-img {
    height: 250vh;
    width: 100%;
    position: absolute;
    top: 350%;
    transition: all ease-in-out 0.3s;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    /* background-color: red; */
    bottom: 0;
    overflow: hidden;
}


#chain-img #chain {
    top: .9%;
    position: absolute;
    right: -12%;
    transform: rotateX(13deg);
}

#chain-img #hand {
    position: absolute;
    top: 38%;
    transform: rotate(180deg);
    height: 25vw;
    right: -10%;
    z-index: 999;
}

#diamond {
    position: absolute;
    bottom: 46%;
    left: 29%;
    transform: rotate(-10deg);
}

#chani {
    position: absolute;
    bottom: 30%;
    left: 15%;
    transform: rotate(-15deg);
}

#circle {
    position: absolute;
    bottom: 40%;
    left: 5%;

}

#chain-img #p1 {
    position: absolute;
    width: 20%;
    transform: rotate(-10deg);
    left: 9%;
    top: 45%;
    letter-spacing: 1px;
    line-height: 25px;
}

#chain-img #p2 {
    position: absolute;
    width: 40%;
    transform: rotate(-10deg);
    left: 15%;
    top: 69%;
    letter-spacing: 1px;
}

#wheel {
    position: absolute;
    height: 50vw;
    right: 10%;
    top: 50%;
    z-index: 7;
}

#chain-img button {
    text-transform: uppercase;
    font-size: 1vw;
    border: 1px solid black;
    padding: 1.5vw 3vw;
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    right: 27%;
    top: 95%;
}

#chain-img button:hover {
    box-shadow: 0px 8px 8px rgb(252, 108, 252);
}

#speed {
    min-height: 230vh;
    width: 100%;
    /* background-color: burlywood; */
    position: absolute;
    top: 600%;
    bottom: 0;
    overflow-y: hidden;
}

#speed h3 {
    padding: 5vw;
    font-size: 2vw;
    text-align: center;
}

#speed #speedlimit {
    position: absolute;
    left: 40%;
}

#speed #chicken {
    position: absolute;
    left: 10%;
}

#speed #retro {
    position: absolute;
    left: 33%;
    top: 38%;
}

#mchani {
    min-height: fit-content;
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 59%;
    left: 10%;
}

#sec {
    height: fit-content;
    padding: 5vw;
    width: 100%;
}

#sec h3 {
    width: 100%;
    font-size: 2.5vw;
    height: 25%;
    padding: 1vw .5vw;
}

#sec p {
    width: 60%;
    text-align: left;
    margin-left: 9vw;
    font-size: 1.2vw;
    padding-bottom: 2vw;
}

#sec button {
    font-size: 1vw;
    border: 1px solid black;
    padding: 1.5vw .5vw;
    border-radius: 10px;
    width: 30%;
    text-transform: uppercase;
    margin-left: 9vw;
}

#sec button:hover {
    box-shadow: 0px 22px 22px rgb(252, 108, 252);
}

#footer {
    /* background-color: red; */
    margin-top: 9vw;
    height: 70vh;
    width: 100%;
    position: relative;
    bottom: 0;
    top: 700%;
    display: flex;
    justify-content: space-around;
    padding: 8vw 5vw 10vw 3vw;
    overflow: hidden;
    border-top: 1px solid #000;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer #rght {
    width: 70%;
    display: flex;
    gap: 100px;
}

#footer #rght a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.587);
    font-size: 1vw;
}

#footer #left {
    width: 50%;
    border-left: 1px solid #0000008a;
    padding-left: 1vw;
}

#left #mail {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5vw 8vw 5vw 2vw;
}

#left h2 {
    font-size: 3vw;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 3vw;
    line-height: 50px;
}

#left #mail p {
    width: fit-content;
    letter-spacing: 2px;
    border-bottom: 1px solid #0000005e;
    padding-bottom: 1vw;
    color: rgba(0, 0, 0, 0.418);
}

#left #mail button {
    padding: 1vw 1.5vw;
    font-size: 1.5vw;
    border-radius: 10px;
    border: 1px solid #000;
    margin-left: 5.5vw;
}

#left #mail button:hover {
    box-shadow: 0px 22px 22px rgb(252, 108, 252);
}

#end {
    height: 20vh;
    width: 100%;
    /* background-color: aquamarine; */
    position: relative;
    top: 690%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#end img {
    height: 2.3vw;
}

#end p {
    padding-top: 2vw;
    color: #000000b6;
}