.tab__header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	border-bottom: 3px solid #fae4d4;
}

.tab__title:nth-child(1){
	margin-left:60px;
}

.tab__title:nth-child(2){
	margin-right:60px;
}

.tab__title{
	padding: 16px 20px;
	width:100%;
	max-width:460px;
	margin-bottom:-3px;
	border-bottom: 3px solid transparent;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 32px;
	line-height: 62%;
	letter-spacing: 0em;
	text-align: center;
	color: #424242;
	transition:03.s;
	cursor:pointer;
}

.tab__title.tab-active{
	animation: color 0.3s ease-in-out forwards;
}

@keyframes color {
    0% {
        border-color:transparent;
    }
    100% {
			color: #c63d28;
       border-color:#c63d28;
    }
}

.tab__content{
	width:100%;
	max-width:1274px;
	margin: 55px auto 0;
	gap:30px;
	justify-content:space-between;
	display:none;
}

.tab__content.tab-active{
	display:flex;
	animation: displays 0.3s ease-in-out forwards;
}

@keyframes displays {
    0% {
        opacity:0;
    }
    100% {
			opacity:1;
    }
}

.tab__item--left{
	width:100%;
	max-width:506px;
}

.tab__item--right{
	max-width:650px;
}

.tab__block.tab__block--active{
	display:block;
}

.tab__img{
	display:none;
}

.tab__img.tab__img--active{
	display:block;
animation: showing 0.3s ease-in-out forwards;
}

@keyframes showing {
    0% {
        opacity:0;
    }
    100% {
			opacity:1;
    }
}

.tab__block--title{
	font-weight: 700;
	font-size: 40px;
	line-height: 50%;
	letter-spacing: 0em;
	color: #212121;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.tab__block--active .tab__block--title .tab__block--title--line{
	display:none;
}

.tab__block{
	border-bottom: 2px solid #9e9e9e;
	padding:32px 0
}

.tab__block:nth-last-child(1){
	border-bottom:none;
}

/* .tab__block--contant{
	display:none;
}

.tab__block--active .tab__block--contant{
	display:block;
} */


.tab__block--contant p{
	margin-top:15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	letter-spacing: 0.01em;
	color: #424242;
}

.tab__block--contant a{
	font-weight: 500;
	font-size: 16px;
	line-height: 187%;
	letter-spacing: 0.01em;
	color: #c63d28;
	cursor:pointer;
}

.orange {
	display:block;
	background: #fae4d4;
	color: #df1d00;
	width:fit-content;
	border-radius: 8px;
	padding:0 10px;
	margin-left:-10px
}

@media (max-width: 767px){
    .tab__item--right{
		display:none;
	}
	
	.tab__header{
		gap:20px;
	}
	
	.tab__title:nth-child(1) {
    margin-left: 0;
}
	
.tab__title:nth-child(2) {
    margin-right: 0;
}
	.tab__title{
			font-size:16px;
	}
	
	.tab__content{
		margin-top:15px;
		padding:0 20px
	}
	
	.tab__block--title{
		font-size:24px;
	}
}