@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@500&display=swap');
:root {
    /* --bangla_font: 'Hind Siliguri', sans-serif; */
    --bangla_font: 'Noto Sans Bengali', sans-serif;
    --english_font: 'Manrope', sans-serif;
    --green: rgb(27, 171, 84);
}

*{
    margin: 0;
    padding: 0;
    outline: 0;
}
body{
  background: linear-gradient(360deg, #f4f9ff, #ffffffac), url('../images/white-linen-texture_1409-2016.avif');
}
::selection{
  background-color: #0048ff1a;

}

/* Style the scrollbar track */
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #0039c0;   /* Change to your preferred color */
}

/* Style the scrollbar in Firefox */
.scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #0039c0; /* Change to your preferred colors */
}

.sec_head{
	text-align: center;
	margin: 2rem 0 2rem 0;

	
}
.sec_head h2{
    font-weight: 800;
	font-size: 3rem;
	text-transform: uppercase;
	font-family: var(--bangla_font);

}

/* header-nav */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    transition: 1s;
    background-color: transparent;
    /* background-image: url('../images/navbg.jpg'); */
    font-family: var(--english_font);
    transition: all 1s ease 0s;
    }
    header.sticky{
    background: #f7f8fa;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: all 1s ease 0s;    
}
    .navbar-brand{
        font-size: 20px !important;
        font-weight: 600;
    }
    .navbar-collapse{
    text-align: center;
    }

    .navbar{
    padding: 0 !important;
    }
    .navbar-nav li{
        margin: 0px 1rem;
    }
    .navbar-nav li a{
        font-size: 1.2rem;
        text-transform: capitalize;
        padding: 10px 28px;
        color: #000;
        font-weight: 500;
        font-family: var(--bangla_font);
    }
    .nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: #0039c0;
    transition: width .3s;
    }
    .navbar-nav .nav-item .active::after,
    .navbar-nav li .active,
    .nav-link:hover::after {
    content: '';
    display: block;
    height: 1.5px;
    color: #0039c0;
    width: 100%;
    transition: width .3s;
    }
    .navbar-nav a:hover,
    .navbar-nav .active{
    color: #0039c0;
    }
    .nav-container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    }
    .navbar-brand img{
        height: auto;
        width: 140px;
    }
    .nav-link{
    font-size: 17px;
    }
    .navbar-btn{
    display: none;
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #7c7f81;
    border-radius: .25rem;
    }
    .navbar-btn span i{
    font-size: 25px;
    padding: 6px;
    color: #4f5151ba;
    }
    .navber-icone .log_btn{
        background-color: rgb(27, 171, 84);
        color: #fff;
        font-family: var(--english_font);
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
        padding: 10px;
        border-radius: 8px;
        font-family: var(--bangla_font);
    }
    .navber-icone .log_btn:hover{
        transform: scale(1.2);
        color: #fff;
    }
    /* hamburger toogle menu*/
    .navbar-toggler {
    border: 1px solid black !important;
    padding: 12px !important;
    border-radius: 4px !important;
    }
    .animated-icon1, .animated-icon2, .animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    }
    .animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    }
    .animated-icon1 span {
    background: #4f4d4c;
    }
    .animated-icon1 span:nth-child(1) {
    top: 0px;
    }
    .animated-icon1 span:nth-child(2) {
    top: 10px;
    }
    .animated-icon1 span:nth-child(3) {
    top: 20px;
    }
    .animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    }
    .animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
    }
    .animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    }
    /* hamburger-toggle end */
    /* header-nav end */


    /* hero slider section start */

    /* ==== Main CSS === */
/* 
.landing_content {
  background: rgb(251, 246, 242);
} */

.hero_slider{
  margin-top: 4rem;
  border-radius: 8px;
}

/* Style the time bar container */
.time-bar-container {
  position: relative;
  width: 100%;
  height: 8px; /* Set the desired height of the time bar */
  background-color: transparent; /* Background color of the time bar container */
}

/* Style the time bar */
.time-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0; /* Initially set to 0% */
  background-color: #0048ff; /* Color of the time bar */
   /* Smooth transition for width changes */
}



.img-fill{
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center
  }
  
  .img-fill img {
    height: 100%;
    width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
  }
  
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
  }
  
  .Grid1k {
    padding: 0 15px;
    max-width: 1200px;
    margin: auto;
  }
  
  .blocks-box,
  .slick-slider {
    margin: 0;
    padding: 0!important;
  }
  
  .slick-slide {
    float: left /* If RTL Make This Right */ ;
    padding: 0;
  }
  
  /* ==== Slider Style === */
  .Modern-Slider{
    margin-top: 65px;
  }
  .Modern-Slider .item .img-fill{
    height:100%;
    background:#000;
  }
.Modern-Slider button{
    display: none !important;
}
  .Modern-Slider .item .img-fill .info{
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background:rgba(0,0,0,.50);
    line-height:100vh;
    text-align:center;
    display: none;
  }
  
  /* .Modern-Slider .item .img-fill img{
    filter:blur(5px);
  }
   */




  .Modern-Slider .item .info > div{
    display:inline-block!important;
    vertical-align:middle;
  }
  
 
  .Modern-Slider .NextArrow:before {
    content: '\f054';
    position:absolute;
    top:50%;
    right:0px;
    width:45px;
    height:45px;
    border:0 none;
    margin-top:-22.5px;
    text-align:center;
    color:#FFF;
    z-index:5;
}

  .Modern-Slider .PrevArrow:before{
    content:'\f054';
    position:absolute;
    top:50%;
    left:0px;
    width:45px;
    height:45px;
    background:rgba(0,0,0,.50);
    border:0 none;
    margin-top:-22.5px;
    text-align:center;
    color:#FFF;
    z-index:5;
}
  
  .Modern-Slider .slick-dots{
    position:absolute;
    height:5px;
    background:rgba(255,255,255,.20);
    bottom:0px;
    width:100%;
    left:0px;
    padding:0px;
    margin:0px;
    list-style-type:none;
  }
  .Modern-Slider .slick-dots li button{display:none;}
  .Modern-Slider .slick-dots li{
    float:left;
    width:0px;
    height:8px;
    background:#d62828;
    position:absolute;
    left:0px;
    bottom:0px;
  }
  
  .Modern-Slider .slick-dots li.slick-active{
    width:100%;
    animation:ProgressDots 11s both;
  }
  
  .Modern-Slider .item h3{
    font:30px/50px RalewayB;
    text-transform:uppercase;
    color:#FFF;
    animation:fadeOutRight 1s both;
    margin:0;
    padding:0;
  }
  
  .Modern-Slider .item h5{
    margin:0;
    padding:0;
    font:15px/30px RalewayR;
    color:#FFF;
    max-width:600px;
    overflow:hidden;
    height:60px;
    animation:fadeOutLeft 1s both;
  }
  
  .Modern-Slider .item.slick-active h3{
    animation:fadeInDown 1s both 1s;
  }
  
  .Modern-Slider .item.slick-active h5{
    animation:fadeInLeft 1s both 1.5s;
  }
  
  .Modern-Slider .item.slick-active{
    animation:Slick-FastSwipeIn 1s both;
  }
  
  .Modern-Slider {background:#ffffff;}
  
  /* ==== Slider Image Transition === */
  @keyframes Slick-FastSwipeIn{
      0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(350px);} 
      100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(350px);} 
  }
  
  @-webkit-keyframes ProgressDots{from{width:0px;}to{width:100%;}}
  @keyframes ProgressDots{from{width:0px;}to{width:100%;}}
  
  /* ==== Slick Slider Css Ruls === */
  .slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
  .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0;
    height: 420px;
    border-radius: 8px;
  }
  .slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
  .slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  .slick-track{position:relative;top:0;left:0;display:block}
  .slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
  .slick-loading .slick-track{visibility:hidden}
  .slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
  .slick-slide.dragging img{pointer-events:none}
  .slick-initialized .slick-slide{display:block}
  .slick-loading .slick-slide{visibility:hidden}
  .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}



  
/* protfolio section start */
.course_card{
	background-color: #f7f8fa;
    padding: 15px;
    margin: 10px 0px;
    border-radius: 18px;
	font-family: "Noto Sans Bengali", Sans-serif;
    z-index: 111;
    position: sticky;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.course_tags{
  width: 100%;
  height: auto;
  padding: 0 5px;
}
.course_tags .col-6{
  padding: 4px;
}
.course_tags p{
  font-size: 16px;
  padding: 4px 8px;
  width: fit-content;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;  border-radius: 40px;
  width: 100%;
  font-family: var(--bangla_font);
}
.course_tags p span{
  color: #0039c0;
}
.our_course_sec{
    position: relative;
}
/* .our_course_sec::before{
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(http://t.commonsupport.com/adro/images/icons/ring-circle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    animation: fa-spin 25s infinite alternate;
    z-index: 0;
} */
.course_card #enroll_btn1{
	background-color: rgb(20 40 241);
    border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: var(--english_font);
	height: 44px;
	line-height: 44px;
	outline: 0;
	overflow: hidden;
	padding: 0 20px;
	pointer-events: auto;
	position: relative;
	text-align: center;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
	vertical-align: top;
	white-space: nowrap;
	width: 100%;
	z-index: 9;
	border: 0;
}
.course_card #enroll_btn1:hover{
	background: rgb(3, 24, 255);
}

.course_card:hover{
  scale: 1.02;
  transition: 2ms ease-in;
  /* border: .5px solid #0039c0; */
  box-shadow: rgba(0, 72, 255, 0.16) 0px 3px 6px, rgba(0, 13, 255, 0.23) 0px 3px 6px;
}

.course_card #enroll_btn1{
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}


.course_btn_dtls h2{
	font-size: 22px;
	margin: 22px 0;
    font-family: var(--bangla_font);
}
.course_btn_dtls #price{
color: rgb(20 40 241);
font-weight: 600;
margin: 20px 0;
font-family: var(--bangla_font);
}
.course_btn_dtls #price span{
	color: #888888;
}

.portfolio{
	background-color: #fff;
	}
	.filter-menu {
	margin-bottom: 0px;
	}
	.filter-menu ul {
	display: inline-block;
	padding: 8px 15px;
	/* background: #fff; */
	border-radius: 24px;
	}
	.filter-menu ul li {
	display: inline-block;
	padding: 10px 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .3px;
	cursor: pointer;
	text-transform: capitalize;
	font-family: var(--bangla_font);
	border-radius: 8px;
	color: #0039c0;
    border: 1px solid #0039c0;
	transition: all 0.3s linear;
  margin: 4px 2px;
	}
	.portfolio-card {
	margin-bottom: 18px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	border-radius: 12px;
	}
	.portfolio-card img {
	width: 100%;
	height: auto;
	transition: all .3s;
	}
	.portfolio-card title {
	font-size: 25px;
	font-family: var(--english_font);
	font-weight: 600;
	margin: 0 0 15px 0;
	}
	.portfolio-card .post {
	display: block;
	font-weight: 400;
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	color: #fff
	}
	.portfolio-card .protfolio-over{
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #fff;
	background: #000000ba;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	padding-top: 6rem;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	text-transform: capitalize;
	transition: all .3s;
	}
	.portfolio-card .protfolio-over h3 {
	font-size: 18px;
	font-weight: 600;
	}
	.card-overlay{
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	}
	.card-overlay p{
	text-align: center;
	}
	.portfolio-card:hover .protfolio-over{
	opacity: 1
	}
	.portfolio-card:hover img{
	transition: all .3s;
	transform: scale(1.02);
	}
	.mixitup-control-active{
	color: #fff !important;
    background-color: #0039c0;
	font-weight: 400 !important;
	}

	/* ------------------ */

/* testimonial section start */
.testimonial_sec{
  background: #f4f7fd;
  padding: 1rem 0 4rem;
  margin-top: 4rem;
}
.testimonial_slides{
  display: flex;
  gap: .4rem;
  position: relative;
  z-index: 1;
}
.testimonial_overlay1{
  position: absolute;
  height: 63%;
  background: linear-gradient(83deg, #f4f7fd, transparent);
  width: 20%;
  z-index: 11;

}
.testimonial_overlay2{
  position: absolute;
  height: 63%;
  background: linear-gradient(266deg, #f4f7fd, transparent);
  width: 20%;
  right: 0;
  z-index: 11;
}

.testimonial_slider_box img{
  height: 290px;
  width: auto !important;
}



/* --------------- */



/* video section start */

.video_slider{
    width: 100%;
    margin: auto;
  }
  .video_slider_box{
    width:600px;
    height: 400px;
    text-align:center;
    font-size: 5em;
    padding: 0;
    padding: 0 .2rem;
  }
  .video_slide_btns{
    margin-top: 1rem;
    text-align: center;
    display: none;
  }
  .video_slider_sec .video_slide_btns .slick-next,
  .video_slider_sec .video_slide_btns .slick-prev{
 /* Adjust this value to position the buttons as needed */
    font-size: 24px; /* Adjust the font size as needed */
    background: rgb(0 57 192); /* Add background color for better visibility */
    color: white; /* Set button text color */
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    margin: 0 .2rem;
    border-radius: 4px;
  }

  .video_slider .slick-arrow{
    display: none !important;
    /* position: absolute;
    bottom: -4rem;
    border: none;
    background-color: #0039c0;
    color: #fff;
    padding: 10px 20px;
    margin: 0; */
  }

  /* Style the FontAwesome arrow icons */
  .video_slider button i {
    font-size: inherit;
  }
  
  /* Style the left and right buttons separately */
  .video_slider button.slick-prev {
    left: 10px; /* Adjust the left position as needed */
  }
  
  .video_slider button.slick-next {
    right: 10px; /* Adjust the right position as needed */
  }

.video-slider-controller{
  margin-top: 1rem;
  gap: .8rem;
  display: flex;
  justify-content: center;
}
.video-slider-controller button{
  padding: 4px 18px;
  background: #0039c0;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
}
/* ------------------------------- */

/* yt subs section start */

/* .yt_subs_sec{
    height: 200px;
    width: 100%;
    text-align: center;
    background-color: #d62828;
}
.yt_subs_sec a{
    text-decoration: none;
    padding: 1.5rem;
    color: #fff;
} */


/* join fb group section */
.join_fb_grp{
  background-image: url('../images/join_bg.svg');
  padding: 120px 0;
  text-align: center;
  margin: 5rem 0;
}
.join_fb_grp h1{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--bangla_font);
}

.join_fb_grp .join_btn{
  margin-top: 2rem;
}
.join_fb_grp .join_btn a{
  padding: 1rem 3rem;
  background: #0039c0;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--bangla_font);
}

/* counter section start */

.counter_sec{
  background-image: url('../images/couterbg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: fit-content;
    width: 100%;
    padding: 3rem 0;
    padding-bottom: 5rem;
    margin-top: 4rem;
    
}
.counter_sec .sec_head h2{
  color: #fff;
}
.counter_sec .sec_head p{
  color: #fff;
  font-family: var(--bangla_font);
  font-size: 28px;
}

.counter_box{
  background: #00000042;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  margin: 0.5rem 0;
}
.counter_box h1{
  font-size: 56px;
  font-weight: 600;
  font-family: var(--bangla_font);
}
.counter_box p{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--bangla_font);
}
/* ---------------- */


    	/* footer section start */
.footer{
	margin-top: 5em;
	background-color: #f0f7fc;
	padding: 60px 40px;
	padding-bottom: 4px;
	border-radius: 30px 30px 0 0;
	}
    .footer_title{
        font-family: var(--english_font);
        font-weight: 600;
        text-transform: capitalize;
    }
	.footer ul{
		padding: 0;
	}
	.footer ul li{
		list-style: none;
		margin-bottom: 8px;
		font-weight: 500;

	}
	.footer ul li a{
		text-decoration: none;
		color: #71828A;
	}
.footer #footer_logo img{
	display: block;
	width: 240px;
	height: auto;
}
.footer_link{
	padding: 0;
	display: flex;
	column-gap: 10px;
}
.footer_link li{
list-style: none;
}
.footer_social_links{
	margin-top: 18px;
	padding: 0;
}
.footer_link li a{
	background: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}
	/* footer section end */


    
/* course details page/enroll page start*/
.non_responsive_main{
    margin-top: 5rem;
}
.sticky_brf {
	position: sticky;
	border: 1px solid #dbe1eb;
	border-radius: 4px;
	position: sticky;
	top: 5rem; /* Adjust this value to control the distance from the top of the viewport */
	max-height: auto; /* Adjust as needed to control the maximum height */
	overflow-y: hidden;
}
.course_brf{
	font-family: 'Montserrat', sans-serif;
}
.course_brf p{
	font-weight: 400;
}
.sticky_brf .course_img{
	height: 232px;
	width: 100%;		
	margin-bottom: 40px;
	
} 
.sticky_brf .course_img img{
height: 100%;
width: 100%;
}


.course_sticky_info{
	padding:15px;
	
}


.course_sticky_info .crs_price{
display: flex;
font-family: var(--bangla_font);
}
.course_sticky_info .crs_buy #crs_buy_btn{
	display: grid;
    height: 50px;
    width: 100%;
    margin: auto;
    color: #fff;
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    background-color: #0039c0;
    align-items: center;
    border-radius: 4px;
	font-weight: 500;
	font-family: var(--bangla_font);
}
.crs_inst{
border-radius: 8px;
border: 1px solid #dbe1eb;
display: flex;
padding: 8px 12px;
}
.inst_details {
	margin-left: 1rem;
}
.inst_details a{
	text-decoration: none;
	font-size: 18px;
	font-family: var(--english_font);
	color: #000000;
}
.inst_details a span{
	font-size: 12px;
}
.inst_details a:hover{
	color: #0039c0;
}
.inst_details p{
	margin: 0;
	font-family: var(--english_font);
	font-weight: 500;
}
.crs_inst .inst_img{
	padding: 4px;
	height: 100px;
	width: 100px;
}
.course_brf h2{
    font-family: var(--english_font);
}
.more_crs_info_ttl h2{
    font-family: var(--bangla_font);
    font-weight: 500;
    font-size: 28px;
}
.crs_inst .inst_img img{
	height: 100%;
	width: 100%;
	border-radius: 8px;
}
.course_sticky_info ul{
	list-style: none;
	padding: 0;

	
}
.course_sticky_info ul li{
	color: #111827;
	margin: 10px 0;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--bangla_font);
}
.course_sticky_info ul li span{
	margin-right: 10px;
}


/* more course info part start */

.more_crs_info{
	margin-top: 40px;
	font-family: var(--bangla_font);
    font-weight: 500;
    font-size: 18px;
}

/* accordion part start */
.accordion-button{
    font-family: var(--bangla_font);
    font-weight: 500;
}

.accordion-button:active, .accordion-button:focus{
	border: none !important;
	box-shadow: none;
}
.accordion-button:not(.collapsed){
	color: #fff;
	background-color: #0039c0;	
}
.accordion-button:not(.collapsed)::after{
	filter: grayscale(100%) brightness(0) invert(1);
}


.cls_needs_box ul{
list-style: none;
padding: 0;
margin: 0;
}
.cls_needs_box{
    border: 1px solid #dbe1eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.cls_needs_box ul li{
    display: flex;
    gap: .8rem;
    font-size: 18px;
    font-family: var(--bangla_font);
}

.cls_needs_box ul li span{
    color: #0039c0;
    font-size: 18px;
}

.cls_needs_box p{
    padding: 0;
    margin: 0;
    font-family: var(--bangla_font);
}
.cls_needs_box p a{
    color: #0039c0;
    text-decoration: underline;
    font-size: 18px;
}
.cls_needs_tel_box{
    text-decoration: none;
    border: 1px solid #dbe1eb;
    border-radius: 8px;
    padding: 1.2rem;
margin-top: .5rem;
width: fit-content;
}
.cls_needs_tel_box a{
gap: 1rem;
display: flex;
text-decoration: none;
color: #0039c0;
font-family: var(--bangla_font);
font-size: 22px;
align-items: center ;
}
.cls_needs_tel_box a span{
    font-size: 20px;
}
.cls_needs_tel_box:hover{
    border-color: #0039c0;
}




.mobile-menu-container{
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.mobile-menu-container .header {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  background-color: #ffffff;
  position: fixed;
  height: 60px!important;
  overflow: hidden;
  z-index: 10;
  padding: 14px;
  padding-top: 10px;
  position: absolute;
  text-align: right;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;

}
.mobile-menu-container .header img{
  height: 42px;
}
.mobile-menu-container .main {
  margin: 0 auto;
  display: block;
  height: 100%;
  margin-top: 60px;
}
 .mainInner{
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.mainInner div{
  display:table-cell;
  vertical-align: middle;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 1.25px;
}
 #sidebarMenu {
  height: 100%;
  position: absolute;
  left: 0;
  width: 250px;
  margin-top: 60px;
  transform: translateX(-250px);
  transition: transform 250ms ease-in-out;
  /* background:linear-gradient(180deg, #0039c0 0%, #30067c 100%); */
background: #fff;
}

.sidebarMenuInner{
  margin:0;
  padding:0;
  background: #fff;
  /* background: linear-gradient(180deg, #0039c0 0%, #30067c 100%); */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebarMenuInner li{
  list-style: none;
  color: #000000;
  padding: 12px;
  font-family: var(--bangla_font);
  cursor: pointer;
  font-size: 20px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}
.sidebarMenuInner li span{
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
}

.sidebarMenuInner li a{
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}
.sidebarMenuInner .active, .sidebarMenuInner .active a {
  /* Your CSS styles here */
  color: #fff !important;
  background: #0048ff;
}

 input[type="checkbox"]:checked ~ #sidebarMenu {
  transform: translateX(0);
}

input[type=checkbox] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}
 .sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 22px;
  left: 15px;
  height: 22px;
  width: 28px;
}
 .spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #0039c0;
}
 .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  height: 4px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
  height: 4px;
}
 .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  height: 4px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
  margin: 0;
}
 input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}
 input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}
