@import url('/assets/tmp/template.css');

#section-head {
    width: 100%;
    padding-top: 4rem;
    margin: 4rem auto;
  }
  
  #directory {
    padding: .75rem 0;
  }
  
  #page-title {
    font-family: Lato-Light, Helvetica, sans-serif;
    font-size: 3rem;
    margin: 2rem 0 1rem 0;
    line-height: 1;
    color: var(--color-main);
  }
  
  #page-tagline {
    font-size: 2rem;
    font-family: Helvetica;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-highlight);
  }
  
  @media (max-width: 900px){
    #section-head {
      margin: 3rem auto 0rem auto;
      width: 95%;
    }
    
    #page-title {
      font-size: 2.8rem;
    }
  }

    /* ================================================================================================== */

p, ul {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: justify;
    font-weight: 200;
    margin-bottom: 1rem;
}

ul {
  padding-left: 1.5rem
}

li {
  padding-left: 1.5rem;
}

#section-main {
    width: 100%;
    padding: 0rem 0 3rem 0;
    font-size: 1.1rem;
}

#main-image {
    width: 100%;
    max-height: 25dvh;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.title {
    margin-bottom: 1rem;
}

@media (max-width: 900px){
    
    #section-main {
        width: 95%;
        padding: 3rem 0 0rem 0;
    }
    
    #main-image {
        max-height: 20dvh;
    }
    
    .title {
        font-size: 1.5rem;
    }

    p, ul {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}


#facilities {
    padding: 3rem 0;
}

#facilities h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

#facilities .tagline {
    margin-bottom: 2rem;
}

#facilities h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#facilities-images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1%;
    margin-bottom: 2rem;
}

#facilities-images img {
    width: 49.5%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.logistic-image {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 768px){
    #facilities h2 {
        font-size: 1.5rem;
    }

    #facilities .tagline {
        font-size: 1.25rem;
    }

    #facilities h3 {
        font-size: 1.25rem;
    }

    #facilities-images {
        flex-direction: column;
        gap: 1rem;
    }

    #facilities-images img {
        width: 100%;
        height: 100%;
    }

    .logistic-image {
        width: 100%;
        height: 100%;
    }
}

  #section-closing {
    padding-bottom: 3rem;
    text-align: center;
  }
  
  #closing-statement {
    text-align: center;
    margin: 3rem auto 2rem auto;
    width: 80%;
    display: block;
  }
  
  #closing-button {
    border: 1.5px solid var(--color-main);
    color: white;
    background-color: var(--color-main);
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  
  #closing-button:hover {
    background-color: var(--color-highlight);
    border: 1.5px solid var(--color-highlight);
  }
  
  /* ============================================================ */
  
  #gmaps {
    width: 100%;
    height: 25rem;
    border-top: 1rem solid var(--color-main);
  }