/*
|--------------------------------------------------------------------------
| APPLICATION INFORMATION
|--------------------------------------------------------------------------
|
| Application: DGRH website
| Author: DGRH (doctors green resort and housing)
| Author URI: www.thedgrh.com
|
| Developer: Mahbubur Rahman
| Developer URI: www.mahbubrn.com
| Email: mahbubrn86@gmail.com
| Phone: 01987422407, 01757406077
|
| Technology: html5, CSS3, Bootstrape (only column grid), javascript, jQery
|
*/

/*
|-----------------------------------------------------
| RESET CSS
|-----------------------------------------------------
|
*/

/*== calling font ==*/
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;700&display=swap');

@import url(grid.css); /* bootstrape framework css */
@import url(font-awesome.min.css); /* font-awesome icon */

/*== plugin's css ==*/
@import url(../js/plugins/lightbox/lightbox.css); /*==== lightbox ====*/

@import url(../js/plugins/slider/slick.css); /*==== slider ====*/
@import url(../js/plugins/slider/slick-theme.css); /*==== slider ====*/

@import url(../js/plugins/mobile/mobileNav.css); /* responsive mobile nav */

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{
    font-family: 'Hind Siliguri', sans-serif;
}
a, a:hover, a:link, a:visited, a:active{
    text-decoration: none;
    color: black;
    cursor: pointer;
}
a:hover{color: #228B22;}
ul{list-style: none;}
img{display: block;}


/*======================================
                PLUGINS
=======================================*/
/*== back to top ==*/
#scrollUp {
    background-image: url("../img/top.png");
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
}

/*== preloader ==*/
.preload{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../img/preload2.gif) no-repeat center center #ffffff;
    background-size: 100px;
}

/*== responsive navigation ==*/
.slicknav_nav{
    text-transform: capitalize;
    display: none;
}
/*== slider ==*/
.slider img{margin: 0;}


/*
|-----------------------------------------------------
| DEFAULT CSS (HEADER, FOOTER, ASIDE, PAGE)
|-----------------------------------------------------
|
*/
h1{ font-size: 24px;}
h2{ font-size: 20px;}
h3{ font-size: 18px;}
h4{ font-size: 16px;}
h5{ font-size: 14px;}
h6{ font-size: 12px;}

/* --------------------- HEADER --------------------- */
header{
    background: #ffffff;
}

.logo{
    text-align: center;
}
.logo img{
    width: 100px;
    display: inline-block;
}

.tbright{
    text-align: right;
    margin-top: 42px;
}
.tbright ul li{
    display: block;
}

.mainmenu{
    text-align: center;
    background: forestgreen;
    color: #fff;
    margin-top: 15px;
}

.mainmenu ul li{
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.mainmenu ul li a{
    display: block;
    padding: 10px;
    color: #fff;
    transition: 0.3s;
}
.mainmenu ul li a:hover{
    color: #e3e3e3;
}

/*-- sub menu --*/
.mainmenu ul ul{
    display: none;
    position: absolute;
    z-index: 999;
    min-width: 160px;
    background: rgba(0, 0, 0, 0.5);
    border-left: 2px solid #333;
    top: 46px;
    left: 0;
    text-align: left;
}
.mainmenu ul li:hover > ul{
    display: block;
}

ul.has-sub{
    left: 160px;
    top: 0;
}

.mainmenu ul ul li{
    display: block;
}
.mainmenu ul ul li a{
    color: #fff;
    padding: 10px;
}
.mainmenu ul ul li:hover > a{
    background: rgba(0,0,0,0.5);
    color: #fff;
}

/* --------------------- FOOTER --------------------- */

/* ---------- */
footer{
    background: #228B22;
    color: #fff;
    padding: 9px;
}
footer a{color: #fff !important;}

/* ---------- */
.fmenu h4{
    font-size: 20px;
    background: #1e7b1e;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.fmenu ul{
    margin-bottom: 35px;
}

.fmenu ul li a{
    display: block;
    padding: 5px;
    color: #fff;
    border-bottom: 1px solid #1e7b1e;
}
.fmenu a:hover{
    border-bottom: 1px solid #fff;
}
.fmenu ul li a i{margin-right: 7px;}


/* ---------- */
.footer{
    height: 400px;
    padding: 60px 0 50px;
    position: relative;
}
.foverlay{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #196719;
}

/*==========*/
.copyright{
    margin-left: 40px;
    margin-top: 60px;
}
.copyright ul{
    margin-top: 20px;
}

.copyright p{
    font-size: 14px;
    margin-bottom: 20px;
}


/* --------------------- PAGE --------------------- */
.pagenumber{
    overflow: hidden;
    margin: 30px auto 5px;
    width: 100%;
    text-align: center;
}
.pagenumber ul li{
    display: inline-block;
}
.pagenumber ul li a{
    display: block;
    padding: 5px 8px;
    border-radius: 3px;
    transition: .30s;
}
.pagenumber ul li a:hover{
    background: #228B22;
    color: white;
}
.pagenumber .active{
    border-radius: 3px;
}
.pagenumber .active a{
    background: #228B22;
    color: #fff;
}


/*
|-----------------------------------------------------
| PAGE: HOME
|-----------------------------------------------------
|
*/

.sec{
    margin-top: 35px;
    margin-bottom: 100px;
    box-shadow: 10px 10px 1px #e3e3e3;
    padding: 25px;
}

.heading{
    text-align: center;
    margin-bottom: 15px;
}

.heading img{
    display: inline-block;
    max-width: 100%;
}

/* ------------ */
.slider img{
    width: 100%;
    height: 470px;
}

.sliderside{padding-top: 15px;}
.sliderside h1{
    margin-top: 120px;
}
.sliderside li{
    margin-left: 20px;
}


/* ------------ */
.steps{text-align: center;}
.steps h1{
    display: inline-block;
    border-bottom: 2px solid #228B22;
}
.step h3{
    margin-bottom: 10px;
    margin-top: 50px;
}
.step img{
    border-radius: 5px;
    width: 300px;
    display: inline-block;
}

.stepleft{text-align: right;}
.stepright{text-align: left;}

.pmap img{
    display: block;
    margin: 10px auto;
    margin-top: 40px;
}



/*
|-----------------------------------------------------
| PAGE: CONTACT
|-----------------------------------------------------
|
*/

.contact{
    text-align: center;
    margin: 0 0 25px;
}
.contact p{font-size: 14px;}

.map iframe{
    width: 100%;
}


/*
|-----------------------------------------------------
| PAGE: LOGIN
|-----------------------------------------------------
|
*/

.access{
    width: 390px;
    border-radius: 5px;
    margin: 20px auto;
    border: 1px solid #228B22;
    padding: 15px;
}
.access p{
    font-size: 14px;
    margin-bottom: 10px;
}
.access p span{
    display: block;
}
.access p input{
    width: 100%;
    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;
    font-size: 14px;
}
.access input[type="submit"]{
    background: #228B22;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 4px 15px;
    transition: 0.3s;
}
.access input[type="submit"]:hover{
    background: #1e7b1e;
}


/*
|-----------------------------------------------------
| PAGE: MEMBERS
|-----------------------------------------------------
|
*/

.item{
    border: 1px solid #e3e3e3;
    height: 290px;
    margin-bottom: 30px;
    border-radius: 7px;
    padding: 5px;
    box-shadow: 4px 4px 10px #e3e3e3;
}
.item h5{
    font-size: 16px;
    margin: 5px 0;
}
.item hr{
    margin: 0;
    border: 1px solid #228B22;
    width: 50px;
}
.item img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.item p{
    margin-top: 10px;
}



/*
|-----------------------------------------------------
| PAGE: NEWS
|-----------------------------------------------------
|
*/

.newsitem{
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    padding: 30px;
    border-radius: 7px;
    box-shadow: 3px 3px 7px #e3e3e3;
}

.newsitem hr{
    border: 1px solid #228B22;
    margin: 5px 0 15px;
    width: 100px;
}

.newsdetails{text-align: justify;}
.newsdetails img{
    margin: 50px 0;
    max-width: 75%;
}

.pagenumber{margin-bottom: 35px;}

.gallery{
    margin-bottom: 35px;
    text-align: center;
}
.gallery p{font-size: 14px;}
.gallery img{
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}
.g img{
    /* height: 175px; */
}

.video iframe{
    border-radius: 4px;
    width: 100%;
    height: 175px;
}


/*
|-----------------------------------------------------
| PAGE: ABOUT
|-----------------------------------------------------
|
*/

.about{}
.about img{
    float: left;
    width: 200px;
    margin-right: 15px;
    margin-bottom: 15px;
}


/*
|-----------------------------------------------------
| PAGE: FAQ
|-----------------------------------------------------
|
*/

.faq{}


.accordion-toggle {
    cursor: pointer;
    border: 1px solid #f0f0f0;
    padding: 8px 10px;
    margin-bottom: 7px;
}
.accordion-toggle:after {
    content: '';
    font-family:'FontAwesome';
    float: right;
    margin-top: 3px;
    transition: .40s;
}
.accordion-toggle span{
    background: #e3e3e3;
    color: #2b2b2b;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 10px;
}

.acrd-active{
    background: #228B22;
    color: white;
    border: 1px solid #228B22;
}
.accordion-toggle.acrd-active:after{
    transform: rotate(90deg);
    content: '';
}
.accordion-content {
    display: none;
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 7px;
    text-align:justify;
}
