*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html{
    scroll-behavior: smooth;
}

:root{
    --bluu-color:#11679a;
}

body{
    text-transform: capitalize;
    font-family: 'Titillium Web', sans-serif;
}

ul{
    list-style: none;
    gap: 30px;
}

.contenar{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width:767px){
    .contenar{
    width: 750px;
    }
}


@media (min-width:992px){
    .contenar{
    width: 970px;
}

}


@media (min-width:1200px){
    .contenar{
    width: 1170px;
}

}

.head{
    margin: 15px;
    background-color: var(--bluu-color);
    border-bottom-left-radius: 20px 18px;
    border-bottom-right-radius: 20px 18px;
    border-top-right-radius: 20px 18px;
    border-top-left-radius: 20px 18px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.head .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-bottom: 2px solid #fff;
    
}
.head .top .logo{
    color: white;
    display: flex; 
    align-items: center;
    margin-bottom: 10px;
}
.head .top .logo img{
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.head .top .logo h1{
    margin: 0;
}
.head .top .link{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}
.head .top .link .icon{
    flex-wrap: wrap;
    width: 30px;
    display: none;
    cursor: pointer;
}
.head .top .link .icon span{
    width: 100%;
    height: 3px;
    background-color: black;
    margin-bottom: 5px;
    border-radius: 25%;
}
.x{
    transition: 0.5s;
}
.x .none{
    display: none;
}
.head .top .link .x span{
    transform: rotate(45deg);
    margin: -2px;
    transition: 0.5s;
}
.head .top .link .x span:last-child{
    transform: rotate(-45deg);
}
.head .top .link nav ul{
    display: flex;
}
.head .top .link nav ul li a{
    text-decoration: none;
    color: white;
    font: 20px;
    transition: 0.5s;
}
.head .top .link nav ul li a:hover{
    opacity: 0.5;
}
@media(max-width:767px){
    .head .top .link .icon{
        display: flex;
    }
    .head .top .link nav ul{
        display: none;
        position: absolute;
        background: #333;
        right: 0;
        width: 200px;
        height: 120px;
        top: 30px;
        padding: 10px;
        transition: 0.5s;
    }
    .head .top .link nav ul::before{
        content: "";
        position: absolute;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #333 transparent;
        top: -19px;
        right: 0;
    }
    .head .top .link nav ul li{
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }
}
.landing{
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}
.landing .text{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing .text p {
    color: white;
    line-height: 2;
    font-size: 19px;
}
.landing .img{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing .img img{
    width: 70%;
    border-radius: 50%;
}
@media(max-width:767px){
    .landing{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }   
    .landing .text{
        width: 100%;
        margin-bottom: 20px;
    }
    .landing .img{
        width: 100%;
    }
    .landing .img img{
        width: 80%;
    }
}
.about{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }

  .aboutus{
    width: 80%;
    box-shadow: 0 0 16px 0 black;
    padding: 0 20px;
    margin-top: 3em;
  }
  .aboutus h1{
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
  }

  .aboutus p{
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .mar{
    margin-bottom: 100px;
  }
  @media (max-width:767px){
    .aboutus{
      width: 90%;
    }
  }

  .saje{
    margin-top: -140px;
    padding-left: 20px;
    margin-bottom: 50px;
    color: #D7A05B;
}
 
