@charset "UTF-8";

:root {
	/* Colors */
	--agds-color-1: #06161d;
	--agds-color-1-rgb: 6, 22, 29;

	--agds-color-2: #f37800;
	--agds-color-2-rgb: 243, 120, 0;

	--agds-body-bg: #00111b;
	--agds-body-bg-rgb: 0, 17, 27;

	--agds-white: #fff;
	--agds-white-rgb: 255, 255, 255;
	--agds-light: #efefef;
	--agds-light-2: #eeeeee;
	--agds-light-3: #bbbbbb;
	--agds-grey: #636363;
	--agds-dark: #1d2327;
	--agds-black: #000;
	--agds-black-rgb: 0, 0, 0;

	--agds-success: #198754;
	--agds-info: #0dcaf0;
	--agds-warning: #ffc107;
	--agds-danger: #dc3545;

	/* Typography */
	--agds-font-primary: 'Rubik';
	--agds-body-font-size: 16px;
	--agds-body-font-weight: 400;
	--agds-body-line-height: 1.5;

	/* Sizes */
	--max-viewport: 1827;
	--min-viewport: 360;
	--agds-container: 1300px;
	--agds-header-height: calc(80px + 1.5vw);
	--agds-border-radius: 3px;

	/* Gutter */
	--agds-gutter-xl: 24px;
	--agds-gutter-md: calc(var(--agds-gutter-xl) * 0.5);
	--agds-gutter-sm: calc(var(--agds-gutter-xl) * 0.25);

	/* Gap */
	--agds-gap-xl: calc(36px + 3.3vw);
	--agds-gap-md: calc(30px + 2.2vw);
	--agds-gap-sm: calc(24px + 1.5vw);

	/* Transitions */
	--agds-transition-duration-sm: 250ms;
	--agds-transition-timing-function: ease;
	--agds-transition: var(--agds-transition-sm);

	/* Animations */
	--agds-animate-duration: 800ms;

}

/* MAIN */
html,
body {
	color: var(--agds-light);
	background-color: var(--agds-body-bg);
	letter-spacing: .6px;
	min-height: 100dvh;
	cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiI+CjxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI1IiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIvPgo8L3N2Zz4=), pointer !important;
	position: relative;
}

body._hide {
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
}

html.with-fancybox {
	overflow: hidden !important;
}

a,
button,
.cur-custom-pointer {
	cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTUiIGN4PSI1IiBjeT0iNSIgcj0iNSIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==), pointer !important;
}

.main {
	margin-top: var(--agds-header-height);
	min-height: calc(100dvh - var(--agds-header-height));
	padding-bottom: calc(var(--agds-header-height) - 20px);
	padding-top: 30px;
	position: relative;
}

.main>section {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
	width: 100%;
}

.main>.homepage {
	width: auto;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.main .container {
	position: relative;
	z-index: 2;
}

/* Content */
.content>*:first-child {
	margin-top: 0;
}

.content>*:last-child {
	margin-bottom: 0;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	margin: 30px 0 12px;
}

.content p {
	margin-bottom: 16px;
}

.content .btn {
	margin-top: 50px;
}

.content .btn:not(:last-of-type) {
	margin-right: 30px;
}

.content ul,
.content ol {
	margin-bottom: 16px;
}

.content ol {
	list-style-type: decimal;
}

.content ul li {
	margin-bottom: 4px;
	padding-left: 23px;
	position: relative;
}

.content ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 5px;
	border-radius: 50%;
	width: 3px;
	height: 3px;
	background-color: var(--agds-color-2);
}

.content ul li::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 0px;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	border: 1px solid var(--agds-color-2);
}

.content .has-text-align-center .content-btn-wrap,
.has-text-align-center {
	text-align: center
}

.content .has-text-align-right .content-btn-wrap,
.content .has-text-align-right {
	text-align: right
}

@media screen and (max-width: 1199px) {
	.container {
		padding-right: 25px;
		padding-left: 25px;
	}
}

@media screen and (max-width: 767px) {
	::-webkit-scrollbar {
		width: 0;
	}

	.main__inner {
		padding-bottom: 30px;
	}

	.container {
		padding-right: calc(0.5 * var(--agds-gutter-xl));
		padding-left: calc(0.5 * var(--agds-gutter-xl));
	}
}

._animate-fadeIn {
	animation-name: fadeIn;
	animation-duration: var(--agds-animate-duration);
}

@keyframes fadeIn {
	0% {
		opacity: 0.2;
	}

	100% {
		opacity: 1;
	}
}

._animate-fadeUp {
	animation-name: fadeUp;
	animation-duration: var(--agds-animate-duration);
}

@keyframes fadeUp {
	0% {
		opacity: 0.2;
		transform: translateY(10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Main overlay */
.main-overlay,
.fancybox__backdrop {
	background-color: rgba(var(--agds-body-bg-rgb), 60%);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.main-overlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 7;
}

/* Decor ZigZag */
.icon-i-zigzag {
	display: block;
	height: 10px;
	width: 60px;
	margin-left: 0;
	max-width: 100%;
	fill: var(--agds-color-2);
}

.icon-i-zigzag.center {
	margin: 20px auto;
}

/* Cookie Info */
.cookies-info {
	position: fixed;
	bottom: 20px;
	left: -5px;
	font-size: 14px;
	max-width: 100%;
	background-color: rgba(var(--agds-color-1-rgb), 80%);
	padding: 20px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border-radius: var(--agds-border-radius);
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	border: 1px solid rgb(var(--agds-white-rgb), 8%);
	-webkit-transition: -webkit-transform .7s cubic-bezier(0.19, 1, 0.22, 1);
	transition: -webkit-transform .7s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: transform .7s cubic-bezier(0.19, 1, 0.22, 1);
	transition: transform .7s cubic-bezier(0.19, 1, 0.22, 1);
	transition: transform .7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform .7s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 10;
}

.cookies-info._open {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.cookies-info a {
	font-weight: 500;
	position: relative;
}

.cookies-info a::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 3;
	right: -17px;
	top: 4px;
	width: 12px;
	height: 12px;
	opacity: 0;
	visibility: hidden;
	background-image: url('data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZD0iTTIxIDlMMjEgM00yMSAzSDE1TTIxIDNMMTMgMTFNMTAgNUg3LjhDNi4xMTk4NCA1IDUuMjc5NzYgNSA0LjYzODAzIDUuMzI2OThDNC4wNzM1NCA1LjYxNDYgMy42MTQ2IDYuMDczNTQgMy4zMjY5OCA2LjYzODAzQzMgNy4yNzk3NiAzIDguMTE5ODQgMyA5LjhWMTYuMkMzIDE3Ljg4MDIgMyAxOC43MjAyIDMuMzI2OTggMTkuMzYyQzMuNjE0NiAxOS45MjY1IDQuMDczNTQgMjAuMzg1NCA0LjYzODAzIDIwLjY3M0M1LjI3OTc2IDIxIDYuMTE5ODQgMjEgNy44IDIxSDE0LjJDMTUuODgwMiAyMSAxNi43MjAyIDIxIDE3LjM2MiAyMC42NzNDMTcuOTI2NSAyMC4zODU0IDE4LjM4NTQgMTkuOTI2NSAxOC42NzMgMTkuMzYyQzE5IDE4LjcyMDIgMTkgMTcuODgwMiAxOSAxNi4yVjE0IiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+IDwvZz4KDTwvc3ZnPg==');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transition: opacity var(--agds-transition);
	-o-transition: opacity var(--agds-transition);
	transition: opacity var(--agds-transition);
}

.cookies-info a:hover::after {
	opacity: 1;
	visibility: visible;
}

.cookies-info__btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 20px;
	line-height: .7;
}

/* Title bg line */
.title--bg-line {
	position: relative;
	display: inline-block;
	line-height: 1.4;
}

.title--bg-line::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	height: 40%;
	-webkit-transform: rotate(7deg);
	-ms-transform: rotate(7deg);
	transform: rotate(7deg);
	background-color: var(--agds-color-2);
	z-index: 0;
}

.title--bg-line span {
	position: relative;
}

/* Vertical Title */
.vertical-title {
	position: fixed;
	right: -50px;
	top: 55%;
	font-size: 18px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-transform: translate(-100%, -50%);
	-ms-transform: translate(-100%, -50%);
	transform: translate(-100%, -50%);
	letter-spacing: 2px;
	line-height: 1;
	-webkit-text-orientation: mixed;
	text-orientation: mixed;
	opacity: 0;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 2;
}

.vertical-title__icon {
	fill: var(--agds-white);
	margin-bottom: 20px;
	max-width: 18px;
	max-height: 18px;
}

/* Section Title */
.section-title-wrap {
	margin-bottom: 40px;
	padding-bottom: 30px;
	pointer-events: none;
	position: relative;
}

.section-title-wrap .icon-i-zigzag {
	position: absolute;
	bottom: 0;
	opacity: .8;
	fill: var(--agds-white);
}

.section-title-bg {
	position: absolute;
	top: -20px;
	left: -20px;
	display: block;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 0.7;
	font-size: 90px;
	color: var(--agds-color-1);
	letter-spacing: -0.04em;
	opacity: .4;
	z-index: 0;
}

.section-title {
	position: relative;
	display: inline-block;
	line-height: 0.75;
}

.section-title span {
	position: relative;
	z-index: 3;
}


.section-title span[data-count]::after {
	content: attr(data-count);
	position: absolute;
	top: -20px;
	right: -20px;
	width: 28px;
	height: 28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	font-size: 13px;
	letter-spacing: -1px;
	color: white;
	font-weight: 500;
	background-color: var(--agds-color-2);
}

h2.section-title {
	font-size: 40px;
	font-weight: 600;
}

h2.section-title.title--bg-line::before {
	bottom: -4px;
	width: 47%;
	height: 69%;
}

/* Blinking */
.title--blinking::after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: -21px;
	width: 17px;
	height: 4px;
	background: var(--agds-white);
	display: inline-block;
	-webkit-animation: qodefBlink 1.2s infinite;
	animation: qodefBlink 1.2s infinite;
}

@-webkit-keyframes qodefBlink {

	0%,
	100% {
		opacity: 0
	}

	70% {
		opacity: 1
	}
}

@keyframes qodefBlink {

	0%,
	100% {
		opacity: 0
	}

	70% {
		opacity: 1
	}
}

/* Cursor Animation */
.ripple {
	width: 5px;
	height: 5px;
	background-color: transparent;
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

@-webkit-keyframes ripple-effect {
	to {
		-webkit-transform: scale(13);
		transform: scale(13);
		opacity: 0.01;
	}
}

@keyframes ripple-effect {
	to {
		-webkit-transform: scale(13);
		transform: scale(13);
		opacity: 0.01;
	}
}

@media screen and (max-width: 767px) {
	.section-title-wrap {
		padding-bottom: 22px;
		margin-bottom: 30px;
	}

	.section-title-bg {
		top: -15px;
		left: -4px;
		font-size: 55px;
	}

	.main-overlay {
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
	}

	.section__inner {
		margin-bottom: calc(2rem + 2vw);
	}

	h2.section-title {
		font-size: 28px;
	}

	h2.section-title.title--bg-line::before {
		width: 45%;
		height: 64%;
	}

	.title--blinking:after {
		right: -15px;
		width: 12px;
		height: 2px;
	}

	.section-title span[data-count]::after {
		top: -17px;
		right: -15px;
		width: 24px;
		height: 24px;
		font-size: 11px;
	}
}

/* BUTTONS */
.btn-wrap {
	margin-top: 40px;
}

.btn-wrap .btn-item:not(:last-child) {
	margin-right: 20px;
}

.btn {
	display: inline-block;
	text-transform: uppercase;
	padding: 17px 40px;
	text-align: center;
	line-height: 0.8;
	letter-spacing: 1px;
	outline: none;
	font-weight: 500;
	font-size: 14px;
	border-radius: 38px 2px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

/* Main Button */
.btn-main {
	color: var(--agds-white);
	background-color: var(--agds-color-2);
	border: 1px solid var(--agds-color-2);
	will-change: tansform, background-color, color;
}

.btn-main:hover {
	background-color: var(--agds-color-2);
	color: var(--agds-white);
}

/* Main Outline */
.btn-outline {
	padding-top: 16px;
	padding-bottom: 16px;
	outline-width: 0px;
	outline-style: solid;
	outline-offset: 0px;
	outline-color: rgba(255, 255, 255, 0.5);
	border: 2px solid var(--agds-white);
	-webkit-transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
	outline-width: 1px;
	outline-color: rgba(255, 255, 255, 0);
	outline-offset: 15px;
}

.btn-jeday {
	overflow: hidden;
	position: relative;
}

.btn-jeday span {
	z-index: 20;
}

.btn-jeday:after {
	background: var(--agds-white);
	content: "";
	height: 155px;
	left: -75px;
	opacity: 0.2;
	position: absolute;
	top: -50px;
	-webkit-transform: rotate(35deg);
	-ms-transform: rotate(35deg);
	transform: rotate(35deg);
	-webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
}

.btn-jeday:hover:after {
	left: 120%;
}

.btn-zoom:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

@media screen and (max-width: 767px) {
	.btn-wrap {
		margin-top: 30px;
		text-align: center;
	}

	.btn-wrap .btn-item:not(:last-child) {
		margin-right: 0;
	}

	.btn-item:not(:last-child) {
		margin-bottom: 20px;
	}

	.btn {
		padding: 14px 20px;
		font-size: 12px;
		width: 100%;
		max-width: 65%;
	}
}

@media screen and (max-width: 350px) {
	.btn {
		width: 100%;
		max-width: 100%;
	}
}

/* Wobble Vertical */
.anim--wobble:hover {
	-webkit-animation: anim_wobble 1s ease-in-out;
	animation: anim_wobble 1s ease-in-out;
}

@-webkit-keyframes anim_wobble {
	16.65% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}

	33.3% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
	}

	49.95% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}

	66.6% {
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px);
	}

	83.25% {
		-webkit-transform: translateY(1px);
		transform: translateY(1px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes anim_wobble {
	16.65% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}

	33.3% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px);
	}

	49.95% {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
	}

	66.6% {
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px);
	}

	83.25% {
		-webkit-transform: translateY(1px);
		transform: translateY(1px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* PRELOADER */
.preloader-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.preloader-bar span {
	-webkit-animation: loading-bar 2s 1;
	animation: loading-bar 2s 1;
	display: block;
	height: 3px;
	background-color: var(--agds-color-2);
	opacity: 0;
	-webkit-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
}

/* Transition */
.transition-container {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 100dvh;
	overflow: hidden;
	z-index: 9;
	pointer-events: none;
}

.transition-screen {
	position: absolute;
	bottom: 0;
	background-color: rgb(var(--agds-color-1-rgb), 85%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	height: 0%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
}

.icon-i-logo {
	fill: var(--agds-white);
	width: 70px;
	height: 70px;
}

@-webkit-keyframes loading-bar {
	0% {
		width: 0;
		opacity: 1;
	}

	90% {
		width: 90%;
		opacity: 1;
	}

	100% {
		width: 100%;
		opacity: 0;
	}
}

@keyframes loading-bar {
	0% {
		width: 0;
		opacity: 1;
	}

	90% {
		width: 90%;
		opacity: 1;
	}

	100% {
		width: 100%;
		opacity: 0;
	}
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--agds-color-1-rgb), 85%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	-webkit-transition: opacity .5s linear;
	-o-transition: opacity .5s linear;
	transition: opacity .5s linear;
	z-index: 99;
}

.preloader .icon-i-logo {
	-webkit-animation: infinite preloader-pulse 1.3s ease-in-out;
	animation: infinite preloader-pulse 1.3s ease-in-out;
}

@-webkit-keyframes preloader-pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes preloader-pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* HEADER */
.header {
	position: fixed;
	right: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: 8;
}

.header__inner {
	height: var(--agds-header-height);
	padding: 0 40px;
}

.logo {
	opacity: .9;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	position: relative;
	z-index: 2;
}

.logo:hover {
	opacity: 1;
}

.logo__img {
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	-webkit-transform: rotate(27deg);
	-ms-transform: rotate(27deg);
	transform: rotate(27deg);
}

.logo:hover .logo__img {
	-webkit-transform: scale(0.95) rotate(0deg);
	-ms-transform: scale(0.95) rotate(0deg);
	transform: scale(0.95) rotate(0deg);
}

.header__logo .icon-i-logo {
	width: 55px;
	height: 55px;
	fill: var(--agds-white);
}

.logo__title {
	text-transform: uppercase;
	margin: 15px 0 0 12px
}

.logo__title-top {
	font-size: 19.5px;
	letter-spacing: 1px;
	line-height: 1.2;
	font-weight: 600;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.logo__title-bottom {
	font-size: 12px;
	letter-spacing: 1.2px;
	font-weight: 300;
	opacity: .8;
	position: relative;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.logo:hover .logo__title-bottom {
	-webkit-transform: translateX(15px);
	-ms-transform: translateX(15px);
	transform: translateX(15px);
	opacity: 1;
}

.nav {
	-webkit-transition: .3s var(--agds-transition-timing-function);
	-o-transition: .3s var(--agds-transition-timing-function);
	transition: .3s var(--agds-transition-timing-function);
}

.nav._open {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
}

.nav-list {
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.nav-list:hover a {
	opacity: 0.5;
}

.nav ul li {
	margin: 0 20px;
	position: relative;
}

.nav ul li:first-child {
	margin-left: 0;
}

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

.nav ul li a {
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
	z-index: 3;
}

.nav ul li a:hover {
	opacity: 1;
}

.nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: -40px;
	width: 40px;
	height: 6px;
	opacity: 0;
	background-image: url('../img/icons/i-zigzag.svg');
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: 150ms ease;
	-o-transition: 150ms ease;
	transition: 150ms ease;
}

.nav ul li a._active::after,
.nav ul li a:hover::after {
	left: 0px;
	opacity: .8;
}

.nav ul li:before {
	content: '';
	position: absolute;
	bottom: 4px;
	left: -2px;
	width: 40%;
	height: 8px;
	-webkit-transform: rotate(4deg) scale(0);
	-ms-transform: rotate(4deg) scale(0);
	transform: rotate(4deg) scale(0);
	background-color: var(--agds-color-2);
	opacity: 0;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 0;
}

.nav ul li._active:before {
	opacity: 0.9;
	-webkit-transform: rotate(8deg) scale(1);
	-ms-transform: rotate(8deg) scale(1);
	transform: rotate(8deg) scale(1);
}

@media screen and (max-width: 1439px) {
	.header__inner {
		padding: 0 30px;
	}
}

@media screen and (max-width: 1199px) {
	.header::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		background-color: rgba(var(--agds-color-1-rgb), 70%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header._bg-transp:after {
		background-color: transparent;
		-webkit-backdrop-filter: blur(0px);
		backdrop-filter: blur(0px);
		border: none;
	}

	.header__inner {
		padding: 0 25px;
	}

	.header__nav {
		position: fixed;
		bottom: 0;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		height: 100svh;
		margin: 0;
		overflow-y: auto;
		color: var(--agds-white);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		will-change: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		background-color: rgba(var(--agds-color-1-rgb), 70%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
		z-index: 1;
	}

	.nav ul li {
		margin: 0;
	}

	.nav ul li a {
		font-size: 22px;
	}

	.nav ul li:not(:last-child) {
		margin-bottom: 20px;
	}

	.nav-list:hover a {
		opacity: 1;
	}

	.burger {
		width: 32px;
		height: 24px;
		display: block;
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
		cursor: pointer;
		opacity: .8;
	}

	.burger:hover {
		opacity: 1;
	}

	.burger .bar {
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
		height: 2px;
		width: 100%;
		display: block;
		background-color: var(--agds-white);
	}

	.burger .bar:nth-of-type(2) {
		margin: 6px 0;
	}

	.burger._open {
		padding-top: 10px;
		z-index: 2;
	}

	.burger._open .bar:nth-of-type(1) {
		-webkit-transform: rotate(45deg) scale(0.7);
		-ms-transform: rotate(45deg) scale(0.7);
		transform: rotate(45deg) scale(0.7);
		-webkit-transition-delay: .3s;
		-o-transition-delay: .3s;
		transition-delay: .3s;
		height: 3px;
	}

	.burger._open .bar:nth-of-type(2) {
		opacity: 0;
		height: 0;
		margin: -3px;
	}

	.burger._open .bar:nth-of-type(3) {
		-webkit-transform: rotate(-45deg) scale(0.7);
		-ms-transform: rotate(-45deg) scale(0.7);
		transform: rotate(-45deg) scale(0.7);
		-webkit-transition-delay: .3s;
		-o-transition-delay: .3s;
		transition-delay: .3s;
		height: 3px;
	}

	.header-nav--open .logo {
		z-index: 2;
	}
}

@media screen and (max-width: 991px) {

	.burger,
	.logo {
		opacity: 1;
	}

	.logo .logo__title-bottom {
		-webkit-transform: translateX(15px);
		-ms-transform: translateX(15px);
		transform: translateX(15px);
		opacity: .95;
	}

	.logo:hover .logo__img,
	.logo__img {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

@media screen and (max-width: 767px) {
	.logo .logo__title-bottom {
		-webkit-transform: translateX(13px) !important;
		-ms-transform: translateX(13px) !important;
		transform: translateX(13px) !important;
	}

	.burger._open {
		padding-top: 5px;
	}

	.header__inner {
		padding-right: calc(0.5 * var(--agds-gutter-xl));
		padding-left: calc(0.5 * var(--agds-gutter-xl));
	}

	.burger .bar {
		height: 1px;
		width: 100% !important;
	}

	.logo__title {
		margin: 3px 0 0 9px;
	}

	.header__logo .icon-i-logo {
		width: 36px;
		height: 36px;
	}

	.logo__title-top {
		font-size: 17px;
		line-height: 1;
	}

	.logo__title-bottom {
		font-size: 9px;
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}

	.header__nav {
		max-width: 100%;
	}

	.nav ul li a {
		font-size: 20px;
	}
}

/* Background */
.background {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--agds-black-rgb), 40%);
}

.background-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transition: 2s linear;
	-o-transition: 2s linear;
	transition: 2s linear;
	opacity: 0;
	visibility: hidden;
}

body.single-portfolio .background::after {
	background-color: rgb(var(--agds-black-rgb), 55%);
}

.background-item._active {
	opacity: 1;
	visibility: visible;
}

/* Particles */
#space-stars {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	-webkit-animation: crescendo 30s infinite;
	animation: crescendo 30s infinite;
	pointer-events: none;
	overflow: hidden;
}

@-webkit-keyframes crescendo {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}

	50% {
		-webkit-transform: scale(1.15) rotate(15deg);
		transform: scale(1.15) rotate(15deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}

@keyframes crescendo {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}

	50% {
		-webkit-transform: scale(1.15) rotate(15deg);
		transform: scale(1.15) rotate(15deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}

/* https://codesandbox.io/s/w96ut */
.stars {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position-x: center;
	background-size: cover;
	-webkit-animation: animateBg 50s linear infinite;
	animation: animateBg 50s linear infinite;
	z-index: 0;
}

@-webkit-keyframes animateBg {

	0%,
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.4);
		transform: scale(1.4);
	}
}

@keyframes animateBg {

	0%,
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.4);
		transform: scale(1.4);
	}
}

.stars span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 4px;
	background: var(--agds-white);
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px var(--agds-white);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px var(--agds-white);
	-webkit-animation: animateStars 60s linear infinite;
	animation: animateStars 60s linear infinite;
}

.stars span::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 200px;
	height: 1px;
	background: -o-linear-gradient(left, var(--agds-white), transparent);
	background: -webkit-gradient(linear, left top, right top, from(var(--agds-white)), to(transparent));
	background: linear-gradient(90deg, var(--agds-white), transparent);
}

.stars span:nth-child(1) {
	top: -10px;
	right: 60%;
	width: 1px;
	height: 1px;
	left: initial;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-duration: 90s;
	animation-duration: 90s;
	-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 10px var(--agds-white);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 10px var(--agds-white);
}

.stars span:nth-child(1)::before {
	width: 50px;
}

.stars span:nth-child(2) {
	top: -10px;
	right: 42%;
	left: initial;
	-webkit-animation-delay: 20s;
	animation-delay: 20s;
	-webkit-animation-duration: 70s;
	animation-duration: 70s;
	-webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 12px var(--agds-white);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 12px var(--agds-white);
}

.stars span:nth-child(2)::before {
	width: 70px;
}

.stars span:nth-child(3) {
	top: -10px;
	right: 10%;
	left: initial;
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
	-webkit-animation-duration: 50s;
	animation-duration: 50s;
	-webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 15px var(--agds-white);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 0 0 6px rgba(255, 255, 255, 0.1), 0 0 15px var(--agds-white);
}

.stars span:nth-child(3)::before {
	width: 100px;
}

.stars span:nth-child(4) {
	top: -10px;
	right: -5%;
	opacity: .1;
	left: initial;
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
	-webkit-animation-duration: 25s;
	animation-duration: 25s;
}

@-webkit-keyframes animateStars {
	0% {
		-webkit-transform: rotate(315deg) translateX(0);
		transform: rotate(315deg) translateX(0);
		opacity: .03;
	}

	70% {
		opacity: .07;
	}

	100% {
		-webkit-transform: rotate(315deg) translateX(-1500px);
		transform: rotate(315deg) translateX(-1500px);
		opacity: 0;
	}
}

@keyframes animateStars {
	0% {
		-webkit-transform: rotate(315deg) translateX(0);
		transform: rotate(315deg) translateX(0);
		opacity: .03;
	}

	70% {
		opacity: .07;
	}

	100% {
		-webkit-transform: rotate(315deg) translateX(-1500px);
		transform: rotate(315deg) translateX(-1500px);
		opacity: 0;
	}
}

@media screen and (max-width: 991px) {
	.stars span:nth-child(1) {
		right: 30%;
	}

	.stars span:nth-child(2) {
		right: 10%;
	}

	.stars span:nth-child(3) {
		right: -20%;
	}

	.stars span:nth-child(4) {
		right: -50%;
	}
}

/* 404 */
.error-404__title {
	margin: 30px 0;
	text-transform: uppercase;
}

.error .number {
	font-weight: 900;
	font-size: 240px;
	line-height: 1;
}

.error .illustration {
	position: relative;
	width: 195.2px;
	margin: 0 33.6px;
}

.error .circle {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 195.2px;
	height: 182.4px;
	border-radius: 50%;
	background-color: var(--agds-color-1);
}

.error .clip {
	position: absolute;
	bottom: 4.8px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	overflow: hidden;
	width: 200px;
	height: 208px;
	border-radius: 0 0 50% 50%;
}

.error .paper {
	position: absolute;
	bottom: -4.8px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 147.2px;
	height: 198.4px;
	border: 4.8px solid var(--agds-color-1);
	background-color: white;
	border-radius: 12.8px;
}

.error .face {
	position: relative;
	margin-top: 36.8px;
}

.error .eyes {
	position: absolute;
	top: 0;
	left: 24%;
	width: 74px;
	height: 12.8px;
}

.error .eye {
	position: absolute;
	bottom: 0;
	width: 20px;
	border-radius: 50%;
	background-color: rgb(var(--agds-color-1-rgb), 90%);
	-webkit-animation: eye 4s infinite ease-in-out;
	animation: eye 4s infinite ease-in-out;
}

.error .eye-left {
	left: 0;
}

.error .eye-right {
	right: 0;
}

@-webkit-keyframes eye {
	0% {
		height: 12.8px;
	}

	50% {
		height: 12.8px;
	}

	52% {
		height: 1.6px;
	}

	54% {
		height: 12.8px;
	}

	100% {
		height: 12.8px;
	}
}

@keyframes eye {
	0% {
		height: 12.8px;
	}

	50% {
		height: 12.8px;
	}

	52% {
		height: 1.6px;
	}

	54% {
		height: 12.8px;
	}

	100% {
		height: 12.8px;
	}
}

.error .rosyCheeks {
	position: absolute;
	top: 30px;
	width: 16px;
	height: 3.2px;
	border-radius: 50%;
	background-color: rgb(var(--agds-color-2-rgb), 70%);
}

.error .rosyCheeks-left {
	left: 22.4px;
}

.error .rosyCheeks-right {
	right: 22.4px;
}

.error .mouth {
	position: absolute;
	top: 60px;
	left: 50%;
	width: 35px;
	height: 3px;
	border-radius: 1.6px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: rgb(var(--agds-color-1-rgb), 80%);
}

@media screen and (max-width: 767px) {
	.error .number {
		font-size: 120px;
	}

	.error .illustration {
		-webkit-transform: scale(0.6);
		-ms-transform: scale(0.6);
		transform: scale(0.6);
		width: auto;
		margin-top: 110px;
	}
}

/* Homepage */
.homepage__title span {
	color: var(--agds-white);
	font-size: 74px;
	font-weight: 800;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.homepage__title span:nth-child(1) {
	position: absolute;
	left: 0;
	top: 0;
	color: transparent;
	-webkit-text-stroke: 1px var(--agds-white);
}

.homepage__title span:nth-child(2) {
	color: var(--agds-white);
	-webkit-animation: animate 6s ease-in-out infinite;
	animation: animate 6s ease-in-out infinite;
}

@-webkit-keyframes animate {

	0%,
	100% {
		-webkit-clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		-webkit-clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}

@keyframes animate {

	0%,
	100% {
		-webkit-clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		-webkit-clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}

.homepage__subtitle {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 7px;
}

@media screen and (max-width: 767px) {
	.homepage__title {
		line-height: 1.1;
	}

	.homepage__title span {
		font-size: 58px;
	}

	.homepage__title span:nth-child(1) {
		position: static;
	}

	.homepage__title span:nth-child(2) {
		-webkit-animation: none;
		animation: none;
		position: absolute;
		left: -10px;
		top: 3px;
	}

	.homepage__subtitle {
		font-size: 12px;
		margin-top: 10px;
		letter-spacing: 3px;
	}
}

/* ABOUT */
.about__img {
	width: 165px;
	height: 165px;
	border-radius: 50%;
}

.about__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--agds-color-2-rgb), 3%);
}

.about__content {
	padding-left: 20px;
	max-width: 80%;
	font-size: 18px;
}

/* Skills */
.skills {
	margin-top: 50px;
	opacity: .93;
}

.skills-item {
	margin-bottom: 18px;
}

.skills-item__title {
	padding-bottom: 4px;
	display: inline-block;
	text-transform: uppercase;
}

.skills-item__progress {
	height: 12px;
	border: 1px solid var(--agds-color-1);
	background-color: rgb(var(--agds-color-1-rgb), 70%);
	border-radius: var(--agds-border-radius);
}

.skills-item__progress-bar {
	position: relative;
	color: var(--agds-white);
	white-space: nowrap;
	background-color: var(--agds-grey);
	height: 100%;
	-webkit-animation: progress 2s ease-in-out 0s;
	animation: progress 2s ease-in-out 0s;
	will-change: width;
}

.skills-item__progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: -o-linear-gradient(135deg,
			rgba(255, 255, 255, 0.4) 25%,
			transparent 25%,
			transparent 50%,
			rgba(255, 255, 255, 0.4) 50%,
			rgba(255, 255, 255, 0.4) 75%,
			transparent 75%,
			transparent);
	background-image: linear-gradient(-45deg,
			rgba(255, 255, 255, 0.4) 25%,
			transparent 25%,
			transparent 50%,
			rgba(255, 255, 255, 0.4) 50%,
			rgba(255, 255, 255, 0.4) 75%,
			transparent 75%,
			transparent);
	z-index: 1;
	background-size: 40px 40px;
	-webkit-animation: move 4s linear infinite;
	animation: move 4s linear infinite;
	overflow: hidden;
}

@-webkit-keyframes move {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 40px 40px;
	}
}

@keyframes move {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 40px 40px;
	}
}

.skills-item__progress-bar span.label {
	position: absolute;
	right: -15px;
	top: -28px;
	color: var(--agds-white);
	font-size: 14px;
}

.skills-item__progress-bar span.label::after {
	content: "%";
}

@-webkit-keyframes progress {
	0% {
		width: 20%
	}

	100% {
		max-width: 100%
	}
}

@keyframes progress {
	0% {
		width: 20%
	}

	100% {
		max-width: 100%
	}
}

@media screen and (max-width: 1400px) {
	.about__content {
		max-width: 100%;
	}
}

@media screen and (max-width: 991px) {
	.about__content {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	.about__content {
		font-size: 14px;
		margin-top: 30px;
		padding: 0;
	}

	.skills {
		margin-top: 40px;
	}

	.skills-item__progress {
		height: 10px;
	}

	.skills-item {
		font-size: 14px;
	}
}

/* SERVICES */
.slider {
	padding: 55px 10px 10px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 30px;
}

.card-item {
	padding: 2.5em;
	padding-top: 75px;
	border-radius: calc(var(--agds-border-radius) * 5);
	background-color: rgba(var(--agds-color-1-rgb), 50%);
	border: 1px solid rgb(var(--agds-white-rgb), 8%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transition: -webkit-transform var(--agds-transition);
	transition: -webkit-transform var(--agds-transition);
	-o-transition: transform var(--agds-transition);
	transition: transform var(--agds-transition);
	transition: transform var(--agds-transition), -webkit-transform var(--agds-transition);
}

.card-item--hover-bottom {
	border-bottom: 5px solid transparent;
}

.card-item--hover-bottom:hover {
	border-bottom: 5px solid rgba(var(--agds-color-2-rgb), 90%);
}

.card-item__icon-bg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 1.5em;
	opacity: .6;
	pointer-events: none;
	fill: rgb(var(--agds-white-rgb), 4%);
	z-index: 0;
}

.card-item__img {
	position: absolute;
	top: -50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	width: 105px;
	height: 105px;
	background-color: var(--agds-light);
}

.services-item {
	padding-bottom: 1.5em;
	height: auto !important;
	min-height: 246px;
}

.services-item .card-item__img {
	padding: 21px;
	left: 20%;
}

.services-item__title {
	font-size: 22px;
	letter-spacing: .07em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.services-list__item {
	font-size: 15px;
	font-weight: 300;
	position: relative;
}

.services-list__item:not(:last-child) {
	margin-bottom: 3px;
}

@media screen and (max-width: 1199px) {
	.card-item {
		padding: 1.5em;
		padding-top: 75px;
	}

	.services-item .card-item__img {
		padding: 17px;
		left: 23%;
	}
}

@media screen and (max-width: 767px) {
	.slider {
		padding: 55px 0px 10px;
		margin-left: 0;
		margin-right: 0;
		overflow: initial;
	}

	.card-item {
		padding-top: 60px;
	}

	.card-item--hover-bottom:hover {
		border-bottom: 3px solid rgba(var(--agds-color-2-rgb), 90%);
	}

	.card-item__img {
		top: -45px;
		width: 90px;
		height: 90px;
	}

	.services-list__item {
		font-size: 14px;
	}

	.services-item__title {
		font-size: 20px;
		letter-spacing: .05em;
		margin-bottom: 10px;
	}
}

/* PORTFOLIO */
.portfolio-item {
	height: 260px;
}

.portfolio-item__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	opacity: 0;
	visibility: hidden;
	fill: var(--agds-white);
	-webkit-transform: scale(-1, 1) translate(50%, -50%);
	-ms-transform: scale(-1, 1) translate(50%, -50%);
	transform: scale(-1, 1) translate(50%, -50%);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 2;
}

.portfolio-item:hover .portfolio-item__icon {
	opacity: 1;
	visibility: visible;
}

.portfolio-item__title {
	position: absolute;
	left: 50%;
	top: 53%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 75%;
	width: 100%;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.portfolio-item .portfolio-cat {
	font-size: 12px;
	position: absolute;
	bottom: 10px;
	right: 20px;
	left: 20px;
}

.portfolio-item__title {
	font-size: 20px;
	line-height: 1.5;
}

.portfolio-item:hover .portfolio-item__title {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.portfolio-item__img {
	padding: 12px;
}

@media screen and (max-width: 1199px) {
	.portfolio-item__title {
		max-width: 80%;
	}
}

@media screen and (max-width: 991px) {
	.portfolio-item__icon {
		top: 23px;
		left: auto;
		right: 5px;
		width: 22px;
		height: 22px;
		opacity: 1;
		visibility: visible;
	}

	.portfolio-item:hover .portfolio-item__title {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@media screen and (max-width: 767px) {
	.portfolio-section .portfolio-item {
		height: 220px;
	}

	.portfolio-item__title {
		font-size: 18px;
	}

	.portfolio-item__icon {
		width: 18px;
		height: 18px;
	}
}

/* REVIEWS */
.reviews-item {
	min-height: 266px;
}

.reviews-item .card-item__icon-bg {
	padding: .4em;
}

.button-prev {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	margin-right: 20px;
}

.swiper-button-disabled {
	opacity: .2;
	pointer-events: none;
}

.nav-svg {
	width: 35px;
	height: 35px;
	fill: var(--agds-white);
	opacity: .8;
	overflow: visible;
}

.nav-svg polygon,
.nav-svg path {
	-webkit-transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
	-o-transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
	transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.nav-svg path {
	fill: var(--agds-white);
}

.nav-svg:hover polygon,
.nav-svg:hover path {
	-webkit-transition: 1s cubic-bezier(0.2, 1, 0.3, 1);
	-o-transition: 1s cubic-bezier(0.2, 1, 0.3, 1);
	transition: 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.nav-svg:hover .arrow {
	-webkit-animation: arrow-anim 2.5s cubic-bezier(0.2, 1, 0.3, 1) infinite;
	animation: arrow-anim 2.5s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

.nav-svg:hover .arrow-fixed {
	-webkit-animation: arrow-fixed-anim 2.5s cubic-bezier(0.2, 1, 0.3, 1) infinite;
	animation: arrow-fixed-anim 2.5s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

@-webkit-keyframes arrow-anim {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	5% {
		-webkit-transform: translateX(-0.1rem);
		transform: translateX(-0.1rem);
	}

	100% {
		-webkit-transform: translateX(1rem);
		transform: translateX(1rem);
		opacity: 0;
	}
}

@keyframes arrow-anim {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	5% {
		-webkit-transform: translateX(-0.1rem);
		transform: translateX(-0.1rem);
	}

	100% {
		-webkit-transform: translateX(1rem);
		transform: translateX(1rem);
		opacity: 0;
	}
}

@-webkit-keyframes arrow-fixed-anim {
	5% {
		opacity: 0;
	}

	20% {
		opacity: 0.4;
	}

	100% {
		opacity: 1;
	}
}

@keyframes arrow-fixed-anim {
	5% {
		opacity: 0;
	}

	20% {
		opacity: 0.4;
	}

	100% {
		opacity: 1;
	}
}

.reviews-item__name {
	font-size: 18px;
}

.reviews-item__rating:before {
	--percent: calc(var(--rating) / 5 * 100% - 2%);
	content: '★★★★★';
	letter-spacing: 2px;
	font-size: 22px;
	background: -o-linear-gradient(left, var(--agds-color-2) var(--percent), var(--agds-white) var(--percent) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--agds-color-2)), to(var(--agds-white)));
	background: linear-gradient(90deg, var(--agds-color-2) var(--percent), var(--agds-white) var(--percent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.reviews-item__review {
	opacity: .9;
	font-size: 15px;
	max-height: 90px;
	overflow: hidden;
}

.reviews-item__link-icon {
	width: 17px;
	height: 17px;
	position: absolute;
	right: 12px;
	top: 12px;
	opacity: 0;
}

.reviews-item:hover .reviews-item__link-icon {
	opacity: .85;
}

@media screen and (max-width: 991px) {
	.reviews-item__link-icon {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) {
	.reviews-item {
		min-height: auto;
	}

	.reviews-item__review {
		font-size: 14px;
		max-height: 123px;
	}
}

/* Contacts */
/* Info block */
.contacts-section .about__img {
	width: 95px;
	height: 95px;
}

.info__status {
	margin-left: 20px;
	font-size: 14px;
	letter-spacing: 0.2px;
}

.info__status-item:not(:last-child) {
	margin-bottom: 3px;
}

@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	10% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg);
	}

	30% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	50% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	70% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	10% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg);
	}

	30% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	50% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	70% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.anim-swing:hover>*:first-child {
	-webkit-animation: swing ease-in-out 0.5s 1 alternate;
	animation: swing ease-in-out 0.5s 1 alternate;
}

.anim-pulse {
	width: 8px;
	height: 8px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--agds-color-2);
	position: relative;
}

.anim-pulse:before,
.anim-pulse:after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #f37800;
	position: absolute;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-animation: anim_pulse 3s linear infinite;
	animation: anim_pulse 3s linear infinite;
}

.info__status-item:nth-child(1) .anim-pulse:before,
.info__status-item:nth-child(1) .anim-pulse:after {
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
	-webkit-animation-duration: 3.5s;
	animation-duration: 3.5s;
}

.info__status-item:nth-child(2) .anim-pulse:before,
.info__status-item:nth-child(2) .anim-pulse:after {
	-webkit-animation-delay: 500ms;
	animation-delay: 500ms;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
}

.info__status-item:nth-child(3) .anim-pulse:before,
.info__status-item:nth-child(3) .anim-pulse:after {
	-webkit-animation-delay: 300ms;
	animation-delay: 300ms;
	-webkit-animation-duration: 3.8s;
	animation-duration: 3.8s;
}

@-webkit-keyframes anim_pulse {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}

	50% {
		opacity: 0.08;
	}

	70% {
		opacity: 0.04;
	}

	100% {
		-webkit-transform: scale(5);
		transform: scale(5);
		opacity: 0;
	}
}

@keyframes anim_pulse {
	0% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
		opacity: 0;
	}

	50% {
		opacity: 0.08;
	}

	70% {
		opacity: 0.04;
	}

	100% {
		-webkit-transform: scale(5);
		transform: scale(5);
		opacity: 0;
	}
}

.address {
	margin-top: 50px;
}

.contacts-item:not(:last-child) {
	margin-bottom: 15px;
}

.contacts-item__link {
	padding-left: 42px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contacts-item__link-icon {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 23px;
	max-height: 23px;
	fill: var(--agds-light-2);
}

/* Socials */
.socials {
	margin-top: 36px;
}

.socials-link {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: hsla(0, 0%, 0%, 0.3);
}

.socials-link__icon {
	fill: var(--agds-light-2);
	max-width: 19px;
	max-height: 19px;
}

.socials-link:not(:last-child) {
	margin-right: 8px;
}

.socials-link-i-telegram:hover {
	background-color: #0088cc;
}

.socials-link-i-facebook:hover {
	background-color: #4267B2;
}

.socials-link-i-instagram:hover {
	background-color: #E1306C;
}

.socials-link-i-youtube:hover {
	background-color: #FF0000;
}

.socials-link-i-freelancehunt:hover {
	background-color: #FFBB17;
}

.socials-link:hover {
	-webkit-transform: scale(1.15) rotate(360deg);
	-ms-transform: scale(1.15) rotate(360deg);
	transform: scale(1.15) rotate(360deg);
}

@media screen and (max-width: 767px) {
	.contacts-item:not(:last-child) {
		margin-bottom: 10px;
	}

	.address {
		margin-top: 30px;
	}

	.contacts-item__link {
		padding-left: 38px;
	}

	.socials {
		margin-top: 25px;
	}

	.contacts-section .contact-form {
		margin-top: 40px;
	}
}

/* Modal */
.modal {
	padding: 40px;
	max-width: 460px;
	width: 100%;
	border-radius: calc(var(--agds-border-radius) * 5);
	background-color: rgba(var(--agds-color-1-rgb), 60%);
	color: inherit;
	cursor: inherit !important;
	border: 1px solid rgb(var(--agds-white-rgb), 7%);
}

.modal-portfolio {
	font-size: 15px;
	margin-bottom: 30px;
	max-width: 700px;
}

.modal-portfolio .portfolio-content__banner {
	margin: 26px -40px -40px -40px !important;
	border-bottom-right-radius: calc(var(--agds-border-radius) * 3);
	border-bottom-left-radius: calc(var(--agds-border-radius) * 3);
}

._zoom-in {
	display: block;
	position: relative;
}

._zoom-in::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgb(var(--agds-color-1-rgb), 30%);
	z-index: 1;
}

._zoom-in::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35px;
	height: 35px;
	-webkit-transform: translate(-50%, -50%) scale(.5) rotate(0deg);
	-ms-transform: translate(-50%, -50%) scale(.5) rotate(0deg);
	transform: translate(-50%, -50%) scale(.5) rotate(0deg);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	background-image: url('../img/icons/i-zoom.svg');
	background-repeat: no-repeat;
	-webkit-filter: drop-shadow(2px 4px 6px black);
	filter: drop-shadow(2px 4px 6px black);
	background-size: contain;
	z-index: 2;
}

._zoom-in:hover::before,
._zoom-in:hover::after {
	opacity: 1;
	visibility: visible;
}

._zoom-in:hover::after {
	-webkit-transform: translate(-50%, -50%) scale(1) rotate(360deg);
	-ms-transform: translate(-50%, -50%) scale(1) rotate(360deg);
	transform: translate(-50%, -50%) scale(1) rotate(360deg);
}

.portfolio-content__title.title--bg-line::before {
	width: 70px;
	height: 13px;
	bottom: 4px;
	left: -2px;
}

.content .portfolio-content__title {
	font-size: 26px;
	margin-bottom: 26px;
	position: relative;
	z-index: 2;
}

.portfolio-content .content-block-title {
	font-size: 18px;
	margin: 0;
	margin-bottom: 12px;
	font-weight: 500;
	padding-bottom: 10px;
	position: relative;
}

.portfolio-content-seo h2::after,
.portfolio-content-seo h3::after,
.portfolio-content-seo h4::after,
.portfolio-content-seo h5::after,
.portfolio-content-seo h6::after,
.portfolio-content .content-block-title::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 28px;
	height: 5px;
	background-image: url('../img/icons/i-zigzag.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: .86;
}

.portfolio-content .wp-block-heading:first-of-type {
	margin-top: 0;
}

.portfolio-content.content ul {
	margin-bottom: 36px;
}

.portfolio-content.content .content-links ul {
	margin-bottom: 0;
}

.portfolio-content .content-row:first-of-type {
	padding-top: 26px;
	border-top: 1px dashed rgb(var(--agds-white-rgb), 15%);
}

.portfolio-content .content-row:last-of-type {
	padding-bottom: 20px;
	border-bottom: 1px dashed rgb(var(--agds-white-rgb), 15%);
}

.portfolio-content.content a:not(.portfolio-content__banner) {
	position: relative;
	padding-right: 22px;
}

.portfolio-content.content a:not(.portfolio-content__banner)::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	opacity: 0;
	visibility: hidden;
	background-image: url('data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZD0iTTIxIDlMMjEgM00yMSAzSDE1TTIxIDNMMTMgMTFNMTAgNUg3LjhDNi4xMTk4NCA1IDUuMjc5NzYgNSA0LjYzODAzIDUuMzI2OThDNC4wNzM1NCA1LjYxNDYgMy42MTQ2IDYuMDczNTQgMy4zMjY5OCA2LjYzODAzQzMgNy4yNzk3NiAzIDguMTE5ODQgMyA5LjhWMTYuMkMzIDE3Ljg4MDIgMyAxOC43MjAyIDMuMzI2OTggMTkuMzYyQzMuNjE0NiAxOS45MjY1IDQuMDczNTQgMjAuMzg1NCA0LjYzODAzIDIwLjY3M0M1LjI3OTc2IDIxIDYuMTE5ODQgMjEgNy44IDIxSDE0LjJDMTUuODgwMiAyMSAxNi43MjAyIDIxIDE3LjM2MiAyMC42NzNDMTcuOTI2NSAyMC4zODU0IDE4LjM4NTQgMTkuOTI2NSAxOC42NzMgMTkuMzYyQzE5IDE4LjcyMDIgMTkgMTcuODgwMiAxOSAxNi4yVjE0IiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+IDwvZz4KDTwvc3ZnPg==');
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 3;
}

.portfolio-content.content a:hover::after {
	right: -4px;
	opacity: 1;
	visibility: visible;
}

.portfolio-content__title a {
	padding-right: 0 !important;
}

.portfolio-content__title a::after {
	display: none !important;
}

/* SINGLE PORTFOLIO SECTION */
.single-portfolio-section .section-title-wrap {
	border-bottom: 1px dashed rgb(var(--agds-white-rgb), 15%);
}

.single-portfolio-section .card-item__img {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	width: 80px;
	height: 80px;
}

.single-portfolio-section .portfolio-content .content-row:last-of-type {
	padding-bottom: 0px;
}

.single-portfolio-section .portfolio-content .content-row {
	border-bottom: 1px dashed rgb(var(--agds-white-rgb), 15%);
}

.single-portfolio-section .portfolio-content__title {
	font-size: 36px;
	margin-bottom: 0;
}

.single-portfolio-section .portfolio-content__title.title--bg-line::before {
	bottom: 11px;
}

.single-portfolio-section .content-links-col {
	margin-bottom: 25px;
}

.nav-button-prev-wrap .button-prev {
	margin-right: 0;
}

.portfolio-content-seo {
	max-width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--agds-gap-sm);
	margin-bottom: var(--agds-gap-sm);
}

.portfolio-content-seo h2,
.portfolio-content-seo .h2 {
	font-size: calc(1.2rem + 0.5vw);
	margin-bottom: 30px;
}

.portfolio-content-seo h3,
.portfolio-content-seo .h3 {
	font-size: calc(1.1rem + 0.3vw);
}

.portfolio-content-seo h4,
.portfolio-content-seo .h4 {
	font-size: calc(1rem + 0.2vw);
}

.portfolio-content-seo h2,
.portfolio-content-seo h3,
.portfolio-content-seo h4,
.portfolio-content-seo h5,
.portfolio-content-seo h6 {
	padding-bottom: 10px;
	position: relative;
}

.portfolio-content-seo h2::after,
.portfolio-content-seo h3::after,
.portfolio-content-seo h4::after,
.portfolio-content-seo h5::after,
.portfolio-content-seo h6::after {
	background-image: url('../img/icons/i-zigzag-accent.svg');
}

.portfolio-content.content .portfolio-content-seo blockquote a,
.portfolio-content.content .portfolio-content-seo p a {
	position: static;
	padding-right: 0;
}

.portfolio-content.content .portfolio-content-seo blockquote a {
	color: rgb(var(--agds-color-2-rgb), 90%);
}

.portfolio-content.content .portfolio-content-seo p a:hover {
	color: var(--agds-color-2);
}

.portfolio-content.content .portfolio-content-seo blockquote a::after,
.portfolio-content.content .portfolio-content-seo p a::after {
	display: none;
}

.portfolio-content-seo blockquote {
	padding: 30px;
	margin: 40px 0;
	font-size: 18px;
	border-radius: var(--agds-border-radius);
	border: 1px solid rgb(var(--agds-white-rgb), 5%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgb(var(--agds-body-bg-rgb), 55%);
	border-left: 4px solid rgb(var(--agds-color-2-rgb), 90%);
}

.portfolio-content-seo .wp-block-post-date {
	font-size: 14px;
	margin-top: 20px;
}

@media screen and (max-width: 1199px) {
	.single-portfolio-section .portfolio-content__title {
		font-size: 28px;
		margin-bottom: 0;
	}

	.single-portfolio-section .btn-wrap .btn-item:not(:last-child) {
		margin-right: 0px;
	}

	.single-portfolio-section .portfolio-content__title.title--bg-line:before {
		bottom: 2px;
	}

	.single-portfolio-section .btns-center {
		gap: 20px;
	}

	.portfolio-content-seo {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}

	.portfolio-content-seo {
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.single-portfolio-section .portfolio-content.content {
		font-size: 14px;
	}

	.single-portfolio-section .portfolio-content.content .portfolio-content__title {
		margin-bottom: 0;
		margin-top: 20px;
		font-size: 22px;
	}

	.single-portfolio-section .btn-wrap {
		padding-bottom: 50px;
	}

	.single-portfolio-section .nav-button-next-wrap,
	.single-portfolio-section .nav-button-prev-wrap {
		position: absolute;
		display: inline-block;
		bottom: 0;
	}

	.single-portfolio-section .nav-button-prev-wrap {
		left: calc(50% - 45px);
	}

	.single-portfolio-section .nav-button-next-wrap {
		right: calc(50% - 45px);
	}

	.portfolio-content-seo blockquote {
		padding: 25px;
		margin: 30px 0;
		font-size: 16px;
	}
}

/* MODALS */
.modal .f-button.is-close-btn {
	top: 14px;
	right: 14px;
}

.modal .f-button.is-close-btn:hover {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.modal__title {
	font-size: 28px;
	max-width: 80%;
	margin-bottom: 40px;
}

.modal__title .title--bg-line::after {
	width: 41%;
}

.modal .button-wrap {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.portfolio-cat {
	font-size: 14px;
	font-weight: 400;
	display: block;
}

.modal-portfolio .portfolio-cat {
	text-transform: none;
	color: var(--agds-color-2);
	margin-bottom: 4px;
}

/* Form */
.input-group {
	position: relative;
	margin-bottom: 40px;
}

.input-group textarea,
.input-group.input-type-input input {
	display: block;
	border: none;
	border-bottom: 1px solid var(--agds-light-3);
	padding: 14px 44px 14px 10px;
	width: 100%;
	background-color: transparent;
	color: var(--agds-white);
	cursor: inherit;
	position: relative;
	-webkit-transition: background .5s ease-in-out;
	-o-transition: background .5s ease-in-out;
	transition: background .5s ease-in-out;
}

.input-group textarea._error,
.input-group.input-type-input input._error {
	border-color: var(--agds-color-2);
}

.input-group__icon {
	content: '';
	position: absolute;
	display: block;
	right: 16px;
	top: 18px;
	max-width: 17px;
	max-height: 20px;
	width: 100%;
	height: 100%;
	fill: var(--agds-light-2);
}

.input-type-checkbox .input-group__icon,
.input-type-radio .input-group__icon {
	top: 6px;
}

.modal .input-group textarea,
.modal .input-group.input-type-input input {
	padding: 14px 50px 14px 0px;
}

.input-group textarea:focus,
.input-group.input-type-input input:focus {
	outline: none;
	background-color: rgb(var(--agds-color-1-rgb), 0.42);
	backdrop-filter: blur(4px);
	border-radius: var(--agds-border-radius) var(--agds-border-radius) 0 0;
}

.modal .input-group textarea:focus,
.modal .input-group.input-type-input input:focus {
	background-color: transparent;
}

.input-group__info {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	padding: 8px 10px;
	font-size: calc(12px + (14 - 12) * ((100vw - var(--min-viewport) * 1px) / (var(--max-viewport) - var(--min-viewport))));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background-color: rgb(var(--agds-color-2-rgb), 0.8);
	backdrop-filter: blur(4px);
	border-radius: 0 0 var(--agds-border-radius) var(--agds-border-radius);
	color: var(--agds-white);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 999;
}

.input-group textarea:focus~.input-group__info,
.input-group input:focus~.input-group__info {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.input-group.input-type-input label,
.input-group.input-type-textarea label {
	font-size: calc(14px + (16 - 14) * ((100vw - var(--min-viewport) * 1px) / (var(--max-viewport) - var(--min-viewport))));
	color: #ddd;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0;
	right: 44px;
	top: 15px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.input-group textarea:focus~label,
.input-group textarea._noempty+label,
.input-group.input-type-input input:focus~label,
.input-group.input-type-input input._noempty+label {
	display: none;
}

.input-type-radio label,
.input-type-checkbox label {
	display: flex;
	align-items: center;
	padding: 6px 0;
	gap: 12px;
	border-radius: var(--agds-border-radius);
	transition: var(--agds-transition);
}

.input-type-checkbox label span,
.input-type-radio label span {
	font-size: calc(14px + (16 - 14) * ((100vw - var(--min-viewport) * 1px) / (var(--max-viewport) - var(--min-viewport))));
}

.input-type-checkbox label input,
.input-type-radio label input {
	background-color: var(--agds-white);
	appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -3px;
}

.input-type-checkbox label input {
	border-radius: var(--agds-border-radius);
}

.input-type-checkbox label input:checked,
.input-type-radio label input:checked {
	background-color: var(--agds-color-2);
	animation: pulse 1.2s forwards;
}

.input-type-checkbox label input:before,
.input-type-radio label input:before {
	content: "";
	width: 42%;
	height: 42%;
	border-radius: 50%;
	background-color: var(--agds-white);
	transform: scale(0);
	transition: var(--agds-transition);
}

.input-type-checkbox label input:before {
	border-radius: 2px;
}

.input-type-checkbox label input:checked::before,
.input-type-radio label input:checked::before {
	transform: scale(1);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


.input-group .bar {
	position: relative;
	display: block;
}

.input-group .bar:before,
.input-group .bar:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 0;
	position: absolute;
	background-color: var(--agds-white);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.input-group._error .bar:before,
.input-group._error .bar:after {
	background-color: var(--agds-color-2);
}

.input-group .bar:before {
	left: 50%;
}

.input-group .bar:after {
	right: 50%;
}

.input-group textarea:focus~.bar:before,
.input-group textarea:focus~.bar:after,
.input-group input:focus~.bar:before,
.input-group input:focus~.bar:after {
	width: 50%;
}

.input-group .highlight {
	position: absolute;
	height: 60%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

.input-group textarea:focus~.highlight,
.input-group input:focus~.highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	animation: inputHighlighter 0.3s ease;
}

.response {
	font-size: 18px;
}

@-webkit-keyframes inputHighlighter {
	from {
		background-color: var(--agds-white);
	}

	to {
		width: 0;
		background-color: transparent;
	}
}

@keyframes inputHighlighter {
	from {
		background-color: var(--agds-white);
	}

	to {
		width: 0;
		background-color: transparent;
	}
}

@media screen and (max-width: 991px) {
	.input-group {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 767px) {

	.input-group textarea,
	.input-group input {
		font-size: 14px;
	}

	.modal {
		padding: 26px;
	}

	.modal__title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.contact-form__btn {
		width: 100%;
		margin-top: 10px;
		max-width: none;
	}

	.modal .f-button.is-close-btn {
		top: 14px !important;
		right: 14px !important;
		background-color: transparent !important;
	}

	.modal-portfolio {
		font-size: 14px;
		margin: 20px 0 30px;
	}

	.portfolio-content.content .portfolio-content__title {
		font-size: 20px;
		margin-bottom: 20px;
		max-width: calc(100% - 20px);
	}

	.portfolio-content__title.title--bg-line::before {
		width: 50px;
		height: 11px;
	}

	.portfolio-content .content-row:first-of-type {
		padding-top: 20px;
	}

	.portfolio-content.content ul {
		margin-bottom: 25px;
	}

	.portfolio-content .content-block-title {
		font-size: 17px;
	}

	.modal-portfolio .portfolio-content__banner {
		margin: 25px -26px -26px -26px !important;
	}

	.single-portfolio-section .portfolio-content__banner {
		margin-right: calc(-0.5* var(--agds-gutter-xl));
		margin-left: calc(-0.5* var(--agds-gutter-xl));
	}

	.fancybox__nav {
		display: none;
	}
}

/* BRIEF SECTION */
.form-tabs .tab .content {
	font-size: calc(16px + (18 - 16) * ((100vw - var(--min-viewport) * 1px) / (var(--max-viewport) - var(--min-viewport))));
}

.form-tabs .section-title-wrap {
	margin-bottom: 30px;
	padding-bottom: 0px;
}