@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import "~bootstrap-icons/font/bootstrap-icons.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
@media print {
    @page {
        size: auto !important;
    }
}
.mainheading{
    border-bottom:2px solid black;
    border-right: 2px solid black;
    color: black;
    /* font-size: 100%; */
    font-weight: 600;
    border-radius: 3%;
    padding-right: 5px;
    padding-bottom: 2px;
   font-size: 14px;
  }

.comnpadding {
    padding: 70px 0;
}

.cmnbtn{
    background-color: black;
    color: white;
    font-weight: 500;
    
}

.comntitle {
    margin-bottom: 30px;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    color: #293f6e;
    padding: 10px 15px;
    box-shadow: 4px 4px 0px #293f6e;
    background: #f1f1f1;
}

.comnheading {
    font-size: 34px;
    color: #2c416e;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.comnheading::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #2c416e;
    display: block;
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.comnbtn {
    background: #2c416e;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.man-icon{
  background: #2c416e;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}


.image{
  width: 40px
}

.bg1 {
    background: #451f68;
}

.bg2 {
    background: #ff7a5b;
}

.bg3 {
    background: #00aaa1;
}

.bg4 {
    background: #32b42c;
}


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

		Login Css Start Here

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

.Login_maindiv {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url("../image/login-bg.jpg") no-repeat;
    position: relative;
    background-size: cover;
}

.Login_maindiv::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.Logindiv {
    max-width: 750px;
    margin: auto;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.Logindiv form {
    width: 60%;
    padding: 15px 25px;
    background: #5642c7;
}

.login_logodiv {
    max-width: 40%;
}

.login_logodiv img {
    height: 100%;
    object-fit: cover;
}

.Logindiv label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.Logindiv input {
    height: 36px;
    border: none;
    padding: 8px;
}

.Logindiv button {
    border: none;
    padding: 7px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: #fe8a27;
    color: #fff;
    border-radius: 5px;
}

header {
    background: #293f6e;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidemenu {
    list-style: none;
    padding: 100px 15px 15px 15px;
    background: #293f6e;
    width: 250px;
    height: 100vh;
    font-weight:600 ;
    position: fixed;
    top: 0;
    margin: 0px;
    z-index: 2;
    overflow: auto;
}

.sidemenu a {
    font-size: 17px;
    color: #fff;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin: 5px 0;
    display: block;
    border-bottom: 1px dashed;
}

.sidemenu a.active {
    color: #fe8a27;
}

.navbar {
    background: #293f6e;
    padding: 10px 15px;
}

.navbar-brand {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0;
    margin-left: 40px;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fe8a27;
}

.mainpart {
    width: calc(100% - 250px);
    float: right;
    padding: 10px;
    margin-top: 90px;

}

.serviceBox {
    text-align: center;
    padding-top: 10px;
    background-color: rgb(233, 233, 233);
}

.serviceBox .service-icon {
    color: #fff;
    background: #fff;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
    content: "";
    background: linear-gradient(to right, #F09119 50%, transparent 50%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    transition: all ease 0.8s;
}

.serviceBox:hover .service-icon:before,
.serviceBox:hover .service-icon:after {
    transform: rotateZ(180deg);
}

.serviceBox:hover .service-icon {
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.2);
}

.serviceBox .service-icon:after {
    background: #F09119;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.serviceBox {
    border: 1px solid #e5e4e4;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
     /* width: 100px;
    height: 100px; */
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.serviceBox .title {
    color: #273f6f;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox.red .service-icon:before {
    background: linear-gradient(to right, #E34A3A 50%, transparent 50%);
}

.serviceBox.red .service-icon:after {
    background: #E34A3A;
}

.serviceBox.red .title {
    color: #E34A3A;
}

.serviceBox.blue .service-icon:before {
    background: linear-gradient(to right, #009CB5 50%, transparent 50%);
}

.serviceBox.blue .service-icon:after {
    background: #009CB5;
}

.serviceBox.blue .title {
    color: #009CB5;
}

.serviceBox.green .service-icon:before {
    background: linear-gradient(to right, #A1C52D 50%, transparent 50%);
}

.serviceBox.green .service-icon:after {
    background: #A1C52D;
}

.serviceBox.green .title {
    color: #A1C52D;
}

.feedlist {
    margin-bottom: 30px;
}

.feedlist li {
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.feedlist li::before {
    content: "\f061";
    font-family: fontawesome;
    position: absolute;
    left: 0;
    color: #fe8a27;
}

.feeddiv {
    max-width: 90%;
    margin: 30px auto 0;
}

.show-more {
    color: #fff;
    position: relative;
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
    background: #318fff;
    cursor: pointer;
    display: table;
    margin: 0 auto 30px;
    border-radius: 5px;
}

.show-more-height {
    height: 250px;
    overflow: hidden;
}

.list_view {
    display: inline-block;
}

.list_view a::before {
    content: "\f105";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    font-size: 20px;
}

.list_view a {
    width: 31%;
    margin: 1%;
    display: inline-flex;
    align-items: flex-start;
    color: #8c8c8c;
    padding: 20px 30px 20px 20px;
    box-shadow: 1px 1px 7px #ddd;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.list_view aside {
    font-size: 16px;
    line-height: 20px;
}

.list_view a strong {
    font-size: 20px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.list_view span {
    display: block;
    font-weight: 500;
    font-size: 18px;
}

.list_view small {
    text-transform: capitalize;
}

.nav-tabs {
    border-bottom: none;
    background: #f1f1f1;
    margin-bottom: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #293f6e;
    background: none;
    border: none;
    border-bottom: 2px solid #293f6e;
}

.nav-tabs .nav-link {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background: none;
    text-transform: capitalize;
    font-size: 20px;
    border-bottom: 2px solid transparent;
}

.fees_detial_box {
    padding: 20px;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.payinput {
    display: flex;
    flex-wrap: wrap;
}

.payinput li {
    margin-bottom: 15px;
}

.payinput label {
    text-transform: uppercase;
    font-size: 18px;
}

.payinput input {
    background: #707f9e;
    color: #fff;
    font-size: 16px;
    padding: 7px 20px;
    border: none;
    height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.payinput input::-webkit-input-placeholder {
    color: #fff;
}

.payinput input::-moz-placeholder {
    color: #fff;
}

.payinput input:-ms-input-placeholder {
    color: #fff;
}

.payinput input:-moz-placeholder {
    color: #fff;
}

.amount_paid_date i {
    color: #527152;
}


/* This css is for normalizing styles. You can skip this. */

.custom_checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom_checkbox label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 20px;
}

.custom_checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #293f70;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 25px;
    height: 25px;
}

.custom_checkbox input:checked+label::before {
    background: #293f70;
}

.custom_checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 9px;
    width: 7px;
    height: 15px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.amount_paid_date {
    display: flex;
    align-items: center;
    margin: 20px 0;
    box-shadow: 2px 2px 5px #ddd;
    padding: 15px;
}

.amount_paid_date i {
    font-size: 24px;
}

.amount_paid_date span {
    border-bottom: 2px solid;
    margin: 0 5px;
    padding: 0 5px;
    font-size: 16px;
}

.amount_paid_date span input {
    border: none;
}

.menubar {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
}


/*============================== 11-04-2022 ==============================*/

.post_notice {
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 30px;
    box-shadow: 0 0 20px 0px #dad6d6;
    border-radius: 10px;
}

.post_notice input {
    height: 50px;
    padding: 15px;
    border: 1px solid #ddd;
}

.post_notice textarea {
    height: 130px;
    padding: 15px 15px 40px 15px;
    border: 1px solid #ddd;
    resize: none;
}

.descdiv {
    position: relative;
}

.des_icon {
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.des_icon i {
    font-size: 24px;
    color: #a19f9f;
    margin: 6px;
}

.profile_pic {
    height: 80px;
    width: 80px;
    display: inline-block;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    vertical-align: middle;
    text-align: center;
    color: transparent;
    transition: all .3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.profile_pic:hover {
    background-color: rgba(0, 0, 0, .5);
    z-index: 10000;
    color: #fff;
    transition: all .3s ease;
    text-decoration: none;
}

.profile_pic i {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    background: #2c416e;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    line-height: 20px;
    height: 20px;
    cursor: pointer;
}

.profile_pic span {
    display: inline-block;
}

.profile_pic input[type="file"] {
    display: none;
    cursor: pointer;
    width: auto;
    height: auto;
}


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

.notice_board li {
    padding: 15px;
    box-shadow: 0 0 15px #ddd;
    margin-bottom: 30px;
}

.othericon {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 10px;
}

.othericon span {
    margin: 5px;
    color: #797979;
}

.downloadimg span {
    max-width: 150px;
    height: 150px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
}

.downloadimg span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.downloadimg span i {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
}

.profilediv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.profilediv aside {
    display: flex;
    align-items: center;
}

.profilediv img {
    max-width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.profilediv strong {
    display: block;
}

.profilediv span i {
    margin-left: 10px;
    font-size: 20px;
}

.notice_board h1 {
    font-size: 30px;
    color: #273f6f;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.notice_board h1:after {
    content: "";
    background: #273f6f;
    width: 50px;
    height: 4px;
    border-radius: 5px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.notice_board h1 button {
    background: #28406c;
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.notice_board h1 button i {
    margin-right: 7px;
    vertical-align: middle;
}

.boldtext {
    font-weight: bold;
    margin: 5px 0;
}
.profile_pic input[type="file"] {
  display: none;
  cursor: pointer;
  width: auto;
  height: auto;
}

.des_icon label {
  position: relative;
}

.des_icon input {
  width: 36px;
  height: 36px;
  opacity: 0;
  padding: 0;
  position: absolute;
  left: 0px;
  top: 0px;
}

.staff_list li {
  padding: 15px;
  box-shadow: 0 0 15px #ddd;
  margin-bottom: 30px;
}


