
html {
    height: 100%;
    box-sizing: border-box;
  }
body{
    font-family: "Poppins", sans-serif;
    height: 100%;
    
}

.main-container {
    min-height: 100%;
    display: grid;
    grid-template-rows: 0fr 0fr 1fr;
}

.header{}

.logo-container{
    
}

.breadcrumb-container {
    background-image: url(../img/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 2%;
    padding-bottom: 2%;
}

.no-padding{
    padding: 0px !important;
}

.logo-container img {
    width: 230px;
}

.title{}

.title h3 {
    font-size: 30px;
    color: #2D2D2D;
}

.table-container {
    margin-top: 5%;
    margin-bottom: 5%;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    overflow: hidden;
}

.table-heading{
    color: #2D2D2D;
    background-color: #f5f5f5;
    padding: 15px 20px 15px 20px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


.table-heading h3 {
    font-size: 20px;
    margin: 0;
}

.table-content{}

.table-content ul {
    margin: 0;
    padding: 0;
}

.table-content ul a {
    text-decoration: none;
    color: #7b7b7b;
    font-size: 16px;
    position: relative;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-right: 0;
    border-left: 0;
    display: flex;
}

.table-content ul a img {
    margin-right: 10px;
    width: 16px;
}

.table-content ul a li {
    list-style: none;
}

.table-content ul a:hover {
    background-color: #efefef;
}


.footer-main-contaner {
    background-color: #2D2D2D;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}
.footer-logo img {
    width: 210px;
}

.d-flex {
    align-items: center;
    justify-content: right;
}

.copyright {
    display: flex;
    justify-content: right;
}

.copyright h3{
    font-size: 16px;
    color: #7b7b7b;
}

@media (max-width: 767px){
    .d-flex {
        align-items: center;
        justify-content: center;
        margin-top: 17px;
    }
    .footer-logo {
        text-align: center;
    }
}

@media (max-width: 991px){

    .title h3 {
        font-size: 26px;
        color: #2D2D2D;
    }

    .table-heading h3 {
        font-size: 19px;
    }

}