﻿.tour-transport {
    padding-bottom: 92px;
}

.tour-transport .container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-24);
}

.transport-category {
    max-width: var(--width-heading);
    margin-bottom: 32px
}
.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-description {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.transport-card {
    /*width: calc((100% - 48px) / 3);*/
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border-e5);
    position: relative;
    border-radius: 8px;
}

    .transport-card:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .6) 100%);
        z-index: 1;
        border-radius: 8px;
    }

    .transport-card .transport-image img {
        border-radius: 10px;
        
    }

.transport-name {
    color: var(--color-text-white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 8px 20px;
    text-align: center;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    border-radius: 6px
}

@media(max-width: 1239px) {
    .tour-service .owl-dots .owl-dot{
        width: 10px; height: 10px
    }
    .transport-card .transport-image img { aspect-ratio: 336/224}
}


@media(max-width: 743px) {
    .transport-category { margin-bottom: 16px; }
    
}