/*

Crucio - Responsive One Page HTML Template

Author: RBWebDesign
Date: December 2016
Version: 1.0

-----------------------
| [Table of Contents] |
-----------------------

1. Main Style
2. Navigation Bar
3. Main Top
4. Buttons
5. Links
6. Section
7. About
8. Team
9. Portfolio
9.1. Works Grid
9.2. Magnific Popup
10. Newsletter
11. Testimonials
12. Clients
13. Contact
14. Social
15. Footer
16. Media Queries

*/

/* MAIN STYLE */

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777;
  background-color: #FFF;
  line-height: 2;
  letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  color: #111;
  margin-top: 0;
}

p.mini {
  letter-spacing: 0;
  line-height: 1;
  font-size: 12px;
  font-style: italic;
  color: #777;
  margin-bottom: 0;
}

.color {
  color: #AD00FF;
}

.padding {
  padding: 0 100px;
}

.padding-top {
  padding-top: 200px;
}

.padding-bottom {
  padding-bottom: 200px;
}

i {
  color: #AD00FF;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

i:hover {
  color: #56007F;
  cursor: pointer;
}

hr {
  width: 50px;
  height: 3px;
  background-color: #AD00FF;
  margin: 30px auto;
  border: 0;
  position: relative;
}

input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.3);
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.3);
  padding: 15px;
  min-height: 200px;
  margin: 100px 0 50px 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

input:focus {
  outline: none;
  border-bottom: 1px solid #56007F;
}

textarea:focus {
  outline: none;
  border-bottom: 1px solid #56007F;
}

.partner-table {
  display: table;
  width: 100%;
  height: 100%;
}

.partner {
  display: table-cell;
  vertical-align: middle;
  float: none;
}

::selection {
  background-color: #AD00FF;
  color: #FFF;
}

::-moz-selection {
  background-color: #AD00FF;
  color: #FFF;
}

.main-top ::selection, .about ::selection, .dark ::selection, .testimonials ::selection, #footer ::selection {
  background-color: #FFF;
  color: #AD00FF;
}

.main-top ::-moz-selection, .about ::-moz-selection, .dark ::-moz-selection, .testimonials ::-moz-selection, #footer ::-moz-selection {
  background-color: #FFF;
  color: #AD00FF;
}

/* NAVIGATION BAR */

.navbar {
  height: 100px;
  padding: 0 5%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  z-index: 999999999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-title {
  height: 100px;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 10px;
  color: #FFF;
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar .navbar-title:hover {
  color: #FFF;
}

.navbar-title img {
  max-width: 200px;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-nav {
  height: 100px;
  display: table-cell;
  vertical-align: middle;
}

.navbar-nav > li {
  float: none;
  height: 100px;
  padding: 0px 20px;
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-nav > li > a {
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-nav > li > a:focus {
  background-color: transparent;
}

.navbar-nav > li:hover > a {
  text-shadow: 3px 3px 5px #AD00FF;
  background-color: transparent;
}

.navbar.navbar-light {
  background-color: rgba(10, 10, 10, 0.9);
  box-shadow: 0 3px 5px rgba(173, 0, 255, 0.3);
  height: 70px;
}

.navbar.navbar-light .navbar-title {
  height: 70px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 5px;
  color: #AD00FF;
  display: table-cell;
  vertical-align: middle;
}

.navbar.navbar-light .navbar-title:hover {
  color: #AD00FF;
}

.navbar.navbar-light .navbar-title img {
  max-width: 100px;
  height: auto;
}

.navbar.navbar-light .navbar-nav.nav-text-light > li {
  height: 70px;
}

.navbar.navbar-light .navbar-nav.nav-text-light > li > a {
  color: #FFF;
}

.navbar.navbar-light .navbar-nav.nav-text-light > li.active > a {
  color: #C64CFF;
}

.navbar-toggle {
  margin-top: 15px;
  margin-right: 0;
  padding-right: 0;
  background-color: transparent;
  border-radius: 0;
}

.navbar-toggle .icon-bar {
  background-color: #AD00FF;
  border-radius: 0;
  width: 25px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 6px;
}

/* MAIN TOP */

.main-top {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-top .main-content {
  width: 100%;
  height: 100%;
  display: table;
}

.main-top .main-content .container.content {
  display: table-cell;
  vertical-align: middle;
}

.main-top .main-content h1 {
  margin: 0 auto;
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 100px;
  font-weight: 600;
  letter-spacing: 15px;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  -webkit-animation: fadeInLeft 2s;
  animation: fadeInLeft 2s;
}

.main-top .main-content h2 {
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 20px;
  margin-bottom: 0;
  -webkit-animation: fadeInRight 2s;
  animation: fadeInRight 2s;
}

.main-top .scroll-down {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
}

.main-top .scroll-down:before {
  content: '';
  display: block;
  border-bottom: 5px solid #AD00FF;
  border-right: 5px solid #AD00FF;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: scrollDown 1s infinite alternate;
  -moz-animation: scrollDown 1s infinite alternate;
  -o-animation: scrollDown 1s infinite alternate;
  -ms-animation: scrollDown 1s infinite alternate;
  animation: scrollDown 1s infinite alternate;
}

@keyframes scrollDown {
  0% {
    opacity: 0.3;
    -webkit-transform: rotate(45deg) translate(0px);
    -ms-transform: rotate(45deg) translate(0px);
    transform: rotate(45deg) translate(0px);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
  }
}

.scrollDown {
  -webkit-animation-name: scrollDown;
  animation-name: scrollDown;
}

/* BUTTONS */

.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 30px;
  background-color: transparent;
  color: #AD00FF;
  border: 3px solid #AD00FF;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.btn:hover {
  color: #FFF;
  background-color: #AD00FF;
}

.btn:focus, .btn:active {
  background-color: #AD00FF;
  border: 3px solid #AD00FF;
  color: #FFF;
  outline: none !important;
}

/* LINKS */

a {
  color: #AD00FF;
  font-weight: 400;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a:hover, a:focus, a:active {
  color: #56007F;
  text-decoration: none;
  outline: none;
}

/* SECTION */

.section {
  float: left;
  width: 100%;
  background-color: #FFF;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  letter-spacing: 5px;
}

.section.dark {
	background-color: #AD00FF;
  padding: 100px 0;
}

.section.dark h2 {
  color: #FFF;
  font-size: 40px;
  font-weight: 100;
  text-align: center;
  letter-spacing: 10px;
  line-height: 2;
  padding: 0 5px;
}

.section.dark h3 {
  color: #FFF;
  line-height: 1.5;
}

.section.dark p {
  color: #FFF;
}

.section.dark .btn {
  color: #FFF;
  border: 3px solid #FFF;
  margin-top: 30px;
}

.section.dark .btn:hover {
  color: #AD00FF;
  background-color: #FFF;
}

/* ABOUT */

#about h2 {
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 10px;
  line-height: 1.5;
}

#about h3 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 10px;
  line-height: 1.3;
  padding-top: 30px;
}

#about p {
  padding-top: 50px;
  margin-bottom: 0;
}

.section.about .box1 {
  padding: 80px;
  background-color: #AD00FF;
}

.section.about .box2 {
  padding: 80px;
  background-color: #8200BF;
}

.section.about .box3 {
  padding: 80px;
  background-color: #56007F;
}

.section.about h3 {
  color: #FFF;
  letter-spacing: 1px;
}

.section.about p {
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  padding-top: 20px;
  margin-bottom: 0;
}

/* TEAM */

.team {
  width: 300px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.team .mask {
  width: 300px;
  height: 400px;
  position: absolute;
  overflow: hidden;
  text-align: center;
  top: 0;
  left: 0;
}

.team h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 25px;
  padding-top: 120px;
}

.team p {
  font-size: 15px;
  position: relative;
  color: #fff;
  text-align: center;
  line-height: 2;
}

.team a.info i {
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  padding: 20px 15px;
  color: #FFF;
  text-transform: uppercase;
}

.team img {
  width: 200%;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.team .mask {
  background-color: #AD00FF;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.team h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  background: transparent;
  margin: 20px 40px 0px 40px;
}

.team p {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.team a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.team:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 0.9;
}

.team:hover img {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.team:hover h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-animation: fadeInDown 1s;
  animation: fadeInDown 1s;
}

.team:hover p {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-animation: fadeInUp 1.5s;
  animation: fadeInUp 1.5s;
}

.team:hover a.info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
}

.team a.info i:hover {
  color: #111;
}

/* SERVICES */

.section.services {
  float: left;
}

.services i {
  font-size: 40px;
  margin-bottom: 20px;
}

.services .section-content p {
  padding-bottom: 100px;
  text-align: center;
}

.services .section-content h4 {
  padding-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}

/* PORTFOLIO */

.filter_group {
  margin-bottom: 30px;
}

.filter_group .filter {
  cursor: pointer;
  padding: 0 20px;
  font-size: 16px;
}

.filter_group .filter.active {
  color: #56007F;
}

.isotope {
  margin: 0 auto;
}

.work-item-wrapper {
  height: 100%;
  overflow: hidden;
}

.work-item {
  float: left;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 25%;
}

.work-item img {
  width: 100%;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.work-item:hover img {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.work-item .image-overlay {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #AD00FF;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.work-item .image-overlay:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.work-item .image-overlay a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.work-item .work-item-info {
  position: absolute;
  left: 0;
  bottom: 50%;
  height: 50px;
  margin-bottom: -2.5em;
  width: 100%;
  text-align: center;
  color: #fff;
}

.work-item .work-item-info i {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.1;
  color: #fff;
  font-size: 96px;
  position: absolute;
  left: 50%;
  margin-left: -48px;
  top: 50%;
  margin-top: -48px;
}

.work-item .work-item-info h3 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

.work-item:hover .work-item-info h3 {
  -webkit-animation: fadeInDown 1s;
  animation: fadeInDown 1s;
}

.work-item:hover .work-item-info p {
  -webkit-animation: fadeInUp 1.5s;
  animation: fadeInUp 1.5s;
}

#purchase.section {
  padding: 50px;
  background-color: #F7F7F7;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#purchase.section .btn {
  border: 3px solid #111;
  color: #111;
}

#purchase.section .btn:hover, #purchase.section .btn.active, #purchase.section .btn:focus {
  border: 3px solid #111;
  background-color: #111;
  color: #FFF;
}

/* Magnific Popup */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  position: fixed;
  outline: none;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 50px;
  height: 50px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.9;
  filter: alpha(opacity=90);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-close:hover, .mfp-close:focus {
  color: #CFCFCF;
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.9;
  filter: alpha(opacity=90);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.9;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #fff;
  word-wrap: break-word;
  vertical-align: middle;
  display: table-cell;
}

.mfp-title hr {
  background-color: #FFF;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

button.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.mfp-close {
  font-size: 25px;
  width: 40px;
  background: rgba(0, 0, 0, 0.9);
  height: 40px;
  top: 0;
  right: 0;
  text-align: center;
  padding-right: 0;
  display: inline;
  font-family: inherit;
  line-height: 1;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
  padding-bottom: 3px;
}

.mfp-bottom-bar {
  padding: 20px;
  background: #AD00FF;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  height: 200px;
  display: table;
  margin-top: -200px;
}

.mfp-bottom-bar h3 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-align: center;
}

.mfp-bottom-bar p {
  text-align: center;
  margin-bottom: 0;
}

img.mfp-img {
  padding: 0;
}

.mfp-figure {
  position: relative;
  margin: 0 40px 0 40px;
  overflow: hidden;
}

.mfp-fade.mfp-bg {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

/* NEWSLETTER */

.section.newsletter {
  padding: 100px 0;
}

.section.newsletter h3 {
  color: #333;
  margin-bottom: 50px;
}

.section.newsletter input {
  width: 80%;
  max-width: 800px;
  text-align: center;
}

.section.newsletter .btn {
  margin-top: 50px;
}

/* TESTIMONIALS */

.section.testimonials {
  padding: 100px 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #FFF;
}

.section.testimonials h2, .section.testimonials p {
  color: #FFF;
}

.section.testimonials hr {
  background-color: #FFF;
}

#owl-testimonials.owl-theme .owl-controls .owl-page span, #owl-testimonials.owl-theme .owl-pagination {
  display: none;
  height: 0;
}

#owl-testimonials.owl-theme .owl-controls.clickable {
  display: none;
  margin: 0;
  height: 0;
}

/* CLIENTS */

.section.clients {
  background-color: #F7F7F7;
  padding: 50px 0;
  margin: 0;
  text-align: center;
}

.section.clients img {
  max-height: 75px;
  width: auto;
  margin: 20px 0;
  cursor: pointer;
  opacity: 0.7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.section.clients img:hover {
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

/* CONTACT */

.contact-info li {
  padding-bottom: 20px;
}

.contact-info i {
  font-size: 30px;
  padding-bottom: 20px;
}

.contact-info h2 {
	font-size: 16px;
	letter-spacing: 0.2em;
}

.contact-info h2, .contact-info p {
  padding-left: 0px;
}

.contact-info p {
  font-size: 12px;
}

.contact-form {
  padding-top: 100px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .alert,
.contact-form label {
  display: none;
}

/* SOCIAL */

.section.social {
  background-color: #111;
  padding: 50px 0;
}

.section.social img {
  width: 200px;
  margin-bottom: 30px;
}

.section.social a i {
  color: #FFF;
  font-size: 30px;
  padding: 0 20px;
}

.section.social a i:hover {
  color: #AD00FF;
}

/* FOOTER */

#footer {
  background-color: #56007F;
  color: #FFF;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 100px;
  z-index: 9999;
}

.back-to-top a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.back-to-top a i {
  font-size: 50px;
  color: #AD00FF;
}

.back-to-top a i:hover {
  color: #56007F;
}

.copyright {
  font-size: 11px;
  letter-spacing: 3px;
  padding-top: 10px;
  text-align: center;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1023px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.8;
  }

  hr {
    width: 80px;
  }

  .padding {
    padding: 0 125px;
  }

  .padding-top {
    padding-top: 125px;
  }

  .padding-bottom {
    padding-bottom: 125px;
  }

  .section.about .box1, .section.about .box2, .section.about .box3 {
    padding: 50px;
  }

  .section.newsletter, .section.testimonials, .section.clients {
    padding: 80px 0;
  }

  .section.dark {
    padding: 60px 0;
  }

  .section.dark h2 {
    font-size: 30px;
  }

  .section.dark .btn {
    margin-top: 25px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 15px;
    letter-spacing: 2px;
  }

  #about h2 {
    font-size: 40px;
  }

  #about h3 {
    font-size: 30px;
  }

  .main-top .main-content h1 {
    font-size: 60px;
    margin-top: 35px;
  }

  .main-top .main-content h2 {
    font-size: 40px;
  }

  .main-top .scroll-down {
    bottom: 10px;
  }

  .work-item {
    width: 50%;
  }

  .work-item .image-overlay {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    top: initial;
    bottom: 0;
    height: 30%;
  }

  .work-item .image-overlay a:not(.mfp-iframe) {
    pointer-events: none;
    cursor: default;
  }

  .work-item .work-item-info i {
    display: none;
  }

  .work-item .work-item-info h3 {
    font-size: 1.3em;
    line-height: 8px;
  }

  .work-item .work-item-info p {
    font-size: 0.8em;
  }

  .section.social a i {
    font-size: 25px;
    padding: 0 15px;
  }

  canvas {
    display: none;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .back-to-top {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  #team .section-heading {
    margin-bottom: 0;
  }

  .team {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 13px;
  }

  hr {
    width: 75px;
    margin: 25px auto;
  }

  .padding {
    padding: 0 100px;
  }

  .padding-top {
    padding-top: 100px;
  }

  .padding-bottom {
    padding-bottom: 100px;
  }

  .section.newsletter, .section.testimonials, .section.clients {
    padding: 70px 0;
  }

  .section.newsletter h3 {
    margin-bottom: 40px;
  }

  .section.dark {
    padding: 50px 0;
  }

  .section.dark h2 {
    font-size: 25px;
    letter-spacing: 5px;
    line-height: 1.8;
  }

  .section.dark .btn {
    margin-top: 20px;
  }

  .main-top .main-content h1 {
    font-size: 50px;
  }

  .main-top .main-content h2 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .navbar.navbar-light .navbar-nav.nav-text-light > li > a {
    border-bottom: none;
  }

  .navbar.navbar-light .navbar-nav.nav-text-light > li > a:hover {
    border-bottom: none;
    text-decoration: none;
  }

  .navbar-collapse {
    background-color: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    position: absolute;
    width: 100%;
    left: 0;
  }

  .navbar-collapse li {
    display: table;
    height: 50px !important;
    padding-left: 30px;
  }

  .navbar-collapse li a {
    font-size: 12px;
    padding: 10px;
    display: table-cell;
    vertical-align: middle;
  }

  .main-top .scroll-down {
    width: 30px;
    height: 30px;
    bottom: 15px;
  }

  .main-top .scroll-down:before {
    width: 30px;
    height: 30px;
    bottom: 15px;
  }

  .btn {
    padding: 5px 20px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  #about h2 {
    font-size: 35px;
    letter-spacing: 5px;
  }

  #about h3 {
    font-size: 25px;
    letter-spacing: 5px;
    padding-top: 20px;
  }

  .team, .team .mask {
    width: 200px;
    height: 200px;
  }

  .team h2 {
    font-size: 15px;
    padding-top: 40px;
  }

  .team a.info i {
    font-size: 15px;
    padding: 10px 5px;
  }

  .filter_group .filter {
    padding: 0 5px;
    font-size: 14px;
  }

  .work-item {
    width: 100%;
  }

  .services i {
    font-size: 30px;
  }

  .section.clients img {
    max-height: 60px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info li {
    display: inline-block;
    padding: 0 5px 10px 5px;
  }

  .contact-info i {
    font-size: 20px;
    width: 100%;
    padding-bottom: 10px;
  }

  .contact-info h3, .contact-info p {
    padding-left: 0;
    padding-right: 0;
  }

  .section.social a i {
    font-size: 20px;
    padding: 0 10px;
  }

  .copyright {
    letter-spacing: 3px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 15px;
  }

  p {
    font-size: 12px;
    line-height: 1.5;
  }

  hr {
    width: 50px;
    margin: 20px auto;
  }

  .padding {
    padding: 0 50px;
  }

  .padding-top {
    padding-top: 50px;
  }

  .padding-bottom {
    padding-bottom: 50px;
  }

  .section.about .box1, .section.about .box2, .section.about .box3 {
    padding: 40px;
  }

  .section.newsletter, .section.testimonials, .section.clients {
    padding: 50px 0;
  }

  .section.newsletter h3 {
    margin-bottom: 30px;
  }

  .section.dark {
    padding: 30px 0;
  }

  .section.dark h2 {
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 1.5;
  }

  .section.dark .btn {
    margin-top: 10px;
  }

  .btn {
    padding: 5px 15px;
    font-size: 13px;
  }

  .main-top .main-content h1 {
    font-size: 40px;
  }

  .main-top .main-content h2 {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .main-top .scroll-down {
    width: 20px;
    height: 20px;
    bottom: 10px;
  }

  .main-top .scroll-down:before {
    width: 20px;
    height: 20px;
    bottom: 10px;
  }

  #about h2 {
    font-size: 30px;
    letter-spacing: 3px;
  }

  #about h3 {
    font-size: 20px;
    letter-spacing: 3px;
    padding-top: 10px;
  }

  .filter_group .filter {
    padding: 0 3px;
    font-size: 12px;
  }

  .section.clients img {
    max-height: 50px;
  }

  .contact-info li {
    display: block;
  }

  .contact-form .btn {
    width: 100%;
  }

  .section.social a i {
    font-size: 15px;
    padding: 0 5px;
  }

  .copyright {
    font-size: 11px;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .main-top .main-content h1 {
    font-size: 30px;
  }

  .main-top .main-content h2 {
    font-size: 20px;
    letter-spacing: 5px;
    padding-top: 10px;
  }

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}