/*************************************************
               STYLE SHEET
**************************************************/



/*CUSTOM SCROLL BAR*/

/*CUSTOM SCROLL BAR*/
*,html{
  scroll-behavior: smooth;
  }
  *, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
  :root{
  scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
  scrollbar-width: thin !important;
  --white:#fff;
  --black:#1e1e1e;
  --pink:rgb(3, 135, 250);
  --secondary:#050609;
  --gray:#b8bca7;
  --blue:rgba(0,0,0,.1);
  }
  ::-webkit-scrollbar {
  height: 12px;
  width: 8px;
  background: #000;
  }
  ::-webkit-scrollbar-thumb {
  background: gray;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
  }
  ::-webkit-scrollbar-corner {
  background: #000;
  }
  
  
  
  
  
  
  
  
  
  
  /*DEFAULT*/
  body{
  margin:0;
  overflow-x:hidden !important;
  font-family: 'Source Sans Pro', sans-serif;
  }
  
  a{
  text-decoration:none;
  color:var(--white);
  }
  
  a,button{
  transition:0.5s;
  }
  
  p{
  line-height:1.8em;
  letter-spacing:0.06em;
  }
  
  fieldset{
  border:0;
  }
  
  a, button, input, textarea, select{
  outline:none !important;
  }
  
  img{
  width:99%;
  }
  
  .title{
  font-family: 'Playfair Display', serif;
  }
  
  .cursive{
  font-family: 'Dancing Script', cursive;
  }
  
  em{
  font-style:normal;
  color:var(--pink);
  }
  
  p{
  line-height:1.6em;
  letter-spacing:0.06em;
  }
  
  .title{
  font-family: 'Playfair Display', serif;
  }
  
  .title_header{
  width:60%;
  text-align:center;
  margin:auto;
  }
  
  .title_header h1{
  font-size:2em;
  }
  
  .title_header h3{
  font-size:1.2em;
  font-weight:400;
  color:rgba(1,1,1,0.7);
  }
  
  .btn1{
  padding:20px;
  text-align:center;
  display:inline-block;
  width:200px;
  background-color:var(--pink);
  border-radius:40px;
  font-weight:600;
  }
  
  .btn1:hover{
  background-color:var(--secondary);
  }
  
  .btn2{
  padding:20px;
  text-align:center;
  display:inline-block;
  width:250px;
  border-radius:40px;
  font-weight:600;
  }
  
  .btn1:hover{
  background-color:var(--secondary);
  }
  
  .border-shape {
  background: var(--secondary) none repeat scroll 0 0;
  color: #fff;
  display: block;
  height: 3px;
  left: 0;
  margin: 20px auto;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 80px;
  }
  
  .border-shape::before {
  background: var(--pink) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  left: 80px;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 100%;
  }
  
  .border-shape::after {
  background: var(--pink) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 1px;
  margin: 0 auto;
  position: absolute;
  right: 80px;
  text-align: center;
  top: 1px;
  width: 100%;
  }
  
  @media (max-width:820px){
  .btn1,.btn2{
  padding:10px 15px;
  width:150px;
  }
  .title_header{
  width:100%;
  }
  .title_header h1{
  font-size:1.5em;
  }
  
  .title_header h3{
  font-size:1em;
  }
  }
  
  
  
  
  
  
  
  .main{
    margin: 80px auto;
    max-width: 1024px;
    display: flex;
    
  }
  
  
  
  
  /*ANIMATION*/
  @keyframes arrows {
  0%,
  100% {
  color: black;
  transform: translateY(0);
  }
  50% {
  color: #3AB493;
  transform: translateY(20px);
  }
  }
  
  .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
  }
  
  @keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*HEADER*/
  .header{
  width:100%;
  position:relative;
  display:flex;
  align-items:center;
  background-color: #4E8AFF;
  padding:1rem 0;
  color: #fff;
  padding-bottom:3rem;
    font-family: "Muli", sans-serif;
    line-height: 1;
    -moz-user-select: none;
    letter-spacing: 1px;
    line-height: 0;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
  }






  /* line 271, C:/Users/HP/Desktop/jun-2020/277.Charity _Non-profit/assets/scss/_common.scss */
  .header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: #24ac75;
    z-index: 1;
    border-radius: 5px;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
    border-radius: 0px;
  }
  
  /* line 290, C:/Users/HP/Desktop/jun-2020/277.Charity _Non-profit/assets/scss/_common.scss */
  .header:hover::before {
    transform: scaleX(1);
    color: #fff !important;
    z-index: -1;
  }
  
  /* line 295, C:/Users/HP/Desktop/jun-2020/277.Charity _Non-profit/assets/scss/_common.scss */
  .header:hover {
    background-position: right;
  }
  
  /* line 298, C:/Users/HP/Desktop/jun-2020/277.Charity _Non-profit/assets/scss/_common.scss */
  .header.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
  }

  .header section{
  width:100%;
  text-align:center;
  padding:1rem 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
  .header section span{
  margin:0 20px;
  }
  
  .header section span a{
  color:var(--white);
  white-space:nowrap;
  }
  
  .header section span a:hover{
  color:var(--dark);
  }
  
  @media (max-width:820px){
  .header section:nth-child(1){
  display:none;
  }
  }
  
  
  
  
  
  
  
  /*TOP NAVIGATION*/
  #header{
  position:fixed;
  top:5rem;
  width:100%;
  z-index:99999;
  transition:0.5s;
  }
  
  .topnav {
  overflow: hidden;
  background-color:#fff;
  width:80%;
  margin:auto; 
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.7);
  transition:0.5s;
  }
  
  .topnav a {
  float: left;
  display: block;
  color: #4E8AFF;
  text-align: center;
  padding: 16px 16px;
  margin:auto 1rem;
  text-decoration: none;
  font-size: 17px;
  position:relative;
  top:10px;
  }
  
  #logo{
  width:120px;
  position:relative;
  top:-10px;
  }
  
  #icon{
  float:right;
  }
  
  #active{
  display:flex;
  }
  
  #active img{
  width:130px;
  }
  
  #active:hover{
  color:#fff;
  }
  
  .topnav .icon {
  display: none;
  }
  
  .dropdown {
  float: left;
  overflow: hidden;
  }
  
  .dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #4E8AFF;
  padding: 16px 16px;
  background-color: inherit;
  font-family: inherit;
  margin:auto 1rem;
  position:relative;
  top:10px;
  }
  
  .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-top:2px solid #cd2027;
  }
  
  .dropdown-content a {
  float: none;
  color: black;
  padding: 8px 16px;
  margin:auto 0rem;
  text-decoration: none;
  display: block;
  text-align: left;
  top:0;
  }
  
  .topnav a:hover, .dropdown:hover .dropbtn {
  color: #cd2027;
  }
  
  .dropdown-content a:hover {
  background-color: #ddd;
  color: black;
  }
  
  .dropdown:hover .dropdown-content {
  display: block;
  }
  
  @media screen and (max-width: 1120px) {
  .logo{
  width:20px;
  position:static;
  }
  .dropdown .dropbtn {
  padding: 14px 16px;
  }
  .topnav a:not(:first-child), .dropdown .dropbtn {
  display: none;
  }
  .topnav a.icon {
  float: right;
  display: block;
  }
  #active{
  display:none;
  }
  }
  
  @media screen and (max-width: 1120px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
  position: absolute;
  right: 0;
  top: 0;
  }
  .topnav.responsive a {
  float: none;
  display: block;
  text-align: left;
  padding: 14px 16px;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
  display: block;
  width: 100%;
  text-align: left;
  }
  }
  
  
  
  
  
  
  
  
  
  /*BANNER*/
  .banner{
  width:100%;
  height:100vh;
  background-color: #FFE53B;
  background-image: linear-gradient(147deg, aliceblue 0%, rgb(4, 134, 248) 74%);
  min-height: 100vh;
  font-family: "Fira Sans", sans-serif;
  background-size:cover;
  background-position:center;
  display:flex;
  gap: 30px;
  align-items:center;
  justify-content:center;
  color:var(--white);
  position:relative;
  }
  
  .banner:after{
  content:"";
  background-image:url("https://i.ibb.co/8zB1N3z/wave.png");
  background-size:cover;
  width:100%;
  height:100px;
  position:absolute;
  bottom:0;
  }
  
  .banner section{
  max-width:80%;
  display: grid;
  text-align:start;
  grid-template-columns: 35% 40%;
  justify-content: space-between;
  }
  @media screen and (max-width: 1120px) {
    .banner section{
      max-width:80%;
      display:table;
  }
  }

  .banner section .cursive{
  font-size:5em;
  line-height:0;
  }
  .banner section h2{
  font-weight:200;
  line-height:1.6em;
  }
  
  .banner .btn1{
  display:inline-block;
  margin:2vh 20px;
  }
  
  @media (max-width:820px){
  .banner section{
  width:95%;
  }
  .banner section h2{
  font-size:1.3em;
  }
  .banner section .cursive{
  font-size:2.3em;
  }
  .banner .btn1{
  margin:2vh 10px;
  }
  }
  








/*SECTION1*/
.section1{
display:flex;
align-items:center;
}

.section1 section{
padding:2rem;
width:100%;
font-size:18px;
color:rgba(1,1,1,0.7);
position:relative;
}

.section1 section em{
position:relative;
}

.section1 section em:before{
content:"";
position:absolute;
left:-3%;
top:-10%;
width:20px;
height:20px;
border-radius:50%;
background-image: linear-gradient(#cebfb6,#ddd);
z-index:-1;
}

.section1 section .title{
font-size:2.5em;
line-height:0;
color:var(--black);
}

.section1 section ol li{
padding:15px 0;
list-style:none;
}

.section1 section ol li:before{
content:"\f00c";
font-family:"FontAwesome";
background-color:#cebfb6;
border-radius:50%;
padding:8px;
margin:0 10px;
color:var(--secondary);
}

.section1 .dots{
width:auto;
position:absolute;
right:10%;
pointer-events:none;
--delay: 0s;
animation: arrows 4s var(--delay) infinite ease-in;
}













/*ABOUT MR*/
.about_mr{
display:flex;
align-items:center;
margin:0rem 0;
}

.about_mr section{
position:relative;
width:100%;
padding:0rem;
}

.about_mr section:nth-child(2){
padding:4rem 2rem;
}

.about_mr section:nth-child(1){
background-image:url("https://i.ibb.co/1v2CTjz/shape.png");
background-repeat:no-repeat;
background-position:center;
background-size:50% 99%;
}

.about_mr section img:nth-child(1){
width:70%;
border:5px solid var(--white);
border-radius:5px;
}

.about_mr section img:nth-child(2){
position:absolute;
right:15%;
bottom:5%;
width:40%;
border:5px solid var(--white);
}

.about_mr .title{
font-size:3em;
line-height:0em;
}

.about_mr h3{
font-weight:400;
}

.about_mr p{
font-size:20px;
color:rgba(1,1,1,0.7);
}

.about_mr .btn1{
display:block;
}

@media (max-width:820px){
.about_mr{
display:block;
}

.about_mr section{
padding:1rem;
}

.about_mr section:nth-child(2){
padding:4rem 1rem;
}

.about_mr .title{
font-size:1.8em;
}

.about_mr p{
font-size:18px;
}
}















/*SECTION2*/
.section2{
padding:3rem;
background-color:#f4f8f7;
}
.small-tittle{
font-style:normal;
color:var(--pink);
font-size: 11px;
}
.intel{
  margin:20px 0;
}
.intel-det{
    display: grid;
    grid-template-columns: 50% 45%;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
}
.intel-info .btn1{
  margin:10px 0;
}
@media only screen and (max-width: 800px){
.intel-det{
    display:table;

}
}
.intel-pic img{
 height: 100%;
 width: 100%;
 border-radius: 15px;
}
.section2 .cards section{
display:flex;
align-items:center;
}

.section2 .cards section .card{
margin:10px;
background-color:var(--white);
border-radius:30px;
width:100%;
padding:2rem;
box-shadow: 0 0 20px 0 #dddddd8c;
position:relative;
}

.section2 .cards section .card h3{
font-weight:600;
color:rgba(1,1,1,0.8);
}

.section2 .cards section .card p{
color:rgba(1,1,1,0.7);
}

.section2 .cards section .card .mark{
padding:5px;
background-color:#cebfb6;
border-radius:50%;
float:right;
}

@media (max-width:820px){
.section2{
padding:1rem;
}
.section2 .cards section{
display:block;
}
.section2 .cards section .card{
margin:10px 0;
}
}












/*SECTION3*/
.section3{
widthk:100%;
background-image:url("images\ \(10\).jpeg");
background-repeat:no-repeat;
background-sizek:60% 100%;
background-positionj:left center;
display:flex;
height:fit-content;
align-items:center;
justify-contentj:right;
position:relative;
}
.impacts{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    width: 100%;
    max-width: 400px;
}
.section3 section{
width:100%;
position:relative;
right:5%;
padding:2rem;
background-color:var(--secondary);
color:var(--white);
}
.impact{
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
   
}
.section3 section .card{
padding:0.5rem 1rem;
border:1px solid rgba(255,255,255,0.1);
margin:10px 0;
align-items:center;
min-width: fit-content;
}

.section3 section .card span{
padding:0 1rem;
}

@media (max-width:820px){
.section3{
display:block;
background-image:none;
}
.section3 section{
width:100%;
position:static;
padding:1rem;
}
}










/*SECTION4*/
.section4{
align-items:top;
padding:3rem;
background-color:#f3f7f6;
background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)), url(".https://i.ibb.co/1v2CTjz/shape.png");
background-repeat:no-repeat;
}

.section4 .title_header{
padding:1rem;
width:60%;
}

.section4 section{
width:100%;
}


.section4 .cards {
width: calc(100% - 1em);
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-gap: 1em;
grid-template-areas: "a a b c" "a a d d";
width: 100%;
}

.section4 .card {
width: 100%;
position: relative;
transition: all 0.25s ease;
cursor: pointer;
font-family: "Roboto", sans-serif;
font-weight: 300;
}
.section4 .card:last-child {
margin-bottom: 0;
}
.section4 .card:before {
height: 0;
content: "";
display: block;
padding-bottom: 47.36%;
}
.section4 .card.content:after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
content: "";
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}
.section4 .card:nth-child(1) {
grid-area: a;
}
.section4 .card:nth-child(2) {
grid-area: b;
}
.section4 .card:nth-child(3) {
grid-area: c;
}
.section4 .card:nth-child(4) {
grid-area: d;
}
.section4 .card-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.section4 .card-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.section4 .card-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.section4 .card-label {
position: absolute;
top: 0.45rem;
left: 0.45rem;
background: #089f8a;
text-transform: uppercase;
font-weight: 300;
font-size: 0.7em;
color: white;
padding: 0.5em;
}
.section4 .card-title {
position: absolute;
left: 1em;
bottom: 1em;
color: #d6dbeb;
z-index: 5;
font-size: 0.8em;
}
.section4 .card.form {
position: relative;
}
.section4 .card.form:before {
background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
}
.section4 .card.form:after {
position: absolute;
top: 0.5em;
left: 0.5em;
width: calc(100% - 1em);
height: calc(100% - 1em);
content: "";
background: #252833;
}
.section4 .card.form .form-title {
position: absolute;
top: 3rem;
left: 3rem;
font-size: 7vw;
font-weight: 900;
z-index: 5;
text-transform: uppercase;
background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.section4 .card.form .form-title:before {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
content: "More";
opacity: 0.5;
filter: blur(10px);
transition: all 0.25s ease;
z-index: 2;
background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
transform: translateX(-50%) translateY(-50%);
}
.section4 .card:nth-child(2) .card-label {
background: #ef4e7b;
}
.section4 .card:nth-child(3) .card-label {
background: #1098ad;
}
.section4 .card:hover {
transform: scale(1.05);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}
.section4 .card:hover .form-title:before {
filter: blur(3px);
opacity: 0.7;
}

@media (max-width:820px){
.section4{
padding:1rem;
}
.section4 .title_header{
padding:1rem;
width:100%;
}
.section4 .cards {
width: calc(100% - 2em);
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
grid-gap: 1em 0em;
grid-template-areas: "a" "a" "b" "c" "d";
width: 100%;
}
}


.impact-couses{
    padding: 1em;
    background-color:#f3f7f6;
    background-size:cover;
    position:relative;
}
.imp-tt{
    display: flex;
    align-items: top;
    justify-content: space-between;
    padding: 10px 0;
}
.imp-tt h2{
    max-width: 400px;
    margin: 0;
    

}
.imp-tt .btn{
    background-color: var(--pink);
    border-radius: 12px;
    padding: 10px;
    height: fit-content;
    
}
.causes{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}
.cause{
    width: auto;
    border-radius: 15px;
    background-color: var(--white);
flex-basis: 360px;
}
.cause img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.cause-det{
    padding: 15px;
}
.tally{
    border-top: 2px solid #f3f7f6;
}
.skills-progress-bg {
    background: #f3f7f6;
    width: 100%;
    height: 10px;
    border-radius: 12px;
}

.skills-progress-fill {
    background:rgb(224, 169, 30);
    height: 100%;
    border-radius: inherit;
}
.title-wrapper{
    padding: 10px 0;
}
.title-wrapper h5{
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size:100%;
}
.title-wrapper .incur{
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
}
.cause-more{
    padding: 1em;
    background-color: var(--white);
    display: flex;
    overflow-x: auto;
    justify-content: space-between;
}
.cause-more .val{
    text-align: center;
    flex-direction: column;
    height: fit-content;
    padding: 0 10px;
    border-right: 4px solid   #f3f7f6;
}
.cause-more .val h1{
    margin: 0;
    font-size: 24px;
}
.cause-more .val p{
    margin: 0;
}
.join-us{
    background-color: var(--white);
    padding: 3em;
}
.intel-pic video{
 width:100%;
 height: 100%;
 object-fit: cover;
 border-radius: 15px;
}



/*====FAQ====*/
.faq{
    padding:3rem;
    background-color:#f3f7f6;
    background-size:cover;
    position:relative;
}
.title_header p{
    color: var(--pink);
    font-size: 11px;
}
.title_header h3{
    padding: 0;
    margin: 0;
}


/*CONTACT FORM*/
.contact{
padding:3rem;
background-color:#f3f7f6;
background-size:cover;
display:flex;
position:relative;
}

.contact section{
width:100%;
margin:auto;
position:relative;
}
.faq-box{
    display: grid;
    grid-template-columns:50% 48% ;
    gap: 2%;
    width: 100%;
}
.faq-box .faq-img{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 5px;
}
.img-row{
 display: table;
 height: auto;
 justify-content: space-between;
}
.img-row img{
    border-radius: 10px;
}
.img-grid img{
    height: 100%;
    border-radius: 10px;
}
li{
    list-style: none;
}
.question{
width:100%;
background-color:var(--white);
align-items: center;
padding: 10px;
border-radius:10px;
}
.answer{
    font-size: 12px;
}
.drop{
border-radius:50%;
float:right;
display: inline-block;
}
.contact section form{
width:80%;
background-color:var(--white);
padding:2rem 1rem;
box-shadow: 0 0 20px 0 #dddddd8c;
border-radius:30px;

}

.contact section input{
width:100%;
padding:1rem;
background-color:#f3f7f6;
border:0;
}

.contact section textarea{
width:100%;
padding:1rem;
resize:none;
background-color:#f3f7f6;
border:0;
}

.contact section button{
margin:auto;
border:0;
display:block;
color:var(--white);
}

.contact_info ul{
display:flex;
align-items:center;
width:90%;
margin:auto;
}

.contact_info ul li{
padding:1rem;
list-style:none;
line-height:1.8em;
} 

.contact_info ul li .fa{
color:var(--secondary);
padding:15px;
background-color:var(--white);
border-radius:10px;
font-size:2em;
box-shadow: 0 0 20px 0 #dddddd8c;
width:60px;
text-align:Center;
}

@media (max-width:820px){

.contact{
display:block;
padding:1.5rem;
}
.contact section form{
width:100%;
}
.contact_info ul{
width:100%;
}
.faq-box{
    display:table;
    gap: 20px;
    width: 100%;
}
.faq{
    padding:1.5rem;
    background-color:#f3f7f6;
    background-size:cover;
    position:relative;
}
.join-us{
    background-color: var(--white);
    padding: 1.5em;
}

}



/*TESTIMONIALS*/

.testimonials { 
    margin-bottom: 30px;
    padding: 3em; 
    background-color:#f3f7f6;

}
@media (max-width:820px){
    .testimonials { 
        padding: 1.5em; 
      
    
    }
}
.testimonials-title { margin-bottom: 20px; }

.testimonials-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin: 0 -15px;
    padding: 25px 15px;
    padding-bottom: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
}

.testimonials-item {
    width: 100%;
    min-width: 320px;
    scroll-snap-align: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 10px;
}

.testimonials-avatar-box {
    border-radius:50% ;
    margin: 0%;
    height: 60px;
    width: 60px;
}
.testimonials-avatar-box img{
    border-radius:50% ;
    height: 60px;
    width: 60px;
}

.testimonials-text {
    color: var(--light-gray);
    font-size: var(--fs6);
    font-weight: var(--fw300);
    line-height: 1.6;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*MODAL CONTAINER*/

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 20;
    pointer-events: none;
    visibility: hidden;
}

    .modal-container::-webkit-scrollbar { display: none; }

    .modal-container.active {
        pointer-events: all;
        visibility: visible;
    }

        .modal-container.active .testimonials-modal {
            transform: scale(1);
            opacity: 1;
        }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition1);
}

    .overlay.active {
        opacity: .8;
        visibility: visible;
        pointer-events: all;
    }

.testimonials-modal {
    background: var(--white);
    position: relative;
    padding: 15px;
    width: 90%;
    margin:auto;
    border: 1px solid var(--jet);
    border-radius: 14px;
    box-shadow:grey,0 0 10px 10px;
    transform: scale(1.2);
    opacity: 0;
    transition: var(--transition1);
    z-index: 2;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--onyx);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white2);
    font-size: 18px;
    opacity: .7;
}

    .modal-close-btn:hover, .modal-close-btn:focus { opacity: 1; }
    .modal-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.modal-avatar-box {
    background: var(--bg-gradient-onyx);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    margin: 0;
    box-shadow: var(--shadow2);
}
.modal-avatar-box img{
    background: var(--bg-gradient-onyx);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: var(--shadow2);
}
.modal-img-wrapper > img { display: none; }

.modal-title { margin-bottom: 4px; }

.modal-content time {
    font-size: var(--fs6);
    color: var(--light-gray70);
    font-weight: var(--fw500);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--light-gray);
    font-size: var(--fs6);
    font-weight: var(--fw300);
    line-height: 1.6;
}


/*JOIN US*/

.com-info{
    padding: 0px;
  }
  
  .infos{
     display: flex;
     flex-direction: row-reverse; 
     justify-content: space-between;
     align-items: top;
     margin:30px auto;
     
     
  }
  
  @media  (max-width:742px) {
  .infos{
    display:flex;
    flex-direction:column; 
    justify-content: space-between;
 }
 .just{
    min-width: 100%;
    margin-bottom: 10px;
    margin:10px  auto;

   }
   .ftn{
    min-width: 100%;
    margin: auto;
   }
}
  .com-info .xam{
    padding: 0px;
    color: #01a1fe;
    font-size: 16px;
    margin-top: 16px;
  }
  .com-info .start {
    margin-top: 16px;
  }
  .com-info .start a{
    padding: 4px 10px;
    color:black;
    font-size: 16px;
    border-radius: 30px;
    margin: 20px 0;
  
    background-color:rgb(228, 228, 0);
  }
  
  
  .com-info .xamn a:hover{
    padding: 20px;
    color: #01a1fe;
    font-size: 17px;
  }
  
  
  .com-info .startnk a:hover{
    padding: 11px 82px;
    color:black;
    font-size: 19px;
    border-radius: 32px;
  
    background-color:rgb(228, 228, 0);
  }
  .way{
    display: flex;
    align-items:center;
    gap: 20px;
  }
  .way ul li{
    padding: 5px 0;
  }
  .way ul li a{
    padding: 5px 10px;
    background-color:#011ef5 ;
    color: white;
  }
  .ft{
    margin-top: 40px;
  }
  .ft ul li h3{
    padding-bottom:5px;
  }
  .ft ul{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin:15px 0 ;
  }
   .de-tc{
    max-width: 95%;
    overflow-x: auto;
    display: flex;
    gap: 10px;
    margin: auto;
   } 
   .de-tc li{
    height: 60px;
    width: 60px;
    border-radius: 50%;
  }
   .de-tc img{
     height: 60px;
     width: 60px;
     border-radius: 50%;
   }
  .eed span{
    font-size: 22px;
  }
  
  .lef ul{
    display: flex;
    flex-direction: column;
  }
  
  .lef ul li h5{
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #62bbee;
    align-items: center;
    margin: 5px 0;
    
  }
  .lef ul li h5 svg{
    
    fill: #62bbee;
    padding:3px ;
    border-radius: 50%;
    background-color: rgb(28, 73, 112);
    margin: 0px 5px;
    
  }
  .lef ul li p{
    font-size: 16px;
    colorh:aliceblue;
  }
  
  .just{
    width:30%;
    text-align: center;
    background-color: var(--box1-color);
    border-radius: 10px;
    padding: 10px;
  
   }
  .ftn{
  
  width: 60%;
  background-color:var(--box1-color);
  border-radius: 10px;
  padding: 10px;
  }
  .sd{
  color: #6F7B7E;
  font-size: 13px;
  font-weight: 400;
  }
  .dd{
  color:var(--dd-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  }
  .c23{
  padding:0;
  color: var(--dd-color);
  }
  
  
  .jusgt{
    text-align: center;
    background-color: var(--box1-color);
    border-radius: 10px;
    padding: 10px;
  
   }
  
   .jusgt .xam{
    padding: 0px;
    color: #01a1fe;
    font-size: 16px;
    margin-top: 16px;
  }
  .jusgt .start {
    margin-top: 16px;
  }
  .jusgt .start a{
    padding: 4px 10px;
    color:black;
    font-size: 16px;
    border-radius: 30px;
    margin: 20px 0;
    background-color:rgb(228, 228, 0);
  }
  .jusgt #btnout {
    margin-top: 16px;
  }
  .jusgt #btnout a{
    padding: 4px 10px;
    color:aliceblue;
    font-size: 16px;
    border-radius: 30px;
    margin: 20px 0;
    background-color:red;
  }
  .inite{
  
  background-color:  var(--box1-color);
  border-radius: 10px;
  padding: 10px;
  }
  .inite li h4{
    padding:10px ;
    border-radius: 30px;
    width: 94%;
    background-color: var(--primary-color);
    cursor: pointer;
  
  }
  .note-me h4 {
    padding: 2px;
    display: flex;
    align-items: center;
  }
  .note-me h4 svg{
    padding: 2px;
    background-color: red;
    border-radius: 2px;
  }
  .me-pic{
    displany: grid;
    grid-template-columnjs: 50% 50%;
    marginj:auto;
    width: 100%;
    max-width: 600px;
  
  }
  
  .me-info {
    width: 85%;
    paddingm:10px 0 ;
    margin: auto;
  }
  .me-info li{
    widthk: 100%;
    text-align: center;
    padding:10px 0 ;
    margin: auto;
  }
  .me-info li input{
    width: 94%;
    padding: 10px ;
  
  }
  .me-info li input:focus{
    border: none;
  
  }
  .ghk{
    background-color: #01a1fe;
    width: 100%;
  }
  
  .join-page{
    display: grid; 
    grid-template-columns:55% 40%; 
    justify-content: space-around; 
    margin-top: 8rem;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width:768px){
    .join-page{
        display:flex; 
        flex-direction: column;
      }
    }
  .jusgt{
    text-align: center;
    background-color: var(--box1-color);
    border-radius: 10px;
    padding: 10px;
  
   }
  
   .jusgt .xam{
    padding: 0px;
    color: #01a1fe;
    font-size: 16px;
    margin-top: 16px;
  }
  .jusgt .start {
    margin-top: 16px;
  }
  .jusgt .start a{
    padding: 4px 10px;
    color:black;
    font-size: 16px;
    border-radius: 30px;
    margin: 20px 0;
    background-color:rgb(228, 228, 0);
  }
  .jusgt #btnout {
    margin-top: 16px;
  }
  .jusgt #btnout a{
    padding: 4px 10px;
    color:aliceblue;
    font-size: 16px;
    border-radius: 30px;
    margin: 20px 0;
    background-color:red;
  }
  .inite{
  
  background-color:  var(--box1-color);
  border-radius: 10px;
  padding: 10px;
  }
  .inite li h4{
    padding:10px ;
    border-radius: 30px;
    width: 94%;
    background-color: var(--primary-color);
    cursor: pointer;
  
  }
  .note-me h4 {
    padding: 2px;
    display: flex;
    align-items: center;
  }
  .note-me h4 svg{
    padding: 2px;
    background-color: red;
    border-radius: 2px;
  }
  .me-pic{
    displany: grid;
    grid-template-columnjs: 50% 50%;
    marginj:auto;
    width: 100%;
    max-width: 600px;
  
  }
  
  .me-info {
    width: 85%;
    paddingm:10px 0 ;
    margin: auto;
  }
  .me-info li{
    widthk: 100%;
    text-align: center;
    padding:10px 0 ;
    margin: auto;
  }
  .me-info li input{
    width: 94%;
    padding: 10px ;
  
  }
  .me-info li input:focus{
    border: none;
  
  }
  .ghk{
    background-color: #01a1fe;
    width: 100%;
  }
  .social-group{
    padding: 10px;
  }
  .groups{
    
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    
  }
  .group{
    margin: 20px;
    padding: 10px;
    max-width:240px ;
    border-radius: 10px;
    animation:flyintoright .4s backwards;
        box-shadow: rgba(0, 0, 0, .1) 12px 10px 12px 10px;
        displayk: inline-block;
        position: relative;
        transition: all .2s ease-in-out;
        transform: scale(1.1);
        transform-origin: center;
        box-shadowj: 0px 10px 16px rgba(0, 0, 0, .13),  0px 6px 6px rgba(0, 0, 0, .19);
  }
  .gp-img{
    background-image:url(Screenshot\ 12_11_2024\ 08_31_14.png) ;
    height: 180px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .gp-img h4{
    padding: 10px;
    max-width:300px ;
  }
  #gp4{
    background-image: url(images.jpeg);
  }
  #gp2{
    background-image: url(Reading-Partners-Baltimore.jpg);
  }
  .gp-title svg{
    fill: white;
    border-radius: 50%;
    background-color: #01a1fe;
  }
  .gp-title span{
    color: #4DA3FF;
  }
  
  
  .gp-bt{
    display: -webkit-box;
    -webkit-line-clamp:1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    paddingh: 0 10px;
  }
    
  
/*=======*/

/*FOOTER*/
footer{
width:100%;
backgroundk: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("IMG-20250424-WA0019.jpg");
background-size:cover;
background-repeat:no-repeat;
background-position:center;
background-attachment:local;
color:var(--white);
background-color:rgb(0, 8, 16);
padding:1rem .5rem;
}

footer p{
color:;
}

footer a:hover{
color:var(--primary);
}
footer .top_section{
padding:1rem;
display:flex;
align-items:center;
}
.enter{
    display: flex;
    gap: 20px;
}
.enter a{
    font-size: 12px;
    padding: 4px 8px;
    background-color: red;
}
footer .top_section section{
width:33%;
display:flex;
align-items:center;
justify-content:center;
}

footer .top_section section span{
padding:1rem;
}

footer .top_section section span .fa{
font-size:2em;
color:var(--primary);
}

.footer-middle{
display: grid;
grid-template-columns: 33.3% 33.3% 33.3%;
}

footer .middle_section span{
display:block;
padding:1rem 0;
text-align:center;
}

footer .middle_section span a{
margin:0 20px;
}

footer .middle_section span a .fa{
font-size:1.5em;
}
.footer-links{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-middle p:hover{
    text-decoration: underline;
    cursor: pointer;

}
.img img{
    height: 40px;
    width: auto;
}
footer .bottom_section{

text-align:center;
font-size:13px;
padding:1rem 0;
}

@media (max-width:820px){
footer{
background-attachment:local;
}

footer .middle_section{
display:block;
}
footer .middle_section span a{
white-space:nowrap;
margin:10px ;
}

}
@media (max-width:820px){ 
        .footer-middle{
            display:table;
            }
}













/*ADDITIONAL*/
#roll_back{
position:fixed;
bottom:10rem;
right:3rem;
height: 50px;
width: 50px;
background-color:#4E8AFF;
border-radius:50%;
border:2px solid var(--white);
padding:1px;
display:none;
align-items:center;
justify-content:center;
z-index:999999;
box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
color:var(--white);
font-weight:900;
}
#roll_back svg{
  fill: aliceblue;
}
#chat{
    position:fixed;
    bottom:6rem;
    right:5%;
    background-color:#4E8AFF;
    border-radius:50%;
    border:2px solid var(--white);
    padding:10px;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
    box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
    color:green;
    font-weight:900;
    min-height: ;
    }


.credits{
background-color:#1e1e1e;
position:fixed;
bottom:2rem;
right:0;
color:rgba(255,255,255,0.7);
padding:10px;
z-index:9999;
font-weight:600;
font-size:13px;
box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
}

.credits a{
color:rgba(255,255,255,0.7);
font-weight:200;
}

