* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'PPTelegraf';
    src: url('../Webfonts/PPTelegraf-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'Montserrat';
    src: url('../Webfonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}
body {
    font-family: 'PPTelegraf';
    font-size: 12px;
    margin: 0px;
    background: url('../images/BG.jpg') no-repeat;padding-bottom:50px;background-size:cover;
}
.main{
    max-width:1200px;width:100%;margin:0 auto;
}
.box {
    max-width: 600px;
    width: 100%;
    border: 1px solid;
    border-radius: 20px;
    display: flex;
    margin: 40px auto 20px;
}
    .box input[type=text] {
        background: transparent;
        border: 0;
        padding: 0 20px;
        flex: 1;outline:0;
    }
        .box input[type=text]:focus  {
            border: 0;
        }
.btn-search {
    background: url(../images/search.png) no-repeat center;
    width: 32px;
    border: 0;
    outline: none;
    margin-right: 10px;
    background-size: 70%;
    cursor: pointer;
}
.home {
    background: #1f5fa3;
    color: #fff;
    font-size: 18px;
    border-radius: 18px;
    width: 100px;
    text-align: center;
    line-height: 36px;
    text-decoration: none;
}
.content{
    display:flex;
    justify-content:space-between;
}
.title {
    background: #1f5fa3;
    text-align: center;
    border-radius: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-family: 'Montserrat';
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 300;
}
.video-gallery, .pdf-library {
    width: 25%;
}
.title2 {
    font-size: 40px;
    font-weight: bold;
    color: #1f5fa3;
    margin-top: 10px;
    font-family: 'PPTelegraf';
    flex: 1;
    text-align: center;
}
.video-list {
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pdflist {
    list-style: none;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    margin: auto;
    padding: 0 12px;
}
    .pdflist a {
        color: #333;text-decoration:none;
    }
    .pdflist a:hover {
        text-decoration: underline;
    }
.pdflist .date{
    color:#1f5fa3;
}
    .pdflist li {
        border-bottom: 2px solid #1f5fa3;
        padding: 10px 0;
    }
.bloglist div {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;text-align:left;
}
.scrolldiv {
    overflow-y: auto;
    max-height: 400px;
}

    .scrolldiv::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .scrolldiv::-webkit-scrollbar-track {
        background: rgb(179,179,179);
        border-radius: 10px;
    }

    .scrolldiv::-webkit-scrollbar-thumb {
        background-color: #1f5fa3;
        border-radius: 10px;
        border: 1px solid rgb(179,179,179);
    }

        .scrolldiv::-webkit-scrollbar-thumb:hover {
            background-color: #1f5fa3;
        }
.detailbox {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-shadow: 2px 2px 10px #ccc;
}
.pagination-links {
    margin: 20px auto;
    display: flex;
    font-size: 20px;
    justify-content: center;
    column-gap: 50px;
}
.pagination-links a{
   color:#1f5fa3;text-decoration:none;
}
    .pagination-links a:hover {
        text-decoration: underline;
    }

.hometop {
    /*height: 200px;
    overflow-y: auto;
    width: 100%;
    margin: auto;
    border: 2px solid #1f5fa3;
    border-radius: 2px;*/
    padding: 12px;
}
    .hometop ul {
        padding-left: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .hometop p {
        margin-top: 5px;
    }