/* Global Styles */
html,
body {
  width: 100%;
  height: 100%; }

::-webkit-scrollbar {
  width: 0px;
  /* remove scrollbar space */
  background: transparent;
  /* optional: just make scrollbar invisible */ }

/* Headers */
h1 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 52px;
  color: white;
  text-align: center;
  margin-bottom: 0px; }

h2 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 40px;
  color: white;
  text-align: center;
  margin-bottom: 0px; }

h3 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 34px;
  color: white;
  text-align: center;
  margin-bottom: 0px; }

p {
  font-size: 13px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  text-align: justify;
  -moz-text-align-last: center;
  text-align-last: center;
  text-justify: auto; }

/* Logo */
.logo_title {
  width: 400px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  color: white;
  text-align: center;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 80px; }

.logo_subtitle {
  width: 400px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 20px;
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.9); }

/* Buttons */
body {
  position: relative;
  font-family: sans-serif;
  font-size: 14px; }

a, a:visited, a:hover {
  text-decoration: none; }

.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.butn {
  position: relative;
  display: inline-block;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Open Sans Condensed', sans-serif;
  overflow: hidden;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer; }
  .butn:focus {
    outline: none; }

.butn-square {
  position: relative;
  display: inline-block;
  letter-spacing: 1.2px;
  margin: 5px;
  padding: 11px 16px;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer; }
  .butn-square:focus {
    outline: none; }

.butn-primary {
  color: white; }

.butn-dark {
  color: black; }

.butn-black {
  color: white; }

.butn-primary a, .butn-primary a:visited, .butn-primary a:hover {
  color: white;
  text-decoration: none; }

.butn-dark a, .butn-dark a:visited, .butn-dark a:hover {
  color: black;
  text-decoration: none; }

.butn-black a, .butn-black a:visited, .butn-black a:hover {
  color: white;
  text-decoration: none; }

.butn-border {
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box; }

.butn-animated {
  transition-property: color;
  transition-duration: 0.5s; }
  .butn-animated.butn-border.butn-primary {
    border: 1px solid white; }
  .butn-animated.butn-border.butn-dark {
    border: 1px solid white; }
  .butn-animated.butn-border.butn-black {
    border: 1px solid black; }
  .butn-animated.butn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: scaleY(0);
    transform-origin: 0 0%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    z-index: -1; }
  .butn-animated.butn-primary:hover {
    color: black;
    text-decoration: none; }
    .butn-animated.butn-primary:hover:before {
      transform: scaleY(1);
      transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66); }
  .butn-animated.butn-dark:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: scaleY(1);
    transform-origin: 0 0%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    z-index: -1; }
  .butn-animated.butn-dark:hover {
    color: white;
    text-decoration: none; }
    .butn-animated.butn-dark:hover.butn-dark:before {
      transform: scaleY(0);
      transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66); }
  .butn-animated.butn-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    transform: scaleY(1);
    transform-origin: 0 0%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    z-index: -1; }
  .butn-animated.butn-black:hover {
    color: black;
    text-decoration: none; }
    .butn-animated.butn-black:hover.butn-black:before {
      transform: scaleY(0);
      transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66); }

.text-vertical-center {
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.text-vertical-center h1 {
  margin: 0;
  padding: 0;
  font-size: 4.5em;
  font-weight: 700; }

/* Custom Button Styles */
.btn-dark {
  border-radius: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4); }

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

.btn-light {
  border-radius: 0;
  color: #333;
  background-color: white; }

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8); }

/* Custom Horizontal Rule */
hr.nav {
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 150px; }

hr.portfolio_rule {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  max-width: 300px;
  border-color: rgba(0, 0, 0, 0.7); }

hr.small {
  margin-top: 5px;
  margin-bottom: 20px;
  max-width: 100px; }

hr.medium {
  margin-top: 5px;
  margin-bottom: 20px;
  max-width: 175px; }

hr.large {
  margin-top: 5px;
  margin-bottom: 20px;
  max-width: 300px; }

/* Side Menu */
#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  right: 0;
  width: 249px;
  height: 100%;
  transform: translateX(250px);
  overflow: hidden;
  background: #000;
  border-left: 1px solid white;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s; }

.sidebar_container {
  position: relative;
  width: 250px;
  height: 100%;
  overflow: hidden; }

.sidebar_image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/sidebar.jpg) no-repeat center top scroll; }

.sidebar_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  overflow-y: hidden; }

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: hidden; }

.sidebar-nav li {
  font-size: 22px;
  line-height: 45px;
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif; }

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8); }

.sidebar-nav li a:hover {
  text-decoration: none;
  color: white; }

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none; }

.sidebar-nav > .sidebar-brand {
  height: 55px;
  font-family: 'Pathway Gothic One', sans-serif;
  text-align: center;
  font-size: 22px;
  line-height: 55px; }

.sidebar-nav > .sidebar-brand a {
  color: white; }

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none; }

#menu-toggle {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0; }

#sidebar-wrapper.active {
  right: 250px;
  width: 250px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s; }

.toggle {
  margin: 5px 5px 0 0; }

/* Header */
.header {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/bg.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover; }

.header_cover {
  position: relative;
  display: table;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35); }

.splitter {
  width: 100px;
  height: 5px;
  background-color: white; }

.cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35); }

.pad-60 {
  padding: 60px 0px; }

.mt-60 {
  margin-top: 60px; }

/* About */
.about {
  overflow: hidden;
  padding: 0px 0;
  background: url(../img/about_bg.jpg) no-repeat center center scroll;
  background-position: 18% 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  overflow-y: hidden; }

/* Services */
.skills {
  overflow: hidden;
  padding: 0px 0;
  background: url(../img/skills_bg.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  overflow-y: hidden; }

.skill {
  margin-top: 10px;
  width: 100%;
  height: 150px;
  font-family: 'Open Sans', sans-serif; }

.skill_no_img {
  width: 100%;
  height: 75px;
  font-family: 'Open Sans', sans-serif; }

.skill img {
  display: inline-block;
  width: 100%;
  height: 75px;
  object-fit: contain; }

.skill .img-con {
  padding-top: 10px;
  font-size: 55px;
  height: 75px;
  color: white; }

.skill .description {
  width: 100%;
  height: 40px;
  font-size: 12px;
  color: white; }

.skill_no_img .description {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: white; }

.skill .proficiency {
  width: 100%;
  height: 12px;
  font-size: 10px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8); }

.skill .bar_container {
  width: 100%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3); }

.skill .bar_container .bar {
  height: 12px;
  background-color: rgba(255, 255, 255, 0.9); }

.service-item {
  margin-bottom: 30px; }

/* Partners */
.partners {
  overflow: hidden;
  padding: 0px 0;
  background: url(../img/partners_bg.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  overflow-y: hidden; }

.partner {
  width: 100%;
  height: 175px;
  vertical-align: middle; }

.partner img {
  object-position: center;
  object-fit: contain;
  width: 100%;
  height: 100%; }

/* Callout */
.callout {
  display: table;
  width: 100%;
  height: 400px;
  color: #fff;
  background: url(../img/portfolio_bg.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover; }

.callout_cover {
  position: absolute;
  display: table;
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.4); }

/* Portfolio */
.fill {
  margin: 0px 0px;
  padding: 0px 0px; }

.portfolio {
  overflow: hidden;
  padding: 0px 0;
  width: 100%; }

.portfolio-item {
  margin: 0px 0px;
  overflow: hidden;
  height: 350px;
  font-size: 0; }

.portfolio-item-container {
  position: relative;
  display: flex;
  width: 160%;
  height: 100%;
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
  transition: 1s ease-in-out; }

.portfolio-item-container.pfl {
  margin-left: 0px; }

.portfolio-item-container.pfr {
  margin-left: -60%; }

.portfolio-item-container.pfl:hover {
  margin-left: -60%; }

.portfolio-item-container.pfr:hover {
  margin-left: 0%; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.portfolio-cover {
  display: inline-block;
  width: 62.5%;
  height: 100%;
  overflow: hidden; }

.portfolio-name {
  position: absolute;
  margin-top: 280px;
  width: 100%;
  margin-left: 40px;
  text-align: left;
  text-transform: uppercase;
  font-size: 42px;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.8);
  color: white;
  font-family: 'Pathway Gothic One', sans-serif; }

.portfolio-info {
  position: relative;
  display: inline-block;
  width: 36.5%;
  height: 100%;
  vertical-align: top; }

.portfolio-header {
  margin-left: 10px;
  margin-top: 10px;
  font-size: 28px;
  color: black;
  line-height: 28px;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Pathway Gothic One', sans-serif; }

.portfolio-subheader {
  margin-left: 10px;
  text-align: left;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Open Sans Condensed', sans-serif; }

.portfolio-description {
  margin-left: 10px;
  margin-right: 20px; }

.portfolio-description p {
  text-align: left;
  text-align: justify;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8); }

@media only screen and (max-width: 1024px) {
  .portfolio-description p {
    font-size: 10px; } }
.portfolio-link {
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: 20px;
  bottom: 10px;
  font-family: 'Open Sans Condensed', sans-serif; }

/* Call to Action */
.call-to-action {
  padding: 50px 0; }

.call-to-action .btn {
  margin: 10px; }

/* Contact */
.contact {
  overflow: hidden;
  padding: 0px 0;
  background: url(../img/contact_bg.jpg) no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  overflow-y: hidden; }

.contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none; }

.contact a:hover {
  color: white;
  text-decoration: none; }

.contact a:visited {
  color: white;
  text-decoration: none; }

.contact li {
  margin-top: 10px;
  width: 125px; }

.contact i {
  margin-bottom: 8px; }

/* Footer */
footer {
  background-color: black;
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 0; }

#to-top {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 5px; }

/*# sourceMappingURL=style.css.map */
