/*---- fontface ---*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
  font-family: 'Arial Nova Cond Light';
  src: url('../fonts/Arial Nova Cond Light.eot');
  src: url('../fonts/Arial Nova Cond Light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Arial Nova Cond Light.svg#TypoRound-Bold') format('svg'),
       url('../fonts/Arial Nova Cond Light.ttf') format('truetype'),
       url('../fonts/Arial Nova Cond Light.woff') format('woff'),
       url('../fonts/Arial Nova Cond Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TypoRound-Bold';
  src: url('../fonts/TypoRound-Bold.eot');
  src: url('../fonts/TypoRound-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/TypoRound-Bold.svg#TypoRound-Bold') format('svg'),
       url('../fonts/TypoRound-Bold.ttf') format('truetype'),
       url('../fonts/TypoRound-Bold.woff') format('woff'),
       url('../fonts/TypoRound-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TypoRound';
  src: url('../fonts/TypoRound.eot');
  src: url('../fonts/TypoRound.eot?#iefix') format('embedded-opentype'),
       url('../fonts/TypoRound.svg#TypoRound') format('svg'),
       url('../fonts/TypoRound.ttf') format('truetype'),
       url('../fonts/TypoRound.woff') format('woff'),
       url('../fonts/TypoRound.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


/*----- vars ----*/
:root{
  --theme-green: #329e5f;
  --theme-blue: #6cd0de;
  --theme-yellow-light: #fffed3;
  --theme-yellow-dark: #fff068;
  --text-color: #1e1e1e;
  --black: #000000;
  --white: #ffffff;
  --bg-color2: #ceeef3;

  --font-normal: 'TypoRound';
  --font-bold: 'TypoRound-Bold';
  --font-arial: 'Arial Nova Cond Light';

  --custom-container:1280px;
  --logo-part-width:350px;


}
/*--- common classes ----*/
@media (min-width:1300px) {
  .container{
      max-width: var(--custom-container);
      width: var(--custom-container);
  }
}
body, p{
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}
h2, .sec-heading{
  font-family: "Open Sans", sans-serif;
font-weight: bold;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 30px;
}
p:last-child, ul{
  margin-bottom: 0;
}
img{
  max-width: 100%;
}
a{
  text-decoration: none;
}
.common-btn{
  padding: 0px 20px;
  color: var(--black);
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-green);
  border-radius: 3px;
  border: none;
}
.btn-blue{
  background-color: var(--theme-blue);
  color: var(--black);
}
.btn-yellow{
  background-color: var(--theme-yellow-dark);
}
.white-text{
  color: var(--white);
}
.text-yellow{
  color: var(--theme-yellow-dark);
}

/*---- common ul ----*/


.common-ul {
  padding: 0;
  list-style: none;
  margin:0;
  display: flex;
  flex-wrap: wrap;
}

.common-ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  width: 100%;
  flex-basis: 100%;
}

.common-ul li:before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 16px;
  width: 16px;
  border: 2px solid var(--theme-green);
  border-radius: 50%;
  top: 4px;
}
.common-ul li:after {
  content: "";
  position: absolute;
  left: 5px;
  display: inline-block;
  height: 6px;
  width: 6px;
  background: var(--theme-green);
  border-radius: 50%;
  top: 9px;
}
.common-ul.whitebullets li:before{
  border: 2px solid var(--white);
}
.common-ul.whitebullets li:after{
  background-color: var(--white);
}
.common-ul.greenbullets li:before{
  border: 2px solid var(--theme-green);
}
.common-ul.greenbullets li:after{
  background-color: var(--theme-green);
}
.common-ul.darkyellowbullets li:before{
  border: 2px solid var(--theme-yellow-dark);
}
.common-ul.darkyellowbullets li:after{
  background-color: var(--theme-yellow-dark);
}
.common-ul.lightyellowbullets li:before{
  border: 2px solid var(--theme-yellow-light);
}
.common-ul.lightyellowbullets li:after{
  background-color: var(--theme-yellow-light);
}
.common-ul.blackbullets li:before{
  border: 2px solid var(--black);
}
.common-ul.blackbullets li:after{
  background-color: var(--black);
}
.common-ul.half-li li{
  width: calc(100% / 2);
  flex-basis: calc(100% / 2);
}
.common-ul.three-li li{
  width: calc(100% / 3);
  flex-basis: calc(100% / 3);
}
.common-ul.four-li li{
  width: calc(100% / 4);
  flex-basis: calc(100% / 4);
}


/*---- header and nav ----*/

.header-inner{
  display: flex;
  flex-wrap: wrap;
}
.logo-part{
  width: var(--logo-part-width);
  flex-basis: var(--logo-part-width);
}
.logo-part img{
  height:110px;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
  margin: 5px 0;
}
.header-right{
  flex-basis: calc(100% - var(--logo-part-width));
  width: calc(100% - var(--logo-part-width));
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hdr-social{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.hdr-social li{
  padding: 0 10px;
}
.hdr-social li a{
  display: inline-block;
  padding: 0px 15px;
  border: 1px solid var(--theme-blue);
  border-radius: 3px;
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 42px;
}
.hdr-social li a i{
  margin-right: 5px;
}

.headr-phone {
  margin-left: 20px;
}
.headr-phone a{
 
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: var(--text-color);
  line-height: 34px;
}
.headr-phone a img{
  margin-right:10px;
}
.theme-navbar{background-color: var(--theme-green);color: var(--white);height: 50px;}
.theme-navbar .navbar-nav a.nav-link {
  font-family: "Open Sans", sans-serif;
 font-weight: bold;
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  padding: 0 20px;
  width: 100%;
  display: block;
}
.dropdown-item{
  font-family: "Open Sans", sans-serif;

}

.theme-navbar ul.navbar-nav {
  width: 100%;
  justify-content: space-between;
}

/*---- common-section css ----*/
.common-section{
  padding: 70px 0;
}
/*--- common-tabs css ---*/

.theme-tabs .nav-tabs {
  border: none;
}

.theme-tabs .nav-tabs .nav-link.active {
  border: none;
}

.theme-tabs .nav-tabs .nav-link {
  height: 55px;
  padding: 0 20px;
  background-color: var(--theme-yellow-light);
  color: var(--black);
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin: 0 25px 0 0;
}
.theme-tabs .nav-tabs .nav-link.active{
  background-color: var(--theme-green);
  color: var(--white);
}
.theme-tabs .tab-content{
  padding-top: 35px;
}
.theme-tabs .tab-content p{
  margin-bottom: 35px;
}
/*---- banner ----*/
img.banner-image {
    width: 100%;
    object-fit: cover;
}
/*---- about section */
.abt-img {
    border: 15px solid var(--white);
    box-shadow: 0px 0px 11.04px 4.96px rgba(0, 0, 0, 0.18);
	margin-left: 20px;
}
.home_about .theme-tabs .tab-content {
    padding-right: 50px;
}

.abt-img img {
    height: 500px;
}
/*--- press section ---*/
.home_press{
  position: relative;
}
.home_press .sec_imgholder{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50vw;
  z-index: 1;
}
.home_press .sec_imgholder img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home_press:after{
content: "";
position: absolute;
top: 0;
right: 0;
width: 50vw;
bottom: 0;
background-color:var(--theme-green);
z-index: 1;
}
.home_press>.container{
  position: relative;
  z-index: 2;
}
.home_press .press-text{
  padding-top: 70px;
  padding-bottom: 70px;
}
.press-list{
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.press-box{
  display: flex;
  border: 1px solid var(--theme-yellow-dark);
  padding: 15px;
  margin-bottom: 16px;
}
.press-box .press-img{
  width: 135px;
  height: 100%;
  object-fit: cover;
}
.press-box .press-img img {
  width: 100%;
}
.press-box .press-text{
  padding:0 10px ;
  width: calc(100% - 135px);
}
.press-box .press-text h4{
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;

}
.press-box .press-text p{
  font-family: "Open Sans", sans-serif;
font-size: 16px;
line-height: 24px;
color: var(--white);
margin-bottom: 12px;
}
a.normal-link{
  font-size: 20px;
  line-height: 32px;
}


/*--- education section ---*/

.home_education-sec h2 {
  margin-bottom: 30px;
}

.edubox {
  box-shadow: 0px 0px 11.04px 4.96px rgba(0, 0, 0, 0.06);
}

.eduimg img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.edutext {
  padding: 30px;
  background: var(--theme-yellow-light);
}
.press-page .edutext {
    min-height: 160px;
}


.edutext h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
}

.edutext p {
  font-family: "Open Sans", sans-serif;

  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.edutext a.normal-text2 {
  color: var(--black);
  font-family: "Open Sans", sans-serif;
font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  position: relative;
  padding-bottom: 10px;
}

.edutext a.normal-text2:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  left: 0;
  width: 100%;
  display: inline-block;
  background: #329e5f;
}

/*---- event ---*/
.home_events {
  position: relative;
}

.home_events .sec_imgholder {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50vw;
}

.home_events .sec_imgholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.home_events:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50vw + 30px);
  bottom: 0;
  background-color: var(--black);
  z-index: 1;
}

.home_events .container {
  position: relative;
  z-index: 3;
}
.event-text{
  padding: 70px 50px 70px 0;
}
.event-text h2{
  margin-bottom: 20px;
}
.event-text p{
  font-family: "Open Sans", sans-serif;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}
.gallery-sec{
  margin-bottom: 30px;
}
.gallery_img{
margin-bottom: 10px;
}
.gallery_img img{
  width:100%;
}
/*---- footer ----*/
.footer-top{
  background-color: var(--text-color);
  padding: 50px 0;
}
.footer-title{
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 35px;
}
.footer-menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer-menu li{
  flex-basis: calc(100% / 2);
  max-width: calc(100% / 2);
  padding: 0 10px 30px 0px;
}
.footer-menu li:nth-last-child(2), .footer-menu li:last-child{
  padding-bottom: 0;
}
.footer-menu li a{
  font-size: 20px;
  line-height: 1;
  padding: 10px 0;
  display: inline-block;
  width: 100%;
  color: var(--white);
}
.add_box{
  margin-bottom: 35px;
  display: flex;
}
.add_box:last-child{
  margin-bottom: 0px;
}
.add_box .add-icon{
  font-size: 20px;
  line-height: 32px;
  margin-right: 12px;
}
.add_box .add-text{
  font-size: 20px;
  line-height: 32px;
  color: var(--white);
}
.add-text a{
  font:inherit;
  color: inherit;
  line-height: inherit;
  display: inline-block;
}

footer .donate-btn-holder .common-btn {
    min-width: 140px;
}

.footercol3 .innersec {
    margin-bottom: 35px;
}

.footercol3 .innersec:last-child {
    margin: 0;
}

.footercol3 .innersec .hdr-social {
    justify-content: flex-start;
}

.footercol3 .innersec .hdr-social li a {
    color: var(--white);
}

.footer-bottom {
    padding: 30px 10px;
    text-align: center;
    background: var(--black);
    color: #fff;
}

.footer-bottom .copyright {
    color: var(--white);
    font-family: "Open Sans", sans-serif;

    font-size: 20px;
    line-height: 32px;
}
/*---- slider css ----*/
.banner-slider .slick-arrow {
  display: none !important;
}
/*---- abt part video ---*/
.abt-img>div {
  padding-top: 66% !important;
}
/*---- slick dots css ---*/
ul.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  position: absolute;
  bottom: 20px;
}

ul.slick-dots li button {
  border: none;
  font-size: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 5px;
  background: var(--theme-yellow-light);
}

ul.slick-dots li.slick-active button {
  background: var(--theme-yellow-dark);
}
/*---- inner pages---*/
.innerbanner {
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.innerbanner h1, .innerbanner .page-heading {
  font-size: 60px;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Open Sans", sans-serif;

}
.edutext.p-3.text-center {
  min-height: 90px;
}
.innerbanner:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.8;
  z-index: 1;
}
.about-bg{
  background-image: url('http://charlieshuddle.org/wp-content/uploads/2022/08/abt_bg.jpg');
}
.contact-bg{
  background-image: url('http://charlieshuddle.org/wp-content/uploads/2022/08/conatct1-1.jpg');
}
.common-section.home_gallery.forabout_page {
  padding: 0;
}


.contact-inner {
  padding: 30px;
  box-shadow: 0px 0px 11.04px 4.96px rgb(0 0 0 / 18%);
}

.form-control {
  height: 45px;
  border-radius: 0;
  margin-bottom: 25px;
  border: 1px solid rgb(0 0 0 / 21%);
  color: var(--black);
}

textarea.form-control {
  min-height: 90px;
}

.form-control::placeholder {
  color: var(--black)
}
.find-box {
  display: flex;
}

.find-box {
  align-items: flex-start;
  margin-bottom: 35px;
  margin-top: 0px;
  padding: 28px 15px;
  background: var(--theme-green);
}

.find-box .fd-icon {
  width: 80px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.find-box .fd-icon i {
  font-size: 36px;
  color: var(--white);
}

.find-box .fd-detail {
  width: calc(100% - 80px);
}

.find-box .fd-detail h5 {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
 font-weight: bold;
  margin-bottom: 5px;
  color: var(--white);
}

.find-box .fd-detail p {
  font-size: 20px;
  line-height: 38px;
}

.find-box .fd-detail p br {
}

.find-box .fd-detail a, .find-box .fd-detail p {
  color: var(--white);
}

/*---- about inner pages---*/
.home_about.mission-page .abt-img img {
  height: inherit;
  object-fit: cover;
  width: 100%;
}
.obj_sec {
  margin-bottom: 32px;
}

.home_about.mission-page .abt-img {
  height: 100%;
}

.topcard {
  padding: 70px 0;
  background: var(--theme-blue);
}

.obj_sec:last-child {
  margin-bottom: 0;
}
/*----*/
.innerbanner2{
  position: relative;
  padding: 70px 0;
}
.innerbanner2:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background-color: var(--theme-yellow-light);
  z-index: 1;
}
.innerbanner2:after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: var(--theme-green);
  z-index: 1;
}

.innerbanner2 .container {
  position: relative;
  z-index: 2;
}

.innerbanner2.patient-bg:after{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/inr4.jpg') no-repeat right center/cover;
}
.innerbanner2.supportsystem-bg:after{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/inr3.jpg') no-repeat right top/cover;
}
.innerbanner2.speaking-bg:after{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/inr5.jpg') no-repeat right center/cover;
}

.bg-diffrent{
  background-color: var(--bg-color2);
}
.page-text-banner{
  padding-right: 40px;
}
.education-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg5.jpg') no-repeat right center/cover;
}
.press-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg6.jpg') no-repeat right center/cover;
}
.books-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg7-1.jpg') no-repeat right center/cover;
}
.gallery-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/gallery_bg.jpg') no-repeat right center/cover;
}
.films-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg8.jpg') no-repeat right center/cover;
}
.programs-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg9.jpg') no-repeat right center/cover;
}
.donate-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/bg10.jpg') no-repeat right center/cover; 
}
.singlepost-bg{
  background: url('http://charlieshuddle.org/wp-content/uploads/2022/08/singlebg.jpg') no-repeat right center/cover;
}
.press_pagelist .edubox {
  margin-bottom: 20px;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

.text-page img {
  height: auto !important;
}
.gallery-page .gallery-sec {
  margin-bottom: 0;
}

.gallery-page .gallery_img {
  margin-bottom: 24px;
}
.imgholder img {
  width: 100%;
}
