.breadcrumbs {
    padding: 18px 0;
    min-height: 40px;
    margin-top: 120px;
    h4 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
    }
}
.templates-downloadables {
    padding-top: 4rem;
    padding-bottom: 0rem;
    .container {
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            .img-logo-wrapper img {
                width: 80%;
                filter: grayscale(90%);
                transition: .5s ease-in-out;
            }
            .card-body {
                h3.card-title {
                    font-size: 1.4rem;
                    font-weight: 800;
                    color: #4b93da;
                }
                /* p.card-text {
                    font-size: 1rem;
                } */
                .download-btn {
                    border-color: #4b93da;
                    background-color: #4b93da;
                }
                .download-btn:hover {
                    border-color: #636ede;
                    background-color: #636ede;
                }
            }
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
            .img-logo-wrapper img {
                filter: grayscale(0%);
            }
        }
        .report-img-wrapper {
            img {
                cursor: pointer;
            }
        }
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(230, 230, 230, 0.817);
            justify-content: center;
            align-items: center;
            .close-btn {
                position: absolute;
                top: 20px;
                right: 50px;
                color: #474747bd;
                font-size: 35px;
                font-weight: bold;
                cursor: pointer;
            }
            .modal-content {
                width: 30%;
                max-height: 100%;
                animation: zoomIn 0.5s ease;
            }
            @keyframes zoomIn {
                from { transform: scale(0.5); opacity: 0; }
                to { transform: scale(1); opacity: 1; }
            }
        }
    }
    .dotted {
        width: 100%;
        height: 40px;
        background-image: url('../img/front-pages/landing-page/point.png');

        /* margin-bottom: -55px; */
    }
}

/* ==================================================================== */
/* ===============================LIGHT THEME========================== */ 
/* ===============================LIGHT THEME========================== */ 
/* ==================================================================== */

.light-style { 
    .breadcrumbs {
        background-color: #fff;
    }
}

/* ===================================================================== */
/*===============================END OF LIGHT PAGE====================== */ 
/* ==============================END OF LIGHT PAGE====================== */ 
/* ===================================================================== */


/* ===================================================================== */
/* =================================DARK THEME========================== */ 
/* =================================DARK THEME========================== */ 
/* ===================================================================== */

.dark-style { 
    .breadcrumbs {
        background-color: #30334e;
    }
    .templates-downloadables { 
        .card {
            .img-logo-wrapper {
                background: #ffffff;
            }
        }
    }
}

/* ===================================================================== */
/*================================END OF DARK PAGE====================== */ 
/* ===============================END OF DARK PAGE====================== */ 
/* ===================================================================== */




/* ===================================================================== */
/* ==================================FOR MOBILE========================= */ 
/* ==================================FOR MOBILE========================= */ 
/* ===================================================================== */

@media screen and (max-width: 768px) { 
    .templates-downloadables { 
        .container { 
            .modal {
                .close-btn {
                    font-size: 3rem;
                    top: 20px;
                }
                .modal-content {
                    width: 45%;
                }
            }
        }
    }
}

@media screen and (max-width: 426px) {
    .breadcrumbs {
        margin-top: 90px;
        h4 {
            font-size: 2rem;
            line-height: normal !important;
            margin-bottom: 1rem;
        }
    }
    .templates-downloadables {
        .container {
            .card {
                .img-logo-wrapper img {
                    width: 65%;
                }
                /* .card-body {
                    h3.card-title {
                        font-size: 1.4rem;
                        font-weight: 800;
                        color: #4b93da;
                    }
                    /* p.card-text {
                        font-size: 1rem;
                    } */
                    /* .download-btn {
                        border-color: #4b93da;
                        background-color: #4b93da;
                    }
                    .download-btn:hover {
                        border-color: #636ede;
                        background-color: #636ede;
                    } */
                /* }  */
            }
            .card:hover {
                transform: translateY(-5px);
                box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
                .img-logo-wrapper img {
                    filter: grayscale(0%);
                }
            }
            .modal {
                .close-btn {
                    right: 50px;
                    top: 40px;
                }
                .modal-content {
                    width: 75%;
                    top: 0px;
                }
            }
        }
        .dotted {    
            margin-bottom: -20px;
        }
    }
}

@media screen and (max-width: 376px) { 
    .templates-downloadables { 
        .container { 
            .modal {
                .close-btn {
                    top: 50px;
                    right: 30px;
                    font-size: 2.5rem;
                }
                .modal-content {
                    width: 85%;
                }
            }
        }
    }
}

@media screen and (max-width: 320px) {
    .breadcrumbs {
        margin-top: 68px;
        h4 {
            font-size: 2rem;
            line-height: normal !important;
            margin-bottom: 1rem;
        }
    }
    .templates-downloadables { 
        .container { 
            .modal {
                .close-btn {
                    top: 45px;
                    right: 20px;
                }
                .modal-content {
                    top: -25px;
                    width: 90%;
                }
            }
        }
    }
}
