
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
    --bg-size: 100% 100%;
    --main_color: #fff;
    --title: 'David Libre', sans-serif;
    --font-para: 'David Libre', serif;
    --btn-color: #bbe1fa;
    --btn-font-color: #000;
    --btn-font: 1.5rem;
    --eff: .3s all ease;
}
*{
    font-family: var(--font-para);
}
html{
    font-size: 62.5%;
}
p,
label,
input::placeholder{
    font-size: 1.9rem;
    line-height: 170%;
    color: #6c757d;
}

figure img,
.fab,
.fas
{
 transition: var(--eff);
}

a,
a:hover{
    text-decoration: none !important;
    cursor: pointer;
}
body{
     background: hsl(84, 3%, 94%);
}
@media (max-width:1240px){
  html{
    font-size: 45.5%;
  }
}
/*********************
   navbar css start
*********************/
nav{
    padding: 1rem 5rem !important;
}
.navbar-brand{
    width: 40%;
    color: #fff;
    background-image: linear-gradient(#fb6222 40%, #fb6322ac 60%);
    padding-left: 100px;
    display: inline-block;
    box-sizing: border-box;
}
.navbar-brand h1{
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 800;
    animation: animate 2s linear infinite;
    animation-direction: alternate;
    padding-top: 0.5rem;
}
@keyframes animate{
    from{
        padding-left: 60px;
    }
    to{
        padding-right: 80px;
    }
}
.navbar-nav a{
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    font-size: 17px;
    position: relative;
}
.navbar-nav a:first-child{
    color: #4458dc;
}
.navbar-nav a::before{
    content: '';
    position: absolute;
    top: 110%;
    left: 0;
    width:0%;
    height: 2px;
    border-bottom: 2px solid #fb6222;
    background-color: black;
    transition: all 0.4s linear;
}
.navbar-nav a:hover::before{
    width: 100%;
}
.navbar-nav{
    margin-left: auto;
    width: 100%;
}
.navbar-nav li{
    margin-left: auto;
}
.navbar-nav li a{
    font-size: 2rem;
    font-weight: 800 !important;
}
@media (max-width:1240px){
     nav{
      padding: 0 !important;
      margin: 0 !important;
     }
    .navbar-brand{
      width: 80%;
      margin: 0 !important;
      padding: 0 !important;
      overflow: hidden;
    }
    .navbar .navbar-toggler{
      width: 20%;
      border: none;
      outline: none;
    }
    .navbar .navbar-toggler .navbar-toggler-icon i{
      font-size: 2rem;
      color: #fb6222;
      width: 100%;
      display: inline-block;
    }
    .navbar-nav{
      width: 100%;
      padding: 1rem;
      background-color: #fb6222;
    }
    .navbar-nav li{
      width: 100%;
      padding: 1rem;
    }
    .navbar-nav li a{
      color: #fff !important;
    }
}
/*************************
swiper css start here
**************************/
.swiper-section{
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 8rem;
    position: relative;
    height: 90vh !important;
    position: relative;
    z-index: 55 !important;
    overflow: hidden;
}
.swiper-section::after{
    position: absolute;
    top:0;
    left:0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to left, #fb6222, #fb6322a4);
}
.swiper-section::before{
    content: '';
    position: absolute;
    background-image: linear-gradient(to bottom, #bbe1fa, #fff);
    top:0;
    left:0;
	right:0;
	bottom:0;
    margin:auto;
    width: 700px;
    height: 700px;
    border-radius: 50%;
	box-shadow: 0 0 20px 5px gainsboro;
    z-index: 1 !important;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 500px !important;
    height: 500px !important;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .marquee-section{
    width: 100%;
    position: absolute;
    bottom: 0rem;
    left:0;
    right: 0;
    z-index: 99 !important;
  }
  .marquee-section p{
    color: #4458dc;
    font-size: 2rem;
    font-weight: 700;
  }
  @media (max-width:1240px){
    .swiper-section{
      padding: 0;
	  height:60vh !important;
    }
    .swiper-slide{
      width: 100% !important;
      height: 100%;
    }
    .swiper-slide img{
      width: 100% !important;
      height: 100%;
    }
  }

  /************
  logo
  ************/
  .logo{
    margin: 5rem auto 0 !important;
  }
  .logo .logo-div{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo .logo-div img{
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
  }
  /********************
  overview css start
  ********************/
  .overview{
    padding: 10rem 0;
  }
  .overview .overview-text div{
    background-image: linear-gradient(to right, #fb6222, #fb632274);
    height: 780px;
    padding: 1.5rem;
    border-radius: 10px;
  }
 
  .heading h1{
    color: #4458dc;
    font-weight: 800;
    font-size: 5rem;
  }
  .heading h1 span:first-child{
    color:#da205e;
  }
  .heading h1 span:last-child{
    color:#fed301;
  }
  .heading h1 span{
    position: relative;
  }

  @media (max-width:1240px){
	  .heading h1{
    font-size: 3rem;
  }
}
  /* .heading h1 span::after{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #fff;
    top:0;
    left:0;
  } */
  .overview .heading p{
    padding: 1rem 12%;
  }
  .overview .col-lg-6{
    padding: 2rem;
  }
  .overview .overview-div-left .overview-text{
    padding: 2rem;
    
  }
  .overview-text h3{
    color:#854fee;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
  }
  .overview p{
    font-size: 2.5rem;
    color:#7b6c9a;
    margin: 1rem auto;
    font-weight: 900;
  }
  .overview-text p{
    font-size: 2rem;
    color:#fff;
    padding: 1rem;
    margin: 2rem auto;
    background-color: gray;
    border-radius: 5px;
  }
  .overview-div-left .overview-text p{
    margin: 1.2rem auto;
    font-weight: 900;
  }
  .overview-div-right .overview-text p{
    margin: 1.2rem auto;
    font-weight: 900;
  }
  .overview-div-left .overview-text p span:first-child{
    color:#da205e;
    font-size: 3rem;
  }
  .overview-div-right .overview-text p span:first-child{
    color:#da205e;
    font-size: 3rem;
  }
  .overview .overview-div-left .overview-text i:first-child{
    color:#da205e;
    position: relative;
    top:-1rem;
    right: 1rem;
  }
  .overview .overview-div-left .overview-text i:last-child{
    color: #da205e;
    position: relative;
    top:-1rem;
    left: 1rem;
  }
  .heading-text1 h2{
    color:#da205e;
    font-weight: 900 !important;
    font-size: 4rem;
  }
  .overview .overview-div-right .overview-text{
    padding: 2rem;
  }

  .overview .overview-div-right .overview-text i:first-child{
    color:#da205e;
    position: relative;
    top:-1rem;
    right: 1rem;
  }
  .overview .overview-div-right .overview-text i:last-child{
    color: #da205e;
    position: relative;
    top:-1rem;
    left: 1rem;
  }
  .heading-text2 h2{
    color: #da205e;
    font-weight: 900 !important;
    font-size: 4rem;
  }
  @media (max-width:1240px){
    .overview .col-lg-6{
      padding: 0rem;
    }
	.overview .overview-text div{
    height: auto !important;
  }
  }
  /*------------------------about section---------------------------*/
.title h2{
  font-size: 5rem;
}

.title h1{
  font-size: 5rem;
  position: relative;
}
.title h1::after{
  content: '';
  position: absolute;
  width: 16rem;
  height: .5rem;
  background-color:#da205e;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -1rem;
}
.about h5{
  font-size: 2.2rem;
  color:gray;
}
.about h5 a{
  font-size: 2.6rem;
}
.about p{
  font-size: 1.8rem;
  color:gray;
}
.about button{
  background-color: rgba(0, 0, 0, 0.458);
  padding: 0.8rem 3rem;
  font-size: 1.5rem;
  color:#fff;
}
.about button a{
  color:#fff;
  font-size: 2rem;
  font-weight: 800;
}
.about .hire-btn{
  background-color:#fb6322f0;
}
.about button:hover{
  background-color: #fff;
}
.about button:hover .about button a{
  color:#da205e;
}
.about button a:hover{
  color:#da205e;
}
.about-img{
  position: relative;
  overflow: hidden;
  background-color:#fb6322f0;
  width: 85% !important;
  height: 550px;
  border-radius: 5px;
}
.about img{
  width: 100%;
  height: 97%;
  margin: 0.8rem auto;
  border-radius: 5px;
}
.about-img i{
  color:#fff;
  font-size: 3rem;
}
.about-img .animate-span{
  position: absolute;
  top:45%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color:#da205e;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img .back-span{
  position: absolute;
  top:45%;
  left:50%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: red;
  transform: scale(0);
  animation: about-animate 3s ease-out infinite;
  z-index: 1;
}
@keyframes about-animate{
  100%{
      transform: scale(2);
      opacity: 0;
  }
}
.sub-img_div{
  position: absolute;
  top: -300px;
  left:0;
  right: 0;
  margin: 0 auto !important;
  background-image: linear-gradient(rgba(0,0,0, 0.5),rgba(0,0,0, 0.5));
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  color: #fff;
  text-align: center;
  transition: var(--eff);
}
.about-img:hover .sub-img_div{
  transform: scaleY(1);
  top:0;
  transform-origin: top;
  transition: var(--eff);
}
.about-img:hover .animate-span,
.about-img:hover .back-span{
  visibility: hidden;
}
.sub-img_div h2::after{
  left: 30rem;
}
@media (max-width:1240px){
  .about-img{
    width: 100% !important;
    height: 300px;
  }
}
/***************************
action div css start
**************************/
.action{
  margin: 10rem auto 0 !important;
}
.action .action-div{
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.action .action-div i, .action .action-div span{
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
}
.action .action-div i:hover, .action .action-div span:hover{
color:blue;
}
.action .action-div1{
  background-color:#fb6222;
  border-right: 2px solid #fff;
}
.action .action-div2{
  background-color:#fb6222;
  border-right: 2px solid #fff;
}
.action .action-div3{
  background-color: #fb6222;
  border-right: 2px solid #fff;
}
.action .action-div4{
  background-color: #fb6222;
}

.action .action-div2 img{
  width:300px;
  height: auto;
  display: block;
  transition: 0.3s;
  margin: 3rem auto !important;
}
.action img:hover{
  width: 500px;
  transition: 0.3s;
}

   /*------------------------team------------------------------*/

   .team{
    padding: 100px 8%;
   }

   .team-field{
    width: 100%;
    box-shadow: 0 0 10px 4px gainsboro;
    padding: 15px 15px 25px 15px;
    border-radius: 10px;
   }
   .team-field img{
    width: 100%;
    border-radius: 10px;
   }
   .text-icons{
    margin-top: 15px;
   }
 
  
   .team .social-links{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
   }
   .team-field  i{
    font-size: 18px;
    border: 1px solid gainsboro;
    padding: 5px;
    border-radius: 40%;
    color:#fb6222;
    font-weight: bold;
   }
   .team h4{
    font-size: 2.5rem;
    font-weight: 900;
    color: gray;
   }
   .team-field p{
    font-size: 2rem;
    font-weight: bold;
    color:rgba(0, 0, 0, 0.458);
   }
   .about-div h2{
    font-size: 2.5rem;
    font-weight: 900;
   }
   @media only screen and (max-width: 450px){
    .team-field{
      margin-bottom: 15px;
    }
   }
   /*******************
   Members div css start
   *******************/
   .member-section{
    background-color: #abaeb0;
   }
   .members{
    position: relative;
   }
   .members .header1,  .members .header2{
    color:#da205e;
    font-size: 3.5rem;
    font-weight: bolder;
   }
   .members h3{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
   }
   .members .members-div h3{
    color:#4458dc;
   }
  
   .members .members-text p{
    font-size: 2rem;
    font-weight: bold;
   }
   .members-div{
    width: 96%;
    margin: 0 auto;
    padding: 2rem 4rem;
    border-radius: 10px;
   }
   .members::after{
    content: '';
    position: absolute;
    top:16.8rem;
    left:48.7%;
    height: 850px;
    width: 35px;
    background-color:#fb6222;
   }
   .members::before {
    content: 'Bhamashah Charitable Trust';
    writing-mode: vertical-rl; 
    transform: rotate(360deg);
    word-break: break-word; 
    position: absolute;
    top: 16rem;
    left: 47.8%;
    color:#fff;
    font-size: 4rem;
    font-weight: 900;
    animation: animate1 5s linear infinite;
    animation-direction: alternate;
    z-index: 15 !important;
}

   @keyframes animate1{
    0%{
      top:16.5rem;
    }
    100%{
      top:520px;
    }
   }

   @media (max-width:1240px){
    .members::before{
      display: none;
    }
    .members::after{
      display: none;
    }
   }
   /**********************
   faq css starts here
   **********************/
   #faqId{
    margin: 5rem auto;
   }
   .faq{
    background-image: linear-gradient(to right, #fb6322f0, #fb6322b9), url('../image/team-2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 5rem 15rem !important;
   }
  .faq button{
    font-size: 2rem;
  }
  .faq p{
    font-size: 1.7rem;
    font-weight: 900;
  }
  .faq .accordion-item{
    margin-top: 3.5rem;
  }
  .faq .accordion-item button{
    color:#4458dc;
    font-weight: 900;
  }
 
  .acordian-left h2{
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
   }
   .acordian-left h1{
    font-weight: 900;
    font-size: 6rem;
    color: #fff;
    margin-bottom: 3rem;
   }
   .acordian-left p{
    color:#fff;
    font-size: 2rem;
    font-weight: 900;
   }
   @media (max-width:1240px){
    .faq{
      padding: 1rem !important;
    }
    .acordian-left h2{
      font-size: 5rem;
      font-weight: 900;
      color: #fff;
     }
     .acordian-left h1{
      font-weight: 900;
      font-size: 3rem;
      color: #fff;
      margin-bottom: 3rem;
     }
   }
   /*******************
   Resource css start
   *******************/
   .resource{
    margin: 10rem auto;
   }
   .resource-main-box{
    background-color: #eeeeee9d;
    padding: 3rem 0;
   }
   .resource img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
   }
   .resource h2{
    font-size: 3rem;
    font-weight: 900;
    color:#4458dc;
   }
   .resource h3{
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 0 5px 5px whitesmoke;
    border-radius: 5px;
    background-color: #fff;
   }
   .resource-box{
    border-radius: 5px;
    position: relative;
   }
   .resource-box .resource-hidden{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    background-color:#854fee;
    place-content: center;
    transform: scaleY(1);
    transform-origin: top;
    transition: 0.3s;
   }
   .resource-box .resource-hidden p{
    color: #fff;
    margin: 2rem auto;
   }
   .resource-box .resource-hidden h4{
    font-size: 3rem;
    color: #fff;
    margin: 2rem auto;
    font-weight: 800;
   }
   .resource-box1 .resource-hidden span:first-child{
    background-color: #da205e;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
   }
   .resource-box2 .resource-hidden span:first-child{
    background-color: #fed301;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
   }
   .resource-box3 .resource-hidden span:first-child{
    background-color: lightgreen;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
   }
   .resource-box .resource-hidden{
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s;
   }
   .resource-box span{
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-color: #fb6222;
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: 0 0 15px 5px rgba(178, 175, 175, 0.723);
    width: 48%;
    text-align: center;
    cursor: pointer;
   }
   .resource-box span a{
    color: #fff;
   }
   .resource-box span a:hover{
    color: blue;
   }
   .resource-box span:hover{
    color: blue;
   }
   .resource .resource-box1 img{
    border-bottom: 10px solid #da205e;
   }
   .resource .resource-box2 img{
    border-bottom: 10px solid #fed301;
   }
   .resource h3{
    color:#da205e !important;
   }
   .resource button{
    border: none;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    padding: 2rem;
    border-bottom: 8px solid gray;
    border-left: 7px solid lightslategray;
   }
  

   .fullscreen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .fullscreen-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }
  
  .exit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
  }
  
  .d-none {
    display: none;
  }
  
   /****************
   footer css start
   ****************/
   .footer{
    padding: 20px 0px 20px 0px;
    width: 100%;
    background-image: linear-gradient(to bottom, #fb6322ef,#fb6322cc);
    justify-content: center;
   }
   .footer{
    padding: 20px 6% !important;
    color: #fff;
   }
   .footer h3{
    font-size: 2.5rem;
    font-weight: 800;
    color:#4458dc;
   }
   .footer p{
    font-size: 2rem;
    color: #fff;
    line-height: 2;
    font-weight: 700;
   }
   .footer span{
    color: white;
    display: flex;
    justify-content: center;
    text-align: center;
   }
   .footer a{
    color: #fff;
   }
   .footer h6{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
   }
   .footer i{
    color:#854fee;
    font-size: 2rem;
    border: 1px solid #fff;
    padding: 10px 10px;
    border-radius: 50%;
    line-height: 4;
    margin-right: 1rem;
    cursor: pointer;
   }
   .footer i:hover{
    color: #fff;
    border: 1px solid blue;
    transition: 0.5s;
   }
 
  

  