.htabs {
	max-width: 1205px;
	padding: 0 110px;
	margin: 0 auto;
}
.htabs-name {
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 62px;
}
.htabs-name li {
	display: flex;
	align-items: flex-end;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 28px;
	line-height: 1.2;
	text-align: center;
	padding: 0 0.5rem 1rem;
	margin: 0;
	border-bottom: 4px solid transparent;
	cursor: pointer;
}
.htabs-name li.current {
	font-weight: 500;
	border-bottom-color: #FAA519;
}
.htabs-content {
	background: #fff;
	padding: 98px 0 75px 60px;
}
.htab {
	max-width: calc(100% - 530px);
	max-height: 800px;
	overflow: hidden;
}
.htab:not(.d-none){
	animation: show_text 3s ease-out;;
}
@keyframes show_text {
	0% { opacity: 0; max-height: 0;}
	50% { opacity: 1;}
	100% { max-height: 800px;}
}
.htabs-img {
	position: absolute;
	right: -110px;
	top: 30px;
	width: 530px;
	box-shadow: 0px 8px 32px #00000033;
}
.htabs-img img {
	width: 100%;
}
.mob-htabs-wrapper {
	display: none;
	flex-direction: column;
	gap: 16px;
}
.mob-htabs-wrapper .mob-htabs-content {
	display: block;
	background: #fff;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.mob-htabs-wrapper .htab-title {
	padding: 20px 40px 12px 25px;
	cursor: pointer;
}
.mob-htabs-wrapper .htab-title h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 1em;
	min-height: 3.3rem;
	border-left: 4px solid #FAA519;
}
.mob-htabs-wrapper .htab-title:before {
	position: absolute;
	content: '+';
	font-size: 34px;
	line-height: 60px;
	top: 20px;
	right: 20px;
}
.mob-htabs-wrapper .mob-htabs-content.open .htab-title:before {
	content: '\2013';
 }
 .mob-htabs-wrapper .mob-htabs-content .htab {
	width: 100%;
	max-width: 100%;
	padding: 8px 25px 26px 25px;
 }
 .mob-htabs-wrapper .mob-htabs-content.open .htab {
	display: block !important;
 }
@media only screen and (max-width: 1080px) {
	.htabs { padding: 0; }
	.htabs-content { padding: 80px 0 40px 40px; }
	.htabs-img { right: 30px; width: 50%;}
	.htab { width: calc(50% - 80px); }
}
@media only screen and (max-width: 600px) {
	.mob-htabs-wrapper { display: flex; }
	.htabs-wrapper,
	.htabs-name { display: none !important; }
}
@media only screen and (max-width: 480px) {
}