/*
# BASIC SETUP
*/
:root {
  --primary-color: #004c6a;
  --light-primary-color: #007FB2;
  --secondary-color: #a6a6a6;
  --light-secondary-color: #ffffff;
}

html {
  height: 100%;
  min-width: 700px;
  width: 100%;  
}

body {
  
  background: #ffffff;
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  height: 100%;
  margin: 0 auto;
  min-width: 700px;
  max-width: 1600px;

}

#hideAll
 {
  display: block;
  position: fixed;
  left: 0px; 
  right: 0px; 
  top: 0px; 
  bottom: 0px; 
  background-color: #FFFFFF;
  z-index: 99; /* Higher than anything else in the document */
 }


/*---------------------------------------------------------*/
/*
# HELPERS
*/

/*
## Backgrounds
*/

.primary-background {
  background-color: #004c6a;
}

.light-primary-background {
  background-color: #007FB2;
}

.secondary-background {
  background-color: #a6a6a6;
}

.light-secondary-background {
  background-color: #ffffff;
}

.gradient-background {
  background: linear-gradient(to right, #92d050, #00b050, #92d050);
}

/*
## Widths and Heights
*/

.width80 {
  width: 80%;
}

.width60 {
  width: 60%;
}

.width95 {
  width: 95%;
}

.width100 {
  width: 100%;
}

.width50 {
  width: 50%;
}

.width500px {
  width: 500px;
}

.height100 {
  height: 100%;
}

.height10 {
  height: 10%;
}

.height30 {
  height: 30%;
}

.height50 {
  height: 50%;
}

.height500px {
  height: 500px;
}

.height20 {
  height: 20%;
}

.min-height20 {
  min-height: 20%;
}

.height1 {
  height: 1%;
}

.height5 {
  height: 5%;
}

.height15 {
  height: 15%;
}

.height80 {
  height: 80%
}


.height70 {
  height: 70%
}

.height5px {
  height: 5px;
}

@media only screen  
and (max-width: 1024px){

  .height10 {
    min-height: 10%;
  }

  .height30 {
    min-height: 30%;
  }

  .height20 {
    min-height: 20%;
  }

  .height1 {
    min-height: 1%;
  }

  .height5 {
    min-height: 5%;
  }

  .height15 {
    min-height: 15%;
  }
  
}


/*
## Paddings and Margins
*/

.padding-left20 {
  padding-left: 20%;
}

.padding-right5 {
  padding-right: 5%;
}

.padding-top10px {
  padding-top: 10px;
}

.padding-top20px {
  padding-top: 20px;
}

.padding-top5px {
  padding-top: 5px;
}

.padding-bottom5px {
  padding-bottom: 5px;
}

.padding-left10px {
  padding-left: 10px;
}

.padding-left20px {
  padding-left: 20px;
}


.padding-right10px {
  padding-right: 10px;
}

.padding-right20px {
  padding-right: 20px;
}

.padding-top20 {
  padding-top: 20%;
}

.padding-top50px {
  padding-top: 50px;
}

.padding10px {
  padding: 10px;
}

.padding5px {
  padding: 5px;
}

.padding-bottom10px {
  padding-bottom: 10px;
}

.padding-bottom50px {
  padding-bottom: 50px;
}

.margin-bottom100px {
  margin-bottom: 100px;
}

.margin-top50px {
  margin-top: 50px;
}

.margin-top10 {
  margin-top: 10%;
}

.margin-top10px {
  margin-top: 10px;
}

.margin-right10px {
  margin-right: 10px;
}

.margin10px {
  margin: 10px;
}

.margin-left-n2px {
  margin-left: -2px;
}


/*
## Positioning
*/

.fixed-top {
  position: fixed;
  top: 0;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
}

.center-h {
  margin-left: auto;
  margin-right: auto;
}

.center-v {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: auto 0;
}

.center-hv {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.bottom5 {
  bottom: 5%;
}

.right1 {
  right: 1%;
}

/*
## Opacity
*/

.opacity80 {
  opacity: 0.8;
}

.opacity90 {
  opacity: 0.9;
}


/*
## Text options
*/

.text-size4 {
  font-size: 4.0em;
}

.text-size3 {
  font-size: 3.0em;
}

.text-size2 {
  font-size: 2.0em;
}

.text-size2-5 {
  font-size: 2.0em;
}

.text-size1-5 {
  font-size: 1.5em;
}

.text-size1-2 {
  font-size: 1.2em;
}

.text-size0-8 {
  font-size: 0.8em;
}

.text-color-primary {
  color: #00b050;
}

.text-color-light-primary {
  color: #92d050;
}

.text-color-secondary {
  color: #a6a6a6;
}

.text-color-light-secondary {
  color: #ffffff;
}

.text-color-black {
  color: #000000;
}

.text-color-white {
  color: #FFFFFF;
}

.uppercase {
  text-transform: uppercase;
}

.smallcaps {
  font-variant: small-caps;
}

.bold {
  font-weight: bold; 
} 

.no-decoration {
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

.letter-spacing5px {
  letter-spacing: 5px;
}

.letter-spacing1px {
  letter-spacing: 1px;
}

.text-stroke-secondary {
  text-shadow: 
  -1px -1px 0 #a6a6a6,
   1px -1px 0 #a6a6a6,
  -1px  1px 0 #a6a6a6,
   1px  1px 0 #a6a6a6;
}

.text-stroke-primary {
  text-shadow: 
  -1px -1px 0 #00b050,
   1px -1px 0 #00b050,
  -1px  1px 0 #00b050,
   1px  1px 0 #00b050;
}

.text-stroke-black {
  text-shadow: 
  -1px -1px 0 #000,
   1px -1px 0 #000,
  -1px  1px 0 #000,
   1px  1px 0 #000;
}

.text-stroke-white {
  text-shadow: 
  -1px -1px 0 #ffffff,
   1px -1px 0 #ffffff,
  -1px  1px 0 #ffffff,
   1px  1px 0 #ffffff;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}



.letter-spacing {
  letter-spacing: 0.5em;
}

.word-break {
  word-break: break-all;
}

@media only screen  
and (max-width: 1024px){

  .text-right{
    text-align: center;
  }

  .text-size4{
    font-size: 2.5em;
  }

  .text-size3{
    font-size: 2.0em;
  }
  
}



.hr1 {
  height: 12px;
  border: 0;
  box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}

.hr3 {
  height: 12px;
  border: 0;
  box-shadow: inset 0 -12px 12px -12px rgba(0, 0, 0, 0.5);
}

.hr2 {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}


.menu-border {
  border: solid 2px #00b050;
  padding-left: 5px; 
  padding-right: 5px;
  cursor: pointer;
}

.menu-border:hover {
  background-color: #00b050;
  color: #ffffff;
}


.list-style-square {
  list-style-type: square;
}

/*---------------------------------------------------------*/
/*
# CUSTOM OBJECTS
*/

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
}

.collapsible {
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  text-decoration: underline;
}

.active, .collapsible:hover {
  background-color: trnasparent;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}


/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.video {
  background-color: #f44336;
  color: white;
  padding: 20px;
  text-align: center;
  border: 2px solid #f44336;
  border-radius: 50px;
  text-decoration: none;
}

.video:hover {
  background-color: white; 
  color: black; 
}