* { 
    word-break: break-word;
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-before: 3;
    -webkit-hyphenate-limit-after: 3;
    -webkit-hyphenate-limit-chars: 6 3 3;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphenate-limit-last: always;
    -webkit-hyphenate-limit-zone: 8%;
    -moz-hyphens: auto;
    -moz-hyphenate-limit-chars: 6 3 3;
    -moz-hyphenate-limit-lines: 2;
    -moz-hyphenate-limit-last: always;
    -moz-hyphenate-limit-zone: 8%;
    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: 6 3 3;
    -ms-hyphenate-limit-lines: 2;
    -ms-hyphenate-limit-last: always;
    -ms-hyphenate-limit-zone: 8%;
    /*hyphens: auto;*/
    hyphenate-limit-chars: 6 3 3;
    hyphenate-limit-lines: 2;
    hyphenate-limit-last: always;
    hyphenate-limit-zone: 8%;
}

/*----------------------------------------------------------------------------*/
/*#FONTS*/
/*----------------------------------------------------------------------------*/
@font-face {
    font-family: 'Univers LT 57 Condensed';
    src: url('../fonts/UniversLT-Condensed.eot');
    src: url('../fonts/UniversLT-Condensed.eot?#iefix') format('embedded-opentype'),
        url('../fonts/UniversLT-Condensed.woff2') format('woff2'),
        url('../fonts/UniversLT-Condensed.woff') format('woff'),
        url('../fonts/UniversLT-Condensed.ttf') format('truetype'),
        url('../fonts/UniversLT-Condensed.svg#UniversLT-Condensed') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Univers LT 47 CondensedLt';
    src: url('../fonts/UniversLT-CondensedLight.eot');
    src: url('../fonts/UniversLT-CondensedLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/UniversLT-CondensedLight.woff2') format('woff2'),
        url('../fonts/UniversLT-CondensedLight.woff') format('woff'),
        url('../fonts/UniversLT-CondensedLight.ttf') format('truetype'),
        url('../fonts/UniversLT-CondensedLight.svg#UniversLT-CondensedLight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Univers 67 Condensed';
    src: url('../fonts/Univers-CondensedBold.eot');
    src: url('../fonts/Univers-CondensedBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Univers-CondensedBold.woff2') format('woff2'),
        url('../fonts/Univers-CondensedBold.woff') format('woff'),
        url('../fonts/Univers-CondensedBold.ttf') format('truetype'),
        url('../fonts/Univers-CondensedBold.svg#Univers-CondensedBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*----------font family-------------------*/

.ff--unvers57 { font-family: 'Univers LT 57 Condensed',sans-serif;   }
.ff--unvers47 { font-family: 'Univers LT 47 CondensedLt',sans-serif; }
.ff--unvers67 { font-family: 'Univers 67 Condensed',sans-serif;      }

/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--bold      { font-weight: 700; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline      { text-decoration: overline; }
.txt--linethrough   { text-decoration: line-through; }
.txt--underline     { text-decoration: underline; }
.txt--none:hover    { text-decoration: none; }
/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }
.overflow-x--hidden { overflow-x: hidden; }

/*--------position---------------------------------*/
.p--relative { position: relative; }

/*--------height---------------------------------*/
.height--100 { height: 100%; }
/*--------width---------------------------------*/
.width--100 { width: 100%; }
.w--100 	{ width: 100%; }

/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
    width: 100%;
    padding-left:  20px;
    padding-right: 20px;
    margin-left:  auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
}
/*max-width = width of container + padding-left + padding-right*/
.container-full  { max-width: 100%;   }
.container       { max-width: 1740px; }
.container--lg {}
.container--md {}
.container--sm {}
.container--xs {}

.row {
    margin-left:  -20px;
    margin-right: -20px;
}

.row [class*='col'] {
    padding-left:  20px;
    padding-right: 20px;
}

.row.gutters-lg {
    margin-left:  -70px;
    margin-right: -70px;
}

.row.gutters-lg [class*='col'] {
    padding-left:  70px;
    padding-right: 70px;
}
/*----------------------------------------------------------------------------*/
/*#VIDEO*/
/*----------------------------------------------------------------------------*/

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video iframe {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video video {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--white { color: #fff; }
.txt--black { color: #000; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/
.bg--white { background-color: #fff; }
.bg--black { background-color: #000; }

.bg--properties {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*----------------------------------------------------------------------------*/
/*#PADDING STYLE*/
/*----------------------------------------------------------------------------*/

/*padding top/left/right/bottom --> { p-- } */
.p--0 { padding: 0!important; }

/*padding top/left/right/bottom --> { pt-- / pl-- / pr-- / pb-- } */
.pt--0 { padding-top:    0!important; }
.pb--0 { padding-bottom: 0!important; }
.pl--0 { padding-left:   0!important; }
.pr--0 { padding-right:  0!important; }

/*padding left-right/top-bottom --> { p-lr-- / p-tb-- } */
.py--0 {
    padding-top:    0!important;
    padding-bottom: 0!important;
}
.px--0 {
    padding-left:  0!important;
    padding-right: 0!important;
}

/*----------------------------------------------------------------------------*/
/*#MARGIN STYLE*/
/*----------------------------------------------------------------------------*/

/*margin top/left/right/bottom --> { m-- } */
.m--0 { margin: 0!important; }
.m--auto {
    margin-left:  auto!important;
    margin-right: auto!important;
}

/*margin top/left/right/bottom --> { mt-- / ml-- / mr-- / mb-- } */
.mb--0   { margin-bottom:  0; }
.mb--140 { margin-bottom: 140px; }
.mb--90  { margin-bottom: 90px; }
.mb--80  { margin-bottom: 80px; }
.mb--70  { margin-bottom: 70px; }
.mb--50  { margin-bottom: 50px; }
.mb--45  { margin-bottom: 45px; }
.mb--40  { margin-bottom: 40px; }
.mb--35  { margin-bottom: 35px; }
.mb--30  { margin-bottom: 30px; }
.mb--20  { margin-bottom: 20px; }

.mt--0   { margin-top:  0; }
.mt--140 { margin-top: 140px; }
.mt--90  { margin-top: 90px; }
.mt--80  { margin-top: 80px; }
.mt--70  { margin-top: 70px; }
.mt--50  { margin-top: 50px; }
.mt--45  { margin-top: 45px; }
.mt--40  { margin-top: 40px; }
.mt--35  { margin-top: 35px; }
.mt--30  { margin-top: 30px; }
.mt--20  { margin-top: 20px; }

.ml--0  { margin-left:   0!important; }
.mr--0  { margin-right:  0!important; }

/*margin left-right/top-bottom --> { m-lr-- / m-tb-- } */
.my--0 {
    margin-top:    0!important;
    margin-bottom: 0!important;
}
.mx--0 {
    margin-left:  0!important;
    margin-right: 0!important;
}

/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/

.btn {
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;
}

/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/

body { 
    font-family: 'Univers LT 47 CondensedLt', sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: normal;
    color: #221e20;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 { 
    font-family: 'Univers 67 Condensed';
    font-weight: bold;
    line-height: 1;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong { }

h1 {
    font-size: 130px;     
    margin-bottom: 90px;
}
h2 {
    font-size: 90px;     
    margin-bottom: 80px;
}
h3 { 
    font-size: 60px;
    margin-bottom: 70px;
}
h4 {
    font-size: 45px; 
    margin-bottom: 45px;
}
h5 {
    font-size: 35px;  
    margin-bottom: 35px;
}
h6 {
    font-size: 30px; 
    margin-bottom: 35px;
}
ul, ol {
    line-height: 1.2;
    margin-bottom: 35px;
}
ul:not(.menu), ol:not(.menu) {
	list-style: initial!important;
	padding-left: 1em;
}

p,
a,
ul li,
ol li {
    line-height: 1.1;
    margin-bottom: 35px;
}
p:last-child,
a:last-child,
ul li:last-child,
ol li:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
}

small { font-size: 0.75rem; }

strong {
    font-family: 'Univers 67 Condensed';
    font-weight: bold;
}

img {
    display: block;
}
.site-container {
    width: 100%;
    max-width: 1740px;
    margin-left:  auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
body.home .site-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 200px;
}
.inner-container { 
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%;
}
.site-inner {
    width: 100%;
    position: relative;
    padding-top: 350px;
    padding-bottom: 200px;
}
body.home .site-inner {
    padding-top: 0;
}
body.post-type-archive:not(.projects__page) .site-inner {
	padding-top: 0;
}
.site-inner main.content {
    max-width: 1400px;
    margin-left:  auto;
    margin-right: auto;
}
.wp-block-group {
    max-width: 1260px;
    margin-left: auto;
}
.wp-block-image {
    margin-bottom: 0;
}
.wp-block-image img {
    height: auto;
	width: 100%;
}
.wp-block-columns {
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-left: -70px;
    margin-right: -70px;
}
.wp-block-column {
    margin: 0!important;
    padding-left: 70px;
    padding-right: 70px;
}
.alignfull {
	margin: 0 calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}
.alignwide {
    max-width: 100%;
}
.section-title { 
    font-size: 90px;     
    margin-bottom: 80px;
}
.section-subtitle { 
    font-size: 60px;
    margin-bottom: 70px;
}
.section-padding { 
    padding-top: 150px;
    padding-bottom: 150px;
}
.title--hover {
    position: relative;
	padding-right: 70px;
}
.title--hover .double-arrow-icon {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: .3s ease-in-out;
}
.title--hover:hover .double-arrow-icon {
    -webkit-transform: translate(20px, -50%);
    transform: translate(20px, -50%);
}
.image-link-hover {
	overflow: hidden;
}
.image-link-hover img {
	transition: .4s ease-in-out;
}
.image-link-hover:hover img {
	transform: scale(1.08)
}
.custom-entry-article-margin:not(.member-project):first-child {
	padding-top: 350px;
}
.custom-entry-article-margin:not(:first-of-type) {
    padding-top: 250px;
}
.sidebar-scroller {
    position: fixed;
    top: 50%;
    left: 110px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(90deg) translate(-50%,0);
    -ms-transform: rotate(90deg) translate(-50%,0);
    transform: rotate(90deg) translate(-50%,0);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
    -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
    transition: all cubic-bezier(.4,0,.2,1) .4s;
    z-index: 1;
    color: rgb(170,170,170);
    visibility: hidden;
    /* opacity: 0.2; */
}
.sidebar-scroller.active {
    visibility: visible;
}
.sidebar-scroller .scroll-number {
    margin-right: 20px;
}
.sidebar-scroller .scroll-top-bar {
    margin-right: 20px;
    position: relative;
}
/* .sidebar-scroller .scroll-top-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .3;
    background-color: #000;
} */
.sidebar-scroller .scroll-top-bar .scroll-track {
    width: 0;
    height: 5px;
    background: rgb(170,170,170);
}
.loader-holder {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #fff;
	display: flex;
}
.loader-holder .loader {
	max-width: 135px;
	width: 100%;
	-webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.loader-holder .loader img {
	width: 100%;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}
.back-top {
	display: inline-block;
	font-size: 55px;
    padding: 5px;
	color: rgba(128,128,128,.6);
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 997;
	cursor: pointer;
	transition: .3s ease-in-out;
}
.back-top:hover {
	color: rgba(128,128,128,1);
}
/*----------------------------------------------------------------------------*/
/*#FONT SIZE*/
/*----------------------------------------------------------------------------*/

.txt--xs { font-size: 35px;  }
.txt--sm { font-size: 45px;  }
.txt--md { font-size: 60px;  }
.txt--lg { font-size: 90px;  }
.txt--xl { font-size: 130px; }


/*----------------------------------------------------------------------------*/
/*#HEADER AND MENU*/
/*----------------------------------------------------------------------------*/

.site-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: .3s ease-in-out;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 100px 0;
}
.site-header.active{
    background-color: #fff;
    box-shadow: 0px 0px 3px 3px rgba(41,41,41,.05);
    padding: 30px 0;
}
.site-header > .wrap {
    width: 100%;
    max-width: 1740px;
    margin-left:  auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wp-custom-logo .site-container .title-area {
    margin-right: auto;
    z-index: 1000;
    transition: .3s ease-in-out;
}
.wp-custom-logo .site-container .title-area img {
    width: 100%;
    height: auto;
}
.wp-custom-logo .site-container .site-header.active .title-area {
    max-width: 100px;
}
/* body.contact__page.wp-custom-logo .site-container .title-area img, */
body.home.wp-custom-logo .site-container .title-area img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter')!important;
    -webkit-filter: brightness(0) invert(1)!important;
    filter: brightness(0) invert(1)!important;
}
/* body.contact__page.wp-custom-logo .site-container .site-header.active .title-area img, */
body.home.wp-custom-logo .site-container .site-header.active .title-area img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(1) invert(0)!important;
    filter: brightness(1) invert(0)!important;
}
body.menu-triggered.wp-custom-logo .site-container .title-area img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter')!important;
    -webkit-filter: brightness(0) invert(1)!important;
    filter: brightness(0) invert(1)!important;
}
/* body.contact__page.menu-triggered.wp-custom-logo .site-container .site-header.active .title-area img, */
body.home.menu-triggered.wp-custom-logo .site-container .site-header.active .title-area img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter')!important;
    -webkit-filter: brightness(0) invert(1)!important;
    filter: brightness(0) invert(1)!important;
}


.menu-toggle {
    height: 40px;
    width: 90px;
    margin-left: 50px;
    z-index: 1000;
    cursor: pointer;
    /* background-color: #000; */
    position: relative;
    /* z-index: 999; */
    /* pointer-events: all; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.menu-toggle span {
    height: 7px;
    width: 90px;
    position: absolute;
    left: 0;
    display: block;
    background-color: #000;
    cursor: pointer;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    -webkit-transition-property: top, bottom, width, -webkit-transform;
    -moz-transition-property: top, bottom, width, -moz-transform;
    -o-transition-property: top, bottom, width, -o-transform;
    transition-property: top, bottom, width, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: .3s, .3s, .3s, 0s;
    -moz-transition-delay: .3s, .3s, .3s, 0s;
    -o-transition-delay: .3s, .3s, .3s, 0s;
    transition-delay: .3s, .3s, .3s, 0s;
}
.menu-toggle span:nth-child(1) {
    top: 0;
}
.menu-toggle span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.menu-toggle span:nth-child(3) {
    bottom: 0;
}
/* body.contact__page .menu-toggle span, */
body.home .menu-toggle span {
    background-color: #fff;
}
.menu-triggered .menu-toggle span {
    background-color: #fff;
}
/* body.contact__page.menu-triggered .menu-toggle span, */
body.home.menu-triggered .menu-toggle span {
    background-color: #fff;
}
/* body.contact__page.menu-triggered .menu-toggle span, */
body.home.menu-triggered .menu-toggle span {
    background-color: #fff;
}
/* body.contact__page .site-header.active .menu-toggle span, */
body.home .site-header.active .menu-toggle span {
    background-color: #000;
}
/* body.contact__page.menu-triggered .site-header.active .menu-toggle span, */
body.home.menu-triggered .site-header.active .menu-toggle span {
    background-color: #fff;
}
.menu-triggered .menu-toggle span:nth-child(1) {
    top: calc(50% - 4px);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    
    -webkit-transition-property: top, bottom, width, -webkit-transform;
    -moz-transition-property: top, bottom, width, -moz-transform;
    -o-transition-property: top, bottom, width, -o-transform;
    transition-property: top, bottom, width, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s, 0s, 0s, .3s;
    -moz-transition-delay: 0s, 0s, 0s, .3s;
    -o-transition-delay: 0s, 0s, 0s, .3s;
    transition-delay: 0s, 0s, 0s, .3s;
}
.menu-triggered .menu-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
    -webkit-transition-property: top, bottom, width, -webkit-transform;
    -moz-transition-property: top, bottom, width, -moz-transform;
    -o-transition-property: top, bottom, width, -o-transform;
    transition-property: top, bottom, width, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s, 0s, 0s, .3s;
    -moz-transition-delay: 0s, 0s, 0s, .3s;
    -o-transition-delay: 0s, 0s, 0s, .3s;
    transition-delay: 0s, 0s, 0s, .3s;
}
.menu-triggered .menu-toggle span:nth-child(3) {
    bottom: calc(50% - 2px);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-property: top, bottom, width, -webkit-transform;
    -moz-transition-property: top, bottom, width, -moz-transform;
    -o-transition-property: top, bottom, width, -o-transform;
    transition-property: top, bottom, width, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s, 0s, 0s, .3s;
    -moz-transition-delay: 0s, 0s, 0s, .3s;
    -o-transition-delay: 0s, 0s, 0s, .3s;
    transition-delay: 0s, 0s, 0s, .3s;
}
.menu-primary {
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    overflow-y: auto;
}
.menu-primary:after {
    content: '';
    width: 100%;
    height: 130px;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 2;
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 73%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0.5) 73%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0.5) 73%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}
.menu-triggered .menu-primary {
    opacity: 1;
    visibility: visible;
}
.menu-primary li {
    font-size: 4.5rem;
    padding: 10px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    /* font-weight: bold; */
}
.menu-primary li a {
    margin-bottom: 0;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 4px;
}
.menu-primary li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    transition: .3s ease-in-out;
    background-color: #fff;
}
.menu-primary li a:hover:before {
    width: 100%;
}
.menu-primary li.current-menu-item a:before {
    width: 100%;
}

/*----------------------------------------------------------------------------*/
/*#HERO SECTION (HOME)*/
/*----------------------------------------------------------------------------*/
.hero-section {
    margin-bottom: 250px;
}
.hero-slider .hero-slide {
    min-height: 100vh;
    position: relative;
}
.hero-slider .hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 0;
}
.hero-slider .hero-slide .hero-slide_text {
    position: relative;
    text-align: right;
    font-size: 130px;
    color: #fff;
    padding-bottom: 200px;
    z-index: 1;
}
.hero-slider .hero-slide .scroll-indicator {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-size: 60px;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    color: #fff;
	-webkit-animation: upAndDownScrollIndicator 1.2s linear infinite;
	animation: upAndDownScrollIndicator 1.2s linear infinite;
	z-index: 2;
	cursor: pointer;
}

@-webkit-keyframes upAndDownScrollIndicator {
	0%   { bottom: 80px; }
	50%  { bottom: 50px; }
	100% { bottom: 80px; }
}
@keyframes upAndDownScrollIndicator {
	0%   { bottom: 80px; }
	50%  { bottom: 50px; }
	100% { bottom: 80px; }
}

/*----------------------------------------------------------------------------*/
/*#PARTNERS (HOME)*/
/*----------------------------------------------------------------------------*/
.partners-section .partner-logo--wrapper {
	padding-left: 20px;
	padding-right: 20px;
}
.partners-section .partner-logo img {
	max-height: 180px;
	width: auto;
}

/*----------------------------------------------------------------------------*/
/*#TEAM*/
/*----------------------------------------------------------------------------*/
.member-block .member__image {
	position: sticky;
	top: 180px;
}
/*----------------------------------------------------------------------------*/
/*#SINGLE PROJECT*/
/*----------------------------------------------------------------------------*/
.single-projects__page .entry-content {
    font-family: 'Univers LT 57 Condensed',sans-serif;
}
.single-projects__page .wp-block-spacer {
    height: 140px!important;
}

/*----------------------------------------------------------------------------*/
/*#FOOTER WIDGET*/
/*----------------------------------------------------------------------------*/
body:not(.home):not(.contact__page) #text-2,
body:not(.home):not(.contact__page) #text-3,
body:not(.home):not(.contact__page) #text-4,
body:not(.home):not(.contact__page) .footer-widgets-2 {
	display: none;
}
.footer-inner {
    max-width: 1570px;
    margin-left: auto;
}
.footer-widgets {
    background-color: #fff;
    padding: 60px 0;
    color: #000;
    position: relative;
    z-index: 2;
}
.contact__page .footer-widgets {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 300px 0 60px 0;
}
.footer-widgets .wrap {
    display: flex;
    align-items: center;
    margin-left: -30px;
    margin-right: -30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-widgets a {
/*     text-shadow: 0px 0px 0px rgb(0 0 0); */
	transition: .3s ease-in-out;
}
.footer-widgets a:hover {
/*    	text-shadow: 0px 0px 5px rgb(0 0 0); */
	color: #717171;
}
.footer-widgets .widget-title {
    font-size: 35px;
    margin-bottom: 35px;
}
.footer-widgets .footer-widgets-1 .widget_text {
    font-size: 30px;
}
.footer-widgets .footer-widgets-1,
.footer-widgets .footer-widgets-2 {
    padding-left: 30px;
    padding-right: 30px;
    color: #000;
}
.footer-widgets .footer-widgets-1 {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-widgets .footer-widgets-2 {
    -webkit-box-flex: 0;
	-ms-flex: 0 0 41.666667%;
	max-width: 41.666667%;
    flex: 0 0 41.666667%;
    margin-left: auto;
}
.footer-widgets .footer-widgets-1 .widget_text#text-3,
.footer-widgets .footer-widgets-1 .widget_text#text-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-widgets .footer-widgets-1 .widget_text#text-6,
.footer-widgets .footer-widgets-1 .widget_nav_menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-widgets .footer-widgets-1 .widget_text#text-4 {
    padding-left: 20px;
    padding-right: 20px;
}
.footer-widgets .footer-widgets-1 .social-media-links {
    display: flex;
    margin-bottom: 0;
    margin-top: 100px;
}
.footer-widgets .footer-widgets-1 .social-media-links .social-item {
    font-size: 50px;
}
.footer-widgets .footer-widgets-1 .social-media-links .social-item:not(:last-child) {
    margin-right: 30px;
}
.footer-widgets .footer-widgets-1 .widget_nav_menu .menu {
    display: flex;
    margin-bottom: 0;
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
}
.footer-widgets .footer-widgets-1 .widget_nav_menu .menu li {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
	font-size: 30px;
}
.footer-widgets .footer-widgets-1 .widget_nav_menu .menu li:not(:last-child) {
    border-right: 2px solid #000;
}
.footer-widgets .footer-widgets-2 .widget_media_image{
    overflow: hidden;
}
.footer-widgets .footer-widgets-2 .widget_media_image img{
	transition: .4s ease-in-out;
    width: 100%;
    height: auto;
}
.footer-widgets .footer-widgets-2 .widget_media_image:hover img {
	transform: scale(1.08)
}

/*----------------------------------------------------------------------------*/
/*#PAGINATION*/
/*----------------------------------------------------------------------------*/

.pagination ul{
    margin-bottom: 0;
}
.pagination ul li {
    margin-bottom: 0;
    line-height: 1;
    position: relative;
    text-align: center;
    font-size: 35px;
}
.pagination ul li:not(:first-child) {
    margin-left: 10px;
}
.pagination ul li .pagination-dot {
    padding: 0 10px;
}
.pagination ul li .page-numbers {
    line-height: 1;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    color: #221e20;
    transition: .3s ease-in-out;
}
.pagination ul li .page-numbers.current {
    background-color: #000;
    color: #fff;
}
.pagination ul li .page-numbers:hover {
    background-color: #000;
    color: #fff;
}
.pagination ul li .page-numbers.dots:hover {
    background-color: #fff;
    color: #221e20;
}
.pagination ul li .page-numbers.next,
.pagination ul li .page-numbers.prev {
    width: auto;
    padding: 0 10px;
}

.mobile-pagination a {
    line-height: 1;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #000;
    color: #fff;
    transition: .3s ease-in-out;
}

/*----------------------------------------------------------------------------*/
/*# 404 PAGE
/*----------------------------------------------------------------------------*/
/* body.error404.wp-custom-logo .site-container .title-area img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter')!important;
    -webkit-filter: brightness(0) invert(1)!important;
    filter: brightness(0) invert(1)!important;
} */
body.error404 .site-container {
    max-width: 100%;
    padding: 0;
}
.error-section {
    min-height: 100vh;
    padding: 250px 0;
}
.error-section .error-title {
    font-size: 150px;
}
.error-section a {
    text-decoration: underline;
}

/*----------------------------------------------------------------------------*/
/*#RESPONSIVE STYLE*/
/*----------------------------------------------------------------------------*/

@media (max-width: 1199px) {
    [class^='container'] {
        padding-left: 30px;
        padding-right: 30px;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row [class*='col'] {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row.gutters-lg {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row.gutters-lg [class*='col'] {
        padding-left: 15px;
        padding-right: 15px;
    }
    body {
        font-size: 25px;
    }
    h1 {
        font-size: 90px;     
        margin-bottom: 70px;
    }
    h2 {
        font-size: 60px;
        margin-bottom: 55px;
    }
    h3 { 
        font-size: 40px;
        margin-bottom: 45px;
    }
    h4 {
        font-size: 30px; 
        margin-bottom: 30px;
    }
    h5 {
        font-size: 25px;  
        margin-bottom: 30px;
    }
    h6 {
        font-size: 20px; 
        margin-bottom: 30px;
    }
    ul, ol {
        margin-bottom: 20px;
    }
    p, a, ul li, ol li {
        margin-bottom: 20px;
    }
    .txt--xs { font-size: 25px;  }
    .txt--sm { font-size: 30px;  }
    .txt--md { font-size: 40px;  }
    .txt--lg { font-size: 60px;  }
    .txt--xl { font-size: 90px;  }
    .site-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    body.home .site-container {
        padding-bottom: 100px;
    }
    .site-inner {
        padding-top: 150px;
        padding-bottom: 100px;
    }
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .section-title {
        font-size: 60px;
        margin-bottom: 55px;
    }
    .section-subtitle { 
        font-size: 40px;
        margin-bottom: 45px;
    }
    .sidebar-scroller {
        display: none;
    }
    .title--hover {
        padding-right: 50px;
    }
	.custom-entry-article-margin:not(.member-project):first-child {
		padding-top: 150px;
	}
	.loader-holder .loader {
		max-width: 85px;
	}
    .site-header {
        padding: 30px 0;
    }
    .site-header.active {
        padding: 20px 0;
    }
    .wp-custom-logo .site-container .title-area {
        max-width: 85px;
    }
    .wp-custom-logo .site-container .site-header.active .title-area {
        max-width: 85px;
    }
    .menu-toggle {
        height: 30px;
        width: 50px;
        margin-left: 30px;
    }
    .menu-toggle span {
        height: 5px;
        width: 50px;
    }
    .menu-triggered .menu-toggle span:nth-child(1) {
        top: calc(50% - 2px);
    }
    .menu-primary li {
        font-size: 3.5rem;
    }
    .hero-section {
        margin-bottom: 150px;
    }
    .hero-slider .hero-slide .hero-slide_text {
        font-size: 90px;
        padding-bottom: 0;
        text-align: center;
    }
    .hero-slider .hero-slide .scroll-indicator {
        font-size: 35px;
        bottom: 40px;
    }
    @-webkit-keyframes upAndDownScrollIndicator {
        0%   { bottom: 40px; }
        50%  { bottom: 20px; }
        100% { bottom: 40px; }
    }
    @keyframes upAndDownScrollIndicator {
        0%   { bottom: 40px; }
        50%  { bottom: 20px; }
        100% { bottom: 40px; }
    }
	.partners-section .partner-logo {
		max-width: 250px;
	}
	.partners-section .partner-logo img {
		max-height: 120px;
	}
    .footer-widgets .wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
    .footer-widgets .footer-widgets-1, 
    .footer-widgets .footer-widgets-2 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-6,
	.footer-widgets .footer-widgets-1 .widget_text#text-4,
    .footer-widgets .footer-widgets-1 .widget_nav_menu {
        padding-left: 0;
        padding-right: 0;
    }
	.footer-widgets .footer-widgets-1 .social-media-links {
		margin-top: 60px;
	}
	.footer-widgets .footer-widgets-1 .social-media-links .social-item {
		font-size: 40px;
	}
    .footer-widgets .footer-widgets-1 .widget_text#text-3, 
    .footer-widgets .footer-widgets-1 .widget_text#text-2 {
        padding-left: 0;
        padding-right: 0;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-2 {
        padding-right: 15px;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-3 {
        padding-left: 15px;
    }
    /* .footer-widgets .footer-widgets-1 .widget_text#text-6, .footer-widgets .footer-widgets-1 .widget_nav_menu {
        padding-left: 20px;
        padding-right: 20px;
    } */
	.footer-widgets .widget-title {
		font-size: 25px;
		margin-bottom: 30px;
	}
    .footer-widgets .footer-widgets-1 .widget_text {
        font-size: 20px;
    }
    .footer-widgets .footer-widgets-1 .widget_nav_menu .menu li {
        font-size: 20px;
    }
    .contact__page .footer-widgets {
        padding: 150px 0 60px 0;
    }
    .custom-entry-article-margin:not(:first-of-type) {
        padding-top: 150px;
    }
    .error-section {
        min-height: 100vh;
        padding: 130px 0;
    }
    .single-projects__page .wp-block-spacer {
        height: 90px!important;
    }
}
@media (max-width: 991px)  {  
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br,
    .section-title br,
    .section-subtitle br {
        display: none;
    }
    .title--hover {
        padding-right: 45px;
    }
    .menu-primary li {
        font-size: 3rem;
    }
    .hero-slider .hero-slide {
        padding: 100px 0;
    }
    .hero-slider .hero-slide .hero-slide_text {
        font-size: 65px;
    }
	.footer-widgets .footer-widgets-1 .social-media-links {
		margin-top: 50px;
	}
	.footer-widgets .footer-widgets-1 .social-media-links .social-item {
		font-size: 35px;
	}
/*     .footer-widgets .footer-widgets-1 .widget_nav_menu .menu {
        margin-top: 45px;
    } */
    .footer-widgets .footer-widgets-1 .widget_text {
        font-size: 18px;
    }
    .footer-widgets .footer-widgets-1 .widget_nav_menu .menu li {
        font-size: 18px;
    }
    .custom-entry-article-margin:not(:first-of-type) {
		padding-top: 120px;
	}
}
@media (max-width: 767px)  {
    [class^='container'] {
        padding-left: 20px;
        padding-right: 20px;
    }
    body {
        font-size: 20px;
    }
    h1 {
        font-size: 55px;     
        margin-bottom: 50px;
    }
    h2 {
        font-size: 45px;
        margin-bottom: 45px;
    }
    h3 { 
        font-size: 30px;
        margin-bottom: 30px;
    }
    h4 {
        font-size: 25px; 
        margin-bottom: 30px;
    }
    h5 {
        font-size: 20px;  
        margin-bottom: 30px;
    }
    h6 {
        font-size: 18px; 
        margin-bottom: 30px;
    }
    ul, ol {
        margin-bottom: 20px;
    }
    p, a, ul li, ol li {
        margin-bottom: 20px;
    }
    .txt--xs { font-size: 20px;  }
    .txt--sm { font-size: 25px;  }
    .txt--md { font-size: 30px;  }
    .txt--lg { font-size: 45px;  }
    .txt--xl { font-size: 55px;  }

    .site-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 45px;
        margin-bottom: 45px;
    }
    .section-subtitle { 
        font-size: 30px;
        margin-bottom: 30px;
    }
    .title--hover {
        padding-right: 40px;
    }
    .back-top {
        font-size: 45px;
        bottom: 10px;
        right: 10px;
    }
    .menu-primary li {
        font-size: 2.8rem;
    }
    .wp-block-column:not(:last-child) {
        margin-bottom: 90px!important;
        flex-basis: 100%!important;
    }
    .wp-block-column:not(:only-child) {
        flex-basis: 100%!important;
    }
    .hero-section {
        margin-bottom: 120px;
    }
    .hero-slider .hero-slide .hero-slide_text {
        font-size: 50px;
    }
/*     .footer-inner {
        text-align: center;
    } */
    .footer-widgets .footer-widgets-1, 
    .footer-widgets .footer-widgets-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    } 
    .footer-widgets .footer-widgets-2 {
        margin-top: 50px;
    }
    .footer-widgets .footer-widgets-1 .widget_nav_menu .menu {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }
    .footer-widgets .footer-widgets-1 .widget_nav_menu .menu li:not(:last-child) {
        border-right: 0;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-3, 
    .footer-widgets .footer-widgets-1 .widget_text#text-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-2 {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-3 {
        padding-left: 0;
    }
    .footer-widgets .footer-widgets-1 .widget_text#text-3 a, 
    .footer-widgets .footer-widgets-1 .widget_text#text-2 a {
        padding: 3px 0;
        display: inline-block;
        margin: 0;
    }
	.footer-widgets .widget-title {
		font-size: 20px;
		margin-bottom: 30px;
	}
    .footer-widgets .footer-widgets-1 .widget_text {
        font-size: 22px;
    }
/*     .footer-widgets .footer-widgets-1 .widget_nav_menu .menu {
        margin-top: 30px;
    } */
    .footer-widgets .footer-widgets-1 .widget_nav_menu .menu li {
        font-size: 22px;
        padding: 3px 0;
    }
    .custom-entry-article-margin:not(:first-of-type) {
		padding-top: 90px;
	}
    .single-projects__page .wp-block-spacer {
        height: 40px!important;
    }
}
@media (max-width: 575px)  {}

@media (min-width: 576px) {
    .mb-sm--0   { margin-bottom:  0!important; }
    .mb-sm--140 { margin-bottom: 140px!important; }
    .mb-sm--90  { margin-bottom: 90px!important; }
    .mb-sm--80  { margin-bottom: 80px!important; }
    .mb-sm--70  { margin-bottom: 70px!important; }
    .mb-sm--50  { margin-bottom: 50px!important; }
    .mb-sm--45  { margin-bottom: 45px!important; }
    .mb-sm--40  { margin-bottom: 40px!important; }
    .mb-sm--35  { margin-bottom: 35px!important; }
    .mb-sm--30  { margin-bottom: 30px!important; }
    .mb-sm--20  { margin-bottom: 20px!important; }

    .mt-sm--0   { margin-top:  0!important; }
    .mt-sm--140 { margin-top: 140px!important; }
    .mt-sm--90  { margin-top: 90px!important; }
    .mt-sm--80  { margin-top: 80px!important; }
    .mt-sm--70  { margin-top: 70px!important; }
    .mt-sm--50  { margin-top: 50px!important; }
    .mt-sm--45  { margin-top: 45px!important; }
    .mt-sm--40  { margin-top: 40px!important; }
    .mt-sm--35  { margin-top: 35px!important; }
    .mt-sm--30  { margin-top: 30px!important; }
    .mt-sm--20  { margin-top: 20px!important; }
}
@media (min-width: 768px) {
    .mb-md--140 { margin-bottom: 140px!important; }
    .mb-md--90  { margin-bottom: 90px!important; }
    .mb-md--80  { margin-bottom: 80px!important; }
    .mb-md--70  { margin-bottom: 70px!important; }
    .mb-md--50  { margin-bottom: 50px!important; }
    .mb-md--45  { margin-bottom: 45px!important; }
    .mb-md--40  { margin-bottom: 40px!important; }
    .mb-md--35  { margin-bottom: 35px!important; }
    .mb-md--30  { margin-bottom: 30px!important; }
    .mb-md--20  { margin-bottom: 20px!important; }
    .mb-md--0   { margin-bottom:  0!important; }

    .mt-md--0   { margin-top:  0!important; }
    .mt-md--140 { margin-top: 140px!important; }
    .mt-md--90  { margin-top: 90px!important; }
    .mt-md--80  { margin-top: 80px!important; }
    .mt-md--70  { margin-top: 70px!important; }
    .mt-md--50  { margin-top: 50px!important; }
    .mt-md--45  { margin-top: 45px!important; }
    .mt-md--40  { margin-top: 40px!important; }
    .mt-md--35  { margin-top: 35px!important; }
    .mt-md--30  { margin-top: 30px!important; }
    .mt-md--20  { margin-top: 20px!important; }
    .mb-md--0   { margin-bottom:  0!important; }
}
@media (min-width: 992px) {
    .mb-lg--0   { margin-bottom:  0!important; }
    .mb-lg--140 { margin-bottom: 140px!important; }
    .mb-lg--90  { margin-bottom: 90px!important; }
    .mb-lg--80  { margin-bottom: 80px!important; }
    .mb-lg--70  { margin-bottom: 70px!important; }
    .mb-lg--50  { margin-bottom: 50px!important; }
    .mb-lg--45  { margin-bottom: 45px!important; }
    .mb-lg--40  { margin-bottom: 40px!important; }
    .mb-lg--35  { margin-bottom: 35px!important; }
    .mb-lg--30  { margin-bottom: 30px!important; }
    .mb-lg--20  { margin-bottom: 20px!important; }

    .mt-lg--0   { margin-top:  0!important; }
    .mt-lg--140 { margin-top: 140px!important; }
    .mt-lg--90  { margin-top: 90px!important; }
    .mt-lg--80  { margin-top: 80px!important; }
    .mt-lg--70  { margin-top: 70px!important; }
    .mt-lg--50  { margin-top: 50px!important; }
    .mt-lg--45  { margin-top: 45px!important; }
    .mt-lg--40  { margin-top: 40px!important; }
    .mt-lg--35  { margin-top: 35px!important; }
    .mt-lg--30  { margin-top: 30px!important; }
    .mt-lg--20  { margin-top: 20px!important; }
}
@media (min-width: 1200px) {
    [class^='container'] {
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .container {
        max-width: 90.5vw;
    }
    .row {
        margin-left: -1vw;
        margin-right: -1vw;
    }
    .row [class*='col'] {
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .row.gutters-lg {
        margin-left: -3.5vw;
        margin-right: -3.5vw;
    }
    .row.gutters-lg [class*='col'] {
        padding-left: 3.5vw;
        padding-right: 3.5vw;
    }
    body {
        font-size: 2.1vw;
    }
    h1 {
        font-size: 6.5vw;
        margin-bottom: 4.5vw;
    }
    h2 {
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }
    h3 {
        font-size: 3vw;
        margin-bottom: 3.6vw;
    }
    h4 {
        font-size: 2.3vw;
        margin-bottom: 2.3vw;
    }
    h5 {
        font-size: 1.85vw;
        margin-bottom: 1.85vw;
    }
    h6 {
        font-size: 1.6vw;
        margin-bottom: 1.85vw;
    }
    .txt--xs { font-size: 1.85vw; }
    .txt--sm { font-size: 2.3vw;  }
    .txt--md { font-size: 3vw;    }
    .txt--lg { font-size: 4.5vw;  }
    .txt--xl { font-size: 6.5vw;  }
    p,
    a,
    ul,
    ol,
    ul li,
    ol li {
        margin-bottom: 1.85vw;
    }
    .mb--140 { margin-bottom: 7.2vw;  }
    .mb--90  { margin-bottom: 4.5vw;  }
    .mb--80  { margin-bottom: 4vw;    }
    .mb--70  { margin-bottom: 3.6vw;  }
    .mb--50  { margin-bottom: 2.6vw;  }
    .mb--45  { margin-bottom: 2.3vw;  }
    .mb--40  { margin-bottom: 2.1vw;  }
    .mb--35  { margin-bottom: 1.85vw; }
    .mb--30  { margin-bottom: 1.6vw;  }
    .mb--20  { margin-bottom: 1.1vw;  }

    .mt--140 { margin-top: 7.2vw;  }
    .mt--90  { margin-top: 4.5vw;  }
    .mt--80  { margin-top: 4vw;    }
    .mt--70  { margin-top: 3.6vw;  }
    .mt--50  { margin-top: 2.6vw;  }
    .mt--45  { margin-top: 2.3vw;  }
    .mt--40  { margin-top: 2.1vw;  }
    .mt--35  { margin-top: 1.85vw; }
    .mt--30  { margin-top: 1.6vw;  }
    .mt--20  { margin-top: 1.1vw;  }

    .mb-xl--140 { margin-bottom: 7.2vw!important;  }
    .mb-xl--90  { margin-bottom: 4.5vw!important;  }
    .mb-xl--80  { margin-bottom: 4vw!important;    }
    .mb-xl--70  { margin-bottom: 3.6vw!important;  }
    .mb-xl--50  { margin-bottom: 2.6vw!important;  }
    .mb-xl--45  { margin-bottom: 2.3vw!important;  }
    .mb-xl--40  { margin-bottom: 2.1vw!important;  }
    .mb-xl--35  { margin-bottom: 1.85vw!important; }
    .mb-xl--30  { margin-bottom: 1.6vw!important;  }
    .mb-xl--20  { margin-bottom: 1.1vw!important;  }
    .mb-xl--0  { margin-bottom: 0!important;  }

    .mt-xl--140 { margin-top: 7.2vw!important;  }
    .mt-xl--90  { margin-top: 4.5vw!important;  }
    .mt-xl--80  { margin-top: 4vw!important;    }
    .mt-xl--70  { margin-top: 3.6vw!important;  }
    .mt-xl--50  { margin-top: 2.6vw!important;  }
    .mt-xl--45  { margin-top: 2.3vw!important;  }
    .mt-xl--40  { margin-top: 2.1vw!important;  }
    .mt-xl--35  { margin-top: 1.85vw!important; }
    .mt-xl--30  { margin-top: 1.6vw!important;  }
    .mt-xl--20  { margin-top: 1.1vw!important;  }
    .mt-xl--0  { margin-top: 0!important;  }

    .site-container {
        max-width: 90.5vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }
    body.home .site-container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 10.5vw;
    }
    .inner-container { 
        max-width: 73vw;
    }
    .site-inner {
        padding-top: 18vw;
        padding-bottom: 10.5vw;
    }
	body.post-type-archive:not(.projects__page) .site-inner {
		padding-top: 0;
	}
    .site-inner main.content {
        max-width: 73vw;
    }
    .section-title { 
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }
    .section-subtitle { 
        font-size: 3vw;
        margin-bottom: 3.6vw;
    }
    .section-padding {
        padding-top: 7.7vw;
        padding-bottom: 7.7vw;
    }
    .wp-block-group {
        max-width: 65.5vw;
        margin-left: auto;
    }
    .single-projects__page .wp-block-spacer {
        height: 7.2vw!important;
    }
    .alignfull {
        margin: 0 calc(50% - 50vw);
        max-width: 100vw;
        width: 100vw;
    }
    .alignwide {
        max-width: 100%;
    }
	.loader-holder .loader {
		max-width: 6.85vw;
	}
    .wp-block-spacer[style="height:250px"] {
        height: 12.7vw!important;
    }
	.title--hover {
		padding-right: 3.6vw;
	}
	.title--hover:hover .double-arrow-icon {
		-webkit-transform: translate(1vw, -50%);
		transform: translate(1vw, -50%);
	}
	.custom-entry-article-margin:not(.member-project):first-child {
		padding-top: 18vw;
	}
	.custom-entry-article-margin:not(:first-of-type) {
		padding-top: 12.7vw;
	}
    .sidebar-scroller {
        left: 6vw;
    }
    .sidebar-scroller .scroll-number {
        margin-right: 1vw;
    }
    .sidebar-scroller .scroll-top-bar {
        margin-right: 1vw;
    }
    .sidebar-scroller .scroll-track{
        height: 0.3vw;
    }
	.back-top {
		font-size: 2.8vw;
		padding: 0.25vw;
		bottom: 1vw;
		right: 1vw;
	}
    .site-header {
        padding: 5vw 0;
    }
    .site-header.active {
        padding: 1.6vw 0;
    }
    .site-header > .wrap {
        max-width: 90.5vw;
        padding-left: 1vw;
        padding-right: 1vw
    }
    .wp-custom-logo .site-container .title-area {
        max-width: 6.85vw;
    }
    .wp-custom-logo .site-container .site-header.active .title-area {
        max-width: 5vw;
    }
    .menu-toggle {
        height: 35px;
        width: 4.5vw;
    }
    .menu-toggle span {
        height: 6px;
        width: 4.5vw;
    }
    .menu-primary li {
        font-size: 3.6vw;
        padding: 0.6vw 0;
    }
    .hero-section {
        margin-bottom: 12.7vw;
    }
    .hero-slider .hero-slide .hero-slide_text {
        font-size: 6.5vw;
        padding-bottom: 10.5vw;
    }
    .hero-slider .hero-slide .scroll-indicator {
        font-size: 3.2vw;
    }
	.partners-section .partner-logo--wrapper {
		padding-left: 1vw;
		padding-right: 1vw;
	}
	.partners-section .partner-logo img {
		max-height: 9.4vw;
	}
    .footer-inner {
        max-width: 82vw;
    }
	.footer-widgets {
		padding: 3vw 0;
	}
	.contact__page .footer-widgets {
		padding: 15vw 0 3vw 0;
	}
	.footer-widgets .wrap {
		margin-left: -1.6vw;
		margin-right: -1.6vw;
	}
	.footer-widgets .widget-title {
		font-size: 1.85vw;
        margin-bottom: 1.85vw;
	}
	.footer-widgets .footer-widgets-1 .widget_text {
		font-size: 1.6vw;
	}
	.footer-widgets .footer-widgets-1,
	.footer-widgets .footer-widgets-2 {
		padding-left: 1.6vw;
		padding-right: 1.6vw;
	}
	.footer-widgets .footer-widgets-1 .widget_text#text-3,
	.footer-widgets .footer-widgets-1 .widget_text#text-2 {
		padding-left: 1vw;
		padding-right: 1vw;
	}
	.footer-widgets .footer-widgets-1 .widget_text#text-6,
	.footer-widgets .footer-widgets-1 .widget_text#text-4,
	.footer-widgets .footer-widgets-1 .widget_nav_menu {
		padding-left: 1vw;
		padding-right: 1vw;
	}
	.footer-widgets .footer-widgets-1 .social-media-links {
		margin-top: 5vw;
	}
	.footer-widgets .footer-widgets-1 .social-media-links .social-item {
		font-size: 2.6vw;
	}
	.footer-widgets .footer-widgets-1 .social-media-links .social-item:not(:last-child) {
		margin-right: 1.5vw;
	}
	.footer-widgets .footer-widgets-1 .widget_nav_menu .menu {
		margin-top: 1vw;
		margin-left: -1vw;
		margin-right: -1vw;
	}
	.footer-widgets .footer-widgets-1 .widget_nav_menu .menu li {
		padding-left: 1vw;
		padding-right: 1vw;
		font-size: 1.6vw;
	}
    .pagination ul li {
        font-size: 1.85vw;
    }
    .pagination ul li:not(:first-child) {
        margin-left: 0.5vw;
    }
    .pagination ul li .pagination-dot {
        padding: 0 0.5vw;
    }
    .pagination ul li .page-numbers {
        height: 2.8vw;
        width: 2.8vw;
    }
    .pagination ul li .page-numbers.next,
    .pagination ul li .page-numbers.prev {
        padding: 0 0.5vw;
    }
    .mobile-pagination a {
        padding: 0.5vw;
    }
    .error-section {
        padding: 12.2vw 0;
    }
	.member-block .member__image {
		top: 9.2vw;
	}
}
@media (min-width: 1500px) {
	.menu-toggle {
        height: 40px;
    }
    .menu-toggle span {
        height: 7px;
    }
}

@media (max-height: 580px){
    .menu-primary {
        padding: 130px 20px 50px;
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
}
/*media query for IE 10 and above*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {}
