@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {

    --montserrta-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--montserrta-family);
    background: #fff;
    overflow-x: hidden;

}

p {
    margin-bottom: 0px;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #666;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
}

.btn:hover {
    color: #fff !important;
}


a {
    color: #000;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}

a:hover {
    color: initial;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999;
    border-radius: 0px !important;
    background: #000 !important;
    transition: 0.5s all;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(106, 113, 124, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

@keyframes swip_down {
    from {
        transform: translate(0px, -50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.header-main {

    padding: 10px 0;
    position: relative;
    background: #000;
    top: 0;
    width: 100%;
    z-index: 99;
}

.header-main .container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.header-main .logo-wrapper {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}

.header-main .logo-wrapper .logo-box {
    background: #e3f7ff;
    padding: 20px 10px;
    border-radius: 0px 0px 20px 20px;
    margin-top: -15px;
}

.header-main .logo-wrapper img {
    width: 220px;
}

.header-main .header-bottom .navbar {
    /*    padding-left: 30px !important;*/
    padding: 0px;
    /*    background: #00AEEF;*/
    /*    border-radius: 20px 0px 0px 0px;*/
}

.header-main .header-bottom .navbar .nav-link {
    font-size: 14px;
    color: #fff;
    padding: 15px 0px;
    position: relative;
    font-weight: 500;
    position: relative;
}

.header-main .header-bottom .nav-link.active {
    color: var(--yellow-color);
}

.header-main .header-bottom .nav-link:hover,
.header-main .header-bottom .nav-link.active {
    color: var(--yellow-color);
}

.header-main .header-bottom .nav-item {
    position: relative;
    padding-right: 35px;
}

@keyframes swip_left {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: var(--theme-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#myBtn::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

#myBtn:hover {
    background-color: var(--theme-color);
}

@media (992px <=width <=1199.98px) {
    .web-view {
        display: block;
    }

    .mobile-view {
        display: none;
    }

    .mobile-header {
        padding: 10px 0px;
        position: absolute;
        width: 100%;
        top: 0%;
        z-index: 99;
    }

    .mobile-header .logo img {
        width: 200px;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
}

@media (768px <=width <=991.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        position: absolute;
        top: 0%;
        width: 100%;
        z-index: 99;


    }

    .mobile-header .logo img {
        width: 220px;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color:
            var(--theme-color);
        font-size: 40px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content:
            flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }

}
@media (992px <=width <=1199px) {
.use-listed-main .use-list-all{
    padding: 32px 43px !important;
}
.use-listed-main h3{
    font-size: 25px !important;
    margin-bottom: 20px !important;
}
.use-listed-main .use-listedd ul{
    margin-bottom: 37px !important;
}
.use-listed-main .use-listedd li{
    font-size: 14px !important;
    margin-bottom: 10px !important;
}
.use-listed-main .use-im img{
    max-width: 480px !important;
}
}
@media (1400px <=width <=1920px) {
    .banner-main .banner-text p.bigfnt{
        font-size: 24px !important;
    }
    .banner-main .banner-text h3{
        font-size: 40px !important;
    }
}

@media (max-width: 991px) {

    .dis-n {
        display: none !important;
    }

    .dis-b {
        display: block !important;
    }

    .banner-main .banner-text h3 {
        font-size: 25px !important;
    }

    .banner-main .banner-text p {
        font-size: 16px !important;
    }

    .banner-main .banner-text h4 {
        font-size: 18px !important;
    }

    .banner-main .banner-text {
        margin-right: 10px !important;
    }

    .why-partners-main h3 {
        font-size: 25px !important;
    }
    .brd-i{
        border: unset !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }
    #counter .item{
        margin-bottom: 15px;
    }
    .built-result .built-result-inside ul{
    display: unset !important;
}
.built-result .built-result-inside li{
    margin-bottom: 15px !important;
}
.use-listed-main .use-list-all{
    border-radius: 15px 15px 0 0  !important;
}
.use-listed-main .use-list-all{
    padding: 25px !important;
}
.use-listed-main .use-im img{
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 0 15px 15px !important;
}
}

@media(width <=767px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        /* background: #fff; */
        position: absolute;
        top: 0;
        width: 100%;
    }

    .mobile-header .logo img {
        width: 220px;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 250px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 50px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: #0071bc !important;
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
.banner-main{
    padding: 100px 0 30px 0 !important;
}
.contact-detail-forms .contact-forms-only h3{
    margin-bottom: 18px !important;
}
.built-result, .why-partners-main, .cm-seg, .faq-section {
    padding: 30px 0 !important;
}
.built-result h3, .use-listed-main h3, .cm-seg h3 ,.sample-download .sample-download-inside h3,.support-heading h3{
    font-size: 30px !important;
}
.built-result h4, .built-result .built-result-inside h5, .sample-download .sample-download-inside h4{
    font-size: 18px !important;
}
.built-result p, .use-listed-main .use-listedd li, .faq-section .accordion-box .block .content .text, .sample-download .sample-download-inside p, .sample-download .sample-download-inside li{
    font-size: 16px !important;
}


.sample-download-inside img{
    width: 100% !important;
}
.sample-download .sample-download-inside{
    margin-right: 0 !important;
}
.faq-section .accordion-box .block .acc-btn h4{
    font-size: 18px !important;
}
.faq-section .accordion-box .block .content .text{
    padding-right: 0 !important;
}
footer ul{
    display: inherit !important;
    margin-bottom: 10px;
}
}

.marg-btm-20 {
    margin-bottom: 20px !important;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .header-main .header-bottom .nav-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-main .logo-wrapper .logo-box {
        margin-top: -40px;
    }

    .header-main .header-top .volunteer-logo {
        font-size: 18px !important;
    }
}

@media (max-width: 575px) {
    .wid-50 {
        width: 50% !important;
    }

    .contact-detail-forms {
        padding: 40px 20px !important;
    }

    .enq-btns {
        padding: 12px 13px !important;
    }

    .container {
        max-width: 90% !important;
    }
}

.w-100 {
    width: 100%;
}
 .container {
        max-width: 90% !important;
    }

.mean-container .mean-nav ul li ul li {
    padding: 8px 0;
}

.mean-container .mean-nav ul li ul li a {
    padding: 5px 15%
}

.clr-fff {
    color: #fff;
}

.banner-main {
  background: linear-gradient(180deg, #6049CD -1.56%, #091E42 75.21%);
    padding: 50px 0 30px 0;
}

.banner-main .banner-text {
    margin-right: 40px;
}

.banner-main .banner-text h3 {
   color: #FFF;

font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 15px;
}
.banner-main .banner-text p {
    color: #FFF;
    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 141.9%;
    /* 25.542px */
    margin-bottom: 40px;
}
#counter{
  
}
.brd-i{ border-right: 1px solid #fff;
    position: relative;
    padding: 0 10px;
}

#counter .item .count{
  color: #FFF;

font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 141.9%; /* 42.57px */
}

#counter .item p{
  color: #FFF;

font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 141.9%; /* 25.542px */
margin-bottom: 0;
}

.padd-0 {
    padding: 0;
}

.padd-r-o {
    padding-right: 0;
}

.contact-detail-forms {
   
   
}
.bg-cnt{
  border-radius: 10px;
background: rgba(0, 0, 0, 0.51); 
 padding: 40px 30px; 
}.bg-cnt-1{
  
 padding: 40px; 
}
::placeholder{
    color: #000;
}
.contact-detail-forms hr {
    color: #fff;
}

.contact-detail-forms p {
    color: #fff;
}

.contact-detail-forms .contact-forms-only h3 {
    color: #fff;

    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.contact-detail-forms .contact-forms-only p {
    color: #FFF;
    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 30px;
}

.contact-detail-forms .contact-forms-only .form-inner .form-group input[type='text'],
.contact-detail-forms .contact-forms-only .form-inner .form-group input[type='email'],
.contact-detail-forms .contact-forms-only .form-inner .form-group textarea,
.contact-detail-forms .contact-forms-only .form-inner .form-group select,
.contact-detail-forms .contact-forms-only .form-inner .form-group input[type='date'] {
    position: relative;
    width: 100%;
    height: 52px;
    background: #fff;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0px;
    border-radius: 5px;
    box-shadow: unset;
    transition: all 500ms ease;
    margin-bottom: 20px;
    border: unset;
}
.contact-detail-forms .contact-forms-only .form-inner .form-group textarea {
  height: 100px;
  resize: none;
  border-radius: 5px;
}
.contact-detail-forms .contact-forms-only .form-inner .form-group input:focus,
.contact-detail-forms .contact-forms-only .form-inner .form-group textarea:focus {
    border-color: unset;
}

.enq-btns {
    background: linear-gradient(92deg, #e416e5 6.33%, #7e04d5 93.75%);
    border: none;
    color: #fff !important;
    padding: 12px 40px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 8px;
    white-space: normal;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container label {
    margin-left: 10px;
    margin-bottom: 0;
    cursor: pointer;
    color: #fff;

    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.error-message {
    color: red;
    display: none;
    margin-top: 5px;
    margin-left: 28px;
}

.honeypot {
    display: none !important;
}

:placeholder {
    color: #000;
    font-weight: 500;
}

.why-partners-main {
    padding: 40px 0;
}

.why-partners-main h3 {
    color: #000;

font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 35px;
}



.why-partners-main p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 141.9%;
    /* 25.542px */
    margin-bottom: 30px;
}

.why-partners-main .why-parner-insided {
    border-radius: 10px;
background: #F9F2FF;
    padding: 25px;
    margin-bottom: 20px;
}

.why-partners-main .why-parner-insided p {
   color: #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.why-partners-main .why-parner-insided svg{
    margin-bottom: 15px;
}
.why-partners-main .why-parner-insided h4 {
   color: #000;

font-size: 23px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 15px;
}

.built-result{
    padding: 50px 0;
}
.built-result h3{
color: #000;
font-family: Montserrat;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 20px;
}

.built-result h4{
  color: #000;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 150%; /* 36px */ 
margin-bottom: 20px; 
}
.built-result p{
  color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150.9%; /* 27.162px */ 
margin-bottom: 20px; 
}
.built-result .built-result-inside {
border-radius: 10px;
background: #F9F2FF;
padding: 30px 30px;
margin-bottom: 30px;
}
.built-result .built-result-inside h5 {
  color: #000;
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 150.9%; /* 30.18px */ 
margin-bottom: 20px; 
}
.built-result .built-result-inside .bult-inside-icon{
 display: flex;

gap: 15px;   
}
.built-result .built-result-inside .bult-inside-icon p{

font-weight: 600;
font-size: 16px;
}
.use-listed-main h3{
  color: #FFF;
font-family: Montserrat;
font-size: 35px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 25px;

}

.use-listed-main .use-listedd ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
   
}
.use-listed-main .use-list-all{
  padding: 40px 43px;
  background: rgba(7, 35, 82, 1);
  border-top-left-radius:15px;
  border-bottom-left-radius: 15px;
}
.use-listed-main .use-im img{
  max-width: 612px;
  height: 100%;
}

.use-listed-main .use-listedd li {
  color: #FFF;
font-family: Montserrat;
font-size: 17px;
font-style: normal;
list-style: disc;
font-weight: 700;
margin-left: 16px;
margin-bottom: 16px;
}

.cm-seg{
    padding: 50px 0;
}
.cm-seg h3{
color: #000;
font-family: Montserrat;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 30px;
}

.cm-seg ul li{
    color: #000;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 158%; /* 28.44px */
margin-bottom: 20px;
list-style: disc;
margin-left: 16px;
}
.cm-seg ul li::marker{
    color: #a30bdb;
}
.cm-r{
    background: #f9f9f9;
  align-items: center;
  border-radius: 10px;
}
.sample-download{
    background: linear-gradient(117deg, #6D08BE 34.92%, #01284C 95.81%);
    padding: 50px 0 0 0;
}
.sample-download .sample-download-inside{
margin-right: 40px;
}
.sample-download .sample-download-inside h3{
  color: #FFF;
font-family: Montserrat;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 10px;  
}
.sample-download .sample-download-inside h4{
    color: #FFF;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 20px;
}
.sample-download .sample-download-inside h5{
   color: #FFF;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 150.9%; /* 36.216px */ 
margin-bottom: 15px;
}
.sample-download .sample-download-inside li{
    color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;

margin-bottom: 15px;
}
.sample-download .sample-download-inside p{
    color: #FFF;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150.9%; /* 27.162px */
margin-bottom: 20px;
}
.faq-section {
  position: relative;
  padding: 50px 0px 50px 0px;
}
.support-heading h3{
color: #000;
font-family: Montserrat;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: capitalize;
margin-bottom:20px;
}

.faq-section .accordion-box{
  position:relative;
  padding-left: 0;
}

.faq-section .accordion-box .block{
  position:relative;
  margin-bottom: 15px;
  
  border-radius: 0px;
  padding: 0px 20px 0 0;
  list-style: none;
  border-bottom: 1px solid #A7A7A7;
}

.faq-section .accordion-box .block:last-child{
  margin-bottom: 0px;
  border-bottom: unset !important;
}
    
.faq-section .accordion-box .block .acc-btn h4{
  position:relative;
  display: block;
  font-size:20px;
  font-weight: 600;
  color:#000;
  
  padding: 20px 30px 19px 0px;
  cursor:pointer;
  transition: all 500ms ease;
}

.faq-section .accordion-box .block .acc-btn.active h4{
  color: #000;
  padding-top: 20px;
 
}

.faq-section .accordion-box .block .acc-content{
  position:relative;
  display:none; 
  padding-top: 6px;
  padding-bottom: 27px;
}

.faq-section .accordion-box .block .acc-content.current{
  display:block;  
}

.faq-section .accordion-box .block .content .text{
  position:relative;
  display: block;
  font-size: 17px;
  color: #000;
  font-weight: 400;
  padding-right: 40px;
  
}

.faq-section .accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  top: 21px;
  right: 25px;
  font-size: 14px;
  color: #000;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: all 500ms ease;
  z-index: 1;
}

.faq-section .accordion-box .block .acc-btn.active .icon-outer{
  color: #fff;
}
.faq-section .accordion-box .block .acc-btn.active .icon-outer i{
background: #ECECEC;
    padding: 5px;
    border-radius: 50%;
}
.faq-section .accordion-box .block .acc-btn .icon-outer i{
  background: #ECECEC;
  padding: 5px;
  border-radius: 50%;
   font-size: 12px;
}
.faq-section .accordion-box .block .acc-btn.active .icon-outer i:before{
  position: relative;
  background: #ECECEC;
  font-size: 12px;
  color: #000;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin: 0px;
  content: "\f068";
}

footer{
    background: #000;
  padding: 20px 0;
}
footer ul{
    display: inline-flex;
    gap: 20px;
    margin-bottom: 0;
}
footer ul li a{
    color: #fff !important;margin-bottom: 0;
}