header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    /*
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    */
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled{
    padding: 10px 60px;
}

.logo{
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #ffffffa6;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0px !important;
}

nav ul li{
    display: inline-block;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

nav ul li a:hover {
    color: white;
    text-decoration: none !important;
}

nav ul li a.active {
    color: white;
    font-weight: bold;
}

nav ul li a.active::before,
nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #000;
}

nav ul li a.active::before {
    top: -6px; /* Line above */
}

nav ul li a.active::after {
    bottom: -6px; /* Line below */
}

.auth{
    display: flex;
    gap: 15px;
}

.auth a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}

.whats-btn{
    border: 1px solid #ffffff73;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.signup-btn{
    background: #d5d5d573;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.logo-img{
    height: 46px;
}

.mobile-menu-button{
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 79px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 1;
    border: 2px solid #3880d9;
    text-align: center;
    padding-top: 5px;
    cursor: pointer;
}

.mobile-menu-icon{
    font-size: 220%;
    color: #2863ab;
}




/*---------------------Menu mobile styles---------------------*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999999999999999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.mobile-background-body{
    height: 100%;
    position: absolute;
    width: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-content-nav{
    background-color: white;
    height: 100%;
    width: 260px;
    z-index: 1;
    position: absolute;
}

.mobile-close-nav{
    position: absolute;
    content: white;
    color: white;
    margin-left: 10px;
    margin-top: 10px;
    z-index: 1;
}

.mobile-background-content{
    background: url(../../images/menu/background.jpg);
    height: 217px;
    background-size: cover;
    background-position: center;
}

.mobile-image-contianer{
    position: absolute;
    width: 100%;
    height: 186px;
}

.mobile-image-logo{
    height: 145px;
}

.mobile-focus{
    background-color: #0000008c;
    width: 100%;
    height: 216px;
}

.mobile-line-style{
    background: linear-gradient(90deg, rgba(37,122,20,1) 32%, rgba(0,185,255,1) 100%);
    width: 266px;
    height: 3px;
    position: absolute;
    top: 183px;
    left: -4px;
    transform: rotate(11deg);
}

.mobile-triangle-bottom-design{
    width: 0;
    height: 0;
    border-right: 111px solid #f0ad4e00;
    border-top: 30px solid #f0ad4e00;
    border-left: 149px solid #ffffff;
    border-bottom: 22px solid #ffffff;
    position: absolute;
    top: 165px;
    z-index: 1;
}

.mobile-menu-options{
    padding: 10px;
    padding-top: 1px;
    margin-top: 20px;
}

.mobile-option{
    margin-bottom: 14px;
}

.mobile-icon-posisionated{
    float: left;
}

.mobile-icon{
    width: 40px;
    height: 40px;
    padding-left: 8px;
    padding-top: 6px;
    border-radius: 100%;
    box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
    border: solid 1px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #257a14, #05afdb);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px white inset;
}

.mobile-text-posisionated{
    margin: 0;
    padding-top: 10;
    padding-left: 60px;
        font-weight: 600;
}


.margin-mobile-ubication{
    margin-top: 20px;
}
/*---------------------Menu mobile styles---------------------*/