/* product categories carousel */
.product_categories_carousel .swiper-slide {
    width: 302px;
}
.product_categories_carousel:not(.swiper-initialized) > .swiper-wrapper {
    gap: 40px;
}
.product_categories_carousel .carousel_nav_con {
    margin: 40px 0;
}

/* item_format_1 */
.item_format_1 {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.item_format_1 .image_con {
    line-height: 0;
    background: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_format_1 .image_con img {
    transition: transform .4s ease;
}
.item_format_1 .title {
    background: #000;
	color: #fff;
	font-size: 18px;
    text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
    padding: 10px;
    min-height: 56px;
    margin: 0;
}
.item_format_1 .title:after {
	content: '\e945';
	font-family: 'icomoon';
	font-size: 12px;
    font-weight: 400;
    transition: transform .4s ease;
}
.item_format_1:hover .title:after {
    transform: translateX(5px);
}
.item_format_1:hover .image_con img {
    transform: translateY(-5px);
}

/* official cockpits */
.official_cockpits_carousel {
    margin-top: 40px;
}
.official_cockpits_carousel .carousel_nav_con {
    margin: 40px 0;
}
.official_cockpits_carousel .swiper-slide {
    width: 233px;
}
.official_cockpits_carousel:not(.swiper-initialized) > .swiper-wrapper {
    gap: 40px;
}
@media(max-width:1300px){
    div.official_cockpits_carousel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* item_format_2 */
.item_format_2 {
    color: #fff;
    background: #000;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
	overflow: hidden;
    position: relative;
    line-height: 0;
}
.item_format_2 .link_text {
	font-size: 18px;
	position: absolute;
	bottom: 18px;
	line-height: 1;
	text-align: center;
	width: 100%;
    transition: transform .4s ease;
}
.item_format_2 .bg_image {
    position: relative;
    aspect-ratio: 476 / 720;
    max-width: 234px;
}
.swiper-initialized .item_format_2 .bg_image {
    max-width: 100%;
}
.item_format_2 .bg_image:before {
    content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 130px;
	width: 100%;
	background-image: linear-gradient(0deg, black, transparent);
}
.item_format_2 .logo_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	min-height: 120px;
}
.item_format_2 .logo_image img {
	width: auto;
	height: auto;
    max-height: 40px;
	max-width: 140px;
	object-fit: contain;
    transition: transform .4s ease;
}
.item_format_2 .logo_image .img-78617 {
    max-height: 54px;
}
.item_format_2:hover .link_text {
    transform: translateY(-5px);
}
.item_format_2:hover .logo_image img {
    transform: scale(1.1);
}

/* testionials */
.testimonials_section {
    background: #F0F0F0;
}
.testimonials_section:not(.swiper-initialized) > .swiper-wrapper {
    gap: 40px;
}
.item_testimonial {
    text-align: center;
    position: relative;
    padding: 38px 0;
}
.item_testimonial .content {
    font-size: 20px;
    line-height: 1.25;
    min-height: 50px;
    max-width: 420px;
    margin: 0 auto 8px;
}
.item_testimonial .name {
    font-weight: 900;
}
.item_testimonial:before {
    content: "\f005\f005\f005\f005\f005";
    font-family: 'FontAwesome';
    color: #fe9d2b;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.item_testimonial:after {
    content: '';
	width: 85px;
	height: 3px;
	background: #FF0033;
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
}