.deroule_wrap {
	display: flex;
    flex-wrap: wrap;
	width: calc(100% + 130px);
    margin-left: -150px;
}

.deroule_title {
	width: 100%;
	margin-bottom: 50px;
}

.head_tab_deroule {
	width: 290px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.body_tab_deroule {
	width: calc(100% - 290px);
	padding: 0px 55px;
}

.tab_deroule_title_link {
	margin-bottom: 15px;
	display: block;
}

.tab_deroule_title {
	border: 1px solid #d49242;
    background-color: white;
    padding: 20px 60px;
	text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1em;
	color: #171D31;
	cursor: pointer;
	transition: 0.3s;
	text-align: content;
	min-width: 200px;
	display: flex;
    align-items: center;
}

.tab_deroule_title span {
	max-width: 0px;
	overflow: hidden;
	display: inline-block;
	transition: max-width 0.3s;
	margin-left: 5px;
}

.tab_deroule_title_link.current .tab_deroule_title span,
.tab_deroule_title_link:hover .tab_deroule_title span {
	max-width: 85px;
}

.current .tab_deroule_title, .tab_deroule_title:hover {
	background-color: #d49242;
	border-color: #d49242;
	color: white;
}

.tab_deroule_content {
	display: none;
}

.tab_deroule_content li {
	margin-bottom: 10px;
}

.tab_deroule_content.current {
	display: block;
}

@media screen and (max-width: 1300px) { 
	
	.deroule_wrap {
		width: calc(100% + 60px);
		margin-left: -40px;
	}

}

@media screen and (max-width: 991px) { 
	
	.head_tab_deroule {
		width: 100%;
		display: flex;
		flex-direction: initial;
		gap: 15px;
		left: 0;
		padding: 0px 10px;
	}
	
	.body_tab_deroule {
		width: 100%;
	}
	
	.tab_deroule_title {
		text-align: center;
		padding: 20px 40px;
		font-size: 1.1rem;
		line-height: 1;
		min-width: unset;
		display: block;
	}
	
	.tab_deroule_title span {
		display: inline;
		margin: 0;
		max-width: unset !important;
	}

}

@media screen and (max-width: 767px) {
	
	.deroule_wrap {
		width: 100%;
    	margin-left: unset;
	}
	
	.head_tab_deroule {
		padding: 0;
	}
	
	.tab_deroule_title{
		padding: 15px 25px;
	}
	
	.body_tab_deroule {
		padding: 0;
	}
}

@media screen and (max-width: 480px) {
	
	.head_tab_deroule {
		gap: 5px;
	}
	
	.tab_deroule_title{
		font-size: 0.8em;
		padding: 15px 15px;
	}
}