.hmain{}
	.hmain-container {
		display: flex;
		justify-content: space-between;
		padding-bottom: 60px;
	}
		.hmain-sidebar{
			width: calc(100% / 12 * 4 - 15px);
		}
			.hmain-sidebar__guides{}
				.hmain-sidebar__item{
					border-radius: 10px;
					background-color:#ebf0f6;
					margin-bottom: 23px;
					padding: 15px 24px;
					display: block;
					transition: all 0.3s
				}
				.hmain-sidebar__item .title{
					font-weight: bold;
					font-size: 24px;
					color: #33475b;
					margin-bottom: 15px;
					line-height: 28px
				}
				.hmain-sidebar__item .meta{
					font-size: 14px;
					color: #99a2ad
				}
				.hmain-sidebar__item .meta span{
					display: inline-flex;
					align-items: center;
				}
				.hmain-sidebar__item .meta span:after {
					content: '';
					width: 4px;
					height: 4px;
					border-radius: 50%;
					display: inline-block;
					background: #ff7957;
					margin: 0 10px;
				}
				.hmain-sidebar__item .meta span:last-child:after{
					display: none;
				}
				.hmain-sidebar__item:hover{
					background:#e0e5ec
				}
				.hmain-sidebar__item .title:hover{
					color: #ff7957
				}

			.hmain-sidebar__banner{
				background:#06a1c4;
				border-radius: 10px;
				height: 180px;
				padding: 24px;				
				padding-left: 40%;
				font-weight: bold;
				display: block;
				position: relative;
				transition: all 0.3s
			}
				.hmain-sidebar__banner b{
					display: block;
					font-size: 28px;
					color: rgb(255, 255, 255);
					line-height: 1.2;
					margin-bottom: 18px;
				}
				.hmain-sidebar__banner span{
					border-radius: 4px;
					background-color: rgb(255, 255, 255);
					color:#06a1c4;
					font-size: 20px;
					display: inline-block;
					padding: 7px 15px;
					padding-left: 30px;
					position: relative;
				}
				.hmain-sidebar__banner span svg{
					height: 12px;
					vertical-align: middle;
					width: 12px;
					fill: #06a1c4;
					position: absolute;
					left: 10px;
					top: 50%;
					transform: translateY(-50%);
					transition: all 0.3s
				}
				.hmain-sidebar__banner span:hover svg{
					left: 5px;
				}
				.hmain-sidebar__banner:hover{
					background:#0492b2
				}
				.hmain-sidebar__banner img {
					max-width: 30%;
					position: absolute;
					left: 0;
					top: 50%;
					transform: translateY(-50%);
					margin-left: 24px;
					transition: all 0.3s
				}

	.hmain-basic {
		border-radius: 10px;
		background: #ebf0f6 url('../img/main-bg.jpg') no-repeat top left;
		padding: 40px;
		position: relative;
		width: calc(100% / 12 * 8 - 15px);
	}
		.hmain-basic__main{
			display: flex;
			padding-top: 75px;
			align-content: flex-end;
			align-items: flex-end;
		}
		
		.hmain-basic__typed {
			position: absolute;
			background: #fff;
			top: 0;
			left: 50%;
			height: 140px;
			width: 200px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 22px;
			text-align: center;
			transform: translate(-50px, 30px);
			padding: 0 10px;
			font-weight: bold;
		}
			.hmain-basic__typed b {
				color: #ff7957;
			}
			#typed-strings{
				display: none
			}
			.typed-cursor {
				display: none !important
			}
		.hmain-basic__image{}
			.hmain-basic__image img{
				max-height: 320px
			}
			.hmain-basic__subtitle{
				background: #ff7957;
				color: #fff;
				margin-bottom: 30px;
				font-size: 17px;
				font-weight: bold;
				padding: 3px 8px;
				border-radius: 4px;
				display: inline-block;
			}
			.hmain-basic__title{
				font-weight: bold;
				font-size: 44px;
				color:#33475b;
				line-height: 46px;
				margin-bottom: 0
			}
				.hmain-basic__title span{
					color:#ff7957
				}
			.hmain-basic__advantages {
				display: flex;
				justify-content: space-between;
				padding-top: 40px;
				margin-top: 40px;
				border-top: 1px solid #ffffff;
			}
				.hmain-basic__advantages .item{
					position: relative;
					display: flex;
					align-items: center;
					font-size: 18px;
					color: #33475b;
					flex: 1
				}
					.hmain-basic__advantages .item span{
						flex: 1
					}
					.hmain-basic__advantages .item:before{
						content:'';
						height:60px;
						width:60px;
						border-radius: 50%;
						background: #fff url('../img/check.svg') no-repeat 50%;
						background-size: auto 24px;
						display: inline-block;
						margin-left: 10px
					}

.hnews{
	margin-bottom: 60px
}
	.hnews-list{
		display: flex;
		justify-content: space-between;
	}
		.hnews-mini{
			width: calc(50% - 15px);
		}
			.hnews-mini__item {
				background: #ebf0f6;
				border-radius: 8px;
				overflow: hidden;
				display: flex;
				margin-bottom: 30px;
			}
			
				.hnews-mini__item .image{
					width: 45%;
					order: 1
				}
					.hnews-mini__item .image img{
						height: 100%;
						object-fit: cover;
						width: 100%;
					}
				.hnews-mini__item .cart{
					padding: 30px 24px 24px 24px;
					position: relative;
					width: 55%;
					height: 250px;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: flex-start;
				}
				.hnews-mini__item .title{
					color: #33475b;
					font-weight: bold;
					font-size: 24px;
					display: block;
					margin-bottom: 20px;
					line-height: 1.2;
					transition: all 0.2s
				}
				.hnews-mini__item .meta{
					font-size: 14px;
					color: #99a2ad
				}
				.hnews-mini__item .meta span{
					display: inline-flex;
					align-items: center;
				}
				.hnews-mini__item .meta span:after {
					content: '';
					width: 4px;
					height: 4px;
					border-radius: 50%;
					display: inline-block;
					background: #ff7957;
					margin: 0 10px;
				}
				.hnews-mini__item .meta span:last-child:after{
					display: none;
				}
				.hnews-mini__item .cat{
					background: #fedbd1;
					color: #ff7957;
					font-size: 17px;
					font-weight: bold;
					padding: 3px 8px;
					border-radius: 4px;
					display: inline-block;
					margin-bottom: 20px
				}		
			.hnews-mini__item:hover{
				background: #e0e5ec
			}
			.hnews-mini__item .title:hover{
				color: #ff7957
			}
		.hnews-large{
		    width: calc(50% - 15px);
		}
			.hnews-large__item {
				background: #ebf0f6;
				border-radius: 8px;
				overflow: hidden;
				display: flex;
				height: calc(100% - 30px);
				text-align: center;
				flex-direction: column;
				align-items: center;
			}
				.hnews-large__item .image{}
					.hnews-large__item .image img{
						height: 340px;
						object-fit: cover;
						width: 100%;
					}
				.hnews-large__item .cart{
					padding: 0 24px;
					position: relative;
					display: flex;
					justify-content: center;
					align-items: center;
					flex-direction: column;
					flex: 1;
				}
				.hnews-large__item .title{
					color: #33475b;
					font-weight: bold;
					font-size: 32px;
					display: block;
					margin-bottom: 20px;
					line-height: 1.2;
					transition: all 0.2s
				}
				.hnews-large__item .meta{
					font-size: 14px;
					color: #99a2ad
				}
				.hnews-large__item .meta span{
					display: inline-flex;
					align-items: center;
				}
				.hnews-large__item .meta span:after {
					content: '';
					width: 4px;
					height: 4px;
					border-radius: 50%;
					display: inline-block;
					background: #ff7957;
					margin: 0 10px;
				}
				.hnews-large__item .meta span:last-child:after{
					display: none;
				}
				.hnews-large__item .cat{
					background: #fedbd1;
					color: #ff7957;
					font-size: 17px;
					font-weight: bold;
					padding: 3px 8px;
					border-radius: 4px;
					display: inline-block;
					position: absolute;
					top: 0;
					left: 50%;
					transform: translate(-50%,-50%)
				}		
			.hnews-large__item:hover{
				background: #e0e5ec
			}
			.hnews-large__item .title:hover{
				color: #ff7957
			}


@media (max-width: 991.98px) {
	
}	
@media (max-width: 767.98px) {
	.hmain-container{
		display: block;
	}
	.hmain-basic{
		width: 100%;
		padding: 0;
		margin-bottom: 15px;
		background: #ebf0f6 url('../img/main-bg-mobile.jpg') no-repeat top left
	}
		.hmain-basic__advantages{
			display: block;
			padding: 20px;
			margin-top: 20px;
		}
		.hmain-basic__advantages .item:before{
			height: 26px;
			width: 26px;
			background-size: 14px;
			margin-left: 14px
		}
		.hmain-basic__advantages .item span br{
			display: none
		}
		.hmain-basic__advantages .item {
			margin-bottom: 8px;
		}
		.hmain-basic__advantages .item:last-child{
			margin-bottom: 0
		}
		.hmain-basic__image{
			display: none;
		}
		.hmain-basic__main{
			padding: 0 15px;
			padding-top: 245px;
		}
		.hmain-basic__subtitle{
			margin-bottom:20px;
		}
		.hmain-basic__title {
			font-size: 32px;
			line-height: 36px;
		}
		.hmain-basic__typed{
			width: 160px;
			height:90px;
			font-size: 20px;
			padding: 0 5px;
			top: 30px;
			transform: none;
			right: 15px;
			left: inherit;
		}
	.hmain-sidebar{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
		.hmain-sidebar__banner {
			order: 1;
			margin-bottom: 50px;
			height: auto;
			padding: 20px;
			padding-left: 40%
		}
		.hmain-sidebar__banner b {
			font-size: 22px;
			margin-bottom: 10px;
		}
		.hmain-sidebar__banner span{
			font-size: 18px;
			padding: 6px 15px;
			padding-left: 30px;
		}
		.hmain-sidebar__banner img{
			max-height: 90px;
			margin-left: 15px
		}
		.hmain-sidebar__guides {
			order: 2;
		}
	.hmain-container{
		padding-bottom: 40px;
	}
	.hmain-sidebar__item{
		margin-bottom: 10px;
		padding: 20px 15px;
		padding-bottom: 12px
	}
		.hmain-sidebar__item .title{
			font-size: 20px;
			line-height: 24px;
		}

	.hnews {
		margin-bottom: 26px;
	}
	body .hrelationship-item{
		width: calc(50% - 6px);
	}
	body .hrelationship-item:first-child{
		width: 100%;
		margin-bottom: 15px;
		text-align: center
	}
	body .hrelationship-item .cat{
		display: none;
	}
	body .hrelationship-item:first-child .cat{
		transform: translate(-50%, -50%);
		left: 50%;
		display: inline-block;
	}
	body .hrelationship-item .image img, body .hnews-mini__item .image img{
		height: 115px;
	}	
	.hnews-large{
		margin-bottom: 15px
	}
	.hnews-large__item{
		height: 100%;
	}
	.hnews-large__item .cart {
		padding: 30px 24px 24px 24px;
	}
	.hnews-mini__item{
		display: block;
		width: calc(50% - 6px);
	}
	.hnews-mini__item .image{
		width: 100%
	}
	.hnews-mini__item .cart{
		width: 100%;
		height: auto;
		padding: 15px;
	}
	.hnews-mini__item .cart .cat,
	.hnews-mini__item .cart .meta{
		display: none
	}
	.hrelationship-item:first-child .image img,
	.hnews-large__item .image img{
		height: 288px;
	}
	body .hrelationship-item .title,
	body .hnews-mini__item .title{
		margin-bottom: 15px;
		font-size: 17px;
		line-height: 1;
		margin-bottom: 0;
	}
	.hrelationship-item:first-child  .title,
	.hnews-large__item .title{
		font-size: 24px;
		margin-bottom: 12px
	}
	.hrelationship-item .cart{
		padding: 15px;
	}
	.hrelationship-item:first-child .cart{
		padding-top: 30px
	}
	.hrelationship-item .meta{
		display: none;
	}
	.hrelationship-item:first-child .meta{
		display: block;
	}
	.hnews-list {
		flex-wrap: wrap;
		flex-direction: row-reverse;
	}
		.hnews-large{
			width: 100%
		}
		.hnews-mini{
			display: flex;
			width: 100%;
			justify-content: space-between;
		}	
}
