@charset "utf-8";
/* CSS Document */
*
{
	box-sizing: border-box;
	--redColor: rgba(235,12,16,1.00);
	--yellowColor:  rgba(220,224,20,1.00);
	--orangeColor: rgba(221,142,0,1.00);
	--etherialBlue:  rgba(9,72,64,0.65);
	--greenColor: green;
  --shadowOutline:  1px 1px 1px rgb(0, 0, 0),-1px -1px 1px rgb(0, 0, 0),-1px 1px 1px rgb(0, 0, 0),1px -1px 1px rgb(0, 0, 0), -2px -2px 2px rgb(0, 0, 0), 2px 2px 2px rgb(0, 0, 0), 2px -2px 2px rgb(0, 0, 0), -2px 2px 2px rgb(0, 0, 0);
}
.readmore {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    width: 100%;
  /*  border: solid 5px #FFFFFF;
  */color: var(--yellowColor);	
    border-radius: 4px;
    padding: 6px 6px 6px 6px;
    transition:max-height 0.15s ease-out;
  
  }
  
  .readmore-text
  {
      overflow: hidden;
      text-align: center;
      object-position: center;
      color: var(--yellowColor);
      text-shadow:  1px 1px 1px black, 2px 2px 2px black,3px 3px 3px black;
      font-size: 1.125rem;
      font-size: clamp(0.9375rem, 1.125rem + 0.546448087431694vw, 3rem);
  }
  
  .readmore-text.fade
  {
  
  -webkit-mask-image: linear-gradient(to bottom,black  0% ,transparent 20% 100% ); mask-image: linear-gradient(to bottom,black  0% ,transparent  20% 100%);
  background-position: 0% 50%;
  background-size: 100% 50%;
  }
  .readmore.expand{
    max-height: 5000px !important;
    transition:max-height 0.35s ease-in;
      padding-bottom: 5vh;
  }
  
  .readmore-link{
      z-index: 2;
    width:auto;
    position: absolute;
  
    left: 50%;
    transform: translate(-50%,-3px);
    bottom: 30%;
    
    text-align: center;
    background-color: #060606;
    color: var(--redColor);
    border: solid 2px #5B5B5B;
    border-radius: 6px;
    font-weight:bold;
    font-size:16px;
      padding: .3em;
  /*  mask-image: linear-gradient(to bottom, transparent, black); -webkit-mask-image: linear-gradient(to bottom, transparent,black);
  */  cursor: pointer;
  }
  
  .readmore-link.expand {
          color: var(--greenColor);
  
    position: absolute;
    bottom: 0px;
    background-image: none;
    
  /* padding-top:10px;
   height:20px;
  */}
  
  .readmore-link:after {
    content:"Read more";
      color: var(--redColor);
  }
  /*.readmore-link p
  {
      all:initial;
  }*/
  .readmore-link.expand:after{
    content:"Read less";
      color: var(--greenColor);
      
  }
  .readmore-block {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    width: 100%;
  /*  border: solid 5px #FFFFFF;
  */color: var(--yellowColor);	
    border-radius: 4px;
    padding: 6px 6px 6px 6px;
    transition:max-height 0.15s ease-out;
  
  }
  
  .readmore-block-item
  {
      overflow: hidden;
      text-align: center;
      object-position: center;
      color: var(--yellowColor);
      text-shadow:  1px 1px 1px black, 2px 2px 2px black,3px 3px 3px black;
      font-size: 1.125rem;
      font-size: clamp(0.9375rem, 1.125rem + 0.546448087431694vw, 3rem);
  }
  .readmore-block.expand{
    max-height: 5000px !important;
    transition:max-height 0.35s ease-in;
      padding-bottom: 5vh;
  }
  
  .readmore-block-link{
      z-index: 2;
    width:10ch;
    position: absolute;
  white-space: nowrap;
    left: 50%;
    transform: translate(-50%,-3px);
    bottom: 30%;
    
    text-align: center;
    background-color: #060606;
    color: var(--redColor);
    border: solid 2px #5B5B5B;
    border-radius: 6px;
    font-weight:bold;
    font-size:16px;
      padding: .3em;
  /*  mask-image: linear-gradient(to bottom, transparent, black); -webkit-mask-image: linear-gradient(to bottom, transparent,black);
  */  cursor: pointer;
  }
  
  .readmore-block-link.expand {
          color: var(--greenColor);
  
    position: relative;
    
 
    background-image: none;
    
  /* padding-top:10px;
   height:20px;
  */}
  
  .readmore-block-link:after {
    content:"See more";
      color: var(--redColor);
  }
  /*.readmore-link p
  {
      all:initial;
  }*/
  .readmore-block-link.expand:after{
    content:"See less";
      color: var(--greenColor);
      
  }
  @media screen and (min-width:600px)
{
	.readmore-link{
		display: none;
	}
	.readmore-text.fade{
	  -webkit-mask-image: linear-gradient(to bottom,black  0% ,black 10% 100% ); mask-image: linear-gradient(to bottom,black  0% ,black  10% 100%);
	}
	.readmore
	{
		width:100%;
		  max-height: 5000px !important;
	}
    .readmore-block-link{
		display: none;
	}
    .readmore-block
	{
		width:100%;
		  max-height: 5000px !important;
	}
}