/*FONTS <<< Carregar as fontes no ficheiro fonts.css >>> */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,400i|Montserrat:300,400,700&display=swap');

/**********************************************/
/* GRAPHIC DEFAULT */
/**********************************************/

:root {
  --mainColor: #00778B;
  --secondColor: #FEDD00;
}

body *::-webkit-scrollbar {
  display: none;
}

body * {
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: none; /* Firefox 64 */
}

body {
   font-family: 'Montserrat', sans-serif;
   font-size: 14px;
   font-weight: 400;
   color: #333;
}

html.active,
body.active {
  overflow-y: hidden;
}

section {
  position: relative;
  padding: 8vw 0;
}

.wrap {
  max-width: 1600px;
  width: 100%;
  position: relative;
  padding: 0 4vw;
  margin: 0 auto;
}

.merryweather {
  font-family: 'Merriweather', serif;
}

a,
a:hover {
  text-decoration: none;
  color: var(--mainColor);
}
.transition { transition: all .4s; }
.italic { font-style: italic;}
.center { text-align: center; }
.uppercase { text-transform: uppercase; }
.white { color: #fff; }
.light { font-weight: 300; }
.bold { font-weight: 700; }
.letterSpace { letter-spacing: 4px; }

.size36 { font-size: 36px; }
.size26 { font-size: 26px; }
.size20 { font-size: 20px; }

.cta {
  text-decoration: none;
  padding: 15px;
  background: var(--secondColor);
  color: transparent;
  cursor: pointer;
  text-align: center;
  margin: auto;
  transition: all .4s;
  overflow: hidden;
  display: inline-block;
  text-shadow: 0 0 0 #333, 100px 0 0 rgba(0,0,0,0);
  color: transparent;
  box-shadow: 0;
  border-radius: 4px;
  position: relative;
}

.cta::before {
  content: "\e908";
  font-family: "icomoon";
  display: inline-block;
  margin: 0 20px 0 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(0,0,0,.1);
  transition: all .4s;
}

.cta:hover {
  color: transparent;
  text-shadow: 100px 0 0 rgba(0,0,0,0), 0 0 0 #333;
}

.cta:hover::after {
  width: 100%;
}

.slickNav {
  display: flex;
  justify-content: center;
}

.slickNav li {
  padding: 10px;
  cursor: pointer;
}

.slickNav li:last-child {
  transform: rotate(180deg);
}

.slickNav li:hover {
  color: var(--mainColor);
}

.spacer {
  position: relative;
  display: block;
}

/**********************************************/
/* GRAPHIC DEFAULT */
/**********************************************/

/**********************************************/
/* CLIENT TEXTAREA */
/**********************************************/

.clientTextarea h1 { font-size: 300%; }
.clientTextarea h2 { font-size: 200%; }
.clientTextarea h3 { font-size: 150%; }
.clientTextarea h4 { font-size: 120%; }
.clientTextarea h5 { font-size: 85%; }
.clientTextarea h6 { font-size: 70%; }
.clientTextarea em { font-style: italic; }
.clientTextarea strong { font-weight: bold; }
.clientTextarea ol, .clientTextarea ul { padding-left: 30px; padding-right: 30px; }
.clientTextarea li { list-style: disc; }
.clientTextarea p { line-height: 150%; padding: 0 0 10px 0; }
.clientTextarea p:last-of-type { padding: 0; }
.clientTextarea a { text-decoration: underline; }
.clientTextarea img { max-width: 100%; }

/**********************************************/
/* CLIENT TEXTAREA */
/**********************************************/

#headerNode {
  position: fixed;
  width: 100%;
  z-index: 100;
}

#headerNode.active,
#headerNode.on {
  background: var(--mainColor);
  color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,.2);
}

#headerNode .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

#headerNode .logoNode,
#headerNode .burgerNode {
  display: none;
}

#headerNode.active .wrap,
#headerNode.on .wrap {
  justify-content: space-between;
}

#headerNode.active .logoNode,
#headerNode.on .logoNode {
  display: block;
}

#headerNode .logoNode {
  position: relative;
  width: 35%;
  max-width: 120px;
  padding: 15px 0;
  z-index: 10;
}

#headerNode .node2 {
  width: 100%;
  object-fit: contain;
}

#headerNode .burgerNode {
  padding: 15px;
  cursor: pointer;
  overflow: hidden;
  transform: rotate(180deg);
  position: relative;
  z-index: 10;
}

#headerNode .node1 {
  position: relative;
  z-index: 5;
}

#headerNode .node3 {
  position: relative;
  display: block;
  font-size: 20px;
  text-shadow: 0 0 0 #fff, 100px 0 0 #fff;
}

#headerNode .burgerNode:hover .node3 {
  text-shadow: -100px 0 0 #fff, 0 0 0 #fff;
}

#headerNode .burgerNode.active {
  transform: rotate(0);
}

#headerNode.active .node3
#headerNode.on .node3 {
  text-shadow: 0 0 0 #fff, 100px 0 0 #fff;
}

#headerNode.active .burgerNode:hover .node3,
#headerNode.on .burgerNode:hover .node3 {
  text-shadow: -100px 0 0 #fff, 0 0 0 #fff;
}

#headerNode .node4 {
  display: flex;
  align-items: center;
}

#headerNode .node5 {
  padding: 15px 20px;
  position: relative;
  display: block;
  color: transparent;
  overflow: hidden;
  text-shadow: 0 0 0 #fff, -100px 0 0 rgba(255,255,255,0);
  font-size: 12px;
}

#headerNode .node5:hover {
  color: transparent;
  text-shadow: 100px 0 0 rgba(255,255,255,0), 0 0 0 #fff;
}

#headerNode .node5:not(:hover) {
  text-shadow: 0 0 0 #fff, -100px 0 0 rgba(255,255,255,0);
  transition: none;
}

#headerNode .node6 {
  position: fixed;
  margin: 0 0 0 40px;
  top: 10px;
  right: 20px;
}

#headerNode.active .node6,
#headerNode.on .node6 {
  position: relative;
  top: initial;
  right: initial;
}

#headerNode .node6 a {
  color: rgba(255,255,255,.7);
  padding: 5px;
  font-size: 12px;
}

#headerNode .node6 a.active,
#headerNode .node6 a:hover {
  color: rgba(255,255,255,1);
}

#headerNode .node7 {
  position: relative;
}

#headerNode .node8 {
  position: absolute;
  background: var(--mainColor);
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  top: 200%;
}

#headerNode .node9 {
  display: block;
  padding: 10px;
  border-bottom: 1px dotted rgba(255,255,255,.5);
  white-space: nowrap;
}

#headerNode .node9:last-of-type {
  border-bottom: none;
}

#headerNode .node7:hover > .node8 {
  pointer-events: all;
  opacity: 1;
  top: 100%;
}

#headerNode .node10 {
  display: none;
}

/* 50% */
/* Descomentar também no responsice max-width 1200 */
/* #headerNode .node8 {
  display: flex;
  flex-wrap: wrap;
}

#headerNode .node9 {
  width: 50%;
} */
/* 50% */

#s1 {
  min-height: 100vh;
  background: var(--mainColor);
  padding: 0;
  overflow: hidden;
}

#s1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--mainColor);
  opacity: .8;
  z-index: 5;
}

#s1::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -50vw;
  width: 90vw;
  height: 100px;
  background: #fff;
  z-index: 10;
  transform: skewX(25deg);
}

#s1 .node1 {
  position: absolute;
  top: 0;
  height: inherit;
  z-index: 7;
  width: 100%;
  opacity: .15;
  mix-blend-mode: overlay;
}

#s1 .wrap {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
}

#s1 .node2 {
  width: 100%;
  max-width: 250px;
}

#s1 .node3 {
  margin: 1vh 0 3vh 0;
}

#s1 .node4 {
  max-width: 1000px;
  margin: 3vh 0 20vh 0;
  padding: 4vh 7vw calc(4vh + 15px) 7vw;
  border: 0px dotted rgba(0,0,0,.3);
  background: rgba(0,0,0,0);
  position: relative;
}

#s1 .node5 {
  margin: 25px 0 0 0;
}

#s1 .node6 {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  padding: 15px;
}

#s1 .node100 {
    position: absolute; bottom: 25px; right: 0;
    display: flex;

}

#s1 .node101 {
  font-size: 20px;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.5);
  margin: 5px;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 0 0 rgba(255,255,255,1), 0 40px 0 rgba(255,255,255,0);
  display: block;
}

#s1 .node101:hover {
  color: transparent;
  opacity: 1;
  text-shadow: 0 -40px 0 rgba(255,255,255,0), 0 0 0 rgba(255,255,255,1);
}


#s2 {
  padding: 0 0 10vw 0;
}

#s2.portofolio {
  padding: 0 0 2vw 0;
}

#s2 .wrap {
  padding: 0;
  overflow: hidden;
}

#s2 .node1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

#s2 .node1::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -50vw;
  width: 90vw;
  transform: skewX(25deg);
  background: #fff;
  height: 100px;
}

#s2 .node2 {
  width: 25%;
  background: #fff;
}

#s2 .node4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 0;
  padding-top: 100%;
  filter: grayscale(100%);
  position: relative;
}

#s2 .node4::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 2vw;
  height: 4vw;
  width: 1px;
  background: #666;
}

#s2 .node5 {
  padding: 4vw;
}

#s2 .node7 {
  margin: 0 0 2vw 0;
}

#s2 .node3 {
  position: relative;
  padding: 6vw 0;
}

#s2.portofolio .node3 {
    position: relative;
    padding: 3vw 0 3vw 0;
}

#s2 .node9 {
  margin: 4vh 4vw 0 4vw;
}

#s2 .node2:hover {
  background: #f7f7f7;
}


#s2 .node11 {
  margin: 20px auto 0 auto;
  display: table;
  position: relative;
  display: flex;
  width: max-content;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#s2 .node11::before {
  content: "\e908";
  font-family: "icomoon";
  transform: rotate(180deg);
  position: relative;
  margin: 0 10px 0 0;
  padding: 10px;
  transition: all .4s;
  left: 0;
}

#s2 .node11:hover::before {
  animation: arrow .5s infinite;
  animation-direction: alternate;
}

@keyframes arrow {
  0% {
    left: 0;
  }
  100% {
    left: 10px;
  }
}

#s2 .node12 {
  position: relative;
}

#s2 .node12::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2vw;
  height: 100%;
  width: 1px;
  background: #666;
}

#s2 .node14 {
  width: 100%;
  height: 0;
  padding-top: 100%;
  height: 200px;
}

#s3 {
  background-color: var(--mainColor);
}

#s3::after {
  content: "";
  position: absolute;
  top: -10vh;
  left: 0;
  width: 100%;
  height: calc(100% + 10vh);
  z-index: 5;
  background: linear-gradient(-65deg, #e7e7e7 50%, rgba(255,255,255,0) 50%);
}

#s3 .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
  overflow: hidden;
}

#s3 .node1 {
  width: 40%;
}

#s3 .node1:last-of-type {
  width: 60%;
  padding: 0 0 0 4vw;
}

#s3 .node2 {
  background: #fff;
  padding: 4vw;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  border-radius: 4px;
}

#s3 .node3 {
  margin: 20px 0 0 0;
}

#s4 {
  padding: 0 0 4vw 0;
}

#s4 .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#s4 .node1 {
  width: 50%;
  transform: translateZ(0);
}

#s4 .node2 {
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  mix-blend-mode: screen;
}

#s4 .node4 {
  margin: 20px 0 0 0;
  min-width: 300px;
}

#s4 .node3 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}

#s4 .node5 {
  width: 50%;
  max-width: 400px;
  padding: 0 20px 0 0;
}

#s4 .node5:last-of-type {
  padding: 0 0 0 20px;
}

#s4 .node6 {
  height: 0;
  padding-top: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

#s4 .node7 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px 50px 20px;
  z-index: 5;
  background: rgba(0,0,0,.7);
}

#s4 .node8 {
  right: 0;
  bottom: 0;
  position: absolute;
  overflow: hidden;
  padding: 20px 10px 10px 10px;
  width: 100%;
}

#s4 .node8::after {
  content: "";
  z-index: 5;
  position: absolute;
  right: -50%;
  bottom: -2px;
  width: 100%;
  height: 40px;
  background: #fff;
  transform: skewX(-25deg);
}

#s4 .node10 {
  z-index: 10;
  position: absolute;
  display: block;
  bottom: 0;
  right: 10px;
}

#s4 .node9 {
  margin: 10px 0 0 0;
  border-top: 1px solid var(--mainColor);
  padding: 10px;
  color: transparent;
  text-shadow: 0 0 0 rgba(0,119,139,1), -100px 0 0 rgba(0,119,139,0);
}

#s4 .node6:hover .node7 {
  background: var(--mainColor);
}

#s4 .node6:hover .node9 {
  text-shadow: -100px 0 0 rgba(0,119,139,0), 0 0 0 rgba(0,119,139,1);
}

#s4 .node11 {
  width: 100%;
}

#s4 .slickNav {
  margin: 30px 0 0 0;
}

#s5 {
  overflow: hidden;
}

#s5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(0,0,0,.5);
}

#s5::after {
  content: "";
  position: absolute;
  left: 50vw;
  top: -2px;
  transform: skewX(25deg);
  width: 100vw;
  height: 6vw;
  z-index: 5;
  background: #fff;
}

#s5 .wrap {
  z-index: 10;
  display: flex;
  flex-direction: column;
}

#s5 .node1 {
  margin: 30px auto;
  max-width: 800px;
}

#s5 .node2 {
  min-width: 300px;
}

#s6 {
  background: var(--mainColor);
  z-index: 10;
  padding: 3vw 0;
}

#s6::after {
  position: absolute;
  content: "";
  left: -50vw;
  height: 4vw;
  bottom: calc(100% - 2px);
  width: 70vw;
  background: var(--mainColor);
  transform: skewX(25deg);
}

#s6 .node1 {
  margin: 30px 0 0 0;
  max-width: 600px;
  position: relative;
}

#s6 .node2 {
  position: absolute;
  top: 0;
  right: 0;
  color: transparent;
  background: none;
  border: none;
  padding: 10px;
  font-size: 16px;
  transform: rotate(180deg);
  cursor: pointer;
  overflow: hidden;
  text-shadow: 0 0 0 var(--secondColor), -30px 0 0 var(--secondColor);
}

#s6 .node2:hover {
  text-shadow: -30px 0 0 var(--secondColor), 0 0 0 var(--secondColor);
}

#s6 .form-check * {
  color: #fff;
}

#footerNode {
  background: var(--mainColor);
  padding: 3vw 0;
}

#footerNode a {
  color: #fff;
}

#footerNode .node1 {
  display: flex;
  justify-content: center;
}

#footerNode .node2 {
  font-size: 20px;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.5);
  margin: 5px;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 0 0 #fff, -40px 0 0 var(--mainColor);
}

#footerNode .node2:hover {
  background: #fff;
  color: transparent;
  opacity: 1;
  text-shadow: -40px 0 0 #fff, 0 0 0 var(--mainColor);
}

#footerNode .node3 {
  margin: 20px auto;
}

#footerNode .node4 {
  margin: 30px 0 0 0;
  font-size: 20px;
  opacity: .5;
}

#footerNode .node6 {
  padding: 10px 0;
  text-align: center;
}

#pageTitle {
  padding: 0;
  display: flex;
  align-items: flex-end;
  min-height: 40vh;
  background: var(--mainColor);
}

#pageTitle > div:last-of-type {
  opacity: .3 !important;
}

#pageTitle::before,
#pageTitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  width: 70vw;
  height: calc(100% + 8vw);
  background: #fff;
  transform: skewX(-25deg);
  z-index: 7;
}

#pageTitle::after {
  background: linear-gradient(to bottom, #e7e7e7 50%, rgba(255,255,255,0));
}

#pageTitle .wrap {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#pageTitle .node1 {
  position: relative;
  padding: 40px 0 0 0;
  font-size: 5vw;
  max-width: 70%;
  text-align: right;
}

#pageTitle .node1::before {
  content: "";
  position: absolute;
  right: calc(100% + 50px);
  width: 100vw;
  height: calc(100% + 2px);
  top: 10px;
  background: #fff;
  z-index: 2;
  transform: skewX(25deg);
}

#content {
  padding: 3vw 0 8vw 0;
  z-index: 10;
}

#content.c1 {
  overflow: hidden;
}


#content.c1.portofolio { padding: 3vw 0 3vw 0; }


#content.c1 .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#content.c1 .node1 {
  width: 45%;
  position: relative;
  z-index: 10;
}

#content.c1 .node1:last-of-type::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 150%;
  height: 100%;
  background: #e7e7e7;
  background: linear-gradient(to bottom, #e7e7e7 50%, rgba(255,255,255,0));
  transform: skewX(-25deg);
}

#content.c1 .node2 {
  width: 100%;
  z-index: 10;
  position: relative;
}

#content.c1 .node3 {
  margin: 4vh 0 4vh 4vh;
}

#content.c2 .node1 {
  max-width: 800px;
}

#content.c2 .node2 {
  display: flex;
  flex-wrap: wrap;
  margin: 4vw 0 0 0;
}

#content.c2 .node3 {
  width: 33.33%;
  padding: 20px 10px;
  position: relative;
}

#content.c2 .node3:nth-child(3n+1) {
  padding: 20px 20px 20px 0;
}

#content.c2 .node3:nth-child(3n+3) {
  padding: 20px 0 20px 20px;
}

#content.c2 .node4 {
  padding-top: 70%;
  position: relative;
  display: block;
}

#content.c2 .node5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#content.c2 .node4:hover .node5 {
  opacity: 0;
}

#content.c2 .node4:hover .node6 {
  background: rgba(0,119,139,.5);
}

#content.c2 .node6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

#content.c2 .node6::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid rgba(255,255,255,.5);
  /* transform: rotate(-15deg); */
}

#content.c2 .node6::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -30%;
  width: 70%;
  height: 50px;
  transform: skew(25deg);
  background: #fff;
}

#content.c2 .node7 {
  padding: 0 30px 30px 30px;
  display: flex;
  align-items: center;
  color: transparent;
  text-shadow: 0 0 0 #fff, -100px 0 0 rgba(255,255,255,0);
}

#content.c2 .node7::before {
  content: "\e908";
  font-family: "icomoon";
  transform: rotate(180deg);
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 50%;
}

#content.c2 .node4:hover .node7 {
  text-shadow: -100px 0 0 rgba(255,255,255,0), 0 0 0 #fff;
}

#content.c2 .node8 {
  max-width: 800px;
  margin: 30px 0 0 0;
}

#content.c3 .wrap {
  z-index: 10;
}

#content.c3 .node1 {
  max-width: 600px;
  margin: 0 0 4vw 0;
}

#content.c3 .node2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#content.c3 .node3 {
  width: 60%;
}

#content.c3 .node3:last-of-type {
  width: 40%;
  padding: 0 0 0 4vw;
}

#content.c3 .node4 {
  margin: 0 0 2vw 0;
}

#content.c3 .node5 {
  border-left: 1px solid #999;
}

#content.c3 .node6 {
  padding: 0 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

#content.c3 .node6.active {
  border-left: 3px solid var(--mainColor);
}

#content.c3 .node7 {
  padding: 2vw 0;
  cursor: pointer;
  color: transparent;
  text-shadow: 0 0 0 var(--mainColor), -100px 0 0 rgba(0,119,139,0);
  display: flex;
  align-items: center;
}

#content.c3 .node7::before {
  content: "\e908";
  font-family: "icomoon";
  font-size: 50%;
  display: block;
  margin: 0 10px 0 0;
  transform: rotate(-90deg);
}

#content.c3 .node6.active .node7::before {
  transform: rotate(90deg);
}

#content.c3 .node7:hover {
  text-shadow: -100px 0 0 rgba(0,119,139,0), 0 0 0 var(--mainColor);
}

#content.c3 .node7:not(:hover) {
  text-shadow: 0 0 0 var(--mainColor), -100px 0 0 rgba(0,119,139,0);
  transition: none;
}

#content.c3 .node8 {
  display: none;
  margin: 0 0 2vw 0;
}

#content.c3 .node6:first-child .node8 {
  display: block;
}

#content.c3 .node9 {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--mainColor);
  overflow: hidden;
  margin: 0 0 3vh 0;
}

#content.c3 .node10 {
  width: 30%;
  height: 0;
  padding-top: 18.75%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#content.c3 .node10::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 300%;
  height: 10px;
  background: var(--mainColor);
  transform: skew(25deg);
}

#content.c3 .node10::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 100%;
  height: 10px;
  background: #fff;
  transform: skew(25deg);
}

#content.c3 .node11 {
  width: 70%;
  margin: 0 0 5px 20px;
  color: transparent;
  text-shadow: 0 0 0 var(--mainColor), -50px 0 0 rgba(0,119,139,0);
}

#content.c3 .node9:hover .node11 {
  text-shadow: -50px 0 0 rgba(0,119,139,0), 0 0 0 var(--mainColor);
}

#content.c3 .node12 {
  margin: 5vh auto 0 auto;
  background: #fff;
  max-width: 800px;
  box-shadow: 0 0 5px rgba(0,0,0,.1);
}

#content.c3 .mainVideo {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* width: 50%;
	padding-bottom: 28.12%; */
	height: 0;
}

#content.c3 .mainVideo iframe {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#content.c4 {
  overflow: hidden;
}

#content.c4 .node4 {
  padding: 25px 0 40px 20px;
  max-width: 500px;
}

#content.c4 .node2 {
  display: flex;
  flex-wrap: wrap;
}

#content.c4 .node3 {
  width: 60%;
  position: relative;
  padding: 0 4vw 0 0;
  z-index: 10;
}

#content.c4 .node1 {
  position: relative;
}

#content.c4 .node5 {
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  z-index: 5;
}

#content.c4 .node3:last-of-type {
  padding: 0;
  width: 40%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  overflow: hidden;
}

#content.c4 .node3:last-of-type::after {
  content: "";
  position: absolute;
  left: -50%;
  top: -2px;
  width: 100%;
  height: 70px;
  background: #fff;
  transform: skewX(-25deg);
}

#content.c4 .node6 {
  margin: 6vw auto 0 auto;
  max-width: 800px;
}

#content.c4 .slickNav {
  margin: 20px 0 0 0;
}

#content.c4 .node7 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 0;
  padding-top: 56.25%;
}

#content.c4 .slick {
  box-shadow: 0 0 5px rgba(0,0,0,.1);
}

#content.c5 .node1 {
  max-width: 800px;
  margin: 0 0 4vw 0;
}

#content.c5 .node2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px dotted #ccc;
}

#content.c5 .node2:nth-child(even) {
  flex-direction: row-reverse;
}

#content.c5 .node3 {
  width: 50%;
}

#content.c5 .node4 {
  width: 100%;
  object-fit: cover;
}

#content.c5 .node5 {
  padding: 5vw;
}

#content.c5 .node6 {
  margin: 40px 0;
}

/* #content.c5 .node7 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: transparent;
  text-shadow: 0 0 0 var(--mainColor), -50px 0 0 rgba(0,119,139,0);
  padding: 10px 10px 10px 0;
  width: fit-content;
}

#content.c5 .node7::before {
  content: "\e908";
  font-family: "icomoon";
  display: block;
  transform: rotate(180deg);
  margin: 0 10px 0 0;
}

#content.c5 .node7:hover {
  text-shadow: -50px 0 0 rgba(0,119,139,0), 0 0 0 var(--mainColor);
} */

#content.c5 .node7 {
  min-width: 250px;
}

#content.c6 .node1 {
  max-width: 800px;
  margin: 0 0 4vw 0;
}

#content.c6 .node2 {
  display: flex;
  background: linear-gradient(to right, rgba(0,119,139,.2) 50%, rgba(0,119,139,.3) 50%);
}

#content.c6 .node3 {
  width: 50%;
  padding: 4vw;
  border-left: 1px solid #fff;
  position: relative;
}

#content.c6 .node3:first-of-type {
text-align: right;
border-left: none;
border-right: 1px solid #fff;
}

#content.c6 .node4 {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
}

#content.c6 .node5 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#content.c6 .node3:last-of-type .node5 {
  align-items: flex-start;
}

#content.c6 .node5 > * {
  padding: 10px 0;
  color: transparent;
  text-shadow: 0 0 0 var(--mainColor), -50px 0 0 rgba(0,119,139,0);
}

#content.c6 .node5 > *:hover {
  text-shadow: -50px 0 0 rgba(0,119,139,0), 0 0 0 var(--mainColor);
}

#content.c6 .node6 {
  background: rgba(0,119,139,.8);
  padding: 5vw;
  position: relative;
  overflow: hidden;
}

#content.c6 .node6::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -50%;
  width: 80%;
  height: 4vw;
  background: #fff;
  transform: skew(-25deg);
  z-index: 5;
}

#content.c6 .node3:first-of-type::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -50%;
  width: 80%;
  height: 4vw;
  background: #fff;
  transform: skew(-25deg);
  z-index: 5;
}


#content.c6 .formNode {
  max-width: 600px;
  margin: auto;
  z-index: 10;
}

#content.c6 .cta {
  max-width: 300px;
  margin: 10px 0 0 0;
  width: 100%;
}

#content.c6 .node7 {
  margin: 0 0 20px 0;
}

#content.c6 .node8 {
  text-shadow: 0 0 0 #333, -50px 0 0 rgba(0,119,139,0);
    font-size: 18px;
}

#content.c7 {
  padding: 3vw 0 0 0;
}

#content.c7 .node1 {
  max-width: 800px;
  margin: 0 0 4vw 0;
}

#content.c7 .node2 {
  min-height: 40vh;
  position: relative;
  overflow: hidden;
}

#content.c7 .node2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondColor);
  opacity: .8;
  z-index: 5;
}

#content.c7 .node3::after {
  background: var(--mainColor);
}

#content.c7 .node2 .wrap {
  z-index: 10;
}

#content.c7 .node4 {
  padding: 4vw 0 40px 0;
}

#content.c7 .node5 {
  max-width: 800px;
  margin: auto;
}

#content.c7 .node6 {
  padding: 0 0 10vw 0;
}

#content.c7 .node3 {
  padding: 10vw 0 5vw 0;
}

#content.c7 .node6::before,
#content.c7 .node3::before {
  z-index: 7;
  content: "";
  position: absolute;
  bottom: -2px;
  right: -50vw;
  width: 100vw;
  height: 6vw;
  background: var(--mainColor);
  transform: skewX(-25deg);
}

#content.c7 .node3::before {
  top: -2px;
  left: -50vw;
  background: #fff;
  bottom: initial;
}

#content.c7 .cta {
  width: 100%;
  max-width: 300px;
  margin: 30px 0 0 0;
}

#content.c7 .node6 .cta {
  background: #fff;
}

#content.c7 .node7 {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
}

#content.c7 .node8 {
  padding: 20px;
  text-align: center;
  border-right: 1px dashed #fff;
}

#content.c7 .node8:last-of-type {
  border-right: none;
}

#content.c8 {
  padding: 3vw 0 0 0;
}

#content.c8 .wrap {
  max-width: 1000px;
}

#content.c8 .node1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  border-bottom: 1px solid var(--mainColor);
}

#content.c8 .postCinzento.node1 {
  border-bottom: 1px solid #E7E7E7;
}

#content.c8 .node1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 20px;
  background: var(--mainColor);
}


#content.c8 .postCinzento.node1::after {
  background: #E7E7E7;
}

#content.c8 .node2 {
  width: 50%;
  position: relative;
  overflow: hidden;
}

#content.c8 .node3 {
  height: 100%;
  min-height: 200px;
}

#content.c8 .node2:last-of-type {
  padding: 30px 0 30px 4vw;
}

#content.c8 .node2:first-of-type {
  background: var(--mainColor);
}

#content.c8 .node2:last-of-type::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30%;
  width: 60%;
  height: 20px;
  background: var(--mainColor);
  transform: skewX(25deg);
}

#content.c8 .postCinzento .node2:last-of-type::after {
  background: #E7E7E7;
}


#content.c8 .node2:first-of-type::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -50%;
  width: 100%;
  height: 50px;
  background: #fff;
  transform: skewX(-25deg);
}

#content.c8 .node4 {
  color: #333;
  margin: 10px 0 0 0;
  padding: 10px 0 20px 0;
  position: relative;
  font-size: 12px;
}

#content.c8 .node4::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 10px;
  height: 1px;
  background: #999;
}

#content.c8 .node5 {
  color: #999;
  font-size: 12px;
}

#content.c8 .node5 > span {
  position: relative;
  margin: 0 10px 0 0;
}

#content.c8 .node6 {
  color: transparent;
  text-shadow: 0 0 0 var(--mainColor), -50px 0 0 rgba(0,119,139,0);
}

#content.c8 .node1:hover .node6 {
  text-shadow: -50px 0 0 rgba(0,119,139,0), 0 0 0 var(--mainColor);
}

#content.c8 .node1:hover .node3 {
  opacity: .5;
}

#content.c8 .node8 {
  min-width: 250px;
  margin: 10px 0 30px 0;
}

#content.c8 .node9 {
  margin: 0 0 10px 0;
  padding: 10px;
  background: var(--mainColor);
  width: fit-content;
}

#content.c8 .postCinzento .node9 {
    background: #E7E7E7;
    color: var(--mainColor);
}


#content.c9 .wrap {
  max-width: 1100px;
}

#content.c9 .node3 {
  max-width: 600px;
}

#content.c9 .node2 {
  margin: 15px 0 0 0;
  padding: 15px 0 30px 0;
  position: relative;
}

#content.c9 .node2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 10px;
  height: 2px;
  background: #999;
}

#content.c9 .slick {
  max-width: 700px;
  margin: 50px auto 10px auto;
}

#content.c9 .node4 {
  height: 0;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contactUs { width: 100%; text-align: center; margin-bottom: 40px; }
.contactUs .cta { width: 100%;max-width: 300px;padding: 15px; margin: auto; }


#content.c9 .node5 {
  margin: 15px 0 0 0;
  padding: 15px 0 0 0;
  border-top: 3px solid #ccc;
}

#content.c9 .node6 {
  margin: 30px 0 0 0;
}

#content.c9 .node7 {
  margin: 10px 2px;
  padding: 10px 0 0 0;
  border-top: 1px dashed #ccc;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

div.shareButton {
  margin: 0;
  background: var(--mainColor);
}

#content.c9 .node8 {
  margin: 30px 0 0 0;
}

#content.c9 .commentWidget {
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px dashed #ccc;
}

#content.c9 .commentWidget .comment {
  margin: 10px 0;
}

#content.c9 .commentWidget .author {
  padding: 0 0 0 20px;
  font-weight: 700;
}

#content.c9 .commentWidget .date {
  font-size: 16px;
}

#content.c9 .node10 {
  background: #333;
  width: fit-content;
  padding: 10px;
  margin: 0 0 20px 0;
}

#content.c9 .standardButton:hover {
  background: #333;
  transition: all .3s;
  color: #fff;
}

#content {
  /* background: linear-gradient(to top, #e7e7e7, #fff); */
  overflow: hidden;
}

#content::after {
  content: "";
  width: 80%;
  height: 100%;
  background: linear-gradient(to top, #e7e7e7, rgba(255,255,255,0));
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(25deg);
}

#content.portofolio::after { display: none; }

#bigWrap { 
  position: relative;
    overflow-x: hidden;
}

#bigWrap::before {
  content: "";
  width: 80%;
  height: 100%;
  background: linear-gradient(to top, #e7e7e7, rgba(255,255,255,0));
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(25deg);
}

#bigWrap #s2.portofolio { padding: 0; }
#bigWrap  #content.c6 .node3:first-of-type { border-right: none; }
#bigWrap #content.c6 .node3:first-of-type::after, #bigWrap #content.c6 .node6::after { display: none; }

#bigWrap #content.c6 .node3 { margin: auto; text-align: center; }
#bigWrap #content.c6 .node3:last-of-type .node5 { align-items: center; }


#content .wrap {
  z-index: 10;
}

#content.c2::after {
  content: "";
  width: 80%;
  height: 100%;
  background: #ebebeb;
  position: absolute;
  bottom: 0;
  left: 120%;
  transform: skewX(-45deg);
}

#content.c6::after,
#content.c7::after {
  display: none;
}

#content.c3::before,
#content.c5::before {
  content: "";
  width: 80%;
  height: 100%;
  background: #ebebeb;
  position: absolute;
  top: 0;
  right: -50%;
  transform: skewX(-25deg);
}

#content.c8::after {
    display: none;
}

#content .node1a {
  padding: 0 0 15px 0;
      margin: 0 0 15px 0;
      border-bottom: 1px solid #ccc;
      text-align: right;
      position: relative;
}

#content .node2a {
  position: absolute;
  top: 100%;
  z-index: 10;
      right: 0;
      box-shadow: 0 0 10px rgba(0,0,0,.2);
      background: #fff;
      opacity: 0;
      pointer-events: none;
}

#content .node3a {
  padding: 10px 15px;
  cursor: pointer;
  min-width: 200px;
}

#content .node3a:hover {
  background: var(--mainColor);
  color: #fff;
}

#content .node4a {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#content .node4a::after {
  content: "\e908";
  font-family: "icomoon";
  font-size: 14px;
  transform: rotate(-90deg);
  margin: 0 0 0 10px;
}

#content .node1a:hover > .node2a {
  opacity: 1;
  pointer-events: all;
}

#footerNode .node10 {
  display: flex;
  justify-content: center;
  padding: 10px 0 0 0;
}

/* Large Devices, Wide Screens */
@media (max-width : 1200px) {
  #headerNode .wrap {
    justify-content: flex-end;
  }

  #headerNode.active .wrap,
  #headerNode.on .wrap {
    justify-content: space-between;
  }

  #headerNode .burgerNode {
    display: block;
  }

  #headerNode .burgerNode.active .node3 {
    color: #fff;
  }

  #headerNode .node1 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--mainColor);
    padding: 10vh 0;
    overflow: auto;
  }

  #headerNode.active .node1,
  #headerNode.on .node1 {
    top: 100%;
    padding: 0 0 calc(10vh + 50px) 0;
  }

  #headerNode .node1.active {
    left: 0;
  }

  #headerNode .node4 {
    flex-direction: column;
    align-items: center;
  }

  #headerNode .node5 {
    text-align: center;
  }

  #headerNode .node6 {
    position: relative;
    margin: 20px 0 0 0;
    top: initial;
    right: initial;
  }

  #headerNode .node7 {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.5);
  }

  #headerNode .node8 {
    position: relative;
    background: rgba(255,255,255,.1);
    box-shadow: none;
    opacity: 1;
    pointer-events: all;
    overflow: auto;
    top: initial;
    display: none;
  }

  #headerNode .node10 {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    transform: rotate(-90deg);
    color: #fff;
    padding: 12px;
    background: rgba(0,0,0,.1);
    cursor: pointer;
    border-top: 1px solid rgba(255,255,255,.5);
  }

  #headerNode .node10.active::before {
    transform: rotate(180deg);
    display: block;
    transition: all .3s;
  }

  #headerNode .node7:hover > .node8 {
    pointer-events: all;
    opacity: 1;
    top: initial;
  }

  /* 50% */
  /* #headerNode .node8 {
    display: block;
    flex-wrap: wrap;
  }

  #headerNode .node9 {
    width: 100%;
  } */
  /* 50% */
}

/* Medium Devices, Desktops */
@media (max-width : 992px) {
  .size36 { font-size: 28px; }
  .size26 { font-size: 22px; }
  .size20 { font-size: 18px; }

  #s1::before {
    display: none;
  }

  #s1 .node2 {
    max-width: initial;
    width: 150px;
  }

  #s1 .node3 {
    margin: 0;
  }

  #s1 .node4 {
      margin: 3vh 0 10vh 0;
  }
    
  #s1 .node5 {
    margin: 1vh 0 0 0;
    display: none;
  }

  #s1 .node6 {
    padding: 10px;
  }

  #s1 .node100 { display: none; }
  
  #s2 .node2 {
    width: 50%;
  }

  #s2 .node4 {
    padding-top: 50%;
  }

  #s2 .node4::after,
  #s2 .node12::after {
    display: none;
  }

  #s3::after {
    top: -5vh;
    height: calc(100% + 5vh);
  }

  #s3 .size36 {
    font-size: 20px;
    max-width: 60%;
  }

  #s3 .node1,
  #s3 .node1:last-of-type {
    width: 100%;
    padding: 4vw 0;
  }

  #s4 .wrap {
    flex-direction: column;
  }

  #s4 .node1 {
    width: 100%;
  }

  #content.c1 .wrap {
    flex-direction: column;
  }

  #content.c1 .node1 {
    width: 100%;
    margin: 0 0 4vh 0;
  }

  #content.c1 .node2 {
    max-width: 500px;
  }

  #content.c1 .node1:last-of-type {
    margin: 0;
  }

  #content.c2 .node3 {
    width: 50%;
  }

  #content.c2 .node3:nth-child(2n+1) {
    padding: 20px 20px 20px 0;
  }

  #content.c2 .node3:nth-child(2n+2) {
    padding: 20px 0 20px 20px;
  }

  #content.c3 .node2 {
    flex-direction: column;
  }

  #content.c3 .node3,
  #content.c3 .node3:last-of-type {
    width: 100%;
    padding: 2vw 0;
  }

  #content.c9 .node7 > * {
    margin: 5px 0;
    width: 30%;
  }

  div.shareButton {
    width: 100%;
  }
    
  #bigWrap { 
      padding-top: 60px;
  }
}

/* Small Devices, Tablets */
@media (max-width : 768px) {
  #s4 .node5 {
    width: 100%;
  }

  #s4 .node5,
  #s4 .node5:last-of-type {
    width: 100%;
    padding: 40px 0;
  }

  #pageTitle {
    min-height: 30vh;
  }

  #pageTitle .node1 {
    font-size: 8vw;
  }

  #content {
    padding: 8vw 0;
  }

  #content.c2 .node3,
  #content.c2 .node3:nth-child(3n+1),
  #content.c2 .node3:nth-child(3n+3),
  #content.c2 .node3:nth-child(2n+2) {
    width: 100%;
    padding: 20px 0;
  }

  #content.c4 .node2 {
    flex-direction: column;
  }

  #content.c4 .node3 {
    width: 100%;
  }

  #content.c4 .node3:last-of-type {
    display: none;
  }

  #content.c5 .node2,
  #content.c5 .node2:nth-child(even) {
    flex-direction: column;
  }

  #content.c5 .node3 {
    width: 100%;
  }

  #content.c5 .node5 {
    padding: 5vw 0;
  }

  #content.c5 .node6 {
    margin: 20px 0;
  }

  #content.c6 .node2 {
    background: rgba(0,119,139,.2);
    flex-direction: column;
  }

  #content.c6 .node3,
  #content.c6 .node3:first-of-type {
    width: 100%;
    border-right: none;
    border-left: none;
    text-align: center;
    border-bottom: 10px solid #fff;
  }

  #content.c6 .node5,
  #content.c6 .node3:last-of-type .node5 {
    align-items: center;
  }

  #content.c7 .node7 {
    flex-direction: column;
    flex-wrap: wrap;
  }

  #content.c7 .node8 {
    padding: 20px;
    text-align: center;
    border-right: none;
    border-bottom: 1px dashed #fff;
  }

  #content.c7 .node8:last-of-type {
    border-bottom: none;
  }

  #content.c8 .node1 {
    flex-direction: column;
  }

  #content.c8 .node2 {
    width: 100%;
    padding: 0;
  }

  #content.c8 .node2:last-of-type::after {
    width: 100%;
  }

  #content.c9 .node7  {
    width: 100%;
    flex-direction: column;
  }

  #content.c9 .node7 > * {
    margin: 3px 0;
    width: 100%;
  }

  #footerNode,
  #s6 {
    padding: 6vw 0;
  }
}

/* Extra Small Devices, Phones */
@media (max-width : 576px) {
  #s2 .node2 {
    width: 100%;
  }

  #s2 .node4 {
    padding-top: 30%;
  }

  #s2 .node3 {
    position: relative;
    padding: 10vh 0;
  }

  #s2 .node1::after {
    display: none;
  }

  #s2 .node8 {
    color: #fff;
  }

  #s2 .node11 {
    flex-direction: column;
    width: 100%;
  }

  #s2 .node11::before {
    transform: rotate(-90deg);
    margin: 0;
    padding: 10px;
    left: initial;
  }

  #s2 .node11:hover::before {
    animation: none;
  }
}

/**********************************************/
/* FORMS DE FOOTER  */
/**********************************************/
.formNode input:not(.form-check-input):-ms-input-placeholder,
.formNode textarea:-ms-input-placeholder {
  color: rgba(255,255,255,.5);
}

.formNode input:not(.form-check-input)::-ms-input-placeholder,
.formNode textarea::-ms-input-placeholder {
  color: rgba(255,255,255,.5);
}

.formNode input:not(.form-check-input)::placeholder,
.formNode textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.formNode input:not(.form-check-input),
.formNode textarea {
  padding: 10px;
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  width: 100%;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.formNode button {

}

.formNode .form-check {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #fff;
}

.formNode .form-check-input {
  margin: 0 5px 0 0;
}

.formNode2 input:not(.form-check-input):-ms-input-placeholder,
.formNode2 textarea:-ms-input-placeholder {
  color: rgba(0,0,0,.5);
}

.formNode2 input:not(.form-check-input)::-ms-input-placeholder,
.formNode2 textarea::-ms-input-placeholder {
  color: rgba(0,0,0,.5);
}

.formNode2 input:not(.form-check-input)::placeholder,
.formNode2 textarea::placeholder {
  color: rgba(0,0,0,.5);
}

.formNode2 input:not(.form-check-input),
.formNode2 textarea {
  padding: 10px;
  background: none;
  border: 1px solid rgba(0,0,0,.5);
  color: #333;
  width: 100%;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.formNode2 button {

}

.formNode2 .form-check {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #333;
}

.formNode2 .form-check-input {
  margin: 0 5px 0 0;
}
/**********************************************/
/* FORMS DE FOOTER  */
/**********************************************/

/**********************************************/
/* LOGIN PAGE static-login.php  */
/**********************************************/
#login .form-wrap,
#passwordRecovery form {
  text-align: center;
  max-width: 500px;
  margin: auto;
  padding: 0 4vw;
}

#login .form-group,
#passwordRecovery .form-group {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}

#login .form-group:first-of-type {
  padding: 25px 0 0 0;
}

#login .form-group input,
#passwordRecovery .form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#login a,
#passwordRecovery a {
  color: #333;
}
/**********************************************/
/* LOGIN PAGE static-login.php  */
/**********************************************/

/**
 * Conditional CSS for Edge 12+.
 * @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
 */
@supports (-ms-ime-align:auto) {
	/* Conditional Edge styles */
}

/**
 * Conditional CSS for IE 8+ (and old Firefox 1.x).
 * @link: https://jeffclayton.wordpress.com/2015/04/07/css-hacks-for-windows-10-and-spartan-browser-preview/
 */
@media screen\0 {
	/* Conditional IE styles */
}
