*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    scroll-behavior: smooth;
} 
body{ 
    min-height: 100vh;
    background: linear-gradient(hsl(235, 73%, 75%),#7597de);
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}
header .logo img{
    height:125px;
    width:105%;
    z-index: 2000;
    /* color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px; */
}
header ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li{
    list-style: none;
    margin-left: 20px;
}
header ul li a{
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}
header ul li a:hover,
header ul li a.active  
{
    background: #fff;
    color: #2b1055;
}
section{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top,#fff,transparent);
    z-index: 1000;
}
section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#mountMg, #mountFg , .max-width{
    z-index: 10;
    
}
#mountBg, #cloud3  {
    z-index:1;
}
#cloud1,#cloud2{
    z-index:100;
}
#sec{
     position: relative;
    padding: 100px;
    background:white;
}
/* home section styling */
.home .max-width{
    margin: auto 0 auto 30px;
}
.home .home-content{
    position: relative;
    left: 50px;
    text-align: center;
    background-color: rgba(233, 227, 227, 0.7);
    color:rgb(5, 5, 5);
    padding: 5px;
    width: 100vh;
    border-radius: 25px;
}
.home .home-content .text-1{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-2{
    font-size: 70px;
    font-weight: 600;
    margin-left: -3px;
    color: rgb(33, 52, 226);
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 6px 0;
}
.home .home-content .text-3 span{
    color:#dd4d33;
    font-weight: 600;
    font-size: 40px;
    text-shadow: 0px 2px black;
}
  
ul
{
    position:relative;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;

    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25); */
}
ul li
{
    list-style: none;
}
ul li a
{
    position: relative;
    color:rgb(14, 10, 10);
    text-decoration: none;
    display:inline-block;
    padding: 20px 30px;
    z-index:1000;
    backdrop-filter: blur(15px);
    border-radius: 30%;
}
ul li a ion-icon
{
    font-size: 2.5em;
    pointer-events: none;
    opacity: 0.5;
    transition: 0.25s;
}
ul li.active a ion-icon
{
    opacity: 1;
    /* color: red; */
}
#marker 
{
    position : absolute;
    top: 0;
    transition:0.5s;
    z-index: 1;
}
#marker::before
{
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width:50px;
    height: 40px;
    border-radius: 8px;
}
ul li:nth-child(1).active ~ #marker::before
{
    background: #5da6ff;
    box-shadow: 0 0 15px #5da6ff, 
    0 0 30px #5da6ff,
    0 0 45px #5da6ff,
    0 0 60px #5da6ff;
}
ul li:nth-child(2).active ~ #marker::before
{
    background: #5dff65;
    box-shadow: 0 0 15px #5dff65, 
    0 0 30px #5dff65,
    0 0 45px #5dff65,
    0 0 60px #5dff65;

}
ul li:nth-child(3).active ~ #marker::before
{
    background: #ef22f7;
    box-shadow: 0 0 15px #ef22f7, 
    0 0 30px #ef22f7,
    0 0 45px #ef22f7,
    0 0 60px #ef22f7;
}
ul li:nth-child(4).active ~ #marker::before
{
    background: #fc1919;
    box-shadow: 0 0 15px #fc1919, 
    0 0 30px #fc1919,
    0 0 45px #fc1919,
    0 0 60px #fc1919;
}
ul li:nth-child(5).active ~ #marker::before
{
    background: #e8f349;
    box-shadow: 0 0 15px #e8f349, 
    0 0 30px #e8f349,
    0 0 45px #e8f349,
    0 0 60px #e8f349;
}