.home-products .container .card {
    border: 2px solid white;
    border-radius: 1rem;
    width: 19rem;
    margin: auto;
    transition: .20s;
    text-align: center;
    text-transform: capitalize;
}

.home-products .container .card:hover {
    transform: scale(1.03);
    border-color: red;
}

.home-products .container .btn:hover {
    background-color: white;
    color: red;
}

.home-news .container .card {
    border: 2px solid white;
    border-radius: 1rem;
    width: 19rem;
    margin: auto;
    transition: .20s;
    text-align: center;
    text-transform: capitalize;
}

.home-news .container .btn:hover {
    background-color: white;
    color: red;
}

.home-youtube .carousel-inner iframe {
    width: 100%;
    height: 35rem;
}

@media (max-width: 768px) {
    html {
        font-size: 63%;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 58%;
    }

    .home-slider img {
        height: 20rem;
    }

    .home-youtube .carousel-inner iframe {
        height: 22rem;
    }
}