:root {
    /*colors*/
    --color-default: #242424;
    --color-primary: #1b1c35;
    --color-red: #ed4b4b;

    --font-weight-strong: 700;
    --container-padding: 50px;
    --container-padding-mobile: 20px;
    --gap: 100px;
    --gap-sm: 12px;
}

/*adaptive sizes
    desktop-only: 1400px;
    notebook: 1399px;
    tablet-landscape: 1199px;
    tablet-portrait: 899px;
    phone: 599px;
*/

body {
    display: block;
    min-width: 320px;
    overflow-x: auto;
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
    color: var(--color-default);    
}
.page {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

@media (max-width: 899px) {
    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }
}
/*
---grid---
*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--gap) / -2);
    margin-right: calc(var(--gap) / -2); 
}
.row-sm {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--gap-sm) / -2);
    margin-right: calc(var(--gap-sm) / -2);    
}
.row-0 {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;    
}
.col-1, 
.col-2, 
.col-3, 
.col-4, 
.col-5, 
.col-6, 
.col-7, 
.col-8, 
.col-9, 
.col-10, 
.col-11, 
.col-12 {
    padding-left: calc(var(--gap) / 2);
    padding-right: calc(var(--gap) / 2);
}
.row-sm > [class^="col"]{
    padding-left: calc(var(--gap-sm) / 2);
    padding-right: calc(var(--gap-sm) / 2);
}
.row-0 > [class^="col"]{
    padding-left:0;
    padding-right: 0;
}
.col-1  {width:  8.33333%;}
.col-2  {width: 16.66666%;}
.col-3  {width:       25%;}
.col-4  {width: 33.33333%;}
.col-5  {width: 41.66666%;}
.col-6  {width:       50%;}
.col-7  {width: 58.33333%;}
.col-8  {width: 66.66666%;}
.col-9  {width:       75%;}
.col-10 {width: 83.33333%;}
.col-11 {width: 91.66666%;}
.col-12 {width:      100%;}

.col-offset-1  {margin-left:  8.33333%;}
.col-offset-2  {margin-left: 16.66666%;}
.col-offset-3  {margin-left:       25%;}
.col-offset-4  {margin-left: 33.33333%;}
.col-offset-5  {margin-left: 41.66666%;}
.col-offset-6  {margin-left:       50%;}
.col-offset-7  {margin-left: 58.33333%;}
.col-offset-8  {margin-left: 66.66666%;}
.col-offset-9  {margin-left:       75%;}
.col-offset-10 {margin-left: 83.33333%;}
.col-offset-11 {margin-left: 91.66666%;}

/*
---helpers---
*/
.no-select {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.transition {
   -webkit-transition: all .15s ease;
      -moz-transition: all .15s ease;
        -o-transition: all .15s ease;
           transition: all .15s ease;
}
.u {
    text-decoration: none!important;
    border-bottom: 1px solid;
    opacity: 1;
}
.u:hover {
    border-bottom-color: transparent;
}
.u-hover {
    text-decoration: none!important;
    border-bottom: 1px solid transparent;
}
.u-hover:hover {
    border-bottom-color: inherit;
}
.u-dotted {
    border-bottom-style: dotted;
}
.u-dashed {
    border-bottom-style: dashed;
}
.b,
.strong {
    font-weight: var(--font-weight-strong);
}
.cursor-p:hover {
    cursor: pointer;
}
.cursor-d:hover {
    cursor: default;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;  
}
.flex-row {
    flex-direction: row;
}
.flex-row-r {
    flex-direction: row-reverce;
}
.flex-column {
    flex-direction: column;
}
.flex-column-r {
    flex-direction: column-reverce;
}
.flex-v-start {
    align-items: flex-start;
}
.flex-v-end {
    align-items: flex-end;
}
.flex-v-center {
    align-items: center;
}
.flex-h-start {
    justify-content: flex-start;
}
.flex-h-end {
    justify-content: flex-end;
}
.flex-h-center {
    justify-content: center;
}
.flex-h-between {
    justify-content: space-between;
}
.flex-h-around {
    justify-content: space-around;
}

.d-inline       {display: inline;}
.d-inline-block {display: inline-block;}
.d-block        {display: block;}
.d-flex         {display: flex;}
.d-none         {display: none;}

.d-inline-i       {display: inline!important;}
.d-inline-block-i {display: inline-block!important;}
.d-block-i        {display: block!important;}
.d-flex-i         {display: flex!important;}
.d-none-i         {display: none!important;}

.pos-abs {position: absolute;}
.pos-stat {position: static;}
.pos-rel {position: relative;}
.pos-fix {position: fixed;}

.bg-cover   {background-size: cover;}
.bg-contain {background-size: contain;}

.m-50   {margin:        50px;}
.m-b-50 {margin-bottom: 50px;}
.m-t-50 {margin-top:    50px;}
.m-r-50 {margin-right:  50px;}
.m-l-50 {margin-left:   50px;}

.m-25   {margin:        25px;}
.m-b-25 {margin-bottom: 25px;}
.m-t-25 {margin-top:    25px;}
.m-r-25 {margin-right:  25px;}
.m-l-25 {margin-left:   25px;}

.m-20   {margin:        20px;}
.m-b-20 {margin-bottom: 20px;}
.m-t-20 {margin-top:    20px;}
.m-r-20 {margin-right:  20px;}
.m-l-20 {margin-left:   20px;}

.m-15   {margin:        15px;}
.m-b-15 {margin-bottom: 15px;}
.m-t-15 {margin-top:    15px;}
.m-r-15 {margin-right:  15px;}
.m-l-15 {margin-left:   15px;}

.m-10   {margin:        10px;}
.m-b-10 {margin-bottom: 10px;}
.m-t-10 {margin-top:    10px;}
.m-r-10 {margin-right:  10px;}
.m-l-10 {margin-left:   10px;}

.m-5    {margin:        5px;}
.m-b-5  {margin-bottom: 5px;}
.m-t-5  {margin-top:    5px;}
.m-r-5  {margin-right:  5px;}
.m-l-5  {margin-left:   5px;}

.m-0   {margin:        0;}
.m-b-0 {margin-bottom: 0;}
.m-t-0 {margin-top:    0;}
.m-r-0 {margin-right:  0;}
.m-l-0 {margin-left:   0;}

.m-50-i   {margin:        50px!important;}
.m-b-50-i {margin-bottom: 50px!important;}
.m-t-50-i {margin-top:    50px!important;}
.m-r-50-i {margin-right:  50px!important;}
.m-l-50-i {margin-left:   50px!important;}

.m-25-i   {margin:        25px!important;}
.m-b-25-i {margin-bottom: 25px!important;}
.m-t-25-i {margin-top:    25px!important;}
.m-r-25-i {margin-right:  25px!important;}
.m-l-25-i {margin-left:   25px!important;}

.m-20-i   {margin:        20px!important;}
.m-b-20-i {margin-bottom: 20px!important;}
.m-t-20-i {margin-top:    20px!important;}
.m-r-20-i {margin-right:  20px!important;}
.m-l-20-i {margin-left:   20px!important;}

.m-15-i   {margin:        15px!important;}
.m-b-15-i {margin-bottom: 15px!important;}
.m-t-15-i {margin-top:    15px!important;}
.m-r-15-i {margin-right:  15px!important;}
.m-l-15-i {margin-left:   15px!important;}

.m-10-i   {margin:        10px!important;}
.m-b-10-i {margin-bottom: 10px!important;}
.m-t-10-i {margin-top:    10px!important;}
.m-r-10-i {margin-right:  10px!important;}
.m-l-10-i {margin-left:   10px!important;}

.m-5-i    {margin:        5px!important;}
.m-b-5-i  {margin-bottom: 5px!important;}
.m-t-5-i  {margin-top:    5px!important;}
.m-r-5-i  {margin-right:  5px!important;}
.m-l-5-i  {margin-left:   5px!important;}

.m-0-i   {margin:        0!important;}
.m-b-0-i {margin-bottom: 0!important;}
.m-t-0-i {margin-top:    0!important;}
.m-r-0-i {margin-right:  0!important;}
.m-l-0-i {margin-left:   0!important;}

.text-center  {text-align: center;}
.text-left    {text-align: left;}
.text-right   {text-align: right;}
.text-justify {text-align: justify;}

/*
---bootstrap helpers---
*/
.fade {
    transition: opacity 0.15s linear;
}
.fade:not(.show) {
    opacity: 0;
}
.modal-open{
    overflow-y: hidden;
}




.btn {
    -webkit-appearance: none;
    height: 46px;
    padding: 0 80px;
    border: 1px solid #fff;
    line-height: 46px;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    border-radius: 0px;
    transition: all .2s ease;
    cursor: pointer;
    background: #fff;
    color: var(--color-default);
    vertical-align: middle;
}
.btn-white:hover{
    color: #fff;
    background: transparent;
}
.btn-outline{
    background: transparent;
    color: #fff;
}
.btn-outline:hover{
    background: #fff;
    color: var(--color-primary);
}
.btn-outline--black{
    background: transparent;
    border-color: var(--color-primary);
}
.btn-outline--black:hover{
    background: var(--color-default);
    color: #fff;
}

.breadcrumb ul{
    list-style-type: none;
    margin: 0 0 50px;
    padding: 0;
    display: block;
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 400;
}
.breadcrumb li{
    display: inline;
    position: relative;
}
.breadcrumb li + li{
    margin-left: 5px;
}
.breadcrumb li + li:before{
    content:'';
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
    background: var(--color-default);
    vertical-align: middle;
    margin-bottom: 2px;
}
.breadcrumb a{
    color: var(--color-default);
}
.breadcrumb span{
    color: inherit;
}
.breadcrumb a:hover{
    text-decoration: none;
    color: var(--color-red);
}

.pagination{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
}
.pagination li{
    margin-right: 10px;
}
.pagination a,
.pagination span{
    line-height: 25px;
    width: 30px;
    display: block;
    text-align: center;
    background: #fff;
    font-size: 16px;
    border: 1px solid #fff;
}
.pagination a:hover{
    color: var(--color-red);
}
.pagination span,
.pagination .active a,
.pagination .active a:hover{
    border-color: var(--color-primary);
}
.news-item{
    margin-bottom: 70px;
}
.news-item-more a{
    position: relative;
    margin-right: 22px;
}
.news-item-more a::after{
    content:'';
    width: 12px;
    height: 11px;
    position: absolute;
    background: url(../svg/more.svg) no-repeat;
    background-size: contain;
    right: -22px;
    top: calc(50% - 5px);
}
.news-item-date{
    opacity: 0.6;
    font-size: 14px;
}
.news-item-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-item-title{
    line-height: 1.25;
    font-size: 20px;
    margin-bottom: 25px;
}
.news-item-title a:hover{
    color: var(--color-red);
}
.news-item-description{
    line-height: 1.71;
    font-size: 14px;
    margin-bottom: 25px;
}
.news-item-image{
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.news-item-image img{
    display: block;
    width: 100%;
}
.news-item-image::before{
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 160%;
    top: -300px;
    left: -40%;
    opacity: 0.6;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0));
    transform: rotate(-20deg);
}
.news-item-image:hover::before {
    top: 300px;
    transition: top .25s cubic-bezier(0,.3,1,.7);
}

.work-item{
    margin-bottom: 95px;
}
.work-item-link {
    position: relative;
    height: 300px;
    width: 100%;
    display: block;
    overflow: hidden;
}
.work-item-link img{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.work-item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27,28,53,0.9);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: /*40px 60px 20px*/ 2px 50px !important;
    color: #fff;
    opacity: 0;
    transform: scale(2);
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
	
	transition: all 0.3s ease-in-out;  
}
.work-item-link:hover .work-item-info{
    opacity: 1;
    transform: scale(1);
     
}
.work-item-title {
    font-size: 30px;
    line-height: 1.16;
    display: block;
    margin-bottom: 20px;
}
.work-item-description {
    line-height: 1.62;
    font-size: 16px;
    display: block;
}
.about-images{
    position: relative;
    padding-top: 130px;
    padding-right: 150px;
}
.about-images img{
    display: block;
}
.about-images img + img{
    display: block;
    position: absolute;
    top: 0;
    right: 75px;
    width: 320px;
}
.about-equipment{
    color: #fff;
    background: #27294c;
    padding: 120px 0;
}
.about-equipment:not(.history-system) ul{
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.about-equipment .text ul li:after{
    background: #fff;
}
.about-equipment .text ul li + li{
    margin-top: 28px;
}
.about-info{
    padding-bottom: 125px;
}
.about-history{
    padding: 200px 0;
}
.history-row{
    align-items: center;
}
.history-row .btn{
    margin-top: 55px;
}
.about-history-video{
    display: block;
    overflow: hidden;
    color: #fff;
    position: relative;
}
.about-history-video:hover{
    color: var(--color-primary);
}
.about-history-video img{
    display: block;
    width: 100%;
    transition: all .4s ease;
}
.about-history-video span{
    position: absolute;
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}
.about-history-video span svg{
    width: 100%;
}
.about-history-video:hover img{
    transition: all 3s linear;   
    transform: scale(1.05);
}
.about-team{
    padding: 200px 0;
    background: #27294c;
    color: #fff;
   /* margin-bottom: -80px;*/
}
.team-item{
    display: flex;
    align-items: center /*flex-start*/;
    justify-content: center;
}
.team-item img{
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
}
.team-item-name {
    font-size: 30px;    
    margin-bottom: 15px;
}
.team-item-status {
    opacity: 0.6;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 35px;
}
.team-item-contacts {
    font-size: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.team-item-contacts a + a{
    margin-top: 10px;
}
.team-item-contacts a:hover{
    color: var(--color-red);
}
.team-item-description {
    font-size: 18px;
    line-height: 1.55;
    max-width: 560px;
}

.history-images{
	padding-top: 60px;
	margin-bottom: 50px;
}
.history-system-image img{
	width: calc(100% + var(--container-padding));
	margin-left: calc(var(--container-padding) * -1);
	display: block;
}
.history-laboratory img{
	width: calc(100% + var(--container-padding));
	max-width: calc(100% + var(--container-padding));
	margin-right: calc(var(--container-padding) * -1);
	display: block;	
}
.history-laboratory{
	padding: 120px 0 30px;
}
.lab-2-col{
	-webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.contact-page-row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.contact-page-left{
	width: calc(100% - 405px);
    padding-right: 100px;
}
.contact-page-right{
	width: 405px;
}
.map.contacts-map{
	height: 450px;
    width: 100%;
}
.form-group{
	margin-bottom: 22px;
}
.form-group + .btn{
	margin-top: 10px;
}
.form-title{
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 35px;
}
.form-control{
	background: #fff;
    border: 1px solid #d2d2d2;
    -webkit-appearance: none;
    height: 50px;
    border-radius: 0;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-default);
    width: 100%;
    transition: all .2s ease;
    font-family: inherit;
}
.form-control:focus{
	border-color: var(--color-primary);
}
textarea.form-control{
	max-width: 100%;
	height: 235px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.trubouzly{
	margin-bottom: -80px;
}
.home-hero .hero-h1,
.home-hero .hero-text,
.vertical-name{
	pointer-events: none;
}
.fancybox-caption{
    opacity: 1;
    transition: opacity .25s, visibility 0s;
    visibility: visible;
}
.fancybox-caption strong{
	font-size: 130%;
	display: block;
}
.fancybox-bg{
	background: rgba(27,28,53,0.9);
}
.work-slides{
	display: none;
}
.mouse{
    position: absolute;
    width: 40px;
    height: 40px;
    right: 6px;
    top: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
    transition: all .3s ease;
}
.body-has-white-bg .mouse{
	color: var(--color-default);
}
.mouse:hover{
	cursor: pointer;
	color: var(--color-red)	;
}
.mouse svg{
	width: 24px;
    height: 30px;
    position: relative;
    z-index: 3;
}
.mouse-round{
    position: absolute;
    display: block;
}
.mouse-round-1{
    animation: mouse1  2s infinite linear;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.5;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    z-index: 3;
}
.mouse-round-2{
    animation: mouse2  2s infinite linear;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.5;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    z-index: 2;
    transition: transform .2s ease;
    pointer-events: none;
}
.mouse-round-3{
    animation: mouse3 1s infinite linear;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.1;
    left: calc(50% - 80px);
    top: calc(50% - 80px);
    z-index: 1;
    transition: transform .2s ease;
    pointer-events: none;
}
.mouse:hover .mouse-round-2,
.mouse:hover .mouse-round-3{
	transform: scale(0)!important;
	animation: none;

}
@keyframes mouse1 {
	from {transform: scale(1);}
	40% {transform: scale(1.1);}
	60% {transform: scale(1.1);}
	to {transform: scale(1);}
}
@keyframes mouse2 {
	from {transform: scale(1);}
	40% {transform: scale(1.1);}
	60% {transform: scale(1.1);}
	to {transform: scale(1);}
}
@keyframes mouse3 {
	from {transform: scale(0);}
	to {transform: scale(1);opacity: 0.01}
}
@media only screen and (min-width: 1200px) {
	.wow{
		display: none;
	}
	#nomenclature .wow{
		display: block;
	}
}

.animated {
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; 
  display: block;
}
.home-hero{
	position: relative;
}
.video-hero{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.video-hero video{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@media only screen and (max-width: 1599px) {
    .work-item-info{
        padding: 30px 30px 15px;
    }
    .work-item-title {
        font-size: 24px;
    }
    .work-item-description {
        font-size: 15px;
    }
}
@media only screen and (max-width: 1399px) {
    :root {
        --gap: 70px;
    }
    .about-images{
        padding-right: 50px;
    }
    .about-images img + img{
        right: 0;
    }
    .about-history,
    .about-team {
        padding: 120px 0;
    }
}
@media only screen and (max-width: 1199px) {
    .news-item{
        width: 33.333%;
    }
    .work-item{
        width: 50%;
        margin-bottom: 60px;
    }
    .about-images img + img {
        width: 200px;
    }
    .about-images {
        padding-top: 75px;
    }
    .about-info {
        padding-bottom: 75px;
    }
    .about-equipment,
    .about-history,
    .about-team {
        padding: 75px 0;
    }
    .history-laboratory {
        padding: 75px 0 0;
    }
    .contact-page-left {
	    width: 60%;
	    padding-right: 60px;
	}
	.contact-page-right {
	    width: 40%;
	}
	.mouse{
		display: none;
	}
}   
@media only screen and (max-width: 999px) {
    :root {
        --gap: 50px;
    }
    .news-item{
        width: 50%;
    }
    .work-item{
        margin-bottom: 50px;
    }
    .about-info > div{
        width: 100%;
    }
    .about-images img:first-child{
        width: 100%;
    }
    .about-images {
        padding-top: 90px;
        padding-right: 90px;
        margin-top: 50px;
    }
    .about-images img + img{
        width: 320px;
    }
    .about-equipment .text{
        font-size: 16px;
    }
    .about-equipment ul,
    .lab-2-col{
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }

    .about-history .col-6{
        width: 100%;
    }
    .about-history .col-6 + .col-6{
        margin-top: 35px;
    }
    .team-item .col-6{
        width: 40%;
    }
    .team-item img{
        margin-left: 0;
    }
    .team-item .col-6 + .col-6{
        width: 60%;   
    }
    .history-system .col-6{
    	width: 100%;
    }
    .history-system .col-6 + .col-6{
    	margin-top: 40px;
    }
    .history-system-image img,
    .history-laboratory img{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}
@media only screen and (max-width: 767px) {
    .work-item-title {
        font-size: 20px;
    }
    .work-item-description {
        font-size: 14px;
        line-height: 1.35;
    }
    .about-images {
        padding-top: 50px;
        padding-right: 50px;
        margin-top: 40px;
    }
    .about-images img + img{
        width: 220px;
    }
    .team-item-name {
        font-size: 26px;
    }
    .team-item-description {
        font-size: 16px;
    }
    .contact-page-left {
	    width: 100%;
	    padding-right: 0;
	    margin-bottom: 50px;
	}
	.contact-page-right {
	    width: 100%;
	}
    .abs-container{
        position: fixed!important;
    }
}
@media only screen and (max-width: 599px) {
    :root {
        --gap: 30px;
    }
    .breadcrumb ul {
        margin: 0 0 30px;
    }
    .news-item{
        width: 100%;
    }
    .work-item{
        width: 100%;
    }
    .work-item{
        margin-bottom: 30px;
    }
    .work-item img{
        height: 200px;
    }
    .work-item-info{
        position: static;
        opacity: 1;
        transform: scale(1);
        display: block;
        height: auto;
        padding: 20px 10px 20px 18px !important;
    }
    .work-item-title {
        font-size: 18px;
    }
    .work-item-link{
        height: auto;
    }
    .about-images{
        padding: 0;
    }
    .about-images img,
    .about-images img + img{ 
        width: 100%;
        position: static;
        margin: 0 0 30px;
    }
    .about-info {
        padding-bottom: 30px;
    }
    .about-equipment,
    .about-history,
    .history-laboratory {
        padding: 55px 0;
    }
    .history-row .btn {
        margin-top: 35px;
        padding: 0 40px;
    }
    .about-history-video span {
        width: 70px;
        height: 70px;
        top: calc(50% - 35px);
        left: calc(50% - 35px);
    }
    .team-item .col-6{
        width: 100%!important;
    }
    .team-item .col-6 + .col-6{
        margin-top: 25px;
    }
}