*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: sans-serif;
    
}
::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar { width: 0 !important }

.container{
    position: fixed;
    top: 0 ;
    left:0;
    width: 100%;
    display: flex;
}
.container .sectionlayout{
    min-width: 100vw !important;
}
.container section{
    /* min-width: 100%; */
    /* min-width: 80%; */
    /* min-width: 1920 !important; */

    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height:100vh;
    background-color: #fffdff;
}

/* .container section:nth-child(2){
    background-color: #e2fcff;
}
.container section:nth-child(3){
    background-color: #d0eaff;
}
.container section:nth-child(4){
    background-color: #fce8f4;
} */


.container section .content{
    /* max-width: 1000px; */
    /* padding: 40px;
    text-align: center; */
}

.container section .content h2{
    font-size: 4em;
    color:#111;
}


.container section .content p{
    font-size: 1.5em;
    line-height: 1.4em;
    color:#111;
} 

@media(max-width:990px) {
    .container{
        position: absolute;
        display: flex;
        flex-direction: column;
        height: auto;
        transform: none !important;
    }
}

.selected{
    color:#8e795b !important;
    font-weight: 500 !important;
    /* background-color: black; */
}

.backimage{
    background-image: url('../image/backgroound.jpg'); 
    background-repeat:repeat;
    /* filter: sepia(0.2); */
}