/*
Theme Name:         Uni Pro BAUET
Theme URI:          https://pipilikasoft.com/
Description:        A Responsive Theme for BAUET.
Version:            2.0.1
Author:             Pipilika Soft Team
Author URI:         http://pipilikasoft.com/
Text Domain:        university
License:            GNU General Public License v3 or later
License URI:        http://www.gnu.org/licenses/gpl-3.0.html
Domain Path:        /lang/

CONTENTS
-------------
- Global resets
- Global typography & layout rules
- Page styles
- Post styles
- General bits
- Media queries
 
*/

:root {
    --white: #fff;
    --blue: #2c97ea;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e91e63;
    --pink-hover: #fa0559;
    --red: #ed1c24;
    --red-hover: #c5181f;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6f7a7f;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
    box-sizing: border-box;
    color: #1c1f22;
}

body {
    font-family: "Open Sans", sans-serif !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: white;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a,
a:hover {
    text-decoration: none;
}

h3 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 700;
    line-height: 24px;
    color: #656565;
}

h4 {
    font-size: 18px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 700;
    line-height: 24px;
    /*color: #777;*/
}

.bg-white {
    background-color: var(--white);
}

.bg-red {
    background-color: var(--red);
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-20 {
    margin-top: 20px;
}

.bt-radius {
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bt-blue {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.bt-blue:focus,
.bt-blue:hover {
    background-color: #efefef;
    color: #090a0a;
}

.bt-indigo {
    background-color: #6610f2;
}

.bt-pink {
    background-color: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.bt-pink:focus,
.bt-pink:hover {
    background-color: #efefef;
    color: #090a0a;
}

.bt-square {
    display: inline-block;
    padding: 5px 10px;
    border: 2px #49ea2cb8 solid;
    border-radius: 5px;
    color: white;
    background-color: #7e3794;
}

.bt-square:hover {
    background: #efefef;
    color: var(--black);
}

/* .btn {
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    background: 0 0;
    outline: 0!important;
    vertical-align: middle;
} */

/* box-shadow: 0 4px 16px 0 rgba(253,57,122,.15); */
.btn-danger {
    background-color: #183287;
    border-color: #183287;
    color: #fff;
    /*border-radius: 2rem;*/
    transition: all .3s ease 0s;
}

.btn-danger.focus,
.btn-danger:focus {
    background-color: #183287;
    border-color: #183287;
    color: #fff;
}


/* Start Mega menu css for ius */

#menu-top-menu>li {
    color: white;
    background-color: #3f3f78;
    border-right: 2px solid #292967;
}

#menu-top-menu>li>a {
    color: white;
    line-height: 1;
}

#menu-top-menu {
    font-size: 15px;
}


/* End Mega menu css for ius */


/* ======useful style class====   */

.font12 {
    font-size: 12px !important;
}

.float-none {
    float: none !important;
}

.font15 {
    font-size: 15px !important;
}

.pad10 {
    padding-right: 10px;
    padding-left: 10px;
}

.padding-left0 {
    padding-left: 0 !important;
}

.padding-right0 {
    padding-right: 0 !important;
}

.white {
    color: white;
}

.black {
    color: black;
}

.margin0 {
    margin: 0;
}

.padding0 {
    padding: 0;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
@-webkit-keyframes spin {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform:rotate(0deg); }
    100% { transform:rotate(360deg); }
  }
.gray {
    color: gray;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.black {
    color: black;
}

.red {
    color: red !important;
}

.text-left {
    text-align: left;
}

.padding5 {
    padding: 5px;
}
.section-border-top
{
border-top: 8px solid #b0e1b0;
}
.section-distance {
    padding-top: 25px;
    padding-bottom: 40px;
}

.section-background {
    background-color: white;
    background-image: linear-gradient(180deg, rgba(241, 241, 241, 0.25) 5%, rgba(241, 241, 241, 0.25) 5%);
    transition: background .3s, border-radius .3s, opacity .3s;
}

.details-text-style {
    color: #777;
	height: 66px;
    font-size: 13px;
    line-height: normal;
    position: relative;
    display: block;
    padding-top: 12px;
    text-align: justify;
    padding-left: 5px;
    padding-right: 5px;
    max-height: 93px;
    overflow: hidden;
    text-align: center;
}
.section-title
/*===========================*/
.content-box
{
    overflow: auto;
}

.content-box table{
border: 1px solid #ddd;
width: 100%;
max-width: 100%;
margin-bottom: 20px;
background-color: transparent;
border-spacing: 0;
border-collapse: collapse;
text-align: left;
}

.content-box table>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.content-box table>tbody>tr>td, 
.content-box table>tbody>tr>th, 
.content-box table>tfoot>tr>td, 
.content-box table>tfoot>tr>th, 
.content-box table>thead>tr>td, 
.content-box table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 4px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}


/* ---------- */

.bg-img-responsive {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
    z-index: 20;
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn't tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn't move when 
        the content's height is greater than the image's height */
    /* background-attachment: fixed; */
    /* This is what makes the background image rescale based
        on the container's size */
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    /* Set a background color that will be displayed
        while the background image is loading */
    background-color: #d3dee3;
}

.view-all {
    height: auto;
    text-transform: uppercase;
    transition: all .3s ease;
    padding: 6px 24px;
    font-size: 16px;
}

.view-all:hover {
    font-size: 16px;
    transform: translate(0, -4px);
    color: #fff;
    padding: 6px 24px;
    background-color: #fd1361;
    border-color: #fc0758;
    text-decoration: none;
    box-shadow: 0 6px 16px 0 rgba(253, 57, 122, .25) !important;
}


/* ================================================================== */



/* --- search box ----   */

.input-group input {
    height: 25px !important;
    border-radius: 16px !important;
    background: rgba(251, 252, 252, .48);
    box-shadow: none;
    border: 2px solid #1B6BA5;
}

.search-input-group {
    width: 66%;
    float: right;
}

.search-btn {
    display: none;
    text-align: right;
    border-radius: 0 18px 18px 0;
    background: rgba(251, 252, 252, .48);
}

.search-btn button {
    font-size: 9px;
    padding: 3px 8px;
    margin-right: 3px;
    border: none;
    border-radius: 10px !important;
}

.search-btn button:hover {
    background: #09f;
    color: #fff;
}

.f-title
{
     background-color: white;
    text-align: center;
    border-top: 1px solid #2f5fca;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    font-size: 14px;
    font-weight: bold;
}


/* ==== menu style start ======  */

.navbar-header {
    width: 100%;
}

.main-menu {
    box-shadow: -1px -1px 10px #c4c6c8;
    z-index: 300;
    background-color: rgba(28, 28, 94, 0.94);
    border-radius: 3px !important;
}

.navbar {
    position: relative;
    min-height: 20px;
    border: 1px solid transparent;
}


/* ----Scrol Style---- */

.tab-content::-webkit-scrollbar,
iframe::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar {
    width: 12px;
    scrollbar-face-color: #1E3271;
    scrollbar-track-color: #1E3271;
    scrollbar-arrow-color: #ffffff;
    scrollbar-highlight-color: #1E3271;
    scrollbar-shadow-color: #1E3271;
    scrollbar-3dlight-color: #ffebcd;
    scrollbar-darkshadow-color: #8b0000;
}

::-webkit-scrollbar {
    width: 15px;
    scrollbar-face-color: #ff8c00;
    scrollbar-track-color: #fff8dc;
    scrollbar-arrow-color: #ffffff;
    scrollbar-highlight-color: #fff8dc;
    scrollbar-shadow-color: #d2691e;
    scrollbar-3dlight-color: #ffebcd;
    scrollbar-darkshadow-color: #8b0000;
}

::-webkit-scrollbar-thumb {
    background-color: #3d425a;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #1E3271;
}

::-webkit-scrollbar-corner {
    background-color: #F5F5F5;
}


/* =======  main slider start  & notice section ======== */

#main-slider {
    /* background-color: white;
    background-image: linear-gradient(180deg, rgba(241, 241, 241, .25) 5%, rgba(241, 241, 241, 0.25) 5%);
    opacity: .92;
    transition: background .3s, border-radius .3s, opacity .3s; */
}

#main-slider div #myCarousel {
    box-shadow: 0px 3px 20px 2px rgba(70, 71, 72, 0.30);
        box-shadow: 0px 10px 15px -5px rgba(70, 71, 72, 0.18);
}


/* ============================================================================== */


/* ======  notice ====== */

.notice-section {
    z-index: 800;
    border-radius: 3px;
    background: #fff;
    /* -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 3px 20px 2px rgba(70, 71, 72, 0.30);
    box-shadow: 0px 10px 15px -5px rgba(70, 71, 72, 0.18);
}

/*.notice-date {*/
/*    display: block;*/
/*    width: 65px;*/
/*    background: #efe7ffd6;*/
/*    text-align: center;*/
/*    padding: 10px 0;*/
/*    line-height: 11px;*/
/*    float: left;*/
/*    font-weight: 700;*/
/*    margin-right: 4px;*/
/*    font-size: 15px;*/
/*    border-radius: 28%;*/
/*}*/

.notice-date {
    display: block;
    width: 62px;
    background: #efe7ffd6;
    text-align: center;
    /* padding: 10px 0; */
    line-height: 1;
    float: left;
    font-weight: 700;
    margin-right: 4px;
    font-size: 14px;
    /* border-radius: 28%; */
    height: 71px;
    background: #0077ca;
    color: #fff;
    padding: 0.75rem .9375rem;
    padding-top: 8px;
    text-transform: uppercase;
    font-family: Arial,Helvetica,sans-serif;
    
    background: rgba(77,88,177,.9);
    background: -webkit-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: -o-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: -moz-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
}
.notice-section .notice-post-list:nth-child(even) .notice-date{
        background: #f6b43c;
    background: -webkit-linear-gradient(left,#f6b43c,#f8c76d);
    background: -o-linear-gradient(left,#f6b43c,#f8c76d);
    background: -moz-linear-gradient(left,#f6b43c,#f8c76d);
    background: linear-gradient(left,#f6b43c,#f8c76d);
}


.notice-date .line1
{
    color: white;
    margin-bottom: 4.5px;
    font-size: 28px;
    font-weight: 100;
    
    color: white;
    margin-bottom: 3px;
    font-size: 23px;
    font-weight: 100;
   
}
.notice-date .line2
{
    margin-bottom: 0px;
    font-size: 13px;
    text-align: center;
    color: white!important;
    /*font-weight: 100;*/
    
}
.notice-date-day {
    font-size: 15px;
    line-height: 0;
}

.notice-month-year {
    font-size: 11px;
        color: #ffffff;
}

.notice-title {
    padding: 10px;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 3px 3px 0px 0px;
    margin-bottom: 0px;
}

.notice-tab-style {
    position: relative;
    z-index: 1;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.18), 0 3px 12px 0 rgba(0, 0, 0, 0.15);
    background-color: #2d324c;
    background-color: #0a4574;
    background: -webkit-linear-gradient(left,rgb(24 50 135),rgb(50 89 218));
}

.nav .nav-item .tab1 {
    position: relative;
    display: block;
    padding: 7px 5px;
    border-style: none !important;
    color: white;
  
    background-color: #337ab7;
}

.nav .nav-item .tab2 {
    position: relative;
    display: block;
    padding: 7px 15px;
    border-style: none !important;
    color: white;
    background-color: #273a6a;
}

.nav .nav-item .tab3 {
    position: relative;
    display: block;
    padding: 7px 5px;
    border-style: none !important;
    border-style: none !important;
    color: white;
    background-color: #3f50b3;
}

.nav .nav-item i {
    font-size: 15px;
    color: white;
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    color: white;
    font-size: 15px;
    background-color: #0f5f04;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: #eeeeee6e;
    color: white;
}

.nav-tabs.nav-justified {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.notice-section .tab-content>.tab-pane {
   background: #dadada;
}

.notice-section .tab-content {
    height: 325px;
    overflow-y: auto;
}

.notice-post-list {
    padding: 7px 10px 7px 10px;
    /*border-bottom: 2px solid #ebebeb;*/
    transition: 400ms;
    padding-bottom:0;
    
}

.notice-post-list table {
    background-color: #ffffff;
    width: 100%;
}

.notice-post-list:hover {
    /*background: #f9f9f9;*/
}

.notice-post-list-meta-date {
    color: #e0a7a7;
    font-size: 14px;
}

.notice-post-list-meta-date i {
    margin-right: 10px;
}

.notice-post-list-title {
    padding-left: 5px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    max-height: 50px;
    overflow: hidden;
    line-height: 1.5;
   
}

.notice-post-list-title a {
    color: #4545ac;
    color: #151515;
    font-weight: bold;
     text-align:left;
}

.notice-post-list-title a:hover {
    color: var(--red-hover);
}

.see-all-notice-btn {
    margin: 0px 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: #3f51b5;
    padding: 0px;
}

.see-all-notice-btn:hover {
    color: red;
}

.about-institute {
    padding-top: 65px !important;
}

.title-leftborder {
    position: relative;
    padding-left: 12px;
}

.title-leftborder:before {
    position: absolute;
    content: "";
    left: 0;
    width: 4px;
    height: 18px;
    top: 50%;
    margin-top: -9px;
    background: var(--red);
}

.title-leftborder .thm-titlecustomstyle {
    font-size: 16px;
    margin: 0;
    position: relative;
    padding: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.feature-img-area-default {
    overflow: hidden;
}

.feature-img-area-default img {
    -webkit-transition: .4s;
    transition: .4s;
}

.feature-img-area-default:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/* =================messages-section Start=========================== */

.messages-background-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.messages-box {
    background-color: #fff;
    padding: 30px 15px;
    transition: .3s;
    border-radius: 3px;
    height: 365px;
}

.messages-box,
.single .post-navigation {
    box-shadow: 0px 0px 60px -20px rgba(10, 10, 10, 0.2);
}

.messages-box .member-thumb {
    margin: 0 auto 15px;
    width: 140px;
    height: 145px;
    position: relative;
    border-radius: 50%;
}

.messages-box .member-thumb img {
    border-radius: 50%;
   
    border: 5px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.section-title-small {
    line-height: 24px;
    color: #516576;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}

.section-bar-small {
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    width: 60px;
    max-width: 60px;
    height: 4px !important;
    background-color: red;
    height: 3px !important;
    background-color: #5864bb;
}

.margin-top25 {
    margin-top: 25px;
}

.messages-box:hover {
    box-shadow: 0 0 30px 0 rgba(10, 10, 10, 0.2);
}

/*.messages-box:hover .member-thumb:before {*/
/*    opacity: 1;*/
/*    filter: alpha(opacity=100);*/
/*    visibility: visible;*/
/*    -webkit-transform: scale(1);*/
/*    transform: scale(1);*/
/*}*/

.messages-box .member-thumb:before {
    border: 5px solid;
    content: "";
    height: auto;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    bottom: -9px;
    left: -9px;
    right: -9px;
    top: -9px;
    visibility: hidden;
    width: auto;
    transform: scale(0);
    transition: .3s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border-color: #0062cc;
}

.messages-box .member-desc {
    padding-top: 20px;
}

.messages-box .member-desc h3 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
}

/*.messages-box .member-desc span {*/
/*    color: #777;*/
/*    font-size: 15px;*/
/*    letter-spacing: 1px;*/
/*    line-height: normal;*/
/*    padding-bottom: 10px;*/
/*    position: relative;*/
/*    display: block;*/
/*}*/

.messages-box .member-desc .white {
    padding-top: 15px;
}


/* =============  news & events  start ============= */



.img-scale figure {
    overflow: hidden;
    margin: 0px;
    border-radius: 3px;
    border-bottom: 5px solid #4e58b2;
    background-color: black;
   
}
.img-scale img {
   transform: scale(1,1);
    transition: all .3s;
}

.img-scale:hover img {
    -webkit-transform: scale(1.3) !important;
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.news-event .col-md-3:nth-child(even) .img-scale figure
{
     border-bottom: 5px solid #f8c76d;
}

.img-scale {
    box-shadow: 0px 10px 15px -5px rgba(70, 71, 72, 0.18);
    border-radius: 3px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 13px 15px 15px 0 rgba(105,105,105,.08);
     transition: all .3s;
     border: 1px solid #f8c76d6e;
}
.img-scale:hover {
      box-shadow: 3px 4px 15px 0 rgba(105,105,105,.08);
}


.news-post-date {
    color: #e0a7a7;
    font-size: 14px;
}

.latest__block-post {
    padding: 10px;
    position: relative;
    border-radius: 3px;
}

.news-innerbox-title {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-date {
    position: absolute;
    top: -21px;
    right: 0px;
    padding: 5px;
    padding-top: 0;
    padding-bottom: 0;
    background: #fbb908;
    color: #fff;
    font-size: 12px;
    background: rgba(77,88,177,.9);
    background: -webkit-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: -o-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: -moz-linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
    background: linear-gradient(left,rgba(77,88,177,.9),rgba(80,98,217,.9));
}

.news-event .col-md-3:nth-child(even) .event-date{
    background: #f6b43c;
    background: -webkit-linear-gradient(left,#f6b43c,#f8c76d);
    background: -o-linear-gradient(left,#f6b43c,#f8c76d);
    background: -moz-linear-gradient(left,#f6b43c,#f8c76d);
    background: linear-gradient(left,#f6b43c,#f8c76d);
}

.img-scale .news-innerbox-title a {
    color: #292929;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.333333;
}

.latest__block .more_btn__block {
    margin-top: 5px;
}
.section-title-style
{
    position: relative;
    z-index: 1;
    text-align: center;
}
.section-title-style h2{
    display: inline-block;
    font-family: "Open Sans", sans-serif !important;
    text-transform: capitalize;
    text-align: center;
    font-size: 38px;
    line-height: 50px;
    font-weight: 700;
    color: #222222;
    font-size: 40px;
    font-weight: 500;
    position: relative;
    width: auto;
    padding: 0 80px;
}

 /* .section-title-style h2::before
    {
        color: #ffcc21;
        color: #c8c8c8;
        position: absolute;
        content: "";
        display: block;
        left: 0;
        top: 0;
        top: 50%;
        z-index: -1;
        border-style: solid;
        border-width: 2px;
        height: 2px;
        width: 64px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
   }
    .section-title-style h2::after 
    {
        color: #ffcc21;
         color: #c8c8c8;
        position: absolute;
        content: "";
        display: block;
        right: 0;
        top: 0;
        top: 50%;
        z-index: -1;
        border-style: solid;
        border-width: 2px;
        height: 2px;
        width: 64px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    } */
    .section-title-style h2::before
    {
        /* content: url(assets/images/sectiont-itle-before-after-line.png); */
        content: url(assets/images/section-title-line.png);
        display: block;
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        top: 50%;
        z-index: -1;
        width: 64px;
        -webkit-transform: translateY(-32%) rotate(180deg);
        transform: translateY(-32%) rotate(180deg);

   }
    .section-title-style h2::after 
    {
        content: url(assets/images/section-title-line.png);
        display: block;
        transform:translateY(-50%);
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        top: 50%;
        z-index: -1;
        width: 64px;
        -webkit-transform: translateY(-62%);
        transform: translateY(-62%);
    }

.latest__block-post .black {
    line-height: 1.7;
}

.tl-latest-post .latest-post-media {
    position: relative;
    margin-bottom: 17px;
    overflow: hidden;
}

.tl-latest-post .post-meta {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    background: #ffbd0a;
    padding: 4px 20px;
    transition: all 0.3s;
}

.tl-latest-post .post-meta .post-author {
    color: #fff;
}

.tl-latest-post .post-meta .post-author i {
    margin-right: 7px;
}

.tl-latest-post .post-date {
    margin-bottom: 15px;
}

.tl-latest-post .post-date .post-time {
    margin-right: 20px;
}

.tl-latest-post .post-date span,
.tl-latest-post .post-date a {
    color: #b4b4b4;
}

.tl-latest-post .post-date span i {
    font-size: 14px;
    margin-right: 5px;
}

.tl-latest-post .post-date span,
.tl-latest-post .post-date a {
    color: #b4b4b4;
}

.tl-latest-post .post-date span i {
    font-size: 14px;
    margin-right: 5px;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0 solid;
}

.tl-latest-post .post-info .post-title {
    margin-bottom: 15px;
}

.tl-latest-post .post-info .post-title a {
    color: #494753;
    line-height: 32px;
    transition: all 0.3s;
}

.tl-latest-post .post-info .readmore-btn {
    margin-top: 1px;
}



.readmore-btn {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    color: #494753;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/* ============   search course ========== */

.search-program {
    background: #0069d9cc;
    position: relative;
}

.search-program {
    display: block;
    top: 0px;
    z-index: 1;
    /*background-image: url(assets/images/search-course-bg-img.jpg);*/
     /*background-image: url(https://bauet.ac.bd/wp-content/uploads/2020/11/image118.jpg);*/
     background-image: url(https://bauet.ac.bd/wp-content/uploads/2020/11/image108-scaled.jpg);
     
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.bg-layer {
    background-color: #005ec1;
    background-color: #00278a4f;
    opacity: 0.8;
    padding: 45px;
}

.search-form-style .search-dropdown .form-control {
    border: 2px solid #b7b7b7;
    text-align: left;
    background-color: white;
    border-radius: 20px;
    height: 35px;
    width: 50%;
    margin: 0 auto;
}

.search-program-style {
    text-align: center;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

.search-program-style h2 {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: white;
}

.search-program-style h4 {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 20px;
    color: white;
}

.search-form-style {
    padding-bottom: 70px;
    width: 100%;
    text-align: center;
}

.search-form-style .program-filter-box {
    text-align: center;
    width: 100%;
}

.program-filter-box .filter-box-inner {
    display: inline-block;
    clear: both;
}

.filter-box-inner input {
    padding: 6px 60px;
    background: #fff;
    border: 1px;
    width: 100%;
    border-radius: 20px;
}


/* ------------ offer course -------- */

.offer-pro-box {
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    list-style: none;
    margin: 10px 0px;
    transition: .4s;
    border-bottom: 5px solid #5f5ef1;
}

.offer-pro-img-box {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2);
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    min-height: 295px;
}

.offer-pro-detail-btn {
    opacity: 0;
    backface-visibility: hidden;
    color: #fff;
    box-sizing: border-box;
    justify-content: center;
    padding: 5px;
    width: 100%;
    height: 100%;
    align-items: center;
    -webkit-box-pack: center;
    flex-direction: column;
    -webkit-box-align: center;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    position: absolute;
    z-index: 3;
    top: 0%;
    left: 0;
    right: 0;
    list-style: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.offer-pro-detail-btn .btn-position {
    padding: 12px 32px;
}

.offer-pro-detail-btn .detail-btn-style {
    background-color: #fd397a;
    border-color: #fd397a;
    border-color: transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    margin-right: 0;
    box-shadow: none;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 15px;
}

.offer-pro-detail-btn .detail-btn-style:hover {
    transform: translate(0, -20px);
    color: #fff;
    background-color: #fd1361;
    border-color: #fc0758;
    text-decoration: none;
    box-shadow: 0 6px 16px 0 rgba(253, 57, 122, .25) !important;
}

.offer-pro-box div:hover {
    opacity: 1 !important;
    filter: alpha(opacity=1);
    transition: all 0.9s;
}

.offer-pro-box div:hover a {
    opacity: 1 !important;
    filter: alpha(opacity=1);
    transform: translate(0, -20px);
    transition: all 0.9s;
}

.price-rating-box {
    z-index: 2;
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0211588f;
    padding: 10px 10px 10px 10px;
    color: #fff;
    width: 100%;
    /*display: flex;*/
    justify-content: space-between;
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0,transparent),to(#021158));
    background: linear-gradient(to bottom,transparent 0,#021158 100%);
}

.program-price {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    list-style: none;
}

.program-price .price {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.star-pro-review {
    list-style: none;
    color: #fff;
    box-sizing: border-box;
    display: inline-block;
    position: relative;
}

.review-stars {
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style: none;
    color: #d3ced2;
    font-size: 12px;
}

.review-stars li {
    width: 13px;
    height: 16px;
    float: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    color: #fff;
}

.star-pro-review span {
    font-size: 13px;
    text-align: left;
    line-height: normal;
    color: white;
    display: block;
}
.offer-pro-instructor {
    color: inherit;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 0px;
    font-size: 15px;
}

.offer-pro-bottom-box {
    border-bottom: 3px solid red;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 1px 15px 10px 15px;
    background: #fff;
    box-shadow: 0px 0px 60px -6px rgba(10, 10, 10, 0.2);
    overflow: hidden;
}

.offer-pro-bottom-box .offer-pro-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 0;
    height: 50px;
    text-overflow: ellipsis;
    box-sizing: border-box;
    color: #4267b2;
    text-align: center;
}

.offer-pro-info {
    display: flex;
    justify-content: space-between;
    opacity: 0.7;
    box-sizing: border-box;
}




/* ============ counter streap ===== */

.counter-section:after {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    z-index: 1;
    content: "";
    background: url(assets/images/strep-bg1.jpg) no-repeat center center / cover;
    opacity: 0.1;
}

.counter-title {
    padding-bottom: 40px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 5px;
}

.counter-header1 {
    display: inline-block;
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

.counter-header2 {
    font-size: 36px;
    color: white;
    display: inline-block;
    background-color: #9f050599;
    padding: 5px 10px;
    border-radius: 5px;
    padding-bottom: 12px;
}

div .our-strength {
    display: block;
    text-align: center;
}

.our-strength .col-md-3 {
    display: inline-block;
    color: #fff;
    text-align: center;
    border-right: 1px solid white;
}

.our-strength .col-md-3 .icon {
    display: block;
    padding-bottom: 20px;
}

.our-strength .col-md-3 .icon i {
    padding-bottom: 12px;
    color: white;
    font-size: 60px;
    background-color: #1249a5b5;
    padding: 6px;
    border-radius: 5px;
}

.our-strength .col-md-3 .counter {
      display: inline-block;
    font-size: 40px;
    text-transform: uppercase;
    color: white;
    padding-top: 9px;
}

.our-strength .col-md-3 .title {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    color: white;
    background-color: #070747f5;
    border-radius: 25px;
    padding: 7px;
}

.streap-bg-img {
    /*background-image: url(assets/images/strep-bg1.jpg);*/
    background-image: url(https://bauet.ac.bd/wp-content/uploads/2020/02/20190724_181044-scaled.jpg);
    
    background-size: cover;
    background-position: top right;
    background-attachment: fixed;
    padding: 75px 0 65px;
    padding: 5px 0 12px;
    border-bottom: 9px solid #60b560;
}


/* ============================================================================= */


/*  =====  message from the BOT  ====  */

.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}


/* =============== */

.prev {
    position: relative;
    flex: 0 1 auto;
    background-color: #fd397a;
}

.prev i {
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
    font-size: 20px;
    color: white;
}

.next {
    position: relative;
    flex: 0 1 auto;
    background-color: #fd397a;
}

.next i {
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
    font-size: 20px;
    color: white;
}

.btn-seperator {
    width: 2px;
    display: flex;
}

#bot .bot-desc {
    font-size: 18px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    margin-top: 20px;
}

.bot-box-section {
    position: relative;
    border-radius: 3px;
    padding: 0;
    background: transparent;
    box-shadow: 0px 10px 15px -5px rgba(70, 71, 72, 0.18);
}

.bot-box-section-style {
    position: relative;
    box-sizing: border-box;
    direction: ltr !important;
    width: 100%;
    overflow: hidden;
    height: auto;
    transition: height .5s ease-in-out;
    text-align: center;
    left: 0px;
    display: block;
    background-color: white;
    border-radius: 2px;
}

.bot-box-section-style img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .8s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.bot-box-section-style:hover img {
    transform: scale(1.2);
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.view-btn {
    display: inline-block;
    transition: all .3s ease;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #fd3997d4 !important;
}

.bot-box-section .text-center {
    transition: all .3s ease-in-out;
}

.author-header {
    padding: 12px 9px 82px;
    background: #0069d9;
    color: #fff;
    /*white-space: nowrap;*/
}


.author-header .bot-name {
    font-size: 15px;
    margin-top: 0px;
    overflow: hidden;
    padding: 0px;
    height: 51px;
}

.bot-box-section-style .author-avatar {
    margin: -77px 0 0;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #8a9db1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.author-content {
    padding: 10px 5px;
    font-weight: 600;
    line-height: 0;
    font-size: 13.5px;
    font-style: italic;
    overflow: hidden;
    white-space: nowrap;
}

.desc-style {
    color: #777;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: normal;
    padding: 15px 0px;
    position: relative;
    display: block;
    text-align: center;
}

.bot-social {
    margin: 5px 5px;
}

.bot-social .hidden {
    display: none !important;
}

.bot-social a {
    margin: 0 12px;
}

.author-content .btn {
    padding-left: 0;
    padding-right: 0;
}


/* ============================================================================= */


/* -----------  apply now  ----------  */

.apply-now {
    background-image: url(assets/images/applynow.jpg);
    background-position: center center;
    background-size: cover;
    /* min-height: 570px; */
}

.applynow-bg {
    background: rgba(0, 0, 0, 0.55);
    left: 0;
    top: 0;
    z-index: 0;
    position: relative;
}

.apply-now .applynow-title-small {
    font-family: 'Roboto';
    color: #fff;
    font-weight: bolder;
    line-height: 30px;
    text-transform: uppercase;
    margin: 0;
    padding-top: 170px;
    font-size: 24px;
}

.apply-now .applynow-title-small span {
    color: #1e73be;
    font-family: 'Roboto';
}

.applynow-title-large {
    color: #fff;
    font-size: 72px;
    line-height: 75px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 2px 0 10px;
    font-family: 'Roboto Slab';
}

.apply-now .apply-now-form {
    margin: 80px 0;
    background: #fff;
    position: relative;
    max-width: 400px;
}

.apply-now-form .applynow-form-title-style>p {
    position: relative;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    overflow: hidden;
    color: #fff;
    padding: 25px 30px 10px 30px;
}

.apply-now-form .applynow-form-title-style {
    background-color: #1e73be;
    border-bottom-left-radius: 101px;
    border-bottom-right-radius: 101px;
    height: auto;
    max-width: 400px;
}

.main-form {
    padding: 40px 50px;
}

.main-form .form-control {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 12px;
    font-size: 12px;
    line-height: 1.42857143;
    background-image: none;
    border: 1px solid #585858;
    border-radius: 0;
    color: black !important;
    box-shadow: none;
}

.main-form .form-control:focus {
    border-color: #1e73be;
    outline: 0;
    text-decoration: none;
    text-shadow: none;
    font-family: "Open Sans", sans-serif !important;
}

.submit-btn {
    width: 100%;
    text-align: center;
    color: #fff;
    background: #1e73be;
    border-radius: 0px !important;
    padding: 7px 25px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}


/* ===============   footer start  ====================== */

#footer-section {
    background-color: #1c3459;
    min-height: 300px;
    margin-top: -40px;
}

#footer-section .footer-logo-style {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-box-title {
    z-index: 1;
    position: relative;
    margin-bottom: 20px;
    color: #fff;
}

#footer-section .footer-box-title .footer-title-style {
    display: block;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
    text-align: left;
    font-size: 22px;
}

.footer-underline {
    background-color: #fd397a;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -2;
    width: 60px;
    height: 3px;
}

.footer-about-des {
    text-align: center;
    font-size: 15px;
    color: #ffffffdb;
    line-height: 1.5;
}

.footer-menu {
    margin-bottom: 8px;
    color: #ffffffdb;
}

.footer-menu-style {
    color: white;
}

.footer-menu .footer-menu-style:hover {
    color: #ffffffa6;
    font-size: 16px;
}

.footer-contact-icon i {
    width: 18px;
    font-size: 18px;
}

.footer-adress {
    padding-left: 10px;
    color: #ffffffdb;
    font-size: 15px;
}

.copyright {
    color: #ffffffa6;
    font-size: 15px;
}

.copyright>span {
    color: #c9e6ff;
}

.developer-info {
    color: #ffffffa6;
}

#footer-section .section-distance {
    padding-bottom: 15px;
}

.developer-info>a:hover {
    color: white !important;
    font-size: 16px;
}


/* ======== modal style ======= */

.modal .modal-content .content-body {
    height: 75vh;
    overflow: auto;
}

.modal .modal-content .content-body img {
    float: left;
    margin-right: 25px;
}


/* =================================================================================== */


/*  <!-- contact page start -->  */

#contact-page textarea.form-control {
    height: 100px !important;
}

#contact-page .contact-heading {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 0px;
}

#contact-page .contact-heading .sub-heading {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;
    color: #999;
}

#contact-page .contact-heading .text-left .line {
    left: 0;
    right: auto;
    background-color: #333;
}

#contact-page .contact-icon {
    text-transform: none;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    margin: 0;
}


/*<!-- contact page end -->*/


/*   ========== single-page =======  */

#single-page.left-section {
    margin-top: 20px;
    display: block;
    box-sizing: border-box;
}

.single-post-title {
    color: #444;
    line-height: 1.2;
    font-size: 20px;
    margin-top: 0;
}

#single-page .single-post-time-date {
    padding-bottom: 8px;
    border-bottom: 2px solid #151923fa;
    margin-bottom: 20px;
}

#single-page .single-post-time-date i {
    font-size: 15px;
    color: #1e73be;
    margin: 5px;
}

.post-content {
    font-size: 14px;
    font-weight: normal;
    color: #6B6B6B;
    margin-top: 10px;
    line-height: 1.5;
    text-align: justify;
}

.share-section {
    clear: both;
}

.post-content .share-title {
    margin: 0 0 1em;
    display: inline-block;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 700;
    color: #1e73be;
}

.share-icon-section ul {
    padding: 0 !important;
    margin: 0 0 .7em !important;
    list-style: none !important;
}

.share-icon-section ul li {
    margin: 5px 5px 5px 0px;
    padding: 0;
    display: inline-block;
}

.share-button {
    text-decoration: none !important;
    display: inline-block;
    font-size: 12px;
    font-family: open sans, sans-serif;
    font-weight: 400;
    border-radius: 3px;
    color: #656565 !important;
    background: #f8f8f8;
    border: 1px solid #ccc;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    text-shadow: none;
    line-height: 20px;
    padding: 1px 5px 1px 5px;
    transition: all 0.2s;
}

.share-button span {
    content: '\f203';
    margin: 3px;
    vertical-align: top;
    text-align: center;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}

.share-button i {
    position: relative;
    top: 2px;
    background-color: #1e73be !important;
    padding: 3px;
    height: auto;
    width: 20px;
    text-align: center;
    color: white;
}

.share-icon-section ul li a:hover {
    background-color: #d3d3d375;
    border: 1px solid #999;
}

.share-button .share-count {
    background: #1e73be;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-size: 11px;
    padding: 2px 5px;
    line-height: 1;
    margin: 0px;
}

#single-page .single-search {
    margin: 5px 0px;
}

.search-reader {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

#single-page .single-search .form-control {
    padding: 3px 10px;
    color: #505050;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border: 1px solid #E8E8E8;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    background-color: #fffffff5;
    font-size: 13px;
    line-height: 1.428571;
}

#single-page .single-search .search-btn {
    color: #FFF;
    background-color: #1FA67A;
    border-color: #1FA67A;
    margin: 0;
}

#single-page .single-search .search-query:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}


/* ----------- */

.single-tab-section {
    margin: 10px 0px;
}

.single-tab-section ul {
    padding: 0;
}

.content {
    margin: 0px 10px;
}

#single-page .single-tab-section .nav-tabs {
    padding: 0;
}

#single-page .single-tab-section .nav ul li {
    list-style: none;
    float: left;
    margin-bottom: -1px;
    position: relative;
    display: block;
}

#single-page .single-tab-section .nav table tr :hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.single-tab-section .nav-tabs>li>div {
    border-bottom-color: transparent;
    text-transform: uppercase;
}

.tab-comment {
    font-size: 18px;
    padding: 0 10px;
}

#popular-posts tr {
    border-bottom: 1px solid #ddd;
    height: 80px;
}

.single-tab-des {
    border: 1px solid #E8E8E8;
    border-top: none;
    display: block;
    padding: 10px 10px;
}

.single-tab-des table {
    overflow: hidden;
    list-style: none;
    margin: 0px;
    padding: 5px;
}

.single-tab-des .single-tab-thumb {
    float: left;
    width: 70px;
    height: 70px;
    padding: 3px;
    margin-top: 7px;
}

.single-page-date {
    font-size: 12px;
    line-height: 1;
    color: #11111b;
    font-style: italic;
}

.single-tab-des .tab-entry {
    font-size: 15px;
    display: block;
    max-height: 40px;
    line-height: 1.2;
    overflow: hidden;
    color: black;
}


/* =================================================================================== */


/*   =====   Archive-page   ======  */

.inner-bg {
    background: url(assets/images/archive-page-header.jpg) no-repeat center top / cover;
    min-height: 240px;
    padding-top: 50px;
    display: block;
    visibility: visible;
}

.inner-bg .page-header {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 0px;
    border-bottom: none;
}

.page-title {
    display: block;
    padding-bottom: 15px;
    font-size: 50px;
    color: #24353b;
    text-transform: uppercase;
    font-weight: 600;
}

.inner-bg .page-header p {
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #5f6465;
}

.page-content-row {
    margin: 25px 0px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    border-radius: 3px;
    padding: 5px;
    -webkit-transition: 400ms;
    box-shadow: 0 12px 20px rgba(199, 199, 199, 0.31);
}

.page-content-row:hover {
    -webkit-transition: 400ms;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.page-content-row .page-content-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 0 !important;
    color: inherit;
    box-shadow: none;
    text-decoration: none;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    padding: 10px 5px;
}

.page-event-date {
    padding: 20px 12px;
    text-align: center;
}

.page-event-day {
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
}

.page-event-month {
    font-size: 13px;
    margin-bottom: 3px;
    text-transform: uppercase;
    color: #aeaeae;
    letter-spacing: 0;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
}

.page-event-year {
    font-weight: 600;
    letter-spacing: 2px;
    background-color: #e6e6e6c4;
    padding: 2px 7px 2px 7px;
    border-radius: 3px;
    display: inline;
    margin: 0 auto;
}

.page-event-details {
    overflow: hidden;
    position: relative;
}

.page-event-details .img-style {
    display: block;
    border-radius: 100%;
    max-width: 140px;
    max-height: 140px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    margin: 0 auto;
}

.page-event-title {
    display: inline-block;
    color: #303d48;
    margin-top: 10px;
    margin-bottom: 0px;
}

.page-event-venue {
    color: blue;
    position: relative;
    font-weight: 600;
    margin: 3px 0px;
}

.page-event-venue i {
    color: #E91E63;
}

.page-content-details>span {
    text-align: justify;
    line-height: 1.5;
}

.page-social-icon {
    padding: 15px 5px;
}

.page-social-icon ul {
    list-style: none;
    text-align: center;
    font-size: 25px;
    padding: 0;
}

.page-social-icon ul li {
    margin: 5px 0px;
}

.page-event-details img {
    -webkit-transition: all .2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.page-event-details:hover img {
    transform: scale(0.9);
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}


/* =========================================================== */


/* ========== pageing ============ */

.page-navigation {
    text-align: center;
    margin: 30px 0px;
}

.page-navigation span.current {
    color: black;
}

.page-navigation span,
.page-navigation a {
    font-size: 15px;
    color: #a1a1a5;
    display: inline-block;
    margin: 5px;
}

.page-navigation span,
.page-navigation a i {
    font-size: 15px;
    color: #a1a1a5;
    display: inline-block;
    margin: 5px;
}


/* ======================================================================== */


/* ============  search  ================= */

#search-section .page-header p {
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #38393a;
    margin: 0 auto;
}

.search-details {
    overflow: hidden;
    position: relative;
}

.page-details-link {
    color: blue;
    position: relative;
    font-weight: 600;
    margin: 3px 0px;
}

.page-details-link i {
    color: #E91E63;
}

.search-page-content {
    border-bottom: 0 !important;
    color: inherit;
    box-shadow: none;
    text-decoration: none;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    padding: 5px 30px;
}

.search-details i {
    padding: 0px 5px;
}


/* =========================================== */


/* ========== profile ======== */

.profile-details-inner {
    position: relative;
    max-width: 300px;
}

.profile-details-inner img {
    border-radius: 4px;
    transition: .3s;
}

.profile-details-inner .profile-mail:hover {
    transform: scale(1);
    color: white;
}

.profile-details-inner .profile-mail a:hover {
    font-size: 13px;
    color: white;
}

.profile-details-inner .profile-mail {
    background-color: #1e73be;
    text-align: center;
    border-radius: 0 0 4px 4px;
    position: relative;
    bottom: 25px;
    width: 100%;
    font-size: 12px;
    color: #ffffff;
}

.profile-panel .profile-name h4 {
    color: #333;
    padding: 5px;
    line-height: 0;
}

.profile-panel .profile-name a.links {
    color: #999999;
    font-size: 16px;
    transition: all .3s;
}

.profile-name .profile-dept {
    color: #444444;
    font-size: 14px;
    transition: all .3s;
    font-style: italic;
}

.social-links {
    text-align: center;
}

.social-links ul {
    list-style: none;
    margin: 0;
    line-height: 1;
}

.social-links ul li {
    display: inline-block;
    padding: 5px;
    margin: 5px;
}

.profile-description {
    padding: 40px;
    background-color: white;
}

.my-details-title p {
    font-size: 15px;
    color: black;
}

.qualification {
    color: black;
}

.teaching-interest {
    color: black;
}

.my-education tr {
    color: black;
    border: 1px solid #0a51a1;
    border-style: dotted;
    padding: 5px;
}

.my-education tr td {
    color: black;
    border: 1px solid #0a51a1;
    border-style: dotted;
    padding: 5px;
}

.my-education tr th {
    color: black;
    border: 1px solid #0a51a1;
    padding: 5px;
    text-align: center;
}

.experience tr {
    color: black;
    border: 1px solid #0a51a1;
    border-style: dotted;
    padding: 5px;
}

.experience tr td {
    color: black;
    border: 1px solid #0a51a1;
    border-style: dotted;
    padding: 5px;
}

.experience tr th {
    color: black;
    border: 1px solid #0a51a1;
    padding: 5px;
    text-align: center;
}


/* ============================================================= */


/* ======= faculty list ========== */

#faculty-archive .author-dept {
    padding: 10px 5px;
    line-height: 0;
    font-size: 15px;
    overflow: hidden;
}


/* ===================================================================== */


/* ========== notice archive  =================== */

#notice-archive .page-content-div .page-event-details {
    padding-top: 10px !important;
}


/* ===================================================================== */


/* ========== deptmantal site  =================== */


/* ============================================================================ */


/* dept slider */

#myCarousel a .myslider-carousel {
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    top: 50%;
    z-index: 5;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
    color: white;
}

#dept-slider .carousel .carousel-inner {
    height: 30vw;
}

#dept-slider #myCarousel .carousel-inner .item {
    height: 100%;
}

.dept-section-title {
    font-family: "Open Sans", sans-serif !important;
    text-transform: uppercase;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #303d48;
}

.carousel-caption .slider-caption {
    text-shadow: -2px 2px 2px #ff2222;
    color: white;
}


/* dept notice */

#dept-notice .messages-box .member-desc span {
    font-size: 12px;
    padding-bottom: 0px;
    line-height: 1.3;
    overflow: hidden;
    height: 48px;
}

#dept-notice .messages-box .member-desc {
    padding: 0;
}

#dept-notice .messages-box .member-thumb {
    border: 4px solid #2d324c;
    padding: 2px;
    width: 165px;
    height: 165px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.61);
}

#dept-notice .messages-box {
    padding: 15px 10px;
    border-radius: 3px;
    height: 400px;
}

#dept-notice .messages-box .btn-danger {
    line-height: 1.1;
}

#dept-notice .messages-box .designation {
    margin: 0 5px 12px 5px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #3f3f78;
}


/*  dept news & events */

#dept-news-event .latest__block-post .event-date {
    top: -12px;
    left: 0px;
    padding: 4px;
    font-size: 10px;
    line-height: 1.7;
}

#dept-news-event .container .latest__block-post .details-text-style {
    padding-top: 8px;
    font-size: 12px;
    max-height: 62px;
    text-align: center;
}

#dept-news-event .latest__block-post .news-innerbox-title {
    line-height: 1.4;
    font-size: 12px;
}

#dept-news-event .latest__block-post .text-center .read-more-btn {
    line-height: 1;
}

#dept-news-event .latest__block-post .news-innerbox-title {
    height: 32px;
}

.dept-viewall {
    font-size: 14px !important;
    transform: translate(0, -1px);
    padding: 3px 15px !important;
}

#dept-faculty div .read-more-btn {
    line-height: 1 !important;
    font-size: 12px !important;
}


/* ======================================================================== */


/* ============ media queri ================= */


/* ============================================================================= */

@media (max-width: 991px) {
    .media-text-center {
        text-align: center !important;
    }
    .media-float-none {
        float: none !important;
    }
    .media-padding-left15 {
        padding-left: 15px !important;
    }
    .padding-right15 {
        padding-right: 15px !important;
    }
    .media-font12 {
        font-size: 12px !important;
    }
    .media-font30 {
        font-size: 30px !important;
    }
    .media-font25 {
        font-size: 25px !important;
    }
    .media-font15 {
        font-size: 15px !important;
    }
    .media-margin-top25 {
        margin-top: 25px !important;
    }
    .media-margin-top0 {
        margin-top: 0px !important;
    }
    .media-padding-top0 {
        padding-top: 0px !important;
    }
    /* header  */
    .header-logo {
        width: 100%;
        margin: 0 auto;
    }
    .header-area-abs-1,
    .header-area-abs-2,
    .header-area-abs-3,
    .header-area-abs-4,
    .header-area-abs-5,
    .header-area-abs-6,
    .header-area-abs-7 {
        display:none !important;
    }
    .ius-name-header {
        text-align:left !important;
    }
    .search-input-group {
        margin: 0 auto;
        width: 50%;
    }
    /* notice  */
    .notice-date {
        font-size: 15px;
        width: 56px;
        padding: 7px 0;
    }
    .notice-post-list-title {
        font-size: 12px;
    }
    .notice-post-list {
        padding: 5px 8px 5px 8px;
    }
    .notice-section .tab-content {
        height: 150px;
        overflow: hidden;
    }
    .see-all-notice-btn {
        font-size: 12px;
        padding: 0;
    }
    .notice-month-year {
        font-size: 10px;
    }
    .section-title-style {
        font-size: 25px;
        line-height: 30px;
    }
    
   
   
    
    .section-title-small {
        line-height: 20px;
        font-size: 15px;
    }
    .messages-box .member-desc h3 {
        font-size: 15px;
    }
    .messages-box .member-desc span {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .read-more-btn {
        font-size: 12px;
    }
    .news-innerbox-title {
        font-size: 14px;
    }
    .details-text-style {
        font-size: 12px;
        padding-top: 10px;
    }
    .view-all {
        padding: 5px 20px;
        font-size: 14px;
    }
    .counter-header2 {
        font-size: 25px !important;
    }
    .our-strength .col-md-3 {
        border-right: none;
    }
    .our-strength .col-md-3 .icon {
        padding-bottom: 0px;
    }
    .apply-now .applynow-title-small {
        padding-top: 60px;
        font-size: 15px;
    }
    .applynow-title-large {
        font-size: 40px;
        line-height: 35px;
    }
    .apply-now-form .applynow-form-title-style>p {
        line-height: 30px;
        font-size: 15px;
        padding: 20px 25px 10px 30px;
    }
    .apply-now .apply-now-form {
        max-width: 400px;
        margin: 40px 0;
        height: auto;
    }
    .apply-now .main-form {
        padding: 20px 50px;
    }
    /* ------------------------------------- */
    /* ============  archive ================= */
    .page-title {
        font-size: 25px;
        padding-bottom: 0px;
    }
    .inner-bg .page-header p {
        font-size: 15px;
    }
    .page-social-icon {
        width: 100%;
        margin: 0 auto;
    }
    .page-social-icon ul li {
        display: inline;
        text-align: center;
        margin: 0px 5px;
    }
    .page-social-icon {
        padding: 0px;
    }
    .page-event-details {
        margin: 0 auto;
    }
    .page-event-title {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-event-date {
        width: 100%;
    }
    .page-event-day {
        font-size: 25px;
        line-height: 15px;
    }
    .inner-bg {
        min-height: 0;
        padding: 20px 10px;
    }
    /* ------------------------------------------------- */
    /* ================= media single ====================== */
    .single-post-title {
        font-size: 15px;
    }
    .entry-date {
        font-size: 12px;
    }
    .profile-details-inner img {
        max-width: 250px;
        height: auto;
        margin: 0 auto;
    }
    profile-details-inner .profile-mail {
        height: auto;
        margin: 0 auto;
    }
    /* ------------ profile ---------- */
    .profile-details-inner {
        margin: 0 auto;
    }
    .profile-details-inner .profile-mail {
        max-width: 250px;
        margin: 0 auto;
        position: relative;
        bottom: 5px;
    }
    .profile-name .profile-dept {
        font-size: 12px;
    }
    .profile-description {
        padding: 20px;
    }
    .my-details-title p {
        font-size: 12px;
        line-height: 1.5;
    }
    .my-details-title h3 {
        font-size: 15px;
    }
    .website-link h4 {
        font-size: 12px;
    }
    .my-education {
        font-size: 12px;
        line-height: 1.5;
    }
    .my-education h4 {
        font-size: 15px;
    }
    .experience {
        font-size: 12px;
        line-height: 1.5;
    }
    .experience h4 {
        font-size: 15px;
    }
    .publications {
        font-size: 12px;
        line-height: 1.5;
    }
    .publications h4 {
        font-size: 15px;
    }
    .teaching-interest h4 {
        font-size: 15px;
    }
    .teaching-interest {
        font-size: 12px;
        line-height: 1.5;
    }
    .profile-name h4 {
        font-size: 15px;
    }
    /* ====================================== */
    /* -------------- NOTICE -------------- */
}

.common-box-shadow {
    z-index: 800;
    border-radius: 3px;
    background: #fff;
    /* -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 3px 20px 2px rgba(70, 71, 72, 0.30);
}