/* --------- Font connection --------- */
@font-face {
	font-family: 'Comfortaa';
	src: url('../fonts/Comfortaa-Light.eot'); /* IE9 Compat Modes */
	src: url('../fonts/Comfortaa-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('../fonts/Comfortaa-Light.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/Comfortaa-Light.woff') format('woff'), /* Pretty Modern Browsers */
		url('../fonts/Comfortaa-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('../fonts/Comfortaa-Light.svg#svgFontName') format('svg'); /* Legacy iOS */
	font-weight: 300;
}

@font-face {
	font-family: 'Comfortaa';
	src: url('../fonts/Comfortaa-Regular.eot'); /* IE9 Compat Modes */
	src: url('../fonts/Comfortaa-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('../fonts/Comfortaa-Regular.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/Comfortaa-Regular.woff') format('woff'), /* Pretty Modern Browsers */
		url('../fonts/Comfortaa-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('../fonts/Comfortaa-Regular.svg#svgFontName') format('svg'); /* Legacy iOS */
	font-weight: 400;
}

@font-face {
	font-family: 'Comfortaa';
	src: url('../fonts/Comfortaa-Bold.eot'); /* IE9 Compat Modes */
	src: url('../fonts/Comfortaa-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('../fonts/Comfortaa-Bold.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/Comfortaa-Bold.woff') format('woff'), /* Pretty Modern Browsers */
		url('../fonts/Comfortaa-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
		url('../fonts/Comfortaa-Bold.svg#svgFontName') format('svg'); /* Legacy iOS */
	font-weight: 700;
}

/* --------- Specification --------- */

body {
	font: 400 18px/1.4em 'Comfortaa', sans-serif;
	letter-spacing: 0.02em;
	color: #141849;
}

.container {
	width: 1330px;
	margin: 0 auto;
}

body, p, div, ul, li, a, h2, h2, h3, h4, span, button, input {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, li{
	list-style: none;
}

a, a:hover, a:active {
	text-decoration: none;
}

a, button {
	transition: all 0.2s ease;
}

img {
	max-width: 100%;
}

input, input:hover, input:focus, input:active, button, button:hover, button:focus, button:active {
    outline: none;
    border: none;
}

.d-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.justify-content-between {
	justify-content: space-between;
}

.justify-content-around {
	justify-content: space-around;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

.flex-wrap {
	flex-wrap: wrap;
}

/* -------- Header ---------- */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: auto;
    z-index: 30;
    opacity: 1;
    visibility: visible;
    transition: opacity 800ms cubic-bezier(.19,1,.22,1),-webkit-transform .1s linear,visibility 800ms steps(1,start);
    transition: opacity 800ms cubic-bezier(.19,1,.22,1),transform .1s linear,visibility 800ms steps(1,start)
}

html:not(.is-phone):not(.is-tablet) .menu-icon {
    overflow: hidden
}

.menu-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 40px 35px 0 0;
    padding: 17px 14px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    border-radius: 50%;
    transition: opacity 1.2s cubic-bezier(.19,1,.22,1),margin .6s cubic-bezier(.19,1,.22,1)
}

.menu-icon:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #979693;
    transition: -webkit-transform .8s cubic-bezier(.19,1,.22,1);
    transition: transform .8s cubic-bezier(.19,1,.22,1)
}

.menu-icon__drawer,.menu-icon__drawer__inner {
    transition: .4s -webkit-transform cubic-bezier(.19,1,.22,1);
    transition: .4s transform cubic-bezier(.19,1,.22,1);
    display: inline-block
}

.menu-icon__drawer {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    white-space: nowrap;
    border-radius: 45px;
    z-index: -1
}

.menu-icon__drawer__inner {
    background: rgba(255,255,255,.30);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 45px;
    padding: 0 60px 0 22px;
    color: #fbf9f6;
    font-family: 'Comfortaa',sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 3.4rem;
}

.menu-icon__drawer__inner span {
    opacity: 0;
    transition: 1s -webkit-transform cubic-bezier(.19,1,.22,1),.4s opacity ease;
    transition: 1s transform cubic-bezier(.19,1,.22,1),.4s opacity ease;
    -webkit-transform: translateX(40px);
    transform: translateX(40px)
}

.menu-icon #hamburger {
    transition: .4s -webkit-transform cubic-bezier(.19,1,.22,1);
    transition: .4s transform cubic-bezier(.19,1,.22,1)
}

.menu-icon #hamburger>div {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 3px;
    overflow: hidden;
    transition: -webkit-transform .8s cubic-bezier(.19,1,.22,1),opacity .4s cubic-bezier(.19,1,.22,1);
    transition: transform .8s cubic-bezier(.19,1,.22,1),opacity .4s cubic-bezier(.19,1,.22,1)
}

.menu-icon #hamburger>div:after,.menu-icon #hamburger>div:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #171719;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.19,1,.22,1)
}

.menu-icon #hamburger>div:before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.menu-icon #hamburger>div:after {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

.menu-icon #hamburger>div:first-child:before {
    transition-duration: .8s;
    transition-delay: 0s
}

.menu-icon #hamburger>div:first-child:after,.menu-icon #hamburger>div:nth-child(2):before {
    transition-duration: .9s;
    transition-delay: .1s
}

.menu-icon #hamburger>div:nth-child(2):after {
    transition-duration: 1s;
    transition-delay: .2s
}

.menu-icon #hamburger>div:last-child:before {
    transition-duration: .9s;
    transition-delay: .1s
}

.menu-icon #hamburger>div:last-child:after {
    transition-duration: 1.1s;
    transition-delay: .3s
}

html:not(.is-phone):not(.is-tablet) .menu-icon:hover {
    overflow: visible
}

html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu,html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu .menu-icon__drawer__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu .menu-icon__drawer__inner span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close,html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close .menu-icon__drawer__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

html:not(.is-phone):not(.is-tablet) body.is-menu .menu-icon:hover .menu-icon__drawer.close .menu-icon__drawer__inner span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

html:not(.is-phone):not(.is-tablet) .menu-icon:hover #hamburger {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.burger-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	transition: all 1s ease-in-out 0s;
	display: none;
}

.menu-container{
	display: flex;
	width: inherit;
	height: inherit;
}

.menu-wrapper {
	background: transparent;
	position: relative;
	transition: all 1s ease-in-out 0s;
	width: 33.3%;
	height: 100%;
}

.menu-wrapper:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #171719;
	transition: all 1s ease-in-out 0s;
	z-index: -1;
}

.menu-wrapper:nth-child(1):after {
	background-color: #a66048;
}

.menu-wrapper:nth-child(2):after {
	background-color: #d6ad54;
}

.menu-wrapper:nth-child(3):after {
	background-color: #589c9d;
}

.menu-wrapper:nth-child(1):hover:after {
	transition: all 0.1s ease-in-out 0s;
	background-color: #965b47;
}

.menu-wrapper:nth-child(2):hover:after {
	transition: all 0.1s ease-in-out 0s;
	background-color: #bf9844;
}

.menu-wrapper:nth-child(3):hover:after {
	transition: all 0.1s ease-in-out 0s;
	background-color: #4c8787;
}

.menu-container.active .menu-wrapper:after {
	transition: all 1s ease-in-out 0s;
	width: 100%;
}

.menu-list {
	position: absolute;
	bottom: 15%;
    left: 11%;
	color: #fff;
}

.menu-list li {
	padding: 18px 2px;
	position: relative;
	transition: all 0.3s ease-in-out 0s;
	overflow-y: hidden;
	/*min-width: 500px;*/
    height: 75px;
}

.menu-list li:hover {
	padding-left: 40px;
}

.menu-list li:before {
	content: '';
	width: 0px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 1px;
	transition: all 0.5s ease-in-out 0s;
}

.menu-list li:hover:before {
	width: 30px;
}

.menu-list a {
	color: #fff;
    font-size: 40px;
    padding: 23px 2px;
    font-weight: 300;
    /*position: absolute;
    top: -129%; 
    left: 40px;*/
    display: block;
    transition: all 0.7s ease-in-out 0.7s;
    opacity: 0;
    margin-top: -95px;
}

.menu-container.active .menu-list a {
	opacity: 1;
	margin-top: -18px;
}

/*.menu-list li:hover a {
	transition: all 0.3s ease-in-out 0s;
	left: 50px;
}*/

.main-logo {
    margin: 44px 0 0 64px;
    max-width: 385px;
    position: relative;
}

/*.main-logo:before {
    content: url(../img/kg-white.png);
    display: block;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}*/

.round {
    position: fixed;
    bottom: 2.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 4;
    transition: .4s -webkit-transform cubic-bezier(.19,1,.22,1),.6s opacity cubic-bezier(.19,1,.22,1);
    transition: .4s transform cubic-bezier(.19,1,.22,1),.6s opacity cubic-bezier(.19,1,.22,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    overflow: hidden
}

.round__icons {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: .4s background ease
}

.round-prev {
    left: 2.188rem
}

.round-next {
    right: 2.188rem
}

.round-back {
    left: 50%;
    margin-left: -22.5px
}

.round-back svg {
    width: 14px!important;
    height: 15px!important
}

.round-back .js-overview,.round-back .round__icons__arrows {
    transition: .8s -webkit-transform cubic-bezier(1,0,0,1);
    transition: .8s transform cubic-bezier(1,0,0,1)
}

.round-back:not(.no-hover) .round__icons__arrows {
    -webkit-transform: translateY(90px);
    transform: translateY(90px)
}

.round:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    background: #000;
    opacity: .22;
    transition: .4s opacity cubic-bezier(.19,1,.22,1)
}

.round__drawer,.round__drawer__inner {
    transition: .4s -webkit-transform cubic-bezier(.19,1,.22,1),.4s background ease;
    transition: .4s transform cubic-bezier(.19,1,.22,1),.4s background ease;
    display: inline-block
}

.round__drawer {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    white-space: nowrap;
    border-radius: 45px
}

.round__drawer__inner {
    background: rgba(0,0,0,.22);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 45px;
    padding: 0 55px 0 22px;
    color: #fbf9f6;
    font-family: 'Comfortaa', sans-serif;;
    font-weight: 700;
    font-size: 1.0rem;
    line-height: 2.813rem;
    letter-spacing: 0.05em;
    text-shadow: 1px -1px 3px #000;
}

.round__drawer__inner span {
    opacity: 0;
    transition: .4s opacity ease
}

.round__drawer.left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    right: auto;
    left: 0
}

.round__drawer.left .round__drawer__inner {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    padding: 0 22px 0 55px
}

.round svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    fill: #fff;
    z-index: 1
}

.round svg.animation-arrow__line {
    width: 16px
}

.round:not(.swiper-button-disabled):not(.no-hover):hover {
    overflow: visible;
}

.is-cases {
    background-color: #1e1e1f;
}

html:not(.is-phone):not(.is-tablet) .round.unfold:not(.swiper-button-disabled).center,html:not(.is-phone):not(.is-tablet) .round:not(.swiper-button-disabled):not(.no-hover):hover.center {
    -webkit-transform: translateX(70px);
    transform: translateX(70px)
}

html:not(.is-phone):not(.is-tablet) .round.unfold:not(.href="#"):before,html:not(.is-phone):not(.is-tablet) .round:not(.swiper-button-disabled):not(.no-hover):hover:before {
    opacity: .7
}

html:not(.is-phone):not(.is-tablet) body.is-contact .round.unfold:not(.swiper-button-disabled) .round__drawer,html:not(.is-phone):not(.is-tablet) body.is-contact .round.unfold:not(.swiper-button-disabled) .round__drawer .round__drawer__inner,html:not(.is-phone):not(.is-tablet) body.is-contact .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer,html:not(.is-phone):not(.is-tablet) body.is-contact .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer .round__drawer__inner,html:not(.is-phone):not(.is-tablet) body.is-culture .round.unfold:not(.swiper-button-disabled) .round__drawer,html:not(.is-phone):not(.is-tablet) body.is-culture .round.unfold:not(.swiper-button-disabled) .round__drawer .round__drawer__inner,html:not(.is-phone):not(.is-tablet) body.is-culture .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer,html:not(.is-phone):not(.is-tablet) body.is-culture .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer .round__drawer__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

html:not(.is-phone):not(.is-tablet) body.is-contact .round.unfold:not(.swiper-button-disabled) .round__drawer .round__drawer__inner span,html:not(.is-phone):not(.is-tablet) body.is-contact .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer .round__drawer__inner span,html:not(.is-phone):not(.is-tablet) body.is-culture .round.unfold:not(.swiper-button-disabled) .round__drawer .round__drawer__inner span,html:not(.is-phone):not(.is-tablet) body.is-culture .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer .round__drawer__inner span {
    opacity: 1;
}

html:not(.is-phone):not(.is-tablet) body.is-cases .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.next),html:not(.is-phone):not(.is-tablet) body.is-cases .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.next) .round__drawer__inner,html:not(.is-phone):not(.is-tablet) body.is-cases .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.next),html:not(.is-phone):not(.is-tablet) body.is-cases .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.next) .round__drawer__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

html:not(.is-phone):not(.is-tablet) body.is-cases .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.next) .round__drawer__inner span,html:not(.is-phone):not(.is-tablet) body.is-cases .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.next) .round__drawer__inner span {
    opacity: 1;
}

html:not(.is-phone):not(.is-tablet) body.is-single .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.more),html:not(.is-phone):not(.is-tablet) body.is-single .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.more) .round__drawer__inner,html:not(.is-phone):not(.is-tablet) body.is-single .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.more),html:not(.is-phone):not(.is-tablet) body.is-single .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.more) .round__drawer__inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

html:not(.is-phone):not(.is-tablet) body.is-single .round.unfold:not(.swiper-button-disabled) .round__drawer:not(.more) .round__drawer__inner span,html:not(.is-phone):not(.is-tablet) body.is-single .round:not(.swiper-button-disabled):not(.no-hover):hover .round__drawer:not(.more) .round__drawer__inner span {
    opacity: 1;
}

html:not(.is-phone):not(.is-tablet) .round-back.no-hover:hover .round__icons,html:not(.is-phone):not(.is-tablet) .round.unfold:hover .round__drawer {
    background: rgba(0,0,0,.5);
}

.item-view {
	background-color: #1e1e1f;
}

.item-view h2,.item-view span {
    transition: -webkit-transform 1s cubic-bezier(.19,1,.22,1);
    transition: transform 1s cubic-bezier(.19,1,.22,1);
}

.item-view .work-details h2 {
    margin-bottom: 25px;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    word-break: keep-all;
    transition: all 0.6s ease-in-out 0s;
    text-shadow: 1px 1px 2px black;
}

.item-view .work-details__excerpt,.item-view .work-details__excerpt__inner {
    transition: 1s -webkit-transform cubic-bezier(.19,1,.22,1);
    transition: 1s transform cubic-bezier(.19,1,.22,1)
}

.item-view .work-details__excerpt {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    overflow: hidden;
    max-width: 400px
}

.item-view .work-details__excerpt__inner {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.item-view .work-details__excerpt__inner p {
    font-family: Graphik,sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.688rem;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: .6s -webkit-transform cubic-bezier(.19,1,.22,1);
    transition: .6s transform cubic-bezier(.19,1,.22,1)
    text-shadow: 1px 1px 2px black;
}

html.is-phone .work-details h2,html.is-tablet .work-details h2 {
    -webkit-transform: translateY(0)!important;
    transform: translateY(0)!important
}

html.is-phone .work-details__excerpt,html.is-tablet .work-details__excerpt {
    display: none
}

html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view .work-details {
	transition: all 0.6s ease-in-out 0s;
}

html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover h2 {
    -webkit-transform: translateY(0)!important;
    transform: translateY(0)!important
    margin-bottom: 25px;
}

html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details {
	padding: 10vh 3.125rem;
}

html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details__client {
    -webkit-transform: translateY(30px);
    transform: translateY(30px)
}

html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details__excerpt,html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details__excerpt p,html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details__excerpt__inner,html:not(.is-phone):not(.is-tablet) body:not(.is-scrolling) .item-view:hover .work-details__excerpt__inner p {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.item-bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    will-change: transform
}

.work-thumbs {
    width: 100%;
    height: 100%
}

.work-thumbs .work-thumbs__inner {
    width: 100vw;
    height: 150vh;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    background-position: center center;
    background-size: auto 100%;
    position: relative;
    top: 0;
    left: 0
}

.work-thumbs .work-thumbs__inner[data-align=left] {
    background-position: left center;
}

.work-thumbs .work-thumbs__inner[data-align=right] {
    background-position: left right;
}

.work-thumbs .work-thumbs__inner:not(.single) {
    -webkit-transform: scale(.667) translateX(-50%);
    transform: scale(.667) translateX(-50%);
    width: 120vw;
    height: 150vh;
    left: -10%
}

.is-phone .work-thumbs .work-thumbs__inner:not(.single) {
    left: 0
}

.work-details {
    white-space: normal;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 7vh 3.125rem;
    width: 100%;
    height: auto;
    color: #fff;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.work-details>h2 {
    -webkit-transform: none;
    transform: none;
    pointer-events: none;
    word-break: keep-all
}

.work-details>h2 span {
    -webkit-transform: none;
    transform: none
}

.swiper-container, .burger-menu {
  width: 100%;
  height: 100vh;

}

.swiper-item {
	width: 33.3%;
	height: 100%;
	transition: all 1s ease-in-out 0s;
}

.swiper-main{
	transition: all 1.0s ease;
}

.swiper-wrapper {
	transition: all 1.0s ease;
}

.swiper-slide__img {
	width: 100%;
	height: inherit;
	overflow: hidden;
	position: relative;
}

.swiper-slide__img img {
	width: inherit;
	height: inherit;
	object-fit: cover;
}

.swiper-slide__img p {
	position: absolute;
	bottom: 20px;
}

.item-view .work-details__excerpt__inner p {
	font: 400 18px/1.4em 'Comfortaa', sans-serif;
    text-shadow: 1px 1px 2px black;
}

.work-details>h2 {
	font: 700 35px/1.4em 'Comfortaa', sans-serif;
	text-transform: uppercase;
}

 #hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 1px;
 }

 #hamburger span {
     height: 3px;
     display: block;
     background-color: #fff;
     position: relative;
     width: 100%;
     transition: all 0.3s ease;
 }

#hamburger span:before, #hamburger span:after {
    content: '';
    display: block;
    width: 27px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 48%;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#hamburger span:after {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

#hamburger span:before {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.menu-icon.active #hamburger span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-icon.active #hamburger span:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-icon.active #hamburger span {
    width: 0%;
}




/* ------------------------ Media Queries ---------------------------- */

/* ---------- 992 - 1366px ------------ */
@media screen and (max-width: 1366px) {

    /* --- Menu Style --- */
    .menu-list a {
        font-size: 28px;
        padding: 13px 2px;
    }

    .menu-list li {
        height: 53px;
    }

    .main-logo {
        max-width: 336px;
    }
    /* --- Menu Style End --- */
}

/* ---------- 768 - 992px ------------ */
@media screen and (max-width: 991.98px) {

    /* --- Menu Style --- */
    .menu-list a {
        font-size: 22px;
        padding: 10px 2px;
    }

    .menu-list li {
        height: 48px;
    }

    .main-logo {
        max-width: 336px;
        margin: 44px 0 0 33px;
    }
    /* --- Menu Style End --- */
}

/* ---------- 576 - 768px ------------ */
@media screen and (max-width: 767.98px) {

     /* --- Menu Style --- */
    .menu-container {
        flex-direction: column;
    }
    .menu-wrapper {
        height: 33.333%;
        width: 100%;
    }

    .main-logo {
        position: relative;
        z-index: -3;
        max-width: 308px;
    }

    html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu, html:not(.is-phone):not(.is-tablet) body:not(.is-menu) .menu-icon:hover .menu-icon__drawer.menu .menu-icon__drawer__inner {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }


    .menu-icon.active .menu-icon__drawer.menu {
        display: none;
    }

    .menu-list {
        bottom: 50%;
        -webkit-transform: translate(0, 50%);
        transform: translate(0, 50%);
    }
    /* --- Menu Style End --- */
}

/* ---------- 414 - 576px ------------ */
@media screen and (max-width: 575.98px) {
    
}

/* ---------- 320 - 414px ------------ */
@media screen and (max-width: 413.98px) {

    /* --- Menu Style --- */
    .menu-list a {
        font-size: 22px;
        padding: 7px 2px;
    }

    .menu-list li {
        height: 40px;
    }
    /* --- Menu Style End --- */
}