body, html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  background-position: right center;
  background-size: cover;
  background-origin: border-box;
  background-repeat: no-repeat;
  transition: all 0.8s ease-in-out 0s;
  -webkit-transition: all 0.8s ease-in-out 0s;
}

div, li, img {
    -moz-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -webkit-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -moz-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -o-transition: width 1s ease-in-out, left 1.5s ease-in-out;
    transition: width 1s ease-in-out, left 1.5s ease-in-out;
    -moz-transition: height 1s ease-in-out, left 1.5s ease-in-out;
    -webkit-transition: height 1s ease-in-out, left 1.5s ease-in-out;
    -moz-transition: height 1s ease-in-out, left 1.5s ease-in-out;
    -o-transition: height 1s ease-in-out, left 1.5s ease-in-out;
    transition: height 1s ease-in-out, left 1.5s ease-in-out;
}

#bg-div {
  width: 100%;
  height: 60%;
  display: block;
  position: absolute;
}

#bg-div::after {
  transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -ms-transform: skewY(12deg);
  -webkit-transform: skewY(12deg);
  transform: skewY(12deg);
  -ms-transform-origin: right bottom 0;
  -webkit-transform-origin: right bottom 0;
  transform-origin: right bottom 0;
  background-color: rgba(0, 161, 221, 0.34);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 0;
}

#topo {
  width: 100%;
  height: 89px;
  top: 0;
  display: block;
  position: absolute;
  z-index: 2;
  background-image: url('../images/topo.png');
  background-position: center;
  background-repeat: no-repeat;
}

#logo-calhau {
  width: 100%;
  height: 50%;
  text-align: center;
  position: absolute;
  z-index: 1;
}

#sombra-calhau {
  width: 100%;
  height: 5%;
  bottom: 0;
  margin-bottom: 6%;
  text-align: center;
  position: absolute;
  z-index: 2;
}

#sombra-calhau img {
  perspective-origin: center center;
  -ms-perspective-origin: center center;
  -webkit-perspective-origin: center center;
  transform:
    translateX(0%)
    translateY(0%)
    scale(1);
  -ms-transform:
    translateX(0%)
    translateY(0%)
    scale(1);
  -webkit-transform:
    translateX(0%)
    translateY(0%)
    scale(1);
}

#Overlay {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

#Overlay.active {
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
}

#Menu {
  transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  height: 100%;
  top: 0;
  right: -35%;
  position: fixed;
  z-index: 20;
  width: 35%;
}

#Menu.active {
  transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  right: 0;
}

#Menu::before {
  transition: all 0.7s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -webkit-transition: all 0.7s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(0, 167, 207, 1);
  -ms-transform: skew(0deg);
  -webkit-transform: skew(0deg);
  transform: skew(0deg);
  -ms-transform-origin: left bottom 0;
  -webkit-transform-origin: left bottom 0;
  transform-origin: left bottom 0;
}
#Menu.active::before {
  transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -webkit-transition: all 0.6s cubic-bezier(0.08, 0.17, 0.43, 1.02) 0s;
  -ms-transform: skew(-19deg);
  -webkit-transform: skew(-19deg);
  transform: skew(-19deg);
  -ms-transform-origin: left bottom 0;
  -webkit-transform-origin: left bottom 0;
  transform-origin: left bottom 0;
}

/*Hamburger*/
#nav-box {
  display: block;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  height: 42px;
  position: absolute;
  right: 20px;
  top: 40px;
  width: 42px;
  z-index: 30;
  cursor: pointer;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-box.open {
  border-color: #fff;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon {
  width: 22px;
  height: 32px;
  position: absolute;
  z-index: 40;
  margin: 5px 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon.open span {
  background: #fff;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 9px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 15px;
}

#nav-icon span:nth-child(4) {
  top: 21px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
/*Menu*/
#Menu-Content {
  padding: 0;
  margin: 0;
  right: 0px;
  position: absolute;
  z-index: 50;
  list-style: none;
  text-align: right;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 15px;
}
#Menu-Content a {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 70px;
  /*margin-bottom: 30px;*/
  font-family: 'uni_neueheavy';
  cursor: pointer;
  display: block;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
#Menu-Content a:hover::before {
  width: 20px;
}
#Menu-Content a.active::before {
  width: 40px;
}
#Menu-Content a::before {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 3px;
  margin-top: -1px;
  position: absolute;
  right: 70px;
  bottom: 0;
  transition: all 0.3s ease-in-out 0s;
  width: 0;
}
#Menu img {
  bottom: 0;
  position: absolute;
  z-index: 50;
  right: 70px;
  margin-bottom: 50px;
  cursor: pointer;
}
/*Main content*/
#main-content {
  max-width: 500px;
  width: 100%;
  margin-top: 210px;
  position: absolute;
  z-index: 6;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
#p-header {
  height: 200px;
  text-align: left;
}
#p-header img {
  height: 200px;
  width: auto;
}
h2 {
  font-family: 'uni_neuebold';
  font-size: 32px;
  margin: 0;
  color: #00a5e1;
}
h6 {
  font-family: 'uni_neuebold';
  font-size: 15px;
  margin: 0;
  color: #000;
}
.small-hr {
  border: 0;
  background-color: #000;
  height: 2px;
  margin: 5px 0 5px -8px;
  padding: 0;
  width: 21px;
}
.t8pxleft {
  padding-left: 8px;
}
#main-content p {
  margin-left: 4px;
  color: #666666;
  font-size: 16px;
}
/*PREÇARIO*/
#tabela {
  max-width: 500px;
  width: 100%;
  height: 578px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  display: block;
}
.coluna {
  width: 50%;
  height: 100%;
  margin: 0;
  float: left;
}
.coluna div {
  margin: 0 1% 0 1%;
  width: 98%;
  display: inline-block;
  float: left;
}

#tabela div:first-child div {
  margin: 0 1% 0 0;
  width: 99%;
}
#tabela div:last-child div {
  margin: 0 0 0 1%;
  width: 99%;
}
.thead {
  height: 58px;
  font-family: 'uni_neuebold';
  font-size: 32px;
  color: #00a5e1;
  line-height: 58px;
}
.tsub1 {
  height: 56px;
  font-family: 'uni_neuelight';
  font-size: 29px;
  color: #00a5e1;
  line-height: 40px;
}
.tsub1 span {
  width: 82%;
  margin: 8px auto;
  display: block;
}
.tsub2 {
  height: 60px;
  font-family: 'uni_neuebold';
  font-size: 26px;
  color: #fff;
  line-height: 36px;
  margin-top: 15px !important;
}
.tsub2 span {
  width: 100%;
  display: block;
  margin: 12px 0;
  background-color: #00a5e1;
}
.colbg1s {
  font-family: 'Open Sans', sans-serif;
  background-color: #f7fcfe;
  font-size: 17px;
  color: #666666;
}
.colbg1 {
  background-color: #f7fcfe;
}
.colbg2 {
  background-color: #f9fafa;
}
.notas {
  margin-left: 12px;
  color: #00a5e1;
  margin-bottom: 20px;
}
/*MEDIA QUERYES*/
@media (max-width: 767px) {
  .tsub1 {
    font-size: 22px;
  }
  .tsub2 {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
