.header {
	padding: 30px 0px 0px 0px;
	
	color: rgba(31, 31, 31, 1);
	font-size: clamp(35px, 9vw, 150px);
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
}
.hr {
	max-width: 743px;
	height: 1px;
	background: rgba(0, 0, 0, 1);
	margin: 20px auto 0 auto;
	
}

.custom-accordion {
	max-width: 1170px;
	margin: 50px auto 0px auto;
	
	.accordion-item {
		padding: 30px 0px;
		margin-top: 25px;
		border-top: 1px solid rgba(31, 31, 31, 0.3);
		border-bottom: 1px solid rgba(31, 31, 31, 0.3);
		box-shadow: 0px 4px 15px 0px rgba(255, 255, 255, 0.15);
		cursor: pointer;
		
		.accordion-header {
			.title {
				color: rgba(31, 31, 31, 1);
				font-size: 25px;
				font-weight: 700;
				line-height: 120%;
				letter-spacing: 0%;
				text-align: left;
			}
			.ico {
				width: 24px;
				height: 24px;
				position: relative;
				border: 1px solid rgba(31, 31, 31, 1);
				border-radius: 999px;
				
				
				.vertical {
					width: 1px;
					height: 14px;
					background: rgba(31, 31, 31, 1);
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
				}
				.horizontal {
					width: 14px;
					height: 1px;
					background: rgba(31, 31, 31, 1);
					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
				}
				
			}
		}
		
		.accordion-body {
			color: rgba(31, 31, 31, 1);
			font-style: Medium;
			font-size: 20px;
			font-weight: 500;
			line-height: 120%;
			letter-spacing: 0%;
			text-align: left;
			margin-top: 10px;
			
			a {
				text-decoration: none;
				color: #C58511;
			}
		}
		
		
	}
	.accordion-item[data-isopen="true"] {
		.accordion-header {
			.vertical {
				display: none;
			}
		}
	}
}







@media (max-width: 767px) {
	.input {
		margin-top: 20px;
	}
	.hr {
		display: none;
	}
	
	
}