/*
Theme Name: 1bioTmp
Theme URI: 
Author: BS
Author URI: 
Description: Final
Version: 2.0
*/

html{ scroll-behavior: smooth; }
body{
	font-family: "Manrope", sans-serif;
	overflow-x: hidden;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color:#FBF9F7;
	font-size: 14px;
}
/* custom scrollbars for WebKit */
::-webkit-scrollbar{ width: 8px; height: 6px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{
	background-color: rgba(0,0,0,0.5);
	border-radius: 4px;
}
.row{
	max-width:1230px;
	width:100%;
}
.container-fluid{
	padding-left:0px;
	padding-right:0px;
	padding-top:42px;
	padding-bottom:58px;
}
.wow{
	animation-duration: 2s;
}
/******ГЛАВНОЕ МЕНЮ*****/
:root { 
	/*--header-h: 72px;*/
	--brand-color: #0b2140;
}

/* --- Header fixed --- */
.headerContainer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 72px;
	padding-top:10px;
	z-index: 1040;
	/*background: #fff;
	box-shadow: 0 2px 6px rgba(11,33,64,0.06);*/
	display: flex;
	align-items: center;
}
#activelogo.deactivelogo {
	opacity: 0;    
	transition:  0.3s ease-in-out;

}
#activelogo.activelogo {
	opacity: 1;
	transition:  0.3s ease-in-out;    
}

.headerContainer .container-fluid {
	z-index: 1035;
	padding-left:0;
	padding-right:0;
	height: 115px;
	padding-bottom: 0;
	padding-top: 25px;
}

/* make inner row take full height */
.headerRow { width:100%; align-items: center; }

/* space under header so page content isn't hidden */
/*body { padding-top: var(--header-h); }*/

/* Logo img */
.logo-img {
	height: 77px;
	display:block;     
}

/* Menu button (hamburger) inside header column */
.menu-btn {        
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	/*color: var(--brand-color);*/
}
.menu-btn .bar {
	margin-top: 30px;
	display: block;
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	transition: transform .45s cubic-bezier(.2,.9,.3,1), opacity .25s ease;
}
.menu-btn .bar:nth-child(1) { top: 10px; width: 40px; }
.menu-btn .bar:nth-child(2) { top: 18px; width: 40px; }
.menu-btn .bar:nth-child(3) { top: 26px; width: 40px; }
.menu-btn.open .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background: #fff;
	width: 25px;
}
.menu-btn.open .bar{
	margin-top: 30px;
}
.menu-btn.open .bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(.2);
}
.menu-btn.open .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	width: 25px;
	background: #fff;
}
.menu-btn.open{
	margin-top: 15px;
	border-radius:1000px;
}
/* Search button */
.search-btn {
	display: inline-flex;
	align-items:center;
	gap:8px;
	background: transparent;
	border: none;
	color: var(--brand-color);
	cursor: pointer;
	padding: 6px 10px;
	font-weight: 600;
}
/* --- Overlays (menu and search) --- */
.overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	pointer-events: none;
	overflow: hidden;
}
.overlay.open { pointer-events: auto; }
.menu-panel {
	position: absolute;
	height: 100%;
	top: 0;
	opacity: 0;
	transition: transform .7s cubic-bezier(.2,.9,.25,1), opacity .55s ease;
	will-change: transform, opacity;
}
.menu-panel.left {
	left: 0;
	width: 23.333vw;
	background: #FAAC60!important;
	transform: translateY(-100%);
}
.overlay.open .menu-panel.left {
	transform: translateY(0);
	opacity: 1;
}
.menu-panel.right {
	right: 0;
	width: 76.666vw;
	background: #FA751A!important;
	transform: translateY(100%);
}
.overlay.open .menu-panel.right {
	transform: translateY(0);
	opacity: 1;
}
.panel-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transition: opacity .35s ease .05s;
	padding: 24px;
	box-sizing: border-box;
}
.overlay.show-content .panel-content {
	opacity: 1;
}
.menu-links { list-style: none; padding: 0; margin: 0; text-align: center; }
.menu-links li { margin: 12px 0; }
.menu-links a {
	color: #fff;
	text-decoration: none;
	font-size: 1.75rem;
	font-weight: 600;
	transition: opacity .18s ease, transform .18s ease;
}
.menu-links a:hover { opacity: .9; transform: translateY(-3px); }
/* --- Search top panel --- */
.search-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 220px; /* высота панели, можно менять */
	background: #FEB119;
	background: linear-gradient(324deg,rgba(254, 177, 25, 1) 27%, rgba(249, 121, 15, 1) 70%);
	transform: translateY(-100%);
	transition: transform .45s cubic-bezier(.2,.9,.25,1), opacity .25s ease;
	z-index: 1120;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 18px rgba(11,33,64,0.12);
	padding: 20px;
	box-sizing: border-box;
	pointer-events: none;
}
.search-panel.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.search-inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.search-box {
	width: 66.666%;
	min-width: 260px;
}
.search-input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 16px;
	border: none;
	font-size: 1.05rem;
	/*box-shadow: 0 2px 10px rgba(11,33,64,0.04);*/
}
.search-close {
	margin-left: 12px;
	background: transparent;
	border: none;
	font-weight: 600;
	cursor: pointer;
	color: #fff;
}
/* overlay background to dim rest when search open */
.backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.35);
	z-index: 1115;
	opacity: 0;
	transition: opacity .28s ease;
	pointer-events: none;
}
.backdrop.show {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 768px) {
	.search-panel { height: 180px; }
	.search-box { width: 86.666%; }
	.menu-links a { font-size: 1.4rem; }

	.menu-links1 a {
		font-size: 20px!important;
	}

	.menu-links1 {
		position: relative!important;

	}

	.menulink2pad {
		position: relative!important;

	}

	.menu-links2 a {
		font-size: 16px!important;
	}
	#panelRight > div > div > div.col-8,
	#panelRight > div > div > div.col-4{
		width:100%;
	}

	#panelLeft{
		width:0px;
	}
	#panelLeft > div{
		display:none;
	}
	#panelRight{
		width: 100%;
	}	
	#scrolledTopMenu > div > div.col-1.d-flex.align-items-center	{
		padding-left: 50px;
	}

	#scrolledTopMenu > div > div.col-7{
		width: 45%;
	}
	#conf > div > div:nth-child(2) > div.col-4{
		width:0px;
	}

	#conf > div > div:nth-child(2) > div.col-8.pad0stl{
		padding-left:12px;
		padding-right:12px;
		width:100%;
		text-align:center;
	}
	#conf > div > div.row.mx-auto.row-cols-2.justify-content-md-center.confList > div.col-10 > div > div > div > div
	{
		width:auto;
	}
	#activelogo.deactivelogo {
		opacity: 1;
	}	
}
/********ПОИСК********/
.search-wrapper { display: inline-block; }
.search-btn{
	--panel-inset: 6px;   /* отступ панели от правого края кнопки */
	--panel-w: 0px;       /* ширина выезжающей панели (анимируется) */
	--hole-x: 0px;        /* центр "дырки" внутри панели (px от её левого края) */
	--hole-r: 0px;        /* радиус дырки в px */
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 50px;
	padding: 6px 20px;
	border-radius: 999px;
	background: transparent;
	color: #1e90ff;
	border: none;
	cursor: pointer;
	overflow: visible;
}

/* Панель теперь привязана к правому краю и растёт влево */
.search-btn::before{
	content: '';
	position: absolute;
	top: 4px;
	bottom: 4px;
	right: var(--panel-inset);
	width: var(--panel-w);
	border-radius: 999px;
	background: #fff;
	z-index: 1;
	transition: width .28s cubic-bezier(.2,.9,.3,1);
	-webkit-mask: radial-gradient(circle var(--hole-r) at var(--hole-x) 50%, transparent calc(var(--hole-r) - 0.5px), black calc(var(--hole-r) + 0.5px));
	mask: radial-gradient(circle var(--hole-r) at var(--hole-x) 50%, transparent calc(var(--hole-r) - 0.5px), black calc(var(--hole-r) + 0.5px));
	pointer-events: none;
}
.search-label { order: -1; position: relative; z-index: 2; }
/* Контент выше панели */
.search-btn > * { position: relative; z-index: 2; }
/* Текст (метка) — изначально скрыт и сдвинут немного влево */
.search-label {
	display: inline-block;
	color: #505050;
	opacity: 0;
	font-size:12px;
	transform: translateX(-6px);
	transition: opacity .22s ease, transform .22s ease;
	white-space: nowrap;
	margin-right: 12px;
}
/* Показать метку при открытии */
.search-btn.open-label .search-label,
.search-btn:hover .search-label,
.search-btn:focus .search-label {
	opacity: 0.8;
	transform: translateX(0);
	transition-delay: .07s;
}
.search-btn:hover .search-icon{
	width: 22px;
	height: 22px; 
	transition: transform .18s ease;
}
.search-icon {
	width: 22px;
	height: 22px;
	display: block;
	color: #fff; 
	transition: transform .18s ease;
}
/***********************СТИЛИ МЕНю***************/
.botposstl{
	bottom: 66px;
	position: absolute;    
}
.menu-panel.right .row{
	/*max-width: 980px;*/
	width: 100%;
}
ul.menu-links1, ul.menu-links2{ 
	list-style-type: none; 
	padding-left:0px;    
}
.menu-links1 a,.menu-links2 a{
	color:#fff;

}
.menu-links1 a{
	font-size:55px;
	font-weight:600;
	line-height:0.98;
	letter-spacing: -.03em;
	text-decoration:none;    
}
.menu-links1 li{
	padding-bottom:6px;
}
.menu-links1
{
	position: absolute;
	bottom: 36px;
}
.menu-links2 a{
	font-size:2.3529411765vw;
	font-weight:600;
	line-height:1.08;
	letter-spacing: -.02em;
	text-decoration:none;    
}
.topPolitLink a{
	font-size:18px;
	color:#fff;
	font-weight:600;
	line-height:1.39;
	letter-spacing: -.02em;
	text-decoration:none; 
	opacity:0.54;
}

.menulink2pad{
	position: absolute;
	bottom: 36px;
}
.menu-links1 a,.menu-links2 a {
	display: inline-flex;        /* позволяет выровнять полоску и текст по центру вертикали */
	align-items: center;
	text-decoration: none; 
	padding: 6px 0;
	transition: color .18s;
}
/* псевдоэлемент слева от текста */
.menu-links1 a::before,.menu-links2 a::before {
	content: "";
	display: block;              /* становится флекс-элементом внутри a */
	width: 0;                    /* изначально невидимая (толкать не будет) */
	height: 4px;                 /* толщина полоски */
	background: #fff;         /* цвет полоски */
	margin-right: 0;             /* расстояние до текста */
	transition: width .22s ease, margin-right .22s ease;
	border-radius: 2px;
	/* выровнять по центру вертикали уже делает align-items: center у a */
}
/* при наведении / фокусе "вырастает" до 10px и подталкивает текст */
.menu-links1 a:hover::before,
.menu-links1 a:focus-visible::before,.menu-links2 a:hover::before,
.menu-links2 a:focus-visible::before {
	width: 20px;                 /* длина "дефиса" */
	margin-right: 8px;           /* отступ до текста */
}
/* (опционально) визуальный эффект текста при наведении */
.menu-links1 a:hover,
.menu-links1 a:focus-visible,.menu-links2 a:hover,
.menu-links2 a:focus-visible {
	color: #fff;
}
.topPolitLink a:hover{ 
	text-decoration:underline; 
	opacity:1;
}
/**********прокрутка меню***********/
#scrolledTopMenu{
	transition: background-color .2s; 
}
#scrolledTopMenu.scrolledTopMenuSTL{
	background: rgba(89, 151, 232, 0.72);      
}
/****КРОШКИ****/
.breadcrumbsStl a{
	color:#fff;
	text-decoration:none;
	opacity:0.8;
	transition: 0.5s;
}
.breadcrumbsStl a:hover{
	color:#fff;
	text-decoration:underline;
	opacity:1;
}
.breadcrumbsStlSep{
	color:#fff;
}
.breadcrumbsStllast{
	color:#fff;
}
/*****КОНЕЦ ГЛАВНОЕ МЕНЮ*******/



/*******************СТАРТОВЫЙ БАНЕР****************/

.startbanner_stl {
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}
.startbanner_stl{
	height:100vh;

	width:100%;
background: #F9790F;
background: linear-gradient(178deg, rgba(249, 121, 15, 1) 19%, rgba(251, 249, 247, 1) 76%);
}

/*#startbanner:before{*/
.classbgopac{
	position:absolute;
	left:0;
	BOTTOM:0;

	content: url('https://1bio.ru/wp-content/themes/1bioTMP/img/startBannerBgNew11.png');
	width: 100%; 
	height: auto; 
	opacity:0.8;

}
.hero__video video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.startbanner_stl .container-fluid .h1header{
	padding-top:72px;

}
.startbanner_stl .h2stl{
	padding-top:48px;
}
.pab{
	padding-top:5px;
}
.stbannerTxt{
	color:#FFFFFF;
	font-size: 24px !important;
	font-weight: 500;
	line-height:132%;
	letter-spacing: -.02em;
	opacity:0.8;
}
.stlb11{
	padding-bottom:32px;
}
.edulinkblock{
	width:310px;
	height:200px;
	border-radius:22px;

	background-image: url('https://1bio.ru/wp-content/themes/1bioTMP/img/gerb.svg');
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	float: right;
	padding: 20px;
	padding-left: 18px;


}
.edulinkblock .eduH1{
	font-size:12px;
	font-weight:600;
	color:#843C00;
	line-height:1.29;
	letter-spacing: -.02em;
}
.edulinkblock .eduH2{
	font-size:20px;  
	font-weight:600;
	color:#000000;
	line-height:1.1;
	letter-spacing: -.02em;
}
.arrowDown img{
	padding-top: 136px;
	max-width: 86px;
}
.glass{
	background-color: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px); 
}
.overlaybg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/startBannerBgNew.png)!important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 1; /* Overlay поверх видео */
	opacity:0.8;
}
.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	z-index: 0; /* Видео под overlay */
}


.startBnCont2{
	padding-top:0px!important;

}
.blockferststl{
	padding-bottom:0px!important;
	position: absolute;
	top: 150px;
	z-index:5;
}
.firstImgSTL{
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/secondBannerNew.png);
	background-position: center center;
	background-size: cover;
	max-width: 525px;
	height: 540px;
	border-radius: 24px;
}
#aboutblock{
	padding-top:142px;
}
.startbanner_stl .aboutTxt{
    font-size:32px;
    font-weight:500;
    letter-spacing: -0.02em;
    color:#272727;
    line-height:1.40;
  text-align:justify ;
}


/********************/
/**ТИПОГРАФИЯ**/
h1{
	color:#FFFFFF;
	font-weight:600;
	font-size: 50px;

	margin-bottom: 28px;
	line-height:1;
	letter-spacing: -.02em;
}
.classiccont ol li {
	padding-top: 8px;
}
ol {
	counter-reset: item;
	list-style: none;
	padding-left: 0;
}
.h4stl {
    color: #272727;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.23;
    letter-spacing: -.02em;
}
.emstl {
    color: #525252;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.29;
    letter-spacing: -.02em;
    opacity: 0.6;
    font-style: normal;
}
.h2stl46px {
    font-size: 42px;
    line-height: 1.12 !important;
    font-weight: 600;
	letter-spacing: -.02em;
}
#aboutblock > div:nth-child(2) > h2 {
    max-width: 320px;
}
.h2Title68 {
    font-size: 64px;
    line-height: 1.04 !important;
    letter-spacing: -.03em;
	    color: #272727;
    font-weight: 600;
}

ol li {
	counter-increment: item;
	position: relative;
	padding: 8px 16px 8px 40px; /* отступ слева под маркер */
}

ol li::before {
	content: counter(item);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background-color: #F9790F;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;

}


/********КОНФЕРЕНЦИИ*****/
.confRow{
	background-color: #fff;
	border-radius: 16px;
	min-height: 68px;
	padding-top: 15px;
	padding-bottom: 15px;	
	align-items: anchor-center;
}
.confDate{
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	padding-left: 20px;
	/*margin-left: 38px;*/
}
.confTitle, .confGeo {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.29;
	color: #525252;
	padding-left: 11px;
	padding-right: 11px;
}
.confGeo {
	width: 260px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.29;
	color: #525252;
	padding-left: 11px;
	padding-right: 11px;
}
.confBtn a{
	float:right;
}
@media (max-width: 767.98px) {
	.confGeo,.confTitle,.confDate,.confBtn{
		width:100%;
		margin:5px;
		text-align:center;
		float:none;
	}	
	.confBtn a{
		float:none;
	}
}

/******ЗАГОЛОВКИ СТРАНИЦ*********/
.breadcrumbsStl a {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
	transition: 0.5s;
}
.breadcrumbsStl a:hover{
	color:#fff;
	text-decoration:underline;
	opacity:1;
}
.breadcrumbsStlSep {
	color: #fff;
}
.breadcrumbsStllast {
	color: #fff;
}
#pageheader{
	padding-top: 42px ;
    padding-bottom: 8px ;
}

.pageheaderStl .breadcrumbsStl {
	padding-top: 25px;
	padding-left: 38px;
}
.pageheaderStl {
	margin-bottom: 0 !important;
}
.pageheaderStl {
	min-height: 216px ;
	margin-top: 70px;
	border-radius: 24px;
	opacity: 1;
	background: linear-gradient(92.68deg, #F9790F 20.04%, #FEB119 69.47%);
	display: flex;

}
.pageheaderStl .col-6, .pageheaderStl .col-12:nth-child(2) {
	align-self: flex-end !important;
}			
.pageheaderStl .pagetitle {
	padding-left: 38px;
	font-weight: 600;
	font-size: 42px;
	line-height: 98%;
	color: #FFFFFF;
	float: left;
}
.pageheaderStl .pagetitle {
	padding-bottom: 0 !important;
}			
.pageSubtitle {
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	padding-top: 10px;
	line-height: 1.25;
	letter-spacing: -.02em;
	opacity: 0.5;
}				
.pageheaderBGimg{
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newsBg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
@media (max-width: 767.98px) {			
	.pageheaderStl .pagetitle{
		font-size: 32px;
		padding-top: 10px;
		padding-left: 10px;
	}
	.pageheaderStl .breadcrumbsStl{
		padding-left: 10px;
	}
}	
/*****КАРТОЧКИ ДОКУМЕНТОВ*****/
.DocuStl-1{
	background-color: #fff;
	border-radius: 16px;
	min-height: 68px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.titlePS{
	padding: 10px;
	padding-left: 20px;
}
.DocuStl-1 .col-sm-2 .btn-stl-1	{
	float: right;
}
@media (max-width: 767.98px) {
	.titlePS{
		text-align:center;
	}	
	.DocuStl-1 .btn-stl-1{

	}
}

/****ИСТОРИЯ ИНСТИТУТА***********/
.histrow{
	max-width: 1440px!important;
}
.iteam .container-fluid {
    padding-top: 60px;
}
#historynew .historynewtitle {
    padding-top: 142px;
    padding-bottom: 80px;
}

#historynew .historynewtitle{
	padding-top:142px;
	padding-bottom:80px;
}
#historynew  {
	background-color:#FBF9F7;
}
#historynew .nav-tabs .nav-link {
	width: 104px !important;
	height: 34px;
	border-radius: 60px;
	background-color: #E0E0E0;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 108%;
	letter-spacing: -0.02em;
	padding: 0;
	margin: 0 5px;
	border: none !important;
}

/* Активный таб */
#historynew .nav-tabs .nav-link.active {
	background-color: #F9790F !important; /* Можно поменять на нужный цвет */
	color: #fff !important;
}

/* Убираем стандартные отступы и стили */
#historynew .nav-tabs {
	border-bottom: none;
	justify-content: flex-start;
}

#historynew .tab-text {
	text-align:center;
	font-weight: 500;
	font-size: 17px;
	line-height: 151%;
	letter-spacing: 0%;
	color:#717171;
	padding-top:40px;
	padding-bottom:15px;
	max-width:672px;
	margin:0 auto;
}
#yearTabsContent{
	margin-top:0px;
}
#historynew .image-gallery {
	margin: 20px 0;
}

#historynew .gallery-item {
	position: relative;
	flex: 0 0 auto; /* Не растягивается */
	border-radius: 12px; /* Можно сделать как у вас в дизайне */
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

#historynew .gallery-item img,#carousel div.teamFoto,.firstImgSTL,.labfotoimg   {
	transition: transform 0.3s ease;
}

#historynew .gallery-item img:hover,#carousel div.teamFoto:hover,.firstImgSTL:hover,.labfotoimg:hover  {
	transform: scale(1.05);
}
/************FOOTER*************/

/**банер***/

.footerBanner .qworkBanner {
	min-height: 132px;
	border-radius: 24px;
	align-items: anchor-center;
}
.qworkBanner {
	background: linear-gradient(92.68deg, #F9790F 20.04%, #FEB119 69.47%);
}
.qworkBanner .col-8, .qworkBanner .col-4 {
	padding-left: 50px;
	padding-right: 50px;
	z-index: 500;
}
.qworkTxt {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.33;
	color: #fff;
	letter-spacing: -.03em;
}
.qworkBanner .col-4{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 767.98px) {					
	#footerBanner > div > div > div.col-8,#footerBanner > div > div > div.col-4{
		width:100%;
		justify-content: center;
	}
	.qworkTxt{
		text-align: center;
	}
	.footerBanner .qworkBanner {
		min-height: 200px;
	}
}


/** КНОПКА НАВЕРХ*/
/* Кнопка "Наверх" */
#scrollToTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	color: #000;
	font-size: 24px;
	border: 1px solid gray;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s, background-color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
	background-color: #F9790F;
}

#scrollToTopBtn.show {
	opacity: 1;
}
/***/


.footer_stl{
	padding-top:32px;
	background-image:url("https://1bio.ru/wp-content/themes/1bioTMP/img/rig3.png");
	background-repeat:no-repeat;
	background-size:cover;   
	min-height:550px;    
}
.footer_stl h4{
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: #FFFFFF;
	letter-spacing: -.02em;
}
.footer_stl ul{
	list-style-type: none;
	padding-left:0;
}
.footer_stl ul li a{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.29;
	color: #FFFFFF;
	letter-spacing: -.02em;
	transition: opacity 0.12s ease-in-out;
	text-decoration:none;     
}
.footer_stl ul li a:hover{
	opacity: 1;
}
.footer_stl ul li{
	margin-top:4px;
	height:18px;     
}
.footfooter{
	margin-top:50px;
	display: flex;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.footcopy{
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.39;
	color: #FFFFFF;
	letter-spacing: -.02em;
	opacity: 0.76;
	vertical-align: baseline;
	align-items: center;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	height:138px;
	padding:48px;
}
.brdLeft{   
	margin: auto;
}
.brdLeft a{
	float: right;
	padding-right: 38px;
}
.brdRight{    
	margin: auto;
}


/*******КОМАНДА ИНСТИТУТА*********/
.iteam{
     
  
 padding-bottom: 60px;
    margin-top: 20px;
      
    background:#FBF9F7;
   
}


/* Обертка карусели */
.iteam .carousel-wrapper {
position: relative;

width:100%;

}

/* Контейнер с прокруткой */
.iteam .carousel-container {
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
scroll-behavior: auto; /* отключить автоматическую прокрутку */
cursor: grab;
-webkit-user-select: none;
user-select: none;
padding-left: calc((100% - 1210px) / 2);
}

/* Слайды */
.iteam .slide {
display: inline-block;
    max-width: 290px;
    height: auto;
    margin-right: 24px;
    flex-shrink: 0;
    background: #FFFFFF;
    vertical-align: top;
    border-radius: 24px;
    overflow: hidden;
}


.scrolling-wrapper {
   overflow: auto;
            overflow-y: hidden;
            margin: 0 auto;
            white-space: nowrap
}


.scrolling-wrapper::-webkit-scrollbar-button:end:decrement,.scrolling-wrapper::-webkit-scrollbar-button:start:increment {
  width:  calc((100% - 1210px) / 2);;
display: block;
background: transparent!important;
}
.scrolling-wrapper::-webkit-scrollbar-thumb {
background-color: var(--black-color); /* цвет плашки */
border-radius: 10px; /* закругления плашки */
}

.scrolling-wrapper::-webkit-scrollbar-track-piece,.scrolling-wrapper::-webkit-scrollbar-track {
background: #D0D0D0;
border-radius: 10px; /* цвет дорожки */
}
.scrolling-wrapper::-webkit-scrollbar {
height: 6px;
}


.my-scroll
{
    padding-bottom: 54px;
}


.my-scroll::-webkit-scrollbar {
  height: 4px;
  /*background: #fff; */
}

.my-scroll::-webkit-scrollbar-thumb {
 /* background-color: #333;*/
  /*border-radius: 4px;*/
  height: 150px!important; /* фиксируем ширину */
}






.teamFoto{
    width: 290px;
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 24px;
   
 
  
}

.teamAllInfo{
      
    margin-left: 18px !important;
    margin-right: 18px !important;
    margin-top: 15px !important;
    margin-bottom: 18px !important;
}
.teamName{
       color:#000000;
    font-weight:600;
    font-size:20px!important;
    line-height:1.00;
    letter-spacing: -.02em;
    padding-left:0;
    white-space: break-spaces;
	min-height:40px;
}
.teamInfo{
    padding-left:0;
}
.teamInfo img{
    float: left;
    max-height:32px;
}
.teamPost{
       display: flex; /* Добавлено для активации Flexbox */
align-items: center; /* Вертикальное выравнивание */
/* Остальные свойства остаются без изменений */
border-top: 1px solid #525252;
margin-bottom: 20px !important;
margin-left: 18px !important;
margin-right: 18px !important;
min-height: 87px;
border-bottom: 1px solid #525252;
color: #aba9a9;
font-weight: 600;
font-size: 14px !important;
line-height: 1.29;
letter-spacing: -.02em;
padding-top: 6px;
padding-bottom: 6px;
 
}
.roleml .teamPost span {
display: block; /* чтобы span занял всю ширину колонки */
white-space: normal; /* разрешить переносы строк */
width: 100%;
    margin-left: -10px;
max-width: 100%;
word-break: break-word; /* перенос длинных слов/цепочек символов, если нужно */
overflow-wrap: break-word;
}
.my-scroll
{
    padding-bottom: 62px;
}


.my-scroll::-webkit-scrollbar {
  height: 4px;
  /*background: #fff; */
}

.my-scroll::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
  width: 200px; /* фиксируем ширину */
}

.iteam .btnLink1{
    max-width:256px!important;
    margin-top: 10px;
}

.iteam .h2Title68   {
    color:#161616;
    text-decoration:none;
    line-height: 1;
}
.iteam .container-fluid {
   padding-top: 60px; 
}

.botPadStlIteam{
    padding-bottom:32px;
}
.roleml{
    
}


.iteam .btnlinWork .btnLink1{
   
   
    width: 285px;
    height: 60px;
    border-radius: 57px;

}



.carousel-controls {
    padding-top:15px;
    display: flex;
    justify-content: right;
    gap: 16px;
    
}

.carousel-btn {
    background-color: #C9C9C9;
    border: 1px solid #C9C9C9;
    border-radius: 57px;
    width: 75px;
    height: 50px;
    opacity:0.5;
    
    
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #C9C9C9;
    border: 1px solid #C9C9C9;
}
body > div > div.container-fluid.botPadStlIteam.wow > div > div:nth-child(2) > div:nth-child(1) > div > a{
	float:right;
}

  .bubble-canvas-container {
      /*position: fixed;*/
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
      overflow: hidden;
    }

    #canvas {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(
175deg, rgba(249, 121, 15, 1) 40%, rgba(251, 249, 247, 1) 83%)
    }



/*********************ПРОВЕРИТЬ****/






/*************СТРУКТУРНЫЕ***********/

.structure-institute .nav-link.active,.structure-institute .nav-link{
	border-radius:8px!important;
}
.pageheaderStl {
	min-height:216px!important;
}
.pageheaderStl .col-6,.pageheaderStl .col-12:nth-child(2) {
	align-self: flex-end!important;
}
.pageheaderStl .h2forpress{
	padding-bottom:0!important;
}

.pressH2Stl{
	padding-bottom:25px!important;
	padding-left: 38px;
	font-weight: 600;
	font-size: 42px;
	line-height: 98%;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	float: left;
}
.structure-institute .container-fluid{
	padding-top:0px!important;
}
#forpress .container-fluid{
	padding-top:42px!important;
	padding-bottom:8px!important;
}  
.pagestlteam .container-fluid {
	padding-top:46px!important;
}
.structCatContent .col-12,.eventStlList,eventStlList .container {
	padding-left:0px;
}
.yearsList .col-12{
	padding-left:0px;
}
#structure-institute > div > div > div.col-3.col-md-3.col-lg-3.mb-3{
	padding-left:0px;
}








/****сквазные стили ***/
.structCatTitle{

	font-weight: 600!important;
	font-size: 14px!important;
	line-height: 1.29!important;
	letter-spacing: -0.02em!important;
	color:#000000!important;
	opacity:0.5!important;

}
.emplcardmail, .emplcarphone {
	padding-top: 17px;
	font-weight: 500;
	font-size: 16px;
	line-height: 129%;
	letter-spacing: -0.02em;
	color: #525252;
	padding-left: 0px;
	padding-right: 0px;
}
.rightsidecont ol li{
	padding-bottom:32px;
	line-height:1.08;
}
.posts-list,.cardbasic{
	padding-top: 28px;
}
.col-9.titlePS{
	padding-left: 15px;
	font-weight: 700;
}
.col-8.titlePS{
	font-weight: 700;
}
.structCatTitleDocu {

	padding-bottom: 4px!important;
}
.cardbasic,.cardbloks{
	padding-top:32px;
	padding-bottom:32px;
}
.accordion-item{
	padding-top:28px!important;
}
.emplbotdata{
	margin-top:116px!important;
}
.rightsidecont ul li {
	padding-bottom: 12px!important;
}
.empTagsledt ul {
	padding-left: 0px!important;
	padding-right: 0px!important;
}
.empTagsledt{
	padding-right: 0px!important;
}
.yearsList{   
	padding-top: 12px; 
}
.rightsidecont {
	padding-bottom: 0px!important;
}
.classiccont{
	padding-top: 16px; 
	margin-left: -12px;
}
.rightsidecont p {
	line-height:1.08!important;
	font-weight: 500!important;
}
.rightsidecont p a{
	color:#F9790F;
	text-decoration:none;
}
.rubrukastl{
	padding-top:0px!important;
	padding-bottom:0px!important;
}

.razdeltitle h3{
	color:#0F0F0F;
	font-weight: 600;

	font-size: 16px;

	line-height: 135%;
	letter-spacing: -0.02em;
	vertical-align: bottom;
}
.razdelbtn a{
	Width:40px;
	height:40px;
	border-radius:1000px;
	background-color:#EEEEEE;
	border:none;
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtn.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.razdelbtn a:hover{
	background-color:#fff;
}
.razdelcard{		
	height: 156px;
	border-radius: 24px;
	transition: color .15s ease-in-out, background .15s ease-in-out;
}
.razdelcard:hover{
	color:#fff!important;
	background: #F9790F;
	background: linear-gradient(90deg,rgba(249, 121, 15, 1) 27%, rgba(254, 177, 25, 1) 70%);
	transition: color .15s ease-in-out, background .15s ease-in-out;



}
.cardbodyrub{

	margin-bottom: 0px;

}

.newsMore1 a .btn-light {
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtnWhite.svg)!important;
	background-repeat: no-repeat!important;
	background-position: center center!important;
}

.newsMore1 .btn-light {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.08;
	color: #FFFFFF;
	letter-spacing: -.02em;
	width: 112px!important;
	height: 45px!important;
	border-radius: 44px;
	border: none;
	background-color: #272727;
}


.newsMore1 a {
	float: right;
}

.labalist .row .col-2 {
	padding-left:5px!important;
	padding-right:12px!important;
}
.fotolist .row{
	padding-left:12px;
}


.fotolist .titlePS1{

	font-weight: 600;
	font-size: 20px;
	line-height: 1.29;
	letter-spacing: -0.02em;
	color:#F9790F;

}

.fotolist .titlePS2
{
	color:#525252;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.29;
	letter-spacing: -0.02em;

}

/***************СОБАКА***************/


.labalist a {
	color: rgb(0 0 0);
	text-decoration: underline;
}


.structCatTitleDocu {
	font-weight: 600;
	font-size: 20px;
	line-height: 129%;
	letter-spacing: -.02em;
	/*padding-top: 28px!important;*/
}

/*.container-fluid {
padding-top: 42px !important;
padding-bottom: 8px !important;
}*/
.fotolist .row img {
	border-radius: 8px;
}
.razdelcard:hover .razdeltitle h3 {
	color:#fff;
}
.rubrikalist{
	padding-top: 0px !important;
}

.classiccont ol li{
	padding-top:8px;
}
.classiccont tr td {
	align-content: baseline;	

}
.classiccont tr td img {
	top: 8px;
	position: relative;
}
.yearsList article ul {
	padding-top:10px;
}
.obrlistop{
	color:#969292;
}
.obrlistop a{
	color:#F9790F;
}
.obrlistop p{
	margin-bottom: 0px;
}
.obrlist{
	padding-bottom:4px;
}
.obrlist .col-1
{
	max-width: 20px;
}
.col-3.titlePS, .col-5.titlePS{

	font-weight:700;
}
.spravochnikTitle
{
	font-size: 9px;
	margin-bottom: 0px !important;
	text-align: left;
}
.contfootdocu .col-8.titlePS{
	align-content: center;
	padding-left: 25px;
}
.custom-slider-top-buttons button a{
	text-decoration:none;
	color:#979797;
}
.custom-slider-bottom-button button a{
	text-decoration:none;
	color:#fff;
}

.btnLink2:hover {
	color: #fff !important;
}
.btnLink2 {

	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -.02em;
	border-radius: 50px;
	padding-left: 36px;
	padding-right: 36px;

	height: 57px;
	max-width: 224px;
	background-color: #FBF9F7;
	border-radius: 62px;
	color: #010205;

	font-size: 14px !important;




	border: 2px solid #010205;
}



.vnehlink a{
	color: #F9790F;
	text-decoration: none;
}
.kafedranobg a .btn-light{
	background-image: none !important;
	min-width: 200px;
}
.docurowpad{
	padding-top:0px!important;
	padding-bottom:0px!important;
	min-height:0px!important;
}
.razdeljakor{
	margin-top: 30px;
	position: sticky;
	top: 32px;

}

.razdeljakor li a.nav-link{
	font-size: 12px !important;
	line-height: 1.29 !important;
}
.razdeljakor li 
{
	padding: 0!important;
}

.razdeljakor li a.nav-link:focus, .razdeljakor li a.nav-link:hover{
	color:#F9790F!important;
}
/*********slider home new*********/








.yearlistnavi li {
	display: inline;


}




.yearlistnavi li a
{
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	margin: 0 5px;
	padding: 10px 25px;
	background-color: #dedede;
	border-radius: 64px;
	font-size: 16px;
}
.yearlistnavi li a:hover
{
	color: #fff;
	background-color: #FA751A ;
}
.aspirantnavilink a{
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	margin: 0 5px;
	padding: 10px 25px;
	background-color: #dedede;
	border-radius: 64px;
	font-size: 16px;
	border:none;

}
.aspirantnavilink a:hover
{
	color: #fff;
	background-color: #FA751A ;
}

.resultLabList ol, .resultLabList ul {
	box-sizing: border-box;
	font-size: 14px;
	margin-bottom: 16px;
	text-align: justify;
	padding-left: 22px!important;
}


#singlTmpl1 > div > div > div.col-md-9 > div.container > div.posts-group > div.posts-list.labalist > div > div{
	line-break: anywhere!important;
}

#singlTmpl1 .posts-group .labalist .row div:nth-child(2),
#singlTmpl1 .posts-group .labalist .row div:nth-child(3),
#singlTmpl1 .posts-group .labalist .row div:nth-child(4),
#singlTmpl1 .posts-group .labalist .row div:nth-child(5),
.spravochnikTitle{
	text-align:center;
}
#sidebarlaba .btnBlack{
	width:100%;
	padding-top: 32px;
}
#sidebarlaba >.btnBlack .btn-dark{
	background-color: #272727;
	color: #fff;
	height:56px;
	border: none;
	border-radius: 32px;
	font-weight: 700;
	font-size: 14px!important;
	line-height: 1.4;
	letter-spacing: -0.02em;

}
#sidebarlaba >.btnBlack .btn-dark:hover{
	background-color: #FA751A;
	color: #fff;

}
.zahitadis .row
{
	height: 322px;
	background-color: #fff;
	border-radius: 16px;
}
.zahitadis .row .instname{

	font-weight: 600;
	font-size: 14px;
	line-height: 1.29;
	letter-spacing: -0.02em;
	color:#AEAEAE;
	padding-top: 20px;
	padding-left: 28px;
	padding-right: 45px;
}
.zahitadis .row .emplname{
	align-content: end;
	padding-bottom: 20px;
	padding-left: 28px;
	padding-right: 45px;

	font-weight: 600;

	font-size: 20px;
	color:#202020;
	line-height: 1.35;
	letter-spacing: -0.02em;

}
h1 {
	color: #FFFFFF;
	font-weight: 600;
	font-size: 50px;
	margin-bottom: 28px;
	line-height: 1;
	letter-spacing: -.02em;
	max-width: 650px;
}
.formodalpic{
	width: 100%;
	height: auto;
}
.newsGrid .col .card {
	border-radius: 16px;
}
.newsGrid .card {
	background-color: #FFFFFF;

	width: 396px;
	height: 305px;
	padding: 30px;
	border: none;
}
.datePub {
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #878C91;
}
.silly-circle {
	width: 0px;
	height: 0px;
	border: 7px solid #F9790F;
	border-radius: 180px;
}
.newsTitle {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.18;
	color: #010205;
	letter-spacing: -.03em;
	width: 297px;
	margin-top: 23px;
}
.newsExpt {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.42;
	color: #878C91;
	width: 240px;
}
.exptBtnBottom {
	bottom: 31px;
	position: absolute;
}
.newsGrid .newsMore a .btn-light {
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtn.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.newsGrid .btn-light {
	width: 85px!important;
	height: 54px!important;
	border-radius: 68px!important;
	border: 1px solid #010205!important;
	background-color: #fff!important;
}
.newsGrid button:hover
{
	border-color:#FA751A!important;  
	background-color:#FA751A!important;  
}
.newsGrid a .btn-light:hover {
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtnWhite.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.selecdatanews .form-control{
	height: 57px;
	color: #010205;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -.02em;
	border-radius: 50px;
}
/***********навигация пагинация*********/

.pagination .page-numbers.current,.page-numbers.current{
	font-size: 18px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid black;
	border-radius: 8px;
	height: 30px;
	width: 30px;
	align-content: center;
	margin: 8px;
}
.pagination	a.page-numbers,.page-numbers {
	font-size: 18px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid black;
	border-radius: 8px;
	height: 30px;
	width: 30px;
	align-content: center;
	margin: 8px;
}
.pagination a.prev, .pagination a.next,.next.page-numbers,.prev.page-numbers  
{
	font-size: 18px;
	padding-left: 10px;
	padding-right: 10px;
	border:none!important;
	height: 30px;
	width:150px;
	align-content: center;
	margin: 8px;
}



.stikysidebar
{
	margin-top: 30px;
	position: sticky;
	top: 32px;
}

.padancorstl {
	position: relative;
	margin-left: 15px !important; /* отступ слева */  
	display: block;
}

.padancorstl::before {
	content: "•"; /* маркер-диск */
	color: #F9790F; /* цвет маркера */
	font-size: 1.5em; /* размер точки (можно регулировать) */
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}
.padancorstlTitle {
	position: relative;
	display: block;
}
.padancorstlTitle::before{
	content: "›"; /* маркер-диск */
	color: #F9790F; /* цвет маркера */
	font-size: 1.5em; /* размер точки (можно регулировать) */
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}








#historynew{
	padding-bottom: 82px;
}

.newsGridSmi{

}
.newsGridSmi .newsMore a .btn-light {
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtn.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.newsGridSmi .btn-light {
	width: 85px!important;
	height: 54px!important;
	border-radius: 68px!important;
	border: 1px solid #010205!important;
	background-color: #fff!important;
}
.newsGridSmi button:hover
{
	border-color:#FA751A!important;  
	background-color:#FA751A!important;  
}
.newsGridSmi a .btn-light:hover {
	background-image: url(https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/arrowRigthBtnWhite.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.newsGridSmi .card {
	background-color: #FFFFFF;
	/*max-width: 396px;*/
	height: 242px;
	padding: 30px;
	border: none;
}
.newsGridSmi .txtrow{
	padding-top:27px;
	padding-bottom:27px;
}

.newsGridSmi .row{
	max-width:1230px;
}
.newsGridSmi p.textstl{
	font-size:16px;
	font-weight:600;
	line-height:1.5;
	opacity:0.75;
	letter-spacing: -.02em;
	text-align:center!important;
}

.newsGridSmi .h2Title42{
	font-weight: 600;
	font-size: 42px;
	line-height: 1.25;
	letter-spacing: -.03em;
}
.newsGridSmi .silly-circle{
	width: 0px;
	height: 0px;
	border: 7px solid #F9790F;
	border-radius: 180px;
}


.newsGridSmi .card:hover .datePub,.newsGridSmi .card:hover .newsTitle, .newsGridSmi .card:hover .newsExpt
{
	color: #FFFFFF;
	transition: color .15s ease-in-out, background .15s ease-in-out;
}
.newsGridSmi .datePub{
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #878C91;
}
.newsGridSmi .newsTitle{

	font-size: 22px;
	font-weight: 600;
	line-height: 1.18;
	color: #010205;
	letter-spacing: -.03em;
	width: 297px;
	margin-top:23px;

}
.newsGridSmi .newsExpt{
	font-size: 12px;
	font-weight: 500;
	line-height: 1.42;
	color: #878C91;
	width: 240px;

}
.newsGridSmi .newsMore button
{
	width: 85px;
	height: 54px;
	border-radius: 68px;
	border: 1px solid #010205;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color:#fff;

}

.newsGridSmi .newsMore button:hover
{
	background-color:  #4699EA;
	border:none;
}
.newsGridSmi .exptBtnBottom{
	bottom: 31px;
	position: absolute;
}
#aboutblock > div:nth-child(2) > h2{
	max-width: 320px;
}


/**************АДАПТИВ
* Главная
* *************/
/* Вертикальное выравнивание содержимого .botPadStlIteam на мобильных */
/* На мобильных устройствах (до 767.98px) делаем колонки .col-6 в стек (одну под другой) */
@media (max-width: 767.98px) {
	.botPadStlIteam .row.row-cols-2 > .col-6 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.botPadStlIteam .row.row-cols-2 {
		flex-direction: column;
		gap: 15px;
	}
	body > div > div.container-fluid.botPadStlIteam.wow.animated > div > div:nth-child(2){
		margin: 0 auto;
	}	
	.h2Title68
	{
		font-size: 48px!important;
	}
	#yearTabs > li{
		padding-bottom:8px;		
	}
	.startbanner_stl .container-fluid .h1header {
		padding-top: 0px;
	}
	.hero__video .videolinkstart{
		display:none!imortant;
	}	

	h1 {
		color: #FFFFFF;
		font-weight: 600;
		font-size: 25px!important;
		margin-bottom: 18px!important;
		line-height: 1.25;
		letter-spacing: -.02em;
	}
	.stbannerTxt {
		color: #FFFFFF;
		font-size: 12px !important;
		font-weight: 500;
		line-height: 132%;
		letter-spacing: -.02em;
		opacity: 0.8;
	}
	#startbanner > div.startbanner_stl > div.container-fluid.startBnCont2 > div.row.mx-auto.row-cols-2.justify-content-md-center > div.col-1.animate__zoomIn.animate__animated
	{
		display:none;
	}
	#historynew .nav-tabs	
	{
		/*justify-content: center;		*/
	}
	#NewHomeSlider .carousel-item{
		height:700px;
		padding-top: 100px;
		background-position:center center;	
	}
	.custom-slider-caption{
		max-width: 400px;
		margin: 5px!important;

	}
	.newSlideTitle {  
		font-size: 32px!important;
		padding-top: 90px!important; 
		opacity: 1 !important;
	}
	.custom-slider-top-buttons{
		top: 95px!important;
		left: 15px!important;
	}
	.custom-slider-nav
	{
		top: 24px!important;
		right: 22px!important;
	}
	.conf .row .col-10,.conf .row .col-10 .row .col-3,.conf .row .col-10 .row .col-4,.conf .row .col-10 .row .col
	{
		width: 100%;
		text-align:center!important;
		flex: none;
		padding-top:18px;
	}
	.conf .confGeo,.conf .confDate{
		width: 100%;
		margin-left:0;
		text-align:center!important;
	}
	#newshome > div > div.row.mx-auto.justify-content-md-center.txtrow > div,
	#newshome > div > div.row.wow.mx-auto.justify-content-md-center.btnnewsWrp.animated > div,
	#footerBanner > div > div > div.col-8,
	#footerBanner > div > div > div.col-4.btnlinWork{
		width: 100%;
	}
	#conf > div > div:nth-child(2) > div.col-8.pad0stl.wow.animate__.animate__fadeIn.animated{
		width: 100%;
		padding-left:12px;
		padding-right:12px;
	}
	body > div > div.container-fluid.botPadStlIteam.wow.animated > div > div:nth-child(2){
		width:100%;
	}

	body > div > div.container-fluid.botPadStlIteam.wow.animated > div > div:nth-child(2) > div:nth-child(1) > div > a {
		float: none;
		width: 285px;
		height: 60px;
		display: flex;
		margin: 0 auto;
	}
	body > div > div.container-fluid.botPadStlIteam.wow.animated > div > div:nth-child(2) > div:nth-child(2) > div > div{
		justify-content: center;
	}


	section .blockferststl, #aboutblock,.historynewtitle,#historynew .container, #historynew .image-gallery,.iteam .h2Title68,#NewHomeSlider .container,.conf .container-fluid,.newshome p.textstl, .newsGrid .col {
		padding-left:12px!important;
		padding-right:12px!important;
	}
	.iteam .carousel-container{
		padding-left: 10%;
	}


	.firstImgSTL{
		background-position: center center;
		background-size: cover;
		max-width: 525px;
		height: 216px!important;
		border-radius: 24px;
	}

	.qworkTxt {
		font-size: 26px;
		font-weight: 600;
		line-height: 1.33;
		color: #fff;
		letter-spacing: -.03em;
		text-align: center;
		padding-top: 15px;
	}

	.h2stl46px,.h2Title68 {
		font-size: 32px !important;
		line-height: 1.12 !important;
		font-weight: 600 !important;
		padding-top: 24px!important;
	}	
	.emstl {
		color: #525252!important;
		font-weight: 500!important;
		font-size: 14px!important;
		line-height: 1.29;
		letter-spacing: -.02em;
		opacity: 0.6;
		font-style: normal;
	}
	#historynew .historynewtitle {
		padding-top: 64px;
		padding-bottom: 32px;
	}	
	#historynew .tab-text {
		text-align: center;
		font-weight: 500;
		font-size: 16px;
		line-height: 151%;
		letter-spacing: 0%;
		color: #717171;
		padding-top: 14px;
		padding-bottom: 15px;
		max-width: 672px;
		margin: 0 auto;
	}


	.footerBanner .qworkBanner {
		MAX-height: 160px;
		MAX-WIDTH: 400PX;
		border-radius: 24px;
		align-items: anchor-center;
	}

	.newsTitle {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.18;
		color: #010205;
		letter-spacing: -.03em;
		width: 286px;
		margin-top: 23px;
	}	

	.newsGridSmi .card {
		background-color: #FFFFFF;
		width: 396px;
		height: 242px;
		padding: 30px;
		border: none;
	}	
	.newsGridSmi p.textstl {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.5;
		opacity: 0.75;
		letter-spacing: -.02em;
		text-align: center !important;
	}	

	.txtrow {
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.newsGridSmi .h2Title42 {
		font-weight: 600;
		font-size: 32px;
		line-height: 1.25;
		letter-spacing: -.03em;
	}

	.newsGridSmi .btnLink2 {
		color: #010205;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: -.02em;
		border-radius: 50px;
		padding-left: 36px;
		padding-right: 36px;
	}


	.btnLink2 {
		height: 57px;
		max-width: 224px;
		background-color: #FBF9F7;
		border: 1px solid #010205;
	}


	.newsGridSmi {
		padding-top: 14px;
		padding-bottom: 32px;
	}	





	
}

/************НОВОЕ!*******/
/*****КАРТОЧКИ НОВОСТЕЙ********/
.newsGrid .minwidth-1	{
	min-width: 370px;
}



.newsGrid .card {
	background-color: #FFFFFF;
	width: 100%; /* Убрана фиксированная ширина */
	height: auto; /* Убрана фиксированная высота */
	padding: 20px;
	border: none;
	border-radius: 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 280px; /* Минимальная высота для стабильности */
}

.silly-circle {
	width: 0px;
	height: 0px;
	border: 7px solid #F9790F;
	border-radius: 180px;
}

.datePub {
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #878C91;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.newsTitle {
	font-size: 18px; /* Уменьшен на мобильных */
	font-weight: 600;
	line-height: 1.3;
	color: #010205;
	letter-spacing: -.03em;
	margin-top: 15px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.exptBtnBottom {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}

.newsExpt {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	color: #878C91;
	transition: all 0.3s ease;
}



/* Ховер-эффекты */
.newsGrid .card:hover {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newsBg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: white;
}

.newsGrid .card:hover .datePub,
.newsGrid .card:hover .newsTitle,
.newsGrid .card:hover .newsExpt {
	color: #fff;
}

.newsGrid .card:hover .silly-circle {
	border-color: #fff;
}

/* Адаптивность */
@media (max-width: 767.98px) {
	.exptBtnBottom {
		position: relative;
		margin-top: 20px;
		bottom: auto;
		left: auto;
		right: auto;
	}

	.newsTitle {
		font-size: 18px;
		line-height: 1.3;
	}

	.newsExpt {
		font-size: 12px;
	}

	.card {
		padding: 16px;
	}
}

/*************КНОПКИ***********/
.btn-stl-1 {
	min-width: 112px;
	height: 46px;
	border-radius: 44px;
	background-color: #171717;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-align: center;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	padding-left: 20px;  
	padding-right: 20px;
}


.btn-stl-1:hover,
.btn-stl-1:active {
	background-color: #F9790F;
	color: #fff;
	text-decoration: none;
}	
.withArrow{
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/arrowRigthBtnWhite.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.btn-stl-2 {
	color: #010205;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.02em;
	border-radius: 50px;
	font-size: 16px;
	height: 57px;
	max-width: 224px;
	padding-left: 36px;
	padding-right: 36px;
	border: 2px solid #000;
	background-color: transparent;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.btn-stl-2:hover,
.btn-stl-2:active {
	background-color: #F9790F;
	border-color:#F9790F;
	color: #fff;
	text-decoration: none;
}
.btn-stl-3	 
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	width: 85px ;
	height: 54px ;
	border-radius: 68px ;
	border: 1px solid #010205 ;
	background-color: #fff ;
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/arrowRigthBtn.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.btn-stl-3:hover,
.btn-stl-3:active {
	background-color: #F9790F;
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/arrowRigthBtnWhite.svg);
	border-color:#F9790F;
	color: #fff;
	text-decoration: none;
}
.btn-stl-4 
{
	background-color: #000;
	color: #fff;
	width: 208px;
	height: 57px;
	border-radius: 62px;
	opacity: 1;
	font-weight: 700;			
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	border: 1px solid #000 ;
	text-decoration: none;
}
.btn-stl-4:hover,
.btn-stl-4:active {
	background-color: #000;
	border-color:#000;
	color: #fff;
	text-decoration: none;
}
.btn-stl-4 
{
	background-color: #000;
	color: #fff;
	width: 208px;
	height: 57px;
	border-radius: 62px;
	opacity: 1;
	font-weight: 700;			
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	border: 1px solid #000 ;
	text-decoration: none;
}
.btn-stl-4:hover,
.btn-stl-4:active {
	background-color: #000;
	border-color:#000;
	color: #fff;
	text-decoration: none;
}
.btn-stl-5 
{
	background-color: #fff;
	border: none;
	border-radius: 57px;
	width: 75px;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff ;
	text-decoration: none;

}
.btn-stl-5:hover,
.btn-stl-5:active {
	background-color: #000;				
	border-color:#000;
	color: #fff;
	text-decoration: none;
}
.prevBtn {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowBlackL.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.nextBtn {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowBlackR.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.prevBtn:hover {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowWhiteL.svg);
}
.nextBtn:hover {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowWhiteR.svg);
}
.btn-stl-6
{
	background-color: #C9C9C9;
	border: none;
	border-radius: 57px;
	width: 75px;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff ;
	text-decoration: none;

}
.btn-stl-6:hover,
.btn-stl-6:active {
	background-color: #C9C9C9;				
	border-color:#C9C9C9;
	color: #fff;
	text-decoration: none;
}
.prevBtn {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowBlackL.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.nextBtn {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowBlackR.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.prevBtn:hover {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowWhiteL.svg);
}
.nextBtn:hover {
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/newArrowWhiteR.svg);
}

.btn-stl-7 {				
	width: 285px;
	min-height: 60px;
	border-radius: 57px;					
	color: #fff;				
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.02em;			
	font-size: 14px;				
	padding-left: 20px;
	padding-right: 20px;
	border: none;
	background: #F9790F;
	background: linear-gradient(-30deg, rgba(249, 121, 15, 1) 27%, rgba(254, 177, 25, 1) 70%);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.btn-stl-7:hover,
.btn-stl-7:active {
	background-color: #F9790F;
	color: #fff;
	text-decoration: none;
}


.btn-stl-8 {	
	font-weight: 700;
	color: #fff;
	line-height: 1.20;
	letter-spacing: -.02em;
	width: 170px;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;			

	border-radius: 62px;
	font-size: 14px;
	border: none;
	background: #F9790F;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.btn-stl-8:hover,
.btn-stl-8:active {
	background-color: #F9790F;
	color: #fff;
	text-decoration: none;
}
.btn-stl-9 
{
	background-color: #EFEFEF;
	border: none;
	border-radius: 1000px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
	color:#000000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;		
	font-weight: 600;		
	font-size: 16px;			
	line-height:1;
	letter-spacing: -0.02em;
	text-align: center;


}
.btn-stl-9:hover,
.btn-stl-9:active {
	background-color: #F9790F;				
	color: #fff;
	text-decoration: none;
}
.btn-stl-10
{
	Width: 40px;
	height: 40px;
	border-radius: 1000px;
	background-color: #fff;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff ;
	text-decoration: none;
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/arrowRigthBtn.svg);
	background-repeat: no-repeat;
	background-position: center center;

}
.btn-stl-10:hover,
.btn-stl-10:active {
	background-color: #EEEEEE;				

	color: #fff;
	text-decoration: none;
	background-image: url(https://1bio.ru/wp-content/themes/1bioTMP/img/arrowRigthBtn.svg);

}
.btn-stl-11{	
	font-weight: 700;
	color: #000000;
	line-height: 1.20;
	letter-spacing: -.02em;
	min-width: 170px;
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 62px;
	font-size: 14px;
	border: none;
	background: #dedede;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.btn-stl-11:hover,
.btn-stl-11:active {
	background-color: #F9790F;
	color: #fff;
	text-decoration: none;
}
.btn-stl-12{	
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	margin: 0 5px;
	padding: 10px 25px;
	background-color: #dedede;
	border-radius: 64px;
	font-size: 16px;		
	line-height: 1.20;
	letter-spacing: -.02em;
	border: none;						
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.btn-stl-12:hover,
.btn-stl-12:active {
	background-color: #F9790F;
	color: #fff;
	text-decoration: none;
}
.orangeLink a{	
	font-weight: 700;
	color: #F9790F;					
	text-decoration: none;				
	transition: all 0.3s ease;
}
.orangeLink a:hover,
.orangeLink a:active {				
	text-decoration: underline;
}
.resultLabList a.mediafile {
	font-weight: 700;
	color: #F9790F;					
	text-decoration: none;				
	transition: all 0.3s ease;
}
.resultLabList a.mediafile:hover {
text-decoration: underline;
}
a.urlextern{
	font-weight: 700;
	color: #F9790F;					
	text-decoration: none;				
	transition: all 0.3s ease;
}
a.urlextern:hover {
text-decoration: underline;
}
a.mf_pdf{
	font-weight: 700;
	color: #F9790F;					
	text-decoration: none;				
	transition: all 0.3s ease;
}
a.mf_pdf:hover {
text-decoration: underline;
}
.btnnewsWrp {
    padding-top: 2px;
    padding-bottom: 27px;
}

#footerBanner > div > div{	
    padding-left: 12px;
    padding-right: 12px;

}

/****************СПИСКИ**********/

				.classiccont ol li {
					padding-top: 8px;
				}
				.classiccont ol {
					counter-reset: item;
					list-style: none;
					padding-left: 0;
				}

				.classiccont ol li {
					counter-increment: item;
					position: relative;
					padding: 8px 16px 8px 40px; /* отступ слева под маркер */
				}

				.classiccont ol li::before {
					content: counter(item);
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					width: 28px;
					height: 28px;
					background-color: #F9790F;
					color: white;
					border-radius: 50%;
					display: flex;
					align-items: center;
					justify-content: center;
					font-size: 14px;

				}
			



				.resultLabList ol li {
					padding-top: 8px;
				}
				.resultLabList ol {
					counter-reset: item;
					list-style: none;
					padding-left: 0;
				}

				.resultLabList ol li {
					counter-increment: item;
					position: relative;
					padding: 8px 16px 8px 40px; /* отступ слева под маркер */
				}

				.resultLabList ol li::before {
					content: counter(item);
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					width: 28px;
					height: 28px;
					background-color: #F9790F;
					color: white;
					border-radius: 50%;
					display: flex;
					align-items: center;
					justify-content: center;
					font-size: 14px;

				}
			



				.classiccont ul {
					list-style: none;
					padding-left: 0;
				}

				.classiccont ul li {
					position: relative;
					padding-left: 24px;
					margin-bottom: 8px;
				}

				.classiccont ul li::before {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					width: 16px;
					height: 16px;
					background-image: url('https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/orangeArrow.svg');
					background-size: contain;
					background-repeat: no-repeat;
				}
			



				.resultLabList ul {
					list-style: none;
					padding-left: 0;
				}

				.resultLabList ul li {
					position: relative;
					padding-left: 24px;
					margin-bottom: 8px;
				}

				.resultLabList ul li::before {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					width: 16px;
					height: 16px;
					background-image: url('https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/orangeArrow.svg');
					background-size: contain;
					background-repeat: no-repeat;
				}

	.opisanieraboty ul {
					list-style: none;
					padding-left: 0;
				}

				.opisanieraboty ul li {
					position: relative;
					padding-left: 24px;
					margin-bottom: 8px;
				}

				.opisanieraboty ul li::before {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					width: 16px;
					height: 16px;
					background-image: url('https://1bio.ru/wp-content/themes/nibochTmp_v1_orange/img/orangeArrow.svg');
					background-size: contain;
					background-repeat: no-repeat;
				}
			

.labfoto {
    WIDTH: 417PX;
    position: absolute;
    /* justify-content: end; */
    padding-top: 25px;
    padding-right: 25px;
    /* float: right; */
    padding-left: 270px;
}
