.nav-carousel-items div {
    background-color: #222;
    border-radius: 15px;
    height: auto;
    text-align: center;
    color: white;
    padding: 5px;
}
.nav-carousel-items a {
    text-decoration: none;
}
.nav-carousel-items div:hover {
    background-color: #F82360;
    transform: scale(1.1);
    font-weight: bold;
}
@media screen and (min-width: 800px) {
    .nav-carousel-items {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        font-size: 18px;
    }
}
@media screen and (max-width: 800px) {
    .nav-carousel-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .nav-carousel-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        font-size: 12px;
    }
}
#car-09 {
    margin-bottom: 40px;
}
/***START - CAROUSEL STYLE***/
.carousel {
    text-align: center;
    text-decoration: none;
}
.carousel-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.carousel-title {
    display: grid;
    grid-template-columns: 1fr 6fr ;
    background-color: lightgray;
    align-items: center;
    text-align: left;
    margin-top: 30px;
    font-size: 20px;
}
@media screen and (max-width: 800px) {
    .carousel-title {
        font-size: 15px;
    }
}
@media screen and (min-width: 800px) {
    .triangle {
        width: 100px;
        height: 0;
        border-bottom: 40px solid #F82360;
        border-right: 40px solid transparent;
    }
}
@media screen and (max-width: 800px) {
    .triangle {
        width: 80px;
        height: 0;
        border-bottom: 30px solid #F82360;
        border-right: 30px solid transparent;
    }
}
.card-title {
    margin: 10px 0;
}
.card-content {
    box-shadow: 5px 5px 5px rgba(000, 000, 000, 0.5);
    border-radius: 20px;
    background-color: lightgray;
}
@media screen and (min-width: 800px) {
    .card-content {
        display: flex;
        flex-direction: row;
    }
}
@media screen and (max-width: 800px) {
    .card-content {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
    }
}
.card-img {
    height: auto;
    max-width: 100%;
}
@media screen and (min-width: 800px) {
    .card-img {
        border-radius: 15px 0 0 15px;
    }
}
@media screen and (max-width: 800px) {
    .card-img {
        border-radius: 10px 10px 0 0;
    }
}
.card-info {
    background-color: lightgray;
    color: #222;
    text-align: center;
}
@media screen and (min-width: 1200px) {
    .card-info {
        height: auto;
        width: 400px;
        border-radius: 0 15px 15px 0;
        padding: 20px 10px 10px 10px;
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width: 1200px) {
    .card-info {
        height: auto;
        width: 350px;
        border-radius: 0 15px 15px 0;
        padding: 20px 10px 10px 10px;
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width: 800px) {
    .card-info {
        height: 120px;
        width: auto;
        border-radius: 0 0 10px 10px;
        padding: 10px;
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 600px) {
    .card-info {
        height: 140px;
        font-size: 11px;
        line-height: 18px;
    }
}
@media screen and (max-width: 400px) {
    .card-info {
        height: 140px;
        font-size: 10px;
        line-height: 16px;
    }
}
.buttons {
    width: 0;
    height: 0;
    margin: 0;
}
.button-prev {
    margin-right: 10px;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #222;
}
.button-next {
    margin-left: 10px;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #222;
}
.buttons:hover {
    transform: scale(1.2);
}
.button-prev:hover {
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #F82360;
}
.button-next:hover {
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #F82360;
}
.carousel-positions {
    display: flex;
    justify-content: space-around;
    margin: 25px auto;
}
.carousel-position {
    background-color: #222;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}
@media screen and (max-width: 1150px){
    .buttons {
        transform: scale(0.9);
    }
    .buttons:hover {
        transform: scale(1.0);
    }
    .carousel-positions {
        margin: 20px;
    }
    .carousel-position {
        width: 26px;
        height: 26px;
        border-radius: 13px;
    }
}
@media screen and (max-width: 800px){
    .buttons {
        transform: scale(0.8);
    }
    .buttons:hover {
        transform: scale(0.9);
    }
    .carousel-positions {
        margin: 15px;
    }
    .carousel-position {
        width: 22px;
        height: 22px;
        border-radius: 11px;
    }
}
@media screen and (max-width: 600px){
    .buttons {
        transform: scale(0.7);
    }
    .buttons:hover {
        transform: scale(0.8);
    }
    .carousel-positions {
        margin: 10px;
    }
    .carousel-position {
        width: 18px;
        height: 18px;
        border-radius: 9px;
    }
}
@media screen and (max-width: 400px){
    .buttons {
        transform: scale(0.6);
    }
    .buttons:hover {
        transform: scale(0.7);
    }
    .carousel-positions {
        margin: 5px;
    }
    .carousel-position {
        width: 14px;
        height: 14px;
        border-radius: 7px;
    }
}
/***END - CAROUSEL STYLE***/