.row{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 30px 0 30px;
}
.container {
	margin-bottom: 38px;
}

.container h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: #06060a;
    margin-bottom: 42px;
    text-transform: uppercase;
}

.container p {
    margin: 0 0 20px 0;
}

.container ul {
    padding-left: 20px;
    margin: 10px 0 25px;
}

.container ul li {
    color: #000;
    margin: 10px 0;
    list-style: square;
}

.container ol {
    padding-left: 20px;
    margin: 10px 0 25px;
}

.container ol li {
    color: #000;
    margin: 10px 0 20px;
    list-style: decimal;
}

.table-lizing {
    width:100%; 
    border-collapse: collapse;
    margin-bottom: 40px;
}

.table-lizing tr th {
    padding: 8px;
    text-transform: uppercase;
    border: 1px solid #009abb;
    background: #009abb;
    color: #fff;
}

.table-lizing tr td {
    border: 1px solid #009abb;
    padding: 8px;
}    

.ogs-color {
    color: #009abb;
    font-weight:bold;
}

.box-lizing {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 25px 0;
}

.box-lizing-left {
    flex-basis: 50%;
    padding-right: 20px;
}

.box-lizing-right {
    flex-basis: 50%;
    padding-left: 20px;
}

.box-lizing-title {
    margin: 15px 0 40px 0;
    font-size: 24px;
    font-weight: bold;
    color: #009abb;
    position: relative;
    padding: 0 0 7px;
}

.box-lizing-title:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 50px;
    background: #009abb;
    height: 3px;
}

.box-lizing-amount {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-top: 25px;
}

.text_lizing {
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
}    


.names_leasing {
	width: 100%;
	min-height: 190px;
	height: 100%;
	background: #009dbd url(../image/leasing/leasing_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 85px;
}
.names_leasing h2,.names_leasing h1 {
	font-weight: 700;
	font-size: 60px;
	line-height: 60px;
	color: #ffffff;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.names_leasing p {
	font-weight: 700;
	font-size: 11px;
	line-height: 11px;
	color: #ffffff;
	text-align: left;
	text-transform: uppercase;
}

.grid_leasing {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding-top: 25px;
}
.leasing_item {
	position: relative;
	z-index: 1;
}
.leasing_item .visible_item{
	cursor: pointer;
}
.leasing_item .visible_item .image{
	width: 100%;
	height: 445px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.leasing_item .visible_item .image img{
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	transition: 200ms linear;
}
.leasing_item .visible_item:hover .image img {
	transform: scale(1.1);
}
.leasing_item .visible_item h3{
	width: 100%;
	min-height: 60px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: rgba(6,6,10,0.36);
	text-align: center;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}
.leasing_item .hidden_item{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 8px solid rgba(200,200,200,0.36);
	background-color: rgba(255,255,255,0.96);
	text-align: center;
	padding-bottom: 40px;
	display: none;
	overflow: hidden;
	z-index: 10;
}
.leasing_item .hidden_item .close{
	position: absolute;
	top: 16px;
	right: 14px;
	cursor: pointer;
	z-index: 1;
	width: 12px;
	height: 12px;
}
.leasing_item .hidden_item .close img {
width: 12px;
	height: 12px;
	object-fit: cover;
}
.leasing_item .hidden_item .close img:hover{
	animation: rotateCross 150ms linear forwards;
}
.leasing_item .hidden_item .caption{
	width: 100%;
	background-color: #009dbd;
	min-height: 72px;
	
	text-align: center;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(0,-150px);
	transition: transform 350ms linear 0.5s;
}
.leasing_item .hidden_item .caption h3 {
	opacity: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
}
.leasing_item .hidden_item .description_item{
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	color: #06060a;
	text-align: left;
	padding: 38px 34px 0 34px;
	height: 330px;
	overflow: hidden;
	margin-bottom: 48px;
	opacity: 0;
}
.leasing_item .hidden_item button{
	border: none;
	background: none;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	color: #009dbd;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 18px;
	width: 125px;
	opacity: 0;
}

@keyframes captionStart {
	0% {transform: translate(0,-150px);}
	100% {transform: translate(0,0px);}
}
@keyframes captionEnd {
	0% {transform: translate(0,0px);}
	100% {transform: translate(0,-150px);}
}
@keyframes textStart {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes textEnd {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

/********************************
media
********************************/
@media only screen and (max-width: 1300px) {
	.grid_leasing {
		grid-template-columns: 1fr 1fr;
	}
}


@media (max-width: 900px) {
    
    .box-lizing-left, .box-lizing-right  {
        flex-basis: 100%;
        padding-right:0;
        padding-left:0;
    }
    
    .box-lizing-left {
        padding-bottom: 50px;
    }
    
}

@media only screen and (max-width: 768px) {
	.grid_leasing {
		grid-template-columns: 1fr;
	}
	.leasing_item .hidden_item .description_item {
		padding: 18px 14px 0 14px;
	}
	.leasing_item .hidden_item .caption {
		padding: 0 30px;
	}
	.table-lizing {
        display: block;
        overflow: auto;
    }

.table-lizing::-webkit-scrollbar-track {
	    background-color: #F5F5F5;
    }

.table-lizing::-webkit-scrollbar {
    	height: 5px;
    	background-color: #F5F5F5;
    }

.table-lizing::-webkit-scrollbar-thumb {
    	background-color: #009abb;
    }
	
}







