.arrow-cards {
    height: 920px;
}
.arrow-cards .info {
    display: none;
    padding: 40px 70px 80px;
}
.arrow-cards .info.on {
    display: flex;
}

.arrow-cards .info img {
    height: 440px;
    object-fit: cover;
}

.arrow-cards .info .item {
    padding: 64px 100px;
}

.arrow-cards .info .item .title{
    font-size: 48px;
    color: var(--sky_primary_color);
}

.arrow-cards .info .item .summary {
    font-size: 24px;
    color: #22ac3c;
    padding: 32px 0;
}

.arrow-cards .info .item .content{
    font-size: 20px;
	line-height:1.7;
}

.arrow-cards .swiper-slide {
    text-align: center;
}
.arrow-cards .swiper-slide img {
    width: 240px;
    object-fit: cover;
}

.arrow-cards .swiper-slide img:hover {
    transform: scale(1.1);
}
.arrow-cards .swiper-slide .title {
    font-size: 24px;
    text-align: center;
    color: #000;
}

.arrow-cards .swiper-slide .cont {
    font-size: 14px;
    line-height: 20px;
    color: var(--sky_txt_color);
    text-align: justify;
    margin-top: 10px;
}

.arrow-cards .swiper-button-next,
.arrow-cards .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: var(--sky_primary_color);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.arrow-cards .swiper-button-prev {
    left: 0px;
}

.arrow-cards .swiper-button-next {
    left: auto;
    right: 0px;
}

@media (max-width: 1199.98px) {
    .arrow-cards {
        height: unset;
    }
    .arrow-cards .info {
        padding: 0;
    }
    .arrow-cards .info.on {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }
    .arrow-cards .info .item .title{ 
        font-size: 24px;
        padding: 20px 0;
    }
    .arrow-cards .info .item {
        padding: 0;
    }
    .arrow-cards .info .item .summary {
        font-size: 20px;
        padding: 10px 0;
    }
    .arrow-cards .info .item .content{
        font-size: 18px;
        padding: 10px 0;
    } 
}