/* Custom styles for Professional FM */

/* Image optimization */
img:is([sizes="auto" i], [sizes^="auto," i]) {
	contain-intrinsic-size: 3000px 1500px;
}

/* YES System */
.yes-system__info.row div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Page Title */
.page_title {
	margin-bottom: 28px;
}

/* CIK Main Container */
.cik-main-cont {
	width: 100%;
	max-width: 960px;
}

.cik-main-cont .services__info {
	margin-top: 0;
}

.cik-main-cont .services__item {
	width: 50%;
}

.cik-main-cont .services__item img {
	width: 100%;
	margin-top: 30px;
}

/* Teams */
.teams-uchob {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-top: 40px;
}

.team-uchob {
	width: 50%;
}

/* Info Box */
.info-box {
	border: 3px solid #000;
	display: flex;
	flex-direction: column;
	width: 330px;
	min-height: 400px;
	margin-top: 20px;
}

.info-box-header {
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.info-box-header h3 {
	font-size: 20px;
}

.yellow-header {
	background: #fff32d;
}

.gray-header {
	background: #58585a;
	color: #fff;
}

.info-box-body ul {
	padding: 10px 10px 10px 30px;
}

.info-box-body ul li {
	list-style-type: disc;
	font-size: 16px;
	margin-top: 10px;
	text-transform: uppercase;
}

/* Partner Box */
.partner_box {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.partner_box img {
	width: 120px;
	height: 120px;
}

.partner_box h3 {
	text-align: center;
}

.partner_box p {
	text-align: center;
	margin-top: 10px;
}

/* Services */
.services__item.cikinfo {
	width: 100%;
	max-width: 760px;
}

.services__info.partner {
	justify-content: space-between;
	flex-wrap: wrap;
}

.uch-info {
	display: flex;
	justify-content: space-between;
}

/* Cookie Bar */
.cookieTextInner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#cookie-bar {
	display: flex;
	align-items: center;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 5px #000;
	background: #fff;
	border-radius: 28px;
	bottom: 24px;
	color: #8c94a8;
	justify-content: space-between;
	left: 50%;
	padding: 16px;
	position: fixed;
	transform: translate3d(-50%, 0, 0);
	transition: all .5s linear;
	width: 558px;
	z-index: 10000009;
	opacity: 0;
}

#cookie-bar.show {
	opacity: 1;
}

#cookie-bar a {
	color: #007bfc;
}

#cookie-bar span {
	color: #000;
}

#cookie-bar button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	background: #007bfc;
	color: #fff;
	border: 0;
	padding: 0 20px;
	border-radius: 20px;
}

/* Responsive */
@media (max-width: 720px) {
	#cookie-bar {
		bottom: 16px;
		width: calc(100vw - 40px);
	}
	
	#cookie-bar span {
		font-size: 14px;
	}
}

