/*

Design and developed by: Mohan K. Duwal


This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader Area CSS
** - Navbar Area CSS
** - Banner Area CSS
** - Bottom Icon Area CSS
** - partner Area CSS
** - About Area CSS
** - Projects Area CSS
** - Fun Facts Area CSS
** - Others Area CSS
** - Donate Area CSS
** - Team Area CSS
** - Events Area CSS
** - Faq Area CSS
** - Blog Area CSS
** - Footer Area CSS
** - Footer Bottom Area CSS
** - Modal Area CSS

*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap");
body {
  padding: 0;
  margin: 0;
  color: #666666;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1a1b1e;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
  color: #2f8e4e;
  outline: 0;
}

button:focus, input:focus {
  outline: 0;
}

p {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: bold;
  text-transform: capitalize;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-50{
  padding-bottom: 50px;
  padding-top: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-30 {
  padding-bottom: 30px;
}

/*
Default Btn Area CSS
===================*/
.default-btn {
  border: 1px solid #2f8e4e;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 400;
  font-size: 13px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.default-btn:hover {
  color: #fff;
  background-color: #00135f;
  border: 1px solid #00135f;
}

/*
Optional Btn Area CSS
===================*/
.optional-btn {
  border: 1px solid #ffffff;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #2f8e4e;
  text-transform: uppercase;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 10px;
  font-weight: 400;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.optional-btn:hover, .optional-btn:focus {
  color: #ffffff;
  background-color: #2f8e4e;
  border: 1px solid #2f8e4e;
}

/*
Section Title Area CSS
===================*/
.section-title {
  text-align: center;
  margin-bottom: 40px;
  max-width: 750px;
  margin: -6px auto 60px;
}

.section-title span {
  font-size: 24px;
  color: #2f8e4e;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-left: 10px;
  font-weight: 700;
  line-height: 1;
}

/*.section-title span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #2f8e4e;
  left: -12px;
}*/

.section-title h2 {
  font-size: 50px;
  margin: 14px 0 10px 0;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}

.preloader .preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #2f8e4e !important;
  -webkit-animation: preloader 1.3s linear infinite;
          animation: preloader 1.3s linear infinite;
}

.preloader .preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}

/*================================================
Navbar Area CSS
=================================================*/

.headbar{
  padding-top: 10px
}
.main-nav {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.main-nav .logo-2 {
  display: none;
}

.main-nav .container {
  max-width: 1300px;
}

.navbar{
  padding-top: 0;
}

.main-nav nav .navbar-nav .nav-item a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
}

.main-nav nav .navbar-nav .nav-item a i {
  position: relative;
  left: 2px;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*.main-nav nav .navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 5px;
  width: 1px;
  height: 12px;
  background-color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}*/

.main-nav nav .navbar-nav .nav-item a:hover {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item a:hover i {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item a.active {
  color: #fff;
}

.main-nav nav .navbar-nav .nav-item a.active i {
  color: #fff;
}

.main-nav nav .navbar-nav .nav-item a.active::after {
  opacity: 1;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  color: #1a1b1e;
  padding: 7px 15px;
  font-size: 14px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
  display: none;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::after {
  display: none;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
  color: #1a1b1e;
  position: relative;
  top: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover i {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active i {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1a1b1e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a i {
  float: right;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item:first-child a::before {
  display: none;
}

.main-nav nav .navbar-nav .nav-item:hover a {
  color: #2f8e4e;
}

.main-nav nav .navbar-nav .nav-item:hover a i {
  color: #2f8e4e;
}

.others-option{
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(256,256,256,0.1)
}

.others-option .option-item {
  margin-right: 25px;
  position: relative;
  float: right;
}

.others-option.mobile{
  display: none;
}

.others-option .option-item:last-child {
  margin-right: 0;
  position: relative;
  top: 7px;
}

.others-option .option-item:last-child::before {
  display: none;
}

.others-option .option-item:nth-child(2)::before {
  display: none;
}

.others-option .option-item::before {
  position: absolute;
  right: -12px;
  top: 5px;
  width: 1px;
  content: '';
  height: 18px;
  background-color: #757270;
}

.others-option .option-item .default-btn {
  border: 1px solid #2f8e4e;
  background-color: #2f8e4e;
  color: #ffffff;
  position: relative;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 12px;

}

.others-option .option-item .default-btn:hover {
  background-color: #00135f;
  border-color: #00135f;
  color: #ffffff;
}

.others-option .option-item .dropdown-menu {
  background-color: #ffffff;
  margin-top: 10px;
  border: 1px solid #f3f3f3;
  color: #1a1b1e;
  text-transform: uppercase;
  font-size: 11px;
  height: 215px;
  overflow-y: auto;
  transform: translate(0px, 35.3333px)!important;
}

.others-option .option-item .dropdown-toggle {
  background-color: transparent;
  border: none;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
}

.others-option .option-item .dropdown-toggle::after {
  display: none;
}

.others-option .option-item .dropdown-toggle i {
  font-size: 15px;
  position: relative;
  top: 2px;
  left: 2px;
  color: #000;
}

.others-option .option-item .burger-menu {
  cursor: pointer;
  margin-left: 4px;
}

.others-option .option-item .burger-menu i {
  font-size: 20px;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.others-option .option-item .burger-menu i:hover {
  color: #2f8e4e;
}

.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background-color: #ffffff;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100% !important;
}

.navbar-brand img.stickylogo{
  display: none;
}

.is-sticky .navbar-brand img.stickyhide{
  display: none;
}

.is-sticky .navbar-brand img.stickylogo{
  display:inline-block;
}

.is-sticky .main-nav {
  background-color: transparent;
}

.is-sticky .main-nav .logo-1 {
  display: none;
}

.is-sticky .main-nav .logo-2 {
  display: block;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a {
  color: #333;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a i {
  color: #333;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a:hover {
  color: #2f8e4e;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a:hover i {
  color: #2f8e4e;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a.active {
  color: #2f8e4e;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a.active i {
  color: #2f8e4e;
}

.is-sticky .main-nav nav .navbar-nav .nav-item a.active::after {
  opacity: 1;
}

.is-sticky .others-option .option-item .dropdown-toggle {
  color: #1a1b1e;
}

.is-sticky .others-option .option-item .dropdown-toggle i {
  color: #1a1b1e;
}

.is-sticky .others-option .option-item .burger-menu i {
  color: #1a1b1e;
}

.is-sticky .others-option{
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/*================================================
Sidebar mModal Area CSS
=================================================*/
.sidebar-modal {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.sidebar-modal .sidebar-modal-inner {
  position: absolute;
  right: -100%;
  top: 0;
  width: 400px;
  overflow-y: scroll;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.sidebar-modal .sidebar-modal-inner .close-btn {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 20px;
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1a1b1e;
  cursor: pointer;
  width: 35px;
  text-align: center;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  line-height: 34px;
}

.sidebar-modal .sidebar-modal-inner .close-btn:hover {
  background-color: red;
  border-color: red;
  color: #ffffff;
}

.sidebar-modal .sidebar-about-area {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-about-area .title h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.sidebar-modal .sidebar-about-area .title p {
  font-size: 15px;
}

.sidebar-modal .sidebar-instagram-feed {
  margin-bottom: 40px;
}

.sidebar-modal .sidebar-instagram-feed h2 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.sidebar-modal .sidebar-instagram-feed ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  margin-top: -10px;
}

.sidebar-modal .sidebar-instagram-feed ul li {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 10px;
}

.sidebar-modal .sidebar-instagram-feed ul li a {
  display: block;
  position: relative;
}

.sidebar-modal .sidebar-instagram-feed ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
  opacity: .50;
  visibility: visible;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info {
  text-align: center;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: lowercase;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a {
  display: inline-block;
  color: #2f8e4e;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:hover {
  color: #1a1b1e;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:not(:first-child) {
  color: #1a1b1e;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 a:not(:first-child):hover {
  color: #2f8e4e;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content h2 span {
  display: block;
  color: #666666;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li {
  display: inline-block;
  margin: 0 1px;
  padding-left: 0;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #aba5a5;
  display: block;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a i {
  font-size: 14px;
}

.sidebar-modal .sidebar-contact-area .sidebar-contact-info .contact-info-content .social li a:hover {
  color: #ffffff;
  border-color: #2f8e4e;
  background-color: #2f8e4e;
}

.sidebar-modal::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  height: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}

.sidebar-modal.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-modal.active .sidebar-modal-inner {
  right: 0;
}

.sidebar-modal.active::before {
  width: 100%;
}

/*================================================
Banner Area CSS
=================================================*/
.home-slider {
  overflow: hidden;
}

.home-slider .home-item {
  position: relative;
  height: 100vh!important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
/*
.home-slider .home-item.item-bg1 {
  background-image: url(../../assets/img/slider/slider-bg1.jpg);
}

.home-slider .home-item.item-bg2 {
  background-image: url(../../assets/img/slider/slider-bg2.jpg);
}

.home-slider .home-item.item-bg3 {
  background-image: url(../../assets/img/slider/slider-bg3.jpg);
}
*/

.home-slider .home-item .slider-content {
  max-width: 840px;
  margin: auto;
  text-align: center;
}

.home-slider .home-item .slider-content.leftalign{
  text-align: left;
}


.home-slider .home-item .slider-content.rightalign{
  text-align: right;
}

.home-slider .home-item .slider-content span {
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  font-size: 28px;
  font-style: italic;
}

.home-slider .home-item .slider-content h1 {
  font-size: 60px;
  color: #ffffff;
  margin: 10px 0 10px 0;
  font-family: "Poppins", sans-serif;
}

.home-slider .home-item .slider-content p {
  margin-bottom: 0;
  color: #ffffff;
}

.home-slider .home-item .slider-content .event-list {
  padding-left: 0;
  margin-bottom: 0;
}

.home-slider .home-item .slider-content .event-list li {
  list-style-type: none;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 30px;
}

.home-slider .home-item .slider-content .event-list li:last-child {
  margin-right: 0;
}

.home-slider .home-item .slider-content .event-list i {
  margin-right: 5px;
}

.home-slider .home-item .slider-content .slider-btn {
  margin-top: 30px;
}

.home-slider .home-item .slider-content .slider-btn .optional-btn {
  color: #1a1b1e;
}

.home-slider .home-item .slider-content .slider-btn .optional-btn:hover {
  color: #ffffff;
}

.home-slider.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slider.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-size: 35px;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 2px;
  width: 55px;
  height: 55px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
}

.home-slider.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-slider.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
}

.home-slider.owl-theme .owl-nav [class*=owl-]:hover {
  color: #2f8e4e;
}

/*================================================
Bottom Icon Area CSS
=================================================*/
.bottom-icon {
  position: relative;
}

.bottom-icon .down_arrow {
  position: absolute;
  bottom: -45px;
  z-index: 1;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 18px;
  right: 125px;
}

.bottom-icon .down_arrow .scroll_down {
  height: 50px;
  width: 30px;
  border: 2px solid #2f8e4e;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  display: block;
}

.bottom-icon .down_arrow .scroll_down::before {
  position: absolute;
  top: 30px;
  left: 51%;
  content: '';
  width: 4px;
  height: 15px;
  margin-left: -3px;
  background-color: #2f8e4e;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*================================================
partner Area CSS
=================================================*/
.partner-slider{
  border: 1px solid #efefef;
          padding-bottom: 30px;
          margin-top: 30px;
          -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.04);}
.partner-section .section-title {
  margin-bottom: 10px;
}

.partner-slider .partner-item {
  position: relative;
  margin-bottom: 30px;
/*  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.07);*/
  background-color: #ffffff;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

.partner-slider .partner-item .image {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-slider .partner-item .image span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #2f8e4e;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
  bottom: -18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-slider .partner-item .content {
  text-align: center;
}

.partner-slider .partner-item .content h3 {
  font-size: 20px;
  margin: 30px 0 10px 0;
}

.partner-slider .partner-item .content p {
  margin-bottom: 0;
}

.partner-slider .partner-item .partner-list {
  padding-left: 0;
  margin-top: 18px;
  margin-bottom: 0;
  border: 1px solid #dcdcdc;
  padding: 16px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-slider .partner-item .partner-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
  font-size: 15px;
  color: #2f8e4e;
  font-weight: 500;
}

.partner-slider .partner-item .partner-list li::before {
  position: absolute;
  right: -18px;
  top: 0;
  width: 1px;
  content: '';
  height: 100%;
  background-color: #dcdcdc;
}

.partner-slider .partner-item .partner-list li:last-child {
  margin-right: 0;
}

.partner-slider .partner-item .partner-list li:last-child::before {
  display: none;
}

.partner-slider .partner-item .partner-list span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1b1e;
}

.partner-slider .partner-item .partner-donate {
  margin-top: 50px;
  text-align: center;
}

.partner-slider .partner-item .partner-donate .donate-one {
  display: inline-block;
  padding: 10px 60px;
  background-color: #087c1b;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.partner-slider .partner-item .partner-donate .donate-one:hover {
  background-color: #1a1b1e;
}

.partner-slider .partner-item .partner-donate .donate-two {
  display: inline-block;
  padding: 10px 60px;
  background-color: #2f8e4e;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.partner-slider .partner-item .partner-donate .donate-two:hover {
  background-color: #1a1b1e;
}

.partner-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #2f8e4e;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: none;
}

.partner-slider.owl-theme .owl-dots .owl-dot:hover span, .partner-slider.owl-theme .owl-dots .owl-dot.active span {
  width: 20px;
  border-radius: 5px;
  background-color: #bdbdbd;
}

.partner-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  line-height: 1;
}

/*================================================
About Area CSS
=================================================*/
.about-section {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 50px 0
}

.about-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
/*  background: #262626;*/
  opacity: .90;
}

.about-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100px;
  background: #ffffff;
}

.about-image {
  position: relative;
  z-index: 1;
  text-align: center;

}

.about-image img{
  padding: 10px;
  box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%)
}

.about-image .shape {
  position: absolute;
  top: 0;
  z-index: -1;
  left: -25px;
}

.about-content {
  padding-left: 30px;
}

.about-content span {
  font-size: 16px;
  color: #2f8e4e;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-left: 10px;
  font-weight: 600;
  line-height: 1;
}

.about-content span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #2f8e4e;
  left: -12px;
}

.about-content h4 {
  font-size: 32px;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.about-content .experience-text {
  position: relative;
  padding-left: 65px;
  margin-top: 30px;
}

.about-content .experience-text i {
  position: absolute;
  left: 0;
  font-size: 50px;
  color: #ffffff;
  line-height: 1;
  top: 10px;
}

.about-content .experience-text p {
  margin-bottom: 0;
}

.about-content .experience-text h3 {
  margin: 0;
  font-size: 35px;
}

.about-tab{
  padding-top: 30px
}


.tab .tabs_item {
  display: none;
}

.tab .tabs_item img {
  border: 1px solid #CCC;
}

.tab .tabs_item .text{
  padding-bottom: 20px
}

.tab .tabs_item:first-child {
  display: block;
}

.about-list-tab .tabs {
  padding-left: 0;
  margin-bottom: 25px;
  margin-top: 25px;
}

.about-list-tab .tabs li {
  margin-right: 10px;
  display: inline-block;
}

.about-list-tab .tabs li:last-child {
  margin-right: 0;
}

.about-list-tab .tabs li.current a {
  color: #ffffff;
  background-color: #2f8e4e;
}

.about-list-tab .tabs li a {
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  background-color: #dfdfdf;
  color: #999;
  text-transform: uppercase;
  font-size: 15px;
}

.about-list-tab .tabs li a i {
  font-size: 18px;
  margin-right: 5px;
}

.about-list-tab .tab_content .tabs_item .text h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.about-list-tab .tab_content .tabs_item .list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
}

.about-list-tab .tab_content .tabs_item .list li {
  list-style-type: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  padding-left: 25px;
  color: #444444;
  position: relative;
}

.about-list-tab .tab_content .tabs_item .list li:last-child {
  margin-bottom: 0;
}

.about-list-tab .tab_content .tabs_item .list i {
  color: #ed272a;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  font-weight: 600;
}

/*================================================
Projects Area CSS
=================================================*/
.projects-content {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  position: relative;
  z-index: 1;
  padding: 30px 10px 30px 100px;
  margin-bottom: 30px;
}

.projects-content .image {
  position: absolute;
  left: 25px;
}

.projects-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.projects-content p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.projects-content .learn-btn {
  color: #2f8e4e;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  display: block;
  margin-bottom: -4px;
}

.projects-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 0%;
  background: #2f8e4e;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.projects-content:hover {
  border: 1px solid #2f8e4e;
}

.projects-content:hover::before {
  height: 100%;
}

.projects-content:hover h3 {
  color: #ffffff;
}

.projects-content:hover p {
  color: #ffffff;
}

.projects-content:hover .learn-btn {
  color: #ffffff;
  letter-spacing: 1px;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-image: url(../../assets/img/fun-facts-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.fun-facts-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .77;
}

.fun-facts-content span {
  font-size: 16px;
  color: #2f8e4e;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-left: 10px;
  font-weight: 600;
  line-height: 1;
}

.fun-facts-content span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #2f8e4e;
  left: -12px;
}

.fun-facts-content h3 {
  font-size: 50px;
  margin: 10px 0 0 0;
  color: #ffffff;
}

.fun-facts-content p {
  color: #ffffff;
  margin-top: 25px;
}

.single-fun-fact {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 30px 40px;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact .icon i {
  font-size: 60px;
  color: #2f8e4e;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact h3 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact h3 .sign-icon {
  display: inline-block;
  font-size: 46px;
  margin-left: -12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1a1b1e;
}

.single-fun-fact p {
  line-height: initial;
  margin: 0 0 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 0%;
  background: #2f8e4e;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-fun-fact:hover::before {
  height: 100%;
}

.single-fun-fact:hover .icon i {
  color: #ffffff;
}

.single-fun-fact:hover h3 {
  color: #ffffff;
}

.single-fun-fact:hover h3 .sign-icon {
  color: #ffffff;
}

.single-fun-fact:hover p {
  color: #ffffff;
}

/*================================================
Others Area CSS
=================================================*/
.others-section {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.others-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background-color: #087c1b;
  left: 0;
  top: 0;
}

.others-section::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background-color: #2f8e4e;
  right: 0;
  top: 0;
  z-index: -1;
}

.others-one-content {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.others-one-content h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 0;
}

.others-one-content .others-one-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.others-one-content .others-one-btn a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff;
}

.others-one-content .others-one-btn i {
  margin-left: 5px;
  font-size: 15px;
}

.others-two-content {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.others-two-content h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 0;
}

.others-two-content .others-two-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.others-two-content .others-two-btn a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff;
}

.others-two-content .others-two-btn i {
  margin-left: 5px;
  font-size: 15px;
}

/*================================================
Donate Area CSS
=================================================*/
.donate-area-content {
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  max-width: 765px;
}

.donate-area-content .donate-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.donate-area-content .donate-progress {
  position: relative;
}

.donate-area-content .donate-progress .donate-progress-content {
  margin-top: 18px;
  margin-bottom: 30px;
}

.donate-area-content .donate-progress .donate-progress-content p {
  color: #1a1b1e;
  margin-bottom: 0;
}

.donate-area-content .donate-progress .donate-progress-content span {
  font-size: 15px;
  color: #2f8e4e;
}

.donate-area-content .donate-progress .donate-progress-content .text-right {
  text-align: right !important;
  position: absolute;
  right: 0;
  bottom: 28px;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}

.donate-area-content .donate-progress .slidecontainer .slider-color {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #e6e6e6;
  outline: none;
  opacity: 0.7;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  border-radius: 30px;
}

.donate-area-content .donate-progress .bar::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 50%;
  background-color: #2f8e4e;
  bottom: -20px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.donate-area-content .donate-progress .bar::after {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  background-color: #2f8e4e;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
}

.donate-area-content label {
  margin-bottom: 0;
  margin-top: 20px;
  margin-right: 20px;
  font-family: "Montserrat", sans-serif;
  color: #2f8e4e;
}

.donate-area-content label:last-child {
  margin-right: 0;
}

.donate-area-content .donate-check span {
  color: #2f8e4e;
}

.donate-area-content .donate-form {
  margin-top: 25px;
}

.donate-area-content .donate-form .form-group {
  margin-bottom: 30px;
}

.donate-area-content .donate-form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 55px;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #2f8e4e;
}

.donate-area-content .donate-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #2f8e4e;
}

.donate-area-content .donate-form .send-btn .default-btn {
  border: 1px solid #2f8e4e;
  padding: 16px 40px;
}

.target-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  margin-bottom: 0;
  border-radius: 50%;
}

.target-bar .progress-number-mark {
  margin-bottom: 4px;
  border-radius: 3px;
  background-color: #2f8e4e;
  padding: 0 8px;
  position: absolute;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 0 !important;
}

.target-bar .down-arrow {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #2f8e4e;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
}

.target-bar .progress-content-outter {
  height: 6px;
  background-color: #eeeeee;
  border-radius: 0;
  border-radius: 50px;
}

.target-bar .progress-content {
  height: 6px;
  background-color: #2f8e4e;
  border-radius: 50px;
  width: 0%;
}

.target-bar .percent {
  margin-bottom: 0 !important;
  color: #ffffff !important;
}

.single-check {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.single-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.single-check input:checked ~ .checkmark {
  background-color: #2f8e4e;
}

.single-check input:checked ~ .checkmark:after {
  display: block;
}

.single-check:hover input ~ .checkmark {
  background-color: #2f8e4e;
}

.single-check .checkmark {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-check .checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #d8d8d8;
  border-radius: 50%;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/*================================================
Team Area CSS
=================================================*/
.team-title {
  text-align: center;
  margin-bottom: 40px;
  max-width: 400px;
  margin: 0 auto 0;
}

.team-item {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
}



.team-item .image {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.team-item .image img{
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-item .image:hover img{
  transform: scale(1.02);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.8
}

.team-item .image .social {
  position: absolute;
  top: 50px;
  right: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-item .image .social li {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: perspective(1000px) rotateY(90deg);
          transform: perspective(1000px) rotateY(90deg);
  margin-bottom: 8px;
}

.team-item .image .social li:last-child {
  margin-bottom: 0;
}

.team-item .image .social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  font-size: 16px;
  color: #2f8e4e;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-item .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.team-item .image .social li a:hover {
  color: #ffffff;
  background-color: #2f8e4e;
}

.team-item .image .social li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.team-item .image .social li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.team-item .image .social li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.team-item .image .social li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.team-item .image .content {
  background: #2f8e4e;
  -webkit-box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 1px 20px 30px rgba(0, 0, 0, 0.07);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  text-align: center;
  padding: 20px;
}

.team-item .image .content h3 {
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
}

.team-item .image .content span {
  display: block;
  color: #fff;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-item:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-item:hover .image .content {
  background-color: #2f8e4e;
}

.team-item:hover .image .content h3 {
  color: #ffffff;
}

.team-item:hover .image .content span {
  color: #ffffff;
}

.team-item .popup {
    display: none;
    position: fixed;
    padding: 25px;
    max-width: 650px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    z-index: 20;
  }

  .team-item .popup img{
    max-width: 300px
  }

  .team-item .popup:after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    z-index: -2;
    transform: scale(100);
  }

  .team-item .popup:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    z-index: -1;
    }

    .team-item .popup p{
      padding-bottom: 5px!important;
      margin-bottom: 0;
      line-height: normal;
      font-size: 12px
    }
      .team-item .popup p strong{
        font-size: 14px;
      }

     .team-item .popup h3{
      padding-top: 20px;
      color: #2f8e4e
     }

     .team-item .popup .closebtn{
      position: absolute;
      right: 5px;
      top: -3px;
      font-size: 28px
     }

/*================================================
Events Area CSS
=================================================*/
.events-slider .events-item {
  padding: 10px;
}

.events-slider .events-item .content {
  -webkit-box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
          box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
  background-color: #ffffff;
  padding: 30px 30px 30px 30px;
  position: relative;
  border: 1px solid #e9e9e9;
}

.events-slider .events-item .content .text {
  background-color: #2f8e4e;
  padding: 15px;
  display: inline-block;
  text-align: center;
  -webkit-clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
  margin-bottom: 0;
  position: absolute;
  left: 24px;
  top: 20px;
}

.events-slider .events-item .content .text h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  font-weight: 500;
  color: #ffffff;
}

.events-slider .events-item .content .text span {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.events-slider .events-item .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.events-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #2f8e4e;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: none;
}

.events-slider.owl-theme .owl-dots .owl-dot:hover span, .events-slider.owl-theme .owl-dots .owl-dot.active span {
  width: 20px;
  border-radius: 5px;
  background-color: #bdbdbd;
}

.events-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  line-height: 1;
}


.events-section{
  background: #fff;
  padding: 50px 0
}

section#themeareas{
  background: #f1f1f1;
  padding: 50px 0
}
/*================================================
Faq Area CSS
=================================================*/
.service-section {
  background: #fff;
  position: relative;
  z-index: 1;
}

.faq-accordion {
  max-width: 660px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: #ffffff;
  margin-bottom: 10px;
  position: relative;
  border-left: 2px solid #2f8e4e;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 30px 20px 30px;
  color: #1a1b1e;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 30px;
  bottom: 25px;
  font-size: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  background-color: #cecece;
  color: #ffffff;
  text-align: center;
  border-radius: 30px;
}

.faq-accordion .accordion .accordion-title.active {
  color: #1a1b1e;
}

.faq-accordion .accordion .accordion-title.active i {
  background-color: #2f8e4e;
  color: #ffffff;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}

.faq-accordion .accordion .accordion-title.active .accordion-item {
  background-color: #ffffff;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding-top: 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-item {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  margin-bottom: 30px;
}

.blog-item .image {
  position: relative;
}

.blog-item .image img {
  width: 100%;
}

.blog-item.kbanklist{
  border: 1px solid #CCC;
}

.blog-item.kbanklist .image{
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.blog-item .image .btn {
  background-color: #2f8e4e;
  display: inline-block;
  position: absolute;
  right: 14px;
  bottom: 0;
  border-radius: 0;
  padding: 8px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
}

.blog-item .image .btn a {
  color: #ffffff;
}

.blog-item .content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 25px;
}

.blog-item .content h3 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500
}

.blog-item .content h3 a {
  color: #1a1b1e;
}

.blog-item .content p {
  margin-bottom: 0;
}

.blog-item .content .read-more {
  font-size: 15px;
  display: inline-block;
  color: #2f8e4e;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-item .content .read-more i {
  font-size: 14px;
  margin-left: 5px;
}

.post-meta {
  padding-left: 0;
  margin-bottom: 10px;
}

.post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 15px;
  color: #767676;
  margin-right: 20px;
  font-weight: 400;
}

.post-meta li:last-child {
  margin-right: 0;
}

 .post-meta a {
  color: #767676;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-meta i {
  color: #2f8e4e;
  margin-right: 5px;
}

.blog-item:hover .content h3 a {
  color: #2f8e4e;
}

.blog-item:hover .content .read-more {
  color: #2f8e4e;
  letter-spacing: 1px;
}

.blog-item:hover .image .btn {
  right: 0;
  background-color: #ffffff;
}

.blog-item:hover .image .btn a {
  color: #2f8e4e;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-section {
  background: #f1f1f1;
  position: relative;
  z-index: 1;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background-color: #ffffff;
}

.subscribe-area {
  -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.07);
  padding: 40px;
  background-color: #ffffff;
  margin-bottom: 50px;
  position: relative;
}

.subscribe-area .subscribe-content h2 {
  font-size: 28px;
  margin-bottom: 0;
  line-height: 1.4;
}

.subscribe-area .newsletter-form {
  max-width: 580px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-area .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #e8ffec;
  border: none;
  height: 70px;
  padding-left: 25px;
  outline: 0;
  color: #1a1b1e;
}

.subscribe-area .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #666666;
}

.subscribe-area .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #666666;
}

.subscribe-area .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #666666;
}

.subscribe-area .newsletter-form .input-newsletter::placeholder {
  color: #666666;
}

.subscribe-area .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #2f8e4e;
  color: #ffffff;
  border: none;
  height: 62px;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.subscribe-area .newsletter-form button:hover {
  background-color: #1a1b1e;
  color: #ffffff;
}

.subscribe-area .newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 16px;
  font-weight: 500;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
  position: relative;
}

.single-footer-widget .footer-contact-info li {
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
  color: #2f8e4e;
  padding-left: 30px;
  margin-bottom: 16px;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info a {
  color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info a:hover {
  color: #000;
}

.single-footer-widget .footer-contact-info i {
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #2f8e4e;
  line-height: unset;
}

.single-footer-widget .logo img {
  max-width: 340px;
  padding-bottom: 20px
}

.single-footer-widget h3 {
  position: relative;
  margin-left: 10px;
  font-size: 25px;
  color: #2f8e4e;
  margin-bottom: 30px;
}

.single-footer-widget h3::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #2f8e4e;
  left: -12px;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .quick-links li {
  list-style-type: none;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .quick-links li a {
  color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget.head .quick-links li a {
  color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 10px 0;
  border-bottom: 1px dotted #CCC;
  display: block;
  font-size: 14px
}

.single-footer-widget .quick-links li i {
  font-size: 18px;
  color: #2f8e4e;
  margin-right: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .quick-links li:hover a {
  color: #000;
}

.single-footer-widget .quick-links li:hover i {
  color: #000;
}

.single-footer-widget .gallery {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .gallery li {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.single-footer-widget .gallery li img {
  max-width: 70px;
}

/*================================================
Footer Bottom Area CSS
=================================================*/
.footer-bottom {
  background-color: #2d2e31;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-bottom-text p {
  color: #ffffff;
  font-size: 15px;
}

.footer-bottom-text p span {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom-text p a {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-bottom-text p a:hover {
  color: #2f8e4e;
  border-bottom: 1px solid #2f8e4e;
}

.footer-bottom-social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  line-height: 1;
}

.footer-bottom-social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom-social li:last-child {
  margin-right: 0;
}

.footer-bottom-social li.yt img{
  position: absolute;
  top: 5px;
  left: 7px
}

.footer-bottom-social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: transparent;
  text-align: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #414246;
}

.footer-bottom-social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-social li a:hover {
  color: #ffffff;
  background-color: #2f8e4e;
  border: 1px solid #2f8e4e;
}

/*================================================
Modal Area CSS
=================================================*/
.contactModal .modal-dialog {
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.contactModal .modal-dialog .modal-content {
  padding: 50px;
  border-radius: 0;
  border: none;
  position: relative;
}

.contactModal .modal-dialog .modal-content::before {
  left: 0;
  right: 0;
  height: 20px;
  content: '';
  position: absolute;
  background: #f4f4f4;
  bottom: -16px;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.02);
  border-radius: 0 0 5px 5px;
  margin-left: 15px;
  margin-right: 15px;
  z-index: -1;
}

.contactModal .modal-dialog .modal-content button.close {
  position: absolute;
  right: 1px;
  top: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #eeeeee;
  border-top: none;
  border-right: none;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1a1b1e;
  margin: 0;
  text-shadow: unset;
  float: unset;
  line-height: 30px;
}

.contactModal .modal-dialog .modal-content button.close:hover {
  background-color: #2f8e4e;
  border-color: #2f8e4e;
  color: #ffffff;
}

.contactModal .modal-dialog .modal-content form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.contactModal .modal-dialog .modal-content form .help-block ul li {
  display: block;
  color: red;
  font-size: 16px;
}

.contactModal .modal-dialog .modal-content form #msgSubmit {
  margin: 0;
}

.contactModal .modal-dialog .modal-content form #msgSubmit.text-danger, .contactModal .modal-dialog .modal-content form #msgSubmit.text-success {
  margin-top: 10px;
}

.contactModal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.contactModal .modal-dialog .modal-content .modal-body #contactForm .form-group .form-control {
  height: 55px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1a1b1e;
  background-color: transparent;
  border: 1px solid #e5e0e0;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.contactModal .modal-dialog .modal-content .modal-body #contactForm .form-group textarea.form-control {
  height: 120px !important;
  padding: 15px;
}

.contactModal .modal-dialog .modal-content .modal-body #contactForm .default-btn {
  border: 1px solid #2f8e4e;
}

/*==============================
Sidebar Eaxmple Demo CSS
==============================*/
.demo-modal-panel {
  position: fixed;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  z-index: 99998;
}

.demo-modal-panel .sidebar-demo-control {
  display: inline-block;
  border: none;
  background-color: #2f8e4e;
  color: #ffffff;
  padding: 0 0;
  letter-spacing: 1px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0 25px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 0 25px;
  padding: 12px 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px 0 0 5px;
  font-weight: 600;
  font-size: 13px;
}

.demo-modal-panel .sidebar-demo-control span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding-left: 5px;
  padding-right: 5px;
}

.demo-modal-panel .sidebar-demo-control:hover {
  color: #1a1b1e;
  background-color: #ffffff;
}

.example-demo-modal {
  position: fixed;
  overflow: hidden;
  right: 0;
  top: 0;
  z-index: 99999;
  -webkit-transition: .9s;
  transition: .9s;
  opacity: 0;
  visibility: hidden;
  border-left: 1px solid #eeeeee;
  right: -100%;
}

.example-demo-modal .inner {
  width: 550px;
  height: 100vh;
  overflow-y: scroll;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
          box-shadow: 0 0 30px 0 rgba(67, 67, 67, 0.15);
  padding: 90px 20px 30px 20px;
  -ms-overflow-style: none;
}

.example-demo-modal .inner::-webkit-scrollbar {
  display: none;
}

.example-demo-modal .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.example-demo-modal .inner ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}

.example-demo-modal .inner ul li .single-demo {
  position: relative;
  text-align: center;
  border-radius: 5px;
}

.example-demo-modal .inner ul li .single-demo img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: 3px solid #ffffff;
}

.example-demo-modal .inner ul li .single-demo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
}

.example-demo-modal .inner ul li .single-demo span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}

.example-demo-modal .inner ul li .single-demo .link-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 3;
}

.example-demo-modal .inner ul li .single-demo:hover::before {
  opacity: 1;
  visibility: visible;
}

.example-demo-modal .inner ul li .single-demo:hover span {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.example-demo-modal .header-title {
  position: absolute;
  background-color: #ffffff;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 5;
  border-bottom: 1px solid #eeeeee;
  padding-top: 18px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
}

.example-demo-modal .header-title .example-demo-modal-control {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 20px;
  color: #1a1b1e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: transparent;
  border: none;
  padding: 0;
  display: inline-block;
}

.example-demo-modal .header-title .example-demo-modal-control:hover {
  color: #2f8e4e;
}

.example-demo-modal .header-title .title {
  color: #1a1b1e;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.example-demo-modal.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 15px;
  color: #ffffff;
  background-color: #2f8e4e;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  border-radius: 50%;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #1a1b1e;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 

/*
Page Title Area Style
=====================================================*/
.page-title-area {
  position: relative;
  padding-top: 220px;
  padding-bottom: 100px;
  text-align: center;
  z-index: 1;
  background-image: url(../../assets/img/innerbg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-title-area .page-title-content h2 {
  margin-bottom: 15px;
  color: #eee;
  font-size: 35px;
  font-weight: 700;
}

.page-title-area .page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.page-title-area .page-title-content ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-right: 15px;
  padding-left: 15px;
  color: #ffffff;
}

.page-title-area .page-title-content ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  background-color: #2f8e4e;
  width: 10px;
  height: 10px;
}

.page-title-area .page-title-content ul li:last-child::before {
  display: none;
}

.page-title-area .page-title-content ul li a {
  color: #fff;
}

.page-title-area .page-title-content ul li a:hover {
  color: #2f8e4e;
}

.page-title-area .page-title-content ul .active {
  color: #2f8e4e;
}

/*
Testimonials Area Style
======================================================*/
.testimonials-sections .testimonials-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
}

/*
Page-navigation Area Style
======================================================*/

.page-link{
  padding: 0.5rem .75rem
}
.page-navigation-area {
  text-align: center;
  margin: 20px auto 0;
  display: table;
}

.page-navigation-area .pagination {
  margin-bottom: 0;
}

.page-navigation-area .page-link {
  color: #2f8e4e;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.07);
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  line-height: 22px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 700;
  border-radius: 10px !important;
}

.page-navigation-area .page-link i {
  margin-right: -4px;
  font-size: 21px;
}

.page-navigation-area .page-link:hover {
  color: #ffffff;
  background-color: #2f8e4e;
  border: 1px solid #2f8e4e;
}

.page-navigation-area .page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-navigation-area .page-link.page-links i::before {
  margin-left: -4px;
}

.page-navigation-area .page-item {
  padding: 0 8px 0;
}

.page-navigation-area .page-item:first-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item:last-child .page-link {
  border-radius: none;
}

.page-navigation-area .page-item.active .page-link {
  z-index: 1;
  color: #ffffff;
  background-color: #2f8e4e;
  border-color: #2f8e4e;
}

/*
FAQ Contact Area Style
======================================================*/
.faq-contact-area .section-title h2 {
  margin-top: 0;
}

.faq-contact-area #contactForm {
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background-color: #ffffff;
  padding: 50px;
}

.faq-contact-area #contactForm .form-group {
  margin-bottom: 30px;
}

.faq-contact-area #contactForm .form-group .form-control {
  border-radius: 0;
  height: 60px;
  padding: 10px 15px;
  font-size: 14px;
}

.faq-contact-area #contactForm .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #2f8e4e;
}

.faq-contact-area #contactForm .form-group .form-control.hight-unset {
  height: unset;
}

.faq-contact-area #contactForm .default-btn {
  margin: 0 auto -8px;
  display: table;
}

.faq-contact-area #contactForm .text-danger {
  text-align: center;
  margin: 20px auto 0;
  display: table;
  color: #dc3545;
}

.faq-contact-area #contactForm .text-success {
  color: #28a745;
}

.faq-contact-area #contactForm .hidden {
  display: none;
}

.faq-contact-area #contactForm .list-unstyled {
  margin-top: 10px;
  color: #dc3545;
  font-size: 14px;
  margin-bottom: 0;
}

.terms-conditions ul li {
  margin-bottom: 20px;
}

/*
Sign In & Log In  Area Style
=====================================================*/
.user-area-all-style {
  position: relative;
  z-index: 1;
}

.user-area-all-style .section-title h2 {
  margin-top: 0;
}

.user-area-all-style .contact-form-action {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 40px;
  margin: auto;
  max-width: 570px;
}

.user-area-all-style .contact-form-action form .submit-btn {
  margin-top: 24px;
}

.user-area-all-style .contact-form-action form .default-btn {
  font-size: 14px;
  padding: 15px 40px;
  margin-bottom: 30px;
  border: none;
}

.user-area-all-style .contact-form-action form .default-btn.btn-two {
  display: table;
  margin: 0 auto 0;
  padding: 15px 40px;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(1) .default-btn {
  background-color: #db4a39;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(1) .default-btn:hover {
  color: #1a1b1e;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(2) .default-btn {
  background-color: #3b5998;
  display: table;
  margin: 0 auto 30px;
}

.user-area-all-style .contact-form-action form .col-lg-4:nth-child(3) .default-btn {
  background-color: #00acee;
  float: right;
}

.user-area-all-style .contact-form-action form .reset-btn {
  margin-top: 0;
}

.user-area-all-style .contact-form-action form .form-condition {
  margin-bottom: 20px;
}

.user-area-all-style .contact-form-action form .form-condition .agree-label {
  font-weight: 600;
}

.user-area-all-style .contact-form-action form .form-condition .agree-label a {
  color: #2f8e4e;
}

.user-area-all-style .contact-form-action form .form-group {
  margin-bottom: 30px;
}

.user-area-all-style .contact-form-action form .form-group .form-control {
  border-radius: 0;
  height: 60px;
  padding: 10px 15px;
  font-size: 14px;
}

.user-area-all-style .contact-form-action form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #2f8e4e;
}

.user-area-all-style .contact-form-action form .form-group .form-control.hight-unset {
  height: unset;
}

.user-area-all-style .contact-form-action .account-desc {
  margin: 25px auto 0;
  display: table;
  font-weight: 600;
}

.user-area-all-style .contact-form-action .account-desc a {
  color: #2f8e4e;
  margin-left: 10px;
  font-weight: 600;
}

.user-area-all-style .contact-form-action #chb1 {
  position: relative;
  top: 2px;
  margin-right: 4px;
}

.user-area-all-style .contact-form-action #chb2 {
  position: relative;
  top: 2px;
  margin-right: 4px;
}

.user-area-all-style .contact-form-action .forget {
  float: right;
  color: #2f8e4e;
  font-weight: 600;
}

.user-area-all-style .contact-form-action .now-register {
  font-weight: 600;
  float: right;
  margin-bottom: 30px;
}

.user-area-all-style .contact-form-action .now-register a {
  color: #2f8e4e;
}

.user-area-all-style .contact-form-action .now-log-in {
  color: #2f8e4e;
  font-weight: 500;
}

.user-area-all-style .contact-form-action .now-log-in .font-q {
  font-weight: 500;
}

.user-area-all-style .contact-form-action label {
  font-weight: 500;
}

.recover-password-area .contact-form-action {
  max-width: 570px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.recover-password-area .contact-form-action .form-heading h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.recover-password-area .contact-form-action .form-heading p {
  margin-bottom: 30px;
}

/* 
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.coming-soon-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1b1e;
  opacity: 0.5;
}

.coming-soon-area .coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  -webkit-clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
          clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
  background-color: #fef4f8;
  padding: 70px 30px;
}

.coming-soon-area .coming-soon-content h1 {
  margin-bottom: 0;
  color: #1a1b1e;
  font-size: 60px;
  margin-top: -18px;
}

.coming-soon-area .coming-soon-content p {
  font-size: 16px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 30px;
}

.coming-soon-area .coming-soon-content #timer div {
  display: inline-block;
  color: #1a1b1e;
  position: relative;
  margin-left: 35px;
  margin-right: 35px;
  font-size: 45px;
  font-weight: 700;
}

.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -15px;
  font-size: 16px;
  font-weight: normal;
}

.coming-soon-area .coming-soon-content #timer div:last-child {
  margin-right: 0;
}

.coming-soon-area .coming-soon-content #timer div:last-child::before {
  display: none;
}

.coming-soon-area .coming-soon-content #timer div:first-child {
  margin-left: 0;
}

.coming-soon-area .coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  padding-left: 15px;
  color: #ffffff;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #1a1b1e;
  color: #1a1b1e;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: #2f8e4e;
}

.coming-soon-area .coming-soon-content .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  outline: 0;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}

.coming-soon-area .coming-soon-content .newsletter-form button::after {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button::before {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button:hover {
  color: #ffffff;
  background-color: #2f8e4e;
}

.coming-soon-area .coming-soon-content .newsletter-form #validator-newsletter {
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0 auto;
}

.coming-soon-area .coming-soon-content ul {
  margin-top: 30px;
}

.coming-soon-area .coming-soon-content ul li {
  display: inline-block;
  margin: 0 5px;
}

.coming-soon-area .coming-soon-content ul li a {
  width: 30px;
  height: 30px;
  line-height: 36px;
  background-color: #2f8e4e;
  border-radius: 50%;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-area .coming-soon-content ul li a i {
  font-size: 18px;
}

.coming-soon-area .coming-soon-content ul li a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.coming-soon-area #validator-newsletter {
  text-align: left;
  color: #dc3545 !important;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
  padding: 50px 0;
  height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}

.error-area .error-content-wrap h1 {
  font-size: 300px;
  line-height: 1;
  color: #1a1b1e;
}

.error-area .error-content-wrap h1 .a {
  -webkit-animation: bounce 3s infinite linear;
          animation: bounce 3s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h1 .red {
  color: #ff0000;
  -webkit-animation: bounce 2s infinite linear;
          animation: bounce 2s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h1 .b {
  -webkit-animation: bounce 3s infinite linear;
          animation: bounce 3s infinite linear;
  display: inline-block;
}

.error-area .error-content-wrap h3 {
  margin: 30px 0 0;
  position: relative;
  color: #ff0000;
}

.error-area .error-content-wrap p {
  margin: 20px 0 20px;
  font-size: 19px;
  color: #1a1b1e;
}

/*
Events Area CSS
=================================================*/
.events-slider .events-item {
  padding: 8px;
}

.events-slider .events-item p{
  font-weight: 500;
  line-height: normal;
}
.events-slider .events-item .content {
  -webkit-box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%)
          box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%)
  background-color: #ffffff;
  padding: 30px 30px 30px 30px;
  position: relative;
}

.events-item .image, .blog-item .image{
  overflow: hidden;
}

.events-item .image img, .blog-item .image img{
  transition: transform .8s; 
}

.events-item:hover .image img, .blog-item:hover .image img{
  transform: scale(1.1);
}

.events-slider .events-item .content .text {
  background-color: #2f8e4e;
  padding: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 0 20px 0 0;
  margin-bottom: 0;
  position: absolute;
  left: 24px;
  top: 20px;
  -webkit-clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}

.events-slider .events-item .content .text h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  font-weight: 500;
  color: #ffffff;
}

.events-slider .events-item .content .text span {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.events-slider .events-item .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.events-slider .events-item .image {
  position: relative;
}

.events-slider .events-item .image .join-campaign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.events-slider .events-item .image .join-campaign a {
  color: #ffffff;
  text-transform: uppercase;
}

.events-slider .events-item .image .join-campaign a:hover {
  color: #2f8e4e;
}

.events-slider .events-item:hover .image .join-campaign {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.events-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #2f8e4e;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
/*  border-radius: 50%;*/
  border: none;
}

.owl-theme .owl-dots .owl-dot span{
  border-radius: 0
}

.events-slider.owl-theme .owl-dots .owl-dot:hover span, .events-slider.owl-theme .owl-dots .owl-dot.active span {
  width: 20px;
  border-radius: 5px;
  background-color: #bdbdbd;
}

.events-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  line-height: 1;
}



/*
success story Area CSS
=================================================*/
.story-section{
  background: #f1f1f1
}

.sstory-slider .events-item {
  padding: 8px;
}

.sstory-slider .events-item p{
  font-weight: 500;
  line-height: normal;
}
.sstory-slider .events-item .content {
  -webkit-box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%)
          box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%)
  background-color: #ffffff;
  padding: 30px 30px 30px 30px;
  position: relative;
  border:1px solid #e9e9e9;
}

.events-item .image{
  overflow: hidden;
}

.events-item .image img{
  transition: transform .8s; 
}

.events-item:hover .image img{
  transform: scale(1.1);
}

.sstory-slider .events-item .content .text {
  background-color: #2f8e4e;
  padding: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 0 20px 0 0;
  margin-bottom: 0;
  position: absolute;
  left: 24px;
  top: 20px;
  -webkit-clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}

.sstory-slider .events-item .content .text h3 {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  font-weight: 500;
  color: #ffffff;
}

.sstory-slider .events-item .content .text span {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

.sstory-slider .events-item .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.sstory-slider .events-item .image {
  position: relative;
}

.sstory-slider .events-item .image .join-campaign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.sstory-slider .events-item .image .join-campaign a {
  color: #ffffff;
  text-transform: uppercase;
}

.sstory-slider .events-item .image .join-campaign a:hover {
  color: #2f8e4e;
}

.sstory-slider .events-item:hover .image .join-campaign {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.sstory-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #2f8e4e;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: none;
}


.sstory-slider.owl-theme .owl-dots .owl-dot:hover span, .sstory-slider.owl-theme .owl-dots .owl-dot.active span {
  width: 20px;
  border-radius: 5px;
  background-color: #bdbdbd;
}

.sstory-slider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  line-height: 1;
}


.sstory-slider .events-item .content {
  -webkit-box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
          box-shadow: 0 0 1.25rem rgb(108 118 134 / 10%);
  background-color: #ffffff;
  padding: 30px 30px 30px 30px;
  position: relative;
}

/*
Blog Details Area Style
=====================================================*/
.blog-details-area {
  /*
	Sidebar Widget Area Style
	================================*/
}

.blog-details-area .blog-details-desc .article-content {
  margin-top: 0;
  margin-bottom: 30px;
}

.blog-details-area .blog-details-desc .article-content .article-image {
  margin-bottom: 30px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: #2f8e4e;
  margin-right: 21px;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: #2f8e4e;
  font-weight: 500;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: #666666;
  font-size: 13px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li a:hover {
  color: #2f8e4e;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li i {
  color: #2f8e4e;
  margin-right: 2px;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: #2f8e4e;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-area .blog-details-desc .article-content h3 {
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 30px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: #2f8e4e;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: #666666;
  font-weight: 600;
}

.blog-details-area .blog-details-desc .article-footer .article-tags a:hover {
  color: #2f8e4e;
}

.blog-details-area .blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: #666666;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: #ffffff;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  background-color: #2f8e4e;
  text-align: center;
  font-size: 14px;
}

.blog-details-area .blog-details-desc .article-footer .article-share .social li a:hover {
  -webkit-animation: rubberBand 1s linear;
          animation: rubberBand 1s linear;
}

.blog-details-area .blog-details-desc .post-navigation {
  margin-top: 30px;
}

.blog-details-area blockquote {
  overflow: hidden;
  background-color: #f7f7f7;
  padding: 50px !important;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 4px;
}

.blog-details-area blockquote p {
  color: #1a1b1e;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 17px !important;
  text-align: left;
}

.blog-details-area blockquote cite {
  display: none;
}

.blog-details-area blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #2f8e4e;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-area .post-navigation {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog-details-area .post-navigation .navigation-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-details-area .post-navigation .navigation-links .nav-previous {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-area .post-navigation .navigation-links .nav-previous a i {
  margin-right: 0;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.blog-details-area .post-navigation .navigation-links .nav-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.blog-details-area .post-navigation .navigation-links .nav-next a i {
  margin-left: 0;
  font-size: 20px;
  position: relative;
  top: 4px;
}

.blog-details-area .post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 600;
  color: #1a1b1e;
}

.blog-details-area .post-navigation .navigation-links div a:hover {
  color: #2f8e4e;
}

.blog-details-area .comments-area {
  padding: 0;
  margin-top: 30px;
}

.blog-details-area .comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 22px;
}

.blog-details-area .comments-area ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .comments-area .children {
  margin-left: 40px;
}

.blog-details-area .comments-area .comment-body {
  border-bottom: 1px solid #eeeeee;
  padding-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-details-area .comments-area .comment-body.border-none {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-details-area .comments-area .comment-body .reply {
  margin-top: 15px;
}

.blog-details-area .comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: #1a1b1e;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
}

.blog-details-area .comments-area .comment-body .reply a:hover {
  color: #ffffff;
  background-color: #2f8e4e;
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-meta {
  margin-bottom: .8em;
}

.blog-details-area .comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.blog-details-area .comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50%;
}

.blog-details-area .comments-area .comment-author .fn {
  font-weight: 500;
  color: #1a1b1e;
  font-size: 16px;
}

.blog-details-area .comments-area .comment-author .says {
  display: none;
}

.blog-details-area .comments-area .comment-metadata {
  color: #666666;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.blog-details-area .comments-area .comment-metadata a {
  color: #666666;
  font-size: 11px;
}

.blog-details-area .comments-area .comment-metadata a:hover {
  color: #2f8e4e;
}

.blog-details-area .comments-area .comment-content p {
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond {
  margin-top: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 30px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title {
  margin-bottom: 15px;
  font-size: 22px;
}

.blog-details-area .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.blog-details-area .comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.blog-details-area .comments-area .comment-respond .comment-form-comment {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: #1a1b1e;
  margin-bottom: 5px;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="datetime-local"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="week"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="week"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="month"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="month"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="text"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="text"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="email"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="email"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="url"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="url"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="password"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="password"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="search"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="search"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="tel"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="tel"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond input[type="number"] {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond input[type="number"]:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .comments-area .comment-respond textarea:focus {
  border-color: #2f8e4e;
}

.blog-details-area .comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #666666;
  font-weight: normal;
}

.blog-details-area .comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.blog-details-area .comments-area .comment-respond .form-submit input {
  background: #2f8e4e;
  border: none;
  color: #ffffff;
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.blog-details-area .comments-area .comment-respond .form-submit input:hover {
  color: #ffffff;
  background-color: #1a1b1e;
}

.blog-details-area .comments-area .comment-respond .form-submit input:focus {
  color: #ffffff;
  background-color: #2f8e4e;
}

.blog-details-area .related-posts {
  margin-bottom: 20px !important;
  font-size: 25px !important;
}

.blog-details-area .b-d-s-item {
  position: relative;
  margin-bottom: 0;
}

.blog-details-area .b-d-s-item img {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  margin-bottom: 10px;
}

.blog-details-area .b-d-s-item .s-date {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  padding: 10px 24px;
  line-height: 1.5;
  display: inline-block;
}

.blog-details-area .b-d-s-item h3 {
  margin-bottom: 10px !important;
  font-size: 20px !important;
  margin-bottom: 0 !important;
}

.blog-details-area .b-d-s-item p {
  margin-bottom: 12px;
  margin-top: 10px;
}

.blog-details-area .widget-area .widget {
  margin-top: 35px;
}

.blog-details-area .widget-area .widget .post-wrap {
  padding-top: 20px;
}

.blog-details-area .widget-area .widget:first-child {
  margin-top: 0;
}

.blog-details-area .widget-area .widget .widget-title {
  text-transform: capitalize;
  position: relative;
  font-size: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  color: #1a1b1e;
  position: relative;
}

.blog-details-area .widget-area .widget_search form {
  position: relative;
}

.blog-details-area .widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_search form .screen-reader-text {
  display: none;
}

.blog-details-area .widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-area .widget-area .widget_search form .search-field:focus {
  border-color: #2f8e4e;
}

.blog-details-area .widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: #ffffff;
  background-color: #2f8e4e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.blog-details-area .widget-area .widget_search form button:hover {
  background-color: #1a1b1e;
}

.blog-details-area .widget-area .widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #1a1b1e;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog-details/popular-posts-1.png);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog-details/popular-posts-2.png);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog-details/popular-posts-3.png);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/img/blog-details/popular-posts-4.png);
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info {
  overflow: hidden;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #474c40;
}

.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a:hover {
  color: #2f8e4e;
}

.blog-details-area .widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: #666666;
  padding-left: 17px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-area .widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_recent_entries ul li::before {
  background: #2f8e4e;
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.blog-details-area .widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.blog-details-area .widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_categories ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-details-area .widget-area .widget_categories ul li::before {
  background: #2f8e4e;
  position: absolute;
  height: 10px;
  width: 10px;
  content: '';
  left: 0;
  top: 6px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-details-area .widget-area .widget_categories ul li a {
  display: block;
  color: #666666;
  font-weight: normal;
  font-size: 14px;
}

.blog-details-area .widget-area .widget_categories ul li a span {
  float: right;
  font-size: 13px;
}

.blog-details-area .widget-area .widget_categories ul li a:hover {
  color: #2f8e4e;
}

.blog-details-area .widget-area .widget_categories ul li .post-count {
  float: right;
}

.blog-details-area .widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.blog-details-area .widget-area .widget_meta ul li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666666;
  padding-left: 17px;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid #efefef;
}

.blog-details-area .widget-area .widget_meta ul li a {
  color: #1a1b1e;
  color: #666666;
}

.blog-details-area .widget-area .widget_meta ul li a:hover {
  color: #2f8e4e;
}

.blog-details-area .widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.blog-details-area .widget-area .widget_meta ul li::before {
  background: #2f8e4e;
  position: absolute;
  height: 10px;
  width: 10px;
  content: '';
  left: 0;
  top: 8px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-details-area .widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 0;
}

.blog-details-area .widget-area .tagcloud a {
  display: inline-block;
  color: #666666;
  font-weight: normal;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed #eeeeee;
  margin-top: 10px;
  margin-right: 10px;
  text-transform: capitalize;
}

.blog-details-area .widget-area .tagcloud a:hover {
  background-color: #2f8e4e;
  color: #ffffff;
}

.blog-details-area .widget-area .tagcloud a:focus {
  background-color: #2f8e4e;
  color: #ffffff;
  border-color: #2f8e4e;
}

.blog-details-area .widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_services_list ul li a:hover {
  background-color: #2f8e4e;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active {
  background-color: #2f8e4e;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_services_list ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: #ffffff;
}

.blog-details-area .widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #5d6576;
  z-index: 1;
  font-weight: 500;
}

.blog-details-area .widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #252920;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.blog-details-area .widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-details-area .widget-area .widget_download ul li a:hover {
  background-color: #2f8e4e;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li a.active {
  background-color: #2f8e4e;
  color: #ffffff;
  padding-left: 20px;
}

.blog-details-area .widget-area .widget_download ul li a.active::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.blog-details-area .widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

.blog-details-area .widget-area .info time {
  font-size: 13px;
  color: #929292;
  display: block;
  margin-bottom: 4px;
}

/*
Contact Area Style
=====================================================*/
.contact-area .section-title {
  margin-bottom: 30px;
}

.contact-area .section-title h2 {
  font-size: 30px;
}

.contact-area .contact-wrap {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 40px;
  text-align: center;
}

.contact-area .contact-wrap .form-group {
  margin-bottom: 30px;
}

.contact-area .contact-wrap .text-danger {
  color: #dc3545 !important;
  margin: 30px auto 0;
  display: table;
  text-align: center !important;
}

.contact-area .contact-wrap .text-success {
  color: #28a745 !important;
}

.contact-area .contact-wrap .list-unstyled {
  text-align: left;
  margin-top: 10px;
  color: #dc3545 !important;
  font-size: 14px;
}

.contact-area .contact-wrap .form-group {
  margin-bottom: 30px;
}

.form-group .form-control {
  border-radius: 0;
  padding: 10px 15px;
  font-size: 14px;
}

select{
  border-radius: 0;
  padding: 10px 15px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #ced4da
}

.form-group .form-control:focus, select:focus{
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #2f8e4e;
}

.form-group .form-control.hight-unset {
  height: unset;
}

.contact-area .quick-contact {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.contact-area .quick-contact h3 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: -4px;
}

.contact-area .quick-contact ul {
  padding-left: 0;
}

.contact-area .quick-contact ul li {
  font-size: 18px;
  position: relative;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #2f8e4e;
  padding: 19px 20px;
  padding-left: 60px;
  list-style-type: none;
}

.contact-area .quick-contact ul li:last-child {
  margin-bottom: 0;
}

.contact-area .quick-contact ul li i {
  position: absolute;
  left: 25px;
  top: 23px;
  font-size: 25px;
}

.contact-area .quick-contact ul li span {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

.contact-area .quick-contact ul li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}

.single-contact-map iframe {
  height: 395px;
  width: 100%;
}

.about-page::after {
  display: none;
}

.about-page::before {
  display: none;
}

.about-page .about-content {
  padding-top: 0;
}

.about-page .about-content h3 {
  color: #1a1b1e;
}

.about-page .about-content p {
  color: #666666;
}

.about-page .about-content .experience-text i {
  color: #2f8e4e;
}

.about-page .about-content .experience-text p {
  color: #666666;
}

.about-page .about-content .experience-text h3 {
  color: #1a1b1e;
}

.bg-color-none {
  background-color: transparent;
}

.bg-color-none .image .content {
  background-color: #e8ffec;
}

.testimonials-item {
  background-color: #fbfbfb;
  padding: 50px 30px;
  position: relative;
}

.testimonials-item .content {
  position: relative;
  padding-left: 175px;
}

.testimonials-item .content .image {
  position: absolute;
  left: 0;
  top: 20px;
}

.testimonials-item .content .image img {
  height: 120px;
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
}

.testimonials-item .content .image .icon {
  position: relative;
}

.testimonials-item .content .image .icon i {
  position: absolute;
  background-color: #2f8e4e;
  color: #ffffff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 50px;
  bottom: 0;
  right: 0;
}

.testimonials-item .content .text {
  position: relative;
}

.testimonials-item .content .text::before {
  position: absolute;
  left: -30px;
  top: 0;
  width: 1px;
  content: '';
  height: 100%;
  background-color: #dcdcdc;
}

.testimonials-item .content .text h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonials-item .content .text span {
  color: #2f8e4e;
}

.testimonials-item .content .text p {
  margin-top: 10px;
  margin-bottom: 0;
}

.testimonials-item .content .text .star-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.testimonials-item .content .text .star-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}

.testimonials-item .content .text .star-list li:last-child {
  margin-right: 0;
}

.testimonials-item .content .text .star-list li i {
  color: #ff9c00;
}

.testimonials-item .dot {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonials-item .dot::before {
  position: absolute;
  bottom: 170px;
  right: -32px;
  width: 0;
  height: 0;
  content: "";
  border-top: 30px solid transparent;
  border-right: 30px solid #e1e1e1;
  border-bottom: 30px solid transparent;
  border-left: 30px solid transparent;
  font-size: 20px;
  -webkit-transform: rotate(136deg);
          transform: rotate(136deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonials-item:hover .dot::before {
  border-right: 30px solid #2f8e4e;
}
/*# sourceMappingURL=style.css.map */

.fixed-top .logo-1 img{
  width: 400px!important;
}

.fixed-top .logo-2 img{
  width: 100px!important;
}


.fixed-top .logo img{
  width: 150px!important;
}


/* Flip Card */
.flip-card {
  position: relative;
  border: none;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.flip-card h1{
  font-size: 3rem
}

.flip-card h4 {
  line-height: 32px;
  font-size: 1.2rem
}

.flip-card .flip-front,
.flip-card .flip-back {
  padding: 32px;
  padding: 2rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 44px -10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 44px -10px rgba(0, 0, 0, 0.15);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: ease transform 500ms;
  transition: ease transform 500ms;
}

.flip-card .flip-front .flip-content,
.flip-card .flip-back .flip-content {
  -webkit-transform: translate3d(0, 0, 1px);
  transform: translate3d(0, 0, 1px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card .flip-front.overlay:before,
.flip-card .flip-back.overlay:before {
  -webkit-transform: translate3d(0, 0, 0px);
  transform: translate3d(0, 0, 0px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card .flip-front {
  -webkit-transform: translate3d(0, 0, 1px) rotateY(0deg);
  transform: translate3d(0, 0, 1px) rotateY(0deg);
  padding-top: 150px!important;
  padding-bottom: 30px!important;
  color: #FFF
}

.flip-card .flip-front p, .flip-card .flip-front h4{
  color: #FFF
}

.flip-card .flip-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, -1px) rotateY(180deg);
  transform: translate3d(0, 0, -1px) rotateY(180deg);
}

.flip-back h4{
  color: #00135f
}

.flip-card:hover .flip-front {
  -webkit-transform: translate3d(0, 0, -1px) rotateY(-180deg);
  transform: translate3d(0, 0, -1px) rotateY(-180deg);
}

.flip-card:hover .flip-back {
  -webkit-transform: translate3d(0, 0, 1px) rotateY(0deg);
  transform: translate3d(0, 0, 1px) rotateY(0deg);
}

.flip-card.flip-card-vertical .flip-front {
  -webkit-transform: translate3d(0, 0, 1px) rotateX(0deg);
  transform: translate3d(0, 0, 1px) rotateX(0deg);
}

.flip-card.flip-card-vertical .flip-back {
  -webkit-transform: translate3d(0, 0, -1px) rotateX(180deg);
  transform: translate3d(0, 0, -1px) rotateX(180deg);
}

.flip-card.flip-card-vertical:hover .flip-front {
  -webkit-transform: translate3d(0, 0, -1px) rotateX(-180deg);
  transform: translate3d(0, 0, -1px) rotateX(-180deg);
}

.flip-card.flip-card-vertical:hover .flip-back {
  -webkit-transform: translate3d(0, 0, 1px) rotateX(0deg);
  transform: translate3d(0, 0, 1px) rotateX(0deg);
}

.flip-card.flip-card-3d .flip-front .flip-content, .flip-card.flip-card-3d .flip-back .flip-content {
  -webkit-perspective: inherit;
  perspective: inherit;
  -webkit-transform: translate3d(0, 0, 60px);
  transform: translate3d(0, 0, 60px);
}


.colorblue{
  color: #00135f
}


.colorgreen{
  color: #2f8e4e
}

.colorwhite{
  color: #fff
}

.colorwhite{
  color: #fff
}



.projectmap{
  background-image: url(../../img/mapbg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.mapcontainer{
  position: relative;
}

.projectmap .section-title span {
  color: #fff;
}

.mapcontainer .pro-fact, .mapcontainer .pro-fact.completed{
  position: absolute;
  left: 55%;
  top: 80px

}

.mapcontainer .pro-fact.completed{
  left: 80%;

}

.pro-fact h3, .pro-fact h4{
  color: #FFF;
  font-size: 50px
}

.pro-fact h4{
  font-size: 18px
}

.mapcontainer .on-label, .mapcontainer .completed-label{
  position: absolute;
  bottom: 100px;
  left: 50px;
  color: #fff
}

.mapcontainer .completed-label{
  bottom: 70px
}

.mapcontainer .on-label i{
  color: #2f8e4e;
}

.mapcontainer .completed-label i{
  color: #FFB744;
}

.maphome{
  border: 10px solid #FFF;
  box-shadow: 0 0 20px 0px rgb(0 0 0 / 7%)
}

.greyarea{
  background: #333
}

.greyarea p,.greyarea h3,.greyarea li{
  color: #eee
}

.mb-20{
  margin-bottom: 20px
}

ul{
  padding-left: 18px
}


img.floatleft{
  float: left;
  padding: 20px 30px 20px 0;
  max-width: 400px 
}
/**/

.scrollbar
{
  margin-left: 30px;
  float: left;
  height: 300px;
  width: 65px;
  background: #F5F5F5;
  overflow-y: scroll;
  margin-bottom: 25px;
}



#style-15::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  background-color: #F5F5F5;
  border-radius: 10px;
}

#style-15::-webkit-scrollbar
{
  width: 10px;
  background-color: #F5F5F5;
}

#style-15::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  background-color: #FFF;
  background-image: -webkit-gradient(linear,
                     40% 0%,
                     75% 84%,
                     from(#4D9C41),
                     to(#19911D),
                     color-stop(.6,#54DE5D))
}


.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/*MAP*/

path.ongoing{
   fill:#2f8e4e;
   opacity: 1;
   cursor: pointer;
}

path.completed{
   fill:#FFB744;
   opacity: 1;
   cursor: pointer;
}


path.none{
   fill:#fff;
}

path.ongoing:hover{
   fill:#ff5400;
}

path.completed:hover{
   fill:#ff5400;
}

.discontent h3{
  font-size: 18px
}

.discontent p{
  font-size: 14px;
}

#d01, #d02, #d03, #d04, #d05, #d06, #d07, #d08, #d09, #d10, #d11, #d12, #d13, #d14, #d15, #d16, #d17, #d18, #d19, #d20,
#d21, #d22, #d23, #d24, #d25, #d26, #d27, #d28, #d29, #d30, #d31, #d32, #d33, #d34, #d35, #d36, #d37, #d38, #d39, #d40,
#d41, #d42, #d43, #d44, #d45, #d46, #d47, #d48, #d49, #d50, #d51, #d52, #d53, #d54, #d55, #d56, #d57, #d58, #d59, #d60,
#d61, #d62, #d63, #d64, #d65, #d66, #d67, #d68, #d69, #d70, #d71, #d72, #d73, #d74, #d75, #d76, #d77{
    right: 0;
    bottom: 18%;
    margin-top: 10px;
    min-width: 230px;
    padding: 20px;
    background: #FFF;
    display: none;
    -webkit-transition:  all 0.3s ease-in-out!important;
    -o-transition: all 0.3s ease-in-out!important;
    transition:  all 0.3s ease-in-out!important;
    position: absolute;
    box-shadow: 0 0 20px #333;
    border-radius: 5px
}

#d01::before, #d02::before, #d03::before, #d04::before, #d05::before, #d06::before, #d07::before, #d08::before, #d09::before, #d10::before,
#d11::before, #d12::before, #d13::before, #d14::before, #d15::before, #d16::before, #d17::before, #d18::before, #d19::before, #d20::before,
#d21::before, #d22::before, #d23::before, #d24::before, #d25::before, #d26::before, #d27::before, #d28::before, #d29::before, #d30::before,
#d31::before, #d32::before, #d33::before, #d34::before, #d35::before, #d36::before, #d37::before, #d38::before, #d39::before, #d40::before,
#d41::before, #d42::before, #d43::before, #d44::before, #d45::before, #d46::before, #d47::before, #d48::before, #d49::before, #d50::before,
#d51::before, #d52::before, #d53::before, #d54::before, #d55::before, #d56::before, #d57::before, #d58::before, #d59::before, #d60::before,
#d61::before, #d62::before, #d63::before, #d64::before, #d65::before, #d66::before, #d67::before, #d68::before, #d69::before, #d70::before,
#d71::before, #d72::before, #d73::before, #d74::before, #d75::before, #d76::before, #d77::before {
  content: "";
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background-color: white;
  position: absolute;
  left: 180px;
  bottom: -6px;
}

#d30::before{
  left: 100px;
}

#d32::before {
  left: 60px;
}

#d04::before, #d13::before {
  left: 80px;
}


#d16::before{
  left: 130px;
}

#d01 span, #d02 span, #d03 span, #d04 span, #d05 span, #d06 span, #d07 span, #d08 span, #d09 span, #d10 span,
#d11 span, #d12 span, #d13 span, #d14 span, #d15 span, #d16 span, #d17 span, #d18 span, #d19 span, #d20 span,
#d21 span, #d22 span, #d23 span, #d24 span, #d25 span, #d26 span, #d27 span, #d28 span, #d29 span, #d30 span,
#d31 span, #d32 span, #d33 span, #d34 span, #d35 span, #d36 span, #d37 span, #d38 span, #d39 span, #d40 span,
#d41 span, #d42 span, #d43 span, #d44 span, #d45 span, #d46 span, #d47 span, #d48 span, #d49 span, #d50 span,
#d51 span, #d52 span, #d53 span, #d54 span, #d55 span, #d56 span, #d57 span, #d58 span, #d59 span, #d60 span,
#d61 span, #d62 span, #d63 span, #d64 span, #d65 span, #d66 span, #d67 span, #d68 span, #d69 span, #d70 span,
#d71 span, #d72 span, #d73 span, #d74 span, #d75 span, #d76 span, #d77 span{
  display: block;
}

#d02{
  bottom: 43%;
  right: 57%;
}

#d03{
  bottom: 51%;
  right: 53%
}

#d04{
  bottom: 76%;
  right: 78%
}

#d05{
  bottom: 81%;
  right: 77%
}

#d06{
  bottom: 79%;
  right: 73%
}


#d07{
  bottom: 47%;
  right: 71%
}


#d08{
  bottom: 28%;
  right: 34%
}


#d09{
  bottom: 53%;
  right: 74%
}


#d10{
  bottom: 36%;
  right: 29%
}


#d11{
  bottom: 29%;
  right: 11%
}


#d12{
  bottom: 37%;
  right: 40%
}

#d13{
  bottom: 69%;
  right: 79%
}

#d14{
   bottom: 61%;
  right: 73%
}

#d15{
  bottom: 45%;
  right: 64%
}

#d16{
  bottom: 84%;
  right: 78%
}

#d17{
  bottom: 47%;
  right: 33%
}

#d18{
  bottom: 24%;
  right: 8%
}

#d19{
  bottom: 21%;
  right: 23%
}

#d20{
  bottom: 42%;
  right: 20%
}

#d21{
  bottom: 70%;
  right: 54%
}

#d22{
  bottom: 69%;
  right: 80%
}

#d23{
  bottom: 53%;
  right: 36%
}

#d24{
  bottom: 45%;
  right: 53%
}

#d25{
  bottom: 86%;
  right: 69%
}

#d26{
  bottom: 25%;
  right: 2%
}

#d27{
  bottom: 62%;
  right: 67%
}

#d28{
  bottom: 16%;
  right: 2%
}

#d29{
  bottom: 71%;
  right: 66%
}

#d30{
  bottom: 61%;
  right: 80%
}

#d31{
  bottom: 69%;
  right: 72%
}

#d32{
  bottom: 62%;
  right: 80%
}

#d33{
  bottom: 38%;
  right: 58%
}

#d34{
  bottom: 53%;
  right: 46%
}

#d35{
  bottom: 38%;
  right: 30%
}

#d36{
  bottom: 25%;
  right: 2%
}

#d37{
  bottom: 29%;
  right: 14%
}

#d38{
  bottom: 35%;
  right: 31%
}

#d39{
  bottom: 51%;
  right: 41%
}

#d40{
  bottom: 23%;
  right: 25%
}

#d41{
  bottom: 34%;
  right: 33%
}

#d42{
  bottom: 25%;
  right: 2%
}

#d43{
  bottom: 18%;
  right: 6%
}

#d44{
  bottom: 79%;
  right: 62%
}

#d45{
  bottom: 66%;
  right: 46%
}

#d46{
  bottom: 55%;
  right: 52%
}

#d47{
  bottom: 42%;
  right: 32%
}

#d48{
  bottom: 31%;
  right: 18%
}

#d49{
  bottom: 36%;
  right: 50%
}

#d50{
  bottom: 41%;
  right: 50%
}

#d51{
  bottom: 25%;
  right: 2%
}

#d52{
  bottom: 50%;
  right: 50%
}

#d53{
  bottom: 30%;
  right: 37%
}

#d54{
  bottom: 48%;
  right: 58%
}

#d55{
  bottom: 25%;
  right: 2%
}

#d56{
  bottom: 47%;
  right: 30%
}

#d57{
  bottom: 26%;
  right: 31%
}

#d58{
  bottom: 51%;
  right: 61%
}

#d59{
  bottom: 25%;
  right: 2%
}

#d60{
  bottom: 37%;
  right: 53%
}

#d61{
  bottom: 53%;
  right: 67%
}

#d62{
  bottom: 38%;
  right: 8%
}

#d63{
  bottom: 16%;
  right: 14%
}

#d64{
  bottom: 25%;
  right: 28%
}

#d65{
  bottom: 30%;
  right: 24%
}

#d66{
  bottom: 44%;
  right: 25%
}

#d67{
  bottom: 19%;
  right: 19%
}

#d68{
  bottom: 41%;
  right: 14%
}

#d69{
  bottom: 18%;
  right: 10%
}

#d70{
  bottom: 57%;
  right: 75%
}

#d71{
  bottom: 46%;
  right: 48%
}

#d72{
  bottom: 44%;
  right: 43%
}

#d73{
  bottom: 39%;
  right: 0%
}

#d74{
  bottom: 27%;
  right: 5%
}

#d75{
  bottom: 25%;
  right: 2%
}

#d76{
  bottom: 25%;
  right: 2%
}

#d77{
  bottom: 60%;
  right: 63%
}


span.on{
  background: #2f8e4e;
  padding: 5px 15px;
  border-radius: 5px;
  color: #FFF;
  margin-bottom: 5px
}

span strong{
  font-size: 18px
}

span.com{
  background: #FFB744;
  padding: 5px 15px;
  border-radius: 5px;
}

#searchform{
  padding: 25px;
  box-shadow: 0 0 50px #CCC
}

.sidesearch .form-group{
  margin-bottom: 10px
}


.table>:not(caption)>*>*{
  padding: 20px 10px;
}


/*path.dis01:hover, path.dis02:hover, path.dis02:hover, path.dis03:hover, path.dis04:hover, path.dis05:hover, path.dis06:hover, path.dis07:hover, path.dis08:hover, path.dis09:hover, path.dis10:hover,path.dis11:hover,
path.dis12:hover,path.dis13:hover,path.dis14:hover,path.dis15:hover,path.dis16:hover,path.dis17:hover,path.dis18:hover,path.dis19:hover,path.dis20:hover{
  fill: #00135f;
  cursor: pointer;
}*/
