body.pages {
	padding-top: 170px;
}

.module-charts {
  position: relative;
  padding: 7rem 0 3rem 0;
  background: #f5f7f8;
}

.container-charts {

}

/* title */
.module-charts h2{
  font-size: var(--font-size-t1); 
  margin-bottom: 5rem;
  text-align: center;
}


.module-charts .blocks{
  justify-content: space-between;  
  flex-wrap: wrap;
  display: flex;
}




  
/* block */
.module-charts .block{
  flex: 0 0 calc(50% - 4rem);
    margin: 0 2rem 4rem 2rem;
    padding: 3.4rem 3.4rem 2.9rem 3.4rem;
    color: #000;
    background: #fff;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
    transition: all .3s ease;
}

/* title */
.module-charts .block h3 {
    font-size: var(--font-size-t2); 
    text-align: center;
    margin: 0 0 2rem 0;
}



/*https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_js_lightbox*/



  /* The Modal (background) */
  .container-charts .modal {
    display: none;
    position: fixed;
    z-index: 1000000000;
    padding-top: 5rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.5);
    

  }
  
  
  /* Modal Content */
  .container-charts .modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 5rem;
    width: auto;
    height: auto;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .container-charts .close {
    color: #444;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }

  .container-charts .cursor{
    cursor: pointer;
  }
  
  .container-charts .close:hover,
  .container-charts .close:focus {
    color: #000;
    text-decoration: none;
  }
  
  /* Hide the slides by default */
  .container-charts .mySlides {
    display: none;
  }
  
 

/*https://www.cssscript.com/responsive-image-lightbox-javascript/*/




.container-charts .block-full{
  padding: 7rem 10rem 6rem 10rem;
  background: #fff;
  margin-bottom: 5rem;
  box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
}
.container-charts .block-full h3{
  text-align: center;
  margin: 0 4rem 5rem 4rem;
  line-height: normal;
  font-size: var(--font-size-t1); 
}




/* responsive */
@media (max-width: 1200px) {
  .container-charts .block-full{
    padding: 7rem 1rem 6rem 1rem;
  }
}

@media (max-width: 920px) {
	
	.module-charts .blocks{
		flex-direction: column;
	}

	.module-charts .block{
		margin: 0 0 2rem 0;
	}
}

@media (max-width: 600px) {
	.module-charts .block{
		padding: 2.9rem 3.4rem 2.9rem 3.4rem;
	}

	.module-charts .block h3{
		font-size: var(--font-size-t1-mobile); 
	}
  .container-charts .block-full h3{
    margin: 0 2rem 3rem 2rem;
    font-size: var(--font-size-t2-mobile); 
  }

  .container-charts .block-full{
    padding: 4.5rem 0.2rem 4rem 0.2rem;
    margin-bottom: 3rem;
  }
	
}


@media (max-width: 480px) {
  .container-charts .block-full{
    padding: 3.5rem 0.2rem 3rem 0.2rem;
    margin-bottom: 3rem;
  }
	
}
