.vtabs {
	align-items: flex-start;
}
.vtabs > * {
	flex: 0 0 50%;
	width: 50%;
}
.vtabs-name {
	margin: 0;
	padding: 2.25rem 60px 0 0;
	list-style: none;
	justify-content: center;
}
.vtabs-name li {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.55rem;
	line-height: 1.28;
	padding: 1rem 0;
	margin: 0;
	border-bottom: 4px solid transparent;
	cursor: pointer;
}
.vtabs-name li.current {
	font-weight: 500;
	color: #FAA519;
}
.vtab {
	padding: 3.25rem 0 3.25rem 7rem;
	-ms-transition: all 1s ease-out;
	transition: all 1s ease-out;
}
.vtab:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 50vw;
	height: 100%;
	background-color: #002E56;
	animation: show_bg 1s ease-out;
	z-index: 0;
}
@keyframes show_bg {
	0% { height: 6.5rem; }
	100% { height: 100%;}
}

.vtab .init-content {
	max-height: 800px;
	opacity: 1;
	overflow: hidden;
	z-index: 9;
   animation: show_text 3s ease-out;
}
@keyframes show_text {
	0% { opacity: 0; max-height: 0;}
	50% { opacity: 1;}
	100% { max-height: 800px;}
}
.vtab.d-none .init-content {
	max-height: 0;
	opacity: 0;
}
.mob-vtabs-content {
	flex: 0 0 100%;
  	width: 100%;
}
.mob-vtab-content{
	background-color: #003767;
}
.mob-vtab-content.open {
	background-color:  rgba(0, 46, 86, 0.9);
}
.vtab-title {
	padding: 20px 134px 20px 32px;
	cursor: pointer;
}
.vtab-title:before {
	position: absolute;
	content: '+';
	color: #fff;
	font-size: 38px;
	line-height: 1;
	top: 35px;
	right: 40px;
	pointer-events: none;
}
.mob-vtab-content.open .vtab-title:before {
	content: "\2013";
	color: #FAA519;
}
.vtab-title h3,
.vtab p {
	color: #fff;
}
.mob-vtab-content.open .vtab-title h3 {
	color: #FAA519;
	font-weight: 500;
}
.vtab p {
	position: relative;
	z-index: 99;
}
@media only screen and (max-width: 1024px) {
	.vtabs-name { padding: 27px 30px 0 0; flex: 0 0 38%; width: 38%; }
	.vtabs-name li {  max-width: 260px; }
	.vtabs-content { flex: 0 0 62%; width: 62%; }
	.vtab {  padding: 45px 0 45px 64px; }
	.vtab::before { width: calc(100% + 32px);}
}
@media only screen and (max-width: 600px) {
	.vtabs { width: calc(100% + 64px); transform: translateX(-32px); }
	.vtabs-name,
	.vtabs-content,
	.vtab,
	.arrows_show .tab-right::after { display: none; }
	.mob-vtabs-content,
	.mob-vtab-content.open .vtab { display: block !important;}
	.vtab-title { padding-top: 40px; padding-bottom: 40px; }
	.mob-vtab-content:first-child .vtab-title { padding-top: 40px; }
	.mob-vtab-content .vtab { padding: 32px 32px 0;}
}
@media only screen and (max-width: 480px) {
	.vtabs { width: calc(100% + 48px); transform: translateX(-24px); }
	.vtab-title { padding-left: 24px; }
	.mob-vtab-content .vtab { padding: 24px; }
}