* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/main-bg.jpg);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 0;
}

.top-logo {
    margin-bottom: 30px;
}

.second-title {
    color: #fff;
    text-align: center;
    /* width: 60%;
    margin: 0 auto; */
}

.second-title h1 {
    font-size: 70px;
    font-family: serif;
    text-align: center;
    color: #fcc133;

}

section,
footer {
    padding: 60px 0;

}

.second-sec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/sec-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 2;
}

.intro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/sec-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 80vh;
    /* object-fit: contain; */
    padding: 20px;
    background-image: url(../images/about-sec.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* border-radius: 10px; */
}

.invest-img {
    /* padding: 20px; */
    padding-top: 10px;
    height: 70%;
    width: 100%;
    object-fit: contain;
    /* margin-bottom: 20px; */
}

.about-desc {
    padding: 20px;
    color: #fff;
}

.about-desc h2 {
    color: #fcc133;
    font-size: 50px;
    font-family: serif;
}

.third-sec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/third-sec.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: 3;
    position: relative;
}

.investing-sec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/sec-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 4;
}

.sec-title {
    color: #fcc133;
    font-size: 60px;
    font-family: serif;
    width: 80%;

}

.cart {
    position: relative;
}

.cart p {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 10px;

}

.cart-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.cart-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.fourth-sec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/fourth-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: 5;
    position: sticky;
    top: 0;
}

.p-dream-house {
    font-size: 16px;
}

.footer-sec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/sec-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80vh;
    position: sticky;
    top: 0;
    z-index: 6;
}

.footer-bg {
    position: absolute;
    top: 0;
    width: 100%;
}

.footer-bg img {
    width: 100%;
    position: absolute;
    top: 0;
}


.ocean {
    height: 80px;
    /* change the height of the waves here */
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

.wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23000000B2'/%3E%3C/svg%3E");

    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.footer-content {
    color: #fff;
}

.g-contact a {
    color: #fff;
    text-decoration: none;
}

.social a {
    color: #fff;
    font-size: 30px;
    padding: 0 10px;
}

.form-group {
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}

.form-group label {
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 7px 10px;

}

button {
    width: 80%;
    margin: 10px 10%;
    padding: 8px 0;
    outline: none;
    border: none;
    background-color: #fcc133;
    font-size: 20px;
    font-weight: 600;
}

.invest-text {
    text-transform: capitalize !important;
}

@media screen and (max-width:1000px) {
    .second-title h1 {
        font-size: 50px;
        font-family: serif;
        text-align: center;
        color: #fcc133;

    }

    .second-sec,
    .investing-sec,
    .third-sec,
    .footer-sec,.intro {
        height: fit-content;
        position: relative !important;
    }

    .cart {
        margin: 10px 0;
    }

    .fourth-sec {
        position: sticky;
        top: -20%;


    }

    .sec-title {
        font-size: 40px;
        width: 100%;
    }

    .footer-sec {
        margin-top: 100px;
    }

    .about-desc h2 {
        font-size: 40px;
    }

    form {
        margin-top: 20px;
    }

    .g-contact {
        width: 80%;
        margin: 0 auto;
    }

    .home {
        height: 100vh;
        position: relative;
    }

    .invest-img {
        /* padding: 20px; */
        padding-top: 10px;
        height: 100%;
        width: 100%;
        object-fit: contain;
        /* margin-bottom: 20px; */
    }
    .list{
        margin-bottom: -10px;
    }
    
    .list-ul{
        padding-bottom: 20px !important;
    }
}

#triangle-up {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
}

.list span {
    display: block;
}

.list {
    display: flex;
    align-items: start;
    gap: 20px;
    color: #fff;
    flex-direction: column;
    font-size: 30px;
    color: #fcc133;
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-ul li {
    color: #fff !important;
    list-style: none;
    padding: 10px 0;
    /* font-size: 18px; */
}

.list-ul {
    padding: 0;
    margin: 0;
}

.text-colr {
    color: #fcc133;
}