*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    width: 100%;
    height: 80px;
    position: fixed;
  z-index: 999;
  top: 0;
  background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
}
.headSpacing{
    width: 100%;
    height: 80px;
    background-color: white;
}
.headItems{
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 24px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.headLogo{
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.headLogo img{
    height: 90%;
   
}
.headMenuIcon{
    width: fit-content;
    height:fit-content;
}
.headMenuIcon img{
    height: 24px;
   
}
.headMenuIcon svg{
    display: none;
   
}
   

.MenuLinks{
    width: 680px;
   
    color: rgb(73, 73, 73);
    height: 100%;
   
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}
.MenuLinks a{
    text-decoration: none;
    color: rgb(73, 73, 73);
    font-weight: bold;
    font-size: 20px;
    background-color: rgba(0,0,0,0);
    padding:8px;
}
.MenuLinks a:hover{
    background-color: rgba(0,0,0,0.05);
    padding:8px;
    border-radius: 4px;
}
.MenuLinksMob{
    display: none;

}
.minimizeIcon{
    display: none;
    

}


@media only screen and (max-width: 1100px) {
    .MenuLinks{
        display: none;
    }
    .headMenuIcon img{
        display: none;
    }
    .headMenuIcon svg{
        display: block;
        width: 25px;
       
    }
    header{
        height: 60px;
    }
    .headLogo img{
        height: 80%;
       
    }
    .headSpacing{
        
        height: 60px;
     
    }
    .minimizeIcon{
        display: block;
        margin-left: 150%;
    }
   
    .MenuLinksMob{
       
        min-width: 150px;
        width: 20%;
        max-width: 20px;
        height: fit-content;
        margin-right: 20px;
        background-color: white;
        position: fixed;
        top: 20px;
        right: 0px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: left;
        box-shadow: 0 0 15px 1px rgba(0,0,0,0.09);
        overflow: hidden;
        }
        .MenuLinksMob a{
            
            width: 100%;
        padding: 10px;
        text-decoration: none;
        color: rgb(73, 73, 73);
        font-weight: bold;
        font-size: 16px;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        
        
        }
        .MenuLinksMob a:hover{
            background-color: rgba(228, 228, 228, 0.2);
        }
        .MenuLinksMob img{
            margin-top: 10px;
            width: 15px;
            position: relative;
        }
        #menuLinkMob {
            display: none; /* Hide the mobile menu by default */
        }
        .headMenuIcon svg.active{
            background-color: rgb(243, 243, 243);
            border-radius: 5px;
           
        }
  }

  .samplebox2{
    width: 100%;
    height: 500px;
    background-color: red;
  }
  .samplebox1{
    width: 100%;
    height: 700px;
    background-color: rgb(255, 0, 234);
  }