.dp-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dp-row {
    flex-direction: row;
}

.dp-col {
    flex-direction: column;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    transition: border background ease 1s;

}

.tabs label {
    border-radius: 5%;
    order: 1;
    display: block;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: background ease 0.2s;

}

.tabs label:hover {
    background: red;
}

.tabs .tab {
    border-top: 1px solid #fff;
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    color: #fff;

}

.tabs input[type="radio"] {

    display: none;
}

.tabs input[type="radio"]:checked+label {
    background: #f10909;
    color: #fff;
}

.tabs input[type="radio"]:checked+label+.tab {
    display: block;
}

.tab-color {
    color: white;
    background: #161212;

}

.tab-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

}

.tab-container img {
    margin: 2rem;
    max-height: 40rem;
    box-shadow: 0 0 20px white;
    object-fit: contain;
}

.features .tabs {
    display: flex;
    justify-content: space-between;
}

.features .tabs label {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .content .title {
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    color: #fa0e0e;
    margin-top: .5rem;
}

.about .content p {
    text-align: justify;
    font-size: 1.5rem;
    color: #fff;
    padding: 2rem 2rem;
    line-height: 2;
    margin-left: 15rem;
    margin-right: 15rem;
    border-radius: 2%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
}

.mission {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-left: 2rem;
    margin-right: 2rem;
    text-align: center;
}

.mission h3 {
    font-size: 4rem;
    color: #fa0e0e;
    text-align: center;
}

.about .content .mission h6 {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    background: transparent;
}

.mission img {
    height: 10rem;
    margin: 1rem 2rem;
    filter: invert(1);
}

.features .tabs label {
    font-size: 1.7rem;
}

.features .tab li,
.features .tab ul,
.features .tab p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 2;
    margin-left: 1rem;
}

.blogs .swiper-container {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.blogs .swiper-slide {
    width: 100%;
    max-width: 40rem;
}

.blogs .swiper-slide img {
    display: block;
    width: 100%;
    max-height: 100%;
}

.blogs .container {
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    color: #fff;
    justify-content: space-between;
    max-height: 90vh;
    
}


.client-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100vw;
}
.video-container{
    width: 50%;

}
.review-slider{
    width: 60%;
    text-align: center;
}
.review-slider img{
    width: 200px;
    height: 150px;
    object-fit: contain;
}

.banner_img_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centers images horizontally */
    gap: 10px; /* space between images */
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.banner_img_container img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 500px; /* optional: limits how large each image can be */
    object-fit: cover;
    border-radius: 8px; /* optional: adds rounded corners */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional: subtle shadow */
}

/* .clients {
    background-color: #333;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.heading {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: bold;
}

.client-container {
    margin-top: 20px;
}

.client-thumbnail {
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-thumbnail img {
    border-radius: 8px;
    width: 100%;
    max-width: 200px; 
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .heading {
        font-size: 1.8rem;
    }
    .client-thumbnail img {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 1.5rem;
    }
    .client-thumbnail img {
        max-width: 120px;
    }
} */


.video-container {
    width: 100%; /* Allow the container to take full width of the parent */
    max-width: clamp(0px, 100vw, 640px); /* Max width is minimum of 100vw and 640px */
    margin: 2rem auto; /* Centering the container with top and bottom margins */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%; /* Video will scale to fit container width */
    height: auto; /* Height will adjust automatically to maintain aspect ratio */
    max-width: 100%; /* Prevent video from exceeding container width */
    max-height: 100%; /* Prevent video from exceeding container height */
}

.font-container .tabs {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
}

.blogs .container .font-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
}

/* .blogs .container img {
    height: 100%;
    max-height: 60rem;
    width: 40vw;
    max-width: 1800px;
    box-sizing: border-box;
    border: 1px solid gray;
} */

.blogs .container img {
    max-width: 100%; /* Prevent the image from exceeding its original width */

    width: auto; /* Maintain aspect ratio by adjusting the width automatically */
    height: auto; /* Maintain aspect ratio by adjusting the height automatically */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border: 1px solid gray; /* Optional border for styling */
}

.blob-img-container{
    display:flex;
    width: 40%;
    justify-content: space-evenly;
}


.font-container h3 {
    font-style: italic;
    padding: 2rem;
    text-align: justify;
}

.font-container h1 {
    font-size: 5rem;
    padding: 0.5rem 2rem;
}

.blogs .blogs-slider {
    margin-top: 2rem;
}

.home_overlay {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(home1.png);
    background-size: cover;
    background-position: center;
}

* .tab-container img {

    max-height: 40rem;
    max-width: 50rem;

}


/* ===================================================Loader================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 100000;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 10px solid #f9f6f6;
    border-top-color: #009578;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.price-div {
    line-height: 1;
}

.price-div2 {
    margin-left: 4rem;
}

.dp-price {
    flex-direction: row;
}


.blurred-img {
    background-repeat: no-repeat;
    background-size: cover;
}

.blurred-img::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: pulse 2.5s infinite;
    background-color: var(--text-color);
}

@keyframes pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
    }
}

.blurred-img.loaded::before {
    animation: none;
    content: none;
}

.blurred-img img {
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.blurred-img.loaded img {
    opacity: 1;
}

.price-div a {
    font-size: 1.5rem;
}

.tab-container .ul-span {
    color: #f10909;
}

section #stores {
    height: 40vh;
}

.stores-cont {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)), url(whey_bg-removebg-preview_50.webp);
    ;
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 1.2;    
}


.stores-cont h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
}
.stores-cont h2 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.7rem;
}

.stores-cont p {
    padding: 0.2rem;
    color: #f9f6f6;
    font-size: 1.2rem;
    font-weight: 800;
}

#store-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;;
}
.instagram-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: rgb(255, 2, 2);
    color: #FFFFFF;
    font-size: 1.7rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.instagram-button:hover {
    background-color: rgb(126, 4, 4);
}
.card_stores {
    display: flex;
    text-align: center;
    justify-content: center;
    width: 50vh;
    padding: 0;
    margin: 0.5rem;
    border: 1px solid white;
    border-radius: 1rem;
    max-width: 1200px;
    min-height: 30rem;
}
.card-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}
/* ==========================================Media queries========================= */
/* FAQS */
@media (max-width: 45em) {
    .review-slider img{
        /* max-width: 200px; */
        width: 200px;
        height: 100px;
        object-fit: contain;
    }
    .video-container {
        max-width: 100vw; /* Maximum width of the video container */
    }

    .blob-img-container{
        width: 100%;
    }

    .blogs .container .font-container {
        width: 100%;
    }

    .card-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .instagram-button {

        color: #FFFFFF;
        font-size: 1.5rem;
        font-weight: bold;

    }
    #store-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .stores-cont {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1)), url(whey_bg-removebg-preview_50.webp);
        ;
        background-size: contain;
        background-repeat: repeat;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dp-price {
        flex-direction: column;
    }

    .price-div2 {
        margin-left: inherit;
    }

    /* .tabs .tab,
        .tabs label {
         order: initial;
    } */
    .about .content p {
        font-size: 1.2rem;
        line-height: 2;
        margin-left: 0;
        margin-right: 0;
    }

    .about .content .title {
        margin: 1rem 5rem;
    }

    .mission {
        flex-direction: column;
    }

    .card_stores {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
    }

    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }

    .tabs .tab-container {
        flex-direction: column;
    }

    .features .tabs label {
        text-align: center;
    }

    .features .tabs label {
        font-size: 1.5rem;
    }

    .features .tabs label,
    .features .tab li,
    .features .tab ul,
    .features .tab p {
        font-size: 1.2rem;
        line-height: 1.5;

    }

    .font-container h3 {
        font-style: italic;
        font-size: 1rem;
        padding: 1rem;
    }

    .font-container h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* ======================================= Image slider ====================================
*/
    .blogs .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .blogs .container img {
        height: 60vh;
        width: 100%;
    }

    .blogs .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .home_overlay {
        object-fit: contain;
        background-size: contain;
        /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(skf_mob2_1_30.webp); */
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(skf_home2\ -\ Copy.webp);
    }

    .blogs .container {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
    }
}

.home .slide .content span {
    font-weight: 600;
}

@media (max-width: 45em) and (orientation: landscape) {


    .blogs .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .blogs .container img {
        /* height: 100%; */
        width: auto;
        max-width: 1800px;
        box-sizing: border-box;
        border: 1px solid gray;
    }

}