* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "montserrat", ui-sans-serif;
    color: #fff;
}

*::selection {
    background-color: white;
    color: #95c11e;

    html body {
        height: 100%;
        width: 100%;
    }

}

#cursor {
    height: 20px;
    width: 20px;
    background-color: #95c11e;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
}

#cursor-blur {
    height: 500px;
    width: 500px;
    background-color: rgba(150, 193, 30, 0.3);
    border-radius: 50%;
    position: fixed;
    filter: blur(80px);
    z-index: 9;
}

#nav {
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 150px;
    gap: 80px;
    position: fixed;
    justify-content: flex-start;
    z-index: 999;
}

#nav img {
    height: 95px;
}

#nav h4 {
    text-transform: uppercase;
    font-weight: 500;
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}

#main {
    position: relative;
    background-color: rgba(0, 0, 0, 0.356);
}

#page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 99;
}

#page1 h1 {
    font-size: 70px;
    font-weight: 900;
    margin-top: 80px;
    position: relative;
}

#page1 h1::before {
    content: "EXPLORE. APPRECIATE. BELONG.";
    position: absolute;
    color: #000;
    top: -4px;
    left: -4px;
    -webkit-text-stroke: 2px #b7eb27;
    z-index: -1;
}

#page1 h2 {
    font-size: 30px;
    font-weight: 800;
    color: #b7eb27;
    margin-top: 10px;
    margin-bottom: 30px;
}

#page1 p {
    font-size: 17px;
    font-weight: 500;
    line-height: 35px;
    color: #ffffff;
    width: 50%;
}

#page2 {
    min-height: 100vh;
    width: 100%;
}

#scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;

}

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

#scroller-in {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller h4 {
    display: inline-block;
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: montserrat, sans-serif;
    margin-right: 10px;
    color: black;
    transition: all linear 0.3s;
    -webkit-text-stroke: 2px #b7eb27;
}

#scroller h4:hover {
    color: #b7eb27;
}

@keyframes scroll {
    from {
        transform: translate(0)
    }
    to {
        transform: translate(-100%);
    }
}

#about-us {
    height: 40vh;
    width: 100%;
    display: flex;
    padding: 0 50px;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 99;
    margin-top: 150px;
    margin-bottom: 100px;
}

#about-us img {
    height: 220px;
    width: 220px;
    border-radius: 10px;
    object-fit: cover;
}

#about-us-in {
    width: 50%;
    text-align: center;
}

#about-us-in h3 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

#about-us-in p {
    font-size: 20px;
    line-height: 40px;
    color: #bcbcbc;
}

#about-us-in-name p {
    text-align: center;
    margin-top: 15px;
    color: #b7eb27;
}

#cards-container {
    height: 60vh;
    width: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
    z-index: 99;
}

.card {
    height: 100%;
    width: 28%;
    background-color: #b7eb27;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#card1 {
    background-image: url("Assets/card1.jpg");
}

#card2 {
    background-image: url("Assets/card2.jpg");
}

#card3 {
    background-image: url("Assets/card3.jpg");
}

.overlay {
    height: 100%;
    width: 100%;
    background-color: #95c11e;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 120px;
    text-align: left;
    opacity: 0;
    transition: all ease 0.6s;
}

.overlay h4 {
    color: black;
    font-size: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.overlay p {
    color: black;
    line-height: 30px;
}

.card:hover .overlay {
    opacity: 1;
}

#green-div {
    height: 30vh;
    display: flex;
    margin-top: 100px;
    align-items: center;
    background: linear-gradient(to left bottom, #047E30, #b7eb27);
    justify-content: space-between;
}

#green-div h4 {
    width: 45%;
    color: black;
    line-height: 40px;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
    font-style: oblique;
    text-transform: uppercase;
    z-index: 99;
}

#dot-left {
    height: 100%;
    object-fit: cover;
    width: 14%;
    transform: scaleX(-1);
    margin-left: 25px;
}

#dot-right {
    height: 100%;
    object-fit: cover;
    width: 14%;
    margin-right: 25px;
}

#page3 {
    height: 80vh;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#page3 > p {
    font-size: 22px;
    font-weight: 800;
    width: 57%;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
}

#page3 img {
    position: absolute;
    height: 60px;
}

#page3 #colon1 {
    left: 15%;
    top: 25%;

}

#page3 #colon2 {
    bottom: 28%;
    right: 15%;

}

#page4 {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.elem {
    height: 45%;
    width: 25%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 100;
}

.elem h2 {
    height: 100%;
    background-color: #95c11e;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
    width: 100%;
    font-size: 40px;
    font-weight: 800;
    transition: all ease 0.5s;
}


.elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
}

.elem:hover h2 {
    color: white;
    background-color: transparent;
}

.elem:hover img {
    scale: 1;
}

#page4 h1 {
    font-size: 80px;
    position: absolute;
    top: -8%;
    font-weight: 900;
    color: black;
    -webkit-text-stroke: 2px #ffffff;
}

#footer {
    height: 40vh;
    width: 100%;
    background: linear-gradient(to left bottom, #047E30, #95c11e);
}