/*
Theme Name: Wythe
Theme URI: http://themeforest.net/user/ArtstudioWorks/portfolio
Description: Wythe is the perfect and stylish template to present your ideas online. With wide range of project layouts, from full-screen to iconic grid, you can easily create template you need, that will engaging visitors and potential clients.
Author: ArtstudioWorks
Author URI: http://themeforest.net/user/ArtstudioWorks
Version: 1.3.5
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, featured-images, full-width-template, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Designed by ArtstudioWorks: http://themeforest.net/user/ArtstudioWorks
Text Domain: wythe

All PHP code is released under the GNU General Public Licence version 3.0
*/

/**
 * Table of Contents
 *
 * 1.0 - Typography
 * 2.0 - Elements
 *    2.1 - Header
 *     2.1.1 Header2
 *    2.2 - Navigation
 *     2.2.1 - Dropdown menu
 *    2.3 - TopBar
 * 3.0 - Hidden navigation 
 * 4.0 - Widgets
 * 5.0 - 404 page
 * 6.0 - Forms
 * 7.0 - Post
 *    7.1 - Post elements
 *    7.2 - Post sharebox
 *    7.3 - Single post
 *      7.3.1 - Related posts
 *      7.3.2 - Author info
 *      7.3.3 - Post comments
 *      7.3.4 - Post navigation
 *    7.4 - Recent posts section
 * 8.0 - Post slider
 * 9.0 - Page scroll progress    
 * 10.0 - Footer
*/

/** 
 * 1.0 - Typography 
*/
body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 2em;
    color: #5f5f5f;
    position: relative;
}
#header {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
    background:none;
    padding-top: 60px;
}
#header-main.not-fixed #header {
    position: relative;
    padding-bottom: 60px;
}
.tax-portfolio_filter #header {
    position: relative;
    padding: 40px 0;
}
.tax-portfolio_filter #header .menu-button-back,
.tax-portfolio_filter #header .menu-button-open {
    color: #222222;
}
.menu-button-back,
.menu-button-back-home {
    display: block;
    float: left;
    font-size: 28px;
    line-height: 1em;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.menu-button-back i:after,
.menu-button-back-home i:after {
    content: "";
    width: 0px;
    height: 0px;
    border-top:1px solid;
    color: inherit;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    left: 1px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.menu-button-back:hover i:after,
.menu-button-back-home:hover i:after {
    width:26px;
}
.menu-button-back:hover,
.menu-button-back-home:hover {
    opacity: 1;
}
.menu-button-back:hover,
.menu-button-back-home:hover {
    transform:matrix(1, 0, 0, 1, -8, 0);
    width: 28px;
}
.portfolio-details .menu-button-back,
.portfolio-details .menu-button-back-home {
    position: fixed;
}
.menu-button-open {
    float: right;
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
    margin: 0px 0 0 0;
}
.menu-button-close {
    float: right;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 0px;
    color: #ffffff;
    margin-top: 14px;
}
.menu-button-close i {
    font-size: 47px;
    line-height: 47px;
    color: #ffffff;
}
.menu-button-open {
    color: #ffffff;
    opacity: 0;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.menu-button-open.loaded {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}
.menu-button-open span {
    display: block;
    position: absolute;
    width: 0%;
    height: 0px;
    color: transparent;
    border: 1px solid;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}
.menu-button-open.loaded span {
    width: 100%;
    color: inherit;
}
.menu-button-open .line1 {
    top: 0;
}
.menu-button-open .line2 {
    top: 8px;
}
.menu-button-open .line3 {
    bottom: 0;
}
.menu-button-close span {
    display: block;
    position: absolute;
    width: 100%;
    height: 0px;
    top: 40%;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    color: inherit;
    border: 1px solid;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.menu-button-close .line1 {
    transform:translateY(-6px);
}
.menu-button-close .line2 {
    transform:translateY(6px);
}
.menu-button-close.loaded .line1 {
    -webkit-transform: rotate(45deg); /* Safari and Chrome */
    -moz-transform: rotate(45deg);   /* Firefox */
    -ms-transform: rotate(45deg);   /* IE 9 */
    -o-transform: rotate(45deg);   /* Opera */
    transform: rotate(45deg);
}
.menu-button-close.loaded .line2 {
    -webkit-transform: rotate(-45deg); /* Safari and Chrome */
    -moz-transform: rotate(-45deg);   /* Firefox */
    -ms-transform: rotate(-45deg);   /* IE 9 */
    -o-transform: rotate(-45deg);   /* Opera */
    transform: rotate(-45deg);
}
.overflow-hidden {
    overflow: hidden;
}
.menu-lightbox {
    position: fixed;
    top: 0%;
    right: 0;
    left: 0%;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    color: #ffffff;
    display: none;
}
.admin-bar .menu-lightbox {
  top: 31px;
}
.menu-lightbox .dtable {
    height: 100vh;
}
#lightbox-header {
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
}
#lightbox-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: rgba(255,255,255,0.25);
    padding-bottom: 64px;
}
#lightbox-footer .copyright {
    font-size: 10px;
    line-height: 1em;
    font-family: 'Montserrat', sans-serif;
    float: left;
}
#lightbox-footer .socials {
    float: right;
    padding: 0;
    width: auto;
}
#lightbox-footer .socials li {
    width: auto;
    height: auto;
    padding: 0 0 0 25px;
    overflow: hidden;
}
#lightbox-footer .socials li a i {
    display: none;
}
#lightbox-footer .socials li a {
    font-size: 10px;
    line-height: 10px;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transform:translate(100px,0px);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
#lightbox-footer .socials li a span {
    color: inherit;
    padding-bottom: 3px;
}
#lightbox-footer .socials li a:hover span {
    -webkit-transition: none;
    transition: none;
}
#lightbox-footer .socials li a span:after {
    content: "";
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    height: 0px;
    color: inherit;
    border-top: 1px solid;
    -webkit-transition: width 0.4s ease-out;
    -moz-transition: width 0.4s ease-out;
    -ms-transition: width 0.4s ease-out;
    -o-transition: width 0.4s ease-out;
    transition: width 0.4s ease-out;
}
.menu-lightbox.active #lightbox-footer .socials li a {
    transform:translate(0,0);
}
#lightbox-footer .socials li a:hover span:after {
    width: 100%;
}
#lightbox-footer .socials li.behance a:hover {
    color: #f7f7f7 !important;
}
#lightbox-navigation {
    overflow:hidden;
}
.menu-lightbox .menu {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 0px;
    list-style: none;
}
.menu-lightbox .menu li {
    padding: 0 0 0px 0;
    margin: 0 0 0px 0;
    overflow: hidden;
}
.menu-lightbox .menu li.menu-item-has-children {
    position: relative;
}
.menu-lightbox .menu .sub-menu {
    margin: 0;
}
.menu-lightbox .menu .sub-menu {
    padding-left: 15px;
    overflow: hidden;
   /*max-height: 0;*/
    display: none;
}
.menu-lightbox .menu li a {
    color: #ffffff;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    display: inline-block;
    padding-right: 30px;
    transform:translate(0,30px);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    opacity: 0;
    margin-bottom: 21px;
}
.menu-lightbox .menu li.menu-item-has-children.active > .sub-menu {
 /* display: block;
  max-height: 360px;
  transition-delay:0.2s;*/
}
.menu-lightbox .menu .sub-menu li a {
    font-size: 13px;
    font-weight: normal;
}
.menu-lightbox .menu li.menu-item-has-children {
    position: relative;
    padding-left: 15px;
}
.menu-lightbox .menu li.menu-item-has-children > a {
    position: relative;
}
.menu-lightbox .menu li.menu-item-has-children:before {
    content: "\f067";
    font-family: "Fontawesome";
    font-size: 10px;
    line-height: 10px;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 0px;
    transform:translate(0,30px);
    -webkit-transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    opacity: 0;
    cursor: pointer;
}
.menu-lightbox.active .menu li a,
.menu-lightbox.active .menu li.menu-item-has-children:before {
    transform:translate(0,0px);
    opacity: 1;
}
.menu-lightbox .menu li.menu-item-has-children.active:before {
    content: "\f068";
}
.menu-lightbox .menu li a:after {
    content: "\f105";
    font-family: "Fontawesome";
    font-size: 18px;
    line-height: 1.1em;
    display: block;
    position: absolute;
    right: 10px;
    margin-top: -2px;
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    color: inherit;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.menu-lightbox .menu li a:hover {
    color: #e51428;
}
.menu-lightbox .menu li a:hover:after {
    right: 0;
    opacity: 1;
}
.widget_nav_menu .menu .sub-menu {
    margin-left: 0;
}
.logo {
    overflow: hidden;
    float: left;
}
#header .logo a {
    display: block;
    opacity: 0;
    -webkit-transition: all 0.9s ease-in;
    -moz-transition: all 0.9s ease-in;
    -ms-transition: all 0.9s ease-in;
    -o-transition: all 0.9s ease-in;
    transition: all 0.9s ease-in;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
#header .logo.loaded a {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}
.logo img {
    float: left;
}
.logo h1 {
    float: left;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: normal;
    font-size: 22px;
    line-height: 2.32em;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#header .logo .logo_dark {
    display: none;
}
#header.dark .logo .logo_light,
.not-fixed #header .logo .logo_light {
    display: none;
}
#header.dark .logo .logo_dark,
.not-fixed #header .logo .logo_dark {
    display: block;
}
#header.dark .logo h1,
.not-fixed #header .logo h1 {
    color: #202020;
}
#header.sticky {
    position: fixed;
    background-color: rgba(255,255,255, 0.9);
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
    transition:all 0.3s ease-in;
}
.admin-bar #header.sticky {
    top:32px;
}
#header.sticky .logo_light {
    display: none !important;
}
#header.sticky .logo_dark {
    display: block !important;
}
#header.sticky .menu-button-open,
#header.sticky .menu-button-back-home {
    color: #212121 !important;
}
#header .my-tr {
  display: flex;
  flex-direction:row;
  align-items:center;
}
.show-on-mobile {
    display: none;
}
#header .my-tr .my-td.my-td-right {
    margin-left: auto;
}
#header.header2 {
    position: relative;
    background: #ffffff;
    padding: 15px 0;
}
#header.header2 .logo_dark {
    display: block !important;
}
#header.header2 .logo_light {
    display: none !important;
}
#header #navigation {
    line-height: 1;
}
#navigation .menu {
    display: inline-block;
    margin: 0;
    padding: 0 15px;
    list-style: none;
}
#navigation .menu li {
  margin: 0;
  position: relative;  
}
#navigation .menu > li {
    padding: 13px 0px 12px;
    margin: 0 18px;
    display: block;
    float: left;
}
#navigation .menu li a {
    text-decoration: none;
    color: #222222;
    text-transform: uppercase;
    font-size: 11px;
}
#header.sticky #navigation .menu li a {
    color: #212121 !important;
}
#navigation .menu li > a:hover,
#navigation .menu li.current-menu-ancestor > a {
  color: #e51428;
}
/* dropdown menu */
#navigation ul {
  -webkit-font-smoothing:antialiased;
    list-style: none;
    margin: 0;
    padding: 0;
}
#navigation li ul li {
  height: 0;
  padding: 0;
    -webkit-transition: all .15s ease;
       -moz-transition: all .15s ease;
        -ms-transition: all .15s ease;
         -o-transition: all .15s ease;
            transition: all .15s ease;
}

#navigation li ul {
    float: left;
    background-color: #f7f7f7;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    text-align: left;
    z-index: 1;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}
#navigation ul ul ul {
  top: 0%;
  left: 100%;
  margin-left: 1px;
  display: none;
}
#navigation li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;

}
#navigation li:hover > ul li {
  height: 37px;
}
#navigation li:hover > ul ul {
    top: 0%;
}
#navigation.light li:hover > ul ul {
    margin-top: -1px;
}
#navigation li ul li {
    float: none;
    min-width: 200px;
    padding: 0 20px;
}
#navigation .menu li ul {
  padding: 0px;
}
#navigation .menu li ul li a {
  color: #222222;
  font-weight: 700;
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0px;
  font-size: 11px;
  border-top: 1px dashed #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#navigation .menu li ul li a {
  border-color: #ebebeb;
  color: #414141;
}
#navigation .menu li ul li:first-child a {
  border-top: 0;
}
#navigation li ul a:hover {
    color: #d1d1d1;
}
.section {
    background-size: cover;
    background-position: center;
}
#fullpage .section {
    transition:all 0.5s ease-in-out;
}
.transparent {
    opacity:0;
}
.tp-caption.desc {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    white-space: nowrap;
    display: block;
}
.tp-caption.desc.dark {
    color: #212121;
}
.tp-caption.desc a {
    color: inherit;
}
.tp-bannertimer {
    display: none !important; 
}
.tp-caption.desc .subtitle {
    display: block;
    overflow: hidden;
    font-size: 10px;
    line-height: 3.3em;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.tp-caption.desc h2 {
    font-size: 36px;
    line-height: 1.4em;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.tp-caption.desc {
    padding-left: 75px !important;
}

.tp-banner {
    width: 100%;
    overflow: hidden;
}
.tparrows.wythe {
    border: 0;
    font-family: 'Ionicons';
    font-size: 28px;
    height: 18px;
    line-height: 18px;
    color: #ffffff;
    width: 30px;
    background: none;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    transform:matrix(1, 0, 0, 1, 0, 0) !important;
}
.tparrows.wythe:before {
    color: inherit;
    line-height: inherit;
    text-align: inherit;
    font-size: 20px;
}
.tparrows.wythe {
    top: 50% !important;
    left: 150px !important;
    margin-top: 105px;
    background:none;
}
.revslider-initialised .tparrows.wythe {
    opacity: 0.65;
}
.tp-leftarrow:before {
    content: "\f3d2";
}
.tparrows.wythe.dark {
    color: #202020;
}
.tparrows.wythe:after {
    content: "";
    width: 0px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 1px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.tparrows.wythe.dark:after {
    background-color: #202020;
}
.tp-rightarrow:before {
    content: "\f3d3";
}
.tp-rightarrow {
    right: auto;
    text-align: right;
    margin-left: 57px;
}
.tparrows.wythe.tp-rightarrow:after {
    right: 1px;
    left: auto;
}
.tparrows.wythe:hover:after {
    width:26px;
}
.tparrows.wythe:hover {
    opacity: 1;
    background: none;
}
.tparrows.wythe.tp-leftarrow:hover {
    transform:matrix(1, 0, 0, 1, -8, 0) !important;
}
.tparrows.wythe.tp-rightarrow:hover {
    transform:matrix(1, 0, 0, 1, 8, 0) !important;
}

.tp-bullets.wythe .tp-bullet {
    color: rgba(255,255,255, .4);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    width: 16px;
    height: 24px;
    line-height: 24px;
    background: none;
    z-index: 2;
}
.tp-bullets.wythe .tp-bullet.dark {
    color: rgba(0,0,0, .4);
}
.tp-bullets.wythe .tp-bullet:hover, .tp-bullets.wythe .tp-bullet.selected {
    color: #ffffff;
}
.tp-bullets.wythe .tp-bullet.dark:hover, .tp-bullets.wythe .tp-bullet.dark.selected {
    color: #212121;
}
.tp-bullets.wythe .tp-bullet b {
    display: inline-block;
    font-weight: normal;
    opacity: 0;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.revslider-initialised .tp-bullets.wythe .tp-bullet b {
    opacity: 1;
    transform:matrix(1, 0, 0, 1, 0, 0) !important;
}
.pagination-line-container {
    width: 100%;
    position: absolute;
    padding-top: 25px;
    height: 51px;
    top: 0;
    margin-top: 6px;
    z-index: 1;
}
.pagination-line {
    height: 100%;
    display: block;
    width: 30px;
    position: relative;
}
.pagination-line .line-item {
    will-change: transform;
    background-color: #ffffff;
    width: 1px;
    height: 1px;
    margin-left: 8px;
    position: absolute;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
.pagination-line.dark .line-item {
    background-color: #202020;
}
.revslider-initialised .pagination-line .line-item {
    opacity: 1;
    transform:matrix(1, 0, 0, 1, 0, 0) !important;
}
.pagination-line.dark .line-item {
    background-color: #202020;
}
.special-hover span, 
h2.tp-caption span {
    position: relative;
    padding-bottom: 3px;
    color: inherit;
}
.special-hover span:after,
h2.tp-caption span:after {
    content: "";
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    height: 0px;
    color: inherit;
    border-top: 1px solid;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
.special-hover:hover span:after,
h2.tp-caption:hover span:after {
    width: 100%;
}
/*info-block*/
.title-block {
    position: relative;
    z-index: 1;
    color: #202020;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
}
.title-block .subtitle {
    display: block;
    font-size: 10px;
    line-height: 3.3em;
    margin-bottom: 7px;
    letter-spacing: 2.15px;
    color: #9b9b9b;
}
.title-block h2 {
    font-size: 26px;
    line-height: 1em;
    font-weight: bold;
    letter-spacing: 6.1px;
}
.title-block h1 {
    font-size: 32px;
    line-height: 1em;
    font-weight: bold;
    letter-spacing: 5px;
}
.info-block .text {
    font-size: 17px;
    line-height: 1.883em;
}
.info-block {
    margin-bottom: 36px;
    overflow: hidden;
}
.info-block .title-block {
    margin-bottom: 33px;
}
.pad-top-liq {
    padding-top: 35%;
}
.custom-button {
    color: #202020;
    line-height: 64px;
    display: block;
    overflow: hidden;
}
.custom-button span {
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}
.custom-button:before {
    font-size: 17px;
    line-height: 54px;
    height: 58px;
    width: 58px;
    display: block;
    float: left;
    border-radius: 100%;
    border: 2px solid;
    text-align: center;
    margin-right: 26px;
    text-indent: 4px;
}
.custom-button:hover {
    color: #5f5f5f;
}
.ipad-mockup {
    float: right;
    margin-right: 23px;
    clear: both;
    background-image: url(../images/info-ipad-area.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 0;
    padding-bottom: 69.8723%;
    position: relative;
}
.ipad-mockup .inner-padding {
    padding:0;
    overflow: hidden;
    position: absolute;
    top: 8%;
    bottom: 12.1%;
    left:9.72%;
    right: 11.18%;
}
.ipad-mockup .inner-padding img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*portfolio*/
.portfolio-container {
    overflow: hidden;
}
.portfolio-item {
    width: 20%;
    float: left;
    height: 0;
    padding-top: 28.114%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    color: #202020;
}
.portfolio-item.dark {

}
.portfolio-item.width-1x {
    width: 20%;
    max-width: 100%;
}
.portfolio-item.width-2x {
    width: 40%;
    max-width: 100%;
}
.portfolio-item.height-2x {
   padding-top: 56.228%; 
}
.portfolio-meta {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
}
.portfolio-like {
    width: 55px;
    text-align: center;
    font-size: 18px;
    display: block;
    position: absolute;
    top: 68px;
    left: 0;
    color: inherit;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(15px,0,0);
    -moz-transform: translate3d(15px,0,0);
    -ms-transform: translate3d(15px,0,0);
    transform: translate3d(15px,0,0);
}
.portfolio-like a {
    color: inherit;
}
.portfolio-like span.alreadyvoted,
.portfolio-like a.voted {
    color: #e51428;
}
.portfolio-like .count {
    font-size: 10px;
    line-height: 1em;
}
.portfolio-meta .time {
    position: absolute;
    left: 55px;
    bottom: 0;
    height: 55px;
    line-height: 55px;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0px,-15px,0);
    -moz-transform: translate3d(0px,-15px,0);
    -ms-transform: translate3d(0px,-15px,0);
    transform: translate3d(0px,-15px,0);
}
.portfolio-item-more {
    position: absolute;
    width: 32px;
    right: 30px;
    bottom: 0;
    height: 55px;
    line-height: 55px;
    font-size: 17px;
    text-align: right;
    color: inherit !important;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0px,-15px,0);
    -moz-transform: translate3d(0px,-15px,0);
    -ms-transform: translate3d(0px,-15px,0);
    transform: translate3d(0px,-15px,0);
}
.portfolio-item-more i {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    transform: matrix(1,0,0,1,0,0);
    display: block;
    position: relative;
}
.portfolio-item-more i:after {
    content: "";
    width: 0px;
    height: 1px;
    border-top: 1px solid;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right: 2px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.portfolio-item-more:hover i:after {
    width: 26px;
}
.portfolio-item-more:hover i {
    transform: matrix(1,0,0,1,8,0);
}
.portfolio-item:hover .portfolio-item-more,
.portfolio-item:hover .portfolio-meta .time,
.portfolio-item:hover .portfolio-like {
    -webkit-transform: translate3d(0px,0px,0);
    -moz-transform: translate3d(0px,0px,0);
    -ms-transform: translate3d(0px,0px,0);
    transform: translate3d(0px,0px,0);
}
.portfolio-header {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.portfolio-item:hover .portfolio-header {
    -webkit-transform: translate3d(55px,-55px,0);
    -moz-transform: translate3d(55px,-55px,0);
    -ms-transform: translate3d(55px,-55px,0);
    transform: translate3d(55px,-55px,0);
}
.portfolio-img {
    position: absolute;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}
.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-item-title {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    padding: 55px 35px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.portfolio-item-title .meta-categories {
    color: rgba(255,255,255,.5);
    font-size: 10px;
    line-height: 1em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.portfolio-item.dark .portfolio-item-title .meta-categories {
    color: rgba(32,32,32,0.5);
}
.portfolio-item-title .meta-categories a {
    color: inherit;
}
.portfolio-item:hover .portfolio-item-title {
    -webkit-transform: translate3d(-22.5px,55px,0);
    -moz-transform: translate3d(-22.5px,55px,0);
    -ms-transform: translate3d(-22.5px,55px,0);
    transform: translate3d(-22.5px,55px,0);
}
.portfolio-item-title h3 {
    font-size: 16px;
    line-height: 1em;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 600;
}
.portfolio-item.dark .portfolio-item-title h3 {
    color: #202020;
}
#pagination {
    text-align: center;
}
#pagination a,
#pagination span {
    padding: 0 5px;
    color: #a7a8aa;
}
#pagination .previous,
#pagination .next {
    padding: 0 15px;
}
#pagination span,
#pagination a:hover {
    color: #e51428;
}
.hide {
    display: none;
}
.portfolio-item.portfolio-more-items {
    background-color: #ffffff;
}
.portfolio-more-items .load-more {
    width: 130%;
    height: auto;
    padding-top: 130%;
    display: block;
    position: absolute;
    top: 57%;
    left: -15%;
    background-color: #ffffff;
    border-radius: 50% 50% 0 0;
    -webkit-transition: -webkit-transform cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: -moz-transform cubic-bezier(.23,.81,.4,1) .5s;
    transition: transform cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    text-align: center;
    overflow: hidden;
}
.portfolio-more-items .load-more.active {
    background-color: #ededed;
}
.portfolio-more-items .load-more span {
    font-size: 22px;
    line-height: 1em;
    top: 23%;
    position: absolute;
    width: 100%;
    left: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #a6a6a6;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    display: block;
    z-index: 2;
    -webkit-transition: all cubic-bezier(.23,.81,.4,1) .5s;
    -moz-transition: all cubic-bezier(.23,.81,.4,1) .5s;
    transition: all cubic-bezier(.23,.81,.4,1) .5s;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.portfolio-more-items .load-more.active span {
    color: #202020;
}
.portfolio-more-items .load-more.active:hover {
    -webkit-transform: translate3d(0,-25px,0);
    -moz-transform: translate3d(0,-25px,0);
    -ms-transform: translate3d(0,-25px,0);
    transform: translate3d(0,-25px,0);
}
.portfolio-more-items .load-more.active:hover span {
    -webkit-transform: translate3d(0,50px,0);
    -moz-transform: translate3d(0,50px,0);
    -ms-transform: translate3d(0,50px,0);
    transform: translate3d(0,50px,0);
    font-size: 18px;
}
.portfolio-more-items .load-more:after {
    content: "";
    width: 0%;
    height: 0%;
    left: 50%;
    right: 0;
    display: block;
    position: absolute;
    top: 50%;
    background-color: #f7f7f7;
    border-radius: 100%;
    z-index: 1;
    margin-top: 25px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.portfolio-more-items .load-more.active:hover:after {
    width: 104%;
    height: 104%;
    margin-top: 0;
    -webkit-transition: all 1.2s linear;
    -moz-transition: all 1.2s linear;
    -ms-transition: all 1.2s linear;
    transition: all 1.2s linear;
}
/*Services*/
#services {
    padding: 131px 0px;
}
.service-block {
    margin-bottom: 92px;
    padding-top: 8px;
}
.service-block:last-child {
    margin-bottom: 0;
}
.service-block .icon-box {
    font-size: 48px;
    line-height: 1em;
    color: #9b9b9b;
    margin-bottom: 17px;
}
.service-block .service-title {
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #202020;
    letter-spacing: 3.2px;
    margin-bottom: 13px;
}
/*clients*/
#clients {
    background-color: #000000;
    padding: 124px 0 152px;
}
.clients-logo {
    width: 100%;
    min-height: 52px;
    overflow: hidden;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.clients-logo li {
    width: 12.5%;
    height: 52px;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
}
.clients-logo.animation li {
    display: none;
    opacity: 0;
}
.clients-logo li.hide {
    display: none;
    height: 0;
}
.clients-logo li.show {
    display: block;
    opacity: 1;
}
@keyframes showIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes showIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.clients-logo li.show {
    animation: showIn 0.7s cubic-bezier(.694,0,.335,1);
    -webkit-animation: showIn 0.7s cubic-bezier(.694,0,.335,1);
}
.clients-logo li img {
    position: relative;
    top: 50%;
    transition: all .3s;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.5;
    -webkit-backface-visibility: hidden;
}
.clients-logo li a:hover img {
    opacity: 1;
}
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}
.testimonials-item {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.667em;
    color: #d7d7d7;
    width: 100%;
    float: left;
}
.owl-testimonials .owl-nav {
    width: 87px;
    margin: 90px auto 0;
    position: relative;
    height: 18px;
}
.owl-testimonials .owl-nav div {
    border: 0;
    font-family: 'Ionicons';
    font-size: 28px;
    height: 18px;
    line-height: 18px;
    color: #ffffff;
    width: 30px;
    margin: 0px 0 0 0;
    position: absolute;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    transform:matrix(1, 0, 0, 1, 0, 0);
    opacity: 0.65;
    cursor: pointer;
}
.owl-testimonials .owl-nav .owl-prev {
    right: auto;
    left: 0px;
}
.owl-testimonials .owl-nav .owl-prev:before {
    content: "\f3d2";
}
.owl-testimonials .owl-nav div:after {
    content: "";
    width: 0px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 1px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.owl-testimonials .owl-nav .owl-next {
    right: 0;
    left: auto;
    text-align: right;
}
.owl-testimonials .owl-nav .owl-next:before {
    content: "\f3d3";
}
.owl-testimonials .owl-nav .owl-next:after {
    right: 1px;
    left: auto;
}
.owl-testimonials .owl-nav div:hover:after {
    width:26px;
}
.owl-testimonials .owl-nav div:hover {
    opacity: 1;
}
.owl-testimonials .owl-nav .owl-prev:hover {
    transform:matrix(1, 0, 0, 1, -8, 0);
}
.owl-testimonials .owl-nav .owl-next:hover {
    transform:matrix(1, 0, 0, 1, 8, 0);
}
/*#blog*/
.blog-grid {
    width: 100%;
    overflow: hidden;
}
.blog-grid.cols-5 .blog-item {
    width: 20%;
    float: left;
}
.blog-grid.cols-4 .blog-item,
.blog-grid.cols-4 .portfolio-item {
    width: 25%;
    float: left;
}
.blog-grid.cols-4 .portfolio-item {
    padding-top: 18.473%;
    margin-bottom: 40px;
}
.blog-grid.cols-3 .blog-item {
    width: 33.33333%;
    float: left;
}
.blog-grid.cols-2 .blog-item {
    width: 50%;
    float: left;
}
.mb40 {
    margin-bottom: 40px;
}
.blog-item {
    padding: 27px 41px 0 41px;
    width: 100%;
    min-height: 300px;
    position: relative;
    z-index: 0;
    background-color: #f7f7f7;
}
.blog-item:nth-child(2n){
    background-color: #ededed;
}
#main .blog-list .blog-item {
    background-color: #f7f7f7;
}
#main .blog-list .blog-item:nth-child(4n+2),
#main .blog-list .blog-item:nth-child(4n+3){
    background-color: #ededed;
}
.blog-item .post-img {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: all 1.2s cubic-bezier(.23,.81,.4,1);
    -moz-transition: all 1.2s cubic-bezier(.23,.81,.4,1);
    -ms-transition: all 1.2s cubic-bezier(.23,.81,.4,1);
    -o-transition: all 1.2s cubic-bezier(.23,.81,.4,1);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change:opacity;
}
.blog-item:hover .post-img,
.blog-item.blog-overlay .post-img {
    opacity: 1;
}

.blog-item .post-img img {
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 1;
    height: 100%;
    object-fit: cover;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-item .post-img .overlay-img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    z-index: 2;
}
.blog-item.blog-overlay .post-img .overlay-img {
    opacity: 0;
    transition:all 0.4s ease;
}
.blog-item.blog-overlay:hover .post-img .overlay-img {
    opacity: 1;
}
.blog-item .meta-categories {
    margin-bottom: 7px;
}
.blog-item.blog-overlay .meta-categories {
    overflow: hidden;
}
.blog-item .meta-categories a {
    color: rgba(32,32,32,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1em;
}
.blog-item.blog-overlay .meta-categories a,
.blog-item.blog-overlay h3 a {
    transition:all 0.4s ease;
    transition-delay:0.1s;
    transform:translateY(-30px);
    opacity: 0;
    display: inline-block;
}
.blog-item.blog-overlay h3 a {
    transition-delay:0.3s;
}
.blog-item.blog-overlay:hover .meta-categories a,
.blog-item.blog-overlay:hover h3 a {
    opacity: 1;
    transform:translateY(0);
}
.blog-item:hover .meta-categories a {
    color: rgba(255,255,255,0.5);
}
.blog-item h3 {
    font-size: 16px;
    line-height: 1.5em;
    color: #202020;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    overflow: hidden;
    text-overflow:ellipsis;
}
.pagination_post {
    margin-bottom: 60px;
}
.pagination_post span {
    padding-right: 10px;
}
.blog-item h3 a {
    color: inherit;
}
.blog-item:hover h3 {
    color: #ffffff;
}
.blog-item .blog-item-more {
    color: #202020;
    display: block;
    position: absolute;
    bottom: 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 50px;
    height: 50px;
    overflow: hidden;
    -webkit-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.blog-item.blog-overlay .blog-item-more {
    opacity: 0;
}
.blog-item.blog-overlay:hover .blog-item-more {
    opacity: 1;
}
.blog-item .blog-item-more:before {
    content: "";
    width: 0;
    height: 40px;
    border-left: 1px solid #c5c5c5;
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.blog-item:hover .blog-item-more {
    color: #ffffff;
    padding-top: 40px;
}
.blog-item:hover .blog-item-more:before {
    height: 25px;
}
.load-more-text {
    font-size: 11px;
    line-height: 1em;
    color: #9b9b9b;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 50px;
    display: none;
    padding-top: 25px;
}
.load-more-text-no {
    font-size: 11px;
    line-height: 1em;
    color: #9b9b9b;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 25px;
}
/*Call to action*/
#call-to-action {
    padding: 90px 0 90px;
    background-color: #000000;
}
.cta-block {
    display: table;
    vertical-align: middle;
    table-layout: fixed;
    width: 100%;
}
.cta-text {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.923em;
    color: #ffffff;
    width: 80%;
}
.cta-button {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 20%;
}
.button,
.wpcf7-submit,
input[type="submit"] {
    border:0;
    padding: 21px 45px 20px;
    color: #ffffff;
    font-size: 10px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    background-color: #202020;
    display: inline-block;
    width: auto;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    border-radius: 0;
}
input.button:hover,
.wpcf7-submit:hover,
input[type="submit"]:hover {
    background-color: #e51428;
    color: #ffffff;
}
.button span {
    position: relative;
    z-index: 1;
    color: #ffffff;
}
.button.spec-hover {
    overflow: hidden;
}
.button.spec-hover:before {
    content: "";
    position: absolute;
    display: block;
    z-index: 0;
    width: 0px;
    height: 0px;
    left: 50%;
    top: 50%;
    right: 0;
    margin-top: 30px;
    background: #e51428;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.button.spec-hover:hover:before {
    width: 200px;
    height: 200px;
    margin-top: 0;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    transition: all .4s linear;
}
.cta-button .button {
    background-color: transparent;
    border: 1px solid #4c4c4c;
    line-height: 1em;
    position: relative;
    display: block;
    overflow: hidden;
    float: right;
    clear: left;
    padding: 29px 45px;
}
.cta-button .button span {
    position: relative;
    z-index: 2;
}
.cta-button .button:before {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    width: 0px;
    height: 0px;
    left: 50%;
    top: 50%;
    right: 0;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.cta-button .button:hover:before {
    width: 200px;
    height: 200px;
    margin-top: 0;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    transition: all .4s linear;
}
.cta-button .button:hover span {
    color: #212121 !important;
}
/*Team*/
#team {
    padding-top: 116px;
}
.team-members {
    padding-top: 54px;
}
.team-member {
    position: relative;
    padding:0;
}
.member-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    padding: 20px 55px;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    will-change:opacity;
}
.team-member .member-img img {
    width: 100%;
    height: auto;
}
.team-member:hover .member-info {
    opacity: 1;
}
.member-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8333em;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    overflow: hidden;
}
.member-name span {
    opacity: 0;
    transform:translateY(30px);
    transition: all 0.5s ease-out;
    display: inline-block;
}
.member-position {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 37px;
    overflow: hidden;
}
.member-position span {
    opacity: 0;
    transform:translateY(20px);
    transition: all 0.3s ease-out;
    transition-delay:0.3s;
    display: inline-block;
}
.member-socials {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
    overflow: hidden;
}
.member-socials li {
    padding: 0 11px 0 0;
    margin: 0;
    float: left;
    opacity: 0;
    transform:translateY(16px);
    transition: all 0.3s ease-out;
    transition-delay:0.4s;
}
.team-member:hover .member-socials li,
.team-member:hover .member-name span,
.team-member:hover .member-position span {
    opacity: 1;
    transform:translateY(0);
}
.member-socials li a {
    color: #ffffff;
    font-size: 16px;
}
.dtable {
    display: table;
    width: 100%;
    height: 100%;
}
.dtcell {
    vertical-align: middle;
    display: table-cell;
}
/*Contacts*/
#contacts {

}
.socials {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
    overflow: hidden;
    padding-top: 54px;
    padding-bottom: 54px;
}
.socials li {
    display: block;
    padding: 0;
    margin: 0;
    width: 16.66666%;
    height: 130px;
    float: left;
    text-align: center;
    padding-top: 50px;
}
.socials li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    color: #202020;
    letter-spacing: 2px;
}
.socials li a i {
    display: none;
    font-size: 24px;
}
.socials li a span {
    display: inline-block;
    position: relative;
}
.socials li a:hover span {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
.socials li.facebook a:hover {
    color: #3b5999 !important;
}
.socials li.twitter a:hover {
    color: #55acee !important;
}
.socials li.linkedin a:hover {
    color: #0077B5 !important;
}
.socials li.vimeo a:hover {
    color: #1ab7ea !important;
}
.socials li.instagram a:hover {
    color: #e4405f !important;
}
.socials li.behance a:hover {
    color: #131418 !important;
}
.map-form-block {
    overflow: hidden;
    width: 100%;
    background-color: #f7f7f7;
}
.map-block {
    width: 50%;
}
.map-block #map {
    height: 550px;
}
.map-block .gmnoprint,
img[src*="google_white5"],
.gm-style-cc {
    display: none;
}
.form-block {
    width: 50%;
    padding: 40px 115px;
}
.form-block textarea {
    min-height: 98px;
    height: 98px;
    margin-bottom: 40px;
}
.wpcf7 br {
    display: none;
}
.wpcf7 form p:nth-last-child(2) {
    margin-bottom: 0;
}
input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0px 14px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.4em;
    color: #5f5f5f;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 34px;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-appearance: none;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
input:-moz-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
textarea:-moz-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
input::-moz-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
textarea::-moz-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
input:-ms-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
textarea:-ms-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    text-transform: uppercase;
    color: #7b7b7b;
    letter-spacing: 2px;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color:#e9e9e9;
}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus::-moz-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-moz-placeholder {opacity: 0; transition: opacity 0.3s ease;}
textarea:focus:-ms-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
/*project details*/
.single-portfolio .elementor-section.elementor-section-boxed > .elementor-container,
#projects-pagination .container {
    max-width: 1500px;
}
.portfolio-details .cols-container {
    max-width: 1500px;
    margin: 0 auto;
}
.portfolio-details .cols-container .col-2 {
    width: 50%;
    float: left;
}
.portfolio-details .cols-container .col-4 {
    width: 100%;
    float: left;
}
.portfolio-details .row div[class*="col-"],
#projects-pagination .container .span12 {
    padding: 0 9.7%;
}
/*.single-portfolio .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    padding: 0;
}*/
#intro h2,
#intro h6 {
    text-align: center;
}
.intro-title h2 {
   font-family: 'Playfair Display', serif; 
   font-weight: 900;
   color: #fff;
   font-size: 100px;
   line-height: 1em;
   margin-bottom: 30px;
}
.intro-title h6 {
    font-family: 'Montserrat';
    font-size: 13px;
    line-height: 1em;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

#overview {
    background-color: #000;
    color: #888888;
}
.white {
    color: #ffffff !important;
}
.slogan {
    text-align: left;
    padding-top: 130px;
}
.slogan h2 {
   font-family: 'Playfair Display', serif; 
   font-weight: 900;
   color: #fff;
   font-size: 250px;
   line-height: 1em;
   margin-bottom: 35px;
}
.slogan h6 {
    font-family: 'Montserrat';
    font-size: 10px;
    line-height: 1em;
    color: #9b9b9b;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#block-images {
    background-color: #000;
    color: #888888;
}
#block-images .fp-tableCell {
   padding-bottom: 210px; 
}
#block-images .info-block {
    margin: 0;
}
#block-images .info-block .text {
    font-size: 15px;
    line-height: 2em;
    font-weight: 500;
}
.gap {
    height: 94px;
}
.single-title {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #ffffff;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.article .article-footer {
    margin-bottom: 106px;
}

.video {
    position: relative;
}
.video-play {
    display: block;
    width: 62px;
    height: 62px;
    text-align: center;
    border: 2px solid;
    color: #ffffff;
    border-radius: 100%;
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    margin: -31px 0 0 -31px;
}
.video-play i {
    display: block;
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    position: absolute;
    top: 21px;
    left: 23px;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change:opacity;
}
.video-play.pause i {
    left: 21px;
}
.video-play.pause i:before {
    content: "\f04c";
}
.video-play.hide {
    display: none;
    opacity: 0;
}
.video:hover .video-play.hide {
    display: block;
    opacity: 1;
}
.gap55 {
    height: 55px;
}
#more-info{
    background-color: #000;
}
.project-info-list {
    margin: 0;
    padding: 0;
    list-style:none;
    color: #898989;
    font-size: 13px;
}
@keyframes FadeIn { 
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.project-info-list li {
    padding: 0 0 13px 0px;
    margin: 0;
}
.project-info-list[data-scrolled-into-view="true"] li {
    animation: FadeIn 1s linear;
    animation-fill-mode: both;
}
.project-info-list[data-scrolled-into-view="true"] li:nth-child(1) { animation-delay: .1s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(2) { animation-delay: .2s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(3) { animation-delay: .3s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(4) { animation-delay: .4s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(5) { animation-delay: .5s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(6) { animation-delay: .6s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(7) { animation-delay: .7s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(8) { animation-delay: .8s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(9) { animation-delay: .9s }
.project-info-list[data-scrolled-into-view="true"] li:nth-child(10) { animation-delay: 1s }

.project-info-list.items-inline {
    width: 100%;
    overflow: hidden;
}
.project-info-list.items-inline li {
    display: inline-block;
    padding: 0 0px 0 55px;
}
.project-info-list.items-inline li:first-child {
    padding-left: 0;
}
.project-info-list li:last-child {
    padding-bottom: 0;
    padding-top: 10px;
}
.project-info-list li.title {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #ffffff;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 48px;
    padding: 0;
}
.black {
    color: #202020 !important;
}
.project-info-list li strong {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.project-info-list li .sep {
    content: "";
    width: 11px;
    height: 4px;
    color: inherit;
    border-top: 1px solid;
    line-height: 1px;
    margin: 0 4px;
    display: inline-block;
}
.project-info-list li i {
    color: #fefefe;
    font-size: 16px;
    padding-right: 5px;
}
.project-info-list.items-inline li i {
    color: #202020;
}
#projects-pagination {
    background-color: #f6f6f6;
    overflow: hidden;
}
#projects-pagination .fp-tableCell {
    padding: 0;
}
.project-pagin {
    font-family: 'Montserrat', sans-serif;
    color:#202020;
    text-transform: uppercase;
    display: block;
    clear: both;
    padding-top: 135px;
    padding-bottom: 94px;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.project-pagin:after {
    content: "";
    width: 0%;
    height: 0%;
    left: 50%;
    right: 0;
    display: block;
    position: absolute;
    top: 50%;
    background-color: #ededed;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    transition: all .4s linear;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.project-pagin:hover:after {
    width: 150%;
    height: 0%;
    padding-top: 150%;
    margin-top: 0;
    -webkit-transition: all .6s linear;
    -moz-transition: all .6s linear;
    -ms-transition: all .6s linear;
    transition: all .6s linear;
}
.project-pagin span.subtitle {
    font-size: 10px;
    color: #9b9b9b;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 17px;
    z-index: 3;
    position: relative;
}
.project-pagin h3.project-title {
    font-size: 35px;
    letter-spacing: 8px;
    font-weight: bold;
    z-index: 3;
    position: relative;
}
.project-pagin.project-prev {
    text-align: right;
    float: right;
    clear: both;
}
.description {
    table-layout: fixed;
}
.description .dropcap {
    font-size: 450px;
    line-height: 1em;
    font-weight: bold;
    font-family: 'Montserrat';
    color: #8db7c5;
    text-shadow:0px 0px 25px rgba(1,1,1,0.1);
    width: 38%;
}
.description .text {
    color: #ffffff;
    font-size: 26px;
    line-height: 1.615em;
    font-weight: 500;
}
#main-idea {
    background-position: center bottom;
    background-size: 100%;
    background-color: #f6f6f6;
    background-repeat: no-repeat;
    padding: 150px 0 0px 0;
}
#main-idea .fp-tableCell {
    padding: 0;
}
#fonts-preview {
    background-color: #f6f6f6;
}
.font-preview-block {
    overflow: hidden;
    width: 100%;
}

.font-preview-block .main-letter {
    font-size: 82px;
    line-height: 1em;
    width: 138px;
    float: left;
    text-align: left;
    color: #7ca8b6;
}
.font-preview-block .font-family {
    font-size: 16px;
    line-height: 1em;
    color: #9b9b9b;
    padding-top: 20px;
    letter-spacing: 0.65px;
}
.elementor-widget-asw-fonts-block {
    margin-bottom: 0 !important;
}
.elementor-widget-asw-fonts-block .elementor-widget-container:not(:last-child) {
    margin-bottom: 25px;
}
.font-preview-block .example {
    font-size: 22px;
    line-height: 52px;
    color: #252525;
}
#placeholder {
    background-color: #f6f6f6;
    padding: 94px 0;
}
.placeholder-img-shadow {
    width: 100%;
    height: 0;
    padding-top: 50.207%;
    -webkit-box-shadow: 0 0 65px 1px rgba(1,1,1,0.1);
    box-shadow: 0 0 65px 1px rgba(1,1,1,0.1);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.placeholder-img-shadow img {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#concepts {
    background-color: #f6f6f6;
}
.project-slider {
    -webkit-box-shadow: 0 0 65px 1px rgba(1,1,1,0.1);
    box-shadow: 0 0 65px 1px rgba(1,1,1,0.1);
    background-color: #fff;
    margin-bottom: 46px;
    position: relative;
    z-index: 9;
}
.project-slider.owl-gallery .owl-nav div {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    transform: matrix(1, 0, 0, 1, 0, 0);
    width: 30px;
}
.project-slider.owl-gallery .owl-nav div:after {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 1px solid;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 1px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.project-slider.owl-gallery .owl-nav .owl-next {
    text-align: right;
}
.project-slider.owl-gallery .owl-nav .owl-next:after {
    right: 1px;
    left: auto;
}
.project-slider.owl-gallery .owl-nav div:hover:after {
    width: 26px;
}
.project-slider.owl-gallery .owl-nav .owl-next:hover {
    transform: matrix(1, 0, 0, 1, 8, 0);
}
.project-slider.owl-gallery .owl-nav .owl-prev:hover {
    transform: matrix(1, 0, 0, 1, -8, 0);
}
.project-slider .item {
    width: 100%;
    height: 0;
    padding-top: 50.207%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.portfolio-details-10 .project-slider .item {
    padding-top: 73.036%;
}
.project-slider .item img {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.project-num-slides {
    color: #202020;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}
#colors {
    background-color: #f6f6f6;
}

.palette-blocks-wrapper {
    margin: 0 -15px;
    overflow: hidden;
}
.palette-block {
    float: left;
    width: 33.33333%;
    padding: 0 15px 15px;
    min-width: 78px;
    max-width: 163px;
}
.palette-block .color-block {
    width: 100%;
    height: 0;
    padding-top: 100%;
}
.palette-block .color-text {
    color: #202020;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 2.54em;
    font-weight: bold;
    letter-spacing: 2.7px;
    padding-top: 9px;
}
body.portfolio-details .section .fp-tableCell {
    padding: 94px 0;
}
#wireframes {
    background-position: center bottom;
}
.wireframes-img {
    text-align: center;
}
.wireframes-img img {
    display: block;
    margin: 0 auto 45px;
}
.click-here-link {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2.4px; 
}
#responsive {
    background-color: #f6f6f6;
}
figure.image {
    text-align: center;
}
.shadow-img {
    border-radius:35px;
    -webkit-box-shadow: 0 0 50px 10px rgba(1,1,1,0.1);
    box-shadow: 0 0 50px 10px rgba(1,1,1,0.1);
}
.shadow-img-2 {
    -webkit-box-shadow: 0 0 50px 10px rgba(1,1,1,0.1);
    box-shadow: 0 0 50px 10px rgba(1,1,1,0.1);
}
/*project-details-3*/
#header.dark .menu-button-back,
#header.dark .menu-button-back-home,
#header.dark .menu-button-open span,
.not-fixed #header .menu-button-back,
.not-fixed #header .menu-button-back-home,
.not-fixed #header .menu-button-open span,
.not-fixed #header .menu-button-open {
    color: #202020;
}
#header.dark .menu-button-back,
#header.dark .menu-button-back-home
.not-fixed #header .menu-button-back,
.not-fixed #header .menu-button-back-home {
    opacity: 0.65;
}
#project-title {
    padding: 220px 0 110px;
}
.project-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 105px;
    letter-spacing: 10px;
    line-height: 1em;
    color: #202020;
    margin-bottom: 34px;
}
#main-image {
    background-color: #ed1b2e;
    padding: 139px 0;
}
#task-idea {
    padding: 150px 0;
}
h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #202020;
    margin-bottom: 13px;
}
#idea-result {
    padding-bottom: 100px;
}
#list-description {
    padding-top: 95px;
    padding-bottom: 172px;
}
#materials {
    background-color: #808080;
    padding: 148px 0;
}
.single-portfolio .elementor-section.elementor-section-boxed.cols-container2 > .elementor-container,
.cols-container-2 {
    max-width: 1725px;
    width: 100%;
    margin: 0 auto;
}
.portfolio-details .cols-container-2 .row .col-3 {
    width: 33.33333%;
    padding: 0 70px;
    float: left;
    overflow: hidden;
}
/*portfolio details 4*/
#details .details {
    width: 100%;
    display: table;
    table-layout: fixed;
}
#details .details .details-img {
    width: 65.55%;
    display: table-cell;
}
#details .details .details-img img {
    width: 100%;
}
#details .details .details-description {
    position: relative;
    padding: 90px 75px;
    background-color: #090909;
    display: table-cell;
    vertical-align: top;
    color: #aaaaaa;
}
#details .details .details-description h5 {
    color: #ffffff;
}
.client-inquiries {
    position: absolute;
    bottom: 90px;
}
.client-inquiries h5 {
    font-size: 10px;
    margin: 0;
}
.client-inquiries a.mail {
    color: #ffffff;
}
#details .details .details-description .project-info-list li {
    color: #0acdcc;
}
a.lightcase {
    cursor: url(../images/open-lightbox.png), auto;
}
a.lightcase.dark {
    cursor: url(../images/open-lightbox-dark.png), auto;
}
/*project details 5*/
.project-title-stroke {
    text-align: center;
    color: #202020;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    -webkit-text-stroke: 3px #ffffff;
    text-stroke:3px #ffffff;
    font-weight: bold;
}
.wythe-parallax {
    background-attachment: fixed;
}
.gap150 {
    height: 150px;
}
#info {
    padding:150px 0;
    background-color: #f6f6f6;
}
.col-3-1 {
    width: 25%;
    float: left;
    padding-right: 0 !important;
}
.col-3-3 {
    width: 75%;
    float: left;
}
.text-block {
    font-size: 25px;
    line-height: 42px;
    color: #5f5f5f;
}
/*Portfolio details 6*/
body.portfolio-details-6 {
    background-color: #0780e7;
}
.fullscreen-section {
    height: 100%;
    height: 100vh;
}
.project-title-2 {
    font-size: 60px;
    line-height: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 6px;
    margin-bottom: 30px;
}
.portfolio-details-6 .project-info-list {
    color: #7eb9ec;
}
.portfolio-details-6 .project-info-list li i {
    color: #fff;
}
.portfolio-details-6 #description {
    padding: 25px 0 150px;
}
.portfolio-details-6 #description .text-block {
    padding: 0 16%;
    text-align: center;
}
/*porfolio details 7*/
body.portfolio-details-7 {
    background-color: #757a59;
}
.portfolio-details-7 #description .description .dropcap {
    color: #888d6f;
}
.portfolio-details-7 #description .description .text {
    font-size: 25px;
}
.portfolio-details-7 #about .title-block {
    margin-bottom: 50px;
}
.portfolio-details-7 #about .project-info-list {
    color: #a6a992;
}
.portfolio-details-7 #about .info-block {
    color: #ffffff;
}
.portfolio-details-7 #about {
    padding-top: 195px;
    padding-bottom: 200px;
}
.portfolio-details-7 #about .owl-gallery .owl-nav div, .portfolio-details-7 #about .project-num-slides {
    color: #ffffff;
}
.gap200 {
    height: 200px;
}
/*project details 8*/
body.portfolio-details-8 {
background-color: #f6f6f6;
}
.portfolio-details-8 #about {
    padding-bottom: 200px;
}
.fancy-fullscreen-bg {
    position: fixed;
    z-index: -1;
    opacity: 1;
    -webkit-transition: all 0.4s ease-out !important;
    -moz-transition: all 0.4s ease-out !important;
    -ms-transition: all 0.4s ease-out !important;
    -o-transition: all 0.4s ease-out !important;
    transition: all 0.4s ease-out !important;
    left: 0; 
    right: 0;
    width: 100%;
}
body.elementor-editor-active .fancy-fullscreen-bg {
    position: relative !important;
    z-index: 1 !important;
}
.fancy-fullscreen-bg.back{
    opacity: 0.14;
}
/*project details 9*/
body.portfolio-details-9 #about {
    padding: 175px 0;
    background-color: #f6f6f6;
}
figure figcaption {
    font-size: 12px;
    line-height: 1em;
    padding: 10px 8px 10px;
    background-color:#f6f6f6;
    border: 1px solid #e5e5e5;
    border-top: 0;
}
.elementor-widget-image figure .widget-image-caption {
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}
blockquote {
    text-align: center;
    font-size: 30px;
    line-height: 1.6667em;
    font-family: 'Playfair Display', serif;
    color: #000000;
}
blockquote cite {
    font-size: 10px;
    color: #9b9b9b;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}
blockquote footer {
    padding-top: 25px;
}
/*project details 10*/
body.portfolio-details-10 #about {
    padding: 175px 0;
    background-color: #f6f6f6;
}
#main {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}
#main .blog-list {
    width: 50%;
    position: absolute;
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
}
#main .blog-list #header .menu-button-open {
    color: #202020;
}
#main .blog-list .list-content-wrapper {
    padding: 170px 66px 0 66px;
}
#main .blog-list .blog-grid {
    padding: 0;
}

#main .article {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-transform: translate3d(0%,0,0);
    -moz-transform: translate3d(0%,0,0);
    -ms-transform: translate3d(0%,0,0);
    -o-transform: translate3d(0%,0,0);
    transform: translate3d(0%,0,0);
        -webkit-transform: translate3d(0%,0,0);
    -moz-transform: translate3d(0%,0,0);
    -ms-transform: translate3d(0%,0,0);
    -o-transform: translate3d(0%,0,0);
    transform: translate3d(0%,0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -ms-transform;
    -o-transition-property: -o-transform;
    transition-delay: 0;
    -webkit-transition-property: transform;
    -webkit-transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(.33,0,.2,1);
    -webkit-transition-delay: 0;
    -moz-transition-property: transform;
    -moz-transition-duration: .5s;
    -moz-transition-timing-function: cubic-bezier(.33,0,.2,1);
    -moz-transition-delay: 0;
    -ms-transition-property: transform;
    -ms-transition-duration: .5s;
    -ms-transition-timing-function: cubic-bezier(.33,0,.2,1);
    -ms-transition-delay: 0;
    -o-transition-property: transform;
    -o-transition-duration: .5s;
    -o-transition-timing-function: cubic-bezier(.33,0,.2,1);
    -o-transition-delay: 0;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.33,0,.2,1);
    -transition-delay: 0;
    background-color: #fff;
}
#main .article:nth-child(n+3) {
    display: none !important;
}
@keyframes animateOpacity {
    from {opacity:0;}
    to {opacity: 1;}
}
.animateOpacity {
    animation-name: animateOpacity;
    animation-duration: 0.7s;
}

#main .article.is--pushed-right {
    -webkit-transform: translate3d(50%,0,0);
    -moz-transform: translate3d(50%,0,0);
    -ms-transform: translate3d(50%,0,0);
    -o-transform: translate3d(50%,0,0);
    transform: translate3d(50%,0,0);
    cursor: w-resize !important;
}
#main .article .header {
    width: 50%;
    position: fixed;
    overflow: hidden;
    height: 100%;
    background-color: #222;
    padding: 0 65px 0 65px;
}
#main .article .header img {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    height: 100vh;
    object-fit: cover;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#main .article .header .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}
#main .article .header .back-to-posts {
    display: inline-block;
    height: 70px;
    line-height: 70px;
    color: #ffffff;
    padding: 0 43px;
    border: 1px solid;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-align: center;
    position: absolute;
    top: 50px;
    right: 145px;
    z-index: 9999999;
    -webkit-transform: translate3d(0%,0,0);
    -moz-transform: translate3d(0%,0,0);
    -ms-transform: translate3d(0%,0,0);
    -o-transform: translate3d(0%,0,0);
    transform: translate3d(0%,0,0);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
#main .article.is--pushed-right .header .back-to-posts {
    display: none;
}
.is--hide {
    opacity: 0;
    display: none !important;
    -webkit-transform: translate3d(50%,0,0);
    -moz-transform: translate3d(50%,0,0);
    -ms-transform: translate3d(50%,0,0);
    -o-transform: translate3d(50%,0,0);
    transform: translate3d(50%,0,0);
}
#main #header {
    z-index: inherit;
}
#main #header .menu-button-back,
#main #header .menu-button-open {
    position: relative;
    z-index: 1;
}
#main .article .header .info {
    margin-top: 170px;
    position: relative;
    z-index: 1;
}
#main .article .header {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
#main .article .header .info .meta {
    font-size: 14px;
    margin-bottom: 26px;
}
#main .article .header .info .meta .meta-categories a {
    color: inherit;
}
#main .article .header .info .meta .date:before {
    content: "";
    display: inline-block;
    width: 9px;
    margin:0px 17px 5px;
    height: 1px; 
    color: inherit;
    border-top: 1px solid; 
}
#main .article .header .info .title {
    font-size: 40px;
    line-height: 1.5em;
    font-weight: bold;
    letter-spacing: 8px;
    text-transform: uppercase;
}
#main .article .header .menu-button-back {
    position: absolute;
    top: 76px;
    left: 65px;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
#main #header .logo_dark {
    display: block;
    margin-top: 8px;
}
#main #header .logo h1 {
    color: #222222;
}
#main .article.is--pushed-right .header .menu-button-back {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    width: 28px;
    left: 48px;
}
#main .article.is--pushed-right .header .menu-button-back:hover {
    width: 28px;
    margin-left: 16px;
}
#main .article .header .menu-button-open {
    color: #ffffff;
    position: absolute;
    top: 67px;
    right: 65px;
    display: none;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
.show-on-mobile {
    display: none;
}
#main .article.is--pushed-right .header .menu-button-open {
    display: block;
    opacity: 1;
}
#main .article .section .menu-button-open {
    color: #202020;
    position: absolute;
    top: 67px;
    right: 140px;
    opacity: 1;
}
#main .article .section .menu-button-open span {
    opacity: 1;
    width: 100%;
    color: #202020;
}
#main .article .section {
    width: 50%;
    margin-left: 50%;
    padding:170px 139px 150px;
    overflow-x:hidden;
    overflow-y:scroll;
    position: relative;
    height: 100%;
    background-color: #fff;
}
.blog-list .menu-button-back.dark {
    color: #5f5f5f;
    position: absolute;
    top: 76px;
    left: 65px;
}
p {
    margin-bottom: 30px;
}
* p:last-child {
    margin-bottom: 0;
}
blockquote p {
    margin-bottom: 0;
}
#main .article .article-content {
    margin-bottom: 86px;
    overflow: hidden;
}
.meta-tags {
    width: 100%;
    overflow: hidden;
    margin: 0 -13px 35px;
}
.meta-tags a {
    display: block;
    float: left;
    margin: 0 13px;
    color: #9b9b9b;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.meta-tags a:before {
    content: "#";
}
.sharebox-socials {
    margin: 0;
    padding: 0;
    list-style:none;
    width: 100%;
    overflow: hidden;
}
.sharebox-socials li {
    padding: 0 19px 0 0;
    margin: 0;
    float: left;
}
.sharebox-socials li a {
    font-size: 18px;
    color: #202020;
}
.sharebox-socials li.facebook a:hover {color: #3b5999;}
.sharebox-socials li.twitter a:hover {color: #55acee;}
.sharebox-socials li.google-plus a:hover {color: #dd4b39;}
.sharebox-socials li.stumbleupon a:hover {color: #eb4924;}
.sharebox-socials li.pinterest a:hover {color: #bd081c;}

h2.author-title, #comments #reply-title, #comments-title, .date-comment, .comment-reply-link, .comment-edit-link {
    font-family: "Montserrat";
    font-weight: bold;
    text-transform: uppercase;
}
#comments-title {
    font-size: 26px;
    color: #202020;
    letter-spacing: 6px;
    line-height: 1em;
    margin-bottom: 50px;
}
#reply-title {
    font-size: 16px;
    color: inherit;
    letter-spacing: 2px;
    line-height: 1em;
    margin-bottom: 31px;
}
#reply-title small {
    font-size: 10px;
}
#commentform p.form-submit {
    margin-bottom: 0;
}
h2.author-title {
    color: #202020;
    letter-spacing: 2px;
    font-size: 13px;
}
.commentlist li.comment:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 35px;
}
.commentlist {
    overflow: auto;
}
.commentlist li.comment .comment-body {
    margin-bottom: 27px;
}
.commentlist li.comment {
    min-width: 200px;
}
.commentlist li.comment ul.children {
    padding-top: 35px;
    border-top: 1px solid #e5e5e5;
    margin: 0 0 0 100px;
    list-style: none;
}
.commentlist li.comment .comment-text .author {
    padding-top: 12px;
}
.commentlist li.comment .author-avatar {
    margin-bottom: 15px;
    margin-right: 30px;
    float: left;
}
.commentlist li.comment .author-avatar img {
    border-radius: 100%;
}
.commentlist li.comment .comment-text {
    overflow: hidden;
}
.commentlist li.comment .comment-text .text {
    margin-bottom: 17px;
    line-height: 2em;
}
.date-comment {
    color: #a0a0a0;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    margin-bottom: 10px;
}
.comment-reply-link,
.comment-edit-link {
    display: inline-block;
    position: relative;
    color: inherit;
    font-size: 12px;
    font-weight: normal;
    color: #202020;
    text-transform: none;
}
.comment-reply-link {
    float: left;
}
.comment-edit-link {
    float: right;
}
.comment-reply-link:before {
    content: "\f122";
    font-family: "Fontawesome";
    padding-right: 10px;
}
.comment-edit-link:after {
    content: "\f044";
    font-family: "Fontawesome";
    padding-left: 10px;
}
#comments > #respond {
    margin-top: 88px;
}
#respond {
    background-color: #f7f7f7;
    padding: 41px 50px;
    min-width: 200px;
}
textarea#comment {
    height: 99px;
    margin-bottom: 41px;
}
/* #footer */
#footer {
    padding: 124px 0px;
    font-size: 14px;
    color: #5f5f5f;
    line-height: 30px;
}
#footer a {
    color: inherit;
}
#footer a:hover {
    color: #000000;
}
#footer a.hire-us {
    color: #e51428;
    line-height: 24px;
    display: block;
    overflow: hidden;
    float: left;
    clear: right;
    letter-spacing: 2px;
    font-size: 12px;
    margin-top: 14px;
}
#footer a.hire-us i {
    font-size: 22px;
    float: left;
    margin-right: 10px;
}
.widget-title {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: #000000;
    letter-spacing: 2.2px;
    margin-bottom: 20px;
}
#footer h2 {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: #000000;
    letter-spacing: 2px;
}
#footer .copyright {
    color: #aeaeae;
}
.widget_twitter .tweet {
    padding-bottom: 15px;
}
#footer .widget_twitter .tweet a {
    color: #222222;
}
#footer .widget_twitter .tweet .date {
    color: #222222;
}
.overflow-auto {
    overflow: auto;
    min-height: 660px;
}
/*animate in view*/
body:not(.elementor-editor-active) *[data-scrolled-into-view] {
    opacity: 0;
    transform: translate3d(0,200px,0);
    transition: opacity 0.6s cubic-bezier(.694,0,.335,1),transform 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
body:not(.elementor-editor-active) *[data-scrolled-into-view="true"] {
    opacity: 1;
    transform: translateZ(0);
}
.blog-grid .blog-item:nth-child(2) {
    -webkit-transition-delay: 200ms !important; /* Safari */
    transition-delay: 200ms !important;
}
.blog-grid .blog-item:nth-child(3) {
    -webkit-transition-delay: 400ms !important; /* Safari */
    transition-delay: 400ms !important;
}
.blog-grid .blog-item:nth-child(4) {
    -webkit-transition-delay: 600ms !important; /* Safari */
    transition-delay: 600ms !important;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item[data-scrolled-into-view="true"] {
    opacity: 1;
    transform:scale(1);
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(1) {
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(2) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(3) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(4) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(5) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(6) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item:nth-child(7) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}
body:not(.elementor-editor-active) .portfolio-container .portfolio-item.portfolio-more-items:nth-child(8) {
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}
.project-pagin[data-scrolled-into-view] {
    transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
}
.project-pagin[data-scrolled-into-view="true"] {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

.elementor-section {
    overflow: hidden;
}
.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1774px;
}
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    padding: 0px 75px;
}
.elementor-widget:not(:last-child) {
    margin-bottom: 0px;
}
.single-portfolio section:not(.elementor-section-full_width) .elementor-column-gap-default .elementor-column .elementor-element-populated,
.single-portfolio .elementor-column-gap-default .elementor-column .elementor-element-populated .elementor-column {
    padding: 0;
}
.single-portfolio .elementor-column-gap-default .elementor-column {
    padding: 0 9.7%;
}
.single-portfolio .elementor-section-full_width .elementor-column-gap-default .elementor-column {
    padding: 0;
}
.single-portfolio .elementor-column-gap-default .elementor-column.no-paddings {
    padding-left: 0;
    padding-right: 0;
}
.single-portfolio .elementor-column-gap-default .elementor-column.no-padding-right {
    padding-right: 0;
}
.single-portfolio .elementor-widget:not(:last-child) {
    margin-bottom: 0px;
}
.single-portfolio section:not(.elementor-section-full_width) .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    padding: 0;
}
.elementor-widget-text-editor {
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
}
.elementor-editor-active #header {
    padding-top: 0;
    top: 60px;
}
.wpb-js-composer #page-wrap {
    overflow: hidden;
}
.page-template-page-composer .container{
    max-width: 1624px;
}
.single-portfolio.wpb-js-composer:not(.elementor-page) #content {
    max-width: 1500px;
    margin:0 auto;
}
.page-template-page-composer #page-wrap .vc_column-inner,
.single-portfolio .vc_column_container > .vc_column-inner {
    padding-top: 0 !important;
}
.single-portfolio .vc_column_container > .vc_column-inner {
    padding-right: 0%;
    padding-left: 0%;
}
.single-portfolio #content > .portfolio > .entry > .vc_row > .wpb_column.vc_column_container {
    padding-right: 10%;
    padding-left: 10%;
}
#content .portfolio .vc_row.bg-bottom-position {
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
}
.single-portfolio #content .vc_row {
    margin-right: 0;
    margin-left: 0;
}
#vertical-center-wrap {
    height: 100%;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.vertical-center-outer {
    display: table;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
.vertical-center-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#error-404 {
    margin: 0 auto;
    padding: 86px 24px;
    text-align: center;
    max-width: 720px;
}
body.error404 {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    background-image: url(images/404.jpg);
    color: #ffffff;
}
.error-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 10px;
}
.error-subtitle {
    margin-bottom: 30px;
    font-size: 20px;
}
.page-loading {
    position: fixed;
    left: 0;
    right: 0px;
    top: 0;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
    height: 100%;
}
.three-bounce {
    text-align: center;
    font-size: 26px;
    position: relative;
    top: 50%;
    width: 100%;
}

.three-bounce>div {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #cccccc;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
    animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce .one {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s
}

.three-bounce .two {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s
}
.article section #footer {
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 0;
}
.article section #footer .container {
    -moz-column-count:2;
    -moz-column-gap: 0%;
    -moz-column-width: 50%;
    -webkit-column-count:2;
    -webkit-column-gap: 0%;
    -webkit-column-width: 50%;
    column-count: 2;
    column-gap: 0%;
    column-width: 50%;
}
.article section #footer .span3 {
    width: 100%;
    margin-bottom: 30px;
    float: none;
    display: block;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    padding: 0 30px;
}
.article section #footer ul li a {
    display: inline-block;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: #f5f5f5;

}
*::-webkit-scrollbar-thumb {
  background: #c9c9c9; 
  border-radius: 4px;
}
@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.2)
    }
    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2)
    }
    40% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
.flex-navigation-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}
.flex-navigation-wrapper > section {
    flex-grow: 1;
    width:50%;
}
#projects-pagination.next {
    text-align: right;
    border-left: 1px solid #ededed;
}