﻿/* general CSS */

body {
    font-family: Helvetica, Arial, Heveltica Neue, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Login css */

.bg {
    background: url("../images/loginbanner.jpg") no-repeat center;
    background-size: cover;
    height: 100vh;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
}

.login {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 360px;
    margin-top: -180px;
    margin-left: -175px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 7px;
    border: 3px solid #fff;
}

.login .in {
    border: none;
    border-bottom: 1px solid #fff;
    display: block;
    width: 285px;
    margin-left: 10px;
    font-size: 14px;
    color: white;
    padding: 10px;
    background: transparent;
    line-height: normal;
}

.login .form-group {
    position: relative;
    margin-bottom: 35px;
}

.login .in:focus {
    outline: none;
}

.login label {
    color: white;
    font-size: 14px;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-weight: 100;
}

.login h3 {
    font-weight: bold;
    color: white;
}

.login .in:focus ~ label,
.login .in:valid ~ label {
    top: -20px;
    color: white;
}

.login .bar {
    position: relative;
}

.login .bar:before,
.login .bar:after {
    content: "";
    height: 2px;
    bottom: 1px;
    position: absolute;
    background: black;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.login .bar:before {
    left: 50%;
}

.login .bar:after {
    right: 50%;
}

.login .in:focus ~ .bar:before,
.login .in:focus ~ .bar:after {
    width: 50%;
}

.login .in:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.login a {
    color: white;
}

/* end of login css */

/* Menu bar */

.topa {
    display: inline-block;
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    position: fixed;
    bottom: 5%;
    right: 5%;
}

.navbar {
    padding: 0px 25px;
}

.navbar .navbar-nav > .active > a,
.navbar .navbar-nav > .active > a:focus,
.navbar .navbar-nav > .active > a:hover {
    color: #fff;
    background-color: #0f4693;
    border-radius: 5px;
}

.navbar .navbar-nav > .open > a,
.navbar .navbar-nav > .open > a:focus,
.navbar .navbar-nav > .open > a:hover {
    color: #fff;
    background-color: #0f4693;
}

.navbar .navbar-nav > li > a.nav-link {
    color: #000;
    padding: 5px 15px;
}

.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > li > a:hover {
}

.dropdown-menu > a:focus,
.dropdown-menu > a:hover {
    color: #930;
    text-decoration: none;
    background-color: #fff !important;
}

.dropdown-item {
    padding: 0px;
}

.dropdown-item a:hover {
    background-color: #fff !important;
}

.nav-link:hover {
    color: #930 !important;
}

.navbar-nav .dropdown-menu {
    left: 15px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.shadows {
    width: 270px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*Font-sizes*/

.fs5 {
    font-size: 5px;
}

.fs9 {
    font-size: 9px;
}

.fs10{
    font-size: 10px;
}

.fs13 {
    font-size: 13px;
}

.fs14 {
    font-size: 14px;
}

.fs15{
    font-size: 15px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20{
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs25{
    font-size: 25px;
}


/*colors*/

.bg-yellow {
    background-color: #c60;
}

.text-red {
    color: red;
}

.bg-lemon_yellow {
    background-color: #f3c252;
}

.text-blue {
    color: #330099;
}

.text-dark_blue {
    color: #3300cc;
}

.bg-ash {
    background-color: #dddddd5c;
}

.text_ash {
    color: #666;
}

.text-purple {
    color: #660033;
}

.text-yellow {
    color: #6bf66b;
}

.text-lite-blue {
    color: #00b3e6;
}

.text-orange {
    color: rgb(255 51 0);
}

.actives{
    color: #fff !important;
}

.text-hash{
    color: #a5a5a5 !important;
    transition: color 286ms ease-in;
}

.bg-lite-yellow {
    background-color: #ffffa6;
}

.border-ash {
    border: 3px solid #ddd;
}

.title {
    color: rgba(51, 51, 51, 1);
    font-family: "Helvetica Neue Light", HelveticaNeue-Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bg-deep_orange {
    background-color: #ad792b;
}
.bg-lite-meron {
    background-color: rgba(173, 147, 108, 1);
}

/* general css*/

.header {
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid #070100;
    background-color: #f2e077;
}

.header-items {
    padding: 3px 0px;
}

.header-items ul li a {
    color: #fff !important;
    padding: 0.2rem 1rem !important;
}

.header-items ul li a:hover {
    color: #000 !important;
}

.logo {
    padding: 10px 0px;
}

.bg-lemon_yellow ul li a {
    padding: 18px 28px !important;
    font-weight: bold;
    font-size: 14px;
}

.font-weight {
    font-weight: bold;
}

.active {
    color: #930 !important;
}

.album_img img {
    height: 177px;
    width: 236px;
}

.imgs img {
    height: 70px;
}

.carousel-inner img {
    width: 100%;
}

.services-content p,
.bank-details p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: justify;
}

.achievements,
.objectives li a {
    font-size: 15px;
    line-height: 24px;
}

.achievements li a:hover {
    color: #000;
}

.objectives li a:hover {
    color: #28a745 !important ;
}

.bank-details {
    border: 2px solid #000;
    padding: 0px 10px;
}

.text-decoration-underline {
    text-decoration: underline;
}

.donate-btn {
    border-radius: 0px;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    background-color: #faca3d;
}

.more-btn {
    border-radius: 15px;
    padding: 3px 15px;
    background-color: #7bd300;
    border: 1px solid #ddd;
}

.footer-items li a {
    line-height: 1.75em;
    color: #aaaaaa;
}

.carousel-control-next {
    right: 0;
    top: 60%;
    opacity: 1.5;
}

.carousel-control-prev {
    left: 80%;
    top: 60%;
    opacity: 1.5;
}

.carousel-control-prev i,
.carousel-control-next i {
    background-color: #faca3a;
    padding: 10px;
    color: #000;
}

.recap img {
    width: 45px;
}

.checkbox {
    border: 1px solid #ddd;
    width: 62%;
    background-color: #dddddd40;
}

.footer-end {
    font-size: 12px;
    color: #cccccc;
}

.footer-end a {
    color: #aaaaaa;
}

.footer-end a:hover {
    color: #fff;
}

.service-icon i {
    color: #00b3e6;
    line-height: 50px;
    font-size: 2.4em;
}

.pt22 {
    padding-top: 22px;
}

.title a:hover {
    color: #000;
}

.item:hover {
    background-color: #fff;
}

/*   founder pages  */

.founder-img img {
    height: 120px;
}

.pagination li a {
    color: #000;
    border-radius: 5px;
    font-size: 12px;
}

/* vaidehi ashramam*/

.content-p_fs17 p {
    font-size: 16px;
    text-align: justify;
}


/* Buttons */

.btn-white {
    color: black !important;
    background-color: white;
    border-radius: 2px;
    font-weight: bold;
    padding: 5px 10px;
}

.btn-white:hover,
.btn-white:focus {
    box-shadow: 5px 5px 15px 7px black;
    border: none;
}
.hover_green:hover {
    color: #000;
}

.border-radius-10 {
    border-radius: 10px;
}

/*contact*/

.form_inline label {
    font-weight: bold;
    width: 200px;
}

.form-control_contact {
    background-color: #eeeeee;
    border: 0;
    border-radius: 0;
    margin-left: 5%;
    width: 40% !important;
}

.btn-submit {
    background-color: #faca3a;
    padding: 5px 70px;
    font-size: 13px;
    border-radius: 0px;
}

/*Blog*/

.sidebar_drop a:hover {
    background-color: #343a40 !important;
    color: #fff;
}

.nav_hover li a:hover {
    color: #fff !important;
}

.sidebar_drop {
    left: -5px !important;
    width: 25px !important;
    min-width: 6.4rem;
    padding: 10px 15px;
}

.sidebar,
.main {
    transition: all 0.3s ease-out;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 64px;
    bottom: 0;
    overflow-x: hidden;

}

.sidebar {
    width: 250px;
    background-color: #fff;
    left: 0;
    top: 118px;
}

.main {
    top: 118px;
    background-color: #fff;
    position: absolute;
    left: 250px;
    right: 0;
}

.chapter ul li {
    list-style: none;
    padding: 5px;
    margin: 0;
    background-color: rgba(173, 121, 43, 1);
    color: #ccc;
    margin-bottom: 1px;
    font-size: 12px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chapter ul li a:hover {
    color: #000 !important;
}

.main_img img {
    width: 211px;
    height: 320px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.magazine_img img {
    width: 200px;
    height: 200px;
}

.shadows_hover:hover {
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.nav_img img {
    width: 30px;
    height: 30px;
}

/* blog in about css*/

/*timeslide*/

.item {
    border: solid 1px transparent;
    cursor: pointer;
    margin: 1px 1px 1px 0;
    position: relative;
    -webkit-transition: all ease-in-out 0.5s;
}

.date.ribbon {
    position: absolute;
}

a.ribbon {
    color: #eee;
    cursor: pointer;
    text-decoration: none;
}

.ribbon {
    display: inline-block;
    text-align: center;
    width: 35px;
}

.ribbon .top {
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    border-radius: 1px 1px 0px 0px;
    font-size: 11px;
    padding: 4px 0;
    position: relative;
    text-transform: uppercase;
}

.ribbon .ribbon-piece {
    background-color: rgba(102, 102, 102, 1);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: background-color 0.5s ease-in;
}

.ribbon .bottom {
    font-size: 17px;
    padding: 5px 0;
}

.ribbon .tail {
    height: 10px;
    overflow: hidden;
    position: relative;
}

.ribbon .tail .left {
    left: -9px;
    transform: rotate(-25deg);
}

.ribbon .tail .right {
    right: -9px;
    transform: rotate(25deg);
}

.ribbon .tail .left,
.ribbon .tail .right {
    height: 10px;
    position: absolute;
    top: -10px;
    width: 50px;
}

.item_img img {
    width: 300px;
    height: 300px;
}

.item .title {
    display: block;
    overflow: hidden;
    padding: 4px 0px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item .summary {
    overflow: hidden;
    text-overflow: ellipsis;
}

.title a {
    color: rgba(51, 51, 51, 1);
    font-family: "Helvetica Neue Light", HelveticaNeue-Light, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.item p {
    color: #666;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 2px;
    margin: 0 0 2px 0;
    transition: ease-in-out 0.2s;
    transition-property: color, opacity, left, top, height, width;
}

.small .title {
    font-size: 14px;
    padding: 2px 0px;
}

.small > .item p {
    max-height: 0;
    overflow: hidden;

    transition: max-height 507ms ease-in-out;
}

.hfeed {
    position: relative;
}
        /*Fade-page*/

.fade-img img{
    height: 180px;
    border: 1px solid #fff;
}   
   


/* Tables */

/* Data tables */

/* End of  general css */

/*width*/

.w5 {
    width: 5%;
}

.w10 {
    width: 10%;
}

.w15 {
    width: 15%;
}

.w20 {
    width: 20%;
}

.w25 {
    width: 25%;
}

.w30 {
    width: 30%;
}

.w35 {
    width: 35%;
}

.w40 {
    width: 40%;
}

.w45 {
    width: 45%;
}

.w50 {
    width: 50% !important;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}



/* Padding */

.p0 {
    padding: 0px;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px;
}

.p25 {
    padding: 25px;
}

.p30 {
    padding: 30px;
}

.p35 {
    padding: 35px;
}

.p40 {
    padding: 40px;
}

.p45 {
    padding: 45px;
}

.p50 {
    padding: 50px;
}

.my10 {
    margin-top: 10px;
    margin-bottom: 10px;
}


.mx10 {
    margin-left: 10px;
    margin-right: 10px;
}

.my15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.py25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.px40 {
    padding-left: 40px;
    padding-right: 40px;
}

.py50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.w60 {
    width: 60%;
}

.pt0 {
    padding-top: 0px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt25 {
    padding-top: 25px;
}

.pt30 {
    padding-top: 30px;
}

.pt35 {
    padding-top: 35px;
}

.pt40 {
    padding-top: 40px;
}

.pt45 {
    padding-top: 45px;
}

.pt50 {
    padding-top: 50px;
}

.pb0 {
    padding-bottom: 0px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb35 {
    padding-bottom: 35px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb45 {
    padding-bottom: 45px;
}

.pb50 {
    padding-bottom: 50px;
}

.pr0 {
    padding-right: 0px;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr15 {
    padding-right: 15px;
}

.pr20 {
    padding-right: 20px;
}

.pr25 {
    padding-right: 25px;
}

.pr30 {
    padding-right: 30px;
}

.pr35 {
    padding-right: 35px;
}

.pr40 {
    padding-right: 40px;
}

.pr45 {
    padding-right: 45px;
}

.pr50 {
    padding-right: 50px;
}

.pl0 {
    padding-left: 0px;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pl25 {
    padding-left: 25px;
}

.pl30 {
    padding-left: 30px;
}

.pl35 {
    padding-left: 35px;
}

.pl40 {
    padding-left: 40px;
}

.pl45 {
    padding-left: 45px;
}

.pl50 {
    padding-left: 50px;
}

.pl92 {
    padding-left: 92px;
}

/* Margin */

.m0 {
    margin: 0px;
}

.m5 {
    margin: 5px;
}

.m10 {
    margin: 10px;
}

.m15 {
    margin: 15px;
}

.m20 {
    margin: 20px;
}

.m25 {
    margin: 25px;
}

.m30 {
    margin: 30px;
}

.m35 {
    margin: 35px;
}

.m40 {
    margin: 40px;
}

.m45 {
    margin: 45px;
}

.m50 {
    margin: 50px;
}

.mt0 {
    margin-top: 0px;
}

.mt2 {
    margin-top: 2px;
}

.mt5 {
    margin-top: 5px;
}

.mt6{
    margin-top: 6px;
}

.mt-7{
    margin-top: 7%;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mt45 {
    margin-top: 45px;
}

.mt50 {
    margin-top: 50px;
}

.mb0 {
    margin-bottom: 0px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb50 {
    margin-bottom: 50px;
}

.mr0 {
    margin-right: 0px;
}

.mr5 {
    margin-right: 0px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mr35 {
    margin-right: 35px;
}

.mr40 {
    margin-right: 40px;
}

.mr45 {
    margin-right: 45px;
}

.mr50 {
    margin-right: 50px;
}

.ml0 {
    margin-left: 0px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.ml35 {
    margin-left: 35px;
}

.ml40 {
    margin-left: 40px;
}

.ml45 {
    margin-left: 45px;
}

.ml50 {
    margin-left: 50px;
}
.navbar-toggler-icon {
    background-image: url("../images/menu_bar.png");
}

/*media Queries*/

/* for medium screen */

@media (min-width: 992px) and (max-width: 1199px) {
    .hed_r {
        display: none;
    }

    .copyright p {
        text-align: center !important;
    }

    .center_r {
        text-align: center !important;
    }

    .main {
        padding: 10px;
    }

    .blog_white {
        width: 90%;
    }

    .header_bar {
        font-size: 20px;
        height: 75px;
        line-height: 48px;
        margin-right: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .scrolls {
        transition: all 0.3s ease-out;
        overflow: scroll;
        height: 250px;
        width: 85% !important;
        margin: 10px !important;
    }

}

/* for small screen */

@media (min-width: 768px) and (max-width: 991px) {
    .hed_r {
        display: none;
    }

    .copyright p {
        text-align: center !important;
    }

    .center_r {
        text-align: center !important;
    }

    .main {
        padding: 10px;
    }

    .blog_white {
        width: 90%;
    }

    .header_bar {
        font-size: 20px;
        height: 75px;
        line-height: 48px;
        margin-right: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .scrolls {
        transition: all 0.3s ease-out;
        overflow: scroll;
        height: 250px;
        width: 85% !important;
        margin: 10px !important;
    }

}

/* for Ipad */

@media (width: 768px) and (height: 1024px) {
    .hed_r {
        display: none;
    }

    .copyright p {
        text-align: center !important;
    }

    .center_r {
        text-align: center !important;
    }

    .main {
        padding: 10px;
    }

    .blog_white {
        width: 90%;
    }

    .header_bar {
        font-size: 20px;
        height: 75px;
        line-height: 48px;
        margin-right: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .scrolls {
        transition: all 0.3s ease-out;
        overflow: scroll;
        height: 250px;
        width: 85% !important;
        margin: 10px !important;
    }
    .nav_r li a{
    display: block;
    text-align: center !important;
    }



}

/* for mobile screen landscape */

@media (min-width: 577px) and (max-width: 767px) {
    .hed_r {
        display: none;
    }

    .copyright p {
        text-align: center !important;
    }

    .center_r {
        text-align: center !important;
    }

    .main {
        padding: 10px;
    }

    .blog_white {
        width: 90%;
    }

    .header_bar {
        font-size: 20px;
        height: 75px;
        line-height: 48px;
        margin-right: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .scrolls {
        transition: all 0.3s ease-out;
        overflow: scroll;
        height: 250px;
        width: 85% !important;
        margin: 10px !important;
    }
    .d-block_r{
        display: none;
    }
    .nav_r li a{
    display: block;
    text-align: center !important;
    }
}

/* for mobile screen portrait */

@media (min-width: 300px) and (max-width: 576px) {
    .hed_r {
        display: none;
    }

    .copyright p {
        text-align: center !important;
    }

    .center_r {
        text-align: center !important;
    }

    .main {
        padding: 10px;
    }

    .blog_white {
        width: 90%;
    }

    .header_bar {
        font-size: 20px;
        height: 75px;
        line-height: 48px;
        margin-right: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .scrolls {
        transition: all 0.3s ease-out;
        overflow: scroll;
        height: 250px;
        width: 85% !important;
        margin: 10px !important;
    }
    .d-block_r{
        display: none;
    }
    .nav_r li a{
    display: block;
    text-align: center !important;
    }
}
