

.nav-bar-custom{}
nav {
    width: 100%;
    height: 65vh;
    position: fixed;
    top: -87vh;
    z-index: 5000;
    background-color: #000000f2;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 100%;
    transition: all 650ms cubic-bezier(1,0,0,1);
}
nav.open {
    top: 0;
    border-radius: initial;
}
.nav-list {
    width: 32%;
    list-style: none;
    height: 50%;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
	margin: 55px auto;
	
	float: left;
}
.nav-list a {
  position: relative;
  text-decoration: none;
}

.nav-list a::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #2db8ff;
    transition: width 1s ease-in-out;
    margin: 0px auto;
}

.nav-list .elementor-button-icon {
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 1s;
  
  margin-top: 0px;
    position: fixed;
    margin-left: 10px;
}

.nav-list .elementor-button-text {
  transition: border 1s;
}

.nav-list a:hover::after {
  width: 150px;
}

.nav-list a:hover .elementor-button-icon {
    width: 25px;
    margin-top: 0px;
    position: fixed;
    margin-left: 10px;
}
.nav-list li {
    margin: 0px 10px;
	text-align: center;
}
.nav-link {
    /* font-family: cursive; */
    font-size: 24px;
    padding: 0.5rem;
    color: white;
}
.nav-link:hover, .nav-link:focus {
    color: #2db8ff;
}
.menu-toggler {
    position: absolute;
    top: 10px;
    right: 2rem;
    width: 2.5rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 6000;
    transition: all 650ms ease-out;
}
.menu-toggler.open {
    transform: rotate(-45deg);
}
.bar {
    background-color: #1697d9;
    width: 100%;
    height: 3px;
    border-radius: 0.8rem;
}
.bar.half {
    width: 50%;
}
.bar.top {
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.top {
    transform: rotate(-450deg) translateX(0.8rem);
}
.bar.bottom {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
.open .bar.bottom {
    transform: rotate(-450deg) translateX(-0.8rem);
}
@media screen and (max-width: 768px) {
    .nav-list {
        /*flex-direction: column;*/
    }
    li {
        margin: 2rem 0;
    }
    .nav-link {
    font-size: 18px;
}
}

@media screen and (max-width: 500px) {
  .nav-list {
    flex-direction: column;
    margin: 0;
    padding: 0;
	width: 100%;
} 
	li {
    margin: 0px;
}
.nav-link {
    padding: 5px 0px;
}
.pull-right {
    float: none; 
}
.menu-toggler {
    right: 1rem;
}
}

@media (max-width: 500px) {
.nav-bar-custom {
    margin-top: 30px;
    padding-left: 20px;
}
nav {
    height:auto;
}
}
