@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
*{
    box-sizing: border-box;
}
:root{
	--primary:#26ABB6;
	--secondary:#E05956;
	--light:#E9F9FA;
	--dark:#031D1F;
	--text:#222222;
	--white:#ffffff;
    --black:#000000;
    --font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-family);
}
a {
    text-decoration: none;
    transition: all 0.4s;
    color: var(--primary);
}
a:hover{
    color: var(--dark);
}
::selection {
    background-color: var(--primary);
    color: var(--white);
}
h2, h3, h4, h5, h6 {
    color: var(--black);
}
section{
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
img{
    height: auto;
    width: auto;
    max-width: 100%;
}
p:last-child{
    margin-bottom: 0;
}
html .container {
    width: 1370px;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}
html .container-sm {
    width: 1270px;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}
.navbar-toggle{
    display: none;
}
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s;
    background-color: transparent;
    padding: 15px 0;
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-wrap .logo a {
    display: block;
    max-width: 125px;
}
nav.header-navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}
nav.header-navbar ul a {
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--white);
    text-decoration: none;
    display: block;
    padding:5px 14px;
}
nav.header-navbar ul li{
    position: relative;
}
nav.header-navbar ul li.active a,
nav.header-navbar ul a:hover {
    color: var(--primary);
}
nav.header-navbar ul li.active a,
nav.header-navbar ul li a:hover {
    background-color: var(--primary);
    color:white;
}
nav.header-navbar ul li a:before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transition: all 0.3s
}
nav.header-navbar ul li.active a:before,
nav.header-navbar ul li a:hover:before {
    opacity: 1;
    bottom: -6px;
    left: -6px;
}
nav.header-navbar ul li a:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-width: 2px 2px 0 0;
    opacity: 0;
    transition: all 0.3s;
}
nav.header-navbar ul li.active a::after,
nav.header-navbar ul li a:hover:after {
    opacity: 1;
    top: -6px;
    right: -6px;
}
html header .btn {
    line-height: 44px;
}
html header .btn .icon {
    height: 32px;
    width: 32px;
}
html .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background-color: var(--primary);
    border-radius: 50px;
    line-height: 50px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 0 6px 0 26px;
    border: 0;
    transition: all 0.4s;
}
html .btn .icon {
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50px;
    color: var(--black);
    transition: all 0.4s;
}
html .btn:focus-visible, html .btn:hover, html :not(.btn-check)+.btn:active {
    background-color: var(--black);
    color: var(--white);
}
html .btn:hover .icon{
    transform: rotate(45deg);
}
.hero_section{
    background-image: url(../images/hero_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding:140px 0 60px;
}
.hero_section:before {
    content: "";
    background: #000000B2;
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero_section h1 {
    font-weight: 700;
    font-size: 59px;
    line-height: 130%;
    margin-bottom: 30px;
    color: var(--white);
}
html .btn-link {
    background: transparent;
    padding: 0;
    text-decoration: none !important;
}
html .btn-link svg {
    transition: all 0.4s;
}
html .btn-link svg path {
    stroke: var(--primary);
}
html .btn-link:hover{
    background: transparent;
    color: var(--primary);
}
html .btn-link:hover svg{
    transform: rotate(45deg);
}
.stat-box {
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(16px);
    background: #FFFFFF24;
    padding: 16px;
    border-radius: 12px;
    color: var(--white);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stat-box .stat-number {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
}
.head_wrp {
    display: flex;
    align-items: center;
    font-family: Poppins;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 14px;
}
.stat-box .stat-description {
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFFE5;
    line-height: 140%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}
.stat-box span{
    color: var(--primary);
}
.title {
    margin-bottom: 40px;
}
.title h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 140%;
    margin: 0;
    color: var(--black);
}
.title h2 span{
    color: var(--primary);
}
.about_cbrs .box {
    border-right: 1px solid #0000001A;
    min-height: 362px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    transition: all 0.4s;
}
.about_cbrs .box:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    background-color: var(--primary);
    z-index: -1;
    max-height: 0;
    height: 0;
    transition:all 0.5s;
    overflow: hidden;
}
.about_cbrs .box:hover:before {
    max-height: 100%;
    height: 100%;
}
.about_cbrs .box .icon{
    color: var(--primary);
}
.about_cbrs .row .col-md-3:first-child .box{
    border-left: 1px solid #0000001A;
}
.about_cbrs .box h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 12px;
}
.about_cbrs .box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}
.about_cbrs {
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}
.about_cbrs .box .icon,
.about_cbrs .box .txt{
    transition:all 0.5s;
}
.about_cbrs .box:hover .icon,
.about_cbrs .box:hover .txt{
    filter: brightness(0) invert(1);
}
html.sticky header {
    backdrop-filter: blur(20px);
    padding: 10px 0;
    background-color: #00000094;
}
html.sticky header .logo a {
    max-width: 90px;
}
.cbrs_map {
    padding: 20px;
    border-radius: 40px;
    background-color: #EFF5F5;
    position: relative;
}
.cbrs_map .anchor {
    top: -80px;
}
section.submit_story_sec {
    background-color: var(--dark);
    background-image: url(../images/success-story-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin:0px 30px;
    border-radius: 30px;
    padding: 60px;
}
.title-white h2{
    color: var(--white);
}
.row-cols-7>* {
    flex: 0 0 auto;
    width: 14.28%;
}
section.submit_story_sec .title {
    margin: 40px 0 20px;
}
section.submit_story_sec p {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 40px;
    color: var(--white);
}
section.submit_story_sec > img {
    position: absolute;
    right: 53px;
    bottom: -100px;
}
.our_msn_bx {
    padding-top: 30px;
    transition: all 0.4s;
    border-top: 1px solid #26ABB64D;
    height: 100%;
}
.our_msn_bx >* {
    transition: all 0.4s;
}
.our_msn_bx .icon {
    background: #EFF5F5;
    height: 60px;
    width: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}
.our_msn_bx:hover .icon {
    background: var(--primary);
}
.our_msn_bx .icon svg {
    transition: all 0.4s;
}
.our_msn_bx:hover .icon svg {
    filter: brightness(0) invert(1);
}
.our_msn_bx h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    margin: 22px 0 12px;
}
.our_msn_bx p {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
}
.our_msn_sec .content_wrp {
    padding: 50px 140px 0 0px;
}
.our_msn_sec .image_wrp {
    padding: 50px 60px 0;
    border-left: 1px solid #0000001A;
    margin-left: -30px;
}
.col-sticky {
    position: sticky;
    top: 60px;
}
.our_msn_sec .image_wrp img{
    border-radius: 14px;
    width: 100%;
    height: 580px;
    object-fit: cover;
}
section.our_msn_sec .title {
    margin: 0;
}
footer .logo {
    margin-bottom: 50px;
}
footer .logo a {
    display: block;
    max-width: 172px;
    margin: 0 auto;
}
footer .copyright {
    border-top: 1px solid #00000024;
    padding: 20px 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: var(--black);
}
fieldset {
    display: flex;
    width: 880px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.form-field label {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}
fieldset .form-field {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
}
html .form-field .form-control {
    outline: none;
    border: 1px solid #00000012;
    box-shadow: 0px 4px 4px 0px #00000005;
}
.cbrs_map .maplibregl-canvas {
    position: static;
    height: 550px !important;
    display: block;
}
.cbrs_map fieldset {
    margin-bottom: 20px;
}
.cbrs_map div#map {
    border: 2px solid #26ABB6;
    border-radius: 20px;
    overflow: hidden;
}
.anchor {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    width: 100%;
}   
.cbrs_map div#map .maplibregl-ctrl-bottom-right {
    display: none;
}
section.cbrs_located_sec {
    padding-top: 40px;
}

@media (max-width:1024px){
    nav.header-navbar ul {
        gap: 10px;
    }
    nav.header-navbar ul a {
        font-size: 13px;
    }
    header .container {
        padding: 0 20px;
    }
    .header-wrap .logo a {
        max-width: 90px;
    }
    html header .btn {
        line-height: 38px;
        font-size: 13px;
        padding: 0px 6px 0 14px;
    }
    html header .btn .icon {
        height: 26px;
        width: 26px;
    }
    html.sticky header .logo a {
        max-width: 85px;
    }
    .hero_section {
        padding: 110px 0 50px;
    }
    .hero_section h1 {
        font-size: 30px;
        margin-bottom: 24px;
    }
    html .btn {
        gap: 10px;
        line-height: 44px;
        font-size: 14px;
        padding: 0 6px 0 20px;
    }
    html .form-field .form-control {
        min-width: 82px;
    }
    html .btn .icon {
        height: 32px;
        width: 32px;
    }
    html .btn-link {
        padding: 0;
    }
    .stat-box {
        padding: 12px;
        border-radius: 10px;
        min-height: 120px;
    }
    .head_wrp,
    .stat-box .stat-number {
        font-size: 22px;
    }
    .head_wrp {
        margin-bottom: 10px;
    }
    .row-cols-7>* {
        width: 25%;
    }
    .stat-box .stat-description {
        font-size: 13px;
    }
    section {
        padding: 50px 0;
    }
    .about_cbrs .box {
        min-height: 260px;
        padding: 16px;
    }
    .about_cbrs .box h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .about_cbrs .box p {
        font-size: 13px;
    }
    .about_cbrs .box .icon svg {
        width: 50px;
    }
    .title h2 {
        font-size: 28px;
    }
    .title {
        margin-bottom: 22px;
    }
    .cbrs_map {
        padding: 16px;
        border-radius: 20px;
    }
    section.submit_story_sec {
        margin: 0px 25px 0px;
        border-radius: 18px;
        padding: 30px 0;
    }
    section.submit_story_sec img {
        width: 110px;
    }
    section.submit_story_sec .title {
        margin: 25px 0 14px;
    }
    section.submit_story_sec p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    section.submit_story_sec > img {
        right: 10px;
        bottom: -46px;
        width: 210px;
    }
    section.our_msn_sec .title h2 {
        font-size: 32px;
    }
    .our_msn_sec .image_wrp {
        padding: 25px 25px 0;
        margin-left: 0;
    }
    .our_msn_sec .content_wrp {
        padding: 25px 25px 0 0px;
    }
    .col-sticky {
        top: 70px;
    }
    .our_msn_bx h3 {
        font-size: 20px;
        margin: 16px 0 10px;
    }
    .our_msn_bx p {
        font-size: 14px;
    }
    .our_msn_sec .image_wrp img {
        border-radius: 10px;
        height: 420px;
    }
    footer .logo a {
        max-width: 140px;
    }
    footer .logo {
        margin-bottom: 30px;
    }
    footer .copyright {
        padding: 16px 0;
        font-size: 14px;
    }
    .cbrs_map .maplibregl-canvas {
        height: 350px !important;
    }
    .cbrs_map div#map {
        border-radius: 12px;
    }
    .our_msn_bx {
        padding-top: 24px;
    }
    nav.header-navbar ul a {
        padding: 5px 10px;
    }
}


@media (max-width:767px){
    .navbar-toggle {
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    .navbar-toggle span {
        width: 38px;
        height: 1px;
        background-color: var(--white);
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: -10px;
        border-radius: 0;
        margin: auto;
        transition: all 0.3s;
    }
    .navbar-toggle span:nth-child(1) {
        top: -20px;
    }
    .header-navbar .navbar-toggle {
        margin-left: auto;
        margin-right: -6px;
        margin-bottom: 30px;
        margin-top: -10px;
    }
    .header-navbar .navbar-toggle span{
        width: 30px;
        height: 2px;
    }
    .menu-show .navbar-toggle span:nth-child(1) {
        top: 0;
        transform: rotate(45deg);
    }
    .menu-show .navbar-toggle span:nth-child(2) {
        width: 30px;
        transform: rotate(-45deg);
    }
    nav.header-navbar {
        position: fixed;
        right: 0;
        display: block;
        z-index: 9999;
        border: 1px solid #FFFFFF1A;
        backdrop-filter: blur(16px);
        background: #FFFFFF24;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: calc(100% - 40px);
        padding: 20px;
        transition: all 0.4s;
        overflow: auto;
        color: #fff;
        height: calc(100% - 40px);
        visibility: hidden;
        opacity: 0;
    }
    .menu-show nav.header-navbar {
        visibility: visible;
        opacity: 1;
    }
    .menu-show body{
        overflow: hidden;
    }
    header .overlay {
        background-color: #00000036;
        position: fixed;
        inset: 0;
        backdrop-filter: blur(20px);
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s;
    }
    .menu-show header .overlay{
        visibility: visible;
        opacity: 1;
    }
    nav.header-navbar ul a {
        font-size: 15px;
        display: block;
        width: 100%;
        padding: 11px 14px;
        background-color: #0000003b;
        backdrop-filter: blur(20px);
        line-height: normal;
    }
    nav.header-navbar ul a::before,
    nav.header-navbar ul a:after{
        display: none;
    }
    nav.header-navbar ul li {
        width: 100%;
        border-radius: 6px;
        overflow: hidden;
    }
    nav.header-navbar ul a:hover {
        background-color: var(--primary);
        color: #FFF;
    }
    nav.header-navbar ul {
        flex-direction: column;
        text-align: left;
        justify-content: flex-start;
        align-items: self-start;
        gap: 12px;
    }
    fieldset {
        gap: 16px;
        flex-wrap: wrap;
    }
    .form-field label {
        font-size: 13px;
    }
    fieldset .form-field {
        gap: 5px;
        flex: auto;
        flex-wrap: wrap;
    }
    .cbrs_map {
        padding: 0;
        border-radius: 0;
        background: transparent;
    }
    html .form-field .form-control {
        font-size: 14px;
    }
    html header .btn {
        line-height: 34px;
        font-size: 11px;
        padding: 0px 5px 0 15px;
        gap: 8px;
    }
    html header .btn .icon {
        height: 24px;
        width: 24px;
        padding: 7px;
    }
    html .container-sm,
    html .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-wrap .logo a {
        max-width: 85px;
    }
    .menu-show header {
        height: 100dvh;
    }
    html.sticky header .logo a {
        max-width: 80px;
    }
    .hero_section h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .hero_section {
        padding: 100px 0 40px;
    }
    html .btn {
        gap: 8px;
        line-height: 38px;
        font-size: 13px;
        padding: 0 5px 0 18px;
    }
    html .btn .icon {
        height: 28px;
        width: 28px;
        padding: 9px;
    }
    .title h2 {
        font-size: 24px;
    }
    .about_cbrs .box {
        min-height: auto;
        padding: 16px;
        border-left: 1px solid #0000001A;
        border-bottom: 1px solid #0000001A;
    }
    .about_cbrs .box h4 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .cbrs_located_sec .title h2 br {
        display: none;
    }
    .cbrs_located_sec .title h2 {
        font-size: 20px;
    }
    section.submit_story_sec {
        margin: 0px 20px 0px;
        border-radius: 12px;
        padding: 25px 0;
    }
    section.submit_story_sec img {
        width: 90px;
    }
    section.submit_story_sec h2 {
        font-size: 22px;
        width: 80%;
        margin: 0 auto;
    }
    section.submit_story_sec .title {
        margin: 24px 0 12px;
    }
    section.submit_story_sec p {
        font-size: 14px;
        margin-bottom: 22px;
    }
    section.submit_story_sec > img {
        right: 0px;
        bottom: -33px;
        width: 110px;
    }
    .our_msn_sec .content_wrp {
        padding: 30px 0;
    }
    section.our_msn_sec .title h2 {
        font-size: 30px;
    }
    .our_msn_sec .image_wrp {
        padding: 0;
    }
    .our_msn_sec .image_wrp img {
        border-radius: 8px;
        height: 380px;
    }
    .our_msn_bx h3 {
        font-size: 18px;
        margin: 14px 0 8px;
    }
    footer .logo {
        margin-bottom: 20px;
    }
    footer .logo a {
        max-width: 110px;
    }
    footer .copyright {
        padding: 14px 0;
        font-size: 12px;
    }
    .cbrs_map fieldset {
        gap: 14px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .cbrs_map .maplibregl-canvas {
        height: calc(100dvh - 250px) !important;
    }
    .cbrs_map div#map {
        border: 1px solid #26ABB6;
        border-radius: 8px;
    }
    nav.header-navbar ul li.active a{
        background-color: var(--primary);
        color: var(--white);
    }
    .our_msn_bx {
        text-align: center;
    }
    .our_msn_bx .icon {
        height: 50px;
        width: 50px;
        justify-content: center;
        padding: 10px;
        margin: 0 auto;
    }
    .about_cbrs .box .icon svg {
        width: 44px;
        height: 44px;
    }
    .row-cols-7>* {
        width: 50%;
        margin-top: 14px;
        padding: 0 7px;
    }
    .hero_section .row-cols-7 {
        margin: 0 -7px;
    }
    .head_wrp, .stat-box .stat-number {
        font-size: 20px;
        text-align: left;
    }
    .stat-box {
        align-items: flex-start;
        text-align: left;
    }
    .stat-box .stat-description {
        font-size: 12px;
    }
}