@font-face {
    font-family: mono;
    src: url(./Montserrat-VariableFont_wght.woff2);
}

@font-face {
    font-family: future;
    src: url(./Futura-Bold.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    font-family: mono;

}

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

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

#cursor-blur {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: fixed;
    background-color: #be90136d;
    filter: blur(50px);
    z-index: 9;

}

#nav {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4vw;
    gap: 2vw;
    position: fixed;
    z-index: 99;

}

#nav img {
    height: 5vw;
}

#nav a {
    text-decoration: none;
}

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

}

#nav i {
    display: none;
}

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

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

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

#page1 #arrow {
    height: 15vw;
    width: 15vw;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #BE9013;
    left: -2%;
    bottom: -2%;
    transition: all ease 0.6s;
}
#page1 #arrow i{
   font-size: 5vw;
   font-weight: 100;
}

#arrow:hover {
    transform: scale(0.8);
    background-color: #BE9013;
}

#page1 h1 {
    font-size: 6vw;
    text-transform: uppercase;
    position: relative;
    font-family: mono;
}

#page1 h1::before {
    content: "All. About. Our Home.";
    position: absolute;
    color: #000;
    top: -5px;
    left: -5px;
    z-index: -1;
}

#page1 h2 {
    font-size: 2vw;
    margin-top: 1vw;
    margin-bottom: 2vw;
}

#page1 p {
    font-size: 1.5vw;
    width: 50%;
    font-family: mono;
}

#page2 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

#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: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

#scroller h4 {
    display: inline-block;
    font-size: 6vw;
    -webkit-text-stroke: 2px #BE9013;
    color: transparent;
    font-family: future;
    margin-right: 10px;
}

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

#scroller a {
    text-decoration: none;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 10px));
    }
}

#about-us {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 3vw;
    position: relative;
}

#about-us img {
    height: 40vh;
    width: 20vw;
    border-radius: 10px;
    object-fit: cover;
}

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

#about-us-in h3 {
    font-size: 5vw;
    font-weight: 700;
    margin-bottom: 2vw;
}

#about-us-in p {
    font-size: 1.3vw;
    line-height: 1.5vw;
}

#cards-container {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.card {
    height: 90%;
    width: 23%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: all ease 0.6s;
}

.card h1 {
    bottom: 0;
    position: absolute;
    margin-left: 1vw;
}

#card1 {
    background-image: url(https://images.unsplash.com/photo-1625122563679-fb48c013836a?q=80&w=1372&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
}

#card2 {
    background-image: url(https://plus.unsplash.com/premium_photo-1669725687297-2ba01b6cfb7f?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}

#card3 {
    background-image: url(https://images.unsplash.com/photo-1472162072942-cd5147eb3902?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: 2%;
}

.overlay {
    height: 100%;
    width: 100%;
    background-color: #be9013;
    padding-top: 1.5vw;
    padding: 2vw;
    opacity: 0;
    transition: all ease 0.5s;
}

.overlay h4 {
    color: #000;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    margin-bottom: 1vw;
}

.overlay p {
    color: #000;
}

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

.card:hover h1 {
    display: none;
}

#green {
    margin-top: 2vw;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3vw;
    background: linear-gradient(to left bottom, #BE9013, #256F42);
}

#green h4 {
    font-size: 2rem;
    text-transform: uppercase;
    width: 45%;
    line-height: 2rem;
    text-align: center;
}

#green img {
    height: 60%;
    object-fit: cover;
    width: 20%;
}

#page3 {
    width: 100%;
    min-height: 100vh;
    /* background-color: #000; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

#page3>p {
    font-size: 1.5rem;
    font-weight: 500;
    width: 60%;
    line-height: 2.5rem;
    text-align: center;
    z-index: 10;
}

#page3 img {
    position: absolute;
    height: 100px;

}

#page3 #colon1 {
    left: 10%;
    top: 15%;
    z-index: 10;
}

#page3 #colon2 {
    right: 10%;
    bottom: 20%;
    z-index: 10;
}

#page4 {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 2vw;
    z-index: 10;
}

#page4 .elem {
    width: 26%;
    height: 70%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

#page4 .elem h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #BE9013;
    transition: all ease 0.4s;
}

.elem h2:hover {
    color: #000;
    opacity: 0;
}

.elem:hover img {
    scale: 1.5;
}

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

.elem:hover h1 {
    background-color: transparent;
}

#page4 h1 {
    font-weight: 900;
    top: -16%;
    position: absolute;
    font-size: 4rem;
    color: #000;
    -webkit-text-stroke: 1px #BE9013;
    font-family: futura;
}

#footer {
    height: 50vh;
    width: 100%;
    background: linear-gradient(to left bottom, #BE9013, #256F42);
}