/* start Global Ruls */
:root {
    --main-color:#66906a;
    --main-color-alt:#e87777;
    --main-transition:0.3s;

}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Cairo", sans-serif;
}
a{
    text-decoration:none ;
}
ul{
    list-style: none;
    margin:0;
    padding:0;
    
}
 .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/*Small*/
@media(min-width:786px){
    .container{
        width:750px ;
    }
}
/*Medium*/
@media(min-width:992px){
    .container{
        width:970px ;
    }
/*large*/
@media(min-width:1200px){
    .container{
        width: 1170px;
    }
}


}

/* End Global Ruls */
/*Start Header*/
.header{
    background-color:white;
    position: relative;
    -webkit-box-shadow: 0 0 10px #569276;
    -moz-box-shadow:0 0 10px #569276;
    box-shadow: 0 0 10px #569276;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.header .logo{
    color: var(--main-color);
    font-size: larger;
    font-weight: bold;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
@media(max-width: 767){
    .header .logo{
        width:100%;
        height:40px;
    }
}

a {
    text-decoration: none;
}
.header .main-nav{
    display: flex;
}
@media (max-width: 797px) {
.header .main-nav{
    margin: auto;
 }
}

.header .main-nav > li > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: relative;
    color: #66906a;
    padding: 0 30;
    transition: var(--main-transition);
    overflow: hidden;

}
@media (max-width: 797px) {
    .header .main-nav > li > a{
        padding:10px;
        font: size 14px;
        height: 40px;
    }
}

.header .main-nav > li > a::before{
    content:"" ;
    position: absolute;
    width:100%;
    height: 4px;
    background-color: #e87777;
    top: 0;
    left: -100%;
    transition: var(--main-transition);
}

.header .main-nav > li > a:hover{
    color:var(--main-color);
    background-color:#fafafa ;
}

.header .main-nav > li > a:hover::before{
    left: 0;
}



 
/*End Header*/
/*start landing*/
.landing {

}
.landing::before {
    content:"" ;

}
.landing .container {
}
.landing .image img{
    width: 1150px;
    max-width: 100% ;
    height: 300px ;
}
/*end landing*/