.header{
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    min-width: 300px;
    min-height: 75px;
    /* width: calc(100% - 20px); */
    /* margin: 15px; */
    /* border-radius: 10px; */
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 23%);
    z-index: 1000;
}

.mobile-home-page-header {
    padding: 30px 30px 50px 30px;
    min-height: 300px;
    background-position-y: 64%;
}

.mobile-home-page-header .header-buttons {
    margin-top: auto;
}

#magic-logo {
    width: 230px;
}

.rounded {
    position: fixed;
}

.rectangle {
    position: fixed;
    margin: 0;
    width: 100%;
    border-radius: 0;
}

.circle {
    width: 75px;
    min-width: auto;
    border-radius: 50%;
    position: fixed;
    right: 0;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.nav-item {
}

.hidden-nav-item {
    display: none;
}

.nav-link {
    font-weight: 400;
    color: #475569;
}

.nav-link:hover{
    color: #482ff7;
}

.nav-logo {
    width: 200px;
}

@media only screen and (max-width: 1020px) {
    .nav-menu {
        position: fixed;
        left: 100%;
        top: 10px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition-duration: 0.3s;
        transition-property: all;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin-top: 20px;
    }

    .nav-item:last-of-type {
        margin-bottom: 20px;
    }

    .hidden-nav-item {
        margin: -0.5em;
        width: 90%;
        height: 35px;
        display: none;
        justify-content: center;
        align-items: center;
        line-height: 40px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-content.visible {
        display: block;
    }
}

.dropdown-content.visible {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 0.8em;
    margin-top: 10px;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .bookable-service {
    background-color: rgb(210, 225, 245)
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }

  .drop-chevron {
    font-size: 90%;
  }