/*----------------------------------------------------------------- */
/* PAGES
/*----------------------------------------------------------------- */

.home-intro h1 mark,
.about-intro h1 mark,
.ab-intro h1 mark,
.redesign-intro h1 mark {
	display: inline-block;
	position: relative;
	background: none;

	color: var(--color__black);
}

.home-intro h1 mark:before,
.about-intro h1 mark:before,
.ab-intro h1 mark:before,
.redesign-intro h1 mark:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: text;

	background: transparent
		url("https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1626084413/web-assets/shape_line-big.svg")
		center center no-repeat;
	background-size: contain;

	content: "";
}

.home-intro h1 mark:before {
	margin-top: 3px;
	margin-left: 5px;
	width: 325px;
	height: 75px;
}

.about-intro h1 mark:before {
	width: 279px;
	height: 66px;
}

.ab-intro h1 mark:before {
	background-size: cover;
	width: 468px;
	height: 106px;
}

.redesign-intro h1 mark:before {
	margin-top: 5px;
	width: 339px;
	height: 73px;
}

@media (max-width: 760px) {
	.about-intro h1 mark:before,
	.redesign-intro h1 mark:before,
	.ab-intro h1 mark:before {
		background-size: 45%;
	}
}

/* HOME
----------------------------------------- */
.home-intro {
	align-items: flex-end;

	background-color: var(--color__grey);

	padding-top: 100px;
}

.home-intro h1 {
	margin: 80px auto;
	width: calc(100% - 40%);
}

.home-intro figure {
	margin-right: -215px;
	margin-bottom: 0;
	width: 45%;
}

.home-intro figure img {
	margin: 0 auto;
}

@media (max-width: 1620px) {
	.home-intro figure {
		margin-right: 0;
		width: 40%;
	}
}

@media (max-width: 1050px) {
	.home-intro {
		padding-top: 50px;
		overflow: hidden;
	}
}

@media (max-width: 1199px) {
	.home-intro h1 {
		font-size: 4.5rem;
		line-height: 5.8rem;
	}

	.home-intro h1 mark:before {
		background-size: 70%;
	}
}

@media (max-width: 960px) {
	.home-intro h1 {
		width: 100%;
		max-width: 360px;
		font-size: 3.5rem;
		line-height: 3.8rem;
	}

	.home-intro h1 mark:before {
		background-size: 50%;
	}

	.home-intro figure {
		margin: 0 auto;
	}
}

@media (max-width: 660px) {
	.home-intro {
		padding-top: 25px;
	}

	.home-intro h1 {
		margin: 20px auto;
		padding-right: 0;
		font-size: 3rem;
	}

	.home-intro h1 mark:before {
		background-size: 45%;
	}
}

@media (max-width: 520px) {
	.home-intro figure {
		width: 280px;
	}
}

/* CLIENTS */
.home-clients .clients__logos {
	margin: 35px auto 145px auto;
}

@media (max-width: 960px) {
	.home-clients .clients__logos {
		margin: 20px auto 45px auto;
	}
}

@media (max-width: 420px) {
	.home-intro h1 {
		margin-left: 0;
	}
}

/* SERVICES */
.home-services h2 {
	margin-bottom: 90px;

	text-align: center;
}

.home-services__item {
	border-right: 1px solid var(--color__grey-dark);
	padding: 0 70px;
	width: 25%;

	text-align: center;
}

.home-services__item:last-of-type {
	border-right: none;
}

.home-services__item > figure {
	margin: 0 auto 34px auto;
	width: 100px;
	height: 70px;
}

.home-services__item > figure > img {
	margin: 0 auto;
	max-width: none;
	height: 100%;
}

.home-services__item h3 {
	font-size: 2.2rem;
	line-height: 3.2rem;
}

.home-services__item p {
	margin-bottom: 30px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

@media (max-width: 1340px) {
	.home-services__item {
		margin-bottom: 70px;
		width: 50%;
	}

	.home-services__item:nth-of-type(2) {
		border-right: none;
	}
}

@media (max-width: 760px) {
	.home-services h2 {
		margin-bottom: 35px;
	}

	.home-services__item > figure {
		margin-bottom: 25px;
		width: 80px;
	}

	.home-services__item h3 {
		margin-bottom: 3px;
		font-size: 1.8rem;
	}
}

@media (max-width: 660px) {
	.home-services__item {
		margin: 0 auto 70px auto;

		border: none;
		padding: 0;
		width: 100%;
	}

	.home-services__item:last-of-type {
		margin-bottom: 0;
	}
}

@media (max-width: 670px) {
	.home-services__item .btn {
		display: block;
	}
}

/* QUOTE */
.home-quote {
	margin: 0 auto 170px auto;
	max-width: 960px;

	text-align: center;
}

.home-quote p {
	display: inline-block;

	margin-bottom: 40px;
	font-weight: 600;
	font-size: 3rem;
	font-family: var(--font-family__headings);
}

.home-quote p > mark {
	position: relative;

	background: none;

	white-space: nowrap;
}

.home-quote p > mark::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: text;

	background: transparent
		url(https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1626084413/web-assets/shape_line-big.svg)
		center center no-repeat;
	background-size: contain;

	height: 35px;

	content: "";
}

.home-quote p > mark:first-of-type::before {
	width: 120px;
}

.home-quote p > mark:last-of-type::before {
	width: 90px;
}

.home-quote cite {
	color: rgba(var(--color__black-rgb), 0.7);
	font-style: normal;
	font-size: 1.6rem;
	font-family: var(--font-family__headings);
}

@media (max-width: 960px) {
	.home-quote {
		margin: 0 auto 75px auto;
	}

	.home-quote p {
		margin-bottom: 35px;
		font-size: 2rem;

		letter-spacing: -0.33px;
	}

	.home-quote p > mark:first-of-type::before {
		width: 75px;
	}

	.home-quote p > mark:last-of-type::before {
		width: 60px;
	}
}

/* POSTS */
.home-posts {
	margin-bottom: 80px;
}

.home-posts > h2 {
	padding-left: 44%;
}

.home-posts__newest > h3 {
	margin-bottom: 20px;
	font-weight: var(--font-weight__normal);
	font-size: 1.6rem;
}

.home-posts__newest {
	width: 35%;
}

.home-posts .home-posts__newest .article__wrapper {
	display: block;
}

.home-posts .home-posts__newest .article__wrapper:hover .article__title {
	color: var(--color__red);
	text-decoration: none;
}

.home-posts__newest article {
	background: var(--color__grey);
}

.home-posts__newest .article__wrapper .article__image {
	margin-bottom: 35px;

	border-radius: 5px 5px 0 0;
	width: 100%;
}

.home-posts__newest .article__wrapper .article__title {
	transition: var(--transition-delay__default);

	margin-bottom: 19px;
	padding: 0 30px;
	font-size: 2.2rem;
	line-height: 2.7rem;
}

.home-posts__newest .article__wrapper .article__excerpt {
	padding: 0 30px 30px 30px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
}

.home-posts__top {
	padding-left: 10%;
	width: 65%;
}

.home-posts__top .loop-post article {
	margin-bottom: 35px;
}

.home-posts__top .loop-post article:hover .article__title {
	color: var(--color__red);
	text-decoration: none;
}

.home-posts__top > h3 {
	margin-bottom: 15px;
	font-weight: var(--font-weight__normal);
	font-size: 1.6rem;
}

.home-posts__top .loop-post .article__image {
	width: 120px;
}

.home-posts__top article .article__title {
	transition: var(--transition-delay__default);
	font-size: 2rem;
	line-height: 2.7rem;
}

.home-posts__top article .article__excerpt {
	padding: 0 0 0 20px;
}

@media (max-width: 960px) {
	.home-posts__newest {
		width: 45%;
	}

	.home-posts__top {
		padding-left: 0;
		width: 50%;
	}

	.home-posts__top .loop-post .article__image {
		grid-column: 1 / 4;
		width: 100%;
	}

	.home-posts__top article .article__excerpt {
		padding: 15px 0 0 0;
	}
}

@media (max-width: 760px) {
	.home-posts__newest .article__wrapper .article__title,
	.home-posts__top .loop-post .article__wrapper .article__title {
		font-size: 1.8rem;
	}
}

@media (max-width: 720px) {
	.home-posts {
		margin-bottom: 70px;
	}

	.home-posts > h2 {
		padding-left: 0;

		text-align: center;
	}

	.home-posts__newest {
		width: 100%;
	}

	.home-posts__newest .article__wrapper .article__image {
		margin-bottom: 20px;
	}

	.home-posts__newest .article__wrapper .article__title {
		margin-bottom: 10px;
	}

	.home-posts__newest .article__wrapper .article__title {
		padding: 0 15px;
	}

	.home-posts__newest .article__wrapper .article__excerpt {
		padding: 0 15px 20px 15px;
	}

	.home-posts__top {
		padding-left: 0;
		width: 100%;
	}

	.home-posts__top .loop-post .article__wrapper {
		grid-template-columns: 1fr;
	}

	.home-posts__top .loop-post .article__wrapper .article__image {
		order: 1;

		width: 100%;
	}

	.home-posts__top .loop-post .article__wrapper .article__title {
		grid-column: span 2;
		order: 0;

		margin-bottom: 0;
		padding: 12px 0 12px 0;
	}

	.home-posts__top .loop-post .article__wrapper .article__excerpt {
		order: 3;

		padding: 10px 0 0 0;
	}

	.home-posts__top article .article__title {
		font-size: 1.8rem;
	}

	.home-posts__top .loop-post .article__wrapper .article__image {
		border-radius: 5px;
	}

	.home-posts__top .loop-post .article__wrapper .article__title,
	.home-posts__top .loop-post .article__wrapper .article__excerpt {
		background-color: var(--color__white);
	}
}

/* NEWSLETTER */
.home-newsletter {
	position: relative;

	background: var(--color__grey);

	padding: 120px 0 130px 0;

	overflow: hidden;
}

.home-newsletter__left {
	z-index: 1;

	width: calc(100% / 2);
}

.home-newsletter__right {
	z-index: 1;

	width: calc(100% / 2 - 250px);
}

.home-newsletter__left > h2 {
	margin-bottom: 25px;
	font-size: 3rem;
	line-height: 4.9rem;
}

.home-newsletter__left > p {
	margin-bottom: 50px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

.home-newsletter__left form {
	margin-bottom: 35px;
}

.home-newsletter__left form input[type="email"] {
	width: calc(70% - 10px);
}

.home-newsletter__left form input[type="submit"] {
	cursor: pointer;
	width: calc(30% - 10px);
}

.home-newsletter__left form + span {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-family: var(--font-family__headings);
}

.home-newsletter__right > h3 {
	margin-bottom: 45px;
	font-size: 2.2rem;
}

.home-newsletter__gallery {
	display: grid;
	align-items: center;

	grid-gap: 35px;
	grid-template-columns: repeat(auto-fill, minmax(120px, auto));
}

.home-newsletter__gallery img {
	-webkit-transform: translateZ(0) scale(1, 1);

	-webkit-backface-visibility: hidden;
	filter: grayscale(1);

	transition: var(--transition-delay__default);
	margin: 0 auto;
	max-width: 120px;
	max-height: 38px;
}

@media (max-width: 1150px) {
	.home-newsletter__right {
		width: calc(100% / 2 - 140px);
	}
}

@media (max-width: 1146px) {
	.home-newsletter::after {
		top: -21%;
		left: 60%;
	}
}

@media (max-width: 1082px) {
	.home-newsletter::after {
		left: 59%;
	}
}
@media (max-width: 973px) {
	.home-newsletter::after {
		display: none;
	}
}

@media (max-width: 960px) {
	.home-newsletter__left {
		margin-bottom: 38px;
		width: 100%;
	}

	.home-newsletter__right {
		padding-left: 0;
		width: 100%;
	}

	.home-newsletter__right > h3 {
		margin-bottom: 20px;
	}
}

@media (max-width: 760px) {
	.home-newsletter__left > h2 {
		margin-bottom: 19px;
		font-size: 2.5rem;
		line-height: 3.6rem;
	}

	.home-newsletter__right > h3 {
		font-size: 1.8rem;
	}
}

@media (max-width: 560px) {
	.home-newsletter {
		padding: 35px 0 45px 0;
	}

	.home-newsletter__left {
		text-align: center;
	}

	.home-newsletter__left > h2 {
		margin-bottom: 19px;
		font-size: 2.5rem;
		line-height: 3.6rem;
	}

	.home-newsletter__left > p {
		margin-bottom: 25px;
	}

	.home-newsletter__left form {
		margin-bottom: 20px;
	}

	.home-newsletter__left .mc4wp-form-fields {
		flex-direction: column;
	}

	.home-newsletter__left form input[type="email"] {
		margin-bottom: 10px;
		width: 100%;
	}

	.home-newsletter__left form input[type="submit"] {
		margin-bottom: 0;
		width: 100%;
	}

	.home-newsletter__right > h3 {
		font-size: 1.8rem;

		text-align: center;
	}
}

.home-newsletter__gallery a:hover img {
	filter: grayscale(0);
}

/* CONTACT 
----------------------------------------- */

/* CONTACT INTRO INFO */
.contact-intro {
	align-items: flex-start;

	margin-bottom: 70px;
}

.contact-intro__info {
	padding-right: 30px;
	width: 60%;
}

.contact-intro__info h1 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.contact-intro__info p {
	margin-bottom: 80px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

.contact-intro__info .icon {
	transition: var(--transition-delay__default);
	margin-right: 25px;
	width: 37px;
	height: 36px;

	color: var(--color__red);
}

.contact-intro__info .icon-mail {
	width: 37px;
	height: 28px;
}

.contact-intro__info a[href^="tel:"],
.contact-intro__info a[href^="mailto:"] {
	display: block;

	color: var(--color__red);
	font-weight: var(--font-weight__bold);
	font-size: 4.5rem;
	font-family: var(--font-family__headings);
}

.contact-intro__info a[href^="tel:"]:hover,
.contact-intro__info a[href^="tel:"]:hover .icon-phone,
.contact-intro__info a[href^="mailto:"]:hover,
.contact-intro__info a[href^="mailto:"]:hover .icon-mail {
	color: var(--color__black);
}

.contact-intro__image {
	margin-bottom: 0;

	border-radius: 5px;

	width: 40%;
	overflow: hidden;
}

@media (max-width: 960px) {
	.contact-intro__info h1 {
		margin-bottom: 10px;
		font-size: 3rem;
		line-height: 3.8rem;
	}

	.contact-intro__info p {
		margin-bottom: 35px;
	}

	.contact-intro__info .icon {
		margin-right: 15px;
		width: 22px;
		height: 22px;
	}

	.contact-intro__info .icon-mail {
		width: 22px;
		height: 17px;
	}

	.contact-intro__info a[href^="tel:"],
	.contact-intro__info a[href^="mailto:"] {
		font-size: 2.5rem;
	}
}

@media (max-width: 760px) {
	.contact-intro {
		flex-direction: column;

		margin-bottom: 50px;
	}

	.contact-intro__info {
		margin-bottom: 35px;
		padding-right: 0;
	}

	.contact-intro__info,
	.contact-intro__image,
	.contact-intro__image img {
		width: 100%;
	}
}

/* CONTACT DATA */
.contact-data h2 {
	margin-bottom: 40px;
	font-size: 2rem;
	line-height: 2.7rem;
}

.contact-data__column {
	margin-bottom: 45px;
	padding-right: 20px;
}

.contact-data__column > address {
	margin-bottom: 15px;
}

.contact-data__column-text {
	position: relative;
}

.contact-data__column-text .icon + p {
	padding-left: 27px;
}

.contact-data__column-text p {
	display: inline-block;

	color: rgba(var(--color__black-rgb), 0.7);
	font-style: normal;
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.contact-data .icon {
	position: absolute;
	top: 7px;
	left: 0;

	width: 16px;
	height: 14px;

	color: var(--color__red);
}

.contact-data .icon-tram {
	width: 14px;
	height: 18px;
}

@media (max-width: 960px) {
	.contact-data h2 {
		margin-bottom: 20px;
		font-size: 2.2rem;
		line-height: normal;
	}

	.contact-data__column:last-of-type {
		margin-bottom: 0;
	}
}

@media (max-width: 760px) {
	.contact-data__column > address {
		margin-bottom: 10px;
	}

	.contact-data .icon {
		top: 5px;
	}

	.contact-data__column-text .icon + p {
		margin-bottom: 10px;
		line-height: normal;
	}
}

/* CONTACT SOCIAL */

.contact-social {
	margin: 100px auto 130px auto;
	max-width: 700px;
}

.contact-social a {
	font-weight: var(--font-weight__bold);
	font-size: 1.7rem;
	line-height: 2.7rem;
	font-family: var(--font-family__headings);
}

.contact-social a:hover,
.contact-social a:hover .icon {
	color: var(--color__red);
}

.contact-social .icon {
	vertical-align: middle;

	transition: var(--transition-delay__default);
	margin-right: 10px;
	width: 21px;
	height: 21px;
}

.contact-social .icon-tw {
	width: 23px;
	height: 19px;
}

@media (max-width: 760px) {
	.contact-social {
		flex-direction: column;

		margin: 50px auto 50px auto;
	}

	.contact-social a {
		margin-bottom: 15px;

		border: 1px solid var(--color__grey-dark);
		border-radius: 33px;
		padding: 15px;
		width: 100%;
		max-width: 335px;

		text-align: center;
	}

	.contact-social a:last-of-type {
		margin-bottom: 0;
	}
}

/* ABOUT
----------------------------------------- */

/* ABOUT INFO */
.about-intro {
	margin-bottom: 110px;
}

.about-intro h1 {
	margin-bottom: 25px;
}

.about-intro__info {
	margin-bottom: 150px;
}

.about-intro__info p {
	margin-bottom: 0;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 3rem;
	font-family: var(--font-family__headings);
}

.about-intro figure {
	border-radius: 5px;

	width: 49%;
	max-width: 570px;
	overflow: hidden;
}

.about-intro__column {
	width: calc(100% - 55%);
	max-width: 460px;
}

.about-intro__column .icon {
	margin-right: 20px;
	width: 40px;
	height: 40px;
}

.about-intro__column .icon-cross {
	color: var(--color__red);
}

.about-intro__column h2 {
	margin-bottom: 28px;
	font-size: 2.2rem;
	line-height: 2.7rem;
}

.about-intro__column ul:first-of-type {
	margin-bottom: 40px;
}

.about-intro .about-intro__column ul li {
	margin-bottom: 15px;
	padding-left: 20px;
	font-size: 1.7rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

@media (max-width: 960px) {
	.about-intro {
		margin-bottom: 65px;
	}

	.about-intro > .row {
		flex-direction: column;
	}

	.about-intro figure {
		margin: 0 auto 50px auto;
		width: 100%;
		max-width: 335px;
	}

	.about-intro__info p {
		line-height: normal;
	}

	.about-intro__info {
		margin-bottom: 70px;
	}

	.about-intro .about-intro__column ul li {
		font-size: 1.5rem;
	}

	.about-intro__column {
		width: 100%;
		max-width: 100%;
	}
}

/* CERTIFICATION */
.workshops-responses + .certification {
	margin: 150px 0;
}

.certification {
	margin-bottom: 60px;
}

.certification > h2 {
	margin-bottom: 45px;
}

.certification__list {
	margin-bottom: 20px;
	padding-right: 20px;
}

.certification__list-item {
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	gap: 30px;

	margin-bottom: 30px;
}

.certification__list-item figure {
	margin: 0;

	border-radius: 5px;
	overflow: hidden;
}

.certification__list-item-info h3 {
	transition: var(--transition-delay__default);

	margin-bottom: 10px;
	font-size: 2.2rem;
	line-height: 2.7rem;
}

.certification__list-item:hover {
	color: var(--color__black);
}

.certification__list-item:hover h3 {
	color: var(--color__red);
}

.certification__list-item-info p {
	margin: 0;
	padding-right: 10px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.7rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

@media (max-width: 1050px) {
	.certification {
		margin-bottom: 60px;
		width: 100%;
	}
}

@media (max-width: 960px) {
	.workshops-responses + .certification {
		margin: 80px 0 0 0;
	}

	.certification > h2 {
		margin-bottom: 25px;
		line-height: normal;

		text-align: center;
	}

	.certification__list-item-info h3 {
		margin-bottom: 5px;
		font-size: 1.8rem;
	}

	.certification__list-item-info p {
		font-size: 1.5rem;
	}
}

/* ABOUT SPEECH */
.about-speech {
	width: 40%;
}

.about-speech__info {
	margin-bottom: 35px;
}

/* .about-speech__info p
{
	font-family: var(--font-family__headings);
	font-size: 2.2rem;
	font-weight: var(--font-weight__bold);
	line-height: 3.5rem;
} */

@media (max-width: 1050px) {
	.about-speech {
		width: 100%;
	}
}

@media (max-width: 960px) {
	.about-speech h2 {
		margin-bottom: 35px;

		text-align: center;
	}

	/* .about-speech__info p
	{
		font-size: 1.8rem;
		line-height: 2.7rem;
	} */

	.about-speech__info {
		margin-bottom: 25px;
	}

	.about-speech figure {
		margin: 0 auto 50px auto;
		width: 100%;
		max-width: 335px;
	}
}

@media (max-width: 560px) {
	.about-speech__info + .btn {
		display: block;

		text-align: center;
	}
}

/* CASE STUDY */
.case-studies {
	margin: 150px 0 150px 0;
}

.case-studies h2 {
	margin-bottom: 70px;

	text-align: center;
}

.case-studies .loop-wrapper {
	margin-bottom: 50px;
}

/* CLIENTS */
.clients__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	gap: 35px;

	margin-bottom: 180px;
}

.clients__logos img {
	-webkit-transform: translateZ(0) scale(1, 1);

	-webkit-backface-visibility: hidden;
	filter: grayscale(1);

	transition: var(--transition-delay__default);
	max-width: 137px;
	height: auto;
}

.clients__logos a:hover img {
	filter: grayscale(0);
}

@media (max-width: 960px) {
	.case-studies {
		margin: 65px 0 85px 0;
	}

	.case-studies .loop-wrapper {
		margin-bottom: 25px;
	}

	.case-studies h2 {
		margin-bottom: 35px;
	}

	.clients__logos {
		row-gap: 20px;
	}
}

/* CLIENTS REFERENCES */
.clients__references {
	margin-bottom: 150px;
}

.glider {
	margin-bottom: 40px;
	/* Hide bottom scrollbars in firefox  */
	overflow-x: hidden;
}

.glider__content {
	margin: 0 auto;
	max-width: 850px;
}

.glider__item p {
	margin-bottom: 25px;
}

.workshops-responses__references-text + strong {
	font-size: 2.2rem;
	font-family: var(--font-family__headings);
}

.glider__item .clients__references-content {
	padding: 0 70px;
}

.glider__item .clients__references-position {
	display: block;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

.glider-prev,
.glider-next {
	display: flex;
	justify-content: center;
	align-items: center;

	transition: var(--transition-delay__default);
	border: 1px solid var(--color__grey-dark);
	border-radius: 50%;

	width: 60px;
	height: 60px;

	color: var(--color__red);
}

.glider-prev:hover,
.glider-next:hover {
	border-color: var(--color__red);
	background: var(--color__red-light);
}

.glider-prev:hover .icon-arrow-left,
.glider-next:hover .icon-arrow-right {
	color: var(--color__white);
}

.glider-prev .icon-arrow-left,
.glider-next .icon-arrow-right {
	transition: var(--transition-delay__default);
	width: 7px;
	height: 12px;
}

.glider-dot.active {
	background: var(--color__red);
}

.glider::-webkit-scrollbar-thumb {
	display: none;
}

@media (max-width: 1200px) {
	.glider {
		overflow-x: auto;
	}
}

@media (max-width: 960px) {
	.clients {
		width: 100%;
	}

	.clients > h2 {
		text-align: center;
	}

	.clients__logos {
		margin-bottom: 70px;
	}

	.glider__item .clients__references-content {
		padding: 0;
	}

	.glider-prev,
	.glider-next {
		top: initial;
		bottom: -18px;
	}

	.glider-prev {
		left: 0;
	}

	.glider-next {
		right: 0;
	}
}

/* A/B INTRO
----------------------------------------- */
/* A/B INTRO */
.ab-intro,
.redesign-intro {
	margin-bottom: 150px;
}

.ab-intro > .row {
	justify-content: flex-start;
}

.ab-process h2 {
	margin-bottom: 50px;
}

.ab-intro__info p {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.ab-intro__info p:first-child {
	color: var(--color__black);
	font-size: 1.8rem;
	line-height: normal;
}

.ab-intro .row .btn .redesign-intro .row .btn {
	margin-right: 35px;
}

.ab-intro .icon-phone,
.redesign-intro .icon-phone {
	transition: var(--transition-delay__default);
	width: 18px;
	height: 18px;

	color: var(--color__red);
}

.ab-intro span,
.redesign-intro span {
	margin: 0 12px 0 35px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.ab-intro a[href^="tel:"],
.redesign-intro a[href^="tel:"] {
	color: var(--color__red);
	font-weight: var(--font-weight__bold);
	font-size: 2.2rem;
}

.ab-intro a[href^="tel:"]:hover,
.ab-intro a[href^="tel:"]:hover .icon,
.redesign-intro a[href^="tel:"]:hover,
.redesign-intro a[href^="tel:"]:hover .icon {
	color: var(--color__black);
}

@media (max-width: 960px) {
	.ab-intro,
	.redesign-intro {
		margin-bottom: 70px;
	}
}

@media (max-width: 840px) {
	.ab-intro span,
	.ab-intro a[href^="tel:"],
	.redesign-intro span,
	.redesign-intro a[href^="tel:"] {
		width: 100%;
	}

	.ab-intro span,
	.redesign-intro span {
		margin: 10px 0;
	}
}

/* A/B PROCES */
.ab-process {
	margin-bottom: 140px;
}

.ab-process__list {
	padding-right: 20px;
	width: 50%;
}

.ab-process__image {
	max-width: 475px;
}

.ab-process__list-item {
	margin-bottom: 45px;
}

.ab-process__list-item:last-of-type {
	margin-bottom: 0;
}

.ab-process__list-item h3 {
	margin-bottom: 15px;
	font-size: 2rem;
}

.ab-process__list-item h3 > span {
	color: var(--color__red);
}

.ab-process__list-item p {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

@media (max-width: 1060px) {
	.ab-process__list {
		margin-bottom: 80px;
		width: 100%;
	}

	.ab-process__image {
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 960px) {
	.ab-process {
		margin-bottom: 70px;
	}
}

/* CERTIFICATION SPEECH */
.certification__speech {
	width: 40%;
}

.certification__speech h3 {
	margin-bottom: 14px;
	font-size: 2.2rem;
	line-height: 3.5rem;
}

.certification__speech p {
	margin-bottom: 25px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 2rem;
	line-height: normal;
}

@media (max-width: 960px) {
	.certification__speech {
		width: 100%;
	}

	.block_video-embed figure {
		margin: 0 auto;
	}
}

@media (max-width: 660px) {
	.certification {
		margin-bottom: 60px;
	}

	.certification__list {
		padding-right: 0;
	}

	.certification__list figure {
		max-width: 100px;
	}

	.certification__list-item-info {
		width: calc(100% - 125px);
	}
}

/* RELATED POSTS */
.related-posts {
	margin-bottom: 150px;
}

/* AB MINUS */
.ab-minus .icon {
	vertical-align: middle;
	margin-right: 20px;
	width: 40px;
	height: 40px;
}

.ab-minus__text p {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 3rem;
	font-family: var(--font-family__headings);
}

.ab-minus__text p:first-of-type {
	margin-bottom: 35px;
}

.ab-minus__text a {
	color: var(--color__red);
	font-weight: var(--font-weight__bold);
}

.ab-minus__text a:hover {
	color: var(--color__black);
}

.ab-minus__text ul {
	margin-bottom: 30px;
}

.ab-minus .ab-minus__text ul li {
	margin-bottom: 15px;
	padding-left: 20px;
	font-size: 1.7rem;
	line-height: 2.6rem;
	font-family: var(--font-family__headings);
}

/* SERVICES CTA */
.services-cta {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin: 150px auto 150px auto;

	background: #f6f6f6;
	padding: 110px;
	overflow: hidden;
}

.services-cta:before {
	position: absolute;
	top: -40%;
	right: -17%;
	z-index: 0;

	border-radius: 50%;
	background-image: linear-gradient(
		-5deg,
		rgba(0, 0, 0, 0.05) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	background-image: linear-gradient(
		-5deg,
		rgba(0, 0, 0, 0.05) 0%,
		rgba(0, 0, 0, 0) 100%
	);

	width: 840px;
	height: 840px;

	content: "";
}

.services-cta > span {
	z-index: 1;

	margin-bottom: 35px;
	font-weight: var(--font-weight__bold);
	font-size: 3rem;
	line-height: normal;
	font-family: var(--font-family__headings);

	text-align: center;
}

.services-cta .icon {
	vertical-align: middle;

	transition: var(--transition-delay__default);
	margin-right: 15px;
	width: 37px;
	height: 28px;

	color: var(--color__red);
}

.services-cta .icon-mail {
	height: 28px;
}

.services-cta a[href^="tel:"] {
	margin-bottom: 0;
}

.services-cta a[href^="tel:"],
.services-cta a[href^="mailto:"] {
	display: inline-block;

	z-index: 1;

	color: var(--color__red);
	font-weight: var(--font-weight__bold);
	font-size: 4.5rem;
	font-family: var(--font-family__headings);
}

.services-cta a[href^="tel:"] {
	margin-bottom: 5px;
}

.services-cta a[href^="tel:"]:hover,
.services-cta a[href^="mailto:"]:hover,
.services-cta a[href^="tel:"]:hover .icon,
.services-cta a[href^="mailto:"]:hover .icon {
	color: var(--color__black);
}

@media (max-width: 960px) {
	.services-cta {
		padding: 45px;
	}

	.services-cta > span {
		margin-bottom: 25px;
	}

	.services-cta .icon {
		width: 22px;
		height: 17px;
	}

	.services-cta a[href^="tel:"],
	.services-cta a[href^="mailto:"] {
		font-size: 2.1rem;
	}

	.services-cta:before {
		width: 420px;
	}
}

@media (max-width: 660px) {
	.services-cta {
		padding: 40px 15px;
	}
}

/* SERVICES REDESIGN
----------------------------------------- */
.redesign-intro h1 {
	margin-bottom: 40px;
}

.redesign-intro p {
	margin-bottom: 10px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.redesign-intro p:last-of-type {
	margin-bottom: 25px;

	color: var(--color__black);
	font-size: 1.8rem;
	line-height: normal;
}

.redesign-intro ul {
	margin-bottom: 60px;
}

.redesign-intro ul li {
	margin-bottom: 15px;
	line-height: 2.7rem;
	font-family: var(--font-family__headings);
}

.redesign-intro ul li strong {
	font-size: 2rem;
}

.redesign-intro ul li {
	font-size: 1.6rem;
}

/* REDESIGN EXAMPLES */
.redesign-examples {
	margin-bottom: 110px;
}

.redesign-examples__slider {
	background-color: var(--color__grey);
	padding: 60px;
}

.redesign-examples__slider h3 {
	margin: 0 0 50px 0;

	border-bottom: 1px solid #dadada;
	padding-bottom: 45px;
	width: 100%;

	text-align: left;
}

.redesign-examples__slider h3 > span {
	color: var(--color__red);
}

.redesign-examples__slider .glider-next,
.redesign-examples__slider .glider-prev {
	top: 50%;
}

.redesign-examples__slider .glider-next {
	right: -10px;
}

.redesign-examples__slider .glider-prev {
	left: -10px;
}

.glider-item__hint {
	display: inline-block;

	position: relative;

	margin-bottom: 20px;
	border-radius: 33px;
	background-color: var(--color__black);
	padding: 12px 20px;

	color: var(--color__white);
	font-weight: var(--font-weight__bold);
	font-size: 1.4rem;
	font-family: var(--font-family__headings);

	text-transform: uppercase;
}

.glider-item__hint + img {
	border-radius: 5px;
}

.glider-item__hint::before {
	position: absolute;
	bottom: -8px;
	left: 50%;
	-webkit-transform: rotate(45deg) translateX(-50%);
	transform: rotate(45deg) translateX(-50%);

	background-color: var(--color__black);

	width: 10px;
	height: 10px;

	content: "";
}

.redesign-examples__slider-images {
	justify-content: space-between;
}

.redesign-examples__slider-image,
.redesign-examples__slider-item {
	width: calc(100% / 2 - 20px);
}

.redesign-examples__slider-images img {
	width: 100%;
}

@media (max-width: 1250px) {
	.redesign-examples__slider .glider-next {
		right: 10px;
	}

	.redesign-examples__slider .glider-prev {
		left: 10px;
	}
}

@media (max-width: 960px) {
	.redesign-examples__slider .glider-next,
	.redesign-examples__slider .glider-prev {
		top: initial;
		bottom: 40px;
	}

	.redesign-examples__slider .glider-next {
		right: 10%;
	}

	.redesign-examples__slider .glider-prev {
		left: 10%;
	}
}

@media (max-width: 660px) {
	.redesign-examples__slider .glider-next,
	.redesign-examples__slider .glider-prev {
		bottom: 13px;
	}

	.glider-item__hint {
		padding: 12px 9px;
		font-size: 1rem;
	}

	.redesign-examples__slider {
		padding: 30px;
	}
}

@media (max-width: 460px) {
	.redesign-examples__slider .glider-next,
	.redesign-examples__slider .glider-prev {
		bottom: 5px;
	}

	.redesign-examples__slider {
		padding: 15px;
	}
}

/* REDESIGN PROCESS */
.redesign-process__items,
.landing-pages-process__items {
	display: flex;
	flex-wrap: wrap;
}

.redesign-process__item,
.landing-pages-process__item {
	margin-bottom: 60px;
	padding-right: 40px;

	width: calc(100% / 4);
	font-family: var(--font-family__headings);
}

body {
	counter-reset: redesign-process__item;
}

.redesign-process__item::before,
.landing-pages-process__item::before {
	display: flex;
	justify-content: center;
	align-items: center;
	counter-increment: redesign-process__item;
	margin-bottom: 25px;

	border: 2px solid var(--color__red);
	border-radius: 50%;

	width: 60px;
	height: 60px;

	content: counter(redesign-process__item);
}

.redesign-process__item h3,
.landing-pages-process__item h3 {
	margin-bottom: 15px;
	font-size: 2rem;
}

.redesign-process__item p,
.landing-pages-process__item p {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
}

@media (max-width: 1200px) {
	.redesign-process__item,
	.landing-pages-process__item {
		width: calc(100% / 3);
	}
}

@media (max-width: 760px) {
	.redesign-process__item,
	.landing-pages-process__item {
		width: calc(100% / 2);
	}

	.redesign-process__item:nth-child(2n + 0),
	.landing-pages-process__item:nth-child(2n + 0) {
		padding-right: 0;
	}
}

@media (max-width: 460px) {
	.redesign-process__item,
	.landing-pages-process__item {
		margin-bottom: 20px;
		width: 100%;
	}

	.redesign-process__item,
	.landing-pages-process__item::before {
		padding-right: 0;
	}
}

/* CERTIFICATION TWO COLUMNS */
.certification__list.certification__list_columns {
	padding-right: 0;
}

.certification__list_columns {
	display: flex;
	flex-wrap: wrap;
}

.certification__list_columns .certification__list-item {
	width: calc(100% / 2);
}

/* .certification__list_columns .certification__list-item-info
{
	width: calc(100% - 150px - 30px);
} */

@media (max-width: 960px) {
	.certification__list {
		margin-right: auto;
		margin-left: auto;
		max-width: 520px;
	}

	.certification__list_columns .certification__list-item {
		width: 100%;
	}
}

@media (max-width: 660px) {
	.certification__list_columns .certification__list-item-info {
		width: calc(100% - 100px - 25px);
	}
}

/* SERVICES LANDING PAGE 
----------------------------------------- */
/* LANDING PAGES - INTRO */
.landing-pages-intro {
	margin-bottom: 70px;
}

.landing-pages-intro__info p {
	font-size: 1.8rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

.landing-pages-intro__info p:last-of-type {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

/* LANDING PAGES - EXAMPLES */
.landing-pages-examples__slider {
	background-color: var(--color__grey);
	padding: 60px;
}

.landing-pages-examples h3 {
	margin-bottom: 55px;

	text-align: center;
}

.landing-pages-examples h3 > span {
	color: var(--color__red);
}

.landing-pages-examples__slider-images {
	justify-content: center;

	gap: 50px;

	margin-bottom: 80px;
}

.landing-pages-examples__slider-image,
.landing-pages-examples__slider-item {
	max-width: 480px;
}

.landing-pages-examples__slider-text {
	text-align: center;
}

.landing-pages-examples__slider-text p {
	margin-right: auto;
	margin-left: auto;
	max-width: 850px;
}

.landing-pages-examples .glider-prev,
.landing-pages-examples .glider-next {
	top: 40%;
}

.landing-pages-examples .glider-prev {
	left: 30px;
}

.landing-pages-examples .glider-next {
	right: 30px;
}

@media (max-width: 960px) {
	.landing-pages-examples .glider-prev,
	.landing-pages-examples .glider-next {
		top: initial;
		bottom: 42px;
	}
}

@media (max-width: 760px) {
	.landing-pages-examples__slider-text p {
		font-size: 1.8rem;
		line-height: 2.7rem;
	}
}

/* SERVICES UX
----------------------------------------- */
/* UX INTRO INFO */
.ux-intro {
	margin-bottom: 150px;
}
.ux-intro h1 {
	margin-bottom: 20px;
}

.ux-intro__info {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.ux-intro__info p:nth-of-type(1) {
	color: var(--color__black);
	font-size: 1.8rem;
}
.ux-intro__info p:nth-of-type(2) {
	margin-bottom: 40px;
}

.ux-intro__info p:nth-of-type(3) {
	margin-bottom: 30px;

	color: var(--color__black);
	font-weight: var(--font-weight__bold);
	font-size: 4.5rem;
}

.ux-intro__info p:nth-of-type(2n + 4) {
	margin-bottom: 5px;

	color: var(--color__black);
	font-weight: var(--font-weight__bold);
	font-size: 2rem;
}

.ux-intro__info p:nth-of-type(2n + 5) {
	margin-bottom: 28px;
}

/* UX INTRO GALERY */
.ux-intro__gallery {
	display: grid;
	align-items: center;

	background-color: var(--color__grey);

	width: 45%;
	max-width: 500px;

	grid-gap: 20px;
	grid-template-rows: auto;
	grid-template-columns: repeat(4, 1fr);
}

.ux-intro__gallery a {
	position: relative;
}

.ux-intro__gallery img {
	width: 100%;
}

.ux-intro__gallery a:not(:first-of-type)::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	opacity: 0;
	transition: var(--transition-delay__default);
	background-color: rgba(var(--color__black-rgb), 0.7);

	content: "";
}

.ux-intro__gallery a:not(:first-of-type)::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	opacity: 0;
	transition: var(--transition-delay__default);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14' viewBox='0 0 20 14'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23fff' d='M9.989 10a2.997 2.997 0 0 1-2.993-3c0-1.656 1.34-3 2.993-3a2.997 2.997 0 0 1 2.993 3c0 .796-.315 1.56-.877 2.122A2.99 2.99 0 0 1 9.99 10zm9.999-3.3A10.643 10.643 0 0 0 9.994 0 10.643 10.643 0 0 0 .06 6.67 1 1 0 0 0 0 7c0 .107.02.212.06.31A10.644 10.644 0 0 0 9.994 14a10.644 10.644 0 0 0 9.934-6.67.81.81 0 0 0 .06-.33.93.93 0 0 0 0-.3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;

	content: "";
}

.ux-intro__gallery a:hover:not(:first-of-type)::before,
.ux-intro__gallery a:hover:not(:first-of-type)::after {
	opacity: 1;
}

.ux-intro__gallery a:nth-of-type(1) {
	grid-row-start: 1;
	grid-row-end: 1;
	grid-column-start: 1;
	grid-column-end: 5;
}

.ux-intro__gallery a:not(:first-of-type) {
	border-radius: 5px;
	overflow: hidden;
}

@media (max-width: 860px) {
	.ux-intro {
		margin-bottom: 75px;
	}

	.ux-intro > .row {
		flex-direction: column;
	}

	.ux-intro__info {
		margin-bottom: 60px;
	}

	.ux-intro__gallery {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 760px) {
	.ux-intro__info p:nth-of-type(3) {
		font-size: 2.5rem;
	}
}

/* UX RISKS */
.ux-risks {
	margin-bottom: 150px;

	background: var(--color__grey);
	padding: 120px 0;
}

.ux-risks h2 {
	margin-bottom: 10px;
}

.ux-risks p {
	margin-bottom: 70px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 2.8rem;
	font-family: var(--font-family__headings);
}

.ux-risks .block_list ul li {
	font-size: 1.6rem;
	font-family: var(--font-family__headings);
}

.ux-risks__column {
	border-right: 1px solid var(--color__grey-dark);
	border-left: 1px solid var(--color__grey-dark);
	padding: 0 50px;
	width: calc(100% / 3);
}

.ux-risks__column:first-of-type {
	border-right: none;
	border-left: none;
	padding-right: 40px;
	padding-left: 0;
}

.ux-risks__column:last-of-type {
	border-right: none;
	border-left: none;
	padding-right: 0;
	padding-left: 40px;
}

.ux-risks__column figure {
	margin-bottom: 25px;
	max-width: 80px;
	height: auto;
}

.ux-risks__column h3 {
	margin-bottom: 20px;
	font-size: 2.2rem;
	line-height: 3.2rem;
}

@media (max-width: 860px) {
	.ux-risks__column {
		width: 50%;
	}

	.ux-risks__column {
		border-right: none;
		padding: 0 0 0 25px;
	}

	.ux-risks__column:last-of-type {
		padding-left: 0;
	}
}

@media (max-width: 760px) {
	.ux-risks {
		margin-bottom: 50px;
		padding: 48px 0;
	}
}

@media (max-width: 660px) {
	.ux-risks__column {
		width: 100%;
	}

	.ux-risks__column,
	.ux-risks__column:first-of-type {
		border-right: none;
		border-left: none;
		padding: 0;
	}
}

/* UX TABLE */
.ux-table {
	margin-bottom: 100px;
}

.ux-table h2 {
	margin-bottom: 6rem;
	line-height: normal;
}

.ux-table .block_table table {
	background: none;
}

.ux-table .block_table td,
.ux-table .block_table th {
	border: none;
}

.ux-table .block_table thead th:nth-of-type(n + 2) {
	border-right: 1px solid var(--color__grey-dark);
	border-bottom: 1px solid var(--color__grey-dark);
}

.ux-table .block_table tbody td:nth-of-type(n + 2) {
	border-right: 1px solid var(--color__grey-dark);
}

.ux-table .block_table thead th:last-of-type,
.ux-table .block_table tbody td:last-of-type {
	border-right: none;
}

.ux-table .block_table thead th:nth-of-type(n + 2),
.ux-table .block_table tbody td:nth-of-type(n + 2) {
	background-color: var(--color__grey);
	width: 15%;
}

.ux-table .block_table .table-red {
	color: var(--color__red);
	font-weight: var(--font-weight__medium);
	font-size: 1.7rem;
}

.ux-table .block_table tfoot td {
	color: var(--color__red);
	font-weight: var(--font-weight__bold);
}

.ux-table .block_table tfoot td:first-of-type {
	color: var(--color__black);
	text-align: left;
}

.ux-table .block_table tfoot td {
	border: none;
}

.ux-table .block_table tbody td:first-of-type {
	text-align: left;
	width: 55%;
}

.ux-table .block_table tbody td > strong {
	font-size: 1.7rem;
}

.ux-table .cell-icon button {
	display: inline-block;
	pointer-events: none;

	color: var(--color__black);
	font-size: 1.5rem;
	line-height: normal;

	text-align: left;
}

.ux-table .cell-icon button span {
	pointer-events: all;
}

.ux-table .cell-icon button span a {
	transition: color 0.5s;
	text-decoration: underline;
}

.table-icon-yes,
.table-icon-no,
.table-icon-devices {
	display: inline-block;
	background-position: center;

	background-repeat: no-repeat;

	width: 24px;
	height: 20px;
}

.table-icon-yes {
	background-image: url("https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1627235264/web-assets/icon_yes.svg");
}

.table-icon-no {
	background-image: url("https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1627235264/web-assets/icon_no.svg");
}

.table-icon-devices {
	background-image: url("https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1627235264/web-assets/icon_devices.svg");
}

@media (max-width: 760px) {
	.ux-table table thead th:nth-child(2) {
		position: relative;
	}

	.ux-table table thead th:nth-child(2):before {
		display: block;
		position: absolute;
		top: 10px;
		left: -65px;

		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='351' height='434' viewBox='35.265 27.14 351 434'%3E%3Cpath d='M259.23 106.141h62.08l-8.096 6.595c-3.502 2.853-4.037 8.013-1.193 11.526a8.137 8.137 0 0 0 6.344 3.03c1.809 0 3.629-.6 5.143-1.832l25.969-21.152c.008-.006.014-.013.021-.02.221-.18.43-.372.631-.574.057-.058.105-.12.16-.179a7.13 7.13 0 0 0 .406-.464c.064-.079.123-.163.182-.244.113-.15.221-.303.322-.46.055-.085.105-.171.156-.258a7.69 7.69 0 0 0 .273-.505 8.287 8.287 0 0 0 .352-.814c.029-.081.061-.161.088-.244.068-.198.123-.402.174-.608.02-.079.043-.155.061-.233.047-.217.082-.438.111-.661.01-.07.025-.14.031-.211.031-.291.051-.587.051-.887s-.02-.596-.051-.887c-.006-.071-.021-.142-.031-.213a7.92 7.92 0 0 0-.111-.658c-.018-.08-.041-.156-.061-.236a6.893 6.893 0 0 0-.174-.606c-.027-.083-.059-.164-.088-.245a8.261 8.261 0 0 0-.352-.812 8.826 8.826 0 0 0-.275-.506c-.051-.086-.1-.172-.154-.256a9.405 9.405 0 0 0-.324-.465c-.061-.08-.115-.161-.178-.238a7.698 7.698 0 0 0-.422-.482c-.049-.053-.094-.108-.145-.159a8.34 8.34 0 0 0-.637-.581l-.018-.016-25.969-21.151a8.143 8.143 0 0 0-11.486 1.198c-2.844 3.514-2.309 8.674 1.193 11.525l8.098 6.595H259.23c-4.51 0-8.166 3.669-8.166 8.194s3.656 8.194 8.166 8.194m93.074 240.841c-2.117 21.851-10.725 42.416-24.234 57.91-18.541 21.264-44.128 32.047-76.049 32.047-24.342 0-47.371-8.465-68.451-25.157-16.033-12.696-24.841-25.636-24.92-25.753a9.105 9.105 0 0 0-.316-.442c-24.352-31.636-66.91-110.341-79.373-133.71-.451-.845-.139-1.911.418-2.231 4.609-2.64 9.601-3.911 14.546-3.911 9.24 0 18.316 4.439 24.406 12.683l43.065 58.282a8.147 8.147 0 0 0 9.121 2.901 8.19 8.19 0 0 0 5.605-7.78V70.398c0-5.301 2.076-10.365 5.697-13.895 3.222-3.14 7.365-4.807 11.687-4.674 9.071.266 16.451 8.845 16.451 19.125v151.085c0 4.525 3.656 8.194 8.167 8.194 4.509 0 8.166-3.668 8.166-8.194v-24.082c.377-9.977 7.787-17.785 16.892-17.785 9.328 0 16.918 8.333 16.918 18.575v32.404c0 4.525 3.655 8.194 8.166 8.194 4.509 0 8.166-3.668 8.166-8.194 0-10.243 7.589-18.575 16.917-18.575s16.918 8.333 16.918 18.575v26.07c0 1.021.189 2.034.561 2.986l.461 1.182c1.332 3.413 4.756 5.529 8.395 5.169a8.177 8.177 0 0 0 7.246-6.692c1.564-8.655 8.541-14.936 16.586-14.936 9.219 0 16.736 8.136 16.916 18.21l-8.128 83.842zm-8.791-118.44c18.336 0 33.25 15.684 33.25 34.963 0 .265-.012.529-.037.792l-8.166 84.271c-2.445 25.23-12.459 49.065-28.197 67.115-21.781 24.979-51.504 37.645-88.342 37.645-27.897 0-55.227-10.047-79.034-29.051-16.794-13.408-26.313-26.807-27.726-28.862-24.452-31.853-64.566-105.553-80.701-135.806-4.583-8.591-1.569-19.446 6.719-24.195 20.512-11.751 45.817-6.182 60.17 13.242l28.338 38.354V70.398c0-9.705 3.882-19.053 10.65-25.65 6.416-6.252 14.797-9.564 23.542-9.299 17.815.521 32.308 16.449 32.308 35.506v97.631a32.003 32.003 0 0 1 16.892-4.801c18.334 0 33.25 15.684 33.25 34.962v2.314c4.958-3.095 10.745-4.873 16.917-4.873 18.334 0 33.25 15.684 33.25 34.963v2.259c4.989-3.104 10.79-4.868 16.917-4.868zM70.941 125.46l-25.969-21.15-.021-.02a8.37 8.37 0 0 1-.63-.575c-.056-.058-.106-.12-.161-.178a7.461 7.461 0 0 1-.407-.464c-.063-.08-.122-.162-.182-.244a8.194 8.194 0 0 1-.32-.46c-.055-.085-.106-.171-.158-.258a8.743 8.743 0 0 1-.396-.76 8.47 8.47 0 0 1-.228-.558c-.03-.082-.062-.163-.09-.244a8.292 8.292 0 0 1-.173-.608c-.02-.079-.042-.155-.061-.234a8.967 8.967 0 0 1-.111-.659c-.01-.071-.024-.141-.033-.212a8.355 8.355 0 0 1-.049-.887c0-.3.018-.595.049-.886.008-.071.023-.141.033-.212a8.41 8.41 0 0 1 .111-.66c.018-.079.041-.155.061-.233.052-.207.107-.41.173-.608.028-.083.061-.163.09-.245.07-.19.145-.376.229-.559.039-.085.08-.169.121-.255a8.813 8.813 0 0 1 .431-.761c.102-.161.212-.314.325-.467.06-.079.115-.159.176-.237a8.09 8.09 0 0 1 .424-.483c.048-.052.092-.107.143-.159.203-.204.415-.398.637-.581l.018-.017 25.969-21.151c3.5-2.852 8.643-2.315 11.486 1.198 2.843 3.514 2.309 8.674-1.194 11.526l-8.098 6.595h62.083c4.51 0 8.167 3.668 8.167 8.194 0 4.526-3.657 8.194-8.167 8.194H73.137l8.097 6.596c3.502 2.853 4.037 8.012 1.193 11.526a8.137 8.137 0 0 1-6.344 3.03 8.121 8.121 0 0 1-5.142-1.834z'/%3E%3C/svg%3E");
		background-size: 40px 50px;

		width: 40px;
		height: 50px;

		content: "";
	}

	.ux-table .cell-icon button {
		position: relative;

		vertical-align: middle;
		margin: -2px 0 0 3px;

		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='396' height='397' viewBox='11.265 46.14 396 397'%3E%3Cpath d='M209.765 56.41c-104.463 0-188.789 84.326-188.789 188.789s84.326 188.789 188.789 188.789 188.789-84.326 188.789-188.789S314.228 56.41 209.765 56.41zm20.977 276.47c0 11.328-9.649 20.557-20.977 20.557s-20.977-9.229-20.977-20.557V225.481c0-11.327 9.649-20.557 20.977-20.557s20.977 9.23 20.977 20.557V332.88zm-20.557-154.806c-11.327 0-20.557-9.23-20.557-20.557 0-11.328 9.23-20.557 20.557-20.557 11.328 0 20.557 9.229 20.557 20.557 0 11.327-9.23 20.557-20.557 20.557z'/%3E%3C/svg%3E");
		background-size: 18px 18px;

		width: 18px;
		height: 18px;
		pointer-events: all;
	}

	.ux-table .cell-icon button span {
		display: none;
		position: absolute;
		top: calc(100% + 20px);
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 10;

		cursor: default;

		border-radius: 10px;
		background: var(--color__grey);
		padding: 10px 15px;

		width: 240px;
	}

	.ux-table .cell-icon button span:before {
		display: block;
		position: absolute;
		top: -10px;
		right: 0;
		left: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		z-index: 5;
		margin: 0 auto;

		background: var(--color__grey);

		width: 20px;
		height: 20px;

		content: "";
	}
}

@media (max-width: 630px) {
	.ux-table .block_table table {
		min-width: 570px;
	}
}

/* WORKSHOPS	
----------------------------------------- */
.workshops-intro {
	margin-bottom: 145px;
}

.workshops-intro > h1 {
	margin-bottom: 15px;
}

.workshops-intro__text {
	margin-bottom: 140px;
}

.workshops-intro__text-left {
	width: calc(100% / 2 - 70px);
}

.workshops-intro__text > p {
	color: rgba(var(--color__black-rgb), 0.7);
	line-height: normal;
	font-family: var(--font-family__headings);
}

.workshops-intro__text-left p {
	margin-bottom: 40px;

	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: 3rem;
	font-family: var(--font-family__headings);
}

.workshops-intro__text-left p:last-of-type {
	margin-bottom: 0;
}

.workshops-intro__image {
	margin: 0 auto 30px auto;
	width: calc(100% / 2);
	max-width: 570px;
}

@media (max-width: 860px) {
	.workshops-intro {
		margin-bottom: 70px;
	}

	.workshops-intro__text {
		margin-bottom: 55px;
	}

	.workshops-intro__text-left,
	.workshops-intro__image {
		width: 100%;
	}

	.workshops-intro__image {
		order: 0;
	}

	.workshops-intro__text-left {
		order: 1;
	}

	.workshops-intro__text-left p {
		margin-bottom: 20px;
	}
}

/* WORKSHOP TOPICS */
.workshops-topics {
	margin-bottom: 150px;
}

.workshops-topics h2 {
	margin-bottom: 55px;
}

.workshops-topics__grid {
	display: grid;

	grid-gap: 25px;
	grid-template-columns: repeat(auto-fill, minmax(277px, auto));
}

.workshops-topics__column {
	border-radius: 5px;
	background-color: var(--color__grey);
	padding: 55px 45px 30px 35px;

	text-align: center;
}

.workshops-topics__column:last-of-type {
	grid-column: 2 / 2;
	background-color: var(--color__black);
	color: var(--color__white);
}

.workshops-topics__column:last-of-type p {
	color: rgba(var(--color__white-rgb), 0.7);
}

.workshops-topics__column > figure {
	margin: 0 auto 45px auto;
	width: 80px;
	height: 60px;
}

.workshops-topics__column h3 {
	margin-bottom: 15px;
	font-size: 2.2rem;
	line-height: 3.2rem;
}

.workshops-topics__column p {
	color: rgba(var(--color__black-rgb), 0.7);
	font-size: 1.6rem;
	line-height: normal;
	font-family: var(--font-family__headings);
}

@media (max-width: 960px) {
	.workshops-topics__column:last-of-type {
		grid-column: 1;
	}

	.workshops-topics {
		margin-bottom: 70px;
	}
}

/* WORKSHOP RESPONSES */
.workshops-responses h2 {
	margin-bottom: 70px;
}

.workshops-responses > .row {
	margin: 0 auto 75px auto;
	max-width: 850px;
}

.workshops-responses__ranking {
	align-items: center;

	margin-bottom: 15px;
	padding-right: 20px;
}

.workshops-responses__ranking-stars > div {
	margin-right: 50px;
	font-size: 34px;

	--stars-percent: calc(var(--rating) / 10 * 100%);
}

.workshops-responses__ranking-stars > div::before {
	background: linear-gradient(
		90deg,
		var(--color__yellow) var(--stars-percent),
		var(--color__grey-dark) var(--stars-percent)
	);
	-webkit-background-clip: text;
	content: "★★★★★";

	-webkit-text-fill-color: transparent;
}

.workshops-responses__ranking-stars > div + span {
	font-weight: var(--font-weight__bold);
	font-size: 3rem;
	font-family: var(--font-family__headings);
}

.workshops-responses__ranking-stars > div + span::before {
	padding-right: 5px;

	content: "9,1";
}

.workshops-responses__warranty figure {
	display: inline-block;
	margin-right: 25px;

	width: 62px;
	height: 62px;
}

.workshops-responses__warranty figure img {
	width: 100%;
}

.workshops-responses__ranking p,
.workshops-responses__warranty p {
	max-width: 250px;
	font-size: 2.2rem;
	line-height: 3.2rem;
	font-family: var(--font-family__headings);
}

.workshops-responses__references {
	position: relative;
}

.workshops-responses__references-text p {
	text-align: left;
}

.workshops-responses__references-text p:not(strong) {
	font-weight: var(--font-weight__normal);
}

.workshops-responses__references .glider__item figure {
	margin: 10px auto 0 auto;
	max-width: 150px;
}

.workshops-responses__references .glider__item figure > img {
	margin: 0 auto;
}

@media (max-width: 760px) {
	.workshops-responses h2 {
		margin-bottom: 40px;
		font-size: 3rem;
	}

	.workshops-responses > .row {
		margin-bottom: 40px;
	}

	.workshops-responses__references-text p {
		font-size: 1.6rem;
	}
}

/* NEWSLETTER
----------------------------------------- */
.newsletter-intro {
	background-color: var(--color__grey);
	padding: 175px 0 15px 0;
}

.newsletter-intro h1 {
	margin-bottom: 55px;

	max-width: 730px;
	font-size: 4.5rem;
	line-height: 6.8rem;
}

.newsletter-intro h1 mark {
	position: relative;
	background: none;

	color: var(--color__black);
}

.newsletter-intro h1 mark:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: text;
	margin-top: -1px;
	margin-left: 1px;

	background: transparent
		url("https://res.cloudinary.com/ilincev/image/upload/f_auto,q_auto:eco/v1626084413/web-assets/shape_line-medium.svg")
		center center no-repeat;
	background-size: cover;

	width: 131px;
	height: 38px;

	content: "";
}

.newsletter-intro h2 {
	margin-bottom: 30px;
	font-weight: var(--font--weight__normal);
	font-size: 1.7rem;
	line-height: normal;
}

.newsletter-intro__features {
	margin-bottom: 45px;
	max-width: 730px;
}

.newsletter-intro__features li {
	align-items: center;
	margin-bottom: 20px;

	width: 50%;
	font-size: 1.7rem;
	font-family: var(--font-family__headings);
}

.newsletter-intro__features li > img {
	margin-right: 15px;
}

.newsletter-intro .clients__logos {
	margin: 0;
}

.newsletter-form-intro {
	margin-bottom: 125px;

	background: var(--color__grey);
	padding: 30px 0;
}

.newsletter-form-intro form {
	max-width: 915px;
}

.newsletter-form-intro .mc4wp-form-fields {
	margin: 0;
}

.newsletter-form-intro form input[type="email"] {
	border-color: var(--color__grey-dark);
	background-color: var(--color__white);
	width: calc(64% - 10px);
}

.newsletter-form-intro form input[type="submit"] {
	cursor: pointer;

	background-image: var(--gradient__red);
	width: calc(36% - 10px);
}

/* NEWSLETTER RESPONSES */
.newsletter-responses {
	padding-bottom: 100px;
}

.newsletter-responses h2 {
	margin-bottom: 50px;
}

.newsletter-responses__grid {
	margin: 0 -15px;
}

.newsletter-responses__grid-item {
	padding: 1.3%;
	width: 33.3%;
}

.newsletter-responses__grid-wrapper {
	background-color: var(--color__grey);

	padding: 30px 30px 20px 30px;
	font-family: var(--font-family__headings);
}

.newsletter-responses__grid-item p {
	margin-bottom: 23px;

	color: rgba(35, 34, 36, 0.8);
	font-size: 1.6rem;
	line-height: 2.7rem;
}

.newsletter-responses__grid-item span {
	color: var(--color__black);
	font-weight: var(--font-weight__medium);
	font-size: 1.7rem;
}

@media (max-width: 1050px) {
	.newsletter-intro {
		padding-top: 75px;
	}
}

@media (max-width: 960px) {
	.newsletter-responses__grid-item {
		width: 50%;
	}
}

@media (max-width: 760px) {
	.newsletter-intro {
		padding-top: 35px;
	}

	.newsletter-intro h1 {
		margin-bottom: 24px;
		font-size: 3rem;
		line-height: 3.8rem;
	}

	.newsletter-intro h1 mark:before {
		background-size: 70%;
	}

	.newsletter-intro__features li {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.newsletter-intro__features {
		margin-bottom: 0;
	}

	.newsletter-responses h2 {
		margin-bottom: 35px;
	}
}

@media (max-width: 600px) {
	.newsletter-responses {
		padding-bottom: 65px;
	}

	.newsletter-intro form .mc4wp-form-fields {
		flex-direction: column;

		margin-bottom: 30px;
	}

	.newsletter-intro form input[type="email"],
	.newsletter-intro form input[type="submit"] {
		width: 100%;
	}

	.newsletter-intro form input[type="email"] {
		margin-bottom: 10px;
	}

	.newsletter-intro h2 {
		font-weight: var(--font-weight__bold);

		text-align: center;
	}

	.newsletter-responses__grid-item {
		padding: 5px;
		width: 100%;
	}

	.page-template-page-newsletter .newsletter-intro {
		padding-bottom: 24px;
	}

	.newsletter-responses h2 {
		text-align: center;
	}
}

@media (max-width: 490px) {
	.newsletter-intro__features li {
		position: relative;

		padding-right: 15px;
		padding-left: 30px;
	}

	.newsletter-intro__features li > img {
		position: absolute;
		top: 5px;
		right: calc(100% - 35px);
	}
}
