/* --------------------------------------------- */
/* Media queries */
/* --------------------------------------------- */
/*
*   Media Query Mixins
*/
/* --------------------------------------------- */
/* BASIC SETUP */
/* --------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  background-color: #fff;
  color: #555;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* --------------------------------------------- */
/* REUSABLE COMPONENTS */
/* --------------------------------------------- */
.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.box {
  padding: 1%;
}

/* ----- HEADINGS ----- */
h1, h2, h3 {
  font-weight: 300;
  text-transform: uppercase;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 240%;
  word-spacing: 4px;
  letter-spacing: 1px;
}

h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h3 {
  font-size: 110%;
  margin-bottom: 15px;
}

h2:after {
  display: block;
  height: 2px;
  background-color: #3498db;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

/* ----- PARAGRAPHS ----- */
.long-copy {
  line-height: 145%;
  width: 75%;
  margin-left: 15%;
}

.box p {
  font-size: 90%;
  line-height: 145%;
}

/* ----- ICONS ----- */
.icon-big {
  font-size: 350%;
  display: block;
  color: #3498db;
  margin-bottom: 10px;
}

.icon-small {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: #3498db;
  font-size: 120%;
  margin-right: 2px;
  /* secrets to align text and icons */
  line-height: 120%;
  vertical-align: middle;
  margin-top: -5px;
}

/* ----- LINKS ----- */
a:link,
a:visited {
  color: #3498db;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid #3498db;
  -webkit-transition: border-bottom 0.2s, color 0.2s;
  transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
  color: #555;
  border-bottom: 1px solid transparent;
}

/* ----- BUTTONS ----- */
.btn:link,
.btn:visited,
input[type=submit] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 200px;
  -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
  background-color: #3498db;
  border: 1px solid #3498db;
  color: #fff;
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #3498db;
  color: #3498db;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
  background-color: #2980b9;
}

.btn-full:hover,
.btn-full:visited {
  border: 1px solid #cf6d17;
}

.btn-ghost:hover,
.btn-ghost:visited {
  border: 1px solid #cf6d17;
  color: #fff;
}

/* --------------------------------------------- */
/* HEADER */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* Media queries */
/* --------------------------------------------- */
/*
*   Media Query Mixins
*/
header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url(img/hero-mini.JPG);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(img/hero-mini.JPG);
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-attachment: fixed;
}

.hero-text-box {
  position: absolute;
  width: 1140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo {
  height: 100px;
  width: auto;
  float: left;
  margin-top: 20px;
}

.logo-black {
  display: none;
  height: 50px;
  width: auto;
  float: left;
  margin: 5px 0;
}

/* main navi */
.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.2s;
    border: 0;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 3px solid #3498db;
}


/* Dropdown */
ul.dropdown {
  display: none;
  position: absolute;
  margin-top: 10px;
}
@media screen and (max-width: 425px) {
  ul.dropdown {
    position: relative;
  }
}
ul.dropdown li {
  display: block;
  margin-left: 0;
}
ul.dropdown li a {
  display: block;
  padding: 2px 10px !important;
}
ul.dropdown li a:hover, ul.dropdown li a:active {
  border-bottom: none;
  border-left: 3px solid #3498db;
}

li.parent:hover ul.dropdown {
  display: block;
}

/* Mobile navi */
.mobile-nav-icon {
  float: right;
  margin-top: 30px;
  cursor: pointer;
  display: none;
}

.mobile-nav-icon i {
  font-size: 200%;
  color: #fff;
}

/* Sticky navi */
.sticky {
  position: fixed;
  top: left;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 2px 2px #efefef;
  box-shadow: 0 2px 2px #efefef;
  z-index: 99999;
}

.sticky .main-nav {
  margin-top: 18px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
  padding: 16px 0;
  color: #555;
}

.sticky ul.dropdown {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 2px #efefef;
  width: 100%;
}

.sticky .logo {
  display: none;
}

.sticky .logo-black {
  display: block;
}

/* --------------------------------------------- */
/* ABOUT US */
/* --------------------------------------------- */
.section-aboutus .long-copy {
  margin-bottom: 30px;
}

/* --------------------------------------------- */
/* GALLERY */
/* --------------------------------------------- */
.section-galleries {
  padding: 0;
}

.galleries-showcase {
  list-style: none;
  width: 100%;
}

.galleries-showcase li {
  display: block;
  float: left;
  width: 25%;
}

.gallery-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #000;
}

.gallery-photo img {
  opacity: 0.7;
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.gallery-photo img:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* --------------------------------------------- */
/* WHY CHOOSE US */
/* --------------------------------------------- */
.section-whychooseus {
  background-color: #f4f4f4;
}

.steps-box:first-child {
  text-align: right;
  padding-right: 3%;
  margin-top: 30px;
}

.steps-box:last-child {
  padding-left: 3%;
  margin-top: 70px;
}

.whyus-photo {
  width: 70%;
  border-radius: 7px;
}

.works-step {
  margin-bottom: 50px;
}

.works-step:last-of-type {
  margin-bottom: 80px;
}

.works-step div {
  color: #3498db;
  border: 2px solid #3498db;
  display: inline-block;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  padding: 5px;
  float: left;
  font-size: 150%;
  margin-right: 15px;
}

/* --------------------------------------------- */
/* SERVICES */
/* --------------------------------------------- */
.service-feature {
  margin-bottom: 5px;
}

/* --------------------------------------------- */
/* EXPERTISE */
/* --------------------------------------------- */
.section-expertise {
  background-color: #f4f4f4;
}

.expertise-box {
  background-color: #fff;
  border-radius: 5px;
  width: 90%;
  margin-left: 5%;
  -webkit-box-shadow: 0 2px 2px #e3e3e3;
  box-shadow: 0 2px 2px #e3e3e3;
}

.expertise-box div {
  padding: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.expertise-box div:first-child {
  background-color: #fcfcfc;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.expertise-box div:last-child {
  text-align: center;
  border: 0;
}

.expertise-box ul {
  list-style: none;
}

.expertise-box ul li {
  padding: 5px 0;
}

.expertise-header-color {
  color: #3498db;
  font-weight: bold;
}

/* --------------------------------------------- */
/* CONTACT FORM */
/* --------------------------------------------- */
.section-contact {
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0.8))), url(img/back-contactus1-min.jpg);
  background-image: linear-gradient(black, rgba(0, 0, 0, 0.8)), url(img/back-contactus1-min.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.contact-form {
  width: 60%;
  margin: 0 auto;
  color: #000;
}

.contact-form label {
  color: #fff;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
}

input[type=checkbox] {
  margin: 10px 5px 10px 0;
}

*:focus {
  outline: none;
}

.form-box {
  z-index: 10px;
  padding: 40px;
  padding-bottom: 0;
}

.form-messages {
  width: 60%;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 30px;
  color: #f7f7ee;
}

#response {
  display: none;
}

.success {
  background-color: rgba(38, 191, 68, 0.8);
}

.error {
  background-color: rgba(209, 46, 46, 0.8);
}

/* --------------------------------------------- */
/* FOOTER */
/* --------------------------------------------- */
footer {
  background-color: #cf6d17;
  padding: 40px;
  font-size: 80%;
}

.footer-nav {
  list-style: none;
  float: left;
}

.social-links {
  list-style: none;
  float: right;
}

.footer-nav li,
.social-links li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
  margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
  text-decoration: none;
  border: 0;
  color: #000;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
  color: #3498db;
}

.social-links li a:link,
.social-links li a:visited {
  font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-instagram {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.ion-social-facebook:hover {
  color: #3b5998;
}

.ion-social-twitter:hover {
  color: #00aced;
}

.ion-social-instagram:hover {
  color: #517fa4;
}

footer p {
  color: #000;
  text-align: center;
  margin-top: 20px;
}

footer ul {
  list-style-type: none;
  text-align: center;
  color: #000;
}

footer ul::before {
  content: "";
  display: block;
  clear: both;
}

.contact-details a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: #212020;
}

/* --------------------------------------------- */
/* ANIMINATIONS */
/* --------------------------------------------- */
.js--wp-1,
.js--wp-2,
.js--wp-3 {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
  opacity: 1;
}

/* --------------------------------------------- */
/* IMAGE GALLERY PAGE */
/* --------------------------------------------- */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/*
*   Media Query Mixins
*/
.carousel-container {
  width: 60%;
  margin: auto;
  margin-top: 50px;
  overflow: hidden;
  border: 3px solid #3498db;
  position: relative;
}
@media screen and (max-width: 800px) {
  .carousel-container {
    width: 80%;
  }
}
.carousel-container .carousel-slide {
  position: absolute;
  height: 100%;
  width: 10000px;
}
.carousel-container .carousel-slide img {
  height: auto;
  float: left;
}
.carousel-container #prevBtn {
  position: absolute;
  left: 5%;
  top: 50%;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}
.carousel-container #nextBtn {
  position: absolute;
  right: 5%;
  top: 50%;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}

/* ABOUT US DROPDOWN SECTION */
/* --------------------------------------------- */
section#about-us {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

section#about-us div.container {
  width: 100%;
  max-width: 800px;
}

section#about-us div.container div.content {
  margin: none;
  padding: none;
}

section#about-us div.container div.content:nth-child(1),
section#about-us div.container div.content:nth-child(2) {
  border-bottom: none;
}

section#about-us div.container div.content h3 {
  text-align: center;
  border-radius: 200px;
  margin: 8px;
  padding: 20px;
  cursor: pointer;
  color: #fff;
}

h3#one {
  background-color: #7cad41;
}

h3#two {
  background-color: #ed2485;
}

h3#three {
  background-color: #f58b20;
}

h3#four {
  background-color: #3498db;
}

section#about-us div.container div.content h3:hover {
  cursor: pointer;
}

section#about-us div.container div.content div.paragraphs {
  margin: 0;
  height: 0;
  padding: 200px 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 40px;
}

section#about-us div.container div.content div.paragraphs div {
  padding: 10px;
}

section#about-us div.container div.content div.open {
  color: #000;
}

.active {
  background: lightgreen;
}

/* --------------------------------------------- */
/* PRICING PAGE */
/* --------------------------------------------- */
#pricing-hero {
  color: #fff;
}

#pricing-content div.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#pricing-content div.row div[class*=col] {
  padding: 10px;
}
#pricing-content div.row div[class*=col]:nth-child(1) {
  width: 30%;
}
@media screen and (max-width: 800px) {
  #pricing-content div.row div[class*=col]:nth-child(1) {
    width: 100%;
  }
}
#pricing-content div.row div[class*=col]:nth-child(2) {
  width: 65%;
}
@media screen and (max-width: 800px) {
  #pricing-content div.row div[class*=col]:nth-child(2) {
    width: 100%;
    margin: 0;
  }
}
#pricing-content img#banner-img {
  width: 100%;
}
#pricing-content .downloads-heading {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
#pricing-content div.cta {
  text-align: center;
}
#pricing-content div.cta a {
  display: inline-block;
  width: auto;
  margin: 5px auto;
}
#pricing-content div.cta a#download-single {
  background: #7cad41;
}
#pricing-content div.cta a#download-double {
  background: #ed2485;
}
#pricing-content div.cta a#download-tripple {
  background: #f58b20;
}
#pricing-content #pricing-main-content h2 {
  margin-bottom: 15px;
}
#pricing-content #pricing-main-content h5 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 30px;
}
#pricing-content #pricing-main-content p {
  margin-bottom: 20px;
}
#pricing-content #pricing-main-content ul {
  list-style-type: none;
}
#pricing-content #pricing-main-content ul li {
  margin: 10px auto;
  width: 80%;
  text-align: center;
  padding: 20px 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
}
#pricing-content #pricing-main-content ul li:nth-child(1) {
  background-color: #7cad41;
}
#pricing-content #pricing-main-content ul li:nth-child(2) {
  background-color: #ed2485;
}
#pricing-content #pricing-main-content ul li:nth-child(3) {
  background-color: #f58b20;
}
#pricing-content #pricing-main-content ul li:nth-child(4) {
  background-color: #f58b20;
}
#pricing-content #pricing-main-content div#download-coantainer {
  text-align: center;
}
#pricing-content #pricing-main-content div#download-coantainer a.btn {
  margin-top: 20px;
}

/* --------------------------------------------- */
/* HOUSE RULES PAGE */
/* --------------------------------------------- */
li.level-2-list {
  list-style: none;
}
li.level-2-list ul {
  padding-left: 2em;
}

h3.heading {
  padding-top: 20px;
}

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