@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
   -webkit-backface-visibility:hidden;
     -moz-backface-visibility:hidden;
      -ms-backface-visibility:hidden;
       -o-backface-visibility:hidden;
          backface-visibility:hidden;
}
*, ::after, ::before {
    box-sizing: border-box;
}
@-ms-viewport {
    width: device-width;
}
body{
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF7ED;
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
body::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, #FF8133 0%, #F58300 100%);
  clip-path: polygon(86% 0, 100% 0, 100% 100%, 60% 100%);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: -webkit-fill-available;
  -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

.containercontact{
  z-index: 12;
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  top: 50px;
  margin: 0px 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.containercontact .contentcontact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 85px;
  padding: 5px 20px;
}
.contentcontact .image-box{
  max-width: 55%;
}
.contentcontact .image-box img{
  width: 100%;
}
.contentcontact .topic{
  font-size: 24px;
  font-weight: 500;
  color: #F58300;
  text-align: center;
}
.contentcontact form{
  width: 40%;
  margin-right: 30px;
}
.contentcontact .input-box{
  height: 50px;
  width: 100%;
  margin: 16px 0;
  position: relative;
}
.contentcontact .input-box input{
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  padding-left: 16px;
  background: #fae9fb;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contentcontact .input-box input:focus,
.contentcontact .input-box input:valid{
  border-color: #F58300;
  background-color: #fff;
}

.contentcontact .input-box label{
  position: absolute;
  left: 18px;
  top: 50%;
  color: #636c72;
  font-size: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.contentcontact .input-box input:focus ~ label,
.contentcontact .input-box input:valid ~ label,
.contentcontact .input-box input:invalid ~ label{
  top: 0;
  left: 12px;
  display: 14px;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
}


.contentcontact .message-box{
  min-height: 100px;
  position: relative;
}
.contentcontact .message-box textarea{
  position: absolute;
  height: 100%;
  width: 100%;
  resize: none;
  background: #fae9fb;
  border: 2px solid transparent;
  border-radius: 6px;
  outline: none;
  transition:  all 0.3s ease;
}
.contentcontact .message-box textarea:focus{
  border-color: #F58300;
  background-color: #fff;
}
.contentcontact .message-box label{
  position: absolute;
  font-size: 16px;
  color: #636c72;
  left: 18px;
  top: 6px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.contentcontact .message-box textarea:focus ~ label,
.contentcontact .message-box textarea:valid ~ label,
.contentcontact .message-box textarea:invalid ~ label{
  left: 12px;
  top: -10px;
  color: #000;
  font-size: 14px;
  background: #fff;
}
.contentcontact .input-box input[type="submit"]{
  color: #fff;
  background: #F58300;
  padding-left: 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.contentcontact .input-box input[type="submit"]:hover{
  background-color: #F58300;
}
@media (max-width:1000px) {
  .contentcontact .image-box{
    max-width: 70%;
  }
  .contentcontact{
    padding: 10px 0;
  }
}
@media (max-width:900px) {
  .containercontact{

  }
  .containercontact .contentcontact{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 270px;
  }

  .contentcontact .image-box{
    display: flex;
  }
  .contentcontact form{
    width: 100%;
    margin-left: 30px;
  }
}

/* nav bar */

  nav{
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;  
    background: #fff;
  }
  nav .wrapper{
    position: relative;
    max-width: 2500px;
    padding: 0px 30px;
    height: 90px;
    line-height: 10px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .wrapper .logo img{
    position: absolute;
    left: 0px;
    top: -3px;
    width: 98px;
    height: 96px;
  }

  .wrapper .logoext img{
    position: absolute;
    left: 75px;
    top: 0px;
    width: 68px;
    height: 66px;
    visibility: hidden;
  }

  .wrapper .logo a{
    position: absolute;
    left:  80px;
    top: 0px;
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
  }
  .wrapper .nav-links{
    display: inline-flex;
  }
  .nav-links li{
    list-style: none;
  }
  .nav-links li a{
    color: #000 ;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 15px;
    padding-top: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }


  .nav-links li a:hover{
    color: #0CB47F;
    font-weight: 500;
    font-size: 20px;
    transition: all ease-in-out 0.01s;
  }

  #donate-btn{
    margin-left: ;
    color: #fff;
    background: linear-gradient(to bottom,#FF8833 0%,#EE752F 100%);
    border-radius: 10px;
  }
  #donate-btn:hover{
    background: linear-gradient(to bottom,#EE752F 0%,#FF8833 100%);

  }

  
  .wrapper .nav-links {
      display: inline-flex;
  }
  dl, ol, ul {
      margin-top: 0;
      margin-bottom: 0;
  }
  ol, ul {
      padding-left: 1rem;
      padding-right: 1rem;
  }  


  .nav-links .mobile-item{
    display: none;
  }
  .nav-links .drop-menu1,
  .nav-links .drop-menu2{
    position: absolute;
    background: linear-gradient(to top, #2A2828 10%, #494646 80%);
    width: 230px;
    line-height: 28px;
    top: 85px;
    opacity: 0;
    padding: 0 0 0 5px;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .nav-links .drop-menu2{
    width: 150px;
  }
  .nav-links li:hover .drop-menu1,
  .nav-links li:hover .drop-menu2
  { transition: all 0.3s ease;
    top: 70px;
    border-radius: 10px;
    opacity: 1;
    padding: 0px;
    visibility: visible;
  }
  .drop-menu1 li a,
  .drop-menu2 li a{
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    padding: 5px 2px 5px 15px;
    font-weight: 400;
    font-size: 16px;
    border-radius: 5px;
  }

  .wrapper .btn{
    position: absolute;
    left:  10px;
    top: 15px;
    color: ##ffff;
    font-size: 30px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    color: ##ffff;
    position: absolute;
    left: 275px;
    top: 10px;
  }

  .label .btn.menu-btn{
    position: absolute;
    left: 10px;
    top: 6px;
    color: ##ffff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }

  @media screen and (max-width: 1000px){
    .wrapper .logo img{
      left: -80px;
    }
    
  }  
  @media screen and (max-width: 800px) {
    .wrapper .logo img{
      visibility: hidden;
    }

    .wrapper .logoext img{
    visibility: visible;
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    left: 10%;
    background-size: cover;
    width: 96px;
    height: auto;
    }

    .wrapper .btn{
      display: block;
      color: ##ffff;
    }

    .wrapper .btn.close-btn{
      color: #ffff;
    }

    .fas.fa-times{
      color: #ffff;
    }


    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #242526;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }

    .nav-links li a{
    color: #ffff ;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    }

    .nav-links li a:hover{
    color: #0CB47F;
    font-weight: 500;
    font-size: 20px;
    transition: all ease-in-out 0.01s;
  }


    .nav-links .drop-menu1,
    .nav-links .drop-menu2{
    position: absolute;
    background: #242526;
    }





    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu1,
    .nav-links .drop-menu2{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 30px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      line-height: 40px;
      transition : all 0.3s ease-in-out;
    }
    #showDrop1:checked ~ .drop-menu1,
    #showDrop2:checked ~ .drop-menu2
    {
      max-height: 100%;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      background: #3A3B3C;
    }
    .drop-menu1 li,
    .drop-menu2 li{
      margin: 0;
      padding: 5px 0;

    }
    .drop-menu1 li a,
    .drop-menu2 li a{
      border-radius: 5px;
      font-size: 18px;
      padding: -35px;
    }

  }
  nav input{
    display: none;
  }

  @media screen and (max-width: 800px){
    .wrapper .logoext img{
      left: 40%;
    }
  }
/* nav bar end*/


/* Social Icons */
    .whiteText{
        color: #fff;
    }
    .fixedsocial{
        z-index: 999;
        position: fixed;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }
    .fixedsocial .share i.fa, .fixedsocial .share i.fab{
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%}
    .fixedsocial .share i.fa{
        line-height: 50px;
    }
    .fixedsocial .submenu i.fa{
        background-color: #fff;
    }
    .fixedsocial .share:hover.right .submenu li:nth-child(1){
        opacity: 1;
        top: -80px;
        left: 0px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition-delay: 80ms;
        -o-transition-delay: 80ms;
        transition-delay: 80ms;
    }
    .fixedsocial .share:hover.right .submenu li:nth-child(2){
        opacity: 1;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition-delay: .16s;
        -o-transition-delay: .16s;
        transition-delay: .16s;
        top: 80px;
        left: 0px;
    }
    .fixedsocial .share:hover.right .submenu li:nth-child(3){
        opacity: 1;
        top: -55px;
        left: 55px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition-delay: .24s;
        -o-transition-delay: .24s;
        transition-delay: .24s;
    }
    .fixedsocial .share:hover.right .submenu li:nth-child(4){
        opacity: 1;
        top: 55px ;
        left: 55px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition-delay: .32s;
        -o-transition-delay: .32s;
        transition-delay: .32s;
    }
    .fixedsocial .share:hover.right .submenu li:nth-child(5){
        opacity: 1;
        top: ;
        left: 75px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition-delay: .4s;
        -o-transition-delay: .4s;
        transition-delay: .4s;
    }
    .fixedsocial .submenu{
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    .fixedsocial .submenu li{
        -webkit-transition: all ease-in-out .5s;
        -o-transition: all ease-in-out .5s;
        transition: all ease-in-out .5s;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0;
    }
    .fixedsocial .submenu li a{
        color: #fff;
        font-size: 20px;
    }
    .fixedsocial .submenu li a:hover i.fa{
        color: #fff;
    }
    .fixedsocial .submenu li a.facebook i.fab{
        background-color: #3b5999;
    }
    .fixedsocial .submenu li a.twitter i.fab{
        background-color: #006aff;
    }
    .fixedsocial .submenu li a.linkedin i.fab{
        background-color: #0e76a8;
    }
    .fixedsocial .submenu li a.youtube i.fab{
        background-color: #c70707;
    }
    .fixedsocial .submenu li a.instagram i.fab{
        background-color: #e4405f;
    }
    .fixedsocial.bottomLeft{
        top: 16em;
        left: 10px;
    }
    .orangeBg{
        background-color: linear-gradient(to top, #ff5722 0, #f39900 100%);
        background-image: -webkit-gradient(linear, left bottom, left top, from(#ff5722), to(#f39900));
        background-image: -o-linear-gradient(bottom, #ff5722 0, #f39900 100%);
        background-image: linear-gradient(to top, #ff5722 0, #f39900 100%);
    }
    .intro-banner-video-play-btn{
        height: 50px;
        width: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50% -50%);
        -ms-transform: translate(-50% -50%);
        transform: translate(-50% -50%);
        text-align: center;
        margin: 0;
        border-radius: 100px;
        z-index: 1;
    }
    .intro-banner-video-play-btn i{
        line-height: 50px;
        font-size: 20px;
    }
    .intro-banner-video-play-btn .ripple_social{
        position: absolute;
        width: 80px;
        height: 80px;
        z-index: -1;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50% -50%);
        -ms-transform: translate(-50% -50%);
        transform: translate(-50% -50%);
        opacity: 0;
        margin: -40px 0 0 -40px;
        border-radius: 100px;
        -webkit-animation: ripple_social 1.8s infinite;
        animation: ripple_social 1.8s infinite;
    }
    @-webkit-keyframes ripple_social{
        0%{
          opacity: 1;
          -webkit-transform: scale(0);
          transform: scale(0);
        }
        100%{
          opacity: 0;
          -webkit-transform: scale(1);
          transform: scale(1);
        }
    }
    @keyframes ripple_social{
        0%{
          opacity: 1;
          -webkit-transform: scale(0);
          transform: scale(0);
        }
        100%{
          opacity: 0;
          -webkit-transform: scale(1);
          transform: scale(1);
        }
    }
    .intro-banner-video-play-btn .ripple_social:nth-child(2){
        animation-delay: .3s;
        -webkit-animation-delay: .3s;
    }
    .intro-banner-video-play-btn .ripple_social:nth-child(3){
        animation-delay: .6s;
        -webkit-animation-delay: .6s;
    }
/* Social Icons end */

/* Donation Icon */
    .Donation_box{
      position: fixed;
      right: 10px;
      top: 16em;
      z-index: 1000;
    }


    .donation_icon{
        width: 52px;
        height: 52px;
        line-height: 52px;
        text-align: center;
        display: block;
        color: #fff;
        background: linear-gradient(to top,#455DD9 0,#8898E7 100%);
        border-radius: 25%;
        font-size: 26px;
        position: relative;
        z-index: 5;
        transition: all 0.3s ease-in-out;
      }
      .donation_icon:hover{
        background: linear-gradient(to top,#455DD9 0,#455DD9 100%) ;
        color: #fff;
        transform: translate(00px, 0px)!important;
      }
/* Donation Icon end */




/*alert messages*/

.alert-success{
  z-index: 1;
  background: #D4EDDA;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #3AD66E;
  border-radius: 4px;
}

.alert-error{
  z-index: 1;
  background: #FFF3CD;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #FFA502;
  border-radius: 4px;
}

/* top arrow */
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  #myBtn i{
    display: block;
    align-items: center;
  }

  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
/* top arrow end*/

/*css for alert messages*/

.alert-success{
  z-index: 100;
  background: #D4EDDA;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 30px;
  border-left: 8px solid #3AD66E;
  border-radius: 4px;
  transition: all 0.3s ease-in-out
}

.alert-error{
  z-index: 100;
  background: #FFF3CD;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #FFA502;
  border-radius: 4px;
}




