
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
	font-family: 'SpaceGrotesk';
	src: url('../fonts/SpaceGrotesk-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html {
	font-size: 12px;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: #000000;
}

a,
a:hover {
	color: #759ab0;
}

a.text-primary:focus,
a.text-primary:hover {
	color: #759ab0 !important;
}

::selection {
	background-color: #759ab0;
	color: #ffffff;
	text-shadow: none;
}

-webkit-::selection {
	background-color: #759ab0;
	color: #ffffff;
	text-shadow: none;
}

::-moz-selection {
	background-color: #759ab0;
	color: #ffffff;
	text-shadow: none;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #7EA6BD;
}

@media (min-width: 1200px) {

	.container{
		max-width: 1200px;
	}
}

@media (min-width: 1600px) {
	.container-fluid {
		padding-left: 4.25rem;
		padding-right: 4.25rem;
	}
}

.intro-awards {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 1.75rem;
	margin-bottom: 1.25rem;
}

.intro-awards img {
	max-height: 80px;
	width: auto;
	height: auto;
	display: block;
	filter: grayscale(100%);
	opacity: 0.5;
	transition:
		filter .25s ease,
		opacity .25s ease,
		transform .25s ease;
}

.intro-awards a:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: translateY(-1px);
}

@media (max-width: 575px) {
	.intro-awards {
		gap: .75rem;
	}

	.intro-awards img {
		max-height: 70px;
	}
}

.font-custom {
	font-family: sans-serif;
	font-weight: 600;
}

.text-primary {
	color: #7EA6BD !important;
}

.text-primary-show-hidden {
	color: #7EA6BD !important;
	font-weight: normal;
	font-size: .875rem;
}

a.text-primary-show-hidden:focus,
a.text-primary-show-hidden:hover {
	color: #759ab0 !important;
}

a.text-success:hover {
	color: #7EA6BD !important;
}

.text-white a {
	color: #ffffff;
}

.text-black {
	color: #000000;
}

button:focus,
input:focus {
	outline: none;
}

.btn {
	padding: 1rem 2.5rem;
	border-radius: 500px;
	font-weight: bold;
	font-size: 1.125rem;
	text-transform: uppercase;
}

.btn-success,
.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
	background-color: #5ca595;
	border-color: #5ca595;
}

.btn-success {
	transition: box-shadow .3s ease-in-out;
}

.btn-success:hover,
.btn-success.focus,
.btn-success:focus {
	box-shadow: rgba(92, 165, 149, .2) 0 0 0 6px;
}

select.form-control {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3e%3cpath fill='%23000000' d='M32,48.1c-1.3,0-2.4-0.5-3.5-1.3L0.8,20.7c-1.1-1.1-1.1-2.7,0-3.7c1.1-1.1,2.7-1.1,3.7,0L32,42.8l27.5-26.1 c1.1-1.1,2.7-1.1,3.7,0c1.1,1.1,1.1,2.7,0,3.7L35.5,46.5C34.4,47.9,33.3,48.1,32,48.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1rem 1rem;
	background-position: 100% 50%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@-webkit-keyframes fadeZooming {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, .6);
		transform: scale3d(.6, .6, .6);
		margin-left: -12rem;
	}

	100% {
		opacity: 1;
		margin-left: 0;
	}
}

@keyframes fadeZooming {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, .6);
		transform: scale3d(.6, .6, .6);
		margin-left: -12rem;
	}

	100% {
		opacity: 1;
		margin-left: 0;
	}
}

.fadeZooming {
	-webkit-animation-name: fadeZooming;
	animation-name: fadeZooming;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -6.5rem, 0);
		transform: translate3d(0, -6.5rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -6.5rem, 0);
		transform: translate3d(0, -6.5rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10rem, 0);
		transform: translate3d(0, 10rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10rem, 0);
		transform: translate3d(0, 10rem, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.preloader {
	position: fixed;
	overflow: hidden;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #f5f4f0;
	text-align: center;
}

.three-bounce {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.three-bounce>div {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	background-color: #7EA6BD;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
	animation: bouncedelay 1.4s infinite ease-in-out both;
}

.three-bounce .one {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.three-bounce .two {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {

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

	40% {
		-webkit-transform: scale(1)
	}
}

@keyframes bouncedelay {

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

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

.header {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	margin-top: 0;
}

.header .container-fluid {
	color: #000000;
	transition: color .3s ease-in-out;
}

@media (min-width: 768px) {
	.header {
		padding-top: 2.75rem;
		padding-bottom: 2.75rem;
	}
}

.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 900;
}

.header-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 0;
	z-index: -1;
	background-color: #ffffff;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
	transition: .3s ease-in-out;
}

.header-shadow .header-bg {
	height: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.brand {
	float: left;
	margin-right: 1rem;
	white-space: nowrap;
	font-size: 1.5rem;
	text-transform: uppercase;
	align-items: center;
}

.brand a {
	color: inherit;
	text-decoration: none;
}

.brand-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.brand-name img {
	height: 30px;
	width: auto;
	display: block;
}

.header-content {
	margin-left: clamp(8%, 17.25vw, 17.25%);
	margin-right: clamp(8%, 17.25vw, 17.25%);
	padding-top: 3px;
}

.header-contacts {
	font-weight: bold;
	text-transform: uppercase;
	font-size: clamp(0.7rem, 1vw, 0.875rem);
	/* white-space: nowrap; */
	transform-origin: right center;
}

.header-contact-item,
.header-contact-divider {
	display: inline-block;
	vertical-align: middle;
}

.header-contact-item a:hover {
	color: #999999;
}

.header-contact-divider {
	margin-left: clamp(0.35rem, 0.9vw, 1.175rem);
	margin-right: clamp(0.35rem, 0.9vw, 1.175rem);
	opacity: .2;
}

.header-contacts .social i {
	font-size: clamp(0.85rem, 1.2vw, 1.05rem);
}

.header-tagline {
	padding-top: 2px;
	font-size: .875rem;
	line-height: 1.28571429;
	color: #999999;
	font-weight: bold;
	text-transform: uppercase;
	transition: color .3s ease-in-out;
}

.phone-link,
.phone-link:hover,
.mail-link,
.mail-link:hover {
	color: inherit;
	text-decoration: none;
}

.social-fixed-top {
	display: flex;
	align-items: center;

	margin: 0;
	padding: 0;
	list-style: none;
	position: static;
}

.social-fixed-top li {
	display: inline-block;
	margin: 0;
}

.social-fixed-top a i {
	font-size: 1rem;
}

.social-fixed-top a {
	color: #999999;
	transition: color .3s ease;
}

.nav-toggle-btn {
	background: none;
	border: none;
	padding: .625rem 0;
	margin: 0;
	border-radius: 0;
	outline: none;
	float: right;
	position: relative;
	z-index: 995;
	font-weight: bold;
	text-transform: uppercase;
	color: inherit;
}

.nav-toggle-btn:hover {
	color: #b11d11;
}

.nav-toggle-btn:focus {
	outline: none;
}

.nav-toggle {
	display: block;
	width: 32px;
}

.nav-toggle .stick {
	display: block;
	width: 100%;
	border-radius: 3px;
	height: 3px;
	background: #000000;
	transition: all .3s;
	position: relative;
}

.nav-toggle .stick+.stick {
	margin-top: 9px;
}

.body-menu-opened .nav-toggle .stick-1 {
	animation: ease .5s top forwards;
}

.nav-toggle .stick-1 {
	animation: ease .5s top-2 forwards;
}

.body-menu-opened .nav-toggle .stick-2 {
	animation: ease .5s bottom forwards;
}

.nav-toggle .stick-2 {
	animation: ease .5s bottom-2 forwards;
}

@keyframes top {
	0% {
		top: 0;
		transform: rotate(0);
	}

	50% {
		top: 6px;
		transform: rotate(0);
	}

	100% {
		top: 6px;
		transform: rotate(45deg);
	}
}

@keyframes top-2 {
	0% {
		top: 6px;
		transform: rotate(45deg);
	}

	50% {
		top: 6px;
		transform: rotate(0deg);
	}

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

@keyframes bottom {
	0% {
		bottom: 0;
		transform: rotate(0);
	}

	50% {
		bottom: 6px;
		transform: rotate(0);
	}

	100% {
		bottom: 6px;
		transform: rotate(135deg);
	}
}

@keyframes bottom-2 {
	0% {
		bottom: 6px;
		transform: rotate(135deg);
	}

	50% {
		bottom: 6px;
		transform: rotate(0);
	}

	100% {
		bottom: 0;
		transform: rotate(0);
	}
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 990;
	background: #ffffff;
	max-width: 100%;
	width: 100%;
	padding: 4.25rem 4.375rem 4.1875rem;
	display: flex;
	flex-direction: column;
	transition: transform .4s ease-in-out;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.social-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.3125rem;
}

.social-menu li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1rem;
}

.social-menu a {
	color: #999999;
	transition: color .25s ease;
}

.social-menu a:hover {
	color: #7EA6BD;
}

.social-menu a i {
	display: inline-block;
	transition: transform .25s ease;
	transform-origin: center;
}

.social-menu a:hover {
	color: #7EA6BD;
}

.social-menu a:hover i {
	transform: scale(1.5);
}

.body-menu-opened .menu {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.hide-menu {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 100%;
	background: rgba(0, 0, 0, .65);
	z-index: 980;
}

.body-menu-opened .hide-menu {
	bottom: 0;
}

@media (min-width: 576px) {
	.menu {
		width: 27.5rem;
	}

	.modal-dialog {
		max-width: 450px;
	}
}

.menu .menu-lang,
.menu .menu-main,
.menu .social,
.menu .menu-footer {
	opacity: 0;
	transform: translateY(3rem);
	transition: all .5s ease-in-out;
}

.menu .menu-lang {
	transition-delay: .2s;
}

.menu .menu-main {
	transition-delay: .4s;
}

.menu .social {
	transition-delay: .6s;
}

.menu .menu-footer {
	transition-delay: .8s;
}

.body-menu-opened .menu .menu-lang,
.body-menu-opened .menu .menu-main,
.body-menu-opened .menu .social,
.body-menu-opened .menu .menu-footer {
	opacity: 1;
	transform: translateY(0);
}

.menu .menu-lang {
	padding-bottom: 5.875rem;
	padding-bottom: 8.70370370vmin;
}

.menu-lang {
	font-size: .875rem;
	text-transform: uppercase;
	font-weight: 600;
}

.menu-lang-item {
	display: inline-block;
	margin-right: 1.5rem;
	color: #a3a4a8;
	text-decoration: none;
}

.menu-lang-item.active,
.menu-lang-item:hover {
	color: #1f2044;
	text-decoration: none;
}

.menu-main {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 1.375rem;
	font-weight: bold;
}

.menu-main>ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-main>ul>li {
	margin-bottom: 1.1875rem;
	padding-left: 2px;
}

.menu-main a,
.menu-main a:hover {
	color: #1f2044;
	text-decoration: none;
}

.menu-main .active>a,
.menu-main a:hover {
	color: #7EA6BD;
}

.menu-main a:after {
	content: ".";
	opacity: 0;
	display: inline-block;
	transform: translate(2rem, 0);
	transition: all .3s ease-in-out;
}

.menu-main .active a:after {
	transform: translate(0, 0);
	opacity: 1;
}

.menu-footer {
	padding-top: 3rem;
}

.menu-copyright {
	margin-top: 2rem;
	font-size: 1rem;
	color: #999999;
}

.content a {
	transition: color .3s ease;
}

@media (max-width: 575px) {
	.homepage-personal .container {
		padding-left: 43px;
		padding-right: 43px;
	}

	.homepage-personal .slide-personal-projects .container {
		padding-right: 53px;
	}
}

#pp-nav.right {
	right: 0;
}

#pp-nav li {
	width: auto;
	height: auto;
	margin: .5rem;
}

#pp-nav li a {
	display: block;
	padding: .375rem;
}

#pp-nav span {
	display: block;
	position: static;
	width: .625rem;
	height: .625rem;
	border: none;
	background-color: #e3e3e3;
	transition: background-color .3s ease-in-out;
}

#pp-nav a:hover span {
	background-color: #aaaaaa;
}

#pp-nav li .active span {
	background-color: #7EA6BD;
}

@media (min-width: 1600px) {
	#pp-nav.right {
		right: 3.5rem;
	}
}

.pp-scrollable {
	background-color: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.slide-dark {
	background-color: #f5f4f0;
}

.slide-container {
	width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	padding-top: 7.75rem;
	padding-bottom: 3.25rem;
	position: relative;
}

.slide-container>.container {
	position: relative;
	z-index: 200;
}

.slide-title {
	margin-bottom: 2rem;
	font-size: 6vmin;
	font-family: sans-serif;
	font-weight: 600;
	line-height: 1;
	color: #7EA6BD;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.slide-title {
		font-size: 7.40740741vmin;
	}
}

.slide-title-lg {
	margin-left: -.25rem;
	font-size: 6.875rem;
}

.slide-title-sub {
	margin-bottom: 2.75rem;
	font-size: 1.1rem;
	font-family: sans-serif;
	font-weight: 600;
	line-height: 1.45454545;
	color: #111111;
	text-transform: uppercase;
	letter-spacing: .025em;
}

.slide-title-sub-contact {
	margin-bottom: 0.8rem;
	font-size: 1.125rem;
	font-family: sans-serif;
	font-weight: 600;
	line-height: 1.45454545;
	color: #111111;
	letter-spacing: .025em;
}

.text-white .slide-title-sub {
	color: #ffffff;
}

.slide-title-sub-sm {
	font-size: 1.125rem;
	line-height: 1.55555556;
}

.slide-title-sub-md {
	font-size: 1.25rem;
}

.slide-title-info {
	font-size: 1.875rem;
	font-weight: bold;
	line-height: 1.35;
	letter-spacing: -.035em;
}

.slide-descr {
	color: #999999;
	font-size: 1.125rem;
	line-height: 1.66666667;
}

.text-white .slide-descr {
	color: #ffffff;
}

.slide-descr-intro {
	margin-right: 18%;
}

.slide-btn {
	margin-top: 6.85185185vmin;
}

.section:not(.active) .animate-element {
	animation-name: none;
}

.section.active .animate-element {
	animation-duration: .7s;
	animation-fill-mode: both;
}

.section.active .delay1 {
	animation-delay: .1s;
}

.section.active .delay2 {
	animation-delay: .2s;
}

.section.active .delay3 {
	animation-delay: .3s;
}

.section.active .delay4 {
	animation-delay: .4s;
}

.section.active .delay5 {
	animation-delay: .5s;
}

.section.active .delay6 {
	animation-delay: .6s;
}

.section.active .delay7 {
	animation-delay: .7s;
}

.section.active .delay8 {
	animation-delay: .8s;
}

.section.active .delay9 {
	animation-delay: .9s;
}

.section.active .delay10 {
	animation-delay: 1s;
}

[class^="circle-"],
[class*=" circle-"] {
	border-radius: 70.625rem;
	transition: all .7s ease-in-out;
}

.active .active .transformRight {
	transform: translate(0%, 0);
	opacity: 1;
}

.slide-personal-intro {
	background-image: linear-gradient(135deg, #ffffff 0%, #ffffff 70%, #1170dd 100%);
}

.slide-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	overflow: hidden;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.slide-photo {
	position: absolute !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.slide-intro-man {
	background-image: url("../img/personal/bg-personal.webp");
	background-position: 50% 50%;
}

.slide-personal-services {
	background-image: linear-gradient(135deg, #ffffff 10%, #eff6fa 50%, #f6fbfd 60%, #ffffff 100%);
	contain: layout;
}

.slide-title-personal-services {
	margin-bottom: 5.55555556vmin;
	line-height: .93636364;
}

.slide-title-personal-services-years {
	font-size: 1.875rem;
}

.slide-personal-services .slide-title-info {
	margin-top: 1.25rem;
	margin-bottom: 8.33333333vmin;
}

.service-list {
	margin-bottom: -1.75rem;
}

.service-item {
	margin-bottom: 3.75rem;
}

.service-item-title {
	margin-bottom: .5625rem;
}

.slide-descr-personal-services {
	text-align: left;
	margin: 0 auto;
	margin-top: 3.375rem;
	margin-bottom: 2rem;
}

.slide-descr-personal-services img {
	margin: 2.5rem auto 0;
	max-width: 180px;
}

@media (min-width: 768px) {
	.slide-descr-personal-services {
		margin-top: 22.375rem;
		margin-bottom: 0;
	}

	.slide-personal-services .animate-element .d-md-none {
		display: flex;
		flex-direction: column;
	}

	.slide-personal-services .d-md-none .slide-descr-personal-services {
		order: 99;
		margin-top: auto;
		text-align: center;
	}

	.slide-personal-services .d-md-none .slide-descr-personal-services img {
		display: block;
		margin: 1rem auto 0;
		max-width: 180px;
		height: auto;
	}
}

@media (min-width: 992px) {
	.slide-descr-personal-services {
		margin-right: 35%;
		margin-top: 14.375rem;
	}

	.slide-personal-services .animate-element .d-md-none {
		display: flex;
		flex-direction: column;
	}

	.slide-personal-services .d-md-none .slide-descr-personal-services {
		order: 99;
		margin-top: auto;
		text-align: center;
	}

	.slide-personal-services .d-md-none .slide-descr-personal-services img {
		display: flex;
		margin: 1rem auto 0 auto;
		max-width: 180px;
		height: auto;
	}
}

.carousel-project-personal {
	min-height: 100%;
	display: flex !important;
}

.carousel-project-personal .slide-title,
.carousel-project-personal .slide-title-sub,
.carousel-project-personal .slide-descr-projects {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-project-personal .slide-descr-projects {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
	font-weight: 600;
}

.carousel-project-personal .owl-stage-outer {
	display: flex;
	overflow: visible;
}

.carousel-project-personal.owl-carousel .owl-stage {
	display: flex;
	flex-wrap: nowrap;
}

.carousel-project-personal.owl-carousel .owl-item {
	height: 100%;
	float: none;
	min-height: 100%;
}

.carousel-project-personal .carousel-project-item {
	height: 100%;
}

.owl-theme .owl-nav {
	margin-top: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.carousel-nav button {
	border: none;
	background-color: transparent;
	padding: 0;
	margin: 0;
	font-size: 2.375rem;
	transition: all .3s ease-in-out;
	color: #999999;
}

.owl-theme .owl-nav [class*=owl-].disabled:hover,
.carousel-nav button.disabled:hover {
	color: #999999;
}

.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover,
.carousel-nav button:not(.disabled):hover {
	color: #555555;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
	background-color: transparent;
}

.owl-carousel .owl-nav button,
.carousel-nav button {
	border: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
}

.owl-carousel .owl-nav button:focus,
.owl-carousel .owl-nav button:focus-visible,
.owl-carousel .owl-nav button:active,
.carousel-nav button:focus,
.carousel-nav button:focus-visible,
.carousel-nav button:active {
	outline: none !important;
	box-shadow: none !important;
}

.owl-carousel .owl-nav button i {
	outline: none !important;
}

.carousel-project-personal.owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	z-index: 100;
	transform: translate(0, -50%);
	width: 4.375rem;
	color: rgba(255, 255, 255, .6);
}

.carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
	left: -.5rem;
}

.carousel-project-personal.owl-carousel .owl-nav button.owl-next {
	right: 1rem;
}

.carousel-project-personal.owl-carousel .owl-nav button:not(.disabled):hover {
	color: rgba(255, 255, 255, .9);
}

@media (min-width: 1500px) {

	.carousel-project-personal.owl-carousel .owl-nav button,
	.carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
	}

	.carousel-project-personal.owl-carousel .owl-nav button.owl-prev {
		margin-left: -46rem;
	}

	.carousel-project-personal.owl-carousel .owl-nav button.owl-next {
		margin-left: 46rem;
	}
}

.carousel-project-item {
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.carousel-project-personal .slide-title {
	margin-bottom: 2.625rem;
}

.slide-descr-projects {
	min-height: 8.33333333em;
	margin-bottom: 1.875rem;
}

.slide-btn-projects {
	margin-top: 0;
}

.slide-btn-projects .btn {
	margin-right: 2.25rem;
}

.slide-personal-testimonials {
	background-image: linear-gradient(135deg, #fcfffc 0%, #f8f8f8 40%, #3e97db 60%, #1974b9 100%);
}

.slide-testimonials {
	background-image: url("../img/bg/bg3.webp");
	background-position: 50% 50%;
}

.testimonials-item {
	background-image: linear-gradient(135deg,
			rgba(177, 208, 220, 0.5) 0%,
			rgba(255, 255, 255, 0.5) 100%);
	background-blend-mode: screen;
	border-radius: 1rem 1rem 3rem 1rem;
	padding: 2.1875rem 2.5rem;
	box-shadow:
		0 10px 30px rgba(91, 92, 94, 0.08),
		0 2px 6px rgba(0, 0, 0, 0.04);

	display: flex;
	flex-direction: column;
	height: 100%;
}

.testimonials-item-text {
	margin-bottom: 1.125rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.testimonials-item-author-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
}

.testimonials-item-author {
	font-size: 1rem;
	font-weight: bold;
}

.testimonials-item-author-icons {
	margin-top: 0;
}

.testimonial-icon {
	font-size: 2rem;
	color: #ffffff;
	transition: all .3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
}

.testimonials-item-author-role {
	height: 40px;
	font-size: 0.8rem;
}

.testimonial-icon:hover {
	color: rgba(32, 144, 235, 0.5);
	transform: scale(1.2);
}

.carousel-testimonial.owl-carousel .owl-stage {
	display: flex;
}

.carousel-testimonial.owl-carousel .owl-item {
	display: flex;
	justify-content: center;
}

.carousel-testimonial .testimonials-item-text {
	color:#414141;
	max-height: 11.5rem;
	overflow-y: auto;
	position: relative;
	padding-right: .75rem;
	margin-bottom: 2rem;
	mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.carousel-testimonial .testimonials-item-text.is-bottom {
	mask-image: linear-gradient(to bottom, black 100%, black 100%);
}

.carousel-testimonial .testimonials-item-text::-webkit-scrollbar {
	width: 6px;
}

.carousel-testimonial .testimonials-item-text::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

.carousel-testimonial .testimonials-item-text::-webkit-scrollbar-thumb {
	background: rgba(117, 185, 241, 0.5);
	border-radius: 4px;
}

.carousel-testimonial .testimonials-item-text::-webkit-scrollbar-thumb:hover {
	background: rgba(32, 144, 235, 0.5);
}

.slide-personal-experience {
	background-image: linear-gradient(135deg, #dfe9f3 0%, white 100%);
}

.experience-item:not(:first-child) {
	border-top: #e1ddd6 1px solid;
}

.experience-item {
	padding-top: 1.625rem;
}

.experience-item-company,
.experience-item-title,
.experience-item-descr {
	margin-bottom: 1.625rem;
}

.experience-item-company-allinidea-logo {
	margin-top: .675rem;
	max-width: 126px;
}

.experience-item-title {
	margin-right: 1rem;
}

.experience-item-date {
	margin-top: .3125rem;
	font-size: 1.125rem;
	text-transform: uppercase;
	font-weight: bold;
}

.experience-item-descr {
	margin-top: 2px;
	min-height: 5em;
}

.carousel-experience {
	position: relative;
}

.carousel-nav {
	margin-right: -.625rem;
}

.carousel-nav .owl-next {
	margin-left: .5rem;
}

.slide-personal-experience .slide-btn {
	margin-top: 3.88888889vmin;
}

@media (min-width: 768px) {
	.carousel-nav .owl-next {
		margin-left: 2rem;
	}
}

.title-mini {
	font-size: .875rem;
	text-transform: uppercase;
	color: #999999;
	font-weight: bold;
}

.slide-personal-clients {
	background-image: linear-gradient(135deg, #ffffff 10%, #eff6fa 50%, #f6fbfd 60%, #ffffff 100%);
}

.slide-personal-clients .title-mini {
	margin-bottom: 3.375rem;
}

.client-item {
	margin-bottom: 2.75rem;
}

.client-icon {
	width: 3.75rem;
	margin-right: 2.5rem;
}

.icon-start {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/quick_start.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-integration {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/integrations.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-automation {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/automation.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-arrangements {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/arrangements.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-rules {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/rules.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.icon-support {
	display: inline-block;
	vertical-align: top;
	width: 3.75rem;
	height: 3.75rem;
	background-image: url(../img/tech-icons/support.svg);
	background-position: 50% 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.client-item-title {
	margin-bottom: .625rem;
	font-size: 1.575rem;
	font-family: sans-serif;
	font-weight: 600;
	line-height: .94117647;
}

.clients-photo {
	height: 0;
	padding-bottom: 103.50877193%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

.clients-photo-item {
	width: 4.375rem;
}

.clients-photo .clients-photo-item {
	position: absolute;
	width: 14.56140351%;
}

.clients-photo-item>.inside {
	display: block;
	height: 0;
	padding-bottom: 100%;
	background-color: #f5f4f0;
	border-radius: 50rem;
	overflow: hidden;
	position: relative;
}

.clients-photo-item img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.clients-photo {
	position: relative;
	height: 0;
	padding-bottom: 103.5088%;
	margin: 2rem 0;
}

.clients-photo .clients-photo-item {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.clients-photo-item>.inside {
	display: block;
	height: 0;
	padding-bottom: 100%;
	border-radius: 50rem;
	background: #f5f4f0;
	overflow: hidden;
	position: relative;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .08), inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.clients-photo-item img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 78%;
	max-height: 78%;
}

.clients-photo-item5 img,
.clients-photo-item7 img,
.clients-photo-item20 img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 60%;
	max-height: 60%;
}

.clients-photo .clients-photo-item1 {
	width: 30%;
	z-index: 3;
}

.clients-photo .clients-photo-item2,
.clients-photo .clients-photo-item3,
.clients-photo .clients-photo-item4,
.clients-photo .clients-photo-item5,
.clients-photo .clients-photo-item6,
.clients-photo .clients-photo-item7,
.clients-photo .clients-photo-item36 {
	width: 20%;
	z-index: 2;
}

.clients-photo .clients-photo-item8,
.clients-photo .clients-photo-item11,
.clients-photo .clients-photo-item13,
.clients-photo .clients-photo-item14,
.clients-photo .clients-photo-item16,
.clients-photo .clients-photo-item20,
.clients-photo .clients-photo-item24,
.clients-photo .clients-photo-item25,
.clients-photo .clients-photo-item28,
.clients-photo .clients-photo-item34 {
	width: 15%;
}

.clients-photo .clients-photo-item9,
.clients-photo .clients-photo-item10,
.clients-photo .clients-photo-item12,
.clients-photo .clients-photo-item15,
.clients-photo .clients-photo-item17,
.clients-photo .clients-photo-item18,
.clients-photo .clients-photo-item19,
.clients-photo .clients-photo-item21,
.clients-photo .clients-photo-item22,
.clients-photo .clients-photo-item23,
.clients-photo .clients-photo-item26,
.clients-photo .clients-photo-item27,
.clients-photo .clients-photo-item29,
.clients-photo .clients-photo-item30,
.clients-photo .clients-photo-item31,
.clients-photo .clients-photo-item32,
.clients-photo .clients-photo-item33,
.clients-photo .clients-photo-item35 {
	width: 10%;
}

.clients-photo .clients-photo-item1 {
	left: 50.0%;
	top: 50.0%;
}

.clients-photo .clients-photo-item2 {
	left: 32.0%;
	top: 28.0%;
}

.clients-photo .clients-photo-item3 {
	left: 70.0%;
	top: 30.0%;
}

.clients-photo .clients-photo-item4 {
	left: 78.0%;
	top: 52.0%;
}

.clients-photo .clients-photo-item5 {
	left: 64.0%;
	top: 74.0%;
}

.clients-photo .clients-photo-item6 {
	left: 30.0%;
	top: 74.0%;
}

.clients-photo .clients-photo-item7 {
	left: 23.0%;
	top: 53.0%;
}

.clients-photo .clients-photo-item36 {
	left: 98.0%;
	top: 60.0%;
}

.clients-photo .clients-photo-item8 {
	left: 51.0%;
	top: 25.0%;
}

.clients-photo .clients-photo-item11 {
	left: 10.0%;
	top: 10.0%;
}

.clients-photo .clients-photo-item13 {
	left: 90.0%;
	top: 26.0%;
}

.clients-photo .clients-photo-item14 {
	left: 99.0%;
	top: 40.0%;
}

.clients-photo .clients-photo-item16 {
	left: 83.0%;
	top: 75.0%;
}

.clients-photo .clients-photo-item20 {
	left: 60.0%;
	top: 95.0%;
}

.clients-photo .clients-photo-item24 {
	left: 24.0%;
	top: 94.0%;
}

.clients-photo .clients-photo-item25 {
	left: 11.0%;
	top: 83.0%;
}

.clients-photo .clients-photo-item28 {
	left: 13.0%;
	top: 36.0%;
}

.clients-photo .clients-photo-item34 {
	left: 4.0%;
	top: 52.0%;
}

.clients-photo .clients-photo-item33 {
	left: 47.0%;
	top: 73.0%;
}

.clients-photo .clients-photo-item9 {
	left: 3.0%;
	top: 22.0%;
}

.clients-photo .clients-photo-item10 {
	left: 87.0%;
	top: 11.0%;
}

.clients-photo .clients-photo-item12 {
	left: 40.0%;
	top: 97.0%;
}

.clients-photo .clients-photo-item15 {
	left: 6.0%;
	top: 98.0%;
}

.clients-photo .clients-photo-item17 {
	left: 99.0%;
	top: 78.0%;
}

.clients-photo .clients-photo-item18 {
	left: 74.0%;
	top: 14.0%;
}

.clients-photo .clients-photo-item19 {
	left: 62.0%;
	top: 8.0%;
}

.clients-photo .clients-photo-item21 {
	left: 12.0%;
	top: 67.0%;
}

.clients-photo .clients-photo-item23 {
	left: 1.0%;
	top: 72.0%;
}

.clients-photo .clients-photo-item26 {
	left: 99.0%;
	top: 15.0%;
}

.clients-photo .clients-photo-item27 {
	left: 45.0%;
	top: 85.0%;
}

.clients-photo .clients-photo-item29 {
	left: 36.0%;
	top: 9.0%;
}

.clients-photo .clients-photo-item30 {
	left: 50.0%;
	top: 11.0%;
}

.clients-photo .clients-photo-item31 {
	left: 74.0%;
	top: 96.0%;
}

.clients-photo .clients-photo-item32 {
	left: 85.0%;
	top: 89.0%;
}

.clients-photo .clients-photo-item35 {
	left: 95.0%;
	top: 98.0%;
}

.clients-photo .clients-photo-item22 {
	left: 24.0%;
	top: 14.0%;
}

.slide-personal-contacts {
	background-image: linear-gradient(135deg, #fcfffc 0%, #f8f8f8 40%, #add8f9 100%);
	contain: layout;
}

.slide-bottom-man {
	background-image: url("../img/personal/personal-bottom.webp");
	background-position: 50% 50%;
}

.slide-personal-contacts .slide-title-info {
	margin-bottom: 2.625rem;
}

.slide-contact-descr {
	color: #999999;
	font-size: 1.125rem;
	line-height: 1.66666667;
	margin-bottom: 1rem;
}


.social {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.3125rem;
}

.social li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.5rem;
}

.social a {
	color: #999999;
	transition: color .25s ease;
}

.social a:hover {
	color: #7EA6BD;
}

.social-fixed {
	position: fixed;
	z-index: 300;
	left: 15px;
	bottom: 0rem;
}

.social-fixed li {
	display: block;
	margin-right: 0;
	margin-bottom: 1.375rem;
}

.social a i {
	display: inline-block;
	transition: transform .25s ease;
	transform-origin: center;
}

.social a:hover {
	color: #5099c2;
}

.social a:hover i {
	transform: scale(1.5);
}

.copyright {
	text-align: right;
	color: #999999;
	font-weight: bold;
	font-size: .875rem;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

.copyright-fixed {
	position: fixed;
	right: 15px;
	bottom: 1.5rem;
	z-index: 300;
}

@media (min-width: 1600px) {
	.social-fixed {
		left: 4.25rem;
		bottom: 2rem;
	}

	.copyright-fixed {
		right: 4.25rem;
		bottom: 3.5rem;
	}
}

.body-bg-dark .header:not(.header-shadow) .container-fluid {
	color: #ffffff;
}

.body-bg-dark .header:not(.header-shadow) .header-tagline,
.body-bg-dark .copyright,
.body-bg-dark .footer .social a,
.body-copyright-light .copyright {
	color: rgba(255, 255, 255, .6);
}

.body-bg-dark .social a:hover {
	color: #ffffff;
}

.body-bg-dark .header:not(.header-shadow) .nav-toggle .stick,
.body-bg-dark #pp-nav li a:not(.active) span {
	background: #ffffff;
}

.body-menu-opened .body-bg-dark .nav-toggle .stick {
	background: #000000;
}

.body-bg-dark .header:not(.header-shadow) .container-fluid .brand-name img {
	filter: brightness(0) invert(1);
}

.body-bg-dark .header:not(.header-shadow) .header-content .lni {
	filter: brightness(0) invert(1);
}

.body-bg-dark .header:not(.header-shadow) .header-content .header-contact-item {
	filter: brightness(0) invert(1);
}

.body-bg-dark .copyright {
	color: #ffffff;
}


.message {
	display: none;
}

@media (min-width: 768px) {
	html {
		font-size: 13px;
	}
}

@media (min-width: 992px) {
	html {
		font-size: 14px;
	}
}

@media (min-width: 1280px) {
	html {
		font-size: 15px;
	}
}

@media (min-width: 1600px) {
	html {
		font-size: 16px;
	}
}


.phone-link.revealed {
	animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.language-switcher {
	position: fixed;
	left: 5px;
	top: 40%;
	z-index: 400;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.language-switcher .lang-option {
	display: block;
	background: rgba(126, 166, 189, 0.1);
	color: #7EA6BD;
	font-weight: bold;
	text-align: center;
	padding: 0.4rem 0.6rem;
	border-radius: 6px;
	font-size: 0.85rem;
	text-decoration: none;
	transition: all .3s ease;
}

.language-switcher .lang-option:hover {
	background: #7EA6BD;
	color: #fff;
	transform: translateX(1px);
}

.language-switcher .lang-option.active {
	background: #7EA6BD;
	color: #fff;
	transform: none;
	cursor: default;
}

.body-bg-dark .language-switcher .lang-option {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.body-bg-dark .language-switcher .lang-option.active {
	background: #fff;
	color: #000;
}

.body-bg-dark .language-switcher .lang-option:hover {
	background: #fff;
	color: #000;
	transform: translateX(1px);
}