* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


/* preloader start here  */

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 99999;
    background-color: white;
}

.preloader-logo {
    position: absolute;
    width: 160px;
}

.main-circle {
    width: 240px;
    height: 240px;
    border: 4px solid #D03753;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    position: relative;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: rotate 2s infinite;
    animation: rotate 2s infinite;
}

.main-circle:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    border: 4px solid transparent;
    border-right: 4px solid #D03753;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    border-radius: 50%;
}

.green-circle {
    -webkit-animation: rotate 2s infinite .4s;
    animation: rotate 2s infinite .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border: 4px solid #D03753;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    border-radius: 50%;
    position: relative;
}

.green-circle:before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 4px solid transparent;
    border-right: 4px solid #D03753;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

.brown-circle {
    -webkit-animation: rotate 2s infinite .6s;
    animation: rotate 2s infinite .6s;
    width: 180px;
    height: 180px;
    border: 4px solid #D03753;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    border-radius: 50%;
}

@-webkit-keyframes rotate {
    from {}
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {}
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* preloader end here  */


/* =====================back to top button start here============ */

button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,
{
    outline: 0 !important;
}

button.back-to-top::before {
    color: white;
    display: block;
    vertical-align: middle;
    margin: -5px 0 auto;
}

button.back-to-top.show {
    display: block;
    background: #EB5310;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.back-to-top:hover {
    transform: scale(1.1);
}


/* ======================back to top button end here========== */


/* header start here  */

header {
    padding: 0px 0px;
}

.navbar-logo {
    width: 190px;
}

.menu {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(0 0 0);
}

.menu li a {}

.menu li a::after {
    content: '';
    color: red !important;
    display: block !important;
    width: 0 !important;
    height: 2px !important;
    background: red !important;
    transition: width .3s ease-in-out !important;
}

.menu li a:hover::after {
    width: 100% !important;
    transition: width .3s ease-in-out !important;
    color: red !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgb(255 1 1 / 90%);
}

.menu-list-item {
    position: relative;
    left: 40px;
    top: -20px;
}

.custom-link {
    color: #FC6A03 !important;
    display: inline-block;
}

::marker {
    font-size: 25px;
}


/* header end here  */


/* ===============banner start here =============== */

.banner {
    height: 95vh;
    position: relative;
    background: url(/volunteer/template/image/banner.jpeg);
    width: 100%;
    background-position: top;
    background-size: cover;
    background-position-y: -80px;
    background-repeat: inherit;
}

.banner-single-item {
    position: relative;
}

.banner-item {
    position: absolute;
    top: 60vh;
}

.banner-title {}

.banner-title h1 {
    color: #FF6845;
    font-weight: 600;
}

.banner-para {
    color: white;
    font-size: 17px;
    padding: 15px 0px;
}

.banner-para p {}

.banner-btn {}

.banner-btn a {
    background: #FC6A03;
    color: white;
    font-size: 16px;
    padding: 8px 28px;
    border: 1px solid #FC6A03;
    transition: .6s ease-in-out;
}

.banner-btn a:hover {
    background: none;
    color: #FC6A03;
    border: 1px solid #FC6A03;
}


/* ==============banner end here ============== */


/* ===========what do start here =========*/

.what-do {
    padding: 60px 0px 30px 0px;
}

.what-do-single-item {
    padding-bottom: 25px;
}

.what-do-single-item h1 {
    color: #EF6C14;
    font-size: 32px;
    font-weight: 600;
}

.devider {}

.devider img {}

.c-single-item {}

.c-para {}

.c-para p {
    color: #828274;
}

.devider-1::before {
    position: absolute;
    border: 1px solid black;
    width: 20px;
    height: 2px;
}


/* ===========what do end here ========= */


/* ==============work start here ============= */

.work {
    background: linear-gradient( 178deg, rgb(31 32 34 / 83%), rgb(10 9 10 / 88%)), url(../image/work.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.work-single-item {
    padding: 60px 0px;
}

.work-header {}

.work-header h1 {
    color: #E75617;
}

.work-header {}

.work-content {
    padding: 40px 0px;
}

.work-content p {
    color: white;
}

.work-btn {}

.work-btn a {
    background: #FC6A03;
    color: white;
    transition: .6s ease-in-out;
}

.work-btn a:hover {
    background: white;
    color: #61CF70;
}


/* =================wordk end here ========= */


/* help start here  */

.help,
#gallery {
    padding: 60px 0px 60px 0px;
    background: #F5F5F5;
}

.help-single-item {
    display: flex;
    justify-content: center;
}

.help-title {
    margin-bottom: 40px;
}

.help-title h1 {
    font-size: 28px;
    color: #EB5310;
}

.help-btn {}

.help-btn a {
    background: #EB5310;
    color: white;
    padding: 16px 148px;
    font-size: 20px;
    margin: 0px 10px;
    justify-content: center;
    border: 1px solid #EB5310;
    transition: .6s ease-in-out;
}

.help-btn a:hover {
    border: 1px solid #EB5310;
    color: #EB5310;
    background: none;
}


/* help end here */


/* Gallery Section
--------------------------------*/

#gallery .container-fluid {
    padding: 0px;
}

#gallery .gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
    margin: 15px 15px;
}

#gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    width: 100%;
}

#gallery .gallery-item:hover img {
    transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.gallery-devider {
    text-align: center;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    color: #F05610;
    font-weight: 600;
    font-size: 35px;
}


/* ==========footer start here=========== */

footer {
    padding: 60px 0px;
    background: #222222;
}

.footer-single-item {}

.footer-title {}

.footer-title h3 {
    color: white;
    font-size: 25px;
}

.footer-border {
    position: absolute;
    border: 1px solid red;
    width: 88px;
}

.footer-logo {
    padding: 40px 0px;
}

.footer-logo img {}

.footer-content {}

.footer-content p {
    color: white;
}

.footer-link {
    margin-top: 30px;
}

.footer-link ul li {
    margin-bottom: 10px;
}

.footer-link ul li a {
    font-size: 16px;
    color: white !important;
    transition: .6s ease-in-out;
}

.footer-link ul li a:hover {
    text-decoration: none;
    color: red !important;
}

.footer-icon {
    color: red !important;
    padding-right: 20px;
}

.footer-link-item {
    display: flex;
    margin-top: 40px;
}

.footer-location-content {
    color: white;
}

.footer-scoial-icon {
    display: flex;
    justify-content: space-evenly;
    margin-top: 26px;
}

.facebook-icon {
    background: #191919;
    padding: 5px 12px;
    transition: .6s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.facebook-icon a {}

.facebook-icon:hover {
    background-color: #1C9CEA;
    transform: scale(1.1);
    overflow: hidden;
}

.facebook-icon span {
    color: white;
    font-size: 23px;
}

.reserved {
    background: #191919;
    padding: 25px 0px;
}


/* ============footer end here======== */