@charset "utf-8";
*{
  box-sizing: border-box;
}
::selection {
  color: #ffffff;
  background: #3A786C;
}
::-moz-selection {
  color: #ffffff;
  background: #3A786C;
}
@keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gear1 {
  -webkit-animation: rotation 10s infinite linear;
  -moz-animation: rotation 10s infinite linear;
  -o-animation: rotation 10s infinite linear;
  animation: rotation 10s infinite linear;
}
.gear2 {
  -webkit-animation: rotation2 10s infinite linear;
  -moz-animation: rotation2 10s infinite linear;
  -o-animation: rotation2 10s infinite linear;
  animation: rotation2 10s infinite linear;
}

@-webkit-keyframes rotation {
  from {-webkit-transform: rotate(0deg);}
  to   {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
  from {-moz-transform: rotate(0deg);}
  to   {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
  from {-o-transform: rotate(0deg);}
  to   {-o-transform: rotate(359deg);}
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to   {transform: rotate(359deg);}
}

@-webkit-keyframes rotation2 {
  from {-webkit-transform: rotate(0deg);}
  to   {-webkit-transform: rotate(-359deg);}
}
@-moz-keyframes rotation2 {
  from {-moz-transform: rotate(0deg);}
  to   {-moz-transform: rotate(-359deg);}
}
@-o-keyframes rotation2 {
  from {-o-transform: rotate(0deg);}
  to   {-o-transform: rotate(-359deg);}
}
@keyframes rotation2 {
  from {transform: rotate(0deg);}
  to   {transform: rotate(-359deg);}
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  width: 100%;
  /*height: 100%;
  margin: 0;*/
  padding: 0;
  /*position: relative;*/
  color: #777777;
  animation: body-fadein 1s;
  background: #f5f5f5;
}
ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 125%;
  margin: 15px 0 40px;
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 2.250em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.125em;
}
h5 {
  font-size: 1em;
}
p{
  line-height: 200%;
  margin: 15px 0 40px;
  font-size: 1.4em;
  word-break: break-word;
}
.col {
  margin: 2em;
  border: 1px solid rgba(255, 255, 255, 0.0);
  background-color: rgba(200, 200, 200, 0);
  outline: none;
}
.row-fluid [class*="span"]{
  min-height: auto!important;
}
@media only screen and (max-width: 767px) {
  .row-fluid {
    width: 100% !important;
  }
  .col {
    margin: 0 0em;
  }
}
.container-fluid{
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .row-fluid .span4{
    width: 100%;
  }
}

.body-container-wrapper{
  padding-top: 80px;
}

.footer-container{
  padding: 50px 0;
  /*background: #134E5E;*/  /* fallback for old browsers */
  /*background: -webkit-linear-gradient(to right, #71B280, #134E5E);*/  /* Chrome 10-25, Safari 5.1-6 */
  /*background: linear-gradient(to right, #71B280, #134E5E);*/ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /*color: #ffffff;*/
}

.footer-container p{
  text-align: center;
}

.content-contact{
  padding: 25px;
}

@media (min-width: 980px) {
  .content-contact{
    padding-left: 150px;
    padding-right: 150px;
  }
}

.content-contact h2{
  color: #498772;
  text-align: center;
}

.content-contact ul{
  padding: 10px 0;
}

.content-contact ul:after{
  content: '';
  display: block;
  clear: both;
}

.content-contact ul li{
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

@media (min-width: 980px) {
  .content-contact ul li{
    float: left;
    width: 50%;
    margin-bottom: 0;
  }
}

.content-contact ul li i{
  font-size: 36px;
  display: block;
}

.content-contact ul li span{
  font-size: 1.5em;
  display: block;
  margin-top: 10px;
}

.content-contact ul li a{
  color: #498772;
  text-decoration: none;
}

/*Nav*/
.nav{
  margin: 0;
}

#navbar > .nav{
  background: #ffffff;
  padding: 0 0 10px 0;
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}
#navbar > .nav li{
  display: inline-block;
  padding: 0 10px;
}
#navbar > .nav li a{
  color: #999999;
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
  padding: 10px 0 0 0;
  transition: all .2s ease;
  -moz-transition: all .2s ease;
  -webkit-transition: all .2s ease;
}
#navbar > .nav li a:hover{
  background: none;
  color: #1cab5f;
  text-decoration: none;
}

#navbar > .nav li.active a{
  color: #498772;
}

@media (min-width: 1350px) {
  #navbar > .nav{
    background: none;
    padding: 0;
    margin: 80px 0 0 0;
    border-bottom: none;
    border-left: 1px solid #dddddd;
    left: 50px;
    right: inherit;
    text-align: inherit;
  }
  #navbar > .nav li{
    padding: 0;
    display: block;
    position: relative;
    margin-bottom: 30px;
  }
  #navbar > .nav li:last-child{
    margin-bottom: 0;
  }
  #navbar > .nav li a:hover:before{
    background: #498772;
  }
  
  #navbar > .nav li a:before{
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dddddd;
    content: '';
    left: -10px;
    transition: all .2s ease;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
  }
  #navbar > .nav li.active a:before{
    background: #498772;
  }
  
  #navbar > .nav li a{
    padding: 0 0 0 20px;
  }
}




.nav-logo{
  margin: 0 auto;
  display: table;
}

/*Header*/
.header-container{
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: 5px 0;
  background: #134E5E;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #71B280, #134E5E);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #71B280, #134E5E); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.content-header{
  position: relative;
  text-align: center;
  padding: 25px;
}

@media (min-width: 980px) {
  .content-header{
    padding: 25px 130px 0;
  }
}

.content-header .hgroup{
  position: relative;
  padding-top: 60px;
}

.content-header .box-icon{
  display: none;
}

@media (min-width: 768px) {
  .content-header .hgroup{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 100px;
  }
  .content-header .box-icon{
    display: block;
  }
}

.content-header h1{
  margin: 0;
  color: #777777;
  font-weight: 300;
}

.content-header p{
  text-align: center;
  border-radius: 25px;
  background: #ffffff;
  padding: 40px;
  border: 1px solid #dddddd;
  position: relative;
}

.content-header p:before{
  position: absolute;
  bottom: -20px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 16px 0 16px;
  border-color: #dddddd transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%);
}

.content-header p:after{
  position: absolute;
  bottom: -18px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%);
}   

.content-header a{
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
  float: right;
  margin-right: 35px;
}

/* End Content Header*/

.content-block a{
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  text-transform: none;
}

.content-block .left,
.content-block .right{
  padding: 15px 25px;
}

.content-block .left{
  display: none;
}

.content-block:not(:first-of-type){
  border-top: 1px solid #cccccc;
}

@media (min-width: 980px) {
  .content-block{
    padding: 0 0 100px;
  }
}

.content-block:before { 
  display: block; 
  content: '';
  height: 100px;
  visibility: hidden;
}

.content-block .left h2,
.content-block .right h2{
  color: #498772;
  text-align: center;
}

.content-block:after{
  clear: both;
  display: block;
  content: '';
}

.content-block .right p{
  text-align: center;
}

@media (min-width: 980px) {
  .content-block .left,
  .content-block .right{
    padding: 0 25px;
    display: inline-block;
  }
  
  .content-block .left{
    float: left;
    width: 40%;
  }
  
  .content-block .right{
    float: right;
    width: 60%;
  }
  
  .content-block .left h2,
  .content-block .right h2{
    text-align: inherit;
  }
  
  .content-block .right p{
    text-align: justify;
  }    
}

.content-block header i{
  font-size: 24px;
}

.icon{
  text-align: center;
  margin-top: 50px;
}

iframe[src="about:blank"]{
  display: block;
}

.cog-lg{
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transform-box: fill-box;/*moz*/
}

.cog-sm{
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transform-box: fill-box;/*moz*/
}

.box-icon{
  display: table;
  margin: 0 auto;
}

.modal-header{
  background: #498772;
  padding: 15px;
  border-radius: 5px 5px 0 0;
}

.modal-header .close{
  position: absolute;
  right: 15px;
  top: 20px;
  color: #fff;
  text-shadow: none;
  opacity: 1;
  font-size: 42px;
}

.modal-header h3{
  color: #fff;
  margin: 0;
}

.modal-body{
  padding: 25px 40px;
  display: none;
  max-height: 550px;
}

.modal-body h3{
  margin: 15px 0;
}

.modal-body p{
  font-size: 1em;
}

.modal-body.visible{
  display: block;
}

.no-scroll {
  overflow: hidden !important;
}

.box-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  cursor: default;
}
.box-modal.visible {
  display: table;
  animation: body-fadein .2s;
}

.modal-wrapper {
  position: absolute;
  top: 10%;
  left: 50%;
  max-width: 440px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  transform: translateX(-50%);
}

@media (max-width: 520px) {
  
  .modal-wrapper {
    width: 300px;
  }
}