/* FADE IN css */
* {
  box-sizing: border-box;
}

section {
  background: #eee;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
}

.jumbotron {
  padding: 0;
  border-radius: 0;
}

.module {
  width: 48%;
  min-height: 200px;
  background: white;
  opacity: 0.2;
  position: relative;
  float: left;
  padding: 20px;
  margin-right: 4%;
  margin-bottom: 4%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.module:nth-child(even) {
  margin-right: 0;
}

/*  Transition effects
/*-----------------------------------------------------------------------------------*/
.come-in {
  transform: translateY(300px);
  opacity: 1;
  animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
  animation-duration: 0.8s;
}

.already-visible {
  transform: translateY(0);
  animation: none;
}

@keyframes come-in {
  to {
    transform: translateY(0);
  }
}
/*  General Styling
/*-----------------------------------------------------------------------------------*/
body {
  background: #ffffff;
  color: #898989;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.access {
  background: #111;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Barlow Semi Condensed',-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

h1, h2 {
  color: #292929;
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

h4 {
  color: #292929;
  font-size: 1.2rem;
  font-weight: 400;
}

.text-adjust h4 {
  font-size: 1.6rem;
  font-weight: 400;
}

.text-colour {
  color: #ff4900;
  border-bottom: 2px solid #ff4900;
  margin-bottom: 1rem;
  display: inline-block;
}

a {
  color: #292929;
  text-decoration: none !important;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  cursor: pointer;
}

a:hover {
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

a:hover, a:focus {
  color: #b8a07e;
  text-decoration: underline;
}

.button {
  display: inline-block;
  border: 2px solid #ccc;
  padding: 20px 30px;
  border-radius: 30px;
}

.button .primary {
  margin-top: 40px;
}

.button:hover {
  color: #444;
  background: #b8a07e;
  border: 2px solid #b8a07e;
}

.button .slim {
  display: inline-block;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
}

nav ul li a {
  padding: 2px 0 0 0;
  position: relative;
  display: block;
  font-size: 12px;
  color: #999999;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

p {
  margin: 1.5rem 0;
  padding: 0;
  font-size: 1rem;
  color: #3f3f3f;
  line-height: 1.5;
}

p.intro {
  font-size: 1.2em;
  line-height: 1.5;
}

.tags {
  margin: 0 0.75rem;
}

::-moz-selection {
  background: #d60b3f;
  color: #fff;
}

::selection {
  background: #d60b3f;
  color: #fff;
}

.btn {
  background: #333;
  border: medium none;
  border-radius: 0;
  color: #fff;
  font-size: 0.9rem;
  height: 3rem;
  line-height: 1.5;
  padding: 0 2rem;
  text-transform: uppercase;
}

.btn:hover, .btn:focus {
  color: #fff;
}

.padDiv {
  padding: 30px 20px;
}

.section {
  margin-bottom: 100px;
}

.sub-section {
  margin: 60px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-dark {
  background-color: #131313;
  color: #ccc;
}

.section-dark img {
  -webkit-box-shadow: 0px 0px 29px 5px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 0px 29px 5px rgba(0, 0, 0, 0.57);
  box-shadow: 0px 0px 29px 5px rgba(0, 0, 0, 0.57);
}

.section-dark img.no-frame {
  -webkit-box-shadow: 0px 0px 0px 0px;
  -moz-box-shadow: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px 0px;
}

.section-dark h2 {
  color: #fff;
}

.section-dark p {
  color: #ccc;
}

.section-grey {
  background-color: #f0f0f0;
}

.hero.bae-stem {
  background-color: #410d75;
}

.hero.audi {
  background-color: #010101;
}

.hero.c4l {
  background-color: #f0f0ea;
}

.divider {
  border-top: 1px solid #cccccc;
  padding: 60px 0;
}

.colour-frame {
  border-left: 6px solid #f49000;
  padding: 10px;
}

.section-title h2 {
  font-size: 2rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.section-intro {
  font-size: 18px;
  text-align: center;
  margin-top: 3rem;
}

.section-intro-side {
  font-size: 18px;
  text-align: left;
  margin-top: 3rem;
}

hr.divide {
  width: 60px;
  border: 1px solid #666;
}

.form-control {
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 0;
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 0.1rem;
  padding-left: 10px;
  margin: 0 0 25px 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.form-control:focus {
  box-shadow: none;
  outline: 0 none;
}

.paddsection {
  padding-top: 90px;
  padding-bottom: 90px;
}

.paddsections {
  padding-top: 90px;
  padding-bottom: 90px !important;
}

.hvr-shutter-in-horizontal::before {
  background: #333;
}

.hvr-shutter-in-horizontal:hover {
  background: #b8a07e;
}

.mb-30 {
  margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------*/
/*  Navbar Top
/*-----------------------------------------------------------------------------------*/
nav {
  position: fixed;
  background: #fff;
  z-index: 1000;
  width: 100%;
  padding: 20px;
  display: none;
  -webkit-box-shadow: 0px 2px 92px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 2px 92px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 92px 0px rgba(0, 0, 0, 0.18);
}

.nav-menu {
  background: #ffffff;
  line-height: 1.5;
  margin-bottom: 0;
  position: absolute;
  right: 40px;
  top: 20px;
}

.landingpage {
  display: block;
}

nav ul li {
  float: left;
  margin-right: 15px;
  font-family: 'Montseratt', sans-serif;
  font-size: 14px;
  margin-left: 40px;
}

nav ul li a {
  color: #999999;
  font-family: 'Montseratt', helvetica;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}

.responsive {
  display: none;
  font-size: 1.5rem;
}

.active {
  color: #afafaf;
}

.center-img {
  text-align: center;
}

/*----------------------------------------------------------------------------------*/
/*  Header
/*-----------------------------------------------------------------------------------*/
#header {
  background: #111111;
  width: 100%;
}

#header .header-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#header .header-content.landing-cover, #header .header-content.landing-cover {
  height: 100vh;
}

.header-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  color: #fff;
}

.header-content p {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 500;
  max-width: 450px;
}

.header-content a {
  color: #e21366;
  font-size: 1.1rem;
  font-weight: 400;
  border-bottom: 1px solid #e21366;
}

.header-content a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.header-content small a {
  font-size: inherit;
}

.header-content .list-social li {
  float: left;
  margin-right: 20px;
}

.header-content .list-social li i {
  color: #fff;
  font-size: 1rem;
}

/*-----------------------------------------------------------------------------------*/
/*  About
/*-----------------------------------------------------------------------------------*/
#about {
  width: 100%;
  height: auto;
  background: #f7f7f7;
  padding-top: 190px;
}

#about .div-img-bg {
  padding-bottom: 30px;
  border: 20px solid #b8a07e;
}

#about .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
  margin-top: -60px;
  margin-left: 40px;
  object-fit: cover;
}

#about .about-descr .p-heading {
  font-family: 'Barlow Semi Condensed',-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
}

#about .about-descr .separator {
  max-width: 80%;
  margin-bottom: 0;
  text-align: left;
}

.profile-img {
  margin-bottom: 30px;
}

.skill-list, .skill-list p {
  font-size: 0.9rem;
  line-height: 1.25;
  margin: 0.9rem 0 1.5rem 0;
  color: #292929;
}

/*-----------------------------------------------------------------------------------*/
/*   Services
/*-----------------------------------------------------------------------------------*/
#services {
  background: #f7f7f7;
  position: relative;
  padding-bottom: 80px;
}

.owl-item {
  float: left;
}

.services-carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.services-carousel .owl-stage-outer {
  order: 1;
  display: block;
  width: 100%;
  overflow: hidden;
}
.services-carousel .owl-nav {
  display: flex;
  order: 3;
  margin: 0px;
}
.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: none;
}
.services-carousel .owl-nav .owl-prev span,
.services-carousel .owl-nav .owl-next span {
  display: none;
}
.services-carousel .owl-nav .owl-prev {
  background-image: url("../images/carousel-arrow-left.svg");
}
.services-carousel .owl-nav .owl-next {
  background-image: url("../images/carousel-arrow-right.svg");
}
.services-carousel .owl-dots {
  padding-top: 20px;
  order: 2;
  display: flex;
  margin: 0px;
  width: 200px;
  flex-grow: 10;
}
.services-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: 0;
  padding: 0 !important;
  background-color: #ddd;
  cursor: pointer;
}
.services-carousel .owl-dot.active {
  background-color: #b8a07e;
}

.services-block span {
  margin: 10px 0;
  position: relative;
  font-size: 1rem;
  color: #292929;
  letter-spacing: 0.1rem;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

.services-block .separator {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

.services-block i {
  font-size: 3rem;
  color: #b8a07e;
  line-height: 2;
}

/*-----------------------------------------------------------------------------------*/
/*  Portfolio
/*-----------------------------------------------------------------------------------*/
#portfolio {
  position: relative;
  padding-bottom: 4rem;
}

#portfolio .portfolio-list {
  margin-bottom: 4rem;
}

#portfolio .portfolio-list .nav {
  display: inline-block;
  margin: 0;
}

#portfolio .portfolio-list .nav li {
  margin: 0 1rem 0 0;
  float: left;
  font-size: 1rem;
  color: #999999;
  line-height: 1.5;
  cursor: pointer;
  font-family: 'Montseratt', helvetica;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#portfolio .portfolio-list .nav li:hover, #portfolio .portfolio-list .nav li.filter-active {
  color: #b8a07e;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#portfolio .portfolio-container {
  display: inline-block;
  margin-bottom: 2rem;
  width: 100%;
}

.portfolio-thumbnail {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.portfolio-thumbnail img {
  max-width: 100%;
}

/*-----------------------------------------------------------------------------------*/
/*  Journal
/*-----------------------------------------------------------------------------------*/
#journal, #journal-blog {
  height: auto;
  width: 100%;
  background: #f7f7f7;
  padding-bottom: 2rem;
  position: relative;
}

#journal-blog {
  background: #fff;
  padding-bottom: 1rem;
}

#journal .journal-block {
  display: inline-block;
  height: auto;
  width: 100%;
}

#journal .journal-block .journal-info {
  position: relative;
}

.journal-block .journal-info img {
  max-width: 100%;
}

.journal-block .journal-info .journal-txt {
  padding: 2rem 0;
  position: relative;
}

.journal-block .journal-info .journal-txt h4 a {
  display: block;
  font-size: 1rem;
  line-height: 2.5;
  margin: 0 0 1rem 0;
  font-weight: 500;
  color: #292929;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.journal-block .journal-info .journal-txt h4 a:hover {
  color: #b8a07e;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.journal-block .journal-info .journal-txt p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/*-----------------------------------------------------------------------------------*/
/*  Contact
/*-----------------------------------------------------------------------------------*/
#contact {
  height: auto;
  width: 100%;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  padding-bottom: 1rem;
}

#contact input, #contact textarea {
  width: 100%;
}

#contact #sendmessage {
  color: #18d26e;
  border: 1px solid #18d26e;
  display: none;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  margin: 1rem;
}

#contact #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  margin: 1rem;
}

#contact #sendmessage.show, #contact #errormessage.show, #contact .show {
  display: block;
}

#contact .validation {
  color: red;
  display: none;
  margin: 0 0 1.5rem;
  font-weight: 400;
  font-size: 0.9rem;
}

/*-----------------------------------------------------------------------------------*/
/*  Footer
/*-----------------------------------------------------------------------------------*/
#footer {
  background: #f7f7f7;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#footer .socials-media {
  width: 100%;
}

#footer .socials-media ul {
  display: inline-block;
  float: none;
  margin: 0 0 1.5rem 0;
}

#footer .socials-media ul li {
  float: left;
  margin-left: 0.9rem;
  margin-right: 0.9rem;
}

#footer .socials-media ul li a {
  font-size: 1.5em;
  color: #999;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: transparent;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#footer .socials-media ul li a:hover {
  color: #b8a07e;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#footer p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0;
  text-transform: uppercase;
}

.credits {
  font-size: 0.9rem;
}

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