@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #370617;
  font-family: "Roboto", sans-serif; 
  letter-spacing: 1px;
}

/*  */
header {
  background-color: #370617;
  height: 70px;
  align-content: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1{
  margin-left: 30px;
  color: white;
  font-family: "Kalam", cursive;
  font-weight: 900;
  font-style: normal;
}

.nav-menu {
  display: flex;
  align-items: center
}

.nav-links {
  margin: 0 20px;
  color: white;
  transition: 0.7s ease;
  border: 2px solid transparent;
}
.nav-form{
  background: #FAA307;
  padding: 8px 15px;
  border-radius: 15px;
  margin-right: 20px;
}
header a.nav-form{
  color: black;
  letter-spacing: 1px;
}
.nav-links:hover {
  color: #faa307;
  border-bottom-color: #faa307;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  background-color: #faa307;
  height: 2px;
  width: 30px;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

@media only screen and (max-width:846px) {
  .hamburger {
    display: block;
    align-content: center;
    margin: 0 20px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .logo {
    margin: 0 20px
  }

  .nav-menu {
    display: block;
    position: absolute;
    top: 70px;
    left: -100%;
    background: #370617;
    text-align: center;
    width: 100%;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-items {
    margin: 30px;
  }

  .nav-menu.active {
    left: 0;
  }
}
/*  */
.wrapper{
  padding: 10px 10%;
}
#card-area{
  padding: 50px 0;
  background-color: #FAA307;
}
.box-area{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
}
.box {
border-radius: 10px;
position: relative;
overflow: hidden;
box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}
.box img{
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
}
.overlay {
width: 100%;
height: 0;
background: linear-gradient(transparent,#370617 70%);
border-radius: 10px;
position: absolute;
left: -40px;
bottom: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 40px;
text-align: center;
font-size: 14px;
transition: height 0.5s;
  color: white
}
.overlay h3 {
font-weight: 700;
margin-bottom: 5px;
margin-top: 80%;
font-size: 30px;
letter-spacing: 1px;
  padding: 20px
}
.overlay p{
  padding: 0 20px;
  font-size: 16px;
}

.box:hover img{
  transform: scale(1.1);
}
.box:hover .overlay{
  height: 100%;
}

.divider{
  display: flex;
  justify-content: center;
  background-color: #FAA307;
  padding: 0 0 50px
}
/*  */
.tech-heading h2 {
  text-align: center;
  padding: 20px 0 20px ;
  color: black;
  font-size: 40px;
  background-color: #FAA307;
}



.tech-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-image: url(../images/layered-waves-haikei\ \(1\).png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 0 70px;
  max-width: 1400px;
}

.tech-list {
  margin: 15px;
  background: #faa307;
  color: 3370617;
  text-align: center;
  height: 400px;
  box-shadow: 3px 3px 3px black;
  width: 280px;
}

.tech-image1 {
  height: 250px;
  background: url(../images/yoga\ 1.jpg);
  background-size: cover;
  background-position: center;
}
.tech-image2 {
  height: 250px;
  background: url(../images/explore.jpg);
  background-size: cover;
  background-position: center;
}
.tech-image3 {
  height: 250px;
  background: url(../images/volunteering\ home.jpg);
  background-size: cover;
  background-position: center;
}
.tech-image4 {
  height: 250px;
  background: url(../images/meditation.jpg);
  background-size: cover;
  background-position: center;
}

.tech-list p {
  padding: 15px;
  font-size: 20px;
}

.tech-list .tech-btn a {
  text-decoration: none;
  color: #faa307;
  background: #370617;
  padding: 8px 14px;
  font-size: 18px;
  letter-spacing: 2px;
}

/*  */
.container-02-heading h2 {
  text-align: center;
  color: white;
  font-size: 40px;
  margin: 40px;
}

.conatiner-main {
  background-image: url(../images/circle-scatter-haikei.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}

.container-02 {
  position: relative;
  display: flex;
  justify-content: center;
}

.container-02 .contentBox img {
  width: 300px;
  height: 200px;
  margin-top: -200px;
}
.container-02 .contentboximg img {
  width: 300px;
  height: 200px;
  margin-top: -140px;
}

.container-02:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-02:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-02 .glassmorphic-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
  width: 280px;
  height: 400px;
  padding: 40px 30px;
  margin: 28px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.container-02 .glassmorphic-card:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 10em;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.container-02 .glassmorphic-card .imgBox {
  position: relative;
  text-align: center;
}

.container-02 .glassmorphic-card .imgBox i {
  font-size: max(80px);
  color: rgba(255, 255, 255, 0.1);
}

.container-02 .glassmorphic-card .contentBox {
  position: relative;
  margin-top: 20px;
  text-align: center;
  transition: 0.5s;
}

.container-02 .glassmorphic-card .contentBox:before {
  /* content: 'DIGITAL'; */
  position: absolute;
  top: -50px;
  left: -125px;
  width: 100%;
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  transform: rotate(-90deg);
  color: rgba(0, 0, 0, 0.2);
}

.container-02 .glassmorphic-card .contentBox h3 {
  font-size: 20px;
  color: #fff;
  z-index: 1;
  padding: 8px 0 0;
}

.container-02 .glassmorphic-card .contentBox p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.container-02 .glassmorphic-card .contentBox a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.container-02 p {
  z-index: 12;
  margin: 20px auto 10px;
  position: relative;
  color: #fff;
}

.container-02 p span {
  font-weight: 700;
}
.container-02-heading-btn{
  text-align: center;
  margin: 0 0 40px 0;
}
.container-02-heading-btn a{
 color:#370617 ;
  background-color: #FAA307;
  padding: 8px 20px;
  font-size: 18px;
  text-transform: capitalize;
}


/*  */
.meet-heading h2 {
  text-align: center;
  color: white;
  font-size: 40px;
  margin: 30px;
  text-transform: capitalize;
}

.conatiner-main {
  background-image: url(../images/circle-scatter-haikei.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}

.container-02 {
  position: relative;
  display: flex;
}

.container-02 .containbox-image img {
  width: 300px;
  height: 200px;
  margin-top: -400px;
}

.container-02:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-02:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container-02 .glassmorphic-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
  width: 280px;
  height: 400px;
  padding: 40px 30px;
  margin: 28px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.container-02 .glassmorphic-card:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 10em;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.container-02 .glassmorphic-card .imgBox {
  position: relative;
  text-align: center;
}

.container-02 .glassmorphic-card .imgBox i {
  font-size: max(80px);
  color: rgba(255, 255, 255, 0.1);
}

.container-02 .glassmorphic-card .containbox-image {
  position: relative;
  text-align: center;
  transition: 0.5s;
}

.container-02 .glassmorphic-card .contentBox:before {
  /* content: 'DIGITAL'; */
  position: absolute;
  top: -50px;
  left: -125px;
  width: 100%;
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  transform: rotate(-90deg);
  color: rgba(0, 0, 0, 0.2);
}

.container-02 .glassmorphic-card .containbox-image h4 {
  font-size: 20px;
  color: #fff;
  z-index: 1;
  margin-top: 20px
}

.container-02 .glassmorphic-card .contentBox p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.container-02 p {
  z-index: 12;
  margin: 20px auto 10px;
  position: relative;
  color: #fff;
}

/*  */
.donate-content1 {
  display: flex;
  justify-content: start;
  gap: 20px;
  width: 85%;
  margin: 30px auto;
}

.donate-content1 .donate-text {
  flex-basis: 50%;
}

.donate-content1 .donate-text h2 {
  color: whitesmoke;
  font-size: 50px;
}

.donate-content1 .donate-text h4 {
  color: whitesmoke;
  font-size: 23px;
  margin-top: 5px;
}

.donate-content1 .donate-text p {
  color: whitesmoke;
  font-size: 18px;
  margin-top: 8px
}
.donate-content1 img{
  width: 400px
}
.donate-content2 {
  display: flex;
  justify-content: end;
  gap: 20px;
  width: 85%;
  margin: 0 auto;
  text-align: end;
  margin-top: 20px
}

.donate-content2 .donate-text {
  flex-basis: 50%;
}

.donate-content2 .donate-text h2 {
  color: whitesmoke;
  font-size: 50px;
}

.donate-content2 .donate-text h4 {
  color: whitesmoke;
  font-size: 23px;
  margin-top: 5px;
}

.donate-content2 .donate-text p {
  color: whitesmoke;
  font-size:18px;
  margin-top: 8px
}
.donate-content2 img{
  width: 400px
}
.donate-main p.donate-main-text {
  color: white;
  text-align: center;
  font-size: 25px;
  width: 80%;
  margin: 40px auto
}
.donate .donate-btn a{
 color:#370617 ;
  background-color: #FAA307;
  padding: 8px 15px;
  font-size: 16px;
  text-transform: capitalize;
}
.donate .donate-btn{
  margin-top: 20px;
}
/*  */

.notification {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px
}

.notification .notification-main img {
  width: 400px
}

.notification-main h4 {
  color: white;
  font-size: 25px;
  width: 70%;
  margin: 0 auto;
}

.notification-main p.date {
  color: white;
  font-size: 21px;
  margin-top: 10px;
}

.notification-main p.receive {
  color: white;
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width:700px){
  .notification-main h4 {
  font-size: 20px;
  width: 90%;
  margin: 0 auto;
}
  .notification-main p.date {
  color: white;
  font-size: 17px;
  margin-top: 10px;
}

.notification-main p.receive {
  color: white;
  font-size: 17px;
  margin-top: 10px;
}
}

/*  */

form {
  height: 83vh;
  width: 80%;
  background: #FAA307;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

form h2 {
  font-size: 40px;
  margin: 10px 0 30px;
  text-transform: uppercase;
}

form .form-display {
  display: flex;
  gap: 10px;
  margin: 10px;
}

form input {
  width: 350px;
  padding: 10px;
  background: #FAA307;
  border: 1px solid #370617;
  outline: none;
  border-radius: 10px;
  margin-top: 5px
}

form select {
  width: 750px;
  padding: 10px;
  background: #FAA307;
  border: 1px solid #370617;
  margin-top: 5px;
  border-radius: 10px
}

.form-display label {
  font-size: 18px;
  text-transform: capitalize;
  font-family: arial;

}

@media screen and (max-width:951px) {
  form input {
      width: 250px
  }

  form select {
      width: 510px
  }
}

@media screen and (max-width:700px) {
  form input {
      width: 230px
  }

  form select {
      width: 230px
  }

  form .form-display {
      flex-direction: column;
  }

  form {
      height: 110vh;
  }
  form h2 {
  font-size: 25px;
}
}


form button {
  width: 120px;
  height: 40px;
  border-radius: 30px;
  border: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  color: white;
  background: #370617;
  letter-spacing: 0.7px;
  margin: 10px;
  text-transform:uppercase;
  letter-spacing: 2px;
}

form button:hover .arrow {
  animation: slide-in-left 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
  0% {
      transform: translateX(-10px);
      opacity: 0;
  }

  100% {
      transform: translateX(0px);
      opacity: 1;
  }
}

form button:active {
  transform: scale(0.97);
}





/* responsiv */
@media screen and (max-width:643px) {
  .donate-content1 {
    flex-direction: column;
  }

  .donate-content2 {
    flex-direction: column-reverse
  }
  .donate-content1 .donate-text h2{
    font-size: 35px;
  }
  .donate-content1 .donate-text h4{
    font-size: 20px;
  }
  .donate-content1 .donate-text p{
    font-size: 18px;
  }
   .donate-content2 .donate-text h2{
    font-size: 35px;
  }
  .donate-content2 .donate-text h4{
    font-size: 20px;
  }
  .donate-content2 .donate-text p{
    font-size: 18px;
  }
  .donate-main p.donate-main-text{
    width: 90%;
    font-size: 22px
  }
  .form{
    flex-direction: column;
  }
  .tech-heading h2 {
    font-size: 25px;
  }
  .container-02-heading h2 {
    font-size: 25px;
  }
  .meet-heading h2 {
    font-size: 25px;
  }
  .donate-content1 .donate-text h2 {
    font-size: 25px;
  }
  .donate-content1 .donate-text h4 {
    color: whitesmoke;
    font-size: 18px;
    margin-top: 5px;
  }
  
  .donate-content1 .donate-text p {
    color: whitesmoke;
    font-size: 15px;
    margin-top: 8px
  }
  .donate-content1 img{
    width: 350px
  }
  .donate-content2 {
    display: flex;
    justify-content: end;
    gap: 20px;
    width: 85%;
    margin: 0 auto;
    text-align: end;
    margin-top: 20px
  }
  
  .donate-content2 .donate-text {
    flex-basis: 50%;
  }
  
  .donate-content2 .donate-text h2 {
    color: whitesmoke;
    font-size: 25px;
  }
  
  .donate-content2 .donate-text h4 {
    font-size: 18px;
  }
  
  .donate-content2 .donate-text p {
    font-size:15px;
  }
  .donate-content1 img{
    width: 350px
  }
  .donate-content2 img{
    width: 350px
  }
  .donate-main p.donate-main-text {
    font-size: 18px;
  }
  .notification .notification-main img {
    width: 350px
  }
  
  .notification-main h4 {
    font-size: 20px;
  }
  
  .notification-main p.date {
    font-size: 16px;
  }
  
  .notification-main p.receive {
    font-size: 16px;
  }
}
@media screen and (max-width:1160px){
    .conatiner-main {
    flex-direction: column;
    justify-content: center;
  }
  .row{
    width: 90%;
  }
}


/*  */


       
      
       

footer{
  background: url(../images/wave-haikei.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer-main {
    display: flex;
    color: white;
    justify-content: space-around;
    padding: 50px
    
  }
  
  .footer-main .footer-list .social {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-list .contact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
  }
  
  .footer-main .footer-list h3 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 25px 0;
  }
  
  .footer-main .footer-list a {
    text-transform: capitalize;
    color: white;
    font-size: 18px;
  }
  
  .footer-main .footer-list .footer-links {
    margin: 5px 0;
  }
  
  @media screen and (max-width:860px){
  .footer-main{
  flex-direction: column;
  }
  }
  footer p{
  text-align: center;
  color: white;
  padding: 0 0 30px ;
  }
footer p a{
  color: white;
}




  /* video gallery */

  .video-page-bg{
    background: url(../images/banner\ 1800\ by\ 800.jpg);
    height: 100vh;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .video-page-bg .video-gallery-content{
    position: absolute;
    bottom: 150px
  }
  .video-page-bg .video-gallery-content h3{
    font-size: 35px;
    color: white;
  }
.video-gallery-flex{
  display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 50px;
grid-row-gap: 50px; 
  margin-top: 80px;
  margin-bottom: 80px;
}
.video-gallery-flex .video-youtube{
  width: 500px;
  height: 300px;
  margin: 0 auto;
}
@media screen and (max-width:1155px){
  .video-gallery-flex .video-youtube{
  width: 400px;
  height: 280px;
  margin: 0 auto;
}
} 
@media screen and (max-width:920px){
  .video-gallery-flex .video-youtube{
  width: 300px;
  height: 200px;
  margin: 0 auto;
}
} 
@media screen and (max-width:720px){
  .video-gallery-flex .video-youtube{
  width: 280px;
  height: 200px;
  margin: 0 auto;
}
  .video-gallery-flex{
  display: grid;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: repeat(8, 1fr);
grid-column-gap: 50px;
grid-row-gap: 50px; 
  margin-top: 80px;
}
} 