* { 
     box-sizing: border-box; 
}


/*
=======================================================================================
CONTAINERS
=======================================================================================
*/

body {
  font-size: 1.15em;
  font-family: Helvetica, Arial, Sans-Serif;
  margin: 0;
}

.header {
  display: flex;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
}

.column {
  flex: 1 1 300px;
  max-width: 100%;
  padding: 1rem;
}


/* Stack columns on phones and all iOS/Android touch devices including landscape */
@media (max-width: 926px) and (pointer: coarse) {
  .column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Stack columns on small screens regardless of device */
@media (max-width: 600px) {
  .container{
    display: block !important;
  }
  .column {
    flex: 0 0 100%;
    max-width: 100%;
    display: block !important;
  }
  .buttons2 {
    width: 100%;
    padding-left: 0;
  }
}

/*
=======================================================================================
PDF
=======================================================================================
*/

.read_pdf {
   padding-left: 5%;
   padding-right: 5%;   
   width: 100%;
   margin: 0 auto;
}

/*
=======================================================================================
NAV MENU
=======================================================================================
*/

.nav_menu {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 0.75rem;
  flex-wrap: wrap;
}

.img3 {
  max-width: 15%;
  height: auto;  
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  display: block;
}

/*  width: clamp(120px, 14vw, 180px); */
 
.menu_item {
  color: #005347;
  font-size: 1.2em;
  text-decoration: none;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 0rem;
  display: block;
}

/*
=======================================================================================
TEXT
=======================================================================================
*/

.p1 {
  font-size: 1.3rem;
  text-align: center;
  color: #017063;
}

.pcenter {
   text-align: center;
}


.h22 {
  text-align: center;
  margin-top: -0.75em;
  color: #017063; 
}


/*
=======================================================================================
IMAGES
=======================================================================================
*/

/*	
img {
  max-width: 100%;
   height: auto;
}
*/

.cover {
  width: 100%;
  height: auto;  
  flex: 0 0 35%;
}

/*
  .cover {
    width: 100%;
    margin: 0 auto;
    height: auto;
    max-width: 420px;
  }
*/


.img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img1 {
  width: 100%;
  height: auto;  
  border: 2px solid black;
}

.thumb {
  margin-left: 2em;
  width: 25%;
}


/*
=======================================================================================
BUTTONS
=======================================================================================
*/

  .button {
    width: 11rem;
    text-align: center;
  }

.buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  padding: 0.45em 1.1em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4em;
  border: 1px solid #1b1f2326;
  border-radius: 6px;
  color: #ffffff;
  background-color: red;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px 0px,
              rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
  transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}

.buttons2 {
   width: 75%;
   padding-left: 9.5rem;
   text-align: center;
}

.button:hover {
  background-color: #FF6347;
}

/*
=======================================================================================
HORIZONTAL RULE
=======================================================================================
*/

.hrnav {
  margin-top: 10px;	
  border-top: 4px solid #005347;
}