@charset "UTF-8";
/******

CSS Styling for the Jordan Template
--------

1. Import
2. Basic
3. Navigation
4. Sections
5. Owl Carousel Overwrite
6. Responsiveness
7. IE Compatibility

******/
/* 1. Import */
/*------------------------------------------------------------------
[Table of contents]

1. CSS transition (prefixed) / .transition 
2. CSS transform (prefixed) / .transform 
3. CSS transition with transform added (prefixed) / .transition-transform
4. CSS animation (prefixed) / .animation 
5. CSS transition-delay (prefixed) / .transition-delay 
6. CSS transform-origin (prefixed) / .transform-origin 

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

CSS Flex (Prefixed)
--------
1. Flex
2. Align Items
3. Justify Content

******/
.display-flex {
  display: -webkit-flex;
  display: flex;
}
/* 2. Basic */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
@keyframes scroll-down {
  0%,
  100% {
    border-color: #1a6495;
  }
  50% {
    border-color: #a6d2ef;
  }
}
@-webkit-keyframes scroll-down {
  0%,
  100% {
    border-color: #1a6495;
  }
  50% {
    border-color: #a6d2ef;
  }
}
/*
	Loader
	Adapted from: http://www.w3schools.com/howto/howto_css_loader.asp
*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
	Custom Scrollbar Styling
	Adapted from: http://cssdeck.com/labs/css3-webkit-vertical-scrollbars/
*/
::-webkit-scrollbar-track {
  background-color: #999999;
}
::-webkit-scrollbar {
  width: 9px;
  background-color: #999999;
}
::-webkit-scrollbar-thumb {
  background-color: #4fa5e0;
}
.uppercase {
  text-transform: uppercase;
}
.list-reset {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
iframe {
  border-width: 0;
}
.img-as-bg {
  display: none;
}
.animation-chain {
  visibility: hidden;
}
.overflow-hidden {
  overflow: hidden;
}
.animated {
  visibility: visible;
  animation-duration: 0.6s;
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.bgPrimaryColor {
  background-color: #268fd6;
  color: #fff;
}
.bgPrimaryColor h1,
.bgPrimaryColor h2,
.bgPrimaryColor h3,
.bgPrimaryColor h4,
.bgPrimaryColor h5,
.bgPrimaryColor h6 {
  color: #fff;
}
.bgPrimaryColor a:link,
.bgPrimaryColor a:visited {
  color: #fff;
}
.bgPrimaryColor a:link:after,
.bgPrimaryColor a:visited:after {
  background-color: #fff;
}
.bgDarkGray {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.bgDarkGray h1,
.bgDarkGray h2,
.bgDarkGray h3,
.bgDarkGray h4,
.bgDarkGray h5,
.bgDarkGray h6 {
  color: #fff;
}
.bgLightGray {
  background-color: #e6e6e6;
}
a:link,
a:visited {
  display: inline-block;
  text-decoration: none;
  color: #4d4d4d;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  outline: 0;
}
a:link:after,
a:visited:after {
  content: '';
  display: block;
  width: 100%;
  bottom: -4px;
  height: 2px;
  background-color: #268fd6;
  -webkit-transform: scale3d(0,1,1);
  -o-transform: scale3d(0,1,1);
  -ms-transform: scale3d(0,1,1);
  transform: scale3d(0,1,1);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  position: absolute;
}
a:hover,
a:active,
a:focus {
  outline: 0;
}
a:hover:after,
a:active:after,
a:focus:after {
  -webkit-transform: scale3d(1,1,1);
  -o-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}
input[type='submit'],
a.btn {
  background-color: #268fd6;
  color: #fff;
  border-width: 0;
  font-size: 1em;
  padding: .8em 2em;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 0;
  outline: none;
  line-height: inherit;
  border-radius: 24px;
}
input[type='submit'] h1,
a.btn h1,
input[type='submit'] h2,
a.btn h2,
input[type='submit'] h3,
a.btn h3,
input[type='submit'] h4,
a.btn h4,
input[type='submit'] h5,
a.btn h5,
input[type='submit'] h6,
a.btn h6 {
  color: #fff;
}
input[type='submit'] a:link,
a.btn a:link,
input[type='submit'] a:visited,
a.btn a:visited {
  color: #fff;
}
input[type='submit'] a:link:after,
a.btn a:link:after,
input[type='submit'] a:visited:after,
a.btn a:visited:after {
  background-color: #fff;
}
input[type='submit']:link,
a.btn:link,
input[type='submit']:visited,
a.btn:visited {
  color: #fff;
}
input[type='submit']:link:after,
a.btn:link:after,
input[type='submit']:visited:after,
a.btn:visited:after {
  display: none;
}
input[type='submit']:hover,
a.btn:hover,
input[type='submit']:active,
a.btn:active {
  background-color: #1e72ab;
  text-decoration: none;
  color: #fff;
  box-shadow: none;
}
a.btn-outline {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(38, 143, 214, 0.4);
  color: #268fd6;
}
a.btn-outline:link,
a.btn-outline:visited {
  color: #268fd6;
}
a.btn-outline:link:after,
a.btn-outline:visited:after {
  display: none;
}
a.btn-outline:hover,
a.btn-outline:active {
  background-color: #1e72ab;
  text-decoration: none;
  color: #fff;
  box-shadow: none;
}
a.btn-sm {
  font-size: .9em;
  letter-spacing: 2px;
  padding: .65em 1.8em;
}
span.highlight {
  display: inline-block;
  background-color: #268fd6;
  color: #fff;
  border-radius: 4px;
  font-family: Oswald, sans-serif;
  font-size: .7em;
  text-transform: uppercase;
  padding: 0 5px;
  letter-spacing: 1px;
  height: 19px;
  line-height: 19px;
}
html,
body {
  height: 100% !important;
}
body {
  font-size: 15px;
  line-height: 1.6;
  font-family: Merriweather, serif;
  color: #999999;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: Oswald, sans-serif;
  line-height: 1.3;
  color: #4d4d4d;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
img {
  max-width: 100%;
}
img.img-vertical {
  max-height: 400px;
  width: auto !important;
  margin: 0 auto;
}
svg {
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.row + .row {
  margin-top: 2em;
}
.nav-tabs > li > a:link:after,
.nav-tabs > li > a:visited:after {
  display: none;
}
.panel-heading a:link:after,
.panel-heading a:visited:after {
  display: none;
}
ul.social {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}
ul.social > li {
  display: inline-block;
  height: 48px;
  width: 48px;
  font-size: 2.4em;
  line-height: 54px;
  text-align: center;
  border-radius: 48px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
ul.social > li:hover {
  background-color: #1e72ab;
}
ul.social > li a:link:after,
ul.social > li a:visited:after {
  display: none;
}
ul.social > li a:hover,
ul.social > li a:active {
  color: #fff;
}
/* 3. Navigation */
nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
nav ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: Oswald, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 2em;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: none;
}
nav ul.menu ul.sub-menu {
  display: none;
}
nav ul.menu > li {
  text-align: center;
  margin: .7em 0;
  -webkit-transform: translate3d(0, 20px, 0);
  -o-transform: translate3d(0, 20px, 0);
  -ms-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul.menu > li a:link,
nav ul.menu > li a:visited {
  color: #fff;
  position: relative;
}
nav ul.menu > li a:link.current:before,
nav ul.menu > li a:visited.current:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(-40px, -10px, 0);
  -o-transform: translate3d(-40px, -10px, 0);
  -ms-transform: translate3d(-40px, -10px, 0);
  transform: translate3d(-40px, -10px, 0);
  width: 0;
  height: 0;
  content: '';
  display: block;
  border-top: 10px solid transparent;
  border-left: 20px solid #268fd6;
  border-bottom: 10px solid transparent;
}
nav ul.menu > li a:link:after,
nav ul.menu > li a:visited:after {
  display: none;
}
nav ul.menu > li a:hover,
nav ul.menu > li a:active {
  color: #268fd6;
}
nav button.open-menu {
  position: absolute;
  top: 64px;
  right: 80px;
  text-indent: -9999px;
  border-width: 0;
  height: 40px;
  width: 40px;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: transparent;
  overflow: hidden;
}
nav button.open-menu:before,
nav button.open-menu:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav button.open-menu:before {
  box-shadow: 10px 16px 0 #cccccc;
}
nav button.open-menu:after {
  -webkit-transform: translate3d(0, 32px, 0);
  -o-transform: translate3d(0, 32px, 0);
  -ms-transform: translate3d(0, 32px, 0);
  transform: translate3d(0, 32px, 0);
  width: 75%;
}
nav.opened {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
nav.opened ul.menu {
  display: block;
}
nav.opened ul.menu.show-menu-items > li {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
nav.opened button.open-menu {
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
nav.opened button.open-menu:before {
  -webkit-transform: translate3d(0, 19px,0) rotate(45deg);
  -o-transform: translate3d(0, 19px,0) rotate(45deg);
  -ms-transform: translate3d(0, 19px,0) rotate(45deg);
  transform: translate3d(0, 19px,0) rotate(45deg);
  box-shadow: 0 -17px 0 transparent;
}
nav.opened button.open-menu:after {
  width: 100%;
  -webkit-transform: translate3d(0, 19px,0) rotate(-45deg);
  -o-transform: translate3d(0, 19px,0) rotate(-45deg);
  -ms-transform: translate3d(0, 19px,0) rotate(-45deg);
  transform: translate3d(0, 19px,0) rotate(-45deg);
}
nav:not(.opened) button.open-menu:hover:before {
  box-shadow: 10px 14px 0 #cccccc;
}
nav:not(.opened) button.open-menu:hover:after {
  -webkit-transform: translate3d(0, 28px, 0);
  -o-transform: translate3d(0, 28px, 0);
  -ms-transform: translate3d(0, 28px, 0);
  transform: translate3d(0, 28px, 0);
}
/* 4. Sections */
section {
  padding: 80px;
  position: relative;
}
section.no-padding-top {
  padding-top: 0;
}
section.section-hero {
  background-color: #4d4d4d;
  height: 100%;
  min-height: 320px;
  position: relative;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
section.section-hero .hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  z-index: 1;
  opacity: 0.3;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
section.section-hero .hero-slides .animated {
  animation-duration: 2s;
}
section.section-hero .hero-slides .owl-stage-outer,
section.section-hero .hero-slides .owl-stage,
section.section-hero .hero-slides .owl-item {
  height: 100%;
}
section.section-hero .hero-slides .owl-dots {
  position: absolute;
  top: 60px;
  left: 80px;
  margin-top: 0;
  display: none;
}
section.section-hero .hero-slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
section.section-hero > * {
  position: relative;
  z-index: 3;
}
section.section-hero h1 {
  margin-top: 20%;
  font-size: 4.5em;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 300;
  color: #fff;
}
section.section-hero .titles {
  margin-bottom: 100px;
  overflow: hidden;
  min-height: 42px;
  font-size: 1.75em;
}
section.section-hero .titles span {
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
section.section-hero .titles ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section.section-hero .titles ul > li {
  visibility: hidden;
}
section.section-hero .down-arrow {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  margin-top: -1px;
  border-left-width: 0;
  border-top-width: 0;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  visibility: hidden;
}
section.section-hero .down-arrow.play {
  animation: scroll-down 2s ease-in-out infinite;
  visibility: visible;
}
section.section-hero .down-arrow:nth-child(1) {
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
section.section-hero .down-arrow:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
section.section-hero .down-arrow:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
section.section-hero .btm {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  left: 0;
  right: 0;
  bottom: 80px;
}
section.section-hero .btm > .left {
  margin-left: 16.5%;
}
section.section-hero .btm > .right {
  margin-right: 80px;
}
section.section-hero .btm .scroll-down-indicator {
  -webkit-transform: translate3d(-50%,0,0);
  -o-transform: translate3d(-50%,0,0);
  -ms-transform: translate3d(-50%,0,0);
  transform: translate3d(-50%,0,0);
  cursor: pointer;
}
section.section-hero .btm ul.connect {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}
section.section-hero .btm ul.connect > li {
  display: inline-block;
  height: 48px;
  width: 48px;
  font-size: 2.4em;
  line-height: 54px;
  text-align: center;
  border-radius: 48px;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
section.section-hero .btm ul.connect > li:hover {
  background-color: #1e72ab;
}
section.section-hero .btm ul.connect > li a:link,
section.section-hero .btm ul.connect > li a:visited {
  color: rgba(255, 255, 255, 0.8);
}
section.section-hero .btm ul.connect > li a:link:after,
section.section-hero .btm ul.connect > li a:visited:after {
  display: none;
}
section.section-hero .btm ul.connect > li a:hover,
section.section-hero .btm ul.connect > li a:active {
  color: #fff;
}
section.section-hero svg.hero-triangles {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 33%;
}
section.section-hero svg.hero-triangles > .primary-triangle {
  fill: #268fd6;
}
section.section-hero svg.hero-triangles > .gray-triangle {
  fill: #000;
  opacity: .5;
}
section h2 {
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 2em;
  font-weight: 300;
}
section.section-about-me {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
  padding: 0;
}
section.section-about-me svg.triangle {
  position: absolute;
  top: 0;
  left: 27%;
  width: 18%;
  height: auto;
  z-index: 1;
}
section.section-about-me svg.triangle > path {
  fill: #268fd6;
  opacity: .5;
}
section.section-about-me .profile-pic {
  width: 45%;
  position: relative;
  background-color: #e6e6e6;
  min-height: 350px;
}
section.section-about-me .profile-pic .photo-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: 0.7;
  background-size: cover;
  background-position: center center;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
  z-index: 0;
}
section.section-about-me .details {
  width: 55%;
  padding: 80px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
section.section-about-me .details ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section.section-about-me .details ul > li .field-title {
  color: #268fd6;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-right: 10px;
  font-size: 1em;
}
section.section-about-me .details ul > li .field-content {
  color: #4d4d4d;
  font-size: 1.2em;
}
section.section-about-me .details ul > li .field-title,
section.section-about-me .details ul > li .field-content {
  display: inline-block;
  margin-bottom: 20px;
  vertical-align: middle;
}
section.section-about-me .details .intro {
  margin-top: 2em;
  font-size: 1.2em;
}
section.section-blog {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 0;
}
section.section-blog ul.post-categories {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: .75em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: Oswald, sans-serif;
  position: relative;
  box-shadow: 0 0 0 1px rgba(38, 143, 214, 0.5);
  display: inline-block;
  padding: 0 .75em;
}
section.section-blog ul.post-categories > li {
  display: inline-block;
  position: relative;
  z-index: 1;
}
section.section-blog ul.post-categories > li a:link:after,
section.section-blog ul.post-categories > li a:visited:after {
  display: none;
}
section.section-blog ul.post-categories > li + li {
  padding-left: 5px;
}
section.section-blog ul.post-categories > li:not(:last-child):after {
  content: '/';
  display: inline-block;
  position: relative;
  left: 4px;
}
section.section-blog ul.post-categories a:link,
section.section-blog ul.post-categories a:visited {
  color: #268fd6;
}
section.section-blog h3.entry-title {
  margin: .25em 0;
  font-size: 1.5em;
  color: #4d4d4d;
  font-family: Oswald, sans-serif;
  position: relative;
  visibility: hidden;
}
section.section-blog h3.entry-title span {
  display: inline-block;
}
section.section-blog h3.entry-title a:link:after,
section.section-blog h3.entry-title a:visited:after {
  display: none;
}
section.section-blog h3.entry-title a:hover,
section.section-blog h3.entry-title a:active {
  color: #268fd6;
}
section.section-blog ul.entry-meta {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #e6e6e6;
  font-size: .85em;
}
section.section-blog ul.entry-meta > li {
  display: inline-block;
  position: relative;
}
section.section-blog ul.entry-meta > li.byline {
  font-style: italic;
}
section.section-blog ul.entry-meta > li + li {
  padding-left: 20px;
}
section.section-blog ul.entry-meta > li a:link,
section.section-blog ul.entry-meta > li a:visited {
  color: #676767;
}
section.section-blog ul.entry-meta > li a:link:after,
section.section-blog ul.entry-meta > li a:visited:after {
  display: none;
}
section.section-blog ul.entry-meta > li a:link + a,
section.section-blog ul.entry-meta > li a:visited + a {
  margin-left: 10px;
}
section.section-blog ul.entry-meta > li a:hover,
section.section-blog ul.entry-meta > li a:active {
  color: #268fd6;
}
section.section-blog ul.entry-meta + .entry-content {
  margin-top: 2em;
}
section.section-blog .entry-content {
  font-size: .9em;
  line-height: 1.8;
  text-align: left;
}
section.section-blog .entry-content a.more-link {
  color: #268fd6;
  font-size: 1em;
  font-style: italic;
  display: block;
  text-align: center;
}
section.section-blog .entry-content a.more-link span.lnr {
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: -webkit-transform .3s ease;
  -moz-transition: -moz-transform .3s ease;
  -o-transition: -o-transform .3s ease;
  transition: transform .3s ease;
}
section.section-blog .entry-content a.more-link:link:after,
section.section-blog .entry-content a.more-link:visited:after {
  display: none;
}
section.section-blog .entry-content a.more-link:hover span.lnr,
section.section-blog .entry-content a.more-link:active span.lnr {
  -webkit-transform: translate3d(5px,0,0);
  -o-transform: translate3d(5px,0,0);
  -ms-transform: translate3d(5px,0,0);
  transform: translate3d(5px,0,0);
}
section.section-blog .featured,
section.section-blog .latest {
  padding: 80px;
  width: 55%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
section.section-blog .featured {
  position: relative;
}
section.section-blog .featured .featured-img {
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: contrast(50%) grayscale(1);
  -moz-filter: contrast(50%) grayscale(1);
  -ms-filter: contrast(50%) grayscale(1);
  filter: contrast(50%) grayscale(1);
}
section.section-blog .featured .wrapper {
  position: relative;
  z-index: 1;
}
section.section-blog .featured .wrapper h2 {
  color: #fff;
}
section.section-blog .featured .wrapper article {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 2em;
  text-align: center;
}
section.section-blog .latest {
  width: 45%;
  text-align: center;
}
section.section-blog .latest .wrapper > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-bottom: 40px;
}
section.section-blog .latest .wrapper > ul > li + li {
  padding-top: 1.25em;
  margin-top: 1.25em;
  position: relative;
}
section.section-blog .latest .wrapper > ul > li + li:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  visibility: visible;
}
section.section-experience-education {
  padding-top: 90px;
}
section.section-experience-education svg.holes {
  position: absolute;
  top: 1em;
  width: 100%;
  height: auto;
  left: 0;
}
section.section-experience-education svg.holes > circle,
section.section-experience-education svg.holes > path {
  fill: #fff;
}
section.section-experience-education svg.waves {
  display: none;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  z-index: 1;
}
section.section-experience-education svg.waves > path {
  fill: #268fd6;
}
section ul.timeline {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  color: #fff;
  margin: 0 auto;
}
section ul.timeline:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: -20px;
  left: 50%;
  width: 2px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
section ul.timeline > li {
  width: 50%;
  position: relative;
  padding: 1.5em 0;
}
section ul.timeline > li:last-child {
  margin-bottom: 0;
}
section ul.timeline > li h3 {
  font-size: 1.5em;
}
section ul.timeline > li h4 {
  color: #93c7eb;
  font-size: .9em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
section ul.timeline > li .date {
  margin-bottom: 2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8em;
  font-family: Oswald, sans-serif;
}
section ul.timeline > li p {
  color: #beddf3;
}
section ul.timeline > li:before,
section ul.timeline > li:after,
section ul.timeline > li .icon {
  position: absolute;
  top: 4.6em;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
  display: block;
  background-color: #268fd6;
}
section ul.timeline > li .icon {
  z-index: 1;
}
section ul.timeline > li .icon,
section ul.timeline > li .icon > img {
  height: 40px;
  width: auto;
}
section ul.timeline > li .icon:before {
  position: absolute;
  content: '';
  display: block;
  height: 1px;
  width: 55px;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}
section ul.timeline > li .icon:after {
  position: absolute;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  box-shadow: 0 0 0 6px #fff;
  top: 50%;
  background-color: #268fd6;
}
section ul.timeline > li:before {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  box-shadow: 0 0 0 2px #fff;
}
section ul.timeline > li:after {
  width: 22px;
  height: 44px;
}
section ul.timeline > li:nth-child(odd) {
  left: 50%;
  padding-left: 40px;
}
section ul.timeline > li:nth-child(odd):before {
  left: -20px;
}
section ul.timeline > li:nth-child(odd):after {
  left: -23px;
}
section ul.timeline > li:nth-child(odd) .icon {
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-100%) translateX(-61px);
  -o-transform: translateY(-50%) translateX(-100%) translateX(-61px);
  -ms-transform: translateY(-50%) translateX(-100%) translateX(-61px);
  transform: translateY(-50%) translateX(-100%) translateX(-61px);
}
section ul.timeline > li:nth-child(odd) .icon:before,
section ul.timeline > li:nth-child(odd) .icon:after {
  left: 100%;
  margin-left: 5px;
}
section ul.timeline > li:nth-child(odd) .icon:after {
  margin-left: 0;
  -webkit-transform: translateY(-50%) translateX(-50%) translateX(61px);
  -o-transform: translateY(-50%) translateX(-50%) translateX(61px);
  -ms-transform: translateY(-50%) translateX(-50%) translateX(61px);
  transform: translateY(-50%) translateX(-50%) translateX(61px);
}
section ul.timeline > li:nth-child(even) {
  padding-right: 40px;
  text-align: right;
}
section ul.timeline > li:nth-child(even):before {
  right: -20px;
}
section ul.timeline > li:nth-child(even):after {
  right: -23px;
}
section ul.timeline > li:nth-child(even) .icon {
  right: 0;
  -webkit-transform: translateY(-50%) translateX(100%) translateX(61px);
  -o-transform: translateY(-50%) translateX(100%) translateX(61px);
  -ms-transform: translateY(-50%) translateX(100%) translateX(61px);
  transform: translateY(-50%) translateX(100%) translateX(61px);
}
section ul.timeline > li:nth-child(even) .icon:before,
section ul.timeline > li:nth-child(even) .icon:after {
  right: 100%;
  margin-right: 5px;
}
section ul.timeline > li:nth-child(even) .icon:after {
  margin-right: 0;
  -webkit-transform: translateY(-50%) translateX(50%) translateX(-61px);
  -o-transform: translateY(-50%) translateX(50%) translateX(-61px);
  -ms-transform: translateY(-50%) translateX(50%) translateX(-61px);
  transform: translateY(-50%) translateX(50%) translateX(-61px);
}
section.section-skills-knowledge:before,
section.section-skills-knowledge .triangle:before {
  display: block;
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  margin-left: -25px;
  background-color: #e6e6e6;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 0;
}
section.section-skills-knowledge .triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
section.section-skills-knowledge .triangle:before {
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  background-color: #fff;
  -webkit-transform: translateX(50%) translateY(50%) rotate(-45deg);
  -o-transform: translateX(50%) translateY(50%) rotate(-45deg);
  -ms-transform: translateX(50%) translateY(50%) rotate(-45deg);
  transform: translateX(50%) translateY(50%) rotate(-45deg);
}
section.section-skills-knowledge .skill-icon {
  text-align: center;
  font-size: 77px;
  color: #268fd6;
  line-height: 1;
  margin-bottom: .2em;
}
section.section-skills-knowledge .skill-icon img {
  height: 77px;
  width: auto;
}
section.section-skills-knowledge .skill-icon > span {
  display: inline-block;
}
section.section-skills-knowledge h3 {
  text-align: center;
  color: #4d4d4d;
  margin-bottom: .6em;
  font-size: 1.5em;
}
section.section-skills-knowledge h3 + ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
section.section-skills-knowledge h3 + ul > li {
  position: relative;
}
section.section-skills-knowledge h3 + ul > li span.highlight {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 1em;
  margin-top: -10px;
}
section.section-portfolio {
  position: relative;
  overflow: hidden;
}
section.section-portfolio:before,
section.section-portfolio:after {
  position: absolute;
  content: '';
  display: block;
  bottom: 100%;
  left: 0;
  width: 350px;
  height: 350px;
  background-color: #207ab6;
  -webkit-transform-origin: 0 bottom;
  transform-origin: 0 bottom;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: -1;
}
section.section-portfolio:after {
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 270px;
  height: 270px;
  background-color: #268fd6;
  box-shadow: 0 0 0 1px #268fd6;
}
section.section-portfolio > * {
  z-index: 1;
}
section.section-portfolio .portfolio-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.7);
}
section.section-portfolio .portfolio-overlay:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #268fd6;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  animation: spin 1s linear infinite;
}
section.section-portfolio .portfolio-overlay.opened {
  opacity: 1;
}
section.section-portfolio .portfolio-overlay.loaded:before {
  display: none;
}
section.section-portfolio .portfolio-overlay .portfolio-modal {
  width: 80%;
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav {
  position: absolute;
  bottom: 100%;
  right: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #268fd6;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h1,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h2,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h3,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h4,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h5,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav h6 {
  color: #fff;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav a:link,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav a:visited {
  color: #fff;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav a:link:after,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav a:visited:after {
  background-color: #fff;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav:before {
  display: block;
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #268fd6;
  width: 60px;
  height: 60px;
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav:after {
  position: absolute;
  content: '';
  display: block;
  top: 100%;
  height: 50px;
  width: 170px;
  right: 0;
  background-color: #fff;
  z-index: 1;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li {
  font-size: 1.25em;
  text-align: center;
  width: 0;
  height: 40px;
  line-height: 40px;
  background-color: #268fd6;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li:hover {
  background-color: #1e72ab;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li.enabled {
  width: 40px;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:link,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:visited {
  color: #fff;
  display: block;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:link:after,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:visited:after {
  display: none;
}
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:hover,
section.section-portfolio .portfolio-overlay .portfolio-modal ul.modal-nav > li a:active {
  text-decoration: none;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .overflow-wrapper {
  padding: 40px;
  position: relative;
  z-index: 1;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 0;
  -webkit-align-items: center;
  align-items: center;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left {
  width: 30%;
  padding-right: 40px;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left ul > li {
  margin-bottom: 2em;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left ul > li:last-child {
  margin-bottom: 0;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left ul > li h3 {
  color: #268fd6;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.4em;
  line-height: 1.25;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left ul > li h3 + p {
  color: #4d4d4d;
  font-size: 1em;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right {
  width: 70%;
  line-height: 0;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen {
  height: 0;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > iframe,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a:link,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen:visited {
  display: block;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a:link:before,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen:visited:before {
  display: block;
  position: absolute;
  content: '';
  background-image: url('https://aczemanek.com/wp-content/themes/jordan/css/../img/youtube-play.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  opacity: .5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a:link:hover:before,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen:visited:hover:before,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a:link:active:before,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen:visited:active:before {
  opacity: .8;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen > a:link:after,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right .wide-screen:visited:after {
  display: none;
}
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left,
section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right {
  z-index: 1;
  position: relative;
}
section.section-portfolio .portfolio-overlay .portfolio-modal.opened {
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
section.section-portfolio > svg.triangle {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: auto;
}
section.section-portfolio > svg.triangle > path {
  fill: #268fd6;
}
section.section-portfolio h2 {
  color: #fff;
}
section.section-portfolio ul.portfolio-cats {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8em;
}
section.section-portfolio ul.portfolio-cats > li {
  display: inline-block;
  margin-right: 20px;
}
section.section-portfolio ul.portfolio-cats > li:last-child {
  margin-right: 0;
}
section.section-portfolio ul.portfolio-cats > li a.current:link,
section.section-portfolio ul.portfolio-cats > li a.current:visited {
  color: #268fd6;
}
section.section-portfolio .grid {
  width: calc(100% + 16px);
  position: relative;
  left: -10px;
}
section.section-portfolio .grid .grid-item {
  width: 33.33%;
  box-sizing: border-box;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
section.section-portfolio .grid .grid-item .portfolio-hidden {
  display: none;
}
section.section-portfolio .grid .grid-item a:link,
section.section-portfolio .grid .grid-item a:visited {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -20px;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  box-shadow: 0 0 0 1px #fff;
  font-size: 1.5em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  background-color: rgba(77, 77, 77, 0.1);
}
section.section-portfolio .grid .grid-item a:link:after,
section.section-portfolio .grid .grid-item a:visited:after {
  display: none;
}
section.section-portfolio .grid .grid-item a:link:first-of-type:last-of-type,
section.section-portfolio .grid .grid-item a:visited:first-of-type:last-of-type {
  margin-left: 0;
  -webkit-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}
section.section-portfolio .grid .grid-item a:link.portfolio-open-modal,
section.section-portfolio .grid .grid-item a:visited.portfolio-open-modal {
  margin-left: -28px;
  -webkit-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}
section.section-portfolio .grid .grid-item a:link.portfolio-external-link,
section.section-portfolio .grid .grid-item a:visited.portfolio-external-link {
  margin-left: 28px;
  -webkit-transform: translateX(100px);
  -o-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}
section.section-portfolio .grid .grid-item a:hover,
section.section-portfolio .grid .grid-item a:active {
  background-color: #268fd6;
  color: #fff;
  box-shadow: 0 0 0 1px #268fd6;
}
section.section-portfolio .grid .grid-item img {
  width: 100%;
  -webkit-filter: contrast(50%) grayscale(1);
  -moz-filter: contrast(50%) grayscale(1);
  -ms-filter: contrast(50%) grayscale(1);
  filter: contrast(50%) grayscale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-portfolio .grid .grid-item:hover img {
  -webkit-filter: contrast(100%) grayscale(0);
  -moz-filter: contrast(100%) grayscale(0);
  -ms-filter: contrast(100%) grayscale(0);
  filter: contrast(100%) grayscale(0);
}
section.section-portfolio .grid .grid-item:hover a:link,
section.section-portfolio .grid .grid-item:hover a:visited {
  opacity: 1;
}
section.section-portfolio .grid .grid-item:hover a:link.portfolio-open-modal,
section.section-portfolio .grid .grid-item:hover a:visited.portfolio-open-modal {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
section.section-portfolio .grid .grid-item:hover a:link.portfolio-external-link,
section.section-portfolio .grid .grid-item:hover a:visited.portfolio-external-link {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
section.section-testimonials {
  padding: 0;
}
section.section-testimonials .testimonial {
  display: -webkit-flex;
  display: flex;
  padding: 0;
}
section.section-testimonials .testimonial .quote {
  width: 67%;
  position: relative;
  padding: 100px 80px;
}
section.section-testimonials .testimonial .quote:before {
  content: '\201C';
  display: block;
  font-size: 16em;
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  top: -0.25em;
  font-family: Georgia, serif;
}
section.section-testimonials .testimonial .quote blockquote {
  border-left-width: 0;
  padding: 0;
  margin: 0;
  margin-left: 80px;
  font-style: italic;
}
section.section-testimonials .testimonial .person {
  width: 33%;
  padding: 40px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
section.section-testimonials .testimonial .person > * {
  position: relative;
  z-index: 1;
}
section.section-testimonials .testimonial .person:before,
section.section-testimonials .testimonial .person:after {
  display: block;
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  background-color: #268fd6;
  z-index: 0;
}
section.section-testimonials .testimonial .person:after {
  background-color: #e6e6e6;
  height: 100px;
  width: 100px;
  margin-top: -75px;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
section.section-testimonials .testimonial .person .profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  box-shadow: 0 0 0 5px #268fd6;
  position: relative;
  overflow: hidden;
}
section.section-testimonials .testimonial .person .profile-pic > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
  width: auto;
  height: 100%;
  box-shadow: none;
}
section.section-testimonials .testimonial .person .info {
  padding-top: 1em;
  text-align: center;
}
section.section-testimonials .testimonial .person .info .name {
  font-family: Oswald, sans-serif;
  color: #4d4d4d;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}
section.section-testimonials .testimonial .person .info .organization {
  font-style: italic;
}
section.section-design-process {
  overflow: hidden;
}
section.section-design-process ul.procedure {
  list-style-type: none;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  -webkit-align-items: stretch;
  align-items: stretch;
}
section.section-design-process ul.procedure li {
  position: relative;
}
section.section-design-process ul.procedure li svg.process-line {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 100%;
  opacity: .4;
}
section.section-design-process ul.procedure li svg.process-line > path {
  fill: none;
  stroke-dasharray: 12 12;
  stroke: #000;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
section.section-design-process ul.procedure li svg.process-line + .process-line {
  left: -50%;
  -webkit-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
section.section-design-process ul.procedure li:nth-child(even) .process-line {
  -webkit-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
section.section-design-process ul.procedure li:nth-child(even) .process-main {
  padding-top: 50%;
}
section.section-design-process ul.procedure li .process-main {
  padding: 0 2em;
}
section.section-design-process ul.procedure li .process-main:hover .process-icon {
  box-shadow: inset 0 0 0 4px transparent, 0 0 0 4px #fff;
}
section.section-design-process ul.procedure li .process-main:hover .process-icon:after {
  animation-play-state: running;
}
section.section-design-process ul.procedure li .process-main .process-icon {
  text-align: center;
  font-size: 77px;
  width: 140px;
  height: 140px;
  position: relative;
  background-color: #fff;
  color: #268fd6;
  box-shadow: inset 0 0 0 4px #268fd6, 0 0 0 4px #ffffff;
  border-radius: 100%;
  margin: 0 auto .2em;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}
section.section-design-process ul.procedure li .process-main .process-icon img {
  height: 77px;
  width: auto;
}
section.section-design-process ul.procedure li .process-main .process-icon:after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 4px dashed #268fd6;
  animation: spin 5s linear infinite;
  animation-play-state: paused;
}
section.section-design-process ul.procedure li .process-main .process-icon > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
section.section-design-process ul.procedure li .process-main h3 {
  text-align: center;
  color: #268fd6;
  margin-top: .8em;
  margin-bottom: .6em;
  font-size: 1.5em;
}
section.section-design-process ul.procedure li .process-main p {
  text-align: left;
  text-align: center;
}
section.section-pricing .pricing-list {
  display: -webkit-flex;
  display: flex;
  padding: 0;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
section.section-pricing .pricing-list ul.pricing-plan {
  position: relative;
  width: 33.33%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.02);
}
section.section-pricing .pricing-list ul.pricing-plan + ul.pricing-plan:not(.pricing-plan-big):not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
section.section-pricing .pricing-list ul.pricing-plan > li {
  padding: .8em 1em;
}
section.section-pricing .pricing-list ul.pricing-plan > li:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.03);
}
section.section-pricing .pricing-list ul.pricing-plan > li:last-child {
  box-shadow: none;
}
section.section-pricing .pricing-list ul.pricing-plan > li.pricing-header {
  background-color: #e6e6e6;
  font-family: Oswald, sans-serif;
  color: #4d4d4d;
  padding: 1.2em 1em;
  overflow: hidden;
}
section.section-pricing .pricing-list ul.pricing-plan > li.pricing-header .ribbon {
  position: absolute;
  background-color: #1e72ab;
  font-family: Oswald, sans-serif;
  font-size: .7em;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 10px;
  top: 40px;
  left: 40px;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  min-width: 200px;
}
section.section-pricing .pricing-list ul.pricing-plan > li.pricing-header h3 {
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(77, 77, 77, 0.8);
  margin-bottom: .5em;
}
section.section-pricing .pricing-list ul.pricing-plan > li.pricing-header p {
  font-size: 3em;
  line-height: 1;
}
section.section-pricing .pricing-list ul.pricing-plan.pricing-plan-big {
  box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
section.section-pricing .pricing-list ul.pricing-plan.pricing-plan-big .pricing-header {
  box-shadow: none;
  background-color: #268fd6;
  color: #fff;
  padding: 2em 1em;
}
section.section-pricing .pricing-list ul.pricing-plan.pricing-plan-big .pricing-header h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5em;
}
section.section-contact {
  display: -webkit-flex;
  display: flex;
  padding: 0;
}
section.section-contact > .left {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
}
section.section-contact > .left a.map-view-switch {
  background-color: #268fd6;
  color: #fff;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  margin-left: -50px;
  height: 25px;
  line-height: 25px;
  font-weight: 300;
  text-align: center;
  z-index: 4;
  display: block;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 0 0 4px 4px;
}
section.section-contact > .left a.map-view-switch h1,
section.section-contact > .left a.map-view-switch h2,
section.section-contact > .left a.map-view-switch h3,
section.section-contact > .left a.map-view-switch h4,
section.section-contact > .left a.map-view-switch h5,
section.section-contact > .left a.map-view-switch h6 {
  color: #fff;
}
section.section-contact > .left a.map-view-switch a:link,
section.section-contact > .left a.map-view-switch a:visited {
  color: #fff;
}
section.section-contact > .left a.map-view-switch a:link:after,
section.section-contact > .left a.map-view-switch a:visited:after {
  background-color: #fff;
}
section.section-contact > .left a.map-view-switch:link:after,
section.section-contact > .left a.map-view-switch:visited:after {
  display: none;
}
section.section-contact > .left a.map-view-switch:hover,
section.section-contact > .left a.map-view-switch:active {
  background-color: #1e72ab;
}
section.section-contact > .left .map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  opacity: .25;
  -webkit-filter: brightness(.5) grayscale(1);
  -moz-filter: brightness(.5) grayscale(1);
  -ms-filter: brightness(.5) grayscale(1);
  filter: brightness(.5) grayscale(1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-contact > .left .map-canvas.opened {
  z-index: 3;
  opacity: 1;
  -webkit-filter: brightness(1) grayscale(0);
  -moz-filter: brightness(1) grayscale(0);
  -ms-filter: brightness(1) grayscale(0);
  filter: brightness(1) grayscale(0);
}
section.section-contact > .left .contact-main {
  color: #fff;
  min-height: 350px;
  padding: 80px;
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-contact > .left .contact-main.closed {
  opacity: 0;
}
section.section-contact > .left .contact-main #message {
  text-align: center;
  font-size: 1.25em;
}
section.section-contact > .left .contact-main #message p {
  margin: 4em 0 0;
}
section.section-contact > .left .contact-main #message p.error {
  margin: 1em 0;
  color: #268fd6;
  text-align: right;
}
section.section-contact > .left .contact-main .contact-info {
  text-align: center;
  margin-bottom: 30px;
  color: #e6e6e6;
}
section.section-contact > .left .contact-main .contact-info .icon {
  font-size: 3em;
  color: #999999;
}
section.section-contact > .left .contact-main .contact-info h3 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
section.section-contact > .left .contact-main .contact-info a:link,
section.section-contact > .left .contact-main .contact-info a:visited {
  color: #e6e6e6;
}
section.section-contact > .left .contact-main form {
  text-align: right;
  display: block;
  overflow: hidden;
}
section.section-contact > .left .contact-main form > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2em;
}
section.section-contact > .left .contact-main form > ul > li {
  position: relative;
  margin-top: 2em;
}
section.section-contact > .left .contact-main form > ul > li span.wpcf7-form-control-wrap {
  display: block;
}
section.section-contact > .left .contact-main form > ul > li span.wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  bottom: 2.4em;
  color: #268fd6;
  font-style: italic;
}
section.section-contact > .left .contact-main form > ul > li svg {
  stroke: #999999;
  position: absolute;
  width: 350%;
  height: 26px;
  bottom: 0;
  left: 0;
  fill: none;
  pointer-events: none;
  -webkit-transition: -webkit-transform .5s ease-out;
  -moz-transition: -moz-transform .5s ease-out;
  -o-transition: -o-transform .5s ease-out;
  transition: transform .5s ease-out;
  -webkit-transform-origin: 0 center;
  transform-origin: 0 center;
  z-index: 0;
  opacity: .75;
}
section.section-contact > .left .contact-main form > ul > li label {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: absolute;
  z-index: 1;
  color: #e6e6e6;
  top: .6em;
  left: .6em;
  -webkit-transition: -webkit-transform .5s ease-out, color .5s ease-out;
  -moz-transition: -moz-transform .5s ease-out, color .5s ease-out;
  -o-transition: -o-transform .5s ease-out, color .5s ease-out;
  transition: transform .5s ease-out, color .5s ease-out;
  -webkit-transform-origin: 0 center;
  transform-origin: 0 center;
  pointer-events: none;
}
section.section-contact > .left .contact-main form > ul > li textarea {
  resize: none;
  min-height: 200px;
}
section.section-contact > .left .contact-main form > ul > li input[type=text],
section.section-contact > .left .contact-main form > ul > li input[type=email],
section.section-contact > .left .contact-main form > ul > li textarea {
  background-color: transparent;
  font-size: 1.2em;
  border-width: 0;
  padding: .6em;
  width: 100%;
}
section.section-contact > .left .contact-main form > ul > li input[type=text]:focus,
section.section-contact > .left .contact-main form > ul > li input[type=email]:focus,
section.section-contact > .left .contact-main form > ul > li textarea:focus,
section.section-contact > .left .contact-main form > ul > li input[type=text].focused,
section.section-contact > .left .contact-main form > ul > li input[type=email].focused,
section.section-contact > .left .contact-main form > ul > li textarea.focused {
  outline: none;
}
section.section-contact > .left .contact-main form > ul > li input[type=text]:focus + label,
section.section-contact > .left .contact-main form > ul > li input[type=email]:focus + label,
section.section-contact > .left .contact-main form > ul > li textarea:focus + label,
section.section-contact > .left .contact-main form > ul > li input[type=text].focused + label,
section.section-contact > .left .contact-main form > ul > li input[type=email].focused + label,
section.section-contact > .left .contact-main form > ul > li textarea.focused + label {
  color: #999999;
  -webkit-transform: scale(.8) translateY(-2em) translateX(-0.6em);
  -o-transform: scale(.8) translateY(-2em) translateX(-0.6em);
  -ms-transform: scale(.8) translateY(-2em) translateX(-0.6em);
  transform: scale(.8) translateY(-2em) translateX(-0.6em);
}
section.section-contact > .left .contact-main form > ul > li input[type=text]:focus + label + svg,
section.section-contact > .left .contact-main form > ul > li input[type=email]:focus + label + svg,
section.section-contact > .left .contact-main form > ul > li textarea:focus + label + svg,
section.section-contact > .left .contact-main form > ul > li input[type=text].focused + label + svg,
section.section-contact > .left .contact-main form > ul > li input[type=email].focused + label + svg,
section.section-contact > .left .contact-main form > ul > li textarea.focused + label + svg {
  -webkit-transform: translateX(-66%);
  -o-transform: translateX(-66%);
  -ms-transform: translateX(-66%);
  transform: translateX(-66%);
}
section.section-contact > .left .contact-main form div.wpcf7-validation-errors,
section.section-contact > .left .contact-main form div.wpcf7-response-output {
  border-width: 0;
}
section.section-contact > .right {
  -webkit-flex: 0 0 80px;
  flex: 0 0 80px;
  background-color: #268fd6;
}
section.section-contact > .right ul.connect {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  z-index: 2;
}
section.section-contact > .right ul.connect a:link,
section.section-contact > .right ul.connect a:visited {
  display: block;
  padding: 15px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section.section-contact > .right ul.connect a:link:after,
section.section-contact > .right ul.connect a:visited:after {
  display: none;
}
section.section-contact > .right ul.connect a:hover,
section.section-contact > .right ul.connect a:active {
  background-color: #1e72ab;
}
section.section-contact > .right ul.connect > li {
  font-size: 2em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* 5. Owl Carousel Overwrite */
.owl-theme .owl-dots .owl-dot span {
  border-radius: 0;
  background-repeat: #e6e6e6;
}
.owl-theme .owl-dots .owl-dot {
  display: block;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 1em;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #268fd6;
}
/* 6. Responsiveness */
@media only screen and (max-width: 767px) {
  nav button.open-menu {
    top: 40px;
    right: 40px;
  }
  nav ul.menu {
    font-size: 1.2em;
  }
  section {
    padding: 40px;
  }
  section.section-hero h1 {
    font-size: 2.25em;
    letter-spacing: 5px;
  }
  section.section-hero .titles {
    margin-bottom: 150px;
    font-size: 1em;
  }
  section.section-hero .btm {
    -webkit-flex-direction: column;
    flex-direction: column;
    bottom: 40px;
    padding: 0 40px;
  }
  section.section-hero .btm .btn {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  section.section-hero .btm > .left,
  section.section-hero .btm > .right {
    margin: 0;
  }
  section.section-hero .btm > .left {
    margin-bottom: 10px;
  }
  section.section-hero .btm > .left .scroll-down-indicator {
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }
  section.section-hero .btm > .right ul.connect {
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }
  section.section-about-me .details {
    padding: 40px;
  }
  section.section-about-me .details ul > li .field-title {
    margin-bottom: 0;
  }
  section.section-about-me .details ul > li .field-title,
  section.section-about-me .details ul > li .field-content {
    display: block;
  }
  section.section-blog .featured,
  section.section-blog .latest {
    padding: 40px;
  }
  section ul.timeline:before {
    display: none;
  }
  section ul.timeline li {
    width: 100%;
  }
  section ul.timeline li:nth-child(2n) {
    padding-right: 0;
    text-align: left;
  }
  section ul.timeline li:nth-child(2n+1) {
    left: 0;
    padding-left: 0;
  }
  section ul.timeline li:before,
  section ul.timeline li .icon {
    display: none;
  }
  section.section-portfolio ul.portfolio-cats > li {
    display: block;
    margin-right: 0;
  }
  section.section-portfolio ul.portfolio-cats > li + li {
    margin-top: 10px;
  }
  section.section-portfolio .grid .grid-item {
    width: 100%;
  }
  section.section-contact > .left .contact-main {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.section-skills-knowledge .col-sm-6 + .col-sm-6 + .col-sm-6 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  section.section-about-me svg.triangle {
    left: auto;
    right: 0;
  }
  section.section-skills-knowledge .col-sm-6 {
    margin-bottom: 2em;
  }
  section.section-portfolio h2 {
    text-shadow: 0 0 2px #207ab6, 0 0 5px #207ab6;
  }
  section.section-portfolio ul.portfolio-cats {
    margin-bottom: 1em;
    padding: 1em 0;
    background-color: #fff;
    text-align: center;
  }
  section.section-portfolio .portfolio-overlay .portfolio-modal.opened {
    height: calc(100% - 160px);
  }
  section.section-portfolio .portfolio-overlay .portfolio-modal .overflow-wrapper {
    overflow: auto;
    height: 100%;
  }
  section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .left {
    padding-right: 0;
  }
  section.section-portfolio .portfolio-overlay .portfolio-modal .modal-main .right {
    margin-bottom: 40px !important;
  }
  section.section-testimonials .owl-carousel .testimonial .person::before {
    display: none;
  }
  section.section-testimonials .owl-carousel .testimonial .person::after {
    top: 20px;
  }
  section.section-testimonials .owl-carousel .testimonial .quote {
    padding: 50px 40px;
  }
  section.section-testimonials .owl-carousel .testimonial .quote blockquote {
    margin-left: 0;
    margin-top: 70px;
  }
  section.section-design-process ul.procedure li .process-main {
    padding: 0 2em 3em;
  }
  section.section-design-process ul.procedure li svg.process-line {
    display: none;
  }
  section.section-design-process ul.procedure li:nth-child(even) .process-main {
    padding-top: 0;
  }
  section.section-design-process ul.procedure li:last-child .process-main {
    padding-bottom: 0;
  }
  section.section-pricing .pricing-list ul.pricing-plan + ul.pricing-plan {
    margin-top: 40px !important;
  }
  section.section-pricing .pricing-list ul.pricing-plan.pricing-plan-big {
    box-shadow: none;
  }
  section.section-contact > .left .contact-main .contact-info > div + div {
    margin-top: 40px;
  }
  section.section-contact > .left .contact-main form {
    text-align: center;
  }
  .flex-responsive {
    display: block !important;
  }
  .flex-responsive > div,
  .flex-responsive > li,
  .flex-responsive > ul {
    width: 100% !important;
    margin: 0 !important;
  }
}
/* 7. IE Compatibility */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  section.section-hero .titles {
    overflow: visible;
  }
  /* IE11 */
}
