/*
	Theme Name: Fulchua
	Author: Fulchua Madrasha Chadpur

	Developer: Mahbubur Rahman
    Web Address: www.mahbubrn.com
    Skype: mahbub
    Email: mahbubrn86@gmail.com
*/

/*======================================
            CALLING FONTS
=======================================*/
/* @import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;700&display=swap'); */

/*======================================
            IMPORT STYLE
=======================================*/
@import url(grid.css); /*==== framework css ====*/
@import url(font-awesome.min.css); /*==== font-awesome icon ====*/

@import url(../js/plugins/slider/slick.css); /*==== slick slider ====*/
@import url(../js/plugins/slider/slick-theme.css);

@import url(../js/plugins/mobile/mobileNav.css); /*==== mobile nav ====*/


/* SolaimanLipi Font Setup */
@font-face {
  font-family: 'SolaimanLipi';
  src: url('../fonts/SolaimanLipiNormal.woff2') format('woff2'),
       url('../fonts/SolaimanLipiNormal.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Bold - একই ফাইল re-use */
@font-face {
  font-family: 'SolaimanLipi';
  src: url('../fonts/SolaimanLipiNormal.woff2') format('woff2'),
       url('../fonts/SolaimanLipiNormal.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Italic - একই ফাইল re-use */
@font-face {
  font-family: 'SolaimanLipi';
  src: url('../fonts/SolaimanLipiNormal.woff2') format('woff2'),
       url('../fonts/SolaimanLipiNormal.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}



/*======================================
              RESET STYLE
=======================================*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
*:focus {outline: none;}

body{
    background: url(../img/bg.png) repeat;
    background-color: #97bd7f;
    /* font-family: 'Hind Siliguri', sans-serif;
    font-size: 15px; */

    font-family: 'SolaimanLipi', sans-serif;
    font-weight: 400;
}
a, a:hover, a:link, a:visited, a:active{
    text-decoration: none;
    cursor: pointer;
}
ul{list-style: none;}
label, select{cursor: pointer;}
img{display: inline-block;}

h1{font-size: 36px;}
h2{font-size: 24px;}
h3{font-size: 22px;}
h4{font-size: 20px;}
h5{font-size: 18px;}
h6{font-size: 16px;}

table{
    width: 100%;
    border: 1px solid #e3e3e3;
    box-shadow: 0 0 1px #e3e3e3;
    margin: 15px 0;
    overflow: auto;
}
table thead{
    background: #e3e3e3;
    border-bottom: 2px solid #999;
}
table tbody{}
table tr{}

table th,
table td{
    padding: 7px;
    border: 1px solid #e3e3e3;
    text-align: center;
}

.txtleft{text-align: left !important;}
.clr{overflow: hidden;}
.left{
    float: left;
    margin-right: 10px;
}
.right{
    float: right;
    margin-left: 10px;
}
.white{color: #fff!important;}
.black{color: #000!important;}

.preload{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/preload.gif) no-repeat center center rgba(255, 255, 255, 1);
    background-size: 100px;
}

#scrollUp {
    background-image: url("../img/top.png");
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
}

.wrapper{
    position: relative;
    background: #FFF;
    width: 1045px;
    margin: 0 auto;
}
.brdrtop{border-top: 3px solid #81bd00;}
.brdrbottom{border-bottom: 4px solid #81bd00;}
.box{box-shadow: 0 0 5px #ddd;}
.bg1{
    background: url(../img/bg1.png) repeat;
    height: 15px;
}
.bg2{
    background: url(../img/bg2.png) repeat;
    height: 23px;
    margin-bottom: 30px;
}

/*======================================
              HEADER
=======================================*/

.banner{
    text-align: center;
    height: 140px;
    padding: 15px;
}
.banner img{
    margin-top: 7px;
}
.banner a{color: #000;}
.banner h1{
    margin-top: 15px;
}
.banner p{}

/*
    ---------------------

    ---------- NAV
*/

nav{
    background:#122E01;
    position: relative;
    box-shadow: inset -1px -5px 0px -1px #b08930;
    border-bottom: 5px solid #81bd00;
}
nav ul li{
    position: relative;
    display: inline-block;
}
nav ul li a{
    color: #fff;
    display: inline-block;
    padding: 12px 10px;
    border-right: 1px solid #3f7091;
}
nav ul li:hover > a{
    color: #b08a30;
}

/*-- sub menu --*/
nav ul ul{
    display: none;
    position: absolute;
    z-index: 999;
    min-width: 220px;
    background: #122E01;
    text-align: left;
}
nav ul li:hover > ul{
    display: block;
}
nav ul ul li{
    display: block;
}
nav ul ul li a{
    color: #fff;
    padding: 8px;
    border-bottom: 1px solid #333;
    display: block;
    transition: 0.30s;
}
nav ul ul li:hover > a{
    color: #b08a30;
    margin-left: 3px;
}

/*----- nav icon if have sub menu -----*/
nav ul li a:first-child:nth-last-child(2):after {
    /* content: "";
    font-family:FontAwesome;
    color: #fff;
    position: absolute;
    right: -5px;
    top: 17px; */

    position: absolute;
    right: 0;
    top: 47%;
    display: inline-block;
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top: 4px solid #fff;
}

/* ------------------- */
.latestnews{
    padding: 30px 15px 0;
    overflow: hidden;
}
.latestnews h4{
    float: left;
    background: #f0f0f0;
    padding: 5px 20px;
    margin-right: 10px;
}
.latestnews ul{
    overflow: hidden;
    margin-top: 5px;
    float: left;
    width: 700px;
}
.latestnews ul li a{color: #333;}



/*======================================
              SECTION
=======================================*/
section{
    padding: 20px;
    overflow: hidden;
}

/*
    -----------------------------

    ---------- Content Left Side
*/

.cls{
    float: left;
    padding: 20px;
    width: 660px;
    text-align: center;
}
.cls h1{
    color: #325931;
    margin: 0 0 25px;
}
.cls img{
    width: 100%;
    height: 100%;
}
.slider img{
    display: block;
    height: 150px;
}

.featurehome{
    overflow: hidden;
    padding: 25px 15px;
    
}
.featurehome p{margin-top: 20px;}

/*
    -----------------------------

    ---------- Content Right Side
*/
.crs{
    float: right;
    width: 310px;
}
.widget{
    margin-bottom: 35px;
    overflow: hidden;
}
.widget h3{
    background: #fff;
    display: inline-block;
    padding-right: 10px;
}

.stripe{
    background: url(../img/stripe.png) repeat-x;
    height: 14px;
    display: block;
    margin-top: -23px;
}
.widget .box{
    text-align: center;
    padding: 30px 7px;
}

.widget .box ul{
    text-align: left;
    margin-top: 20px;
}

.widget .box ul li{}
.widget .box ul li span{
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    margin-left: 10px;
}

/* widget calendar */
.widget table{width: 100%;}
.widget table caption{
    font-weight: 600;
}
.widget table th{text-align: center;}
.widget table th,
.widget table td{
    border: 1px solid #e3e3e3
}
.widget table td a{
    background: #000;
    color: #fff;
    display: block;
}

/* widget live stream */
#liveButton {
    padding: 20px 40px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
}
.inactive { background: #888; }
.active { background: #28a745; }


/*======================================
              FOOTER
=======================================*/
footer{
    border-top: 5px solid #81bd00;
    background: #333333;
    color: #ccc;
}
.footertop{
    overflow: hidden;
    padding: 20px;
}
.footertop div{
    width: 250px;
    margin: 30px 0;
    margin-right: 50px;
    float: left;
}
footer h4{
    color: #c9a550;
    border-bottom: 1px solid #444;
    margin-bottom: 30px;
}
footer a{color: #ccc;}
footer a:hover{color: #b0b0b0}

footer p{margin-bottom: 20px;}

footer ul li{
    padding: 6px 12px 6px 0;
    border-bottom: 1px solid #3c3c3c;
}
footer ul li i{margin-right: 5px;}

/*
    --------------------
    
    -------- Bottom
*/
.footerbottom{
    overflow: hidden;
    padding: 20px 20px 15px;
    border-top: 1px solid #444;
    background: #2e2e2e;
}
.footerbottom p{
    float: left;
    margin: 0;
    color: #fff;
}
.footerbottom p a{
    color: #b0b0b0
}
.footerbottom p a:hover{
    color: #fff;
}

.footerbottom ul{
    float: right;

}
.footerbottom ul li{
    display: inline-block;
    border: none;
    padding: 0 3px;
}
.footerbottom ul li a{color: #b0b0b0}
.footerbottom ul li a:hover{color: #fff;}



/*======================================
              OTHERS PAGE
=======================================*/
.page{text-align: justify;}
.page h1{text-align: left;}

/*-- breadcrumb --*/
.breadcrumb{
    overflow: hidden;
    padding-bottom: 7px;
}
.breadcrumb ul li{
    display: inline-block;
    text-transform: capitalize;
    margin-right: 20px;
}
.breadcrumb ul li:last-child{margin-right: 0;}
.breadcrumb ul li:after{
    position: absolute;
    content: "";
    font-family:FontAwesome;
    margin-left: 8px;
    margin-top: 4px;
}
.breadcrumb ul li:last-child:after{
    content: "";
}

/*-- pagination --*/
.nav-links{
    overflow: hidden;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}
.nav-links a,
.nav-links span{
	border: 1px solid #e3e3e3;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 3px;
    transition: .30s;
}
.nav-links a:hover,
.nav-links span.current{
	background: #81bd00;
    color: white;
    border: 1px solid #81bd00 !important;
}

/*-- 404 --*/
.notfound{
    height: 350px;
    text-align: center;
}
.notfound h1{
    margin-top: 100px;
}

/*
    -----------------------
    
    -------- Masala Masael
*/
.cat .box{text-align: left;}

.question{
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 50px;
    background: #f0f0f0;
}/* question page */

.item{
    margin-bottom: 30px;
    border: 1px solid #e3e3e3;
    padding: 10px;
    box-shadow: 0 0 3px #f0f0f0;
}
.item .question{
    margin-bottom: 15px;
}
.item .question ul{
    background: #e3e3e3;
    padding: 2px 5px;
    margin-top: 3px;
}
.item .question ul li{
    display: inline-block;
    padding-right: 10px;
}

.answer{margin-left: 25px;}
.answer ul{margin-top: 25px;}
.texteditor p{
    margin-bottom: 10px;
    clear: both;
}
.texteditor p span{
    display: block;
    margin-bottom: 2px;
}
.texteditor p input,
.texteditor p select{
    height: 35px;
    width: 100%;
    padding-left: 7px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
    transition: .15s;
    border: 1px solid #ddd;
}

input, textarea{
    text-transform: none;
    border: 1px solid #e3e3e3;
    cursor: text;
}
textarea{
    width: 100%;
    padding: 5px;
    min-height: 100px;
    resize: vertical;
}


/*
    -----------------------
    
    -------- Blog
*/
.blogitem{
    border: 1px solid #f0f0f0;
    box-shadow: 0 0 5px #e3e3e3;
    padding: 15px;
    margin-bottom: 35px;
}
.blogitem ul{
    margin-bottom: 15px;
}

/*
    -----------------------
    
    -------- Kitab
*/
.kitab{
    overflow: hidden;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.kitab .left img{
    width: 30px;
    float: left;
    margin-right: 10px;
}
.kitab .left h3{
    display: inline-block;
    vertical-align: sub;
}
.kitab .left h3 a{color: #000;}
.kitab .left h3 a:hover{color: #4D8CC8;}
.kitab .right i{
    margin-right: 5px;
}

/*
    -----------------------
    
    -------- Boyan
*/
.audioitem{
    border: 1px solid #f0f0f0;
    padding: 15px;
    margin-bottom: 15px;
    background: #f7f7f7;
}

.card{margin: 30px 0;}
.card iframe{
    width: 100%;
    height: 200px;
}

/*
    -----------------------
    
    -------- Contact
*/
.gmap{
    margin-bottom: 35px;
}





