﻿.mySlides {
    display: none
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 15px;
    margin: 0 2px;
    background-color: #ffa500;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .actives, .dot:hover {
        background-color: #717171;
    }

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}

.slidess {
    padding: 0;
    width: 100%;
    height: 420px;
    display: block;
    margin: 0 auto;
    position: relative;
}

    .slidess * {
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .slidess input {
        display: none;
    }

.slide-container {
    display: block;
}

.slidee {
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all .7s ease-in-out;
}

    .slidee img {
        width: 100%;
        height: 100%;
    }

.nav label {
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
    transition: opacity .2s;
    color: #FFF;
    text-align: center;
    font-family: "Varela Round", sans-serif;
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slidee:hover + .nav label {
    opacity: 0.5;
}

.nav label:hover {
    opacity: 1;
}

.nav .next {
    right: 0;
}

input:checked + .slide-container .slidee {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .nav label {
    display: block;
}

.nav-dots {
    width: 100%;
    bottom: 9px;
    height: 11px;
    display: block;
    position: absolute;
    text-align: center;
}

    .nav-dots .nav-dot {
        top: -5px;
        width: 11px;
        height: 11px;
        margin: 0 4px;
        position: relative;
        border-radius: 100%;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.6);
    }

        .nav-dots .nav-dot:hover {
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.8);
        }

input#img-1:checked ~ .nav-dots label#img-dot-1, input#img-2:checked ~ .nav-dots label#img-dot-2, input#img-3:checked ~ .nav-dots label#img-dot-3, input#img-4:checked ~ .nav-dots label#img-dot-4, input#img-5:checked ~ .nav-dots label#img-dot-5, input#img-6:checked ~ .nav-dots label#img-dot-6 {
    background: rgba(0, 0, 0, 0.8);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11111; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: -5px;
    right: 15px;
    color: darkgrey;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 1;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
        opacity: 1;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.Card {
    position: relative;
    text-align: center;
    width: 100%;
    height: 260px;
    border-radius: 74% 82% 70% 88%;
    display: table;
    padding: 20px;
    background-color: rgba(254,230,155,.9);
    cursor: pointer;
    z-index: 1;
    transition: .5s;
    color: #000;
}

    .Card:before,
    .Card:after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: -1;
        animation: RotateDiv 5s linear infinite;
    }

    .Card:before {
        border-radius: 130% 151% 189% 166%;
        background-color: rgba(254,230,155,.4);
        animation-delay: 0s;
        transition: .5s;
    }

    .Card:after {
        border-radius: 145% 86% 80% 90%;
        background-color: rgba(255,255,255,.3);
        animation-delay: .2s;
        transition: .5s;
    }

    .Card:hover {
        background-color: rgba(238,58,128,.2);
        color: #fff;
    }

        .Card:hover:after {
            background-color: rgba(238,58,128,.5);
        }

        .Card:hover:before {
            background-color: rgba(238,58,128,.3);
        }

    .Card div {
        vertical-align: middle;
    }

        .Card div h2 {
            font-size: 25px;
        }

        .Card div p {
            margin-top: 20px;
            font-size: 18px;
        }

        .Card div a {
            color: #ffbc01;
        }

            .Card div a:hover {
                color: #fff !important;
            }


@keyframes RotateDiv {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.py-225 {
    padding-bottom: 2.5rem !important;
}

.date_cat {
    position: absolute;
    left: 29px;
    top: 15px;
    width: 93px;
    display: grid;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    right: 0;
    padding: 10px;
    background: rgba(238,58,128,0.8);
    color: #fff;
    line-height: 24px;
}

.img_bx {
    position: relative;
}

.custom-underline {
    position: relative;
    display: inline-block;
}



    .custom-underline::after {
        content: "";
        position: absolute;
    }


    .custom-underline::after {
        top: 125%;
        height: 7px;
        width: 100%;
        left: 0;
        background-color: #fee69b;
    }

.custom-underline-sec {
    position: relative;
    display: inline-block;
}



    .custom-underline-sec::after {
        content: "";
        position: absolute;
    }


    .custom-underline-sec::after {
        top: 125%;
        height: 7px;
        width: 100%;
        left: 0;
        background-color: #fff;
    }

.donner_new {
    background: url("../../Style_New/images/login-bg.jpg") repeat 0 0;
    background-size: cover;
    position: relative;
    opacity: 1;
    color: white;
    padding-top: 15px;
    padding-bottom: 10px;
}

.doc1_new {
    background-color: rgba(39,37,32,0.6);
    align-self: center;
    border: 0px solid black;
    display: block;
    color: black;
    border-radius: 20px;
    height: 480px;
    padding: 10px 20px 20px 30px;
}
div#ctl00_MainContent_doc, div#ctl00_MainContent_donor {
    padding: 30px 0;
}
.doc_new {
    background-color: rgba(39,37,32,0.6);
    align-self: center;
    border: 0px solid black;
    display: block;
    color: #fff;
    height:480px;
    border-radius: 20px;
    padding: 10px 20px 20px 30px;
}
a.text-read {
    color: #f9de7d;
    float: right;
}

.titlesection_new {
    font-size: 50px;
}

.menu_new {
    color: rgba(0,0,0,0.6) !important;
    font-weight: bold !important;
    border-color: #fede7c !important;
    max-height: -webkit-fill-available;
}

.divscrollleft_new {
    padding-top: 16px;
    padding-bottom: 0px;
}

.newdiv_new {
    background-color: #f9de7d;
    border-radius: 30px;
}

#marq_new {
    height: 360px;
}

#marq {
    height: 360px;
}

.fontcolor_new {
    color: #337ab7;
}

.card {
    margin: 10px !important;
}


.menu li a {
    line-height: 2.2;
    color: #fff;
}

.menu li b {
    color: #f9de7d;
}

.fontcolor {
    color: #f9de7d;
}

#project-support .card-text {
    font-size: 14px;
    text-align: justify;
}

.amount span {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

.amount {
    margin-bottom: 0;
    font-weight: 800;
    color: #000;
}

.card-footer {
    font-size: 0.9em;
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 0 .55em;
    color: rgba(0,0,0,.7);
    border-top: 1px solid rgba(0,0,0,.05) !important;
    background: rgba(254,222,124,.6);
}

@media (min-width: 768px) {
    section {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 50px;
        margin-bottom: 60px;
    }
}

@media (max-width: 1100px) {
    .Card {
        margin-bottom: 40px;
        margin-top: 50px;
    }

    .doc1new {
        margin: 125px 50px 10px;
    }
}
