/*

-----------------------
| [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. Clients
11. Newsletter
12. Testimonials
13. Contact
14. Social
15. Footer
16. Media Queries

*/

/* MAIN STYLE */

:root {
  --text-color: #333;
  --primary-color: #D6A15B;
  --light-color: #EFEFEF;
  --dark-color: #222;
  --header-background: #FFFFFF;
  --header-color: #333;
  --footer-background: #222;
  --footer-color: #FFF;
  --font-size: 14px;
}

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

body {
 font-family: "Open Sans", sans-serif;
 font-size: var(--font-size);
 font-weight: 400;
 color: var(--text-color);
 background-color: #FFF !important;
 line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
 font-family: "Open Sans", sans-serif;
 font-weight: 500;
 letter-spacing: 3px;
 color: var(--dark-color);
 margin-top: 0;
}

p {
 width: 100%;
 letter-spacing: 1px;
 line-height: 1.8;
}

p.mini {
 letter-spacing: 0;
 font-size: 12px;
 font-style: italic;
 color: var(--text-color);
 margin: 0;
}

.color {
 color: var(--primary-color);
}

.padding {
 padding: 0 100px !important;
}

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

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

i {
 color: var(--dark-color);
 transition: all 0.5s ease-in-out 0.1s;
 font-size: 3em;
}

i:hover {
 color: var(--primary-color);
 cursor: pointer;
}

input {
 width: 100%;
 border: none;
 border-bottom: 1px solid var(--dark-color);
 padding: 10px 15px;
 margin: 0;
 transition: all 0.5s ease-in-out 0.1s;
}

textarea {
 width: 100%;
 border: 1px solid var(--dark-color);
 padding: 15px;
 height: 150px;
 margin: 30px 0 20px 0;
 transition: all 0.5s ease-in-out 0.1s;
 resize: none;
}

input:focus {
 outline: none;
 border-bottom: 1px solid rgba(214, 161, 91, 0.7);
}

textarea:focus {
 outline: none;
 border: 1px solid rgba(214, 161, 91, 0.7);
}

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

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

.background {
 background-color: var(--primary-color);
}

::-moz-selection {
 background-color: var(--primary-color);
 color: #FFF;
}

::selection {
 background-color: var(--primary-color);
 color: #FFF;
}

::-moz-selection {
 background-color: var(--primary-color);
 color: #FFF;
}

.admin-bar .fixed-top {
 top: 32px;
}

.admin-bar .main-top .scroll-down {
 bottom: 52px !important;
}

b, strong {
 color: #000;
 font-size: 120%;
}

img {
 max-width: 100%;
 height: auto;
}

img.alignleft, .wp-caption.alignleft {
 margin: 5px 20px 5px 0;
}

img.alignright, .wp-caption.alignright {
 margin: 5px 0 5px 20px;
}

ul, ol {
 width: 100%;
 -webkit-padding-start: 10px;
 line-height: 2;
 letter-spacing: 1px;
 list-style-position: inside;
}

code {
 color: var(--primary-color);
 background-color: rgba(214, 161, 91, 0.1);
 border-radius: 0;
 padding: 3px 5px;
}

pre {
 background-color: rgba(214, 161, 91, 0.1);
 border: 1px solid var(--primary-color);
 border-radius: 0;
 padding: 20px;
}

blockquote {
 border-left: 3px solid var(--primary-color);
 font-style: italic;
 padding-left: 20px;
 width: 100%;
}

table {
 width: 100%;
 margin: 30px 0;
}

td, tr, th {
 border: 1px solid #555;
 padding: 10px;
 text-align: center;
}

kbd {
 border-radius: 0;
 padding: 3px 5px;
}

.aligncenter {
 margin: 0 auto;
}

.alignleft {
 float: left;
}

.alignright {
 float: right;
}

#gallery-1 img, #gallery-2 img {
 border: 3px solid var(--primary-color) !important;
}

.sticky-post {
 background-color: rgba(214, 161, 91, 0.1);
 border: 3px solid var(--primary-color);
 padding: 50px;
}

iframe {
 max-width: 100%;
}

dd {
 margin-top: 5px;
}

.twitter-tweet {
 margin: 0 auto;
}

label {
 margin: 20px 0;
}

.tags {
 width: 100%;
 margin-top: 20px;
}

select {
 border-radius: 0;
 border: 3px solid var(--primary-color);
 background-color: #FFF;
 color: #555;
 padding: 5px 10px;
 margin: 0 10px;
 letter-spacing: 1px;
 max-width: 90%;
 height: 50px;
}

span, em {
 font-size: 100%;
}

.widget {
 margin-bottom: 50px;
}

.widget .title-w {
 display: block;
 font-size: 20px;
 font-weight: 700;
 line-height: 1;
 letter-spacing: 1px;
 margin-bottom: 50px;
 margin-top: 0;
 position: relative;
}

.widget .title-w:before {
 content: "";
 position: absolute;
 left: 0;
 top: 40px;
 height: 2px;
 width: 50px;
 border-bottom: 2px solid var(--primary-color);
}

.widget ul {
 list-style-type: disc !important;
}

.widget_area ul {
 list-style-type: disc !important;
}

.nav-previous a, .nav-next a {
 transition: all 0.3s ease-in-out;
 font-weight: 400;
 letter-spacing: 1px;
 border: 3px solid var(--primary-color);
 color: var(--primary-color);
 padding: 5px 15px;
}

.nav-previous a:hover, .nav-next a:hover {
 font-weight: 400;
 background-color: var(--primary-color);
 color: #FFF !important;
}

.reply {
 float: left;
 width: 100%;
 margin: 30px 0;
}

.comment {
 width: 100%;
 float: left;
 padding: 20px 0;
}

.comments-area {
 margin-bottom: 100px;
}

.comments-area h4, #reply-title {
 float: left;
 width: 100%;
 margin-top: 50px;
}

cite.fn {
 padding-left: 10px;
}

.row {
 margin: 0;
}

.category .section-content .container, .tag .section-content .container{
 padding: 0;
}

#main header h1 {
 text-align: center;
}

#main .author-info {
 text-align: center;
}

.comment-list {
 float: left;
 width: 100%;
 margin: 30px 0 20px 0;
}

.comment-meta {
 padding: 10px 0;
}

.comment-reply-link {
 float: left;
 max-width: 200px !important;
 text-align: center;
}

.nav-links {
 float: left;
 width: 100%;
 margin: 30px 0;
}

.pagelinks {
 display: inline-block;
 font-weight: 600;
 color: var(--primary-color);
}

.pagelinks a {
 color: #000;
 font-weight: 600;
 display: inline-block;
}

.searchform {
 color: var(--text-color);
}

.wpcf7 input[type=submit] {
 max-width: 115px;
 margin-right: 0;
 margin-top: 0;
 margin-bottom: 0;
}

/* NAVIGATION BAR */

.navbar {
 transition: height 0.5s cubic-bezier(0, 0, 0.7, 1);
 font-family: "Open Sans", sans-serif;
 height: 100px;
 padding: 0 30px;
 border-radius: 0;
 margin-bottom: 0;
}

.navbar .navbar-container {
 width: 100%;
 display: table;
}

.navbar .navbar-container .navbar-content {
 float: right;
 display: table;
}

.navbar-title {
 transition: all 0.5s cubic-bezier(0, 0, 0.7, 1);
 height: 100px;
 font-size: 25px;
 font-weight: 300;
 letter-spacing: 5px;
 text-transform: uppercase;
 color: #FFF;
 display: table-cell;
 vertical-align: middle;
}

.navbar-title:first-letter {
 color: var(--primary-color);;
}

.navbar-title:hover {
 color: var(--primary-color);
 font-weight: 300;
}

.navbar-title img {
 width: auto;
 height: auto;
 max-height: 50px;
 padding-right: 20px;
}

.navbar .navbar-collapse {
 float: right;
}

.navbar ul {
 float: right;
 margin-bottom: 0;
}

.navbar li {
 transition: all 0.5s cubic-bezier(0, 0, 0.3, 1);
 float: none;
 height: 100px;
 display: table-cell;
 vertical-align: middle;
 position: relative;
 padding: 5px 15px;
 line-height: 1.5;
}

.navbar li > a {
 transition: all 0.5s cubic-bezier(0, 0, 0.3, 1);
 color: #FFF;
 font-size: 14px;
 font-weight: 400;
 letter-spacing: 1px;
 line-height: 20px;
 padding: 0;
}

.navbar li > a:hover, .navbar li > a:focus, .navbar li > a:active,
.navbar.navbar-light .navbar-title:hover {
 color: var(--primary-color);
}

.navbar.navbar-light {
 transition: height 0.5s cubic-bezier(0, 0, 0.3, 1);
 background-color: var(--header-background);
 border-bottom: 1px solid var(--primary-color);
 box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
 height: 70px;
}

.navbar.navbar-light .navbar-title {
 transition: all 0.5s cubic-bezier(0, 0, 0.3, 1);
 height: 70px;
 font-size: 16px;
 font-weight: 400;
 letter-spacing: 5px;
 color: var(--header-color);
 display: table-cell;
 vertical-align: middle;
}

.navbar.navbar-light li {
 transition: all 0.5s cubic-bezier(0, 0, 0.5, 1);
 height: 70px;
}

.navbar.navbar-light li > a {
 color: var(--header-color);
}

.navbar.navbar-light li > a.active {
 color: var(--primary-color);
 border-bottom: 1px solid var(--primary-color);
}

.navbar-toggler {
 height: 40px;
 background-color: var(--primary-color);
 border-radius: 0;
 border: none;
 float: right;
 margin-top: 15px;
}

.navbar-toggler:focus, .navbar-toggler:active {
 outline: none;
}

.navbar-toggler span {
 display: block;
 width: 25px;
 height: 2px;
 margin-bottom: 5px;
 background-color: #FFF;
 transition: all 0.3s ease-in-out;
}

.navbar-toggler span:last-of-type {
   margin-bottom: 0;
}

.navbar li .children {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  min-width: 200px;
  padding: 20px 0;
  background-color: var(--header-background);
  display: none;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar li:hover > .children {
  display: block;
}

.navbar li .children li {
  height: auto;
  position: relative;
  padding: 10px 30px;
}

.navbar li .children li a {
 color: var(--header-color);
}

.navbar li .children li a:hover, .navbar li .children li a:focus, .navbar li .children li a:active {
 color: var(--primary-color);
}

/* MAIN TOP */

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

.single .main-top, .archive .main-top {
 display: none;
}

.main-top .main-content {
 width: 100%;
 height: 100%;
 background-color: rgba(0,0,0,0.7);
 display: table;
}

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

.main-top .main-content h1 {
 color: #FFF;
 font-size: 30px;
 font-weight: 300;
 letter-spacing: 5px;
 width: 700px;
 margin: 0 auto;
 border: 3px solid var(--primary-color);
 padding: 20px 15px;
 -webkit-animation: fadeInDown 2s;
 animation: fadeInDown 2s;
}

.main-top .main-content p {
 color: #FFF;
 font-size: 20px;
 letter-spacing: 5px;
 margin-top: 30px;
 -webkit-animation: fadeInRight 3s;
 animation: fadeInRight 3s;
}

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

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

.main-top .scroll-down:before, .main-top .scroll-down:after {
 content: '';
 display: block;
 border-bottom: 1px solid var(--primary-color);
 border-right: 1px solid var(--primary-color);
 margin: auto;
 position: absolute;
 left: 0;
 right: 0;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}

.main-top .scroll-down:before {
 -webkit-animation: scrollDown 0.5s infinite alternate;
 animation: scrollDown 0.5s infinite alternate;
}

.main-top .scroll-down:after {
 width: 25px;
 height: 25px;
 bottom: 25px;
 -webkit-animation: scrollDown 0.5s infinite alternate;
 animation: scrollDown 0.5s infinite alternate;
}

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

 100% {
   opacity: 0.5;
   -webkit-transform: rotate(45deg) translate(3px, 3px);
   transform: rotate(45deg) translate(3px, 3px);
 }
}

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

 100% {
   opacity: 0.5;
   -webkit-transform: rotate(45deg) translate(3px, 3px);
   transform: rotate(45deg) translate(3px, 3px);
 }
}

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

/* BUTTONS */

.btn, .comment-reply-link, input[type=submit] {
 border-radius: 0;
 font-size: 15px;
 font-weight: 400;
 letter-spacing: 3px;
 text-transform: uppercase;
 padding: 10px 30px;
 margin: 0 auto;
 background-color: transparent;
 color: var(--primary-color);
 border: 2px solid var(--primary-color);
 display: block;
 max-width: 400px;
 margin: 0 auto;
 transition: all 0.5s ease-in-out;
}

.btn:hover, .btn:focus, .btn:active, .comment-reply-link:hover, .comment-reply-link:focus, .comment-reply-link:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active {
 font-weight: 400;
 background-color: var(--primary-color);
 border: 2px solid var(--primary-color);
 color: #FFF !important;
 outline: none !important;
}

input[type=submit] {
 margin: 20px auto;
}

/* LINKS */

a {
 color: var(--dark-color);
 font-weight: 600;
 transition: all 0.5s ease-in-out;
}

a:hover, a:focus, a:active {
 color: var(--primary-color);
 font-weight: 600;
 text-decoration: none;
 outline: none;
}

/* SECTION */

.section {
 float: left;
 width: 100%;
 overflow: hidden;
}

.section-heading {
 margin-bottom: 50px;
 position: relative;
 z-index: 1;
}

.section-heading h2 {
 font-size: 50px;
 letter-spacing: 5px;
 color: var(--text-color);
}

.section-heading h2 a {
 color: var(--text-color);
 font-weight: 400;
}

.section-heading h2 a:hover {
 color: var(--primary-color);
}

.section-heading p {
 font-size: 14px;
 font-weight: 400;
 font-style: italic;
 color: var(--text-color);
}

.section-content img {
  max-width: 100%;
}
.content-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 40%;
}

.section.dark {
 background-color: var(--dark-color);
 padding: 50px 0;
}

.section.dark h2 {
 font-weight: 300;
 letter-spacing: 10px;
 line-height: 1.5;
 text-align: center;
 color: #FFF;
 padding-bottom: 50px;
 margin: 0;
}

.section.dark .btn {
 display: inline-block;
}

.section.general {
 padding: 0;
 padding-top: 150px;
}

.section.general h3 {
 color: var(--text-color);
}

.section.general p {
 padding-bottom: 50px;
}

/* ABOUT */

.section.top .row {
 margin: 0;
}

.section.top .section-content .row p {
 padding: 20px 50px 20px 50px;
}

.section.top .section-content h2 {
 font-size: 18px !important;
 letter-spacing: 5px;
 padding-top: 30px;
}

.section.top .section-content i {
 padding-top: 30px;
 color: var(--dark-color);
}

.section.top .box1 {
 background-color: #FFDC91;
 padding: 50px 30px;
}

.section.top .box2 {
 background-color: #FFC972;
 padding: 50px 30px;
}

.section.top .box3 {
 background-color: var(--primary-color);
 padding: 50px 30px;
}

.about .section-heading, .about .section-content {
 text-align: left;
}

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

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

/* TEAM */

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

.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: 30px;
 background: rgba(0, 0, 0, 0.8);
 padding-top: 100px;
}

.team p {
 font-size: 15px;
 position: relative;
 color: #FFF;
 text-align: center;
 line-height: 2;
 margin-top: 10px;
 margin-bottom: 30px;
}

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

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

.team img {
 min-width: 100%;
 max-width: 100%;
 max-height: 400px;
 transition: all 1s ease-out;
}

.team .mask {
 background-color: var(--primary-color);
 top: 0;
 bottom: 100%;
 opacity: 0;
 transition: all 0.5s ease-in 0.1s;
 -webkit-transform: translateY(-400px);
 transform: translateY(-400px);
}

.team h2 {
 background: transparent;
 margin: 20px 40px 0px 40px;
}

.team:hover .mask {
 opacity: 0.9;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}

.team:hover img {
 transition-delay: 0s;
 -webkit-transform: scale(1.5);
 transform: scale(1.5);
}

/* SERVICES */

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

.services .section-content p {
 padding-bottom: 10px;
}

/* PORTFOLIO */

.section.portfolio {
 padding-top: 0px;
}

/* Works Grid */

.work-item {
 overflow: hidden;
 padding: 0 !important;
}

.work-item img {
 width: 100%;
 transition: all 1s ease-out;
}

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

.work-item .image-overlay {
 opacity: 0;
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: var(--primary-color);
}

.work-item .image-overlay:hover {
 opacity: 0.9;
}

.work-item .image-overlay a {
  width: 100%;
  height: 100%;
  display: table;
}

.work-item .work-item-info {
  width: 100%;
  text-align: center;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

.work-item .work-item-info i {
 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 {
 color: #FFF;
}

#purchase.section {
 padding: 50px;
 background-color: var(--primary-color);
 text-align: center;
 transition: all 0.5s ease-in-out;
}

#purchase.section .btn {
 border: 2px solid var(--dark-color);
 color: var(--dark-color);
 display: inline-block;
}

#purchase.section .btn:hover, #purchase.section .btn.active, #purchase.section .btn:focus {
 border: 2px solid var(--dark-color) !important;
 background-color: var(--dark-color) !important;
 color: #FFF;
}

/* Magnific Popup */

.mfp-bg {
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1042;
 overflow: hidden;
 position: fixed;
 background: #0b0b0b;
 opacity: 0.8;
}

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

.mfp-container {
 text-align: center;
 position: absolute;
 width: 100%;
 height: 100%;
 left: 0;
 top: 0;
 padding: 0 8px;
 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 {
 cursor: pointer;
 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;
 -ms-user-select: none;
 user-select: none;
}

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

.mfp-hide {
 display: none !important;
}

.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;
 box-shadow: none;
}

.mfp-close {
 width: 50px;
 height: 50px;
 line-height: 44px;
 position: absolute;
 right: 0;
 top: 0;
 text-decoration: none;
 text-align: center;
 opacity: 0.65;
 padding: 0 0 18px 10px;
 color: #FFF;
 font-style: normal;
 font-size: 28px;
 -webkit-transition: all 0.5s ease-in-out 0.1s;
}

.mfp-close-btn-in .mfp-close {
 color: var(--text-color);
}

.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: var(--primary-color);
 opacity: 1;
}

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

.mfp-arrow {
 position: absolute;
 opacity: 0.65;
 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;
}

img.mfp-img {
 width: auto;
 max-width: 100%;
 height: auto;
 display: block;
 line-height: 0;
 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 figure {
 margin: 0;
}

.mfp-title {
 color: #FFF;
 word-wrap: break-word;
 display: table-cell;
 vertical-align: middle;
}

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

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

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

.mfp-bottom-bar {
 width: 100%;
 background: var(--primary-color);
 opacity: 0.9;
 position: absolute;
 top: 100%;
 left: 0;
 bottom: 0;
 height: 100px;
 margin-top: -100px;
 cursor: auto;
 display: table;
}

.mfp-bottom-bar h3 {
 font-family: "Open Sans", sans-serif;
 color: #FFF;
 padding-top: 20px;
 padding-left: 10px;
 text-align: center;
}

.mfp-bottom-bar p {
 font-size: 0.9em;
 padding-top: 10px;
 padding-left: 10px;
 text-align: center;
}

img.mfp-img {
 padding: 0;
}

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

.mfp-fade.mfp-bg {
 opacity: 0;
 transition-property: all;
 transition-duration: 0.15s;
 transition-timing-function: ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
 opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
 opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
 opacity: 0;
 transition-property: all;
 transition-duration: 0.15s;
 transition-timing-function: ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
 opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
 opacity: 0;
}

/* CLIENTS */

#clients.section {
 padding: 50px 0;
 background-color: #EFEFEF;
}

#owl-clients .owl-controls .owl-page span {
 display: none;
}

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

#owl-clients .owl-item {
 text-align: center;
}

#owl-clients img {
 max-width: 180px;;
 transition: all 0.5s ease-in-out 0.1s;
 margin: 0 auto;
}

#clients img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

#clients img:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

/* NEWSLETTER */

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

.section.newsletter h3 {
 color: var(--text-color);
 font-weight: 700;
}

.section.newsletter input {
 width: 70%;
 text-align: center;
}

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

/* TESTIMONIALS */

.section.testimonials {
 padding: 100px 0;
 margin: 0;
 background: transparent;
 text-align: center;
 color: #FFF;
 position: relative;
}

.section.testimonials:after {
 content: '';
 width: 100%;
 height: 100%;;
 position: absolute;
 top: 0;
 left: 0;
 background-color: rgba(0,0,0,0.7);
}

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

.owl-theme .owl-controls .owl-page span {
 margin-top: 20px;
 background: var(--primary-color);
}

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

/* CONTACT */

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

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

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

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

.contact-info a {
 font-weight: 400;
}

.contact-info i {
 font-size: 1em;
}

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

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

/* SOCIAL */

.section.social {
 padding: 0;
 margin-top: 0 !important;
}

.section.social i {
 color: #FFF;
}

.section.social i:hover {
 -webkit-transform: scale(1.5);
 transform: scale(1.5);
}

.section.social .facebook {
 color: #FFF;
 padding: 50px 0;
 background-color: #3b5998;;
 transition: all 0.5s ease-in-out 0.1s;
}

.section.social .facebook:hover {
 opacity: 0.7;
}

.section.social .twitter {
 padding: 50px 0;
 background-color: #55acee;;
 transition: all 0.5s ease-in-out 0.1s;
}

.section.social .twitter:hover {
 opacity: 0.7;
}

.section.social .instagram {
 padding: 50px 0;
 background-color: #c32aa3;
 transition: all 0.5s ease-in-out 0.1s;
}

.section.social .instagram:hover {
 opacity: 0.7;
}

.section.social .linkedin {
 padding: 50px 0;
 background-color: #007bb5;;
 transition: all 0.5s ease-in-out 0.1s;
}

.section.social .linkedin:hover {
 opacity: 0.7;
}

/* FOOTER */

footer.section {
 float: left;
 width: 100%;
 padding: 10px 0;
 margin-top: 0;
 background-color: var(--footer-background);
 color: var(--footer-color);
}

footer.section a {
 color: var(--footer-color);
}

footer.section a:hover {
 text-shadow: 0px 0px 5px #FFF;
}

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

.back-to-top a {
 border-radius: 0;
 transition-property: background-color;
 transition-duration: 0.2s;
 transition-timing-function: linear;
 display: block;
 width: 30px;
 height: 30px;
 text-align: center;
}

.back-to-top a i {
 color: var(--primary-color);
}

.copyright {
 font-size: 0.8em;
 letter-spacing: 0.2em;
 line-height: 36px;
 padding-top: 10px;
 text-align: center;
}

/* BANNER */

.banner-top {
 width: 100%;
 height: 400px;
 background-color: #232323;
 display: table;
 background-size: cover;
 background-position: center;
 position: relative;
}

.banner-top .banner-overlay {
 width: 100%;
 height: 400px;
 position: absolute;
 top: 0;
 left: 0;
 background-color: rgba(0,0,0,0.7);
 display: table;
}

.banner-top .banner-content {
 width: 100%;
 height: 400px;
 display: table;
}

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

.banner-top .banner-content h1 {
 color: #FFF;
 margin-top: 50px;
 margin-bottom: 20px;
}

.banner-top .banner-content p, .banner-top .banner-content a {
 color: #FFF;
 margin-bottom: 0;
}

.banner-top .banner-content a:hover, .banner-top .banner-content a:focus, .banner-top .banner-content a:active {
 color: var(--primary-color);
}

/* MEDIA QUERIES */

@media screen and (min-width: 1200px) {

 .navbar li .children li {
   display: block;
 }

 .navbar li .children li .children {
   top: 0;
   left: 100%;
 }

 .navbar.navbar-light li .children {
   top: 70px;
 }
}

@media screen and (min-width: 1024px) {
 .work-item .image-overlay {
   opacity: 0;
   transition: all 0.5s ease-out;
   -webkit-transform: translateY(-300px);
   transform: translateY(-300px);
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: var(--primary-color);
 }

 .work-item:hover .image-overlay {
   -webkit-transform: translateY(0);
   transform: translateY(0);
 }
}

@media screen and (max-width: 1199px) {
 .navbar-title {
   font-size: 15px;
   letter-spacing: 3px;
 }

 .navbar-collapse {
   width: 100%;
   background-color: var(--header-background);
   padding: 0;
   border-bottom: 1px solid var(--primary-color);
   border-top: 0;
   position: absolute;
   left: 0;
   top: 70px;
 }

 .navbar.navbar-light ul {
   padding-left: 0;
   margin-bottom: 0;
   padding: 20px 0;
 }

 .navbar.navbar-light li {
   display: table;
   padding: 20px 30px;
   height: auto;
 }

 .navbar.navbar-light > li.page_item_has_children, .navbar.navbar-light li > .children {
   padding-bottom: 0;
 }

 .navbar.navbar-light li a {
   font-size: 13px;
   position: relative;
   display: block;
   color: var(--header-color);
 }

 .navbar.navbar-light li .children {
   position: relative;
   height: auto;
   top: 0;
   left: 0;
   box-shadow: none;
   border-bottom: 0;
 }
}

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

 h2 {
   font-size: 35px !important;
 }

 h3 {
   font-size: 30px !important;
 }

 h4 {
   font-size: 25px !important;
 }

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

 .main-top .main-content h1 {
   font-size: 30px !important;
   width: 500px;
   padding: 15px 10px;
   margin-top: 70px;
 }

 .padding {
   padding: 0 80px !important;
 }

 .padding-top {
   padding-top: 80px !important;
 }

 .padding-bottom {
   padding-bottom: 80px !important;
 }

 .section.testimonials {
   padding: 80px 0;
 }

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

 .section.dark h2 {
   font-size: 25px !important;
 }

 .services i, .section.social i {
   font-size: 2.5em;
 }

 .services .section-content p {
   padding-bottom: 50px;
 }

 .work-item .image-overlay {
   opacity: 0.9;
   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;
 }

 .comments-area {
   margin-bottom: 80px;
 }
}

@media screen and (max-width: 991px) {
 .team, .team .mask {
   width: 200px;
   height: 250px;
 }

 .team h2 {
   margin: 20px 20px 0px 20px;
   font-size: 16px !important;
   padding-top: 50px;
 }

 .team p {
   font-size: 12px;
   padding-top: 10px;
   line-height: 1.5em;
   margin-bottom: 10px;
 }

 .team a.info {
   padding-top: 15px;
   font-size: 30px;
 }
}

@media screen and (max-width: 980px) {
 .navbar li {
   padding: 0 3px;
 }

 .navbar li > a {
   font-size: 12px;
 }

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

 .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;
 }
}

@media screen and (max-width: 800px) and (orientation: landscape) and (max-height: 300px) {
 .navbar.navbar-light, .navbar.navbar-light .navbar-title {
   font-size: 15px;
   letter-spacing: 3px;
 }

 .main-top .main-content h1 {
   margin-top: 50px !important;
 }

 .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;
   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;
 }

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

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

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

@media screen and (max-width: 782px) {
  .admin-bar .fixed-top {
     top: 46px;
  }
}

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

 h2 {
   font-size: 30px !important;
 }

 h3 {
   font-size: 25px !important;
 }

 h4 {
   font-size: 20px !important;
 }

 p {
   font-size: 13px !important;
   line-height: 1.8 !important;
 }

 .padding {
   padding: 0 70px !important;
 }

 .padding-top {
   padding-top: 70px !important;
 }

 .padding-bottom {
   padding-bottom: 70px !important;
 }

 .section-heading {
   margin-bottom: 40px;
 }

 .section.testimonials {
   padding: 70px 0;
 }

 .section.top .box1, .section.top .box2, .section.top .box3 {
   padding: 30px 10px;
 }

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

 .section.dark h2 {
   font-size: 22px !important;
   text-align: center;
   padding-bottom: 40px;
 }

 .section.top .section-content i {
   padding-top: 10px;
   font-size: 2.5em;
 }

 .section.top .section-content h2 {
   font-size: 16px !important;
   padding-top: 20px;
 }

 .services i, .section.social i {
   font-size: 2em;
 }

 .padding {
   padding: 0 30px;
 }

 .nav > li > a {
   font-size: 10px;
   padding: 0 5px;
 }

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

 #about .section-content h2 {
   letter-spacing: 1px;
 }

 .work-item-filters li {
   display: block;
   margin: 20px;
 }

 .work-item-filters li a {
   font-size: 12px;
 }

 .navbar-collapse {
   background-color: #FFF;
   padding: 0;
   position: absolute;
   width: 100%;
   left: 0;
 }

 .navbar-collapse .nav {
   width: 800px;
 }

 .navbar-collapse ul {
   width: 100%;
   border-bottom: 1px solid var(--primary-color);
   margin-bottom: 0;
   -webkit-padding-start: 0;
 }

 .navbar.navbar-light li {
   padding: 10px 30px;
 }

 .navbar-collapse li a {
   font-size: 10px;
 }

 .main-top .main-content h1 {
   font-size: 25px !important;
   padding: 10px 5px;
   width: 350px;
   letter-spacing: 3px;
   margin-top: 70px;
 }

 .main-top .main-content p {
   font-size: 10px;
   letter-spacing: 3px;
 }

 .team, .team .mask {
   width: 300px;
   height: 400px;
 }

 .team {
   margin: 30px auto;
 }

 .team h2 {
   margin: 20px 20px 0px 20px;
   font-size: 30px !important;
   padding-top: 100px;
 }

 .team p {
   font-size: 12px;
   padding-top: 10px;
   line-height: 1.5em;
   margin-bottom: 10px;
 }

 .team a.info {
   padding-top: 15px;
   font-size: 30px;
 }

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

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

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

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

 .section.social .facebook, .section.social .twitter, .section.social .instagram, .section.social .linkedin {
   padding: 40px 0;
 }

 .comments-area {
   margin-bottom: 70px;
 }
}

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

 h2 {
   font-size: 25px !important;
 }

 h3 {
   font-size: 20px !important;
 }

 h4 {
   font-size: 15px !important;
 }

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

 .padding {
   padding: 0 50px !important;
 }

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

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

 .section-heading {
   margin-bottom: 30px;
 }

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

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

 .section.top .box1, .section.top .box2, .section.top .box3 {
   padding: 20px 5px;
 }

 .section.dark h2 {
   font-size: 18px !important;
   padding-bottom: 30px;
 }

 .section.top .section-content i {
   font-size: 2em;
 }

 .section.top .section-content h2 {
   font-size: 14px !important;
   letter-spacing: 3px;
   padding-top: 15px;
 }

 .main-top .main-content h1 {
   font-size: 20px !important;
   width: 300px;
   padding: 10px 3px;
 }

 .team, .team .mask {
   width: 250px;
   height: 300px;
 }

 .services i, .section.social i {
   font-size: 1.5em;
 }

 .services .section-content p {
   padding-bottom: 30px;
 }

 .contact {
   padding-bottom: 0;
 }

 .contact-info li {
   display: block;
 }

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

 .section.social .facebook, .section.social .twitter, .section.social .instagram, .section.social .linkedin {
   padding: 30px 0;
 }

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

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

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

 .comments-area {
   margin-bottom: 50px;
 }
}

.ttp-expand-popup-click-action i {
  right: 10px;
    bottom: 10px;
    position: absolute;
    color: #d6a05b;
    font-size: 14pt;
}

.section-services-bg {
  background-image: url('../img/bg-polygon-line-art.jpg');
    background-repeat: no-repeat;
    background-position: bottom right;
}
.section-services-bg > div > div > div > div {
  transition: all 1s;
}
.section-services-bg > div > div > div > div:hover {
  background: #efefef;
}

.section-services-bg > div > div > div > div:hover i {
  color: var(--primary-color);
}