html{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


p{
    color: rgb(37, 37, 37) ;
}
.color{
    font-weight: 600;
    font-size: 16px;
    color: #068b39;
}


/*header*/

header{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    height: 80px;
    width: 100%;
    align-items: center;
    -webkit-box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.2); 
    box-shadow: 0px 4px 6px 1px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#logo-header{    
    z-index: 1;
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    height: 100%;
    align-items: center;
    align-content: center;
}
#logo-header:hover{    
    cursor: pointer;
}

#logo-img{
    height: 80px;
    width: 80px;
    transition: transform .7s ease-in-out;
}
#logo-img:hover{
    transform: rotate(360deg);
}

#logo-name{
    color: #000000;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}
span{
    font-weight: 600;
    font-size: 16px;
    color: #5BAF11;
}

/*navebar*/
#navbar{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    width: 70%;
}

#navbar li{
    justify-content: center;
    list-style: none;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    color: #9F7D56;
    text-transform: uppercase;

}
#navbar li a{
    text-decoration: none;
    font-size: 1.2vw;
}

#navbar li :after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    display: block;
    bottom: 20%;
}
#navbar li :hover::after {
    width: 100%;
    height: 2px;
    color: #9F7D56;
  }

#navbar li a:hover{
    color: #0cc753;
}
  /*navebar*/
#burger-menu{
    position: relative;
    right: 30px;
    display: none;
}

#navbar-menu{
    background-color: #ffffff;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#navbar-menu li{
    justify-content: center;
    list-style: none;
    height: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: column;   
    align-items: center;
    color: #5BAF11;
    z-index: 10;
}
/*button top*/
#top{
    z-index: 1000;
    display: none;
    width: 48px;
    height: 48px;
    position: fixed;
    bottom: 5px;
    right: 50px;
    padding: 0;
    opacity: .3;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.349);
    background-image: url(/ico/to_top_icon_215370.png);
}
#top:hover{
    opacity: .6;
}
/*footer*/
footer{
    z-index: 100;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #ffffff;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-top: solid 2px #b2b2b2;
}

.sm{
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sm a img:hover{
    opacity: 0.8;
}
footer a img{
    width: 32px;
    height: 32px;
    padding: 10px;
    color: #000000;
    
}

footer .credit, a{
    margin: 0px;
    text-decoration: none;
        color: #068b39;
}


/* media query for mobile*/

@media only screen and (max-width: 925px) {
    .section-main-img img{
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-top: 0px;
        width: 100%;
        height: 20%;
    }
    #top{
        opacity: 0;
    }
}

@media only screen and (max-width: 800px) {
    header{
        justify-content: space-between;
    }
    #navbar{
    display: none;
    width: 0px;
    }

    #burger-menu{
    z-index: 0;
    display: flex;
    width: 40px;
    height: 40px;
    }

    #navbar-menu{
    z-index: 10;
    border-top: solid 1px #1e984d37;
    display: none;
    top: 80px;
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-shadow:inset 0px 4px 6px 1px rgba(100, 100, 100, 0.2); 
    box-shadow:inset 0px 2px 6px 1px rgba(101, 101, 101, 0.2);
    animation: MoveUpDown 0.1s linear 1;
    }

    @keyframes MoveUpDown {
        0% {
          top: -60px;
        }
        100% {
          top: 60px;
        }
      }
}