

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1440px;
    padding-left: 50px;
    padding-right: 50px;
}

.row.row-intro {
    max-width: 100%;
    padding-left: 10%;
    padding-right: 10%;
}

.row.row-contact {
    max-width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

.row.row-md {
    max-width: 1280px;
}

.row.row-sm {
    max-width: 1100px;
}

.row.row-full-padd {
    max-width: 100%;
    padding-right: 5%;
    padding-left: 5%;
}

.row.row-full.nopad {
    max-width: 100%;
    padding: 0;
}

.row.row-carousel {
    max-width: 100%;
    padding-left: 0;
    padding-right: 12%;
}

.row.row-blockquote {
    max-width: 100%;
    padding-left: 12%;
    padding-right: 0%;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.invi {
	visibility: hidden;
	opacity: 0;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

/* header */

body.home.oh {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 45px 0 45px;
    /*background: #fff;
    */z-index: 200;
    /* opacity: 0;
    visibility: hidden; */
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}


.header.close {
    opacity: 1;
    visibility: visible;
}

.home .header.close {
    /* opacity: 0;
    visibility: hidden; */
}

.home .header.close.home-close {
    opacity: 1;
    visibility: visible;
}

.header.header-scrolled {
    /* padding: 20px 0; */
}

.header-equal {
    height: 131px;
}

.logo img {
    max-width: 168px;
}

.nav {
    /* padding-top: 5px; */
}

.nav ul {
    display: inline-block;
}

.nav ul li {
    float: left;
    margin-right: 40px;
}

.nav ul li:last-child {
    margin-right: 0px;
}

.nav ul li a {
    color: #000;
    padding-bottom: 3px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.nav.white ul li a {
    color: #fff !important;
}

.nav.white ul li a:before {
    background: #fff !important;
}

.nav.white2 ul li a {
    color: #fff !important;
}

.nav.white2 ul li a:before {
    background: #fff !important;
}

.nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.nav ul li.current-menu-item a:before,
.nav ul li a:hover:before {
    width: 100%;
}

/* home intro */

.home-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.home-video.close {
    opacity: 1;
    visibility: visible;
}

.home-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
}

.home-intro {
    position: relative;
}

.home-intro .row {
    padding-top: 10px;
    padding-bottom: 120px;
    min-height: calc(100vh - 130px);
    position: relative;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

.intro-top {
    font-size: 24px;
    letter-spacing: -0.2px;
    padding-bottom: 10%;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: 0.7s ease-out;
    -webkit-transition: 0.7s ease-out;
    -moz-transition: 0.7s ease-out;
    -ms-transition: 0.7s ease-out;
    -o-transition: 0.7s ease-out;
}

.intro-top.close {
    opacity: 1;
    transform: translateY(0px);
}

.home .intro-top.close {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

.home .intro-top.close.home-close {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.intro-main {
    opacity: 0;
    position: absolute;
    left: 10%;
    bottom: 80px;
    font-family:"PxGroteskRegular";
    font-size: 10vw;
    letter-spacing: -0.3vw;
    line-height: 1.3;
    width: 80%;
}

.intro-main.close {
    opacity: 1;
}

.intro-main-hold {
}

.intro-line {
    position: absolute;
    height: 6px;
    width: 0%;
    top: 32%;
    background: #0e0d0d;
    left: 44%;
    transition: 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.intro-line.intro-starts {
    width: 33%;
}
.intro-line.intro-starts.intro-line-loaded {
    width: 33%;
    left: auto;
    right: 23%;
}
.intro-line.intro-starts.intro-line-loaded.slide-2-on {
    width: 21%;
}
.intro-line.intro-starts.intro-line-loaded.slide-1-on {
    width: 33%;
}

.intro-main-about .intro-line {
    left: 40%;
}

.intro-main-about .intro-line.intro-starts {
    width: 37% !important;
    left: 40%;
}


.intro-main-hold-orn {
    position: absolute;
    top: 0;
    right: 10%;
    opacity: 0;
    z-index: 10;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.intro-main-hold-orn.close {
    transform: translateY(0px);
    opacity: 1;
}

.intro-line.close {
    width: 30%;
}

.intro-line.slide-2 {
    width: 16%;
}
.intro-line.slide-1 {
    width: 30%;
}

.intro-main-hold .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.3s;
    animation-timing-function: cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.intro-main-hold.letter-animation .letter {
    opacity: 1;
    transform: translateY(0px);
}

/* intro upgrades */

.intro-slide-line-wrap {
    overflow: hidden;
}

.intro-slide-line-wrap-1 {
    margin-bottom: -2vw;
}

.intro-slide-hold.close .intro-slide-wrap {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.intro-slide-wrap {
    opacity: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.4s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.4s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.4s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.4s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.intro-slide-hold.close .intro-slide-line-wrap-2 .intro-slide-wrap {
    transition-delay: 0.1s;
}

.intro-slide-hold.close .intro-slide-wrap {
    transition-delay: 0.1s;
    transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.intro-slide-line-wrap-2 .intro-slide-wrap {
    transition-delay: 0s;
}

.intro-slide-2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.intro-slide-3 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

/* .intro-main-hold.letter-animation .letter:nth-child(1) {
    transition-delay: 0.0s;
}
.intro-main-hold.letter-animation .letter:nth-child(2) {
    transition-delay: 0.1s;
}
.intro-main-hold.letter-animation .letter:nth-child(3) {
    transition-delay: 0.2s;
}
.intro-main-hold.letter-animation .letter:nth-child(4) {
    transition-delay: 0.3s;
}
.intro-main-hold.letter-animation .letter:nth-child(5) {
    transition-delay: 0.4s;
}
.intro-main-hold.letter-animation .letter:nth-child(6) {
    transition-delay: 0.5s;
}
.intro-main-hold.letter-animation .letter:nth-child(7) {
    transition-delay: 0.6s;
}
.intro-main-hold.letter-animation .letter:nth-child(8) {
    transition-delay: 0.7s;
}
.intro-main-hold.letter-animation .letter:nth-child(9) {
    transition-delay: 0.8s;
}
.intro-main-hold.letter-animation .letter:nth-child(10) {
    transition-delay: 0.9s;
} */


/* .intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(1) {
    transition-delay: 0.7s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(2) {
    transition-delay: 0.8s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(3) {
    transition-delay: 0.9s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(4) {
    transition-delay: 1.0s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(5) {
    transition-delay: 1.1s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(6) {
    transition-delay: 1.2s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(7) {
    transition-delay: 1.3s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(8) {
    transition-delay: 1.4s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(9) {
    transition-delay: 1.5s;
}
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter:nth-child(10) {
    transition-delay: 1.6s;
} */
.intro-main-hold.letter-animation .intro-main-text-wrapper:last-child .letter {
    transition-delay: 0.1s;
}


.intro-main-text-wrapper {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.intro-main-hold.slideout .letter {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
}

.intro-main-hold.letter-animation.slideout .letter {
    transition-delay: 0s !important;
}





.intro-main-hold-1 {
    display: none;
}
.intro-main-hold-2 {
    display: none;
}
.intro-main-hold-3 {
    display: none;
}
.intro-main-hold-1.close,
.intro-main-hold-2.close,
.intro-main-hold-3.close {
    display: block;
}

.intro-main-text-wrapper-top {
    margin-bottom: -5vw;
}

.intro-main-text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.letter {
    display: inline-block;
}



.scroll-to-arrow {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-arrow.close {
    opacity: 1;
    visibility: visible;
}

.home .scroll-to-arrow.close {
    opacity: 0;
    visibility: hidden;
}

.home .scroll-to-arrow.close.home-close {
    opacity: 1;
    visibility: visible;
}


.scroll-to-arrow,
.scroll-to-arrow:focus,
.scroll-to-arrow:active {
    position: absolute;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
    transform-origin: right bottom;
    transform: rotate(-90deg);
    color: #000;
    z-index: 100;
    transition: 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
}


.scroll-to-arrow .scroll-arrow {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: url(../img/arrow-scroll-2.png) no-repeat center center / 9px 13px;
}

.scroll-to-arrow .scroll-line {
    width: 90px;
    height: 2px;
    display: inline-block;
    background: #000;
    position: relative;
    top: -4px;
    left: -10px;
    transition: 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.scroll-to-arrow:hover {
    padding-right: 40px;
    color: #000;
}
.scroll-to-arrow:hover .scroll-line {
    width: 50px;
}

.home-scroll-to {
    right: 4%;
    bottom: 220px;
}

/* home latest */

.home-latest {
    padding-top: 100px;
    padding-bottom: 210px;
}

.home-latest .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-latest-left {
}


.home-latest-left-image-hold {

}

.home-latest-left a:hover .home-latest-left-image-hold {
    transform: scale(0.95);
}

.home-latest-left-image-hold {
    height: 100%;
    overflow: hidden;
}
.home-latest-left-image {
    /* height: 100%; */
    padding-top: 92%;
    background-size: cover !important;
    transition: all 0.7s linear;
    -webkit-transition: all 0.7s linear;
    -moz-transition: all 0.7s linear;
    -ms-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
}

.home-latest .home-work-title {
    color: #000;
}

.home-latest .home-work-info {
    color: #000;
}

.home-latest-right {
    padding-left: 8.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.home-latest-right-video {
    /* position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden; */
    margin-bottom: 130px;
}

.home-latest-right-video iframe,
.home-latest-right-video object,
.home-latest-right-video video,
.home-latest-right-video embed {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    width: 100%;
    height: 100%; */
    max-width: 100%;
}

.title-line {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 16px;
    line-height: 1.3;
    border-bottom: 2px solid #000;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.home-latest-text {
    font-size: 24px;
    letter-spacing: -0.2px;
    margin-bottom: 30px;
}


/* home works */

.home-works-hold {
    background: #0e0d0d;
    color: #fff;
    padding: 130px 0 195px;
}


.home-works-title {
    margin-bottom: 100px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-works-title span {
    display: none;
}

.home-works-title span:last-child {
    display: inline-block;
}

.home-works-list ul li {
    float: left;
    width: 49.9%;
    margin-right: 8%;
    margin-bottom: 120px;
}

.home-works-list ul li:nth-child(1),
.home-works-list ul li:nth-child(4n+4),
.home-works-list ul li:nth-child(4n+5) {
    width: 42.1%;
}

.home-works-list ul li:nth-child(2n) {
    margin-right: 0;
}

.home-works-list ul li:nth-child(2n+1) {
    clear: both;
}

.home-works-list ul li a {
    float: left;
    width: 100%;
    transition: 0.4s;
}

.home-works-list ul li a:hover {
    /* padding: 12px 15px; */
}

.home-work-image-hold {
    padding-bottom: 76%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.7s ease-out;
    -webkit-transition: 0.7s ease-out;
    -moz-transition: 0.7s ease-out;
    -ms-transition: 0.7s ease-out;
    -o-transition: 0.7s ease-out;
}

.home-work-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: 0.7s ease-out;
    -webkit-transition: 0.7s ease-out;
    -moz-transition: 0.7s ease-out;
    -ms-transition: 0.7s ease-out;
    -o-transition: 0.7s ease-out;
}

.img-parallax {
    min-width: 200%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    pointer-events: none;
}

.home-works-list ul li a:hover .home-work-image-hold {
    /* margin-left: 15px;
    width: calc(100% - 30px); */
    transform: scale(0.95);
}

.home-works-list ul li a:hover .home-work-image {
    transform: scale(1.2);
}

.home-work-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.home-work-info {
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
    opacity: 0.3;
}

/* footer */

.footer {
    padding: 40px 0 40px;
    background: #303030;
}

.footer-top {
    margin-bottom: 100px;
}



.footer-text p {
    font-size: 24px;
    letter-spacing: -0.2px;
    margin-bottom: 50px;
}

/* btn-line */

.btn-line,
.btn-line:focus,
.btn-line:active {
    display: inline-block;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    text-transform: uppercase;
    -webkit-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.btn-line:hover {
    color: #000;
    padding-right: 100px;
}

.btn-line span {
    display: inline-block;
    position: relative;
    top: -4px;
    margin: 0 10px;
    width: 80px;
    height: 2px;
    background: #000;
    transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.7s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.btn-line:hover span {
    margin: 0 0px;
    width: 0px;
}

/* btn-line lg */

.btn-line.btn-line-lg,
.btn-line.btn-line-lg:focus,
.btn-line.btn-line-lg:active {
    font-size: 20px;
}
.btn-line.btn-line-lg:hover {
    padding-right: 120px;
}
.text-right .btn-line.btn-line-lg:hover {
    padding-right: 0px;
    padding-left: 120px;
}

/* btn-line-white */

.btn-line.btn-line-lg span {
    width: 100px;
    top: -5px;
}
.btn-line.btn-line-lg:hover span {
    width: 0px;
}

.btn-line.btn-line-white,
.btn-line.btn-line-white:focus,
.btn-line.btn-line-white:active {
    color: #fff;
}

.btn-line.btn-line-white:hover {
    color: #fff;
}

.btn-line.btn-line-white span {
    background: #fff;
}


.footer-socials ul li {
    float: left;
    width: 200px;
    margin-bottom: 7px;
}

.footer-socials ul li:nth-child(2n+1) {
    clear: both;
}

.footer-socials ul li a {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 1px;
    position: relative;
}

.footer-socials ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #000;
    width: 0;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.footer-socials ul li a:hover:before {
    width: 100%;
}

.copyrights {
    font-size: 13px;
    font-weight: 500;
    padding-top: 35px;
}

.copyrights span {
    margin-left: 10px;
    color: #ababab;
}

.copyrights a {
    margin-left: 10px;
    color: #ababab;
}

.copyrights a:hover {
    color: #ababab;
    text-decoration: underline;
}

/* studio */

body.page-template-about {
    background: #dbdbdb;
}

.page-template-studio .header {
    /* background: #dbdbdb; */
}

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

/* .intro-line.intro-about-line {
    width: 0;
}
.intro-line.intro-about-line.about-close {
    width: 33%;
} */


.title-sm {
    opacity: 0.4;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.text-lg {
    font-size: 1.7vw;
}

.images-half-list ul li {
    float: left;
    width: 42.1%;
    margin-right: 8%;
}

.images-half-list ul li:nth-child(2) {
    width: 49.9%;
    margin-right: 0;
    margin-top: 7%;
}

.images-half-list .image-half {
    padding-bottom: 76%;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
}
.images-half-list .image-half video {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.what-we-do .text-lg {
    margin-bottom: 120px;
}

.do-list ul {
    margin: 0;
    padding: 0;
}
.do-list ul li {
    font-size: 1.7vw;
    letter-spacing: -0.2px;
    line-height: 1.6;
}

.what-we-do-grid .title-sm {
    margin-bottom: 20px;
}

.team-list ul li {
    float: left;
    width: 26%;
    margin-right: 7.333%;
    margin-bottom: 135px;
}

.team-list ul li:nth-child(6n+1) {
    margin-top: 30px;
}
.team-list ul li:nth-child(6n+3) {
    margin-top: -30px;
}
.team-list ul li:nth-child(3n+1) {
    clear: both;
}

.team-list ul li:nth-child(6n+4) {
    margin-left: 7.333%;
}
.team-list ul li:nth-child(6n+5) {
    margin-top: -50px;
}
.team-list ul li:nth-child(6n+6) {
    margin-top: 55px;
    margin-right: 0;
}

.member-image {
    padding-bottom: 130%;
    background-size: cover !important;
    margin-bottom: 30px;

}
.member-name {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.member-position {
    line-height: 1.2;
    font-size: 22px;
    opacity: 0.3;
}

.manifesto-hold {
    position: relative;
    overflow: hidden;
}

.manifesto {
    /*min-height: 100vh;*/
    margin: 70px 0;
    display: flex;
    align-items: center;

    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);

    /*background-color: #DBDBDB;*/
    display: flex;
    align-items: center;
    position: relative;

    top:0 !important;
    /*transition: background-color 0.8s;*/
}

/*.manifesto.scrolled {
    background-color: #000;
}*/

body {
    transition: background-color 0.7s;
}

body.minifesto-scrolled {
    background-color: #000;
}


.manifesto .section-counter {
    color: #fff;
}

.manifesto .title-sm {
    margin-bottom: 40px;
    color: #fff;
}

.manifesto-text {
    color: #fff;
    font-size: 8vw;
    white-space: nowrap;
    font-family: 'PxGroteskRegular';
    line-height: 1;
}

.manifesto-content {
    padding-left: 8%;
}


body {
    overflow-x: hidden;
}



.section.clients-hold {
    padding-bottom: 420px;
    padding-top: 60px;
}

.section.clients-hold .section-counter {
    bottom: 360px;
}

.clients-list {
    width: 115%;
    margin-top: 55px;
}

.clients-list > ul > li {
    float: left;
    width: 27%;
    margin-right: 9.5%;
    margin-bottom: 60px;
}

.clients-list > ul > li:nth-child(3n) {
    margin-right: 0%;
}
.clients-list > ul > li:nth-child(3n+1) {
    clear: both;
}

.clients-list-topic {
    font-size: 36px;
    line-height: 1;
}

.clients-list-topic span {
    width: 100%;
    /* display: inline-block; */
    position: relative;
    cursor: pointer;
    background-image: linear-gradient(transparent calc(100% - 2px), #000 10px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: background-size 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: background-size 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: background-size 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: background-size 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.clients-list-topic.active span,
.clients-list-topic span:hover {
    background-size: 100% 100%;
}

/* .clients-list-topic span:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.clients-list-topic.active span:before,
.clients-list-topic span:hover:before {
    width: 100%;
} */

.clients-list-topic sup {
    font-size: 12px;
    font-weight: 500;
    top: -20px;
    position: relative;
}

.clients-list-topic sup ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.clients-list-topic sup ul li {
    display: none;
}
.clients-list-topic sup ul li:last-child {
    display: block;
}

.clients-list-topic-list {
    padding-top: 60px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.clients-list-topic-list.close {
    opacity: 1;
    transition: opacity 0.3s 0.3s;
}

.clients-list-topic-list ul {
    margin: 0;
    padding: 0;
}
.clients-list-topic-list ul li {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1;
}



.awards-hold {
    background: #000;
    padding-bottom: 200px;
    position: relative;
}

.awards-hold .section-counter {
    bottom: 350px;
    color: #fff;
}

.awards-image {
    padding-left: 13%;
    margin-top: -230px;
    margin-bottom: 230px;
}

.awards-hold .title-sm {
    color: #fff;
}

.awards-hold .text-lg {
    color: #fff;
    margin-bottom: 95px;
}

.awards-list {
    /* margin-bottom: 110px; */
}

.awards-button-more {
    margin-top: 110px;
}

.awards-list:hover .award-item {
    opacity: 0.4;
}
.awards-list .award-item:hover {
    opacity: 1;
}

.award-item {
    color: #fff;
    padding: 10px 0;
    transition: 0.2s;
}

.award-item:nth-child(n+11) {
    display: none;
    opacity: 0;
    transition: opacity 0.2s 0.1s;

}
.award-item.close:nth-child(n+11) {
    opacity: 1;
}

/* .awards-hold.toggle .award-item:nth-child(n+8) {
    display: block;
} */

.awards-loaded {
    opacity: 0.3 !important;
}

.awards-loaded .btn-line.btn-line-lg:hover span {
    width: 100px;
    margin: 0 10px;
}

.award-item a {
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.award-item a:hover {
    /* padding-top: 3px;
    padding-bottom: 0px; */
}

.award-item a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.award-item a:hover:after {
    left: 50%;
    right: 50%;
    width: 0;
}

/* contact */

body.page-template-contact {
    background: #dbdbdb;
}

.page-template-contact .header {
    /* background: #dbdbdb; */
}

.contact-wrap {
    padding-top: 30px;
}

.contact-left {
    padding-right: 3%;
    min-height: calc(100vh - 170px);
    padding-bottom: 12%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.contact-right {
    /* padding-top: 60px;
    padding-left: 50px;
    position: relative; */
}
.contact-right img {
    /* min-width: calc((100vw / 2) - 50px); */
}

.contact-title {
    font-family: 'PxGroteskRegular';
    /* font-size: 60px; */
    font-size: 4.2vw;
    margin-bottom: 50px;
    /* letter-spacing: -2px; */
    letter-spacing: -0.13vw;
    line-height: 1.33;
    /* margin-bottom: 28%; */
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.contact-title.close {
    transform: translateY(0px);
    opacity: 1;
}

.contact-blocks {
}
.contact-blocks.close {
    /* opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px); */
}

.contact-block {
    opacity: 0;
    transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.8s cubic-bezier(0.65, 0, 0.17, 0.98);
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    margin-bottom: 58px;
}
.contact-block:nth-child(3),
.contact-block:nth-child(4) {
    transition: 0.8s 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.8s 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.8s 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.8s 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.8s 0.3s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.contact-blocks.close .contact-block {
    opacity: 1;
    transform: translateY(0px);
}

.contact-block-title {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.4;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-block-info a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #000;
    padding-bottom: 4px;
    display: inline-block;
    position: relative;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.contact-block-info a:hover {
    padding-top: 4px;
    padding-bottom: 0px;
}

.contact-block-info a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.2s cubic-bezier(0.65, 0, 0.17, 0.98);
}
.contact-block-info a:hover:after {
    left: 50%;
    right: 50%;
    width: 0%;
}

.contact-block .footer-socials ul li {
    float: left;
    width: 50%;
    margin-bottom: 0px;
}

.contact-block .footer-socials ul li a {
    font-size: 12px;
}

.contact-block .footer-socials {
    margin-top: -4px;
}

.contact-block:nth-child(2n+1) {
    clear: both;
}
.contact-block:last-child {
    margin-bottom: 0;
}
.contact-block:nth-last-child(2) {
    margin-bottom: 0;
}

.contact-copyrights {
    position: absolute;
    bottom: 50px;
    right: 5%;
    padding: 0;
    margin: 0;
    text-align: right;
}

.contact-right {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    right: 0;
    width: calc(100vw * 0.4);
    padding: 0;
}
.contact-right img {
    max-width: 100%;
    width: 100%;
}

/* works */

.logo-white {
    display: none;
}

.logo.white .logo-white,
.logo.white2 .logo-white {
    display: inline-block;
}
.logo.white .logo-black,
.logo.white2 .logo-black {
    display: none;
}

body.post-type-archive-work .logo-white {
    display: inline-block;
}

body.post-type-archive-work .logo-black {
    display: none;
}

body.post-type-archive-work {
    background: #0e0d0d;
}

.post-type-archive-work .header {
    /* background: #0e0d0d; */
    /* background: transparent; */
}

.post-type-archive-work .nav ul li a {
    color: #fff;
}
.post-type-archive-work .nav ul li a:before {
    background: #fff;
}

.works-hold {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
    z-index: 10;
}

.works-list ul:hover li a {
    opacity: 0.3;
}

.works-list ul li a:hover {
    opacity: 1;
}

.works-list ul li {
    margin-bottom: 50px;
}

.works-list ul li a {
    display: inline-block;
    font-size: 3.2vw;
    color: #fff;
    transition: 0.2s;
}

.work-hover-image {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    /* width: 540px;
    height: 400px; */
    width: 30%;
    padding-bottom: 21%;
    position: absolute;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 9;
    background-size: cover !important;
    transition: opacity 0.1s, visibility 0.1s, transform 0.2s;
    left: -100%;
    top: -100%;

}

.work-hover-image.close {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* 404 */


body.error404 .logo-white {
    display: inline-block;
}

body.error404 .logo-black {
    display: none;
}

body.error404 {
    background: #0e0d0d;
}

.error404 .header {
    background: #0e0d0d;
}

.error404 .nav ul li a {
    color: #fff;
}
.error404 .nav ul li a:before {
    background: #fff;
}

.error-content {
    padding-top: 150px;
    height: 100vh;
    color: #fff;
    position: relative;
}

.error-intro {
    font-size: 24px;
    letter-spacing: -0.2px;
}

.error-title {
    font-family: 'PxGroteskRegular';
    font-size: 8vw;
    letter-spacing: -0.3vw;
    line-height: 1.3;
    position: absolute;
    left: 0;
    bottom: 170px;
}

.error-link {
    position: absolute;
    bottom: 100px;
    left: 0;
}

/* case single */

.case-intro {
    background-size: cover !important;
    position: relative;
    /*background-attachment: fixed !important;
    */transform: scale(1.1);
    transition: transform 1.5s ease-out;
    -webkit-transition: transform 1.5s ease-out;
    -moz-transition: transform 1.5s ease-out;
    -ms-transition: transform 1.5s ease-out;
    -o-transition: transform 1.5s ease-out;
}
.case-intro.close {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.case-intro.no-transition {
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}

.case-intro .row {
    min-height: 100vh;
    position: relative;
    z-index: 5;
    -webkit-display: flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.case-intro-content-absolute {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 4%;
    top: 50%;
    transform: translateY(-50%);
}
.case-intro:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.single-work .header {
    background: transparent;
}

body.single-work .logo-white {
    display: inline-block;
}

body.single-work .logo-black {
    display: none;
}

.single-work .nav ul li a {
    color: #fff;
}
.single-work .nav ul li a:before {
    background: #fff;
}

.single-work .header.header-scrolled {
    /* background: #fff; */
}

body.single-work .header.header-scrolled .logo-white {
    /* display: none; */
}

body.single-work .header.header-scrolled .logo-black {
    /* display: inline-block; */
}

.single-work .header.header-scrolled .nav ul li a {
    color: #000;
}
.single-work .header.header-scrolled .nav ul li a:before {
    background: #000;
}

.single-work .header.header-scrolled .logo .logo-white {
    display: none;
}
.single-work .header.header-scrolled .logo .logo-black {
    display: inline-block;
}

.single-work .header.header-scrolled .logo.white .logo-white {
    display: inline-block;
}
.single-work .header.header-scrolled .logo.white .logo-black {
    display: none;
}

.case-intro-hold {
    overflow: hidden;
    height: 100vh;
    position: relative;
    margin-bottom: 70px;
}

.case-intro-year {
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    position: relative;
    transform: translateY(30px) scale(0.9);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -webkit-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -moz-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -ms-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -o-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.case-intro-content-absolute.close .case-intro-year,
.case-intro.close .case-intro-year {
    transform: translateY(0px) scale(1);
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
    -moz-transform: translateY(0px) scale(1);
    -ms-transform: translateY(0px) scale(1);
    -o-transform: translateY(0px) scale(1);
}

.case-intro-title {
    font-family: 'PxGroteskRegular';
    font-size: 5.6vw;
    letter-spacing: -0.1vw;
    position: relative;
    color: #fff;
    line-height: 1.1;
    opacity: 1;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -webkit-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -moz-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -ms-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    -o-transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transform:  translateY(30px);
    -webkit-transform:  translateY(30px);
    -moz-transform:  translateY(30px);
    -ms-transform:  translateY(30px);
    -o-transform:  translateY(30px);
}

.case-intro-content-absolute.close .case-intro-title,
.case-intro.close .case-intro-title {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.case-intro-content-absolute.close.no-transition .case-intro-title,
.case-intro.close.no-transition .case-intro-title {
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;
}


.scroll-to-arrow.scroll-to-white,
.scroll-to-arrow.scroll-to-white:focus,
.scroll-to-arrow.scroll-to-white:active {
    color: #fff;
}

.scroll-to-arrow.scroll-to-white .scroll-line {
    background: #fff;
}

.scroll-to-arrow.scroll-to-white .scroll-arrow {
    background: url(../img/arrow-scroll-white-2.png) no-repeat center center / 9px 13px;
}

.entry-intro {
    margin-bottom: 100px;
}

.entry-intro h3 {
    opacity: 0.4;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.entry-intro p {
    font-size: 2vw;
}

.entry h3 {
    opacity: 0.4;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.entry a {
    margin-top: 40px;
}

.entry p {
    font-size: 24px
}

.section {
    padding: 70px 0;
    padding: 6% 0;
    position: relative;
}

.full-img {
    margin: 60px 0;
}

.full-img img {
    width: 100%;
}

.full-img video {
    width: 100%;
    min-width: 100%;
}

.case-single-features {
    width: 120%;
}

.case-single-features ul li {
    width: 30%;
    float: left;
    margin-right: 5%;
    margin-bottom: 50px;
}

.case-single-features ul li:nth-child(3n) {
    margin-right: 0%;
}
.case-single-features ul li:nth-child(3n+1) {
    clear: both
}
.case-single-features ul li:nth-last-child(-n+3) {
    margin-bottom: 0;
}

.case-single-features-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.case-single-features-text {
    font-size: 16px;
    opacity: 0.3;
    line-height: 1.25;
}

.section-intro {
    margin-bottom: 20px;
}

.fixed-ratio-vertical .images-half-list .image-half {
    padding-bottom: 133%;
}

.images-half-list ul li img {
    display: none;
}

.auto-height .images-half-list ul li .image-half {
    display: none;
}


.auto-height .images-half-list ul li img {
    display: inline-block
}

.video-inline {
    display: none;
}

.video-inline video {
    max-width: 100%;
    width: 100%;
    float: left;
}

.auto-height .images-half-list ul li .video-inline {
    display: inline-block;
}

.auto-height .row.row-full-padd {
    padding: 0;
}

.reverse .images-half-list ul li {
    float: left;
    width: 49.9%;
    margin-right: 8%;
    margin-top: 7%;
}

.reverse .images-half-list ul li:nth-child(2) {
    width: 41.1%;
    margin-right: 0;
    margin-top: 0%;
}

.auto-height .images-half-list ul li:nth-child(2) {
    margin-top: 0%;
}

.case-carousel-item {
    height: 90vh;
    background-size: cover !important;
}



.case-carousel-hold {
    position: relative;
}

.case-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: -223px;
}

.case-carousel .owl-nav:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 150px;
    background: #000;
}

.case-carousel.owl-carousel .owl-nav button.owl-next,
.case-carousel.owl-carousel .owl-nav button.owl-prev {
    text-transform: uppercase;
    font-family: 'PxGroteskRegular';
    font-weight: 700;
    position: relative;
    padding-bottom: 3px !important;
    transition: 0.3s;
}

.case-carousel.owl-carousel .owl-nav button.owl-next:after,
.case-carousel.owl-carousel .owl-nav button.owl-prev:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: 0.2s;
}

.case-carousel.owl-carousel .owl-nav button.owl-next:hover:after,
.case-carousel.owl-carousel .owl-nav button.owl-prev:hover:after {
    width: 100%;
}

.case-carousel.owl-carousel .owl-nav button.owl-next.disabled:after,
.case-carousel.owl-carousel .owl-nav button.owl-prev.disabled:after {
    display: none;
}

.case-carousel.owl-carousel .owl-nav button.owl-next.disabled,
.case-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.2;
}

.case-carousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 180px;
}



.case-counter {
    position: absolute;
    right: -140px;
    bottom: 0;
    font-size: 12px;
    transform-origin: left bottom;
    transform: rotate(-90deg);
    font-weight: 500;
}

.case-carousel-total {
    color: #cbcbcb;
}

.blockquote {
    background: #f0f0f0;
    padding: 15% 22% 10% 16%;
    margin-top: -80px;
}

.blockquote p {
    font-size: 2.2vw;
    margin-bottom: 65px;
}

.blockquote h3 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.4;
    text-transform: uppercase;
}


.section.section-blockquote {
    padding-top: 0;
    margin-top: -70px;
}

.section-images {
    position: relative;
    z-index: 5;
}


.next-case {
    margin-top: 70px;
    background: #0e0d0d;
    /* padding: 210px 0 120px; */
}
.next-case .row {
    padding: 70px 0px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.next-case-hold a {
    float: left;
    width: 100%;
}

.next-case-title {
    font-size: 5vw;
    letter-spacing: -0.1vw;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.next-case-title span {
    position: relative;
    z-index: 5;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    padding: 0 6%;
    transform: translate(-50%, calc(-50% + 30px)) scale(1);
    -webkit-transform: translate(-50%, calc(-50% + 30px)) scale(1);
    -moz-transform: translate(-50%, calc(-50% + 30px)) scale(1);
    -ms-transform: translate(-50%, calc(-50% + 30px)) scale(1);
    -o-transform: translate(-50%, calc(-50% + 30px)) scale(1);
    transition: all 0.7s ease-out;
    -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;
}
.next-case-title span.absolute-fade-in.in-view {
    transform: translate(calc(-50%), -50%) scale(1);
    -webkit-transform: translate(calc(-50%), -50%) scale(1);
    -moz-transform: translate(calc(-50%), -50%) scale(1);
    -ms-transform: translate(calc(-50%), -50%) scale(1);
    -o-transform: translate(calc(-50%), -50%) scale(1);
}

.next-case-image-hold {
    display: inline-block;
    /* width: 486px;
    height: 375px; */
    width: 42%;
    padding-bottom: 24%;
    position: relative;
    overflow: hidden;
}

.next-case-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -webkit-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
}

.case-carousel .owl-stage {
    transition: 1.1s cubic-bezier(0.65, 0, 0.17, 0.98) !important;
    -webkit-transition: 1.1s cubic-bezier(0.65, 0, 0.17, 0.98) !important;
    -moz-transition: 1.1s cubic-bezier(0.65, 0, 0.17, 0.98) !important;
    -ms-transition: 1.1s cubic-bezier(0.65, 0, 0.17, 0.98) !important;
    -o-transition: 1.1s cubic-bezier(0.65, 0, 0.17, 0.98) !important;
}

.next-case-hold a:hover .next-case-image-hold {
    transform: scale(0.9);
}
.next-case-hold a:hover .next-case-image {
    transform: scale(1.3);
}

.next-case-hold a:hover .btn-line.btn-line-lg {
    padding-right: 60px;
    padding-left: 60px;
}

.next-case-hold a:hover .btn-line.btn-line-lg span {
    width: 0;
    margin: 0;
}

.section-counter {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    bottom: 80px;
    left: 70px;
    left: 5%;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.load-animation {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: 0.5s cubic-bezier(0.65, 0, 0.17, 0.98);
    -webkit-transition: 0.5s cubic-bezier(0.65, 0, 0.17, 0.98);
    -moz-transition: 0.5s cubic-bezier(0.65, 0, 0.17, 0.98);
    -ms-transition: 0.5s cubic-bezier(0.65, 0, 0.17, 0.98);
    -o-transition: 0.5s cubic-bezier(0.65, 0, 0.17, 0.98);
}

.load-animation.close {
    opacity: 0;
    visibility: hidden;
}

.animation-grey {
    background: #dbdbdb;
}

.animation-black {
    background: #000;
}

.animation-white {
    background: #fff;
}


/* video preloader */

.video-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.3s;
    z-index: 900;
    background: #fff;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

.video-preloader.page-loaded {
    opacity: 0;
    visibility: hidden;
}

.video-preloader video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
}

.video-preloader-text {
    font-size: 24px;
    position: absolute;
    top: 15%;
    left: 15%;
    z-index: 10;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    opacity: 0;
    transition: 0.7s ease-out;
    -moz-transition: 0.7s ease-out;
    -ms-transition: 0.7s ease-out;
    -o-transition: 0.7s ease-out;
    -webkit-transition: 0.7s ease-out;
}
.video-preloader-text.close {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
}

.section.our-cliens-hold {
    margin-top: -100px;
    padding-bottom: 60px;

}

.page-template-contact .footer {
    display: none;
}

/* animations */

.animation-element.fade-in {
    opacity: 0;
    position: relative;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -webkit-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
}

.animation-element.fade-in.in-view {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.animation-element.fade-in-low {
    opacity: 0;
    position: relative;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -webkit-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
}

.animation-element.fade-in-low.in-view {
    opacity: 0.4;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.animation-element-has-delay.fade-in {
    opacity: 0;
    position: relative;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transition: all 0.7s 0.3s ease-out;
    -ms-transition: all 0.7s 0.3s ease-out;
    -webkit-transition: all 0.7s 0.3s ease-out;
    -moz-transition: all 0.7s 0.3s ease-out;
    -o-transition: all 0.7s 0.3s ease-out;
}

.animation-element-has-delay.fade-in.in-view {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.animation-element.fade {
    opacity: 0;
    transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -webkit-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
}

.animation-element.fade.in-view {
    opacity: 1;
}

.case-intro-content {
    padding: 0 4%;
}
.entry h3 strong {
    font-weight: 500;
}
.entry-intro h3 strong {
    /* font-weight: 500; */
}

.what-we-do-list {
    /* width: 120%; */
}

.what-we-do-list > ul > li {
    float: left;
    width: 38%;
    margin-right: 24%;
    position: relative;
}
.what-we-do-list > ul > li:before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(100% + 30%);
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: url(../img/plus.svg) no-repeat center center / 100% 100%;
}
.what-we-do-list > ul > li:nth-child(2n):before {
    display: none;
}
.what-we-do-list > ul > li:nth-child(2n) {
    margin-right: 0%;
}

.what-we-do-list-logo {
    padding-bottom: 15px;
    margin-bottom: 50px;
    border-bottom: 2px solid #000;
    min-height: 60px;
}
.what-we-do-list-logo img {
   /* min-height: 60px; */
   max-height: 40px;
}


@media only screen and (max-width: 1800px) {
    .row.row-sm {
        max-width: 960px;
    }
}

@media only screen and (max-height: 900px) {
    .contact-title {
        /* margin-bottom: 25%; */
    }
}
@media only screen and (max-height: 550px) {
    .intro-main {
        bottom: 40px;
    }
}

@media only screen and (max-width: 1440px) {
    .footer .row {
        padding-left: 5%;
        padding-right: 5%;
    }
    .awards-image {
        margin-bottom: 150px;
    }
    .section.clients-hold {
        padding-bottom: 320px;
    }
    .contact-title {
        /* margin-bottom: 17%; */
    }
    .text-lg {
        font-size: 2.2vw;
    }
    .do-list ul li {
        /* font-size: 2.1vw; */
    }
    .clients-list {
        width: 110%;
    }
}

@media only screen and (max-width: 1280px) {
    .section.our-cliens-hold {
        margin-top: -80px;
    }
    .what-we-do .text-lg {
        margin-bottom: 90px;
    }
    .clients-list {
        margin-top: 30px;
    }
    .clients-list-topic sup {
        top: -18px;
    }
    .clients-list-topic-list {
        padding-top: 50px;
    }
    .clients-list > ul > li {
        margin-bottom: 50px;
        width: 29%;
        margin-right: 6.5%;
    }
    .clients-list-topic {
        font-size: 32px;
    }
    .what-we-do-list-logo {
        margin-bottom: 30px;
    }
    .works-list ul li {
        margin-bottom: 30px;
    }
    .row.row-contact {
        padding-left: 5%;
        padding-right: 5%;
    }
    .case-counter {
        right: -108px;
    }
    .case-carousel .owl-nav {
        right: -190px;
    }
    .case-single-features {
        width: 100%;
    }
    .section-counter {
        bottom: 70px;
        /* left: 40px; */
    }
    .section {
        padding: 60px 0;
    }
    .section.clients-hold .section-counter {
        bottom: 330px;
    }
    .awards-hold .section-counter {
        bottom: 275px;
    }
    .work-hover-image {
        /* width: 440px;
        height: 300px; */
    }
    .contact-copyrights {
        margin-bottom: 30px;
    }
    .contact-block-info a {
        font-size: 18px;
    }
    .contact-right img {
        /* min-width: calc(100vw / 2); */
    }
    .contact-title {
        /* margin-bottom: 90px; */
        font-size: 50px;
    }
    .home-latest-right-video {
        margin-bottom: 80px;
    }
    .about {
        padding-top: 80px;
    }
    .manifesto {
        margin-bottom: 120px;
    }
    .team-list ul li {
        margin-bottom: 100px;
    }
    .section.clients-hold {
        padding-bottom: 280px;
    }
    .awards-image {
        margin-bottom: 110px;
    }
    .awards-hold .text-lg {
        margin-bottom: 70px;
    }
    .awards-hold {
        padding-bottom: 140px;
    }
    .awards-list {
        /* margin-bottom: 90px; */
    }
    .awards-button-more {
        margin-top: 90px;
    }
    .next-case {
        margin-top: 60px;
    }
    .blockquote {
        margin-top: -50px;
        padding: 15% 20% 10% 15%;
    }
    .blockquote p {
        font-size: 2.6vw;
        margin-bottom: 45px;
    }
    .entry-intro p {
        font-size: 26px;
    }
    .section-intro {
        margin-bottom: 0px;
    }
    .clients-list {
        width: 105%;
    }
}

@media only screen and (max-width: 1100px) {
    .do-list ul li {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px) {
    .case-intro {
        background-attachment: scroll !important;
    }
}

@media only screen and (max-width: 1023px) {
    .section.our-cliens-hold {
        margin-top: -60px;
    }
    .awards-loaded .btn-line.btn-line-lg:hover span {
        width: 100px;
    }
    .what-we-do .text-lg {
        margin-bottom: 70px;
    }
    .section.our-cliens-hold {
        padding-bottom: 20px;
    }
    .clients-list-topic sup {
        font-size: 12px;
        font-weight: 500;
        top: -15px;
        position: relative;
    }
    .clients-list-topic-list {
        padding-top: 45px;
    }
    .clients-list-topic {
        font-size: 28px;
    }
    .clients-list > ul > li {
        width: 44%;
        margin-right: 12%;
        margin-bottom: 40px;
    }

    .clients-list > ul > li:nth-child(3n) {
        margin-right: 12%;
    }
    .clients-list > ul > li:nth-child(2n) {
        margin-right: 0%;
    }
    .clients-list > ul > li:nth-child(3n+1) {
        clear: none;
    }
    .clients-list > ul > li:nth-child(2n+1) {
        clear: both;
    }
    .what-we-do-list > ul > li:before {
        left: calc(100% + 25%);
    }
    .what-we-do-list > ul > li {
        width: 40%;
        margin-right: 20%;
    }
    .case-intro-hold {
        margin-bottom: 60px;
    }
    .row.row-contact {
        padding-left: 40px;
        padding-right: 40px;
    }
    .our-cliens-hold {
        margin-top: -50px;
    }
    .row.row-intro {
        padding-left: 5%;
        padding-right: 5%;
    }
    .intro-line {
        height: 4px;
    }
    .intro-main {
        left: 40px;
        bottom: 70px;
        width: 90%;
    }
    .home-intro .row {
        min-height: calc(100vh - 100px);

        /*min-height: 0;
        height: auto;*/

    }
    .clients-list {
        width: 100%;
    }
    .next-case-title span {
        /* position: static;
        transform: translate(-0%, -0%) scale(1); */
    }
    .next-case-title {
        font-size: 50px;
        letter-spacing: -2px;
    }
    .case-carousel .owl-nav {
        right: -173px;
    }
    .case-counter {
        right: -90px;
    }
    .case-single-features-title {
        font-size: 15px;
    }
    .case-single-features-text {
        font-size: 15px;
    }
    .entry-intro {
        margin-bottom: 70px;
    }
    .blockquote {
        padding: 120px 15% 80px 10%;
    }
    .blockquote p {
        font-size: 22px;
        margin-bottom: 45px;
    }
    .full-img {
        margin: 50px 0;
    }
    .section {
        padding: 50px 0;
    }
    .section-counter {
        display: none;
    }
    .error-title {
        bottom: 110px;
    }
    .error-link {
        bottom: 60px;
    }
    .works-hold {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .works-list ul li a {
        font-size: 36px;
    }
    .work-hover-image {
        /* width: 340px;
        height: 220px; */
    }
    .contact-title {
        font-size: 36px;
    }
    .contact-copyrights {
        text-align: left;
        position: static;
    }
    .contact-block:nth-last-child(2) {
        margin-bottom: 58px;
    }
    .contact-left {
        display: block;
    }
    .contact-right img {
        min-width: 1px;
        max-width: 640px;
        width: 100%;
        position: relative;
        left: -40px;
    }
    .contact-right {
        margin-bottom: 80px;
        position: static;
        top: 0%;
        transform: translateY(0);
        right: 0;
        width: 100%;
        padding: 0;
    }
    .awards-list {
        /* margin-bottom: 70px; */
    }
    .awards-button-more {
        margin-top: 70px;
    }
    .awards-hold {
        padding-bottom: 100px;
    }
    .awards-image {
        margin-bottom: 80px;
    }
    .team-list ul li:nth-child(6n+5) {
        margin-top: -35px;
    }
    .team-list ul li:nth-child(6n+6) {
        margin-top: 30px;
    }
    .member-name {
        font-size: 18px;
    }
    .member-position {
        font-size: 18px;
    }
    .member-image {
        margin-bottom: 20px;
    }
    .team-list ul li {
        margin-bottom: 70px;
    }
    .manifesto {
        margin-bottom: 90px;
    }
    .about {
        padding-top: 70px;
    }
    .text-lg {
        font-size: 22px;
    }
    .home-scroll-to {
        right: 3%;
    }
    .home-latest {
        padding-top: 60px;
        padding-bottom: 170px;
    }
    .btn-line.btn-line-lg span {
        width: 70px;
    }
    .btn-line.btn-line-lg:hover {
        padding-right: 90px;
    }
    .text-right .btn-line.btn-line-lg:hover {
        padding-left: 9px;
    }
    .btn-line.btn-line-lg, .btn-line.btn-line-lg:focus, .btn-line.btn-line-lg:active {
        font-size: 18px;
    }
    .title-line {
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-size: 18px;
    }
    .home-latest-right-video {
        margin-bottom: 40px;
    }
    .home-latest-text {
        font-size: 22px;
    }
    .footer {
        padding: 100px 0 80px;
        background: #d2d2d2;
    }
    .footer-text p {
        font-size: 20px;
        letter-spacing: 0px;
        margin-bottom: 30px;
    }
    .row {
        padding-left: 40px;
        padding-right: 40px;
    }
    .footer-top {
        margin-bottom: 80px;
    }
    .footer-socials ul li a {
        font-size: 14px;
    }
    .footer-socials ul li {
        width: 50%;
    }
    .home-work-image-hold {
        margin-bottom: 20px;
    }
    .home-works-hold {
        padding: 90px 0 130px;
    }
    .home-works-title {
        margin-bottom: 80px;
        font-size: 18px;
    }
    .home-work-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .home-work-info {
        font-size: 18px;
    }
    .home-works-list ul li {
        margin-bottom: 95px;
    }
    .header {
        padding: 30px 0 30px;
    }
    .header-equal {
        height: 100px;
    }
    .btn-line span {
        width: 60px;
    }
    .btn-line:hover {
        color: #000;
        padding-right: 80px;
    }
    .contact-block-title {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .entry p {
        font-size: 22px;
    }
    .case-intro-year {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .case-intro-title {
        font-size: 50px;
        letter-spacing: -2px;
    }
    .entry-intro p {
        font-size: 24px;
    }
    .entry a {
        margin-top: 30px;
    }
    .next-case {
        margin-top: 50px;
    }
    .next-case-image-hold {
        /* width: 400px;
        height: 280px; */
        width: 50%;
        padding-bottom: 30%;
    }
    .intro-top {
        font-size: 22px;
    }
}

@media screen and (max-width:639px) {
    
    .footer .row {
        padding-left: 25px;
        padding-right: 25px;
    }
    .section.our-cliens-hold {
        margin-top: 0;
    }
    .works-list ul:hover li a {
        opacity: 1;
    }
    .manifesto-content {
        padding-left: 3%;
    }
    .awards-loaded .btn-line.btn-line-lg:hover span {
        width: 60px;
    }
    .section.our-cliens-hold {
        padding-bottom: 0px;
    }
    .clients-list {
        margin-top: 5px;
    }
    .clients-list-topic sup {
        top: -12px;
    }
    .clients-list-topic-list {
        padding-top: 36px;
    }
    .clients-list-topic {
        font-size: 22px;
    }
    .clients-list > ul > li {
        width: 100%;
        margin-right: 0%;
    }
    .clients-list > ul > li:nth-child(3n) {
        margin-right: 0%;
    }
    .what-we-do-list-logo img {
        max-height: 30px;
        max-width: 132px;
    }
    .what-we-do-list-logo {
        min-height: 1px;
        margin-bottom: 25px;
    }
    .what-we-do-list > ul > li:before {
        top: calc(100% + 34px);
        left: 25px;
    }
    .what-we-do-list > ul > li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 116px;
    }
    .what-we-do-list > ul > li:last-child {
        margin-bottom: 0px;
    }

    .do-list ul li {
        font-size: 18px;
        line-height: 1.8;
    }
    /* .works-list ul li a {
        opacity: 0.3;
    } */
    .case-intro-hold {
        margin-bottom: 40px;
    }
    .intro-line {
        left: 54%;
    }

    .intro-line.intro-starts.intro-line-loaded {
        right: 13%;
        left: auto;
    }
    .intro-line.intro-starts.intro-line-loaded.slide-2-on {
        width: 15%;
    }

    .page-template-about .intro-main-about .intro-line {
        left: 50%;
    }



    .row.row-contact {
        padding-left: 25px;
        padding-right: 25px;
    }
    .intro-main-text-wrapper-top {
        margin-bottom: -22px;
    }
    .our-cliens-hold {
        margin-top: 0px;
    }
    .video-preloader-text {
        font-size: 20px;
    }
    /* .intro-line.close,
    .intro-line.slide-1 {
        width: 28%;
    }
    .intro-line.slide-2 {
        width: 13%;
    }
    .intro-line {
        right: 15%;
        top: 33%;
    } */
    .intro-main-hold-orn {
        right: 0%;
    }
    .intro-main {
        left: 20px;
        bottom: 90px;
        font-size: 50px;
        letter-spacing: -2.5px;
        width: calc(100% - 40px);
    }
    .next-case-title span {
        position: static;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%) scale(1);
    }
    .intro-main-hold {
        /* font-size: 50px;
        letter-spacing: -2.5px; */
    }
    .intro-top {
        font-size: 18px;
    }
    .team-list ul li:last-child {
        margin-bottom: 0;
    }
    .next-case-title {
        font-size: 40px;
        margin-bottom: 35px;
    }
    .next-case-image-hold {
        display: none;
    }
    .entry p {
        font-size: 18px;
    }
    .reverse .images-half-list ul li:nth-child(2) {
        width: 90%;
        margin-right: 10%;
        margin-left: 0;
        margin-top: 60px;
    }
    .reverse .images-half-list ul li {
        width: 80%;
        margin-right: 0;
        margin-left: 20%;
        margin-top: 0%;
    }
    .auto-height .images-half-list ul li:nth-child(2) {
        margin-top: 60px;
    }
    .entry a {
        margin-top: 25px;
    }
    .case-carousel-hold {
        margin-bottom: 30px;
    }
    .case-carousel-item {
        height: auto;
        padding-bottom: 60%;
    }
    .case-carousel .owl-nav:before {
        width: 110px;
    }
    .case-carousel.owl-carousel .owl-nav button.owl-prev {
        margin-right: 135px;
    }
    .case-carousel.owl-carousel .owl-nav button.owl-next, .case-carousel.owl-carousel .owl-nav button.owl-prev {
        font-size: 14px;
    }
    .case-carousel .owl-nav {
        right: 25px;
        bottom: -42px;
        top: auto;
        transform: translateY(0%) rotate(0deg);
    }
    .case-counter {
        right: auto;
        left: 25px;
        bottom: -40px;
        transform: rotate(0deg);
    }
    .row.row-carousel {
        padding-right: 0%;
    }
    .section {
        padding: 45px 0;
    }
    .entry-intro h3 {
        font-size: 14px;
    }
    .entry-intro p {
        font-size: 22px;
    }
    .case-single-features ul li:nth-last-child(-n+3) {
        margin-bottom: 30px;
    }
    .case-single-features ul li:last-child {
        margin-bottom: 0px;
    }
    .case-single-features ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 30px;
    }
    .case-single-features-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .case-single-features-text {
        font-size: 14px;
    }
    .case-intro-title {
        font-size: 40px;
    }
    .case-intro-year {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .entry h3 {
        font-size: 14px;
    }
    .entry p {
        font-size: 18px;
    }
    .blockquote p {
        margin-bottom: 20px;
    }
    .row.row-blockquote {
        padding-left: 0%;
    }
    .error-title {
        bottom: 120px;
    }
    .error-link {
        bottom: 90px;
    }
    .error-content {
        padding-top: 130px;
    }
    .error-title {
        font-size: 50px;
    }
    .error-intro {
        font-size: 18px;
        letter-spacing: 0;
    }
    .work-hover-image.close {
        display: none;
    }
    .works-list {
        text-align: left;
    }
    .works-list ul li {
        margin-bottom: 25px;
    }
    .works-hold {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .works-list ul li a {
        font-size: 24px;
    }
    .contact-block:nth-last-child(2) {
        margin-bottom: 34px;
    }
    .contact-block {
        margin-bottom: 34px;
    }
    .contact-block-info a:hover {
        padding-top: 0px;
    }
    .contact-block-info a {
        padding-bottom: 0px;
    }
    .contact-title {
        font-size: 26px;
    }
    .contact-right img {
        left: -25px;
    }
    .manifesto-text {
        font-size: 11vw;
    }
    .btn-line-center-small.text-right .btn-line.btn-line-lg:hover {
        padding-left: 40px;
        padding-right: 40px;
    }
    .btn-line-center-small {
        text-align: center;
    }
    .awards-list {
        /* margin-bottom: 15px; */
    }
    .awards-button-more {
        margin-top: 15px;
    }
    .award-item a {
        line-height: 1.2;
    }
    .awards-list:hover .award-item {
        opacity: 1;
    }
    .award-item {
        padding: 0;
        margin-bottom: 24px;
        font-size: 14px;
    }
    .award-item-row {
        margin-bottom: 10px;
    }
    .award-item-row .title-sm {
        margin-bottom: 0;
    }
    .awards-image {
        padding-left: 25px;
        margin-top: -70px;
        margin-bottom: 100px;
    }
    .section.clients-hold {
        padding-bottom: 150px;
    }


    .row.row-full-padd {
        padding-right: 25px;
        padding-left: 25px;
    }
    .team-list ul li:nth-child(6n+6),
    .team-list ul li:nth-child(6n+5),
    .team-list ul li:nth-child(6n+3),
    .team-list ul li:nth-child(6n+1) {
        margin-top: 0px;
    }
    .team-list ul li:nth-child(6n+4) {
        margin-left: 0%;
    }
    .team-list ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .what-we-do-grid {
        margin-bottom: 30px;
    }
    .what-we-do .text-lg {
        margin-bottom: 40px;
    }
    .title-sm {
        font-size: 14px;
    }
    .images-half-list ul li {
        float: left;
        width: 80%;
        margin-right: 20%;
    }
    .images-half-list ul li:nth-child(2) {
        width: 90%;
        margin-right: 0;
        margin-left: 10%;
        margin-top: 60px;
    }
    .row.row-full-padd.row-small-nopad {
        padding: 0;
    }
    .scroll-to-arrow {
        display: none;
    }
    .btn-line.btn-line-lg:hover {
        padding-right: 80px;
    }
    .text-right .btn-line.btn-line-lg:hover {
        padding-left: 80px;
    }
    .btn-line.btn-line-lg span {
        width: 60px;
    }
    .btn-line.btn-line-lg, .btn-line.btn-line-lg:focus, .btn-line.btn-line-lg:active {
        font-size: 16px;
    }
    .home-latest {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .home-latest-text {
        font-size: 20px;
    }
    .title-line {
        font-size: 16px;
    }
    .home-latest-right-video {
        margin-bottom: 35px;
    }
    .home-latest-left {
        margin-bottom: 70px;
    }
    .home-latest-right {
        padding-left: 0;
    }
    .home-latest .row {
        display: block;
    }
    .nav ul li {
        margin-right: 20px;
    }
    .nav ul li a {
        font-size: 16px;
        font-weight: 500;
    }

    .nav ul li a:hover:before {
        display: none;
    }

    .btn-line:hover {
        padding-right: 70px;
    }
    .home-works-list ul li:nth-child(1),
    .home-works-list ul li:nth-child(4n+4),
    .home-works-list ul li:nth-child(4n+5) {
        width: 100%;
    }
    .home-works-list ul li {
        margin-bottom: 75px;
        width: 100%;
        margin-right: 0;
    }
    .home-works-title {
        margin-bottom: 70px;
        font-size: 16px;
    }
    .home-works-hold {
        padding: 70px 0 100px;
    }
    .footer {
        padding: 80px 0 40px;
        background: #d2d2d2;
    }
    .footer-logo {
        margin-bottom: 40px;
    }
    .footer-text p {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.44;
    }
    .row {
        padding-left: 25px;
        padding-right: 25px;
    }
    .footer-socials ul li {
        width: 130px;
        margin-bottom: 3px;
    }
    .footer-socials ul li a {
        font-size: 12px;
    }
    .footer-socials {
        margin-bottom: 50px;
    }
    .copyrights {
        font-size: 11px;
        padding-top: 0;
    }
    .btn-line, .btn-line:focus, .btn-line:active {
        font-size: 12px;
    }

    .btn-line span {
        width: 50px;
    }
    .footer-top {
        margin-bottom: 60px;
    }
}


@media screen and (max-height:400px) {
    .error-content {
        padding-top: 110px;
    }
    .error-title {
        bottom: 55px;
    }
    .error-link {
        bottom: 20px;
    }
}

@media (orientation: portrait) {
    .video-preloader video {
        min-width: auto;
        height: 100%;
    }
}

.logo {font-size:30px; margin-top:-13px;
        font-family: Roboto, sans-serif;
        letter-spacing: -1px;
    }
@media screen and (max-width:639px) {
    .logo {font-size:28px; margin-top:-10px;
        
    }