/*====*PRESET CSS*====*/     
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}  
body {   
	background-color: #111; 
	font-family: "Tiro Bangla", serif;
	font-family: "Karla", sans-serif;
	font-weight: 400;
	font-style: normal; 
	margin: 0;
}  
img {
    max-width: 100%;
    margin-bottom: 10px;
}
ul,
li {
	margin: 0;
	padding: 0; 
}  
/*====*HEADER CSS*====*/ 
.site-header {
    background-color: #fff; 
    box-shadow: 0 1px 15px 0 rgb(0 0 0 / 15%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.site-header .menu {
    display: flex;
    justify-content: space-between;
	padding: 5px 15px;
}  
.site-header .logo {
    max-width: 50px;
    border-radius: 50%;
    margin: 0;
} 
.site-header .menu a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    display: inline-block;
    background-color: #f0f0f0;
    box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
    color: #333;
    text-align: center;
    font-size: 17px;
    margin-top: 8px;
}
#trigger {
    /*color: #333;*/
}
/*====*SIDESCREEN CSS*====*/ 
.sidemenu {
    position: fixed;
    width: 250px;
    top: 0;
    left: -260px;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 1px 9px 0 rgb(0 0 0 / 20%);
    z-index: 99999;
    transition: all 0.5s ease;
}
.sidemenu.active {
    left: 0;
} 
.sidemenu .close {
    display: block;
    line-height: 46px;
    text-align: right;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    margin-right: 9px;
} 
.sidemenu ul li {
    display: block;
    border-top: 1px dashed #ddd;
    list-style: circle !important;
	position: relative;
	padding-left: 10px;
}
.sidemenu ul li::before {
    position: absolute;
    content: '\F309';
    font-family: 'bootstrap-icons';
    font-size: 30px;
    left: 0;
    color: #333;
}
.sidemenu ul li a {
    display: block;
    color: #333;
    text-align: left;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 15px;
    line-height: 35px;
    font-weight: 400;
    transition: all 0.5s ease;
	position: relative;
}
.sidemenu ul li a:hover {
	color: #000;
}
.sidemenu ul li a::after {
    position: absolute;
    content: '\F135';
    font-family: 'bootstrap-icons';
}
.sidemenu .demo {
    position: absolute;
    bottom: 15px;
    padding: 20px 13px;
    width: 100%;
}
.sidemenu .demo a {
    display: block;
    font-size: 14px;
    color: #fff;
    background-color: #333;
    padding: 6px 15px;
    border-radius: 25px;
    margin-bottom: 5px;
    text-decoration: none;
    text-align: center;
    font-family: 'Noto Serif Bengali';
}
.body-overlay {
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
	cursor: move;
}

.body-overlay.opened {
    opacity: 1;
    visibility: visible;
}  
/*====*Banner CSS*====*/ 
.banner {
    margin-top: 150px;
    margin-bottom: 30px;
    text-align: center;
} 
.banner h1 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
}

.banner p {
    color: #888;
    font-size: 15px;
}
/*====*PRICING CSS*====*/ 
.pricing {
	margin-bottom: 90px;
}
.pricing-box {
    margin-bottom: 30px;
    background-color: #333;
    padding: 20px 15px;
}
.pricing-plan .top {
    border-bottom: 1px dashed #000;
}

.pricing-box i {
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    background-color: #bb864b;
    border-radius: 5px;
    margin-bottom: 5px;
}

.pricing-box h5, .pricing-box h3, .pricing-box p {
    color: #fff;
}
.pricing ul {
    padding: 10px 0;
}
.pricing ul li {
    list-style: none;
    color: #ccc;
    position: relative;
    padding-left: 21px;
    font-size: 14px;
    line-height: 28px;
}
.pricing ul li::before {
    position: absolute;
    left: 0;
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: #46992b;
}
.pricing ul li.na {
    color: #999;
}
.pricing ul li.na::before {
    content: '\F623';
    color: #ff8a8a;
}
.pricing-box h4 {
    margin-top: 10px;
    background-color: #222;
    display: inline-block;
    padding: 5px 25px;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
}
.pricing h5 {
    font-size: 16px;
}

.pricing h3 {
    font-size: 30px;
}

.pricing  p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
}

.top {
    border-bottom: 1px dashed #666;
}
/*====*FOOTER CSS*====*/  
.site-footer {
    background-color: #444;
    padding: 10px 0;
}
.site-footer p {
    text-align: center;
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 0;
    text-transform: capitalize;
    text-shadow: 0 1px 3px #000;
} 