html {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    width: 100vw;
    margin: 0;
    overflow-x: hidden;
}
.outer{
    height: calc(100lvh - 6rem);
    display: flex;
    flex-direction: column;
    overflow: auto;
    overflow-x: hidden;
}

.header{
    width: 100%;
    /*position: fixed;*/
    height: 6rem;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}
.header .logo-holder {
    margin-left: 3rem;
}

.header .buttons {
    margin-right: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header .buttons .button {
    width: 5rem;
}

.nav {
    cursor: pointer;
    display: flex;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav div:hover {
   text-decoration: underline;
}

.button {
    background-color: #01C1DE; /* Darker shade on hover */
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 5rem;
    border: solid 1px #01C1DE; /* Remove border */
    height: fit-content;
    align-items: center;
    display: flex;
    justify-content: center;
    /*transition: background-color 0.3s;*/
}
.button span {
    font-weight: 700;
    text-wrap: nowrap;
}
 .white{
    background-color: white; /* Darker shade on hover */
}
 .button.white span {
     color: #01C1DE;

 }

.button span {
    color: white;
    font-size: 1rem;
}

.home {
    display: flex;
    flex-direction: column;
}


.mobile-menu {
    overflow: hidden;
    position: absolute;
    background-color: white;
    width: 100svw;
    height: 100svh;
    z-index: 5;
    font-size: 4rem;
    font-weight: 700;
}

.mobile-menu .button{
    width: 90% !important;
}

.x-holder img {
    height: 5rem;
    margin-right: 5rem;
    position: relative;
    margin-top: 7rem;
}

.haburger-button {

}

.mobile-menu div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.x-holder {
    display: flex;
    width: 100%;
    justify-content: end !important;
}

.mobile-menu .logo-holder img {
    height: 10rem;
}

.mobile-menu .buttons-holder{
    flex-direction: column;
    margin: 5rem
}

.hamburger-button {
    display: none;
}

@media screen and (max-device-width: 500px) {
    .hamburger-button {
        display: unset;
    }
    .hamburger-button {
        height: 5rem;
        margin-right: 5rem;
        position: relative;
        bottom: -30px;
    }

    .logo-holder img {
        height: 10rem;
    }
    .header {
        height: 16rem;
    }
    .outer{
        height: calc(100svh - 16rem);
    }

    .header .buttons {
        display: none;
    }
}

