:root {
  --primary: rgb(76,119,14);
  --accent: #FF3D85;
  --secondary: #4E5AFE;
  --warning: #EED818;
  --info: #05B4E1;
  --danger: #FF4943;
  --success: rgb(63,100,7);
  --dark: #343531;
  --light: #F5F9F6;
  --cs: #596261;
  --grey: #6E807A;
  --dark-blue:#02063d;
}

body {
  font-family: 'Roboto Slab', serif;
  line-height: 1.5;
  color: #343531;
}
a {
  color: #07be94;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #03a882;
  text-decoration: underline;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-md {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

/* Color systems */
.bg-primary {
  background-color: var(--primary) !important;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #07be94 !important;
}

.bg-accent {
  background-color: #FF3D85 !important;
}

a.bg-accent:hover, a.bg-accent:focus {
  background-color: #e93577 !important;
}

.bg-secondary {
  background-color: #4E5AFE !important;
}

a.bg-secondary:hover, a.bg-secondary:focus {
  background-color: #3d49f0 !important;
}

.bg-success {
  background-color: #96C93D !important;
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #80b12d !important;
}

.bg-info {
  background-color: #05B4E1 !important;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #07a2c8 !important;
}

.bg-warning {
  background-color: #EED818 !important;
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #d3bf0d !important;
}

.bg-danger {
  background-color: #FF4943 !important;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #e73832 !important;
}

.bg-grey {
  background-color: #6E807A !important;
}

a.bg-grey:hover, a.bg-grey:focus {
  background-color: #62726d !important;
}

.bg-light {
  background-color: #F5F9F6 !important;
}

a.bg-light:hover, a.bg-light:focus {
  background-color: #E1EBE8 !important;
}

.bg-dark {
  background-color: #343531 !important;
}

a.bg-dark:hover, a.bg-dark:focus {
  background-color: #1e1f1c !important;
}

.text-primary {
  color: var(--primary) !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #07be94 !important;
}

.text-accent {
  color: #FF3D85 !important;
}

a.text-accent:hover, a.text-accent:focus {
  color: #e93577 !important;
}

.text-secondary {
  color: #4E5AFE !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #3d49f0 !important;
}

.text-success {
  color: #96C93D !important;
}

a.text-success:hover, a.text-success:focus {
  color: #80b12d !important;
}

.text-info {
  color: #05B4E1 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #07a2c8 !important;
}

.text-warning {
  color: #EED818 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d3bf0d !important;
}

.text-danger {
  color: #FF4943 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #e73832 !important;
}

.text-grey {
  color: #6E807A !important;
}

a.text-grey:hover, a.text-grey:focus {
  color: #62726d !important;
}

.text-light {
  color: #F5F9F6 !important;
}

a.text-light:hover, a.text-light:focus {
  color: #E1EBE8 !important;
}

.text-dark {
  color: #343531 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1e1f1c !important;
}

.text-body {
  color: #252921 !important;
}


.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: #FF3D85 !important;
}

.border-success {
  border-color: #96C93D !important;
}

.border-info {
  border-color: #05B4E1 !important;
}

.border-warning {
  border-color: #EED818 !important;
}

.border-danger {
  border-color: #FF4943 !important;
}

.border-grey {
  border-color: #6E807A !important;
}

.border-light {
  border-color: #F5F9F6 !important;
}

.border-dark {
  border-color: #343531 !important;
}

/* Buttons */
.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: transparent;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #07be94;
  border-color: transparent;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary);
  border-color: #07be94;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-accent {
  color: #fff;
  background-color: #FF3D85;
  border-color: transparent;
}

.btn-accent.disabled, .btn-accent:disabled {
  color: #fff;
  background-color: #e93577;
  border-color: transparent;
}

.btn-accent:not(:disabled):not(.disabled):active, .btn-accent:not(:disabled):not(.disabled).active,
.show > .btn-accent.dropdown-toggle {
  color: #fff;
  background-color: #FF3D85;
  border-color: #e93577;
}

.btn-accent:not(:disabled):not(.disabled):active:focus, .btn-accent:not(:disabled):not(.disabled).active:focus,
.show > .btn-accent.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-secondary {
  color: #fff;
  background-color: #4E5AFE;
  border-color: transparent;
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #3d49f0;
  border-color: transparent;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #4E5AFE;
  border-color: #3d49f0;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-success {
  color: #fff;
  background-color: #96C93D;
  border-color: transparent;
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #80b12d;
  border-color: transparent;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #96C93D;
  border-color: #80b12d;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-info {
  color: #fff;
  background-color: #05B4E1;
  border-color: transparent;
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #07a2c8;
  border-color: transparent;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #05B4E1;
  border-color: #07a2c8;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-warning {
  color: #343531;
  background-color: #EED818;
  border-color: transparent;
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #343531;
  background-color: #d3bf0d;
  border-color: transparent;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #343531;
  background-color: #EED818;
  border-color: #d3bf0d;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-danger {
  color: #fff;
  background-color: #FF4943;
  border-color: transparent;
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #e73832;
  border-color: transparent;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #FF4943;
  border-color: #e73832;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-light {
  color: #343531;
  background-color: #F5F9F6;
  border-color: transparent;
}

.btn-light:hover {
  color: #343531;
  background-color: #E1EBE8;
  border-color: transparent;
}

.btn-light:focus, .btn-light.focus {
  color: #343531;
  background-color: #d5dfdc;
  border-color: transparent;
  box-shadow: none;
}

.btn-light.disabled, .btn-light:disabled {
  color: #343531;
  background-color: #d0ddd9;
  border-color: transparent;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #343531;
  background-color: #F5F9F6;
  border-color: #d0ddd9;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-dark {
  color: #fff;
  background-color: #343531;
  border-color: transparent;
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #1e1f1c;
  border-color: transparent;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #343531;
  border-color: #1e1f1c;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:hover,
.btn-accent:hover,
.btn-secondary:hover,
.btn-success:hover,
.btn-info:hover,
.btn-warning:hover,
.btn-danger:hover,
.btn-dark:hover {
  color: #fff;
  background-color: #596261;
  border-color: transparent;
}

.btn-primary:focus, .btn-primary.focus,
.btn-accent:focus, .btn-accent.focus,
.btn-secondary:focus, .btn-secondary.focus,
.btn-success:focus, .btn-success.focus,
.btn-info:focus, .btn-info.focus,
.btn-warning:focus, .btn-warning.focus,
.btn-danger:focus, .btn-danger.focus,
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #475351;
  border-color: transparent;
  box-shadow: none;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: none;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-accent {
  color: #FF3D85;
  border-color: #FF3D85;
}

.btn-outline-accent:hover {
  color: #fff;
  background-color: #FF3D85;
  border-color: #FF3D85;
}

.btn-outline-accent:focus, .btn-outline-accent.focus {
  box-shadow: none;
}

.btn-outline-accent.disabled, .btn-outline-accent:disabled {
  color: #FF3D85;
  background-color: transparent;
}

.btn-outline-accent:not(:disabled):not(.disabled):active, .btn-outline-accent:not(:disabled):not(.disabled).active,
.show > .btn-outline-accent.dropdown-toggle {
  color: #fff;
  background-color: #FF3D85;
  border-color: #FF3D85;
}

.btn-outline-accent:not(:disabled):not(.disabled):active:focus, .btn-outline-accent:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-accent.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-secondary {
  color: #4E5AFE;
  border-color: #4E5AFE;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #4E5AFE;
  border-color: #4E5AFE;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: none;
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #4E5AFE;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #4E5AFE;
  border-color: #4E5AFE;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-success {
  color: #96C93D;
  border-color: #96C93D;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #96C93D;
  border-color: #96C93D;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: none;
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #96C93D;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #96C93D;
  border-color: #96C93D;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-info {
  color: #05B4E1;
  border-color: #05B4E1;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #05B4E1;
  border-color: #05B4E1;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: none;
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #05B4E1;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #05B4E1;
  border-color: #05B4E1;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-warning {
  color: #EED818;
  border-color: #EED818;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #EED818;
  border-color: #EED818;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: none;
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #EED818;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #EED818;
  border-color: #EED818;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-danger {
  color: #FF4943;
  border-color: #FF4943;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #FF4943;
  border-color: #FF4943;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: none;
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #FF4943;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #FF4943;
  border-color: #FF4943;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-light {
  color: #F5F9F6;
  border-color: #F5F9F6;
}

.btn-outline-light:hover {
  color: #343531;
  background-color: #F5F9F6;
  border-color: #F5F9F6;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: none;
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #F5F9F6;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #343531;
  background-color: #F5F9F6;
  border-color: #F5F9F6;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-dark {
  color: #343531;
  border-color: #343531;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343531;
  border-color: #343531;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: none;
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343531;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343531;
  border-color: #343531;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-link {
  font-weight: 400;
  color: #07be94;
  text-decoration: none;
}

.btn-link:hover {
  color: #03a882;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6E807A;
  pointer-events: none;
}


.topbar {
  border-bottom: 1px solid #E8EEE4;
}

.topbar .row {
  align-items: center;
  min-height: 36px;
}

.topbar .site-info a {
  display: inline-flex;
  align-items: center;
  color: #A1AAA7;
}

.topbar .site-info a:hover {
  text-decoration: none;
}

.topbar .site-info a span {
  font-size: 16px;
  margin-right: 6px;
}

.topbar .site-info .divider {
  margin-left: 8px;
  margin-right: 8px;
  color: #BEC8B8;
}
.topbar .social-mini-button a {
  display: inline-block;
  padding: 6px 10px;
  color:var(--success);
  background-color: var(--light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0px 2px;
}
@media(min-width:768px){
  .topbar .social-mini-button a {
    display: inline-block;
    padding: 5px 0px 5px 5px;
    color:var(--success);
    background-color: var(--light);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 0px 2px;
  }
  }
@media(min-width:992px){
  .topbar .social-mini-button a {
    display: inline-block;
    padding: 7px 0px 7px 8px;
    color:var(--success);
    background-color: var(--light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0px 4px;
  }
  }
@media(min-width:1200px){
.topbar .social-mini-button a {
  display: inline-block;
  padding: 10px 0px 10px 12px;
  color:var(--success);
  background-color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0px 4px;
}
}

.topbar .social-mini-button a:hover {
  text-decoration: none;
  color: #6E807A;
}

.btn {
  padding: 8px 24px;
}

.breadcrumb {
  background-color: #f8f9fa;
}

.breadcrumb-dark .breadcrumb-item a {
  /* color: var(--primary); */
  color: rgb(240, 240, 28);
}

.breadcrumb-dark .breadcrumb-item a:hover {
  color: #07be94;
  text-decoration: none;
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  content: "/";
}

.breadcrumb-dark .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}
.navbar-brand {
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar-nav {
  margin-top: 10px;
  border-top: 1px solid #E8EEE4;
  flex-shrink: 0;
}
.navbar-nav .nav-link {
  transition: all .2s ease;
}
.navbar-nav .btn {
  font-size: 14px;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(110, 128, 122, 0.8);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color:var(--primary);
}

/* .navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  font-weight: 500;
  color: var(--primary);
} */

@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-sm .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-md .navbar-nav {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-lg .navbar-nav {
    /* align-items: center; */
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
  .navbar-expand-xl .navbar-nav {
    align-items: center;
  }
}

.form-control {
  padding: 8px 15px;
  height: calc(1.5em + 1.375rem + 2px);
  border-color: #d6dbd9;
}

.custom-select {
  height: calc(1.5em + 1.375rem + 2px);
}

.page-link {
  margin-left: 5px;
  min-width: 40px;
  color: #6E807A;
  border: 1px solid #dee6e5;
  text-align: center;
  border-radius: 4px;
}

.page-link:hover {
  color: #2D3B38;
  background-color: #E1EBE8;
  border-color: #dee6e4;
}

.page-link:focus {
  box-shadow: none;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}


.img-place {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.img-place > img {
  width: 100%;
  height: 100%;
}

.bg-image {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-image-parallax {
  background-attachment: fixed;
}

.bg-image-overlay-dark {
  position: relative;
}

.bg-image-overlay-dark::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #343531;
}

.bg-image > * {
  position: relative;
  z-index: 10;
}

.avatar {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

.avatar-img {
  margin-right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}
.avatar-img img{
  width: 100%;
  height: 100%;
}

.back-to-top{
  position: fixed;
  bottom: 45px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius:50%;
  background:#cb8925;
  /* visibility: hidden; */
  display:none;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 1100;
  box-shadow:rgba(255, 255, 255, 1) 0px 3px 6px;
}
@media(min-width:768px)
{
  .back-to-top{
   bottom:25px; 
  }
}
.back-to-top::after{
  content: "";
  position:absolute;
  top:50%;
  left: 0;
  right: 0;
  margin: -4px auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.back-to-top:hover{
  background: var(--primary);
}
.back-to-top:hover::after{
  border-color: #fff;
}
.page-section{
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-hero{
  position: relative;
  height: 550px;
  z-index: 10;
}

.page-banner {
  position: relative;
  height: 190px;
  z-index: 10;
  background-size: cover;
}
@media(max-width:768px){
  .banner-section h1{
    font-size: 22px !important;
  }
}
@media(min-width:768px){
  .page-banner{
    height: 250px;
  }
}
.page-hero.overlay-dark::before,
.page-banner.overlay-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 53, 49, 0.7);
  z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  font-size: 14px;
}

.hero-section,
.banner-section {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  z-index: 10;
}

.hero-section .subhead {
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-section h1 {
  margin-bottom: 32px;
}

.input-navbar {
  width: auto;
  max-width: 280px;
}

.input-navbar .input-group-text {
  background-color: #fff;
  color: var(--primary);
}

.input-navbar .form-control {
  height: calc(1.5em + 1rem + 2px);
}

.card-service {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
  margin: 0 auto;
  width: 100%;
  height: 80px;
  font-size: 20px;
  line-height: normal;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(154, 159, 151, 0.2);
}

.card-service p {
  margin-top: 10px;
  margin-left: 32px;
}

.circle-shape {
  flex-shrink: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
}

#doctorSlideshow .owl-nav {
  margin-top: 24px;
}

.card-doctor {
  text-align: center;
  display: block;
  margin: 15px auto;
  width: 100%;
  /* max-width: 240px; */
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(154, 159, 151, 0.2);
  overflow: hidden;
}

.card-doctor .text-xl {
  font-weight: 500;
}

.card-doctor .header {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.card-doctor .header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 53, 49, 0.36);
  opacity: 0;
  transition: opacity .2s linear;
}

.card-doctor:hover .header::before {
  opacity: 1;
}

.card-doctor .header .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease;
}

.card-doctor:hover .header .meta {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
}

.card-doctor .header .meta h6 {
  display: inline-block;
  margin: 3px;
  text-align: center;
  background-color: var(--success);
  color: var(--light);
  box-shadow: 0 4px 8px rgba(154, 159, 151, 0.6);
  transition: all .2s ease;
  padding: 5px 15px;
  font-size: 18px;
  border-radius: 5px;
}
.card-doctor .header .meta h6:hover {
  text-decoration: none;
  background-color:var(--dark-blue);
  color: #fff;
}
.card-doctor .header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-doctor .body {
  padding: 15px 20px;
  background-color: var(--primary);
  color: var(--light);
}

@media (min-width: 768px) {
  .card-service {
    width: 260px;
  }
}
.card-blog {
  position: relative;
  display: block;
  /* max-width: 264px; */
  margin: 0 auto;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
}

.card-blog .header {
  width: 100%;
  /* height: 140px; */
  background-color: #9A9F97;
  overflow: hidden;
}

.card-blog .header .post-thumb {
  position: relative;
  overflow: hidden;
}

.card-blog .header .post-thumb img {
  width: 100%;
  transition: transform .2s linear;
}

.card-blog .header .post-thumb:hover img {
  transform: scale(1.2);
}
.card-blog:hover .post-category  a{
  background-color: var(--light);
  color: var(--secondary);
  border: 2px solid var(--dark-blue);
}
.card-blog .body {
  padding: 15px 20px;
}

.card-blog .post-category {
  position: absolute;
  left: 5px;
  top:5px;
  text-align: center;
  background-color: none !important;
  z-index: 9;
}
.card-blog .post-category a {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--dark-blue);
  color: #fff;
  border-radius: 40px;
}
.card-blog .post-category h5 {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--dark-blue);
  color: #fff;
  border-radius: 40px;
}
.card-blog .post-category a:hover {
  text-decoration: none;
}

.card-blog .post-title,
.card-blog .post-title a {
  color:var(--light);
  text-align: center;
}
.card-blog .body{
  background-color:var(--cs);
}
.card-blog .post-title:hover,
.card-blog .post-title a:hover {
  text-decoration: none;
  color:rgb(214,131,6);
}

.card-blog .site-info {
  margin-top: 12px;
  font-size: 12px;
  color: #6D7170;
}

.card-blog .avatar-img {
  width: 28px;
  height: 28px;
}

.blog-details {
  position: relative;
  display: block;
}

.blog-details .post-thumb {
  position: relative;
  display: block;
  margin-bottom: 32px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(154, 159, 151, 0.3);
}

.blog-details .post-title {
  margin-bottom: 24px;
  font-weight: 400;
}

.blog-details .post-content {
  font-size: 18px;
  line-height: 1.7;
  color: #6E807A;
}

.blog-details .post-thumb img {
  width: 100%;
}

.blog-details .post-meta {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}

.blog-details .post-meta a {
  color: #6E807A;
}

.blog-details .post-meta a:hover {
  color: #07be94;
  text-decoration: none;
}

.blog-details .post-meta .divider {
  padding-left: 8px;
  padding-right: 8px;
}

.blog-details .post-tags {
  display: block;
  padding: 16px 0;
}

.blog-details .post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background-color: #596261;
  color: #fff;
  font-size: 14px;
  border-radius: 40px;
  transition: all .2s ease;
}

.blog-details .post-tags a:hover {
  text-decoration: none;
  background-color: #07be94;
  color: #fff;
}

.sidebar-block {
  position: relative;
  display: block;
  padding: 15px 24px;
  /* margin-bottom: 32px; */
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #E8EEE4;
  box-shadow: 0 4px 12px rgba(154, 159, 151, 0.2);
}

.sidebar-block::after {
  display: block;
  clear: both;
  content: "";
}

.sidebar-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #596261;
}

@media(min-width:768px){
  .sidebar-title{
    margin-bottom: 24px;
  }
}
.sidebar-title::after {
  content: '';
  display: block;
  margin-top: 10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 40px;
}

.search-form .form-group {
  position: relative;
}

.search-form .btn {
  position: absolute;
  top: 5px;
  right: 6px;
  padding: 6px 12px;
  background-color: var(--primary);
  color: #fff;
  transition: all .2s ease;
}

.search-form .btn:hover {
  background-color: #07be94;
}

.categories {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.categories li {
  display: block;
  float: left;
  margin-bottom: 12px;
  width: 50%;
}

.categories li a {
  display: inline-block;
  width: 90%;
  padding: 6px 12px;
  background-color: #E1EBE8;
  color: #6E807A;
  border-radius: 4px;
  transition: all .2s ease;
}

.categories li a:hover {
  text-decoration: none;
  background-color: #d5dfdc;
  color: #596261;
}

.categories li a span {
  float: right;
  margin-left: 8px;
  padding: 3px 6px;
  background-color: #6E807A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 40px;
}


.blog-item {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E8EEE4;
}
@media(min-width:768px)
{
  .blog-item{
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
.blog-item .post-thumb {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  width: 100px;
  height: 80px;
  background-color: #A1AAA7;
  overflow: hidden;
  border-radius: 8px;
}

.blog-item .post-thumb img {
  width: auto;
  height: 100%;
}

.blog-item .post-title a {
  color: #6D7170;
  transition: all .2s ease;
}

.blog-item .post-title a:hover {
  color: #07be94;
  text-decoration: none;
}

.blog-item .meta a {
  margin-right: 6px;
  font-size: 12px;
  color: #6E807A;
}

.blog-item .meta a:hover {
  text-decoration: none;
}

.tagcloud {
  position: relative;
  display: block;
}

.tag-cloud-link {
  display: inline-block;
  padding: 4px 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  border: 1px solid #d7dfdc;
  border-radius: 40px;
  font-size: 14px;
  color: #6E807A;
  transition: all .2s ease;
}

.tag-cloud-link:hover,
.tag-cloud-link:focus {
  text-decoration: none;
  background-color: #f8f9fa;
  color: #07be94;
  border-color: #07be94;
}

.main-form {
  display: block;
  max-width: 700px;
  margin: 0 auto;
}

.banner-home {
  padding: 0;
  background-color: #34A04B;
  color: #fff;
  
}

.banner-home .img-banner {
  display: block;
  max-width: 200px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.banner-home .img-banner img {
  width: 100%;
}

.page-footer {
  position: relative;
  display: block;
  padding-top: 80px;
  padding-bottom: 16px;
  background-color: #2D3B38;
  background-color:#000;
  color: #fff;
}
.page-footer h5 {
  font-weight: 500;
  margin-bottom: 16px;
}

.page-footer hr {
  border-color: #4F5E5B;
}

.footer-menu {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.footer-menu a,
.footer-link {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  transition: all .2s ease;
}

.footer-menu a:hover,
.footer-link:hover {
  text-decoration: none;
  color: #fff;
}
.footer-menu li{
  transition: .3s ease-in-out;
}
.footer-menu li:hover{
  margin-left: 5px;
}

.footer-link {
  padding: 0;
  margin-bottom: 16px;
}

.footer-sosmed a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  background-color: #26312F;
  color: #ffff;
  transition: all .2s ease;
}

.footer-sosmed a:hover {
  background-color: var(--primary);
  text-decoration: none;
}

.contact-form {
  display: block;
  max-width: 900px;
  margin: 15px auto;
}

.maps-container {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  background-color: #E1EBE8;
}

#google-maps {
  width: 100%;
  height: 350px;
}

.custom-img-1 {
  width: auto;
  max-width: 390px;
}

.custom-index {
  z-index: 11;
}


/* Custom Plugin */
.owl-nav {
  display: block;
  margin: 15px auto;
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  display: inline-block;
  padding: 6px 0 !important;
  background-color: var(--primary);
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next {
  padding-right: 14px !important;
  padding-left: 7px !important;
  border-radius: 0 40px 40px 0;
}
.owl-carousel .owl-nav button.owl-prev {
  padding-right: 7px !important;
  padding-left: 14px !important;
  border-radius: 40px 0 0 40px;
}
/* my-css */
.announcement{
  height: 300px;
  background-color:var(--success);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow:hidden;
}
.announcement h4{
  color:var(--light);
  background:#cb8925;
  padding: 3px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  text-align: center;
  position: sticky;
  top:0;
  z-index: 9;
}
.announcement-heighlights{
  height: 300px;
  background-color:var(--success);
  /* border-top-right-radius: 10px; */
  /* border-top-left-radius: 10px; */
  /* border-bottom-left-radius: 10px; */
  /* border-bottom-right-radius: 10px; */
  overflow:hidden;
}

.announcement-heighlights h4{
  color:var(--light);
  background:#cb8925;
  padding: 3px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
  position: sticky;
  top:0;
  z-index: 9;
  transition: .6s all ;
}

.ann-content{
  margin: 15px;
  color:var(--light);
 }
 /* announcement marquee */
 .marquee {
  top: 6em;
  position: relative;
  box-sizing: border-box;
  animation: marquee 15s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
  0%   { 
    top:   8em 
  }
  100% { 
         top: -11em
       }
}
/* Make it look pretty */
.microsoft:before, .microsoft::before,
.microsoft:after,  .microsoft::after {
  left: 0;
  z-index: 1;
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%; 
  height: 2em;
  background-image:linear-gradient(top, #FFF, rgba(255,255,255,0));
}
.microsoft:after, .microsoft::after {
  bottom: 0;
  transform: rotate(180deg);
}
.microsoft:before, .microsoft::before {
  top: 0;
}
@media(max-width:768px)
{
  .padding-sm-0{
    padding: 0 !important;
  }
}
/* navigation */
.announcement-sec h2{
  color: var(--success);
}
.border-head{
  color: var(--success);

}
.announcement-sec img{
  text-align: center;
  width: 100%;
}
.heading-border{
  position:relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.heading-border::before{
  content: " ";
  background-image: url('../img/logo/border.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom:-30px;
  height:20px;
  width:100%;
  margin-bottom: 12px;
}

@media(min-width:768px)
{
  .heading-border::before{
    content: " ";
    background-image: url('../img/logo/border.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom:-22px;
    height:20px;
    width:30%;
    margin-bottom: 0px;
  }
}
.marquee li{
  font-size: 15px;
}
.foot-btn a{
  color: #fff;
  padding: 6px 10px;
  font-size: 18px;
  text-decoration: none;
  background-color: var(--dark-blue);
  border-radius: 5px;
  transition: .6s all;
}
.foot-btn a:hover{
  color: var(--dark-blue);
  text-decoration: none;
  background-color: var(--light);
  border-radius: 5px;
}
@media (max-width:768px)
{
  .text-align-center
  {
    text-align: center;
  }
}

/* my css */

.mylogo{
width: 180px;
}

@media(min-width:768px)
{
  .mylogo{
    width:140px;
  }
  .search-bar-tab{
    height: 55px;
    background-color: var(--success);
    padding: 10px;
  }
  .search-box-form{
    margin-right: 20px;
  }
}
.search-bar-tab{
  background-color: var(--success);
  padding: 5px;
}
/* navigation */
@media(max-width:768px)
{
  header{
    overflow: hidden;
  }  
}
.flex-navbar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.flex-navbar li a{
  padding: 25px 0PX;
    background-position: center 10px;
    background-size: 30px;
  color: white !important;
}
.flex-navbar li{
  border: 1px solid #dbdbdb;
  font-size: 16px;
  position: static;
  text-transform: uppercase;
  text-align: center;
  flex: 1;
  background-color: var(--success);
}
.flex-navbar li :hover{
  transform: scale(1.1);
}
@media(min-width:992px){
  .flex-navbar li {
    font-size: 14px;
  }
}
@media(min-width:475px){
  .search-box-form{
    display: inline-block;
  }
}
@media(max-width:768px){
  .search-box-form{
   margin-bottom: 10px;
  }
}
.search-box-form{
  text-align: -webkit-center;
}
@media (max-width:991px)
{
.humburger-one{
    cursor: pointer !important;
    display:inline-block !important;
    color: #fff !important;
    font-size: 18px;
    padding: 5px 10px !important ;
    background: var(--primary);
}
.humburger-two{
  cursor: pointer !important;
  display:inline-block !important;
  color: #fff !important;
  font-size: 18px;
  padding: 5px 10px !important ;
  background: var(--primary);
}
#navbarSupport{
  position: relative;
  right:-60%;
  transition:0.6s all ease !important;
  position: fixed;
    width: 50%;
    z-index: 999999;
    top: 0;
}
#navbarSupportTwo{
  position: fixed;
  left:-100%;
  transition:0.6s all ease;
}
.flex-navbar {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px;
  margin: 0px;
  height: 100%;
}
.menu-ul{
  background-color: var(--success);
  width: 100%;
  margin-top: 0px;
  height: 100vh;
}
.menu-ul li{
  border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    position: static;
    text-transform: uppercase;
    text-align: center;
    flex: 1;

}
.menu-ul li a{
  color: var(--light) !important;
  padding: 10px !important;
} 
}
@media (min-width:992px)
{
  .humburger-one{
    display: none !important;
  }
  .humburger-two{
    display:none !important;
  }
  .nav-logo{
    margin-top:4px;
    width:50px;
  }
}
#navbarSupportTwo.show{
  left:0% !important;
  position: fixed;
  z-index:99999999;
  height: 100vh;
  width: 50%;
  top: 0%;
}
#navbarSupport.show{
  right:0% !important;
  transition: 0.6s all ease !important;
}

header{
  position: sticky;
  top: -207px;
  z-index:99999999999;
  background-color: #fff;
  transition:0.6s all ease !important;
}
.topbar{
  height: 207px;
}
@media(min-width:768px){
  .topbar{
    height: 91px;
  }

  header{
    top:-90px;
  }
}

#overlay{
  width: 50%;
  height: 100vh;
  background-color: rgba(255, 255, 255,0.8);
  position: fixed;
  top: 0;
  left: 0;
  /* z-index: 999999999; */
  display: none;
}
#overlaytwo{
  width: 50%;
  height: 100vh;
  background-color: rgba(255, 255, 255,0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999999;
  display: none;
}
@media(min-width:992px)
{
  #navbarSupport{
    margin-left: auto !important;
  }
}
@media(max-width:992px)
{
  .nav-item img{
    width: 50px;
  }
}
.marquee li a{
  color: #fff;
}
.marquee li a:hover{
  color:#07be94;
}
/* counter */

.count-area {
    position: relative;
    /* background:var(--primary); */
    padding: 20px 0;
    text-align: center;
    color: #fff;
    /* margin-bottom: 40px; */
}
.count-area{
  background-color: #33642A;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(46,683,312)'%3E%3Cstop offset='0' stop-color='%2333642A'/%3E%3Cstop offset='1' stop-color='%23436411'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='540' height='450' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

.count-area i {
    font-size: 48px;
}
.count-digit {
    /* margin: 10px 0px; */
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}
.plus-cunt{
  color: #fff;
  font-weight: 700;
  font-size: 50px;
}
.count-title {
    font-size: 20px;
}
.pt-3{
  padding-top: 10px;
}

/* card */

.card {
  margin: 30px auto;
  width: 100%;
  /* height:300px; */
  border-radius: 40px;
   box-shadow: 5px 5px 20px 7px rgba(0,0,0,0.18), -5px -5px 20px 7px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: 0.4s;
}
@media(min-width:768px)
{
  .card{
    height: 300px;
  }
}
@media(min-width:992px)
{
  .card-two{
    height:620px;
  }
}

.card .card_title {
  text-align: center;
  border-radius: 0px 0px 40px 40px;
  font-weight: bold;
  font-size: 30px;
  height: 40px;
  margin-top: 10px;
}
.card-bodys{
  padding: 0px 15px 15px 15px;
}
.card:hover {
  transform: scale(0.97, 0.97);
  box-shadow: 5px 5px 30px 15px rgba(63,100,7,0.2)  , 
    -5px -5px 30px 15px rgba(63,100,7,0.2);
}
/*  */
.custom-shape-divider-top-1660830554 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 500px;
}

.custom-shape-divider-top-1660830554 .shape-fill {
  fill:var(--primary);
}
.p-0{
  padding: 0px !important;
}
/* home-welcome */
.title-word {
  animation: color-animation 4s linear infinite;
}
.title-word-1 {
  --color-1: #3F6404;
  --color-2: #44107a;
  --color-3: #D68306;
  margin-right: 5px;
}
.title-word-2 {
  --color-1: #3F6404;
  --color-2: #44107a;
  --color-3: #D68306;
  margin-right: 5px;
}
.title-word-3 {
  --color-1: #3F6404;
  --color-3: #D68306;
  --color-2: #44107a;
  margin-right: 5px;
}
.title-word-4 {
  --color-2: #44107a;
  --color-1: #3F6404;
  --color-3: #D68306;
}
@keyframes color-animation {
  0%    {color: var(--color-1)}
  32%   {color: var(--color-1)}
  33%   {color: var(--color-2)}
  65%   {color: var(--color-2)}
  66%   {color: var(--color-3)}
  99%   {color: var(--color-3)}
  100%  {color: var(--color-1)}
}
@media(max-width:500px)
{
  .home-animate-heading{
    font-size: 20px !important;
  }
}
.programmes-mode{
  font-size: 14px;
}
/* flip-card */
.works-section{
  background-color: var(--primary);
  padding:00px 20px 20px 20px;
  color: white;
  border-bottom-left-radius: 5rem;
  border-top-right-radius: 5rem;
  margin-bottom: 10px;
}
@media(min-width:768px)
{
  .works-section{
    border-bottom-left-radius: 6rem;
    border-bottom-right-radius: 6rem;
  border-top-right-radius: 0rem;
    padding: 00px 00px 20px 00px;
    margin-bottom: 0px;
  }
  .works-section h3{
    color: #343531;
    background-color: #fff;
    padding-bottom:1rem;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
  }
}
.marquee-list ul  li a{
color: #fff !important;
}
.heighlights-sec{
  overflow-y: scroll;
}
@media(max-width:767px)
{
  #mybutton {
    position: fixed;
    bottom: 0%;
    left: 0; 
    z-index: 9999999999999999999;
    width: 100%;
  }
  .feedback {
    background-color:#cb8925;
    color: white;
    padding: 5px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border: none;
    z-index: 99999999999999999999;
    width: 100%;
    display: block;
    text-align: center;
  }
  .mb-sm-5{
    margin-bottom: 20px;
  }
}
.feedback{
  transition: .5s ease-in-out;
}
.feedback:hover{
  color: #fff !important;
  text-decoration: none !important;
}
@media(min-width:768px)
{
  .feedback {
    background-color:#cb8925;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    z-index: 9999999999999999999;
  }
  
  #mybutton {
    position: fixed;
    bottom:35%;
    right: -81px;  
    transform: rotate(90deg);
    z-index: 999999999;
    transition: .3s ease-in-out;
  }
    #mybutton:hover{
      right: -75px;
  }
}

.justify-content-center{
  justify-content: center;
}
.justify-content-space-around{
  justify-content: space-around;
}
.justify-content-between{
  justify-content: space-between;
}
.about{
  position: relative;
}
.about{
  width: 150px;
  height: 5px;
  margin: 0px auto 10px auto;
  background-color: rgba(0,0,0,0.5);
}
@media(max-width:768px){
    .sm-fs-24{
        font-size: 24px;
    }
    .sm-fs-22{
      font-size: 22px;
  }
}
/* dropdown */
.fs-14{
  font-size: 14px !important;
}
@media(max-width:991px)
{
  .inner-drop-down-list{
    border-top: 0px !important;
  }
  .inner-drop-down-list li{
    border-bottom: 0px !important;
  }
.drop-down{

}
.drop-down-list{
background:var(--primary);
border: 1px solid var(--grey);
border-radius: 3px;
display: none;
position: absolute;
z-index: 9999999999999;
padding: 0;
list-style-type: none;
margin-left: -190px;
margin-top: -45px;
}
.drop-down-second{
  margin-left: -115px !important;
}
.drop-down-list .nav-item .nav-link{
  /* color: var(--primary) !important; */
}
.drop-down:hover .drop-down-list{
  display: block;
}
.inner-drop-down{

}
.inner-drop-down-list{
  background: var(--primary);
  border: 1px solid var(--grey);
  border-radius: 3px;
  display: none;
  z-index: 9999999999999;
  padding: 0;
  list-style-type: none;
  }
  .inner-drop-down:hover .inner-drop-down-list{
    display: block;
  }
    .inner-drop-down-list{
      width: 100%;
    }
}   
@media(min-width:992px)
{
.drop-down{

}
.drop-down-list{
background: #fff;
border-radius: 3px;
display: none;
position: absolute;
z-index: 9999999999999;
padding: 0;
list-style-type: none;
}
.drop-down:hover .drop-down-list{
  display: block;
}
.inner-drop-down{

}
.inner-drop-down-list{
  background: #fff;
  border-radius: 3px;
  display: none;
  position: absolute;
  z-index: 9999999999999;
  padding: 0;
  list-style-type: none;
  }
  .inner-drop-down:hover .inner-drop-down-list{
    display: block;
  }
    .inner-drop-down-list{
      margin-left:100%;
      margin-top: -35px;
      width: 100%;
    }
}
.active{
  color:var(--primary) !important;
}
.fs-14{
  font-size: 14px !important;
}
.work-project{
  border: 4px solid #e7eded;
  border-radius: 4px;
}
.gallery-parent img{
    height: 250px;
}
  .gallery-btn a{
    color: #fff;
    padding: 6px 10px;
    font-size: 18px;
    text-decoration: none;
    background-color: var(--dark-blue);
    border-radius: 10px;
    transition: .6s all;
  }
  .gallery-btn a:hover{
    color: var(--dark-blue);
    text-decoration:none;
    background-color:var(--light);
    border-radius:5px;
  }
/* experts */
.expert-box{
	border-radius: 40px;
	background:#fff;
	position:relative;
	overflow: hidden;
	text-align:center;
  margin: auto auto;
  width: 350px;
}

@media(min-width:576px)
{
  .expert-box{
    width: auto;
  }
}

.expert-box:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 100%;
    border-radius: 40px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.30);
    transition: all 0.6s ease;
    transform-origin: left;
    /* background-image: linear-gradient(to right, #f5e7da 0%, #f3e5d9 100%); */
    background-color: rgb(76,119,14,0.7);
}
.expert-box:hover:before{
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    box-shadow: none;
}
.expert-box:hover .image-wrapper{
	padding:5px;
}
.expert-box:hover .box-desc{
	color:#fff;
}
.box-desc{
  text-align: left;
}
.box-desc h6{
  font-weight: 500;
  font-size: 18px;
}
.box-desc p{
  font-size: 15px;
  text-align: left;
}

@media(min-width:992px){
  .adv-desc{
    height: 100px;
  }
  .expert-desc{
    height: 100px; 
  }
}

.expert-box:hover .social li a {
	background:var(--primary);
	background-image: none;
	color:#fff;
}

.expert-box:hover .social li a:hover{
	background:#fff;
	color:var(--primary);
}

.image-wrapper{
    position: relative;
	  margin:0 auto;
    overflow: hidden;
    border-radius: 10%;
    padding: 15px;
    transition: all 0.5s ease;
    box-shadow: inset 0px 0px 5px rgba(0,0,0,0.09);
}
.image-wrapper img{
    border-radius:10%;
    transition:all 500ms ease;
}

@media(min-width:768px){
  .image-wrapper{
    height: 220px;
  }
  .image-wrapper img{
    height: 100%;
    width: 100%;
  }
}

.box-desc{
	position:relative;
}
ul.social{
	padding:0;
}
ul.social li{
	display:inline-block;
	list-style-type:none;
}
ul.social li a{
	position:relative;
	width: 36px;
  height: 36px;
	background-image:linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
	display:inline-block;
	line-height:36px;
	border-radius:50%;
	color:#fff;
	transition: all .5s ease;
}
.donate-last-title{
  text-decoration: underline;
  font-weight: bold;
}
.green-school-img{
  width: 100%;
}
@media(min-width:768px){
  .green-school-img{
    height: 300px;
    width: 480px;
    float: left;
    padding:5px 20px 0px 0px;
  }
}
.event-seven{
  width: 100%;
}
@media(min-width:768px){
  .event-seven{
    height:100%;
    width: 400px;
    float: left;
    padding:5px 20px 0px 0px;
  }
}
.event-nine{
  width: 100%;
}
@media(min-width:768px){
  .event-nine{
    height:100%;
    width: 450px;
    float: left;
    padding:5px 20px 0px 0px;
  }
}
/*  */
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index:9999999999999999999;
}

#popup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-child{
  position: relative;
  /* height: 80%; */
  height: auto;
  min-height: 20%;
  width: 96%;
  border: 2px solid #fff;
}

@media(min-width:768px){
  .popup-child{
    position: relative;
    height: 80%;
    width: 80%;
  } 
  #popup-image{
    object-fit: cover;
  }
}

.popup-child::selection{
  background-color:transparent;
}
#popup-image::selection{
background-color: transparent;
}
@media(min-width:768px)
{
  .popup-child{
    /* padding: 5%; */
  }
}

/* 404 */
.error-page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 40vh;
  background-color:#fff;
  overflow: hidden;
}
@media(min-width:992px){
  .error-page{
    min-height: 80vh;
  }
}

  .error-page:before,
  .error-page:after{
    content: "";
    position: absolute;
    left: 50%;
    min-width: 300vw;
    min-height: 300vw;
    background-color: #33c2fd;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  .error-page:before{
    bottom: 15vh;
    border-radius: 45%;
    animation-duration: 10s;
  }
  
  .error-page:after{
    bottom: 12vh;
    opacity: 0.5;
    border-radius: 47%;
    animation-duration: 10s;
  }

@keyframes rotate {
  0% {transform: translate(-50%, 0) rotateZ(0deg);}
  50% {transform: translate(-50%, -2%) rotateZ(180deg);}
  100% {transform: translate(-50%, 0%) rotateZ(360deg);}
}

.circle h1, .circle h2 {
  color: #ffffff;
  z-index: 10;
  margin: 0;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}

.circle h1 {
  margin-top:24px;
  font-size: 66px;
  font-weight:700;
  text-align:center;
}

.circle h2 {
  font-size: 22px;
  text-align:center;
}

.circle {
  position: relative;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  background: var(--secondary);
  box-shadow: #E94E3D;
  z-index:99;  
}
.error{
  color:var(--danger);
}
.highlight{
  color:var(--primary);
}

.event-basicofenv{
  width: 100%;
  padding-top: 5px;
}
@media(min-width:768px){
  .event-basicofenv{
    height:100%;
    width: 100%;
    float: left;  
    padding-top: 10px;
  }
}

/* masonry gallery */
.masonary_section{width:100%;}

.maso_box{
  column-width:240px;
  position:relative;
}
@media(min-width:992px){
  .maso_box{
  column-gap: 22px;
  }
  .maso_box_2{
    column-width: 205px !important;
  }
}
.maso_box img{
  width: 100%; 
}

.gallery-inner{
  height: 220px;
  border: 1px solid rgba(0, 0, 0, 0.9);
}
.gallery-inner img{
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: left;
  cursor: pointer;
}
@media(min-width:768px){
  .gallery-inner{
    height: 160px;
  } 
}

@media(min-width:992px){
  .gallery-inner{
    height: 220px;
  } 
}

.close-me{
  height: 32px;
  width: 32px;
  padding: 2px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 6px;
  top: -42px;
  cursor: pointer;
}
.close-me img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
}


/* carousel */
.carousel-control-prev, .carousel-control-next{
  background-color: transparent !important;
  border: none !important;
  opacity: 1 !important ;

}
.carousel-control-prev-icon, .carousel-control-next-icon{
  height: 20px !important;
  width: 20px !important;
  z-index: 10px;
}
@media(min-width:768px){
  
.carousel-control-prev-icon, .carousel-control-next-icon{
  height: 40px !important;
  width: 40px !important;
  z-index: 10px;
}

}

.banner-inner .carousel-item{
  position: relative;
}
.banner-inner .carousel-item::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index:0;
}

.banner-inner .carousel-item{
  height: 270px;
}
.carousel-item img{
  height: 100%;
}

@media(min-width:600px){
  .banner-inner .carousel-item{
    height: auto;
  }
}

@media(min-width:992px){
  .banner-inner .carousel-item{
    height: 600px;
  }
}

@media(min-width:1400px){
  .banner-inner .carousel-item{
    height: 700px;
  }
}
@media(max-width:768px){
  .caption-one h5{
    border-radius: 40px;
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
  }
  .caption-one{
    padding-left: 10% !important;
    padding-right: 10% !important;
    text-align: center !important;
    padding-bottom: 5% !important;
  }
}

.caption-one{
  width: 100%;
  height: 100%;
  left: 0 !important;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 1;
  padding-left: 2%;
}
.caption-one div{
  width: 100%;
}

.caption-two{
  width: 100%;
  height: 100%;
  left: 0 !important;
  bottom: 0 !important;
  display: flex;
  justify-content: start;
  align-items: end;
  z-index: 1;
  text-align: start;
  padding-left: 2%;
}

.caption-two div{
  width: 100%;
}
.caption-two h5{
  background-color: white;
  border-radius: 40px;
  display: inline-block;
  padding: 4px 8px;
  color: #000;
  font-size: 16px;
}

.caption-three{
  width: 100%;
  height: 100%;
  left: 0 !important;
  bottom: 0 !important;
  display: flex;
  justify-content: start;
  align-items: end;
  z-index: 1;
  text-align: start;
  padding-left: 2%;
}

.caption-three div{
  width: 100%;
}
.caption-three h5{
  background-color: white;
  border-radius: 40px;
  display: inline-block;
  padding: 4px 8px;
  color: #000;
  font-size: 16px;
}
@media(max-width:768px){
  .carousel-caption{
    /* text-align: left !important; */
    /* padding-bottom: 5px !important; */
    padding-left: 3%;
    padding-bottom: 3%;
    padding-right: 2%;
  }
}

.carousel-caption p{
  font-size: 13.5px;
  margin-bottom: 0px;
}
@media(min-width:768px){
  .carousel-caption p{
    font-size: 18px;
  }
  .caption-one {
    align-items: center;
  }
  .caption-one div{
    width: 50%;
  }
  .caption-one h5{
    font-size: 40px;
    font-weight: bold;
  }

  .caption-two{
    width: 100%;
    height: 100%;
    left: 0 !important;
    bottom: 0 !important;
    display: flex;
    justify-content: start;
    align-items: end;
    z-index: 1;
    text-align: start;
    padding-left: 10%;
    padding-bottom: 5%;
  }
  
  .caption-two div{
    width: 45%;
  }
  .caption-two h5{
    background-color: white;
    border-radius: 40px;
    display: inline-block;
    padding: 10px;
    color: #000;
  }

  .caption-three{
    width: 100%;
    height: 100%;
    left: 0 !important;
    bottom: 0 !important;
    display: flex;
    justify-content: start;
    align-items: end;
    z-index: 1;
    text-align: start;
    padding-left: 10%;
    padding-bottom: 5%;
  }
  
  .caption-three div{
    width: 45%;
  }

  .caption-three h5{
    background-color: white;
    border-radius: 40px;
    display: inline-block;
    padding: 10px;
    color: #000;
  }

}
@media(max-width:600px){
  .carousel-caption h5{
    margin-bottom: 2px !important;
    /* font-size: 20px !important; */
    font-weight: bold;
  }
}
@media(max-width:600px){
  .carousel-indicators{
    display: none !important;
  }
}

.fs-13{
  font-size: 13px;
}
.donate_now{
  text-decoration: none !important;
  display: inline-block;
  position: relative;
}
.donate_now::before{
  content: '';
  width: 70%;
  height: 2px;
  background-color: #03a882;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: widthAnimationDonate 2s infinite alternate;

}
@keyframes widthAnimationDonate {
  0% {
    width:70%; 
  }
  100% {
    width: 100%;
  }
}
.work-ul{
  margin-bottom: 0px;
}
.work-ul li{
  margin-bottom: 2px;
}

.foot-tagline{
  background-image: url('../img/blog/ng-4.jpg'); 
   background-repeat:no-repeat;
   background-size: cover;
}
@media(min-width:600px){
  .foot-tagline{
    background-size: cover;
  }
}

.people-filter div{
  padding: 10px 0px 5px 0px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #000;
  cursor: pointer;
  margin-left: 12px;
}
@media(min-width:768px){
  .people-filter div{
    margin-left: 20px;
  }
  .people-filter p{
    margin-left: 20px;
  }
}
.people-filter div.active{
  border-bottom-color: var(--color-1);
}
.people-filter p{
  width: 1px;
  height: 30px;
  margin-bottom: -10px;
  background-color: #000;
  margin-left: 12px;
}
/* bank detaiils */
.bank_detail{
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background:antiquewhite;
}

.bank_detail h5{
  font-size: 15px;
  margin-right: 10px;
}

.bank_detail h6{
  font-size: 15px;
}

@media(min-width:380px){
  .bank_detail h5{
    font-size: 17px;
    margin-right: 10px;
  }
  .bank_detail h6{
    font-size: 16px;
  }
}

.marquee-list p{
  border-bottom: 1px dashed #fff;
  margin-top: 5px;
}

.ann-content p{
  border-bottom: 1px dashed #fff;
  margin-top: 5px;
}

.up-id{
  /* background:rgba(76,119,14,0.07); */
  /* padding: 4px; */
  border-radius: 5px;
}

.radius-5{
  border-radius: 5px !important;
}
.fs-17{
  font-size: 17px !important;
}
.h-100{
  height: 100% !important;
}