/* -------------------------------- 

Primary style

-------------------------------- */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font: 10pt "roboto", Arial, Helvetica, sans-serif;
}

a {
  color: #d35657;
  text-decoration: none;
}

/* -------------------------------- 

Navigation

-------------------------------- */
.cd-side-navigation {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  height: 100vh;
  width: 74px;
  overflow: hidden;
}

.cd-side-navigation::before {
  /* background color of the side navigation */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  width: 100%;
  background-color: #f5f5f5;
}

.cd-side-navigation ul {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cd-side-navigation a {
  display: block;
  position: relative;
  padding: 4em 0 1.5em;
  font-size: 1.2rem;
  text-align: center;
  color: #4a5261;
  -webkit-transition: background-color 0.2s, color 0.2s;
  -moz-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.cd-side-navigation a svg {
  /* this is the icon */
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 1.3em;
}

.cd-side-navigation a svg * {
  -webkit-transition: stroke 0.2s;
  -moz-transition: stroke 0.2s;
  transition: stroke 0.2s;
}

.cd-side-navigation a::after {
  /* 4px line to the right of the item - visible on hover */
  content: '';
  position: absolute;
  top: 0;
  right: -4px;
  height: 100%;
  width: 4px;
  background-color: #83b0b9;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}

.no-touch .cd-side-navigation a:hover {
  background-color: #08090b;
}

.no-touch .cd-side-navigation a:hover::after {
  opacity: 1;
}

.cd-side-navigation a.selected,
.no-touch .cd-side-navigation a.selected:hover {
  background-color: #ffffff;
  color: #131519;
}

.cd-side-navigation a.selected>svg *,
.no-touch .cd-side-navigation a.selected:hover>svg * {
  stroke: #83b0b9;
}

.cd-side-navigation li:nth-of-type(2) .selected>svg *,
.cd-side-navigation li:nth-of-type(2) .selected:hover>svg * {
  stroke: #d35657;
}

.cd-side-navigation li:nth-of-type(3) .selected>svg *,
.cd-side-navigation li:nth-of-type(3) .selected:hover>svg * {
  stroke: #343943;
}

.cd-side-navigation li:nth-of-type(4) .selected>svg *,
.cd-side-navigation li:nth-of-type(4) .selected:hover>svg * {
  stroke: #e4b162;
}

.cd-side-navigation li:nth-of-type(2) a::after {
  background-color: #d35657;
}

.cd-side-navigation li:nth-of-type(3) a::after {
  background-color: #343943;
}

.cd-side-navigation li:nth-of-type(4) a::after {
  background-color: #e4b162;
}

@media only screen and (min-width: 480px) {
  .cd-side-navigation {
    width: auto;
    top: 87px;
  }

  .cd-side-navigation a {
    padding: 1em;
    font-size: 1.3rem;
  }

  .cd-side-navigation a svg {
    top: 1.6em;
  }
}

li.list-group-item {
  padding: 0;
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  background-color: rgba(255, 255, 255, 0) !important;
}

a.list-group-item:hover,
button.list-group-item,
a.list-group-item,
button.list-group-item {
  background-color: rgba(255, 255, 255, 0) !important;
}

a.list-group-item {
  width: 62%;
}

span.pull-right.sbtn {
  margin-right: 8px;
  margin-top: 8px;
}

.btn {
  padding: 10px 14px !important;
}

.badge {
  padding: 3px 5px !important;
  background-color: #167ac6 !important;
  border-radius: 10px;
}

a.info-sb {
  padding-right: 10px;
}

.titulo2>h5 {
  color: #fff;
  margin: 12px;
}

header {
  background: rgba(12, 63, 115, 0.6) none repeat scroll 0% 0%;
  color: #fff;
  padding: 0 !important;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}










.gn-menu-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 13px;
  background-color: #2a375c;
  border-bottom: 3px solid #4badf1;
  -webkit-box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 17px -7px rgba(0, 0, 0, 0.75);
  z-index: 444;
}

.gn-menu-main,
.gn-menu-main ul {
  margin: 0;
  padding: 0;
  background: rgba(12, 63, 115, 1);
  color: #5f6f81;
  list-style: none;
  text-transform: none;
  font-weight: 300;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 30px;
  font-size: 13px;
}

.logo {
  background-image: url(../images/Logo.png);
  height: 115px;
  left: 0;
  width: 282px;
  float: left;
}

.titulo2 {
  float: left;
  height: 57px;
  width: 500px;
  display: flex;
}

.titulo2-app {
  font-size: 36px;
  color: #ffffff;
  margin-top: 9px;
}

.gn-menu-main li.gn-trigger {
  position: relative;
  width: 60px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  left: 5px;
}

.gn-menu-main>li {
  display: block;
  /* float: left; */
  float: right;
  height: 100%;
  /* border-right: 1px solid #c6d0da; */
  text-align: center;
  line-height: 55px;
}

.gn-menu-main>li:last-child {
  float: right;
  border-right: none;
  /* border-left: 1px solid #c6d0da; */
}

.gn-menu-main:after {
  display: table;
  clear: both;
  content: "";
}



/* -------------------------------- 

 Main Content

-------------------------------- */
.cd-main {
  height: 100vh;
  overflow: hidden;
}

.cd-section {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding-left: 70px;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s;
  transition: transform 0s 0.5s;
}

.cd-section.overflow-hidden {
  /* this class is used to hide the scrolling bar while a new section is entering the viewport */
  overflow: hidden;
}

.cd-section header {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #83b0b9;
  overflow: hidden;
}

.cd-section.services header {
  background-color: #d35657;
}

.cd-section.projects header {
  background-color: #343943;
}

.cd-section.contact header {
  background-color: #e4b162;
}

.cd-section .cd-scroll {
  /* this is the arrow at the bottom of the header */
  display: block;
  position: absolute;
  bottom: 60px;
  left: -webkit-calc(50vw - (74px - 4px)/2);
  left: calc(50vw - (74px - 4px)/2);
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0s 0.5s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s, visibility 0s 0.5s;
  transition: transform 0s 0.5s, visibility 0s 0.5s;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
}

.cd-section.visible {
  /* this is the visible/selected section */
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s 0s;
  -moz-transition: -moz-transform 0.5s 0s;
  transition: transform 0.5s 0s;
}

.cd-section.visible .cd-scroll {
  visibility: visible;
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.5s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s 0.5s, visibility 0s 0s;
  transition: transform 0.3s 0.5s, visibility 0s 0s;
  -webkit-animation: cd-scroll-down 1.2s 0.9s;
  -moz-animation: cd-scroll-down 1.2s 0.9s;
  animation: cd-scroll-down 1.2s 0.9s;
  -webkit-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

@media only screen and (min-width: 480px) {
  .cd-section {
    padding-left: 90px;
  }

  .cd-section .cd-scroll {
    left: -webkit-calc(50vw - (94px - 4px)/2);
    left: calc(50vw - (94px - 4px)/2);
  }
}

@-webkit-keyframes cd-scroll-down {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}

@-moz-keyframes cd-scroll-down {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }

  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}

@keyframes cd-scroll-down {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

.cd-title {
  position: absolute;
  top: 50%;
  left: 0;
  /* this prevents title from jumping when the section scroll bar is visible */
  width: calc(100vw - 90px);
  padding: 1em;
  color: #ffffff;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-80px);
  -moz-transform: translateY(-50%) translateX(-80px);
  -ms-transform: translateY(-50%) translateX(-80px);
  -o-transform: translateY(-50%) translateX(-80px);
  transform: translateY(-50%) translateX(-80px);
  -webkit-transition: -webkit-transform 0s 0.5s, opacity 0s 0.5s;
  -moz-transition: -moz-transform 0s 0.5s, opacity 0s 0.5s;
  transition: transform 0s 0.5s, opacity 0s 0.5s;
}

.cd-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cd-title span {
  opacity: 0.6;
}

.visible .cd-title {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s 0.3s, opacity 0.4s 0.3s;
  -moz-transition: -moz-transform 0.4s 0.3s, opacity 0.4s 0.3s;
  transition: transform 0.4s 0.3s, opacity 0.4s 0.3s;
}

@media only screen and (min-width: 768px) {
  .cd-title h2 {
    font-size: 5rem;
  }
}

.cd-content {
  padding: 2em 0;
  background-color: #ebebeb;
}

.cd-content p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 2em;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #999999;
}

@media only screen and (min-width: 768px) {
  .cd-content {
    padding: 4em 0;
  }

  .cd-content p {
    font-size: 1.6rem;
  }
}



/* -------------------------------- 

 Loading Bar

-------------------------------- */
#cd-loading-bar {
  position: fixed;
  z-index: 2;
  left: 70px;
  width: 4px;
  visibility: hidden;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

#cd-loading-bar.index {
  background-color: #83b0b9;
}

#cd-loading-bar.services {
  background-color: #d35657;
}

#cd-loading-bar.projects {
  background-color: #343943;
}

#cd-loading-bar.contact {
  background-color: #e4b162;
}

#cd-loading-bar.loading {
  visibility: visible;
}

@media only screen and (min-width: 480px) {
  #cd-loading-bar {
    left: 90px;
  }
}



.bnt-right {
  position: absolute;
  top: 10em;
  right: 0;
  z-index: 1233;
}

.btn-r>li {
  margin-bottom: 3em;
}

.ter>li {
  width: 32%;
}

.img-scale {
  height: 30px;
  width: 100%;
  background-size: contain;
}

.panel-body {
  padding: 10px !important;
}

.panel-heading {
  padding: 4px 15px !important;

}

.img-scale {
  transform-origin: top left;
  /* IE 10+, Firefox, etc. */
  -webkit-transform-origin: top left;
  /* Chrome */
  -ms-transform-origin: top left;
  /* IE 9 */
}

.rotate90 {
  /*transform: rotate(90deg) translateY(-100%);*/
  transform-origin: 110% 80%;
  -webkit-transform-origin: 110% 80%;
  -ms-transform-origin: 110% 80%;
  -webkit-transform: rotate(90deg) translateY(-38px) translateX(-211px);
  transform: rotate(90deg) translateY(-38px) translateX(-211px);
  -ms-transform: rotate(90deg) translateY(-38px) translateX(-211px);
  position: relative;
  /*top: -131px;
    left: 133px;*/

}

.form-control {
  height: 35px !important;
  padding: 4px 8px !important;
  font-size: 13px !important;
}

.input-group-addon {
  padding: 4px 8px !important;
  font-size: 13px !important;
}

li.list-group-item {
  border: 0 !important;
  border-style: none !important;
}


.s-switch input[type='checkbox'] {
  display: none
}

.s-switch {
  width: 62px;
  height: 32px;
  background: #E5E5E5;
  z-index: 0;
  margin: 0;
  padding: 0;
  appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  /*IE 11*/
  -moz-border-radius: 16px;
  /*Mozilla*/
  -webkit-border-radius: 16px;
  /*Chrome and Safari*/
}

.s-switch:before {
  content: ' ';
  background: #D9534F !important;
  position: absolute;
  left: 1px;
  top: 1px;
  width: 60px;
  height: 30px;
  background: #FFFFFF;
  z-index: 1;
  border-radius: 16px;
  /*IE 11*/
  -moz-border-radius: 16px;
  /*Mozilla*/
  -webkit-border-radius: 16px;
  /*Chrome and Safari*/
}

.s-switch:after {
  content: ' ';
  height: 29px;
  width: 29px;
  border-radius: 28px;
  z-index: 2;
  background: #FFFFFF;
  position: absolute;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  top: 1px;
  left: 3px;
  -webkit-box-shadow: 0 2px 5px #999999;
  box-shadow: 0 2px 5px #999999;
}

.s-switch-on,
.s-switch-on:before {
  background: #4DAF48 !important;
}

.s-switch-on:after {
  left: 31px !important;
}

.s-switch-readonly,
.s-switch-disabled {
  opacity: 0.8;
}

.toggle-handle {
  content: ' ';
  height: 12px;
  width: 12px;
  border-radius: 21px;
  padding: 0 !important;
  z-index: 2;
  background: #FFFFFF;
  position: relative;
  /* margin-right: 39px; */
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  top: -7px;
  /* left: 16px; */
  -webkit-box-shadow: 0 2px 5px #999999;
  box-shadow: 0 2px 5px #999999;
}

.toggle-handle:hover {
  background: #fff;
}

.toggle.btn {
  min-width: 26px;
  min-height: 14px;
  padding: 5px !important;
  border-radius: 20px;
}

.toggle {
  position: relative;
  overflow: hidden;
  margin-top: 3px;
  margin-right: 8px;
}

.toggle-group {
  position: absolute;
  width: 147%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 33;
  transition: left .35s;
  -webkit-transition: left .35s;
  -moz-user-select: none;
  -webkit-user-select: none;
  border-radius: 10px;
}

.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-off.btn {
  padding-left: 14px;
  width: 60px;
}

.toggle.off .toggle-group {
  left: -46%;
}

.toggle-on.btn {
  padding: 0 !important;
}

.toggle-off.btn {
  width: 20px;
  padding: 0 !important;
}

.icon-r:hover,
.icon:active {
  color: #fff;
}

@media (min-width: 768px) {

  .sidebar-tabs>li>a,
  .sidebar-tabs>ul>li>a {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    line-height: 3;
    color: inherit;
    padding: 19px 0;
    text-decoration: none;
    text-align: center;
  }

  .sidebar-tabs i {
    font-size: 20px;
  }

  .sidebar-tabs span {
    font-size: 13px;
    line-height: 1;
  }

  .sidebar.collapsed {
    width: 91px;
  }

  .sidebar-tabs,
  .sidebar-tabs>ul {
    position: absolute;
    width: 90px;
    margin: 0;
    padding: 0;
  }

  .sidebar-left .sidebar-content {
    left: 90px;
    right: 0;
  }
}

@media (max-width: 767px) {
  .sidebar-tabs span {
    display: none;
  }
}

.form-check-input {
  background-color: #d35657;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important
}

.form-check-input:focus {
  outline:none !important
}


.form-check-input:checked {
  background-color: #4DAF48;
}


