/* ------------------ HOME ------------------ */
.page-television .home-image .image {
	margin-right: -240px;
	max-width: 790px;
}

@media (max-width: 1250px) {
	.page-television .home-image .image {
		margin-right: -50px;
		max-width: 650px;
	}
}

@media (max-width: 550px) {
	.page-television .home-image .image {
	    margin-right: 0;
	}
}

/* ------------------ RADIO DIFFERENT ------------------ */
.page-television .radio-different .item:nth-child(1) .image {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}
.page-television .radio-different .item:nth-child(1) .image i {
	width: 80px;
	height: inherit;
}
.page-television .radio-different .item h5 {
	font-size: 40px;
	margin-bottom: 15px;
}

/* ------------------ PROGRAMS ------------------ */
.programs {
	padding: 72px 0;
}

.programs .text-select {
	font-weight: 600;
	color: #3F0051;
	margin-top: 25px;
}

.programs .accordeon {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 30px;
}

.btn-accordeon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 22px;
	font-family: var(--RedHatDisplay);
	font-weight: bold;
	min-height: 49px;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0 24px;
	background: #CCF8C6;
	position: relative;
	cursor: pointer;
}
.btn-accordeon:before {
	content: '';
	display: block;
	width: 8px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #49A33C;
	transition: all 0.3s;
}
.btn-accordeon:hover:before {width: 2px;}
.plus {
	width: 15px;
	min-width: 15px;
	height: 15px;
	display: inline-block;
	position: relative;
}
.plus:after {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background: var(--c-text);
	position: absolute;
	top: 50%;
	margin-top: -1.5px;
	transition: all 0.3s;
	border-radius: 5px;
}
.plus:before {
	content: '';
	display: block;
	height: 100%;
	width: 3px;
	background: var(--c-text);
	position: absolute;
	left: 50%;
	margin-left: -1.5px;
	transition: all 0.3s;
	border-radius: 5px;
}
.inner-accordeon {
	padding: 32px 0;
}
.item-accordeon.active .btn-accordeon .plus:before {opacity: 0;}
.content-accordeon {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
} 

.inner-accordeon {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.inner-accordeon .image {
	width: 28%;
	line-height: 0;
}
.item-accordeon:nth-child(4) .inner-accordeon .image {width: 50%;}
.item-accordeon.four .inner-accordeon .image {width: 50%;}

.item-accordeon:nth-child(2) .btn-accordeon {background: #CFE4FF;}
.item-accordeon:nth-child(2) .btn-accordeon:before {background: #2B72F6;}
.item-accordeon:nth-child(3) .btn-accordeon {background: #CDF2F1;}
.item-accordeon:nth-child(3) .btn-accordeon:before {background: #00A0B3;}
.item-accordeon:nth-child(4) .btn-accordeon {background: #FFDCED;}
.item-accordeon:nth-child(4) .btn-accordeon:before {background: #E64887;}
.item-accordeon:nth-child(5) .btn-accordeon {background: #FFDCD8;}
.item-accordeon:nth-child(5) .btn-accordeon:before {background: #EB4436;}
.item-accordeon:nth-child(6) .btn-accordeon {background: #FDE6C5;}
.item-accordeon:nth-child(6) .btn-accordeon:before {background: #ED7615;}

@media (max-width: 991px) {
	.programs > .center > p br {display: none;}
	.programs .accordeon {gap: 15px;}
}

@media (max-width: 767px) {
	.programs {padding: 40px 0;}
	.programs .accordeon {margin-top: 40px;}
	.btn-accordeon {font-size: 17px;}
}

@media (max-width: 550px) {
	.programs {display: none;}
}

/* ------------------ AREA ------------------ */
.area .center {align-items: center;}