.travel-with {
    width: 100%;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.travel-with .pre-travel-with-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}

.travel-with .pre-travel-with-text-title {
    font-family: CircularXX TT,sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 41.6px;
    text-align: center;
    margin-bottom: 24px;
}

.travel-with .pre-travel-with-text-description {
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

.travel-with .pre-travel-with-text-description p {
    margin-bottom: 24px;
}

.travel-with .pre-travel-with-text-description p:last-child {
    margin-bottom: 0;
}

.travel-with .pre-travel-with-text-description p strong {
    font-weight: 700;
}

.travel-with .pre-title { 
    width: 87px;
    height: 12px;
    border-radius: 26px;
    background-color: rgba(50, 186, 246, 1);
    margin-bottom: 8px;
}

.travel-with h2 { 
    font-family: CircularXX TT,sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    text-align: center;
    color: rgba(12, 25, 55, 1);
    margin-bottom: 56px;
}

.travel-with .travel-with-content { 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1280px;
    gap: 24px;
}

.travel-with .travel-with-content .travel-with-content-item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr 88px;
    gap: 16px;
    height: fit-content;
    min-height: 112px;
    padding: 32px;
    border: 2px solid rgba(196, 204, 209, 1);
    border-radius: 24px;
    background-color: rgba(242, 244, 245, 1);
}

.travel-with .travel-with-content .travel-with-content-item h3 {
    flex: 0 0 20%;
    font-family: CircularXX TT,sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: rgba(12, 25, 55, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.travel-with .travel-with-content .travel-with-content-item .center-content {
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(12, 25, 55, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-iteam-location{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    color: rgba(12, 25, 55, 1);
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date .calendar-icon { 
    width: 32px;
    height: 32px;
    background-image: url("../../assets/images/calendar.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date p { 
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    color: rgba(12, 25, 55, 1);
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-duration {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: CircularXX TT,sans-serif;
    font-weight: 450;
    font-size: 20px;
    line-height: 26px;
    color: rgba(12, 25, 55, 1);
}

.travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-link {
    flex: 0 0 20%;
    font-family: CircularXX TT,sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: white;
    background-color: rgba(0, 21, 74, 1);
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    width: fit-content;
    max-width: 87px;
    margin-left: auto;
    height: 45px;
}

@media (max-width: 1024px) {
    .travel-with .travel-with-content .travel-with-content-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-link{
        margin-left: 0;
    }

    .travel-with .travel-with-content .travel-with-content-item .center-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date p,
    .travel-with .travel-with-content .travel-with-content-item .travel-with-iteam-location p,
    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-duration p{
        width: fit-content;
        font-weight: 450;
        font-size: 16px;
        line-height: 24px;

    }
}
    
@media (max-width: 768px) {
    .travel-with{
        padding: 56px 32px;
    }

    .travel-with .pre-travel-with-text {
        margin-bottom: 32px;
    }

    .travel-with .pre-travel-with-text-title {
        font-size: 24px;
        line-height: 32px;
    }

    .travel-with .pre-travel-with-text-description {
        font-size: 16px;
        line-height: 24px;
    }


    .travel-with .pre-title {
        width: 64px;
        height: 8px;
        border-radius: 26px;
    }

    .travel-with h2 {
        font-weight: 700;
        font-size: 32px;
        line-height: 41.6px;
        margin-bottom: 32px;
    }

    .travel-with .travel-with-content{
        gap: 16px;
    }

    .travel-with .travel-with-content .travel-with-content-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 16px;
    }

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date {
    justify-content: center;
}

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-duration{
        width: fit-content;
        text-align: center;
    }

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date{
        font-weight: 450;
        font-size: 16px;
        line-height: 24px;
    }

    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-link{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media (max-width: 380px) {
    .travel-with .travel-with-content .travel-with-content-item .center-content {
        flex-wrap: wrap;
    }
    .travel-with .travel-with-content .travel-with-content-item .travel-with-content-item-date{
        width: 100%;
    }
}

