
/* ******************************************* About ******************************************* */
.section-about
{
  width: 100%;
  padding: 0 20px;
  margin-bottom: 100px;
}
.section-about h2
{
  text-align: center;
  color: var(--color-h);
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 100px 0 50px 0;
}
.about-container
{
  max-width: 1200px;
  margin: 0 auto;
}
.about-container p
{
  padding-bottom: 20px;
}
.about-container p a
{
  color: var(--color-link);
  font-weight: 700;
}


/* ******************************************* Mission ******************************************* */
.section-mission
{  
  width: 100%;
  padding: 100px 30px;
  margin-bottom: 120px; 
  background-color: var(--color-main);
}
.mission-container
{ 
  max-width: 1000px;
  margin: 0 auto;
}
.mission-container h2
{
  color: #fff;
  text-align: left;
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin-bottom: 50px;
}
.mission-container h3
{
  color: #fff;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-weight: 700;
}


/* ******************************************* History ******************************************* */
.section-history
{
  width: 100%;
  margin: 0 auto 100px auto;
}
.section-history h2
{
  color: var(--color-h);
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.8rem;
  padding: 0 20px;
  margin-bottom: 50px;
}
.history-container
{
  max-width: 1200px;
  margin: 0 auto;
}
.history-sub-container
{
  display: grid;  
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  margin: 0 20px 40px 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.history-sub-container:last-of-type
{
  padding-bottom: 0;
  border-bottom: none;
}
.history-sub-container img
{
  width: 80%;
  height: auto;
  justify-self: center;
  align-self: center;
  margin: 20px 0;
}
.history-desc-container
{
  padding: 20px 30px;
  border-left: 1px solid #ccc;
}
.history-desc-container h3
{
  color: var(--color-h);
  font-size: 1.6rem;
  padding: 10px 0 10px 0;
}
.history-desc-container h4
{
  color: var(--color-h);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
}
.history-desc-container p
{
  padding: 30px 0;
}
.history-desc-container p a
{
  color: var(--color-link);
  font-weight: 700;
}


/* ************************************************************************************************************ */
/* ********************************************** RESPONSIVENESS ********************************************** */
/* ************************************************************************************************************ */
@media (hover: hover)
{
  /* About */
  .about-container p a:hover
  {
    text-decoration: underline;
    text-decoration-thickness: var(--link-line-thickness);
    text-underline-offset: var(--link-line-offset);
  }

  /* History */
  .history-desc-container p a:hover
  {
    text-decoration: underline;
    text-decoration-thickness: var(--link-line-thickness);
    text-underline-offset: var(--link-line-offset);
  }
}
@media only screen and (max-width: 768px) 
{
  /* Mission */
  .section-mission
  {
    padding: 100px 20px;
  }
  .mission-container h2
  {
    text-align: center;
  }
  .mission-container h3
  {
    text-align: center;
  }

  /* History */
  .section-history
  {
    margin-bottom: 0;
  }
  .history-sub-container
  {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .history-desc-container
  {
    border-left: none;
  }
}
@media only screen and (max-width: 480px) 
{
  /* History */
  .history-sub-container img
  {
    width: 100%;    
    margin: 20px 0 0 0;
  }
  .history-desc-container
  {
    padding: 20px 0;
  }
}

