@font-face {
    font-family: "solaimanlipi";
    src: url("../fonts/solaimanlipi/SolaimanLipi_22-02-2012.ttf"),
        url("../fonts/solaimanlipi/SolaimanLipi_29-05-06.ttf"),
        url("../fonts/solaimanlipi/SolaimanLipi_Bold_10-03-12.ttf");
}

/*
=============================================================================
>>>> color variable <<<<
==============================================================================
*/
:root {
    --theme-color: #0a3b1e;
    --highlight-color: #008e48;
    --sp-text-color: #1E1E1E;
    --bg-color: #F2F6FF;
    --footer-bg-color: #22262F;
    --white-color: #ffffff;
    --black-color: #000000;
    
}

/*
=============================================================================
 1. DEFAULT STYLE START
==============================================================================
*/
body {
    font-family: solaimanlipi, sans-serif;
    font-size: 15px;
    line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
b,
strong,
span {
    font-family: solaimanlipi, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--theme-color);
}

a:hover,
a:focus,
button:focus {
    list-style: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 1px;
}

.section-padding {
    padding: 50px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.sub-heading h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.theme-btn a {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--black-color);
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.5s;
}

.theme-btn a:hover {
    background-color: var(--theme-color);
}

.bgi {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.back_to_top i.fa {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 60px;
    background: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    font-size: 40px;
    line-height: 43px;
    border-radius: 5px;
    z-index: 25;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/**
================================================================================
  1. DEFAULT STYLE END
================================================================================
*/

/**
===================================================================================
===============================  FRONT PAGE STYLE START  ==========================
===================================================================================
 */
/**
================================================================================
Top Bar style start
================================================================================
*/
.topbar {
    padding: 5px 0;
    background-color: var(--theme-color);
}

.topbar .phone {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-gap: 5px;
    align-items: center;
}

.topbar .phone a {
    color: var(--white-color);
}

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

.topbar .htacb ul li {
    display: inline-block;
}

.topbar .htacb ul li a {
    display: block;
    padding: 0 10px;
    
    color: var(--white-color);
}

.topbar .htacb ul li.special a {
    font-weight: bold;
    
    color: var(--black-color);
    position: relative;
    z-index: 1;
}
.copy_right_text a {
    
    color: var(--highlight-color);
}

.topbar .htacb ul li.special a::after {
    position: absolute;
    content: "";
    left: 0;
    top: -10px;
    width: 100%;
    height: 50px;
    background-color: var(--highlight-color);
    z-index: -1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/**
================================================================================
Top Bar style end
================================================================================
*/
/**
================================================================================
header style start
================================================================================
*/
header {
    padding: 10px 0;
    background-color: var(--theme-color);
    transition: all 0.5s;
}

header.header-section.fixed-top .header-cont-wrapper {
    grid-template-columns: 150px 1fr;
}

header.header-section.fixed-top {
    padding: 3px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.header-cont-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 10px;
    align-items: center;
}

.navigation-menu ul li {
    display: inline-block;
}

.navigation-menu ul li a {
    font-weight: bold;
    display: block;
    padding: 7px;
    color: var(--white-color);
    transition: all 0.5s;
}


.navigation-menu ul li.active a,
.navigation-menu ul li:hover a {
    color: var(--highlight-color);
}

/*side nav for mobile*/
.mobile-header .two-grid {
    align-items: center;
}

.mobile-header .mnv {
    text-align: right;
}

.mobile-header span i {
    font-size: 2rem;
}

.msidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.msidenav a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 25px;
    color: var(--white-color);
    display: block;
    transition: 0.3s;
}

.msidenav a:hover {
    color: #f1f1f1;
}

.msidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

/**
================================================================================
header style end
================================================================================
*/
/**
================================================================================
hero style start
================================================================================
*/
.hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-cont {
    padding: 170px 0;
}

.hero-cont h1 {
    color: var(--white-color);
    font-size: 3.75rem;
    font-weight: bold;
}

/**
================================================================================
hero style end
================================================================================
*/
/**
================================================================================
donation style start
================================================================================
*/
section.donation-section {
    position: relative;
    top: -70px;
}

.d-wrapper {
    background-color: var(--theme-color);
    padding: 50px;
    border-radius: 15px;
}

.d-wrapper form {
    display: grid;
    grid-template-columns: 1fr 200px 1fr 200px;
    grid-gap: 15px;
    align-items: center;
}

.d-wrapper form .form-group {
    margin-bottom: 0;
}

.d-wrapper form button {
    border: none;
    font-weight: bold;
    color: var(--white-color);
    background-color: var(--highlight-color);
    border-radius: 5px;
    padding: 7px;
    cursor: pointer;
    transition: all 0.5s;
}

.d-wrapper form button:hover {
    background-color: var(--footer-bg-color);
}

/**
================================================================================
donation style end
================================================================================
*/
/**
================================================================================
about us section style start
========
========================================================================
*/
section.about-section {
    margin-bottom: 50px;
}

section.about-section .theme-btn {
    margin-top: 40px;
}

/**
================================================================================
about us section style end
================================================================================
*/
/**
================================================================================
video section style start
================================================================================
*/
.single-video img {
    border-radius: 25px;
}

.video-cont-wrapper .section-title h2 {
    color: var(--white-color);
}

section.video-section .owl-dots {
    text-align: center;
}

section.video-section .owl-dots button.owl-dot {
    width: 7px;
    height: 7px;
    background-color: var(--white-color);
    border-radius: 50%;
    margin: 25px 2px 0 2px;
}

section.video-section .owl-dots button.owl-dot.active {
    width: 30px;
    height: 5px;
    border-radius: 5px;
}

/**
================================================================================
video section style end
================================================================================
*/
/**
================================================================================
activity section style start
================================================================================
*/
.single-activity {
    background-color: var(--bg-color);
    text-align: center;
    transition: all 0.5s;
}

.single-activity:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--white-color);
    border-radius: 15px;
}

.single-activity .cont {
    border: 1px solid var(--highlight-color);
    border-top: none;
    padding: 15px 12px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.single-activity .cont .theme-btn a {
    padding: 7px 40px;
}

.single-activity img {
    height: 150px;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.single-activity .cont h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

/**
================================================================================
activity section style end
================================================================================
*/
/**
================================================================================
info section style start
================================================================================
*/
.nibras-info-section {
    position: relative;
    z-index: 1;
}

.nibras-info-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 350px;
    background-image: url('../images/gradient-bg.png');
    z-index: -1;
}

.nibras-info-section .section-title h2 {
    text-align: center;
    color: var(--white-color);
    margin: 30px 0 50px 0;
}

.sec-widget {
    border: 1px solid var(--highlight-color);
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 35px 25px;
}

.sec-single-cont h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0;
}

.sec-widget ul li:hover a {
    font-weight: bold;
}

.sec-widget ul li a {
    display: block;
    color: var(--sp-text-color);
    padding: 7px 0;
    transition: all 0.5s;
}

.sec-widget ul li a i {
    color: var(--highlight-color);
    margin-right: 10px;
}

/**
================================================================================
info section style end
================================================================================
*/
/**
================================================================================
magazine section style start
================================================================================
*/
.magazine-wrapper {
    max-height: 365px;
}

.two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.magazine-wrapper .small {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px;
}

.magazine-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.magazine-wrapper .single-mag h5 {
    font-size: 1.25rem;
    color: var(--black-color);
}

.magazine-wrapper .big .single-mag h5 {
    margin-top: 15px;
}

.sibebar-widget {
    text-align: center;
    padding: 0 20px 25px 20px;
    position: relative;
    z-index: 1;
}

.sibebar-widget::after {
    position: absolute;
    content: "";
    background-color: var(--bg-color);
    border: 1px solid var(--highlight-color);
    border-radius: 15px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    z-index: -1;
}

.sibebar-widget .m-w-cont {
    padding: 10px 15px;
}

.sibebar-widget .m-w-cont h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

/**
================================================================================
magazine section style end
================================================================================
*/
/**
================================================================================
project section style start
================================================================================
*/
.project-section {
    background: var(--bg-color);
}

.project-section .section-title h2 {
    text-align: center;
}

.single-project img {
    border-radius: 15px;
}

.single-project h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.reg-thumb img {
    border-radius: 15px;
}

/**
================================================================================
project section style end
================================================================================
*/
/**
================================================================================
footer style start
================================================================================
*/
footer {
    background-color: var(--footer-bg-color);
    color: var(--white-color);
}

.footer-widget {
    overflow: hidden;
}

.footer-widget img {
    width: 120px;
}

.footer-widget .sub-heading h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-widget ul li a {
    display: block;
    color: var(--white-color);
    padding: 5px 0;
}

.footer-widget ul li a:hover {
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid var(--white-color);
    padding: 25px 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom ul {
    text-align: right;
}

.footer-bottom ul li {
    display: inline-block;
}

.footer-bottom ul li a {
    color: var(--white-color);
    font-weight: bold;
}

.footer-bottom ul li a:hover {
    color: var(--highlight-color);
}

/**
================================================================================
footer style end
================================================================================
*/

/*back to top start*/
/*.back_to_top i.fa {
    color: var(--theme-color);
    font-size: 35px;
    background: #ccc;
    padding: 20px;
    position: fixed;
    right: 5%;
    bottom: 10%;
    z-index: 9999;
    border-radius: 2px;
}

i.fa.fa-arrow-up:hover {
    cursor: pointer;
    transform: rotateZ(720deg);
    transition: all 0.4s;
}*/
/*back to top end*/