/* Font Import */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

a:hover {
}

:lang(bn) {
  font-family: "Hind Siliguri", sans-serif;
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free";
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

:lang(en) {
  font-family: "Roboto", sans-serif;
}

body {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  font-family: "Hind Siliguri", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #000000;
}

h1 {
  font-size: 1.75rem;
  line-height: 45px;
}

h2 {
  font-size: 20px;
  line-height: 30px;
}

h3 {
  font-size: 18px;
  margin-top: 10px;
  line-height: 30px;
}

h4 {
  font-weight: 500;
}

h5 {
}

p {
  margin: 7px 0;
}

h2.col-title {
  border-left: 4px solid #ffba00;
  padding-left: 15px;
  margin: 15px 0;
}

.dark-bg h2.col-title {
  color: #fff;
}

a {
  color: #555;
}

main img {
  width: 100%;
  border-radius: 10px;
}

.navbar img{
  height: 60px;
}

.half-gutters {
  margin-left: -6px;
  margin-right: -6px;
}

.half-gutters > .col,
.half-gutters > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

.grey-bg {
  background: #f6f6f6;
}

.grey-bg [class*="col-"] > div {
  /* background-color: #fff; */
}

.in-content {
  padding: 10px;
}

.thumb-big img {
  height: 100%;
}

.thumb-small {
  float: left;
  margin-right: 10px;
  margin-top: 5px;

}

.thumb-small img{
  height: 100px;
  width: 150px;
}

.thumb-small p{
text-align: justify;
}

.grey-bg .thumb-small,
.dark-bg .thumb-small {
  margin-top: 0;
}

.post-one {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.bb {
  border-bottom: 1px solid #ddd;
}

.grey-bg .post-one {
  /* padding: 10px; */
}

.post,
.post-one {
  display: block;
  clear: both;
  overflow: hidden;
}

.post-one p,
.post-two p {
  margin: 0px;
}

.post-two {
  background: #e8f1f8;
  padding: 10px;
  margin-bottom: 2px;
}

.post-two p {
  color: #2c4b73;
}

.bigger_section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 250px;
}

h2.color-title {
  background: #0063b6;
  color: #fff;
  text-align: center;
  line-height: 50px;
}

h2.color-title.green {
  background: #22b67a;
}

h2.color-title.cyan {
  background: #0fbbb5;
}

h2.color-title.orange {
  background: #e59619;
}

.search-form {
    display: flex;
    flex-flow: nowrap;
    justify-content: end;
    flex: 1;
}

@media (min-width: 576px) {
  .search-form.form-inline input {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .search-form  {
    width: 255px;
    margin-left: 20px;
  }
}

/* @media (max-width: 576px) {
  .user  {
    width: 75px;
  }
} */

/*@media (max-width: 576px) {*/
/*  .logo-side img  {*/
/*    width: 100% !important;*/
/*  }*/
/*}*/


.see-all-link {
  color: #00b4e0;
}
.see-all-link:hover {
  color: #000;
}

/* btn */
.btn-blue {
  background-color: #0062b5;
}

.btn-orange {
  background-color: #ffba00;
}

/* Dropdown Menu */

.navbar-nav > li {
  position: relative;
}

ul.sub-menu {
  position: absolute;
  left: 0;
  min-width: 200px;
  transition: 0.3s;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  top: 50px !important;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
  background-color: #eaeaea;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu li a {
  padding: 5px;
  display: inline-block;
}

.sub-menu a:before {
  display: none;
}

.sub-menu > li {
  border-bottom: 1px solid #ddd;
}

.sub-menu > li:last-child {
  border: none;
}

.navbar-nav > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  top: 35px !important;
}

/* Sticky Navigation */

.navbar-sticky {
  display: none;
}

.navbar-sticky.sticky-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: navbar-show 0.25s;
  animation: navbar-show 0.25s;
  box-shadow: 0 0.125rem 0.625rem -0.1875rem rgba(0, 0, 0, 0.1);
  z-index: 1030;
}

@-webkit-keyframes navbar-show {
  from {
    -webkit-transform: translateY(-0.75rem);
    transform: translateY(-0.75rem);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes navbar-show {
  from {
    -webkit-transform: translateY(-0.75rem);
    transform: translateY(-0.75rem);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* 
	Typography 
-----------------------------------------------------------------*/

/*  Mobile Nav */
.mobile-menu a {
    padding: 12px 20px;
    display: block;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #07523c;
}
.mobile-menu .active a {
    background: #109972;
}
@media (min-width: 992px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

.overlay-inn {
  background: #000;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay-inn.active {
  opacity: 0.6;
  visibility: visible;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu {
    top: 0px;
    left: -250px;
    background: #0e6b50;
    position: fixed;
    height: 100%;
    width: 250px;
    z-index: 8999;
    transition: 0.3s;
}

/* Mobile Navigation */
.menu-toggle i {
  color: #0e6b50;
  font-size: 25px;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  line-height: 32px;
}

.menu-toggle i:hover {
  color: #003869;
}

.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 
	Header
-----------------------------------------------------------------*/

header a {
  font-weight: 500;
}

.topbar {
  color: #fff;
  line-height: 40px;
  background-color: #003869;
}

/* logo section */
.logo-section {
  color: #fff;
  padding: 8px 0;
  background-color: #0e6b50;
}

.logo-section a {
  color: #fff;
}

.logo-side,
.user-side {
  gap: 20px;
}

.logo-side img{
  width: 100%;
    height: 80px;
}

.user {
    position: relative;
    margin-left: 10px;
}

.user > i {
  cursor: pointer;
}

.user-menu {
  position: absolute;
}

.user-menu {
  position: absolute;
  width: 230px;
  background: #fff;
  border-radius: 5px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  right: 0;
  padding: 20px;
  text-align: center;
  -webkit-animation: navbar-show 0.25s;
  animation: navbar-show 0.25s;
  box-shadow: 0 0.125rem 0.625rem -0.1875rem rgba(0, 0, 0, 0.1);
}

.user:hover .user-menu {
  opacity: 1;
  visibility: visible;
}

.user-menu h4 {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 40px;
    margin: 0;
}
.user-menu h4 span {
  color: #8a8a8a;
}

.user-menu .btn {
    font-size: 18px;
    display: block;
    border-radius: 5px;
    font-weight: 600;
    border-radius: 100px;
    padding: 8px;
}
a.btn.btn-cyan {
    background: #c5e5da;
    color: #2c8c69;
    border: 2px solid;
}
a.btn.btn-cyan:hover {
    background: red;
    color: #fff;
    border: 2px solid;
}
.archive-menu a {
  padding: 5px 10px;
  border-radius: 5px;
}

.archive-menu a.active,
.archive-menu a:hover {
  color: #fff;
  background-color: #00b4e1;
}

.lang-menu {
  width: max-content;
}

.lang-menu a {
  float: left;
  border: 2px solid;
  padding: 7px 12px;
}

.lang-menu a:hover {
  color: inherit;
  border-color: inherit;
}

.lang-menu a.active {
  color: #282828;
  border-color: #ffba00;
  background-color: #ffba00;
}

.lang-menu a:first-child {
  border-radius: 5px 0 0 5px;
  border-right: 0px;
}
.lang-menu a:last-child {
  border-radius: 0 5px 5px 0;
  border-left: 0px;
}

.user > i, .user > img {
    color: #0e6b50;
    line-height: 48px;
    width: 48px;
    background: #9fc4b9;
    text-align: center;
    border-radius: 100px;
    font-size: 27px;
    padding: 2px;
}
.user-menu img {
    margin-bottom: 20px;
}

/* Navigation section */
.main-nav-section {
    background-color: #c5e5da;
}

.main-nav-section li a {
    margin: 5px 10px;
    position: relative;
    padding: 0 0;
    color: #0e6b50;
    font-weight: 600;
    line-height: 29px;
}
.main-nav-section li.active a,
.main-nav-section li a:hover {
  color: red;
}

.main-nav-section .navbar-nav li.active a:before,
.main-nav-section .navbar-nav li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: red;
}

.navbar-sticky .navbar-nav li.active a:before,
.navbar-sticky .navbar-nav li a:hover:before {
  bottom: -16px;
}

.main-nav-section ul.navbar-nav {
  margin-left: -10px;
}


/* Mega Menu CSS */

li.has-submenu {
    padding-right: 20px;
    position: relative;
}

li.has-submenu .mega-menu {
    position: fixed;
    top: 145px;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 200px;
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 10%);
    opacity: 0;
    visibility: hidden;
    z-index: 1030;
    transition: 0.2s;
    padding: 40px 0;
    background: #fff;
}
.main-nav-section .person_section a {
    margin: 0;
    padding: 0;
}
.main-nav-section .person_section a:hover:before {
    display: none;
}
.sticky-menu li.has-submenu .mega-menu {
  top: 75px;
}
li.has-submenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.person_section a:hover p {
  color: red !important;
}

/* Mega Menu CSS ENDS */


.search-form input {
    border-radius: 100px;
    border: none;
    position: relative;
    background: #157a5c;
    padding: 24px;
}

.search-form input::placeholder {
  color: white;
  opacity: 0.5;
}

.search-form button {
    border-radius: 50px;
    border: none;
    background: #0e6b50;
    color: #fff;
    position: absolute;
    margin: 4px;
    padding: 8px 25px;
}

.search-form button:hover {
    background: #084131;
    color: #fff;
}

/* navbar-sticky */
.navbar-sticky .logo {
  margin-right: 30px;
}
.navbar-sticky .search-form-toggle {
  position: relative;
  padding: 5px;
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.navbar-sticky .search-form {
  display: none;
  position: absolute;
  width: 350px;
  top: 40px;
  right: -8px;
  animation: navbar-show 0.25s;
  -webkit-animation: navbar-show 0.25s;
}
.navbar-sticky .search-form.show {
  display: flex;
}
.search-form-toggle .search-form input {
  float: left;
  height: 40px;
  box-shadow: 0 0.125rem 0.625rem -0.1875rem rgb(0 0 0 / 50%);
}
.search-form-toggle .search-form button {
  float: left;
  height: 40px;
  box-shadow: 0 0.125rem 0.625rem -0.1875rem rgb(0 0 0 / 50%);
}

/* Section */
.adds {
  height: 100%;
}

.adds img {
  height: 100%;
}

/* Photo Carousel */
.photo-shongbad a.carousel-control-prev,
.photo-shongbad a.carousel-control-next {
  height: 75%;
}
.photo-shongbad img{
  height: 280px;
  width: 270px;
}

/* ek nojore bissho */
.ek-nojore-bisso {
  background: #009ad7;
  text-align: center;
  padding: 20px;
  padding-top: 5px;
}

.ek-nojore-bisso a {
  color: #fff;
  font-size: 20px;
}

/* Namaz Timeframe */
.prayerTimeTitle h2.col-title {
  color: #fff;
  margin-top: 0;
  line-height: 50px;
  text-align: center;
  background: #455960;
}
.prayerTimeTable {
  background-image: url(../img/masjid.png);
  padding: 0 0 0 135px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.prayerName {
  background: #6b8e23;
  text-align: center;
  color: #fff;
  display: block;
  padding: 2px 3px;
}
.prayerTime {
  background: olive;
  text-align: center;
  color: #fff;
  display: block;
  padding: 2px 3px;
}
.nonPrayTime {
  margin: 5px 0 0;
  padding: 2px;
  text-align: center;
  line-height: 23px;
  background: #455960;
}
.sunrise {
  color: #fff;
  display: inline-block;
  padding: 0 30px 0 0;
}
.sunset {
  color: #fff;
  display: inline-block;
}

/* Video Post */
.vdo-post-box {
  padding: 10px 0 10px 10px;
  overflow-y: scroll;
  max-height: 315px;
  margin-bottom: 10px;
}

/* Dark BG section */
.dark-bg {
  background-color: #1e222b;
}

.dark-bg .post-one {
  background-color: #fff;
  padding: 10px;
}

.dark-bg .post-one h3 {
  margin-bottom: 0px;
}

/* Footer */
footer {
  /* background-color: #003869; */
}

footer a,
footer p {
  color: #000000;
}

footer .archive-menu a:hover {
  color: #fff;
}

.footer-logo img {
  max-width: 100%;
}

footer .social-link {
  margin-top: 10px;
}

footer .social-link a {
  clear: both;
  display: block;
  line-height: 46px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
}

.social-link .fb {
  background-color: #008aff;
}
.social-link .yt {
  background-color: #f02e35;
}

.footer-menu a {
  padding: 10px;
}

footer .archive-menu {
  margin-bottom: 15px;
  margin-left: -10px;
}

.footer-menu {
  margin-left: -10px;
}

.footer-menu a.active,
.footer-menu a:hover,
a:hover,
a:hover h2,
a:hover h3,
a:hover h4,
a:hover p {
  color: #f00;;
}

footer hr {
  background-color: #256297;
}

.address {
  margin-top: 20px;
}

.address p {
  margin: 2px 0;
}

/* Single.html */
.bread-crumb {
  font-size: 18px;
  margin-bottom: 15px;
}

.post-info p {
  margin: 0;
}

.post-social-info {
  justify-content: flex-end;
}

.share {
  border-right: 1px solid;
  margin-right: 5px;
  padding-right: 5px;
  line-height: 10px;
}

.share span {
  font-size: 22px;
  display: block;
  text-align: center;
  line-height: 20px;
}

.post-social-icons i {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100px;
}
.fa-facebook {
  background-color: #4267b2;
}
.fa-facebook-messenger {
  background-color: #448aff;
}
.fa-twitter {
  background-color: #56acee;
}
.fa-pinterest {
  background-color: #cb2027;
}
.fa-linkedin {
  background-color: #0077b5;
}
.fa-print {
  background-color: #757575;
}

.sidebar-tab {
  display: flex;
  gap: 1px;
}

.sidebar-tab li {
  width: 33%;
  float: left;
}

.sidebar-tab li a {
  padding: 5px 20px;
}

.sidebar-tab li a {
  padding: 5px 20px;
  background: #ddd;
}

.home .post-one {
  margin-top: 10px;
  border-top: 1px solid #ddd;
  paddin-top: 5px;
}

section.slider-section {
    background-image: url(../img/Slider_Background.png);
    background-position: center center;
    background-size: cover;
    margin-top: 0px;
    position: relative;
    padding-top: 1px;
}
.slider-section .carousel-control-next, 
.slider-section .carousel-control-prev {
    width: 5%;
}





/* Footer Css */
.more-posts-single-page .post {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  header .navbar-nav {
    display: none;
  }
  .logo-side,
  .user-side {
    gap: 20px;
  }
  .archive-menu a {
    padding: 5px;
  }
  .main-nav-section .menu-toggle {
    margin-right: auto;
  }
  .navbar-sticky .navbar-collapse {
    justify-content: flex-end;
  }
  .navbar-sticky .navbar-collapse {
    justify-content: flex-end;
    max-width: 300px;
  }
  .menu-item-has-children {
    position: relative;
  }
  .mobile-menu i.fa-caret-down {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-left: 1px solid #07523c;
    position: absolute;
    cursor: pointer;
    color: #fff;
  }
  .mobile-menu .m-sub-menu li a {
      color: #ddd;
      font-size: 95%;
  }
  footer {
    text-align: center;
  }
  .footer-menu,
  footer .archive-menu {
    margin-left: 0;
  }
  .social-link {
    max-width: 300px;
    margin: auto;
  }
}
/* max-width: 991px */

@media (max-width: 767px) {
  header .navbar-collapse {
    padding: 0 15px;
    display: flex;
  }
  header .archive-menu {
    display: none;
  }
  .navbar-sticky .container {
    padding: 0 15px;
  }
  .navbar-sticky .navbar-collapse {
    padding-right: 0px;
  }
  .navbar-sticky .search-form {
    right: -160px;
  }
  .navbar-sticky .logo, 
  .main-nav-section .menu-toggle {
      margin-right: 10px;
  }
  .navbar-sticky .container {
      padding: 0 15px;
      justify-content: space-between;
      flex-wrap: nowrap;
  }
}
/* max-width: 767px */

@media (max-width: 575px) {
  header .navbar-collapse {
    padding: 0;
  }
  .navbar-sticky .navbar-collapse {
    display: none;
  }
  .col-mob-6 {
    width: 50%;
  }
}
/* max-width: 575px */

.allnewslogo {
  overflow: hidden;
  text-align: center;
  margin-bottom: 25px;
}

.allnewslogo > a {
  height: 60px;
  display: block;
  border: 1px solid #bbb;
  border-bottom: 0px;
  border-radius: 5px 5px 0 0;
}

.allnewslogo > a > img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
}

.allnewslogo > div {
  padding: 5px;
  background: #f0f0f0;
  border: 1px solid #bbb;
  border-radius: 0 0 5px 5px;
}

.item_container {
  /* gap: 45px; */
}
.container_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    border-radius: 15px;
    padding: 50px;
    margin: 10px 0px;
}

.item_1:hover {
  box-shadow: 0 0 0 3px inset #8c8135;
}

.item_2:hover {
    box-shadow: 0 0 0 3px inset #379472;
}

.item_3:hover {
  box-shadow: 0 0 0 3px inset #3b97d3;
}

.item_1 p {
    color: #8c8135;
}

.item_2 p {
    color:  #379472;
}

.item_3 p {
    color: #3b97d3;
}

.item_container img {
  height: 70px;
  width: 70px;
}

.item_container p,
.item_container span {
  font-size: 23px;
  font-weight: bold;
}

.item_1 {
  background: #f5ecb3;
}

.item_2 {
  background: #baedda;
}

.item_3 {
  background: #cbf2f9;
}

.thread_sectin_right {
  background: #0e6b50;
  height: 585px;
  border-radius: 15px;
}

.banner_container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 30px;
}
.banner_container img {
  border-radius: 35px;
}
.thread_sectin_right {
  padding: 50px 0;
  text-align: center;
}
.thread_sectin_right > .text_content {
  margin: 40px 0;
  line-height: 30px;
}
.thread_sectin_right h2 {
  font-weight: bold;
  font-size: 30px;
  color: white;
}

.thread_sectin_right p {
  font-size: 30px;
  color: white;
}
.thread_sectin_right img {
  height: 100px;
  width: 100px;
}
.thread_sectin_right > .icon_img {
  height: 100px;
  width: 100px;
  margin-bottom: 40px;
}

.button_contain button{
  border: none;
  background: #328269;
  color: white;
  padding: 20px 70px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 24px;
}

.person_section {
    display: flex;
    gap: 20px;
    width: 100%;
}
.person_section > .item {
    flex: 1;
    min-height: 150px;
    width: 50%;
    background: #B4DFEA;
    border-radius: 15px;
    display: flex;
    padding: 0 20px;
    align-items: center;
    gap: 20px;
}
.person_section > .item:last-child {
    background: #EBE7D0;
}

.person_section > .item img {
    position: relative;
    height: auto;
}
.person_section .item:first-child h1, 
.person_section .item:first-child p {
    color: #0B5983;
}

.person_section .item:last-child h1, 
.person_section .item:last-child p {
    color: #5A5748;
}

.person_section .item h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
}
.person_section .item p {
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px){
  .logo-side.d-flex.align-items-center {
      margin-bottom: 7px;
  }  
  .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      align-content: center;
      flex-direction: column;
      gap: 20px;
  }
}

.footer-top>.social_section{
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
}

.footer_top_left_section{
  display: flex;
  justify-content: left;
  gap: 20px;
  align-items: center;

}
.footer_top_left_section  img{
  width: 100%;
}

.footer_top_left_section > .text_section{
  line-height: 1px;
  color: #808080;
}

.footer_top_left_section > .text_section h1{
  color: #808080;
  font-size: 30px;
}

.footer_top_left_section > .text_section p{
  color: #808080;
  font-size: 20px;
}
.person_section .text_area {
    text-align: left;
}
@media (max-width: 991px){
  .person_section {
      display: flex;
      gap: 50px;
      flex-direction: column;
  }

  .person_section > .item {
      flex: auto;
      width: 100%;
      gap: 20px;
  }
}

@media (max-width:  575px){
  .person_section > .item {
    min-height: 100px;
  }
  .person_section .img_container {
      width: 90px;
  }
  .person_section .img_container img{
      width: 100%;
  }
}

footer.footer.bg-white {
    background-image: url(../img/footer.png);
    padding-bottom: 100px;
    background-size: inherit;
    background-repeat: repeat-x;
    background-position: bottom left;
}

.bisas_protibadon{
  background: #e6fcff;
}



body.inner-page {
  background: #f6f6f6;
}

section.inn-banner-section {
    padding: 50px 0;
}
.inn-banner {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f4edb3;
    padding: 20px 50px;
    border-radius: 20px;
}
@media (max-width:  767px) {
  .inn-banner {
      flex-direction: column;
      gap:  20px;
  }
  .inn-banner-section h1 {
      font-size: 25px;
  }
}
@media (max-width:  991px) {
  div .ct-photo {
    padding: 30px;
  }  
  .pt-xs-5 {
    padding-top: 30px !important;   
  }  
}

@media (max-width:  575px) {
    div .ct-photo img {
      width:  80%;
    }
}
.contact-page .inn-banner {
    background: #CBF1F9;
}
.inn-banner img {
  width:  auto;
}
.inn-banner h1 {
    color: #8c8135;
    font-size: 30px;
    font-weight: 900;
}


.team-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.team-box h2 {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
}
.team-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.team-person img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.tperson-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #404040;
}

.tperson-info p {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
}




.notice-page .inn-banner {
    background: #d1f2e6;
}
.notice-box {
    padding: 20px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
}
.notice-page .inn-banner h1 {
    color: #2c8c69;
}
.notice-box h2 {
    font-size: 24px;
    font-weight: 700;
}
.notice-box p.meta {
    color: #9d9d9d;
    font-size: 16px;
    font-weight: 600;
}
.notice-box .btn-set {
    margin-top: 20px;
}
.notice-box .btn {
    border-radius: 100px;
    padding: 10px 30px;
    margin-right: 10px;
    font-size:  18px;
    font-weight: 700;
    margin-top: 20px;
}
.btn-dark {
    background: #191919;
    border-color: #191919;
    color: #fff;
}
.btn-dark:hover {
    background: #ff0000;
    border-color: #ff0000;
}
.btn-green {
    background: #2c8c69;
    border-color: #2c8c69;
    color: #fff;
}
.btn-green:hover,
.button_contain button:hover,
.btn.btn-coffee:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.button_contain button,
.btn.btn-coffee {
  transition: 200ms ease;
}
.button_contain button i,
.btn.btn-coffee i {
  transition: 200ms ease;
    transform: translateX(0px);
}
.button_contain button:hover i,
.btn.btn-coffee:hover i {
    transform: translateX(5px);
}


form button.btn-green {
  transition: 200ms ease;
}
form button.btn-green i {
  transition: 200ms ease;
    transform: translateX(0px);
}
form button.btn-green:hover i {
    transform: translate(13px, 1px);
}


.ct-hero-box {
  background: white;
  border-radius:  20px;
  margin-bottom: 30px;
  padding: 40px 20px;
}
.ct-hero-box img {
    width: auto;
    margin-right: 20px;
}
.ct-info {}
.ct-info h4 {
    font-size: 16px;
    color: #6d6d6d;
    font-weight: 600;
}
.ct-info a {
    color: #fd7c00;
    font-size: 20px;
    font-weight: 600;
}
.ct-info a:hover {
  color:  red !important;
}
.ct-info p {
    color: #fe5686;
    font-size: 20px;
    font-weight: 600;
}


.contact-page .inn-banner h1 {
    color: #3991cb;
}


@media (min-width:  992px){
  .contact-form-section form {
      margin-right: 30px;
  }
}

.contact-form-section .row.no-gutters {
    background: white;
    border-radius: 20px 20px 5px 5px;
    margin-bottom: 50px;
    padding: 25px;
    border-bottom: 5px solid #bfdcd2;
}

.ct-photo {
    background: #FFF8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 20px;
}
.ct-photo img {
    width: auto;
    padding: 20px;
    height: 300px;
}


.social_icons > a:hover {
    color: #fff;
}
.social_icons i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    background-color: #8d8a8b;
    font-size: 28px;
    margin-left: 10px;
}
.social_icons i.fa-facebook-f:hover { background-color: #4267b2;}
.social_icons i.fa-twitter:hover { background-color: #56acee;}
.social_icons i.fa-youtube:hover { background-color: #ff0000;}

.post-content p {
    line-height: 31px;
    font-size: 18px;
    color: #444;
}

.f-group {
    position: relative;
    text-align: left;
    margin: 0 !important;
}

.f-group input[type=text],
.f-group input[type=email],
.f-group input[type=date],
.f-group textarea{
    width: 100%;
    background: #fff;
    padding: 23px 10px 10px 10px;
    margin-top: 12px;
    border-radius: 6px;
    color: #2C2D35;
    font-weight: 900;
    font-size: 16px;
    transition: .2s;
    position: relative;
    border: 0;
    outline: 2px solid #eee;
}
input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    transform: translateY(4px);
}
.gender-box {
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 10px;
    flex: 1;
}
form .flex-gap-15 {
  margin-top: 15px;
  gap: 15px;

}
.f-group textarea {
  height:  120px;
  position: relative;
}

.f-group label {
    font-size: 16px;
    margin: 0;
    position: absolute;
    color: #747474;
    top: 30px;
    left: 11px;
    opacity: 1;
    transition: .2s;
    pointer-events: none;
}

.f-group input:active+label, 
.f-group input:focus+label, 
.f-group input:not(:placeholder-shown)+label, 
.f-group textarea:active+label, 
.f-group textarea:focus+label, 
.f-group textarea:not(:placeholder-shown)+label 
{
    top: 16px;
    font-size: 13px;
    color: #0E6B50;
}
.f-group input:focus-visible, 
.f-group textarea:focus-visible 
{
    border: none;
    outline: 2px solid #0E6B50;
}
h4.info {
    color: #2C8C69;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

button.btn.btn-green {
    font-weight: 700;
    font-size: 20px;
    padding: 10px 40px;
    border-radius: 50px;
}
.btn .fa-angle-right {
    transform: translate(8px, 1px);
}




.member-page-main {
    background-image: url(../img/member/Background_image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}
section.inn-banner-section.member-page {
    padding: 100px 0;
}

.inn-banner-section.member-page h1 {
    text-align: center;
    font-weight: 700;
    color: #343434;
}

.member-head .team-person img {

}
.team-person.member {
    margin: 0;
}
.member-head .team-person img {
    width: 150px;
    height: auto;
}
.member-head .team-person.member h4 {
  font-size:  22px;
}
.team-person.member h4 {
  font-size:  18px;
}

.member-page-footer .inn-banner {
    justify-content: space-between;
    background: #FFF8EF;
}
.member-page-footer .inn-banner h1,
.member-page-footer .inn-banner h2 {
  color: #805757;
}
.member-page-footer .inn-banner h2 {
  font-size: 24px;
}
.btn.btn-coffee {
    font-weight: 700;
    font-size: 20px;
    padding: 15px 60px;
    border-radius: 50px;
    background-color: #805757;
    color: #fff;
}
.btn .fa-angle-right {
    transform: translate(8px, 1px);
}


.member-page-footer .inn-banner img {}
@media (max-width:  991px ){
  .member-page-footer .inn-banner {
    gap:  20px;
    padding:  20px;
  }
  .member-page-footer .inn-banner h1, .member-page-footer .inn-banner h2 {
    font-size:  125%;
  }
  .member-page-footer .inn-banner img {
    width:  120px;
  }
}
@media (max-width:  767px ){
  .member-page-footer .inn-banner {
      flex-wrap: wrap;
      justify-content: center;
  }
  .member-page-footer .inn-banner img {
    width:  100px;
  }
}



.inn-banner-section.member-page.gallery-page {
    background-image: url(../img/gallery/inn-banner.png);
    background-color: #EFEFEF;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    padding: 50px 0;
    margin-bottom: 30px;
}
.inn-banner-section.gallery-page h1 {

}
#lightgallery a > img {
    padding: 5px;
    border-radius: 20px;
}

#lightgallery > a {
    position: relative;
}

#lightgallery > a:before {
    content: "\f03e";
    font-family: 'Font Awesome 5 Free';
    color: #0e6b50;
    position: absolute;
    font-size: 60px;
    background: #c5e5daa1;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 200ms ease;
    transform: scale(0);
    top:  5px;
    left:  5px;
}

#lightgallery > a:hover:before {
    transform: scale(1.0);
}
.inn-banner-section h1 {
    font-size: 35px;
}

@media (max-width:  575px) {
  .person_section .item h1 {
      font-size: 25px;
  }
}


form .btn.focus, form .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%);
}


