@import "reset.css";
@import "bootstrap.min.css";
@font-face {
	font-family: ProximaNovaExtrabold;
	src: url(../fonts/ProximaNovaExtrabold/ProximaNovaExtrabold.eot);
	src: url(../fonts/ProximaNovaExtrabold/ProximaNovaExtrabold.eot?#iefix) format("embedded-opentype"), url(../fonts/ProximaNovaExtrabold/ProximaNovaExtrabold.woff) format("woff"), url(../fonts/ProximaNovaExtrabold/ProximaNovaExtrabold.ttf) format("truetype");
	font-style: normal;
	font-weight: 400
}

@font-face {
	font-family: ProximaNovaRegular;
	src: url(../fonts/ProximaNovaRegular/ProximaNovaRegular.eot);
	src: url(../fonts/ProximaNovaRegular/ProximaNovaRegular.eot?#iefix) format("embedded-opentype"), url(../fonts/ProximaNovaRegular/ProximaNovaRegular.woff) format("woff"), url(../fonts/ProximaNovaRegular/ProximaNovaRegular.ttf) format("truetype");
	font-style: normal;
	font-weight: 400
}

body,
html {
	width: 100%;
	height: 100%;
	position: relative;
	background-color: #323232;
	z-index: -100;
	font-family: ProximaNovaRegular;
	overflow: hidden
}

@media (min-width:1400px) {
	.container {
		width: 1360px
	}
}

.hidden {
	display: none
}

#content,
#main-wrapper {
	width: 100%;
	height: 100%
}

.underline {
	display: inline-block;
	margin-right: 3px
}

h1 {
	font-family: ProximaNovaExtrabold;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: inherit;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

h2 {
	font-family: ProximaNovaExtrabold;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: inherit
}

.header {
	position: relative;
	height: 100%
}

.page__tags {
	padding-right: 0
}

.tags {
	margin-bottom: 43px;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

.tags__tag {
	display: inline-block;
	font-family: ProximaNovaExtrabold;
	font-size: 48px;
	line-height: 50px;
	text-transform: uppercase;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
	transition-duration: .3s
}

.controls {
	color: inherit;
	position: absolute;
	right: 0;
	bottom: 51px
}

.controls__next,
.controls__open,
.controls__prev {
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	color: inherit
}

.controls__prev {
	margin-right: 23px
}

.controls__prev:before {
	display: inline-block;
	content: '<';
	font-weight: 700;
	margin-right: 18px
}

.controls__next:after {
	display: inline-block;
	content: '>';
	font-weight: 700;
	margin-left: 18px
}

w .controls__open {
	display: block;
	font-family: ProximaNovaExtrabold;
	margin-bottom: 9px
}

.cases {
	color: inherit
}

.cases__case {
	padding: 0;
	margin: -7px 0 0
}
@media (max-width: 768px) {
	.cases__case--mobile {
		width: 50%;
		display: inline-block;
	}
	.cases__case--mobile:nth-child(even) {
		padding-left: 14px;
	}
}

.case__link {
	cursor: pointer;
	padding: 0;
	margin: 0
}

.case__link a {
	display: inline-block;
	font-size: 15px;
	letter-spacing: .44pt;
	color: inherit;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0;
	margin: 0;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}
@media (max-width: 1024px) {
	.case__link a {
		padding: 3px 0;
	}
}
@media (max-width: 768px) {
	.case__link a {
		padding: 2px 0;
	}
}

.case__link a:hover {
	font-family: ProximaNovaExtrabold;
	letter-spacing: .15pt
}

.case__link_selected {
	font-family: ProximaNovaExtrabold
}

.case__link_selected a {
	letter-spacing: .15pt
}

.case_logo {
	margin-bottom: 14px;
	margin-left: 2px;
}

.action__button {
	margin-top: 34px
}

.action__button a {
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	letter-spacing: .4pt
}
@media (min-width: 1024px) {
	.action__button a:hover {
		font-family: ProximaNovaExtrabold;
		letter-spacing: .15pt
	}
}

.action__button i {
	position: relative;
	top: -2px;
	left: 5px;
	font-size: 13px;
	animation-name: arrow_up_animation;
	animation-delay: 4s;
	animation-duration: 2s;
	animation-iteration-count: infinite
}

.action__button i.fa-chevron-left,
.action__button i.fa-chevron-right {
	top: 0;
	animation-name: arrow_right_animation;
	animation-delay: 4s;
	animation-duration: 2s;
	animation-iteration-count: infinite
}

.action__button i.fa-chevron-left {
	left: -5px;
	animation-name: arrow_left_animation;
}

@-webkit-keyframes arrow_up_animation {
	from {
		transform: translateY(-5px)
	}
	to {
		transform: translateY(0)
	}
}

@-o-keyframes arrow_up_animation {
	from {
		transform: translateY(-5px)
	}
	to {
		transform: translateY(0)
	}
}

@-moz-keyframes arrow_up_animation {
	from {
		transform: translateY(-5px)
	}
	to {
		transform: translateY(0)
	}
}

@keyframes arrow_up_animation {
	from {
		transform: translateY(-5px)
	}
	to {
		transform: translateY(0)
	}
}

@-webkit-keyframes arrow_right_animation {
	from {
		transform: translateX(5px)
	}
	to {
		transform: translateX(0)
	}
}

@-o-keyframes arrow_right_animation {
	from {
		transform: translateX(5px)
	}
	to {
		transform: translateX(0)
	}
}

@-moz-keyframes arrow_right_animation {
	from {
		transform: translateX(5px)
	}
	to {
		transform: translateX(0)
	}
}

@keyframes arrow_right_animation {
	from {
		transform: translateX(5px)
	}
	to {
		transform: translateX(0)
	}
}


@-webkit-keyframes arrow_left_animation {
	from {
		transform: translateX(-5px)
	}
	to {
		transform: translateX(0)
	}
}

@-o-keyframes arrow_left_animation {
	from {
		transform: translateX(-5px)
	}
	to {
		transform: translateX(0)
	}
}

@-moz-keyframes arrow_left_animation {
	from {
		transform: translateX(-5px)
	}
	to {
		transform: translateX(0)
	}
}

@keyframes arrow_left_animation {
	from {
		transform: translateX(-5px)
	}
	to {
		transform: translateX(0)
	}
}

.slides {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -2;
	opacity: 1;
	-webkit-transition: opacity .3s ease, transform 1s ease;
	-webkit-transition: opacity .3s ease, -webkit-transform 1s ease;
	-moz-transition: opacity .3s ease, transform 1s ease;
	-o-transition: opacity .3s ease, transform 1s ease;
	transition: opacity .3s ease, transform 1s ease
}

.slides__slide {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: -webkit-transform .5s linear;
	-webkit-transition: transform .5s linear;
	-moz-transition: transform .5s linear;
	-o-transition: transform .5s linear;
	transition: transform .5s linear
}

.slides__slide__background {
	height: 100%;
	width: 100%;
	background-position: 50%;
	-webkit-background-size: cover;
	background-size: cover
}

.slide__text {
	font-size: 15px;
	line-height: 16px;
	color: inherit;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.muted {
	opacity: .2
}

#background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	z-index: -3
}

#background .background {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #323232;
	background-repeat: no-repeat;
	background-position: 50%;
	-webkit-transition: background .5s linear;
	-moz-transition: background .5s linear;
	-o-transition: background .5s linear;
	transition: background .5s linear
}

#mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	background-image: url(/img/mask4.png);
	z-index: -1;
	opacity: .3
}

header {
	position: relative;
	z-index: 40;
	padding-top: 47px;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

header .logo {
	margin-top: 5px;
	width: 145px
}

header .logo circle,
header .logo path {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

header .main-menu {
	display: block;
	padding: 0;
	margin: 0 -27px;
	list-style: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

header .main-menu::after,
header .main-menu::before {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	clear: both
}

header .main-menu__item {
	font-family: ProximaNovaExtrabold;
	font-size: 15px;
	line-height: 15px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1px;
	color: inherit;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

#caseInfo .tags,
#caseInfo .tags * {
	transition: none
}

#caseInfo,
.bottom-align {
	position: fixed;
	bottom: 99px;
	left: 0;
	width: 100%;
	z-index: 6;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

.mobile-nav-trigger,
.mobile__logo {
	position: absolute;
	z-index: 90
}

.branding_case h1 {
	margin-bottom: 11px;
	letter-spacing: 1.4px
}

.branding_case .tags {
	margin-bottom: 9px;
	letter-spacing: 1.4px
}

.branding_case .social_controls {
	margin-top: 4px;
	height: 24px;
	overflow: hidden
}

.tags-cloud {
	position: fixed;
	top: 15%;
	width: 100%;
	z-index: 9;
	transform: scale(5);
	opacity: 0;
	filter: alpha(opacity=0);
	color: #fff;
	-webkit-transition: -webkit-transform .8s ease, opacity .8s ease-out;
	-moz-transition: -moz-transform .8s ease, opacity .8s ease-out;
	-o-transition: -moz-transform .8s ease, opacity .8s ease-out;
	transition: transform .8s ease, opacity .8s ease-out;
	pointer-events: none
}

.tags-cloud .simplemarquee-wrapper {
	margin-left: 0!important
}

.tags-cloud .tags-row {
	width: 100%;
	height: 100px;
	overflow: hidden
}

.tags-cloud .tags-row a {
	display: inline-block;
	font-family: ProximaNovaExtrabold;
	font-size: 100px;
	line-height: 100px;
	color: inherit;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1px;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease
}

.tags__tag__separator {
	position: relative;
	top: -6px;
	display: inline-block;
	font-family: ProximaNovaExtrabold;
	font-size: 100px;
	line-height: 100px;
	color: inherit;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1px;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease
}

.tags .tags__tag__separator {
	font-size: 50px;
	line-height: 50px;
	transition-duration: .3s
}

.tags-cloud .tags-row a:hover {
	color: #fff
}

.tags-cloud .fa-minus {
	display: inline-block;
	margin: .7rem 1rem;
	font-size: 80px;
	text-align: center;
	vertical-align: top;
	content: "-";
	color: #05ffdf
}

.tags-cloud .yellow {
	color: #fff200
}

@media (max-height:880px) {
	#caseInfo,
	#videoProduction {
		bottom: 114px!important
	}
	.tags-cloud .tags-row {
		height: 70px
	}
	.tags-cloud .tags-row a {
		font-size: 70px;
		line-height: 70px
	}
	.tags__tag__separator {
		font-size: 43px;
		line-height: 50px
	}
	.tags-cloud .tags-row .fa {
		font-size: 40px
	}
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 40;
	padding-bottom: 44px;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

@media (max-width:768px) {
	footer {
		display: none
	}
}

.footer-menu a {
	font-family: ProximaNovaExtrabold;
	font-size: 15px;
	color: inherit;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.5px
}

.social-networks__list {
	padding: 0;
	margin: 0
}

.social-networks__list .list__item {
	float: left;
	list-style: none;
	margin-right: 20px
}

.tests {
	position: fixed;
	bottom: 0;
	right: 0;
	background-color: #fff;
	padding: 8px;
	font-size: 12px;
	color: #000;
	opacity: .5
}

.tests:hover {
	opacity: 1
}

#videoProduction {
	position: fixed;
	bottom: 175px;
	left: 0;
	width: 100%;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

#videoPlayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2
}

#player {
	width: 100%;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease
}

.player__controls {
	color: inherit;
	position: absolute;
	right: 0;
	bottom: 51px
}

.player__controls__next,
.player__controls__play,
.player__controls__prev {
	text-decoration: none
}

.player__controls__play {
	position: relative;
	top: -5px;
	color: #fff;
	font-family: ProximaNovaExtrabold;
	font-size: 15px
}

.player__controls__play .circle {
	position: relative;
	top: 2px;
	display: inline-block;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: red;
	padding-top: 0;
	padding-left: 3px;
	text-align: center;
	margin-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: background .3s ease;
	-moz-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease
}

.player__controls__play:hover {
	text-decoration: none;
	color: #fff
}

.player__controls__play:hover .circle {
	background-color: #cc0202
}

.player__controls__play svg {
	position: absolute;
	top: 3px;
	left: 4px
}

.player__controls__prev {
	margin-right: 35px
}

.player__controls__next {
	margin-left: 35px
}

#video_popup {
	position: fixed;
	top: 5%;
	left: 5%;
	width: 90%;
	height: 90%;
	padding: 70px;
	background-color: #000;
	border: none;
	border-radius: 15px;
	z-index: 9999;
	box-sizing: border-box;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

.popup-controls__close {
	position: absolute;
	top: 35px;
	right: 70px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none
}

.popup-controls__close:hover {
	text-decoration: underline
}

#whoWeAre {
	bottom: 156px;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

#whoWeAre .clients {
	margin-top: 71px;
	margin-bottom: 24px
}

#whoWeAre .clients img {
	width: 100%
}

#whoWeAre .clients .client__logo {
	width: 20%;
	float: left
}

#whoWeAre .clients .client__logo.visible_on_800h {
	display: none
}

#whoWeAre .company-logo {
	margin-bottom: 12px
}

#whoWeAre h1 {
	font-size: 50px;
	font-family: ProximaNovaExtrabold;
	color: #05ffdf;
	margin-bottom: 38px
}

#whoWeAre .title {
	font-family: ProximaNovaExtrabold;
	text-transform: uppercase;
	color: #05ffdf;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 15.7px
}

#whoWeAre .text {
	color: #05ffdf;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.05em;
}

@media (max-height:900px) {
	#whoWeAre .clients .client__logo {
		width: 14.28%
	}
	#whoWeAre .clients .client__logo.hide_on_900 {
		display: none
	}
}

@media (max-height:800px) {
	#whoWeAre .clients {
		margin-bottom: 0;
		margin-top: 22px
	}
	#whoWeAre .clients .client__logo {
		width: 10%
	}
	#whoWeAre .clients .client__logo.hide_on_800 {
		display: none
	}
	#whoWeAre .clients .client__logo.visible_on_800h {
		display: block
	}
}

#contacts {
	bottom: 156px;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

#contacts .clients {
	margin-bottom: 66px
}

#contacts .clients img {
	width: 100%
}

#contacts .company-logo {
	margin-bottom: 12px
}

#contacts h1 {
	font-size: 50px;
	font-family: ProximaNovaExtrabold;
	color: #05ffdf;
	margin-bottom: 38px
}

#contacts .title {
	text-transform: uppercase;
	font-family: ProximaNovaExtrabold;
	color: #05ffdf;
	margin-bottom: 14px
}

#contacts .text {
	text-transform: uppercase;
	color: #05ffdf;
	margin-bottom: 16px;
	line-height: 17px
}

.view-animate.ng-enter,
.view-animate.ng-leave {
	transition: all cubic-bezier(.25, .46, .45, .94) .5s
}

.view-animate.ng-enter {
	opacity: 0
}

.view-animate.ng-enter.ng-enter-active {
	opacity: 1
}

.view-animate.ng-leave.ng-leave-active {
	opacity: 0
}

.hamburger {
	padding: 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible
}

.hamburger:hover {
	opacity: .7
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: .15s;
	transition-timing-function: ease
}

.hamburger-inner::after,
.hamburger-inner::before {
	content: "";
	display: block
}

.hamburger-inner::before {
	top: -10px
}

.hamburger-inner::after {
	bottom: -10px
}

.hamburger--3dy .hamburger-box {
	-webkit-perspective: 80px;
	perspective: 80px
}

.hamburger--3dy .hamburger-inner {
	transition: background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .2s cubic-bezier(.645, .045, .355, 1);
	transition: transform .2s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
	transition: transform .2s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .2s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dy .hamburger-inner::after,
.hamburger--3dy .hamburger-inner::before {
	transition: -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1);
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
	transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dy.is-active .hamburger-inner {
	background-color: transparent;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg)
}

.hamburger--3dy.is-active .hamburger-inner::before {
	-webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
	transform: translate3d(0, 10px, 0) rotate(45deg)
}

.hamburger--3dy.is-active .hamburger-inner::after {
	-webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
	transform: translate3d(0, -10px, 0) rotate(-45deg)
}

@media (max-width:980px) {
	header {
		padding-top: 40px
	}
}

.swipe-layer {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 5
}

.animated_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	animation-name: anim_bg;
	animation-duration: 20s;
	animation-timing-function: ease;
	animation-iteration-count: infinite
}

@-webkit-keyframes anim_bg {
	0% {
		background-color: #a2cbe8
	}
	20% {
		background-color: #ffab94
	}
	40% {
		background-color: #bbce4d
	}
	60% {
		background-color: #d7c2b8
	}
	80% {
		background-color: #fe7c74
	}
	100% {
		background-color: #a2cbe8
	}
}

@-o-keyframes anim_bg {
	0% {
		background-color: #a2cbe8
	}
	20% {
		background-color: #ffab94
	}
	40% {
		background-color: #bbce4d
	}
	60% {
		background-color: #d7c2b8
	}
	80% {
		background-color: #fe7c74
	}
	100% {
		background-color: #a2cbe8
	}
}

@-moz-keyframes anim_bg {
	0% {
		background-color: #a2cbe8
	}
	20% {
		background-color: #ffab94
	}
	40% {
		background-color: #bbce4d
	}
	60% {
		background-color: #d7c2b8
	}
	80% {
		background-color: #fe7c74
	}
	100% {
		background-color: #a2cbe8
	}
}

@keyframes anim_bg {
	0% {
		background-color: #a2cbe8
	}
	20% {
		background-color: #ffab94
	}
	40% {
		background-color: #bbce4d
	}
	60% {
		background-color: #d7c2b8
	}
	80% {
		background-color: #fe7c74
	}
	100% {
		background-color: #a2cbe8
	}
}

.case__description {
	text-transform: none;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	font-size: 16px;
	line-height: 19px;
}


/*
** CASES STYLE
*/
@media (max-width: 768px) {
	.case__description {
		display: none;
	}
}


.branding_case.okta .case__description {
	text-shadow: 1px 1px 6px #000;
}

.branding_case.shaka .case__description {
	width: 60%;
}

.branding_case.shaka .case__header {
	text-shadow: 6px 8px 8px #191523;
}

.branding_case.novinskiy .case__header {
	text-shadow: 3px 5px 6px #000;
}

@media (min-width: 554px) {
	.branding_case.novinskiy .case__header {
		width: 80%;
	}
}

@media (min-width: 768px) {
	.branding_case.novinskiy .case__header {
		width: 70%;
	}
}

@media (min-width: 1024px) {
	.branding_case.novinskiy .case__header {
		width: 60%;
	}
}

@media (min-width: 1224px) {
	.branding_case.novinskiy .case__header {
		width: 50%;
	}
}

.control-button {
	display: inline-block;
	padding: 4px 0;
}
@media (max-width: 768px) {
	.control-button-wrapper--mobile-fix {
		text-align: right;
		padding-right: 36px;
	}
}