/* COMMON STYLE */
.card-img img {
    min-width: 55px;
    width: 55px;
    height: auto;
}

.card-img {
    width: auto;
}


/* FEATURED VACANCIES */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper .card-content {
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    display: flex;
}

.swiper-slide {
    text-align: center;
    background: none;
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    gap: 0 20px;
}

.swiper-slide .card {
    width: 100%;
    height: 250px;
}

.swiper-slide .card-img img {
    margin: 10px auto;
}

.card-content p {
    margin-bottom: .5rem;
}

.swiper .title {
    text-align: center;
    margin-bottom: 1rem;
}

.featured-setion {
    padding-top: 20px;
    padding-bottom: 20px;
}

.company-slider {
    width: 70px;
    height: 70px;
}


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

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-slide {
        display: block;
    }

    .swiper-slide .card {
        flex-direction: row;
        width: auto;
        height: auto;
        display: flex;
        gap: 10px;
        margin: 10px 0
    }

    .swiper-slide .card-img {
        display: flex;
        align-items: center;
        justify-content: start;
        margin-left: 10px;
        margin-right: 20px;
    }

    .card-content {
        text-align: left;
    }

    .card-content h5 {
        margin-top: .5rem;
    }

    .company-slider {
        width: 35px;
        height: 35px;
    }

}

/* TODAY RELEASES */

.today-section {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.today-section .row {
    gap: 20px
}

.today-section .title {
    text-align: center;
    margin-bottom: 1rem;
}

.today-section .card {
    width: calc(50% - 20px);
}

.today-section .card-top {
    display: flex;
    margin: 10px
}

.today-section .card-bottom {
    display: flex;
    margin: 0 10px;
    justify-content: space-between;
}

.today-section .card-content {
    margin-left: 20px;
}

.today-section .card-content p,
h5 {
    margin: 0;
}

.today-section .card-img {
    align-content: center;
}

.today-section .card-img img {
    width: 65px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .today-section .row {
        order: 1;
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: space-between !important;
    }

    .today-section .card:first-child {
        margin-left: 10px;
    }

    .today-section .card:last-child {
        margin-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .today-section .card-bottom {
        display: none;
    }

    .today-section .card-top .card-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .today-section .card-top .card-content {
        margin-left: 0;
        text-align: center;
    }

    .today-section .card-top .card-img img {
        width: 55px;
        height: auto;
    }

    .today-section .card-top {
        display: block;

    }
}