* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
    scroll-behavior: smooth;
}

.wrapper {
    width: auto;
    height: 230vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 300, 0, 0.6)), url("");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
    .wrapper {
        width: auto;
        height: 550vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 300, 0, 0.6)), url("");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        backdrop-filter: opacity(80%);
    }
}

.Container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    flex-direction: row;
    flex-grow: 2%;
    margin-inline-end: initial;
    opacity: 1;
    z-index: 9999;
}

.logo {
    margin: -3.5%;
}

.menu {
    display: inline-block;
    line-height: 80px;

}

.menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.menu ul li {
    display: inline-block;

}

.menu ul li a {
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: black;
    border: 1.5px solid transparent;
    border-radius: 4px;
    padding: 10px 15px;
    transition: 0.5s ease;

}

.menu ul li a:hover {
    border-color: black;
}



/* FOOTER */
footer {
    background-color: rgba(34, 34, 34, 0.9);
    color: #fff;
    padding: 0px 0;
}

.wrapper1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}

.wrapper1 p {
    font-size: 12px;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    flex: 0 0 100%;
}

.wrapper1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    margin-left: 10px;
    font-size: 10px;
}

.wrapper1 a:hover {
    text-decoration: underline;
    transition: all 0.9s ease-in-out;
    color: rgb(75, 214, 63);
}

.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 950px;
    margin-top: 100px;
}



@media only screen and (max-width: 768px) {
    .container1 {
        justify-content: center;
        margin-top: 100px;
    }

    .service {
        margin: 5px 0;
    }

    .service:nth-child(even) {
        margin-left: 10px;
    }

    .header {
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        height: 250px;
        /* adjust the height as needed */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        font-weight: bold;
        margin-top: 50px;
    }
}


#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FE0944, #ff6d6d);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 25px;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease-out;
    font-family: 'Montserrat', sans-serif;
}

#chat-button:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    #chat-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(45deg, #FE0944, #ff6d6d);
        color: white;
        border: none;
        border-radius: 20px;
        padding: 5px 25px;
        font-size: 24px;
        cursor: pointer;
        z-index: 9999;
        transition: transform 0.2s ease-out;
        font-family: 'Montserrat', sans-serif;
    }

    #chat-button:hover {
        transform: translateY(-5px);
        cursor: pointer;
    }
}


.header {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-weight: bold;
}


.tos-column {
    margin: 0 auto;
    max-width: 1000px;
    text-align: left;
    margin-top: 100px;
}

@media only screen and (max-width: 768px) {
    .tos-column {
        margin: 0 auto;
        max-width: 270px;
        text-align: left;
        margin-top: 250px;
    }
}