@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    margin: 0;
    overflow-x: hidden;
     /* font-family: "Poppins", sans-serif !important; */
     font-family: "DM Sans", sans-serif !important;
}

html , body{
    overflow-x: hidden;
    box-sizing: border-box;
  }

html{
    scroll-behavior: smooth;
}


#preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #106eea;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  .important{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -150;
    opacity: 0;
    cursor: pointer;
  }

  

  .important.active{
    z-index: 150;
    opacity: 1;
    background: red;
  }


  .black-bg{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -150;
    opacity: 0;
    cursor: pointer;
    transition: background 0.3s ease-in-out, opacity 0.5s ease-in-out;
  }

  .black-bg.active{
    z-index: 150;
    opacity: 1;
    background: #0000006c;
    transition: background 0.3s ease-in-out, opacity 0.5s ease-in-out;
  }

  .sidebar{
    background-color: white;
    z-index: 200;
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 55%;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    display: none;
    padding: 30px 14px;
  }

  .sidebar.active{
    right: 0;
    transition: all 0.5s ease-in-out;
  }

  .side-bar-titles{
    display: flex;
    justify-content: space-between;
    align-items: center; 
  }

  .side-bar-titles img{
    object-fit: contain;
  }

  .side-bar-titles img:nth-child(1){
    width: 100px;
  }

  .side-bar-titles img:nth-child(2){
    width: 22px;
    cursor: pointer;
  }

  .link-list{
    margin-top: 80px;
  }

  .link-list a{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    gap: 8px;
    /* background: red; */
    border-bottom: 1px solid #5e5e5e3d;
    padding: 12px 0px;
    color: #1d1f40;
    text-decoration: none;
  }

  .link-list img{
    object-fit: contain;
    width: 13px;
  }

  .sidebar-social{
    margin-top: 70px;
    display: flex;
    justify-content:center;
    align-items: center;
    gap: 8px;
  }

  .sidebar-social a{
    cursor: pointer;
  }

  @media(max-width:950px){
    .black-bg{
      display: block;
    } 

    .sidebar{
      display: block
    }
  }

  @media(max-width:600px){
    .sidebar{
      width: 65%;
    }
  }

  @media(max-width:500px){
    .sidebar{
      width: 73%;
    }
  }

  @media(max-width:400px){
    .sidebar{
      width: 80%;
    }
  }


  

.fixed-icons-wtp .whatsapp{
	position:fixed;
	font-size:30px;
	width:60px;
	height:60px;
	bottom:24px;
	right:27px;
  background: linear-gradient(90deg, #0053a9 0%, #1d1f40 100%);
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #2f2f2f;
  z-index: 50;
}


.fixed-icons-wtp .whatsapp img{
    position: absolute;
    top: 49%;
    left: 54%;
    transform: translate(-50% , -50%);
    color: #fff;
    width: 32px;
}

.fixed-icons-wtp .my-float{
	margin-top:12px;
}


.fixed-icons-wtp .whatsapp:before{
  position:absolute;
  content:'';
  background: linear-gradient(90deg, #0053a9 0%, #1d1f40 100%);
  left:0;
  right:0;
  bottom:0;
  top:0;
  border-radius:50%;
  animation:animate 2s linear infinite;
}
.fixed-icons-wtp .whatsapp:after{
  position:absolute;
  content:'';
  background: linear-gradient(90deg, #0053a9 0%, #1d1f40 100%);
  left:0;
  right:0;
  bottom:0;
  top:0;
  border-radius:50%;
  animation:animate 2s 1s linear infinite;
}

@keyframes animate{
  100%{
    transform:scale(1.5);
    opacity:0
  }
}

.fb-customerchat{
  z-index: 200;
}

.noti{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  background: #1d1f40;
  display: flex;
  justify-content: center;
  padding: 8px 3px;
  gap: 0.5rem;
  border-radius: 12px;
  color: #fff;
  top: -100px;
  width: 100%;
  max-width: 260px;
}

.noti.active{
  animation: animateNoti ease-out 4s;
}

@keyframes animateNoti {
  0%{
    top: -100px;
  }15%{
    top: 5px;
  }95%{
    top: 5px;
  }100%{
    top: -100px;;
  }
}

.noti p{
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 0rem;
}