/***** General CSS *****/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@font-face {
    font-family: 'Coldiac Free';
    src: url('../fonts/ColdiacFree-Regular.woff2') format('woff2'),
        url('../fonts/ColdiacFree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coldiac Free';
    src: url('../fonts/ColdiacFree-Regular.woff2') format('woff2'),
        url('../fonts/ColdiacFree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
        url('../fonts/BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 22px;
  color: #4f4f4f;
  background: #fff;
}

a {
    text-decoration: none;
    color: #000;
}
a:hover, a:focus {
    text-decoration: none;
}
a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    width:100%;
}


input[type="text"]:focus, textarea:focus, input[type="password"]:focus, select:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="number"], textarea, input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    padding: 0;
    margin:0;
    list-style-type: none;
}

h1, h2, h4, h5, h6 {
     font-family: 'Coldiac Free';
     display: block;

 }
h3  
{
     font-family: 'Bebas Neue';  
}

  p{
    font-family: 'Poppins', sans-serif;
  }

.center-col {
    margin: 0 auto;
    display: table;
    float: none;
}

.all-section {
  padding: 80px 0;
}

.flexRow{
    display: flex;
    align-items: center;
}
 h3.theme-heading {
  font-family: 'Bebas Neue';
    font-size: 70px;
    color: #6185c7;
    margin-bottom: 30px;
}

.theme-heading p {
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #4d4d4d;
}

.theme-btn {
    color: #3b1813;
    display: inline-block;
    padding: 15px 40px;
    margin: 15px 0px;
    background: #fff;
    border-radius: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid #df4c1e;
}
.theme-btn:hover{
    background: #df4c1e;
}


/*BEGIN: EVENT SECTION*/
.event-box {
    display: flex;
    margin: 40px 0;
}
.event-content {
    background: #6285c7;
    padding: 60px;
}
.event-content p.event-date {
    color: #fff;
    font-size: 14px;
}

.event-content {
    color: #fff;
}

.event-content p.event-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.event-content p.event-text {
    font-size: 14px;
    line-height: 27px;
}
.event-content a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding-top: 25%;
}
.event-content a:hover{
    color: #0e1f47;
}
/*END: EVENT SECTION*/

/*BEGIN: BANNER SECTION*/
section.main-banner {
    position: relative;
}

.main-banner .banner-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.main-banner .banner-content h2 {
    font-size: 81px;
    color: #cfe5f7;
    text-transform: uppercase;
}

.main-banner .banner-content p {
    font-size: 18px;
    color: #fff;
    line-height: 26px;
    margin: 12px 0;
}

 a.brown-btn {
    background: #f9d7b8;
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    border-radius: 30px;
    margin-right: -14px;
    border: 2px solid #f9d7b8;
}
a.trans-btn {
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    border-radius: 30px;
    margin: 30px;
    color: #fff;
    border: 2px solid #fff;
}

/*END: BANNER SECTION*/
/*BEGIN: HEADER */
.login-btn a {
    background: #6185c7;
    color: #fff;
    text-transform: capitalize;
    border-radius: 30px;
}
.nav>li .login-btn a  {
    padding: 10px 50px;
}
ul.nav.navbar-nav {
    margin: 15px 0;
}
.logo{
    width: 50%;
}
header {
    position: absolute;
    width: 100%;
    padding: 15px 0;
}
header .navbar-nav>li>a {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 22px;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background: none;
    color: #6185c7;
}
/*END: HEADER*/

/*BEGIN: BOX SECTIOn*/

.info-box {
    text-align: center;
    background: #fff;
    padding: 20px;
    min-height: 477px;
    padding-top: 15%;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    position: relative;
}

section.box-section {
    margin-top: -16%;
}
.info-box img {
    width: 45%;
    margin: 0 auto;
    padding-bottom: 30px;
}
.info-box:before {
    content: '';
    position: absolute;
    width: 92%;
    height: 200px;
    z-index: -1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfe5f7+0,8bc7f4+9,7fc1f4+100&0+1,0.55+100 */
    background: -moz-linear-gradient(top,  rgba(207,229,247,0) 0%, rgba(199,226,247,0) 1%, rgba(139,199,244,0.04) 9%, rgba(127,193,244,0.55) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(207,229,247,0) 0%,rgba(199,226,247,0) 1%,rgba(139,199,244,0.04) 9%,rgba(127,193,244,0.55) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(207,229,247,0) 0%,rgba(199,226,247,0) 1%,rgba(139,199,244,0.04) 9%,rgba(127,193,244,0.55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cfe5f7', endColorstr='#8c7fc1f4',GradientType=0 ); /* IE6-9 */
    opacity: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
}
.info-box:hover:before{
    opacity: 1;
}
.info-box h3 {
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 500;
    color: #0e1f47;
}

.info-box p {
    font-size: 14px;
    padding: 10px 0;
}
.info-box a.brown-btn {
    background: #f9d7b8;
    display: inline-block;
    width: 60%;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
    margin: 10px 0;
    border: 2px solid #f9d7b8;
}
/*END: BOX SECTIOn*/

/*BEGIN:ABOUT SECTION*/

.about-content p {
    font-size: 14px;
    line-height: 27px;
    padding: 6px 0;
}
.about-content a.brown-btn {
    background: #6185c7;
    width: 29%;
    padding: 15px;
    margin: 20px 0;
    border: 2px solid #6185c7;
    font-weight: bold;
    color: #fff;
}
section.about-section{
    position: relative;
}
section.about-section:before {
    content: '';
    position: absolute;
    width: 92%;
    height: 200px;
    z-index: -1;
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    height: 1000px;
    bottom: 12%;
    left: 0;
    width: 100%;
}
/*END: ABOUT SECTION*/

/*BEGIN: VIDEO SCETIOn*/

.video-content img {
    width: 80%;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
}

.video-content figure {
    position: relative;
}

.video-content figure a {
    font-size: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 100%;
    text-align: center;
    -webkit-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    position: absolute;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-content article h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #6185c7;
    text-align: center;
    margin-bottom: 28px;
}

.video-content article p {
    font-size: 15px;
    line-height: 29px;
    padding: 6px 0;
    text-align: center;
}
.video-content article {
    margin-top: 10%;
}

/*END: VIDEO SECTION*/

/*BEGIN: TEAM SECTIOn*/
.team-box p.mem-name {
    color: #bfddf5;
    font-size: 20px;
    font-weight: bold;
}
.team-box:focus{
    outline: none;
}
.team-box p.mem-post {
    font-size: 15px;
    color: #fff;
}
.team-box li {
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #fff;
}
.team-box .team-img{
    position: relative;
    padding: 0;
    margin:0;
}
.team-box{
    position: relative;
}
.team-box article {
    position: absolute;
    bottom: 32px;
    left: 16px;
    width: 82%;
    padding: 10px;
    opacity: 0;
    border-radius: 10px;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 3%, rgba(0,0,0,0.01) 5%, rgba(0,0,0,0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 3%,rgba(0,0,0,0.01) 5%,rgba(0,0,0,0.65) 100%);
    /* background: linear-gradient(to bottom, rgba(0,0,0,0) 3%,rgba(0,0,0,0.01) 5%,rgba(0,0,0,0.65) 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.team-box:hover article{
    opacity: 1;
}

.team-content p.head {
    font-size: 24px;
    color: #6185c7;
    font-weight: 600;
    margin-bottom: 20px;
}
.team-content p {
    line-height: 28px;
}
.team-section  h3.theme-heading {
    text-align: center;
    margin-bottom: 55px;
}
.team-section .slick-next:before, .team-section .slick-prev:before {
    font-size: 30px;
    background: #6185c7;
    color: #fff;
         padding: 10px 12px;
    border-radius: 100%;
        opacity: 0.55;
    }
   .team-section .slick-prev:before{
        background: #f9d7b8;
    }
 .team-section   .slick-next:before {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
}

 .team-section .slick-prev:before {
    content: "\f053";
    font: normal normal normal 14px/1 FontAwesome;
}
.team-section .slick-prev {
    left: auto;
    right: -7%;
    top: 55%;
}
.team-section .slick-next {
    right: -14%;
    top: 55%;
}
.pd-0{
    padding: 0;

}
section.team-section {
    position: relative;
}
section.team-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/team-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

/*END: TEAM SECTION*/

/*BEGIN : RECENT SECTION*/
.recent-box h2 {
    font-size: 27px;
    color: #353535;
    font-family: 'Poppins', sans-serif;
}

.recent-box p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 28px;
}

.recent-box a {
    color: #353535;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
.recent-text {
    padding: 20px;
    border-bottom: 9px solid transparent;
    background: #fff;
}
.recent-box:hover .recent-text{
    border-bottom: 9px solid #f9d7b8;
}

section.recent-section {
    background: #6185c7;
}
.recent-box.hvr-grow {
    padding: 10px 15px;
}
.recent-section h3.theme-heading {
    color: #fff;
    text-align: center;
        margin-bottom: 40px;
}
/*END: RECENT SECTIOn*/


/*BEGIN: REVIEW SECTIOn*/
.review-section h3.theme-heading {
    text-align: center;
    }
.test-div img {
    width: 10%;
}
.test-div img.comma {
        filter: grayscale(100%);
}
.review-section .test-div p.comment {
    padding-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #717171;
}
.review-section .test-div .media-body {
    padding: 10px;
}
.review-section .test-div .media-body p {color: #008ac5;
      font-family: 'Roboto', sans-serif;
    font-size: 15px;
}
.review-section .test-div .rev-sec{
  padding-top: 20px;
}
.review-section .test-div .stars li i {
    color: #ecce52;
    font-size: 20px;
}

.test-div:hover img.comma{
      filter: grayscale(0%);

}
.review-section .test-div .stars li {
    padding: 0;
    margin: 0;
}
.review-section .test-div .media-body h4 {
  color: #323232;
   font-family: 'Roboto', sans-serif;
    font-size: 15px;
}
.review-section .test-div:hover{
  -webkit-box-shadow: 11px 11px 93px -32px rgba(133,133,133,1);
-moz-box-shadow: 11px 11px 93px -32px rgba(133,133,133,1);
box-shadow: 11px 11px 93px -32px rgba(133,133,133,1);
border: 2px solid transparent;
}
.review-section .test-div {
    border: 2px solid #f4f4f4;
    padding: 30px;
    margin: 30px 10px;
}
.review-section .slick-dots li button:before {
    font-family: slick;
    font-size: 45px;
}
/*END: REVIEW SECTIOn*/

/*BEGIN: FOOTER SECTIOn*/
footer.footer {
    background: #6185c7;
}

.footer-links img{
    width: 70%;
    margin-bottom: 30px;
}
.contact-footer li {
    display: flex;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
}
.contact-footer li span i {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}
.contact-footer li  a {
    color: #fff;
    font-size: 15px;
}
footer .lists {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.list-links li {
    padding: 7px 0;
    color: #fff;
}
ul.list-links li a {
    color: #fff;
    font-size: 15px;
    margin-left: 5px;
}
.footer-links h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 25px;
}
footer form.search-bar {
    display: flex;
    align-items: center;
    color: #fff;
}
.footer-links.sub-links input[type="text"] {
    padding: 12px;
    border-radius: 30px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 100%;
}
.footer-links.sub-links input[type="text"]::placeholder{
    color: #fff;
}
.footer-links.sub-links button {
    background: #cae3f7;
    border: none;
    padding: 12px;
    border-radius: 30px;
    position: absolute;
    right: 15px;
    width: 33%;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}
.footer-links.sub-links p {
    color: #fff;
    margin: 18px 0;
}
.footer-links.sub-links {
    border-bottom: 1px solid #fff;
    margin-bottom: 10%;
}
.social-icons a {
    color: #fff;
    font-size: 22px;
}
.footer-links .images img {
    width: 100%;
    margin: 0;
    padding: 5px;
}
.no-pad{
    padding: 0;
}
footer ul.list-links li a:hover{
    color: #0e1f47;
}
footer .social-icons a:hover{
    color: #0e1f47;
}
section.copyright-sec {
    background: #000e1c;
    color: #fff;
    padding: 20px 0;
}

/*END: FOOTER SECTIOn*/

/*BEGIN: BOTTOM SECTION*/
section.about-inner:before {
    bottom: -24%;
}
section.bottom-section {
    background: #6185c7;
    margin-bottom: 10%;
}

.btm-text h2 {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 40px;
}

.btm-text p {
    color: #fff;
    font-size: 16px;
    line-height: 29px;
    padding: 10px 0;
}
.btm-text {
    padding: 30px;
}
.inner-banner .banner-content h2 {
    font-size: 70px;
}
/*END: BOTTOM SECTION*/

/*BEGIN: LOGIN FORM */
.account-section .login-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.account-section .form-group h3 {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}
.account-section .form-group input.form-control {
    border-radius: 0;
    padding: 23px;
}
.account-section .form-group button.brown-btn {
    background: #0e1f47;
    padding: 15px;
    font-size: 16px;
    margin: 20px 0;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
     border-radius: 30px;
       width: 40%;
}

form.login-form {
    background: #fff;
    -webkit-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 28px -16px rgba(0,0,0,0.75);
    padding: 40px;
}
form.login-form a.forget-btn {
    text-decoration: underline;
    font-size: 15px;
    margin-left: 15px;
}
p.form-desc {
    padding-left: 15px;
}

.account-section .register-form .form-group button.brown-btn {
    background: #6185c7;
    border: none;
    width: 53%;
    margin-right: 15px;
}
form.register-form.login-form {
    background: none;
    box-shadow: none;
}
.account-section form.register-form.login-form h3 {
    margin-bottom: 30px;
}
/*END: LOGIN FORM*/

/*BEGIN: CONTACT SECTION*/
.conatct-inner h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #000;
    text-align: center;
    position: relative;
}
.conatct-inner h4:after {
    content: '';
    position: absolute;
    width: 111px;
    background-color: #6185c7;
    height: 3px;
    bottom: 20px;
    left: 10%;
}
section.contact-section:before {
    bottom: 34%;
}
.conatct-inner iframe{
    padding: 80px 0;
}
.contact-section h3, .contact-section h4{
    font-family: 'Poppins', sans-serif;
}
.contact-section .left-contact h3 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 50px;
    position: relative;
}
.contact-section .left-contact h3:after {
    content: '';
    position: absolute;
    width: 111px;
    background-color: #6185c7;
    height: 3px;
    bottom: auto;
    left: 0;
    top: -17px;
}
.right-contact .add-section h3 {
    font-size: 29px;
    color: #000;
    margin-bottom: 15px;
}
.right-contact .add-section h3 span{
color: #000;
}
.right-contact .add-section p {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
}
.right-contact .add-section span {
    color: #000;
}
.right-contact .add-section h4 {
    color: #6185c7;
    margin: 25px 0;
}
.conatct-inner p {
    font-size: 15px;
    font-weight: 400;
    width: 40%;
    margin: 0 auto;
    text-align: center;
}
.call-section p {
    color: #000;
    font-weight: 900;
    font-size: 20px;
}


.call-section p.act-call {
    color: #000;
    font-weight: 900;
    font-size: 20px;
}
.call-section p.phone {
    color: #6185c7;
    font-weight: 500;
    margin: 25px 0px 0px 0px;
    font-size: 27px;
}
.call-section p.call-head {
    color: #000;
    font-size: 21px;
    font-weight: 700;
}
.call-section .time {
    margin: 10px 0;
}
.time p {
    font-weight: 500;
    font-size: 18px;
    line-height: 35px;
}
p.follow {
    font-size: 24px;
    color: #6185c7;
    margin: 20px 0;
    font-weight: 500;
}
.follow-sec ul li a {
    font-size: 25px;
    color: #6185c7;
}
.follow-sec ul li a:hover{
    color: #0e1f47;
}
.follow-sec {
    margin: 25px 0;
}
.mg-top{
    margin-top: 30px;
}

.message-form input.form-control {
    background: #f6f6f6;
    padding: 20px;
}
.message-form textarea.form-control {
    resize: none;
        background: #f6f6f6;
    padding: 20px;
}

.event-section .title{
    text-align:center;
}

.event-section .title p {
    font-size: 19px;
}

button.mess-btn {
    background: #0e1f47;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-size: 17px;
    padding: 10px 15px;
    width: 46%;
    text-align: center;
    border:none;
}
button.mess-btn:hover{
    background: #6185c7;
}
/*END: CONTACT SECTION*/

/* BEGIN:DONATIONS SECTION */
.donation-sec {
  background: url(../images/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 190px;
  margin-top: -50px;
}
.donation-sec .right-side {
    padding-left: 15%;
}
.donation-sec h3 {
  color: #6185c7;
  font-size: 31px;
  padding: 10px 0px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
p.donatin-slider {
  color: #333333;
  margin: 0;
  font-size: 16px;
  padding: 20px 0px;
  margin-bottom: 25px;
}
.donatin-slider {
  position: relative;
}
.donatin-slider:before {
  position: absolute;
  content: "";
  bottom: -5px;
  height: 10px;
  width: 100%;
  border: 1px solid #cccccc;
  background: #fff;
}
.donatin-slider:after {
  position: absolute;
  content: "";
  bottom: -5px;
  height: 10px;
  left: 0;
  width: 20%;
  border: 1px solid #0e1f47;
  background: #0e1f47;
}
.donations-contents p {
  color: #333333;
  margin: 0;
  font-size: 13px;
  padding: 0px 0px 20px;
}
.donation-sec .prices-list button {
  color: #333333;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0;
  width: 90px;
  height: 40px;
  font-size: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.donation-sec .prices-list button:hover {
  background: #0e1f47;
  color: #fff;
}
.donation-sec label {
  color: #333333;
  font-size: 15px;
  display: block;
  padding: 20px 0px 10px;
}
.donation-sec input[type="text"] {
  display: block;
  width: 100%;
  border: 1px solid #cccccc;
  height: 40px;
  padding: 10px 10px;
  border-radius: 5px;
}
.donation-sec h5 {
  font-size: 18px;
  color: #333333;
  text-transform: initial;
  font-family: "Poppins";
  padding: 10px 0px;
}
.donation-sec h5 span {
  color: #131c49;
  padding-left: 10px;
}
.donation-sec button {
  background: #6185c7;
  width: 40%;
  display: block;
  height: 50px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-top: 5%;
}
.donation-sec button:hover{
    background: #0e1f47;
}
.right-side li {
  color: #333333;
  font-size: 16px;
  padding-bottom: 20px;
  position: relative;
  padding-left: 10px;
  margin-left: 20px;
}
.right-side li p {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 20px 0px 10px;
}
p.help {
  font-size: 13px;
  color: #333333;
  margin-right: 12%;
}
.right-side li:before {
  position: absolute;
  content: "\f111";
  font-family: fontawesome;
  left: -20px;
  top: 0;
  bottom: 0;
  color: #6185c7;
  font-size: 15px;
}
/* END:DONATION SECTION */
/* BEGIN:EVENT-DETAIL SECTION */
.event-sec {
  background: url(../images/about-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.event-sec h3 {
  color: #000000;
  font-size: 60px;
  font-weight: 600;
  padding-bottom: 30px;
  font-family: "Poppins";
  padding-right: 40px;
}
.event-image {
  margin: 40px 0px 30px;
}
.event-sec h5 {
  font-size: 16px;
  margin-top: 5%;
  margin-bottom: 20px;
  color: #000;
  font-family: "Poppins";
}
.event-sec h5 span {
  color: #666666;
}
.event-sec h4 {
  color: #000000;
  font-size: 30px;
  font-family: "Poppins";
  line-height: 44px;
  margin: 20px 0px;
}
.event-sec p {
  color: #666666;
  font-size: 18px;
  padding: 10px 0px;
}
.event-sec h6 {
  color: #000;
  font-size: 24px;
  font-family: "Poppins";
  margin-top: 5%;
}

/*Faqs*/

/** The Faq Section **/
#faqSection div {
  float: none;
  display: inline-block;
  width: auto;
  margin: 0;
  overflow: hidden;
}
#faqSection .collapsible {
  background-color: transparent;
  border: 0;
  border-radius: 7px;
  box-shadow: 0;
  transition: box-shadow 0.2s ease 0s;
  color: #333;
  margin: 0 0 8px;
  width: 100%;
  padding: 12px 0 0;
  font-family: sans-serif;
  font-size: 15px;
  text-align: left;
  display: inline-block;
}
#faqSection .collapsible:hover {
  box-shadow: 0 10px 60px -15px rgba(0, 0, 0, 1);
}
#faqSection .active,
#faqSection .collapsible:hover {
}
#faqSection .collapsible:after {
  content: "\f111";
  font-weight: bold;
  float: left;
  margin-left: 0;
  padding-right: 14px;
  font-family: fontawesome;
  color: #6185c7;
}
#faqSection .active:after {
  content: "\f111" !important;
  font-family: fontawesome;
  color: #6185c7;
}
#faqSection .faq-content {
  overflow: hidden;
  width: calc(100% - 0%);
  padding: 5px 2%;
  transition: all 0.25s ease-in-out 0s;
  background: transparent;
  border: 0;
  border-radius: 7px;
  max-height: 0px;
  visibility: hidden;
  margin-top: 0 !important;
  margin: 0 !important;
}
#faqSection .faq-content p {
  font-family: sans-serif;
  color: #333;
  line-height: 22px;
  font-size: 13px;
  margin: 0 0 9px;
  text-shadow: none;
  font-weight: 100;
}
#faqSection .faq-content a {
  color: #00c58e;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
#faqSection .faq-content ul {
  border-left: 2px solid #00c58e;
}
#faqSection .faq-content li {
  color: #bad2e2;
  font-size: 0.85rem;
  line-height: 160%;
  font-weight: 200;
  margin: 8px 0 8px 2%;
  list-style: none;
  width: 90%;
  font-family: sans-serif;
  text-shadow: 1px 1px 0 rgb(0 0 0);
}

.active .faq-content {
    display: block ;
}

.faq-content {
    display: none;
}
.call-section {
    margin-left: 50px;
}
/*Faqs*/
.wrap-foot {
    margin-left: 60px;
}
/* END:EVENT-DETAIL SECTION */

@media only screen and (min-width: 1200px) and (max-width: 1366px){}
@media only screen and (min-width: 912px) and (max-width: 1199px){
    .inner-banner .banner-content h2 {
    font-size: 40px;
}

header .navbar-nav>li>a {
    padding: 10px 16px;
    color: #000;
}

    header {
    position: relative;
    }
    .main-banner .banner-content h2 {
    font-size: 40px;
    }
    
    a.brown-btn {
    padding: 14px;
    font-size: 14px;
    }
    
    a.trans-btn {
    padding: 14px;
    font-size: 14px;
    }
    
    section.box-section {
    margin-top: 0;
}

.info-box {
    margin-bottom: 20px;
}

.team-section .slick-prev {
    left: auto;
    right: 53%;
    top: 125%;
}

.team-section .slick-next {
    right: 40%;
    top: 124%;
}
    
    }
@media only screen and (min-width: 768px) and (max-width: 911px){
    header {
    position: relative;
    }
    header .navbar-nav>li>a {
    color: #0e1f47;
    padding: 10px 14px;
}
.main-banner .banner-content h2 {
    font-size: 29px;
}

section.box-section {
    margin-top: 0;
}
    a.brown-btn {
    padding: 14px;
    font-size: 14px;
    }
    
    a.trans-btn {
    padding: 14px;
    font-size: 14px;
    }
    .info-box {
    margin-bottom: 20px;
}

.team-section .slick-prev {
    left: auto;
    right: 53%;
    top: 125%;
}

.team-section .slick-next {
    right: 40%;
    top: 124%;
}
.mc4wp-form-fields input::placeholder {
    font-size: 10px;
}

input[type="submit"] {
    padding: 14px;
    color: #000;
    font-size: 11px;
}
.contact-footer li a {
    color: #fff;
    font-size: 12px;
}
.about-img img {
    margin-top: 200px;
}

#faqSection .collapsible {
    font-size: 13px;
}
.conatct-inner h4:after {
    width: 50px;
}
.conatct-inner p {
    width: 100%;
}
section.bottom-section.mar-section img {
    height: 450px;
    object-fit: cover;
}
.event-content {
    background: #6285c7;
    padding: 60px 10px;
}
section.bottom-section.mar-section .row {
    display: block;
}
    }
    
   html {
    overflow-x: hidden;
}

@media only screen and (min-width: 520px) and (max-width: 767px){
    
    header {
    position: relative;
    }
    .main-banner .banner-content h2 {
    font-size: 24px;
    }
    section.main-banner .row .col-md-6 {
    width: 100%;
}
section.main-banner .row .col-md-6 img {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0% auto;
}
section.main-banner img {
    height: 600px;
    object-fit: cover;
}
section.main-banner {
    position: relative;
    text-align: center;
}
a.brown-btn {
    background: #f9d7b8;
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 30px;
    margin-right: 0;
    border: 2px solid #f9d7b8;
}
a.trans-btn {
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 30px;
    margin: 20px;
    color: #fff;
    border: 2px solid #fff;
}
header {
    position: relative;
    background: #0e1f47;
}
.navbar-toggle{
    background-color: #f9d7b8;
    }
    
    .flexRow {
    display: BLOCK;
}
    
    .collapse {
    display: block;
}

a.headertext {
    display: none;
}

.logo {
    width: 50%;
    margin: 0 auto;
    display: flex;
}


section.box-section {
    margin-top: 0;
}
.info-box {
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0 #000000a1;
}
h3.theme-heading {
    font-size: 40px;
}
.about-content a.brown-btn {
    width: 40%;
    padding: 6px;
}

.video-content figure a {
    width: 50px;
    height: 50px;
}

.video-content article h4 {
    font-size: 18px !important;
    margin-bottom: 20px;
    margin-top: 40px;
}
   .all-section {
    padding: 20px 0;
}

.team-content p {
    line-height: 28px;
    padding: 0 12px;
}

.contact-footer li {
    display: flex;
    align-items: center;
}

.contact-footer li a {
    color: #fff;
    font-size: 11px;
    margin-left: 10px;
}
    .navbar-header {
    display: none;
}
.footer-links figure {
    width: 50%;
    float: left;
}
.footer-links figure img{
    width:98%;
    }
    .copyright-sec p{
     float:none !important;
     display:block;
     text-align:center;
    }
    .event-box {
        display: block;
        margin: 40px 0;
            margin-right: 0 !important;
            margin-bottom: 0 !important;
    }
    .event-content p{
        width:auto !important;   
    }
    .event-content {
    background: #6285c7;
    padding: 20px;
}
p.event-title {
    width: auto !important;
}
.event-content a{
        padding-top: 5% !important;
    }
    .blogapge {
    display: block;
    width: 100% !important;
}
.wrap-foot {
    margin-left: 0 !important;
}
.conatct-inner p {
    width: 90% !important;
}
.conatct-inner h4 {
    font-size: 28px;
}
.call-section {
    margin-left: 0;
}
section.main-banner.inner-banner img {
    height: 300px;
}
section.bottom-section.mar-section .row {
    display: block;
}
    
    
    }
    
    section.bottom-section.mar-section .row {
    display: flex;
    align-items: center;
}
.follow-sec ul li a i {
    width: 35px;
    height: 35px;
    border-radius: 30px;
    background: #0e1f47;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}
@media only screen and (min-width: 300px) and (max-width: 519px){
    .navbar-header {
    display: none;
}
section.bottom-section.mar-section .row {
    display: block;
}
section.main-banner.inner-banner img {
    height: 300px;
}
.footer-links figure {
    width: 50%;
    float: left;
}
.footer-links figure img{
    width:98%;
    }
    .copyright-sec p{
     float:none !important;
     display:block;
     text-align:center;
    }
    .event-box {
        display: block;
        margin: 40px 0;
            margin-right: 0 !important;
            margin-bottom: 0 !important;
    }
    .event-content p{
        width:auto !important;   
    }
    .event-content {
    background: #6285c7;
    padding: 20px;
}
p.event-title {
    width: auto !important;
}
.event-content a{
        padding-top: 5% !important;
    }
    .blogapge {
    display: block;
    width: 100% !important;
}
.wrap-foot {
    margin-left: 0 !important;
}
.conatct-inner p {
    width: 90% !important;
}
.conatct-inner h4 {
    font-size: 28px;
}
.call-section {
    margin-left: 0;
}
    .event-box img{
        width: 100% !important;
    }
    header {
    position: relative;
    }
    .main-banner .banner-content h2 {
    font-size: 24px;
    }
    section.main-banner .row .col-md-6 {
    width: 100%;
}
section.main-banner .row .col-md-6 img {
    height: 200px;
    width: 200px;
    display: block;
    margin: 0% auto;
}
section.main-banner img {
    height: 600px;
    object-fit: cover;
}
section.main-banner {
    position: relative;
    text-align: center;
}
a.brown-btn {
    background: #f9d7b8;
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 30px;
    margin-right: 0;
    border: 2px solid #f9d7b8;
}
a.trans-btn {
    display: inline-block;
    width: 40%;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-radius: 30px;
    margin: 20px;
    color: #fff;
    border: 2px solid #fff;
}
header {
    position: relative;
    background: #0e1f47;
}
.navbar-toggle{
    background-color: #f9d7b8;
    }
    
    .flexRow {
    display: BLOCK;
}
    
    .collapse {
    display: block;
}

a.headertext {
    display: none;
}

.logo {
    width: 50%;
    margin: 0 auto;
    display: flex;
}


section.box-section {
    margin-top: 0;
}
.info-box {
    margin-bottom: 20px;
    box-shadow: 0 0 10px 0 #000000a1;
}
h3.theme-heading {
    font-size: 40px;
}
.about-content a.brown-btn {
    width: 40%;
    padding: 6px;
}

.video-content figure a {
    width: 50px;
    height: 50px;
}

.video-content article h4 {
    font-size: 18px !important;
    margin-bottom: 20px;
    margin-top: 40px;
}
   .all-section {
    padding: 20px 0;
}

.team-content p {
    line-height: 28px;
    padding: 0 12px;
}

.contact-footer li {
    display: flex;
    align-items: center;
}

.contact-footer li a {
    color: #fff;
    font-size: 11px;
    margin-left: 10px;
}
    
    }