.adv_cards_section_title {
	margin-bottom: 50px;
}

.adv_cards_list {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 60px;
	text-align: center;
	margin-bottom: -200px;
}

.adv_card_item_container {
	background-color: transparent;
	perspective: 1000px;
	height: 420px;
    position: relative;
}

.adv_card_item_container::after {
	content: "";
	width: 100%;
	height: 100%;
	border: 2px solid var(--color_orange1);
	pointer-events: none;
	position: absolute;
	top: -10px;
	right: -10px;
	border-radius: 15px;
	transition: .3s;
}

.adv_card_item_container_inner {
	position: relative;
    width: 100%;
	height: 100%;
	transition: transform 0.8s;
    transform-style: preserve-3d;
}

.adv_card_item_front, .adv_card_item_back {
	backface-visibility: hidden;
    height: 100%;
    position: absolute;
    overflow: hidden;
	width: 100%;
	border-radius: 15px;
	display: flex;
    flex-direction: column;
	align-items: center;
	padding: 20px;
}

.adv_card_item_front {
	background-color: white;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15); 
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}

.adv_card_item_back {
    transform: rotateY(180deg);
	width: 100%;
	background-color: var(--color_orange1);
	color: white;
}

/* Hover */

.adv_card_item_container:hover .adv_card_item_container_inner {
	transform: rotateY(180deg);
}

.adv_card_item_container:hover::after {
	opacity: 0;
}

/* content */

.adv_card_item_icon {
	width: 60px;
	height: 60px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.adv_card_item_title_wrap {
	flex: 1; 
	display: flex;
	align-items: center;
}

.adv_card_item_title {
	text-transform: uppercase;
	font-size: 1.8rem;
	max-width: 220px;
	margin-bottom: 75px;
}




.adv_cards_list {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 60px;
	text-align: center;
	margin-bottom: -200px;
}

@media screen and (max-width: 1299px) {

	.adv_cards_list {
		grid-gap: 40px;
	}

}


@media screen and (max-width: 991px) {

	.adv_cards_list {
		grid-template-columns: 1fr;
	}

}