*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.hidden-desktop{
	display: none;
}

h2{
	font-size: 52px;
	line-height: 120%;
}
.faq-row{
	display: flex;
}
.faq-content-col{
	width: 50%;
	padding: 120px 20px;
	background: #A40011;
	color: #fff;
}
.faq-content-inner{
	max-width: 614px;
	margin-right: 120px;
	margin-left: auto;
}
.faq-img-col{
	width: 50%;
	background: url('../img/faq-img.jpg') top center no-repeat;
	background-size: cover;
}
.faq-wrap{
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 60px 0 0;
}
.accordion-header{
padding: 0 0 25px;
background: transparent;
border-bottom: 1px solid #fff;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
cursor: pointer;
}
.accordion-header h3{
	font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 140%;
}
.accordion-header .icon{
font-weight: 500;
    font-size: 25px;
}
.accordion-content {
    display: none;
    padding: 20px 20px 0;
}
.faq-action{
	margin: 40px 0 0;
}
.btn-primary{
	padding: 20px 60px;
	font-size: 18px;
	line-height: 18px;
	padding: 20px 60px;
	display: inline-flex;
	border-radius: 100px;
	background: #50000B;
	color: #fff;
	font-weight: 700;
line-height: 22px; /* 144.262% */
letter-spacing: 0.32px;
text-transform: uppercase;
}



@media (max-width: 1280px){
.faq-content-inner{
	margin-right: auto;
}
}

@media (max-width: 992px){
.hidden-desktop{
	display: block;
}
.hidden-mobile{
	display: none;
}
}

@media (max-width: 768px){
.faq-row{
	flex-direction: column;
}
.faq-img-col,
.faq-content-col{
	width: 100%;
}
.faq-img-col{
	order: -1;
	height: 500px;
}
}

@media (max-width: 479px){
.faq-content-col{
	padding: 50px 20px;
}
h2{
	font-size: 32px;
}
.faq-img-col{
	height: 400px;
}
}