 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background-color: #FFFFFF;
 }

 .logo {
     background-color: rgb(255, 255, 255);
     height: 90px;
     box-shadow: 0px 1px 10px #999;
 }

 .logo a {
     text-decoration: none;
     color: rgb(0, 0, 0);
     display: inline-block;
     padding: 8px;
     font-size: 14px;
 }

 .logo a.active {
     border: 0.2px solid #dedede;
 }

 .logo {
     padding: 1.3rem;
     text-align: center;
     position: fixed;
     width: 100%;
 }

 .logo .icon {
     font-size: 23px;
     margin-right: -10px;

 }

 .logo .items {
     position: relative;
     margin-top: -3rem;
     text-align: end;
 }

 .items .icon {
     position: relative;
     top: 4px;
 }

 .back-icon{
    position:fixed;
    margin-top: 1.5rem;
    margin-left: -2rem;
    z-index: 1;
}
.back-icon a{
    text-decoration: none;
}

.back-icon a, i{
    font-size: 1.7rem;
    padding: 1.5rem;
    color: black;
}

 .menu {
     background-color: #FBFBFB;
     width: 100%;
     text-wrap: nowrap;
 }

 .banner img {
     width: 100%;
     height: 100%;
     padding: 1rem;
     border-radius: 1.7rem;
     margin-top: 6rem;

 }

 .banner-title {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
 }

 .banner .circle {
     font-size: 1rem;
     color: #004819;
 }

 .banner h1 {
     text-align: center;
     color: #004819;
     margin-top: -2rem;
 }

 .items-2 {
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;


 }

 .items-2 .box {
     width: 30%;
     height: auto;
     padding: 1rem;
     background: white;
     margin: 1rem;
     text-align: center;
     border-radius: .8rem;
     box-shadow: 0 0 8px #999;

 }

 .box img {
     width: 100px;
     height: 90px;
     object-fit: cover;
 }

 .items-2 a {
     color: black;
     text-decoration: none;
 }

 @media only screen and (min-width: 600px) {
     .items-2 .box {
         width: 33%;
     }
 }

 @media only screen and (max-width: 600px) {
     .items-2 .box {
         width: 40%;
     }
     .items-2 .box h2{
       font-size: 10px;
    }
     .items a{
        margin-top: .8rem;
        font-size: 11px;
        margin-left: -.8rem;
    }
    .logo img{
        margin-top: -.4rem;
        width: 140px;
    }
 }
