* {
    box-sizing: border-box;
    margin:0;
    padding:0;
    letter-spacing: 0.5px;
  }
  

  /* Add a gray background color with some padding */
  body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size:20px;
    background: #f1f1f1;
  }


  .topdiv{
      padding:10px;
      margin-top:50px;
      margin-left:10px;
  }

  .topdiv h2{
    font-size: 20px;
    color:rgb(7, 78, 90);
  }
  
  
  /* Header/Blog Title */
  .header {
    font-size: 40px;
    text-align: center;
    background: green;
    height: 30vh;
    max-width:100%;
  }
  
  .header img{
    width:100%;
    height:100%;
    object-fit:cover;
    margin-top: 0px;
    
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {   
    float: left;
    width: 75%;

  }
  .leftcolumn .card h2{
    color:#011836;
 
  font-size:25px;
  
  padding:10px;
  }

  .leftcolumn .card p{
    color:rgb(12, 1, 1);
    margin-left: 20px;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
  }
  
  .rightcolumn .card .fakeimg img{
    width:50px;
    height:50px;
    
  }
  
  /* Fake image */
  .fakeimg {
    background-color: #aaa;
    max-width: 100%;
    border-radius: 20px;
    height:100%;
    
  }
  
  .nocolor{
    background-color:#fcf9f9;
    margin-top:10px;
    padding:20px;
  }
  
  .recent{
    display:flex;
    margin-bottom: 0px;
    background-color:white;
    color:grey;
    font-weight:bolder; 
    
  }

  .recent .manage{
    margin-top:10px;
    text-transform: uppercase;
  }
  
  
  .recent a{
    text-decoration: none;
    padding:20px 20px 20px 10px;
    position: relative;
    
    color:rgb(0, 25, 49);
    
  }

  .recent i{
    align-self:center;
    font-size:15px;
    font-weight:bold;
    animation: icon 1.5s infinite forwards;
    margin-left:20px;
  }

  @keyframes icon{
    0%,100%{
      transform: translate(0px);
    }
    50%{
      transform: translate(3px);
    }
  }

  .recent a:hover{
    border-radius:15px;
    border: 1px solid rgb(0, 25, 49);
    color:brown;
    padding-left:20px;
  }

  
  
  .fakeimg img{
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 20px;
    
  }
  /* Add a card effect for articles */
  .card {
     background-color: white;
     padding: 20px;
     margin-top: 20px;
  }
  
  .seapcard{
    height:auto;
    text-align:center;

    
  }
  
  .seapcard h2{
    padding-left:20px;
    color:#011836;
    font-family:"Merriweather Sans", sans-serif;
    font-size:25px;
    letter-spacing:-1px;
    padding:10px;
  }
  
  .rightcolumn .card .fakeimg .seapmfb{
   width:100%;
   height:100%;
    
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  
  
  h2{
      color: rgb(0, 25, 49);
      font-size: 20px !important;
      font-weight: bold;
      
  }
  
  h5, p{
    margin-bottom:10px;
    color:rgb(116, 109, 109);
    line-height: 35px;
    word-spacing: 1px;
    
    
  }
  

  
  .footer .footer-content .footer-section p{
    color:white;
  }
  .socialshare{
    margin-top:20px;
    margin-bottom: 0px;
    padding:0px;
    
  }
  
  .socialshare h1{
    font-size:25px;
  
  }
  .socialshare .social li{
                 list-style:none;
                 margin: 0px;
                 display: inline-block;
                 font-size:50px;
                 padding:0px 20px 0px 0px;
                 color:brown;
                 
                 border-radius:50%;
  
               }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }

    .prodts{
      flex-direction:column;
      
     
    }

    .prodts .pcard{
      width:100%;
    }
   
  }





.bannerb {
    position: relative;
    width:100%;
    height: 12vh;
    background: #3475ca;
    display:flex;
    justify-content:center;
    align-items:center;
}


.bannerb header a img{
    width:100px;
    height:100px;
    padding:20px;
    opacity:1;
    
}

.bannerb header{
    position: absolute;
    top: 0;
    left:0;
    width:100%;
    padding: 40px 100px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

.bannerb header ul{
    display:inline-flex;
    list-style: none;
    vertical-align: middle;
    
}

.bannerb header ul li{
    font-size:1.1rem;
    padding:15px;
    color:white;
}


.bannerb header ul li a{
    text-decoration:none;
    color:white;
    transition: all 0.2s ease-in-out;
    cursor:pointer;
}

.bannerb header ul li a:hover
		{
			
            color:#173077;
            border-radius: 10px;
            padding:10px;
            width:100%;
		}

.bannerb header ul li a:active{
            color:lightpink;
            background:#092b88;
            width:125px;
            border-right: 5px solid purple;
        }