/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 background-color: #403108bf;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

a {
  /* letter-spacing: 2px; */
  text-decoration: none;
  color: #71c55d;
}

a:hover {
  color: #92d283;
}

ul {
  /* letter-spacing: 1px; */
}

li {
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  /* letter-spacing: 2px; */
  line-height: 25px;
  text-transform: capitalize;
}

.topics ul {
  /* letter-spacing: 1px; */
}

.topics li {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  /* letter-spacing: 2px; */
  line-height: 27px;
  text-transform: capitalize;
}

p {
  color: #505050;
  font-size: 14px;
  font-weight: 300;
  /* letter-spacing: 0.5px; */
  line-height: 2;
  margin-bottom: 20px;
}

span {
  /* letter-spacing: 1px; */
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 20px;
  /* text-transform: uppercase; */
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn1 {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 3px 15px;
  /* text-transform: uppercase; */
  transition: all 0.5s ease-in-out 0s;
}
.btn1:hover {
  color: #0c4f30;
  background-color: #ffff;
  border-color: #adadad;
}
.fa {
  text-decoration: none;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #71c55d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #8bd07b;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-image: linear-gradient(80deg, #061f01, #061f01, #061f01);
  z-index: 997;
  transition: all 0.5s ease;
  padding: 10px 0;
  /* box-shadow: 0 3px 7px #0000009c; */
}

#header #logo h1 {
  color: #505050;
  font-size: 28px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  margin: 0;
}

#header #logo h1 img {
  width: 60px;
}

#header #logo h1 a {
  color: #555;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #71c55d;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-scrolled {
background-image: linear-gradient(80deg, #061f01, #061f01, #061f01);
  box-shadow: 0 3px 7px #0000009c;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 4px 10px 4px 10px; */
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  /* letter-spacing: 1px; */
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  background: -webkit-radial-gradient(#fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px dashed #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(80% + 10px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #061f01;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 3px 7px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #71c55d;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

#header .logo img {
  margin: 0;
  max-height: 60px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #71c55d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #71c55d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#myVideo {
  position: fixed;
  /* left: 67%; */
  /* bottom: 0; */
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0%;
  left: 0%;
  filter: brightness(120%);

}

@media (max-width: 771px) {
  #myVideo {
    display: none;
  }
}

.section-bg {
  background-image: linear-gradient(80deg, #061f01, #198504, #061f01);
  position: relative;
}

.section-bg h2 {
  color: #fff;
  font-weight: 600;
  filter: drop-shadow(2px 2px 0 #000);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  /* background: url("../img/hero_bg_11.jpeg") right center; */
  background-repeat: no-repeat;
  /* position: relative; */
  padding-top: 96px;
  /* z-index: 999;  */
  /* animation: pulse 10s ease-in; */
  /* background-attachment: fixed; */
  background-size: cover;
  position: relative;
  
}

#hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient( 100deg,#061f01c0 , #061f01e0 , #061f01b7 );
}

@keyframes pulse {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 1230px) {
  #hero {
    width: 100%;
    height: 100%;
    background: url("assets/img/her");
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    padding-top: 86px;
    /* z-index: 999; */
    /* animation: pulse 10s ease-in; */
    /* background-attachment: fixed; */
    background-size: cover;
  }
}

@media (min-width: 1025px) and (max-height: 768px) {
  #hero {
    height: 100%;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 100%;
  }
}

#hero h1 {
  /* margin: 0 0 10px 0; */
  /* font-size: 48px; */
  font-weight: 600;
  line-height: 56px;
  font-family: "Montserrat", sans-serif;
  color: #0c6b0a;
  position: relative;
  filter: drop-shadow(2px 2px 0 #000);
}

#hero h2 {
  /* margin: 0 0 10px 0; */
  /* font-size: 48px; */
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #000;
  position: relative;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h3 {
  font-family: "Montserrat", sans-serif;
  /* filter: drop-shadow(0 0 1px #061f01); */
  position: relative;
  font-weight: 600;
  color: #fff;
  /* text-align: center; */
}

#hero h4 {
  font-family: "Montserrat", sans-serif;
  /* filter: drop-shadow(0 0 1px #061f01); */
  position: relative;
  font-weight: 600;
  color: #fff;
  /* text-align: center; */
}

#hero h3 span {
  font-size: 150%;
}

#hero h4 i {
  color: #fff;
  position: relative;
  filter: drop-shadow(2px 2px 0 #000);
  font-weight: 600;
  font-size: 130%;
}

#hero img {
  max-width: 100%;
  margin-bottom: 10px;
  filter: drop-shadow(1px 1px 0px #000);
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: none;
  font-weight: 600;
  /* font-size: 18px; */
  /* letter-spacing: 1px; */
  /* display: inline-block; */
  padding: 8px 15px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 1px dashed #083c04;
  background-image: linear-gradient(50deg, #fff, #aaa);
  color: #061f01;
  text-decoration: none;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 2px 2px 0 #083c04;
}

#hero .btn-get-started:hover {
  background-image: linear-gradient(50deg, #aaa, #fff);
  color: #061f01;
  border: none;
border: 1px dashed #083c04;
}

#hero .btns a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #hero .btns a {
    margin: 4px 8px;
  }
}

#hero .btns a:hover {
  color: #71c55d;
}

@media (max-width: 991px) {
  #hero {
    background-color:#f5ffe2;
  }
}

#main {
  background-color: #ffffff;
  /* background-image: linear-gradient(180deg, #fffce0, #fffce0, #fffce0); */
}

    .theme-card {
      transition: transform 0.3s, box-shadow 0.3s;
      background-image: linear-gradient(50deg, #4b8927, #5aaa2e);
      color: #fff;
    }
    .theme-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .theme-icon {
      font-size: 40px;
      color: #fff;
      /* margin-bottom: 15px; */
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    .award-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }
    .award-card:hover {
      transform: translateY(-10px);
    }
    .award-icon {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: #9df99d;
    }
    .category-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #d4fcd4;
    }
    .card-text {
      font-size: 1rem;
      color: #e4ffe4;
      margin-top: 10px;
    }

    .overlay {
      background: rgba(0, 0, 0, 0.75);
      min-height: 100vh;
      padding: 4rem 2rem;
    }
    h2.section-heading {
      font-family: "Montserrat", sans-serif;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
      color: #d4fcd4;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    .flip-card {
      background: transparent;
      perspective: 1000px;
      height: 280px;
      cursor: pointer;
      margin-bottom: 20px;
    }
    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      transform-style: preserve-3d;
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
      border-radius: 20px;
    }
    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }
    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1rem;
    }
    .flip-card-front {
      background: rgba(40, 167, 69, 0.05);
      color: #d4fcd4;
      box-shadow: 0 2px 8px #fff;
    }
    .flip-card-front .icon img{
 width: 100%;
    }
    .flip-card-front .title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      /* font-family: "Montserrat", sans-serif; */
    }
    .flip-card-back {
      background: rgba(20, 80, 32, 0.09);
      color: #e0ffe1;
      transform: rotateY(180deg);
      font-size: 1rem;
      line-height: 1.5;
      box-shadow: 0 3px 8px #fff;
      font-family: 'Montserrat', sans-serif;
    }

    .flip-card-back button{
      background-color: #0a4d06;
      color: #fff;
      box-shadow: 0 0 5px #fff;
      padding: 10px;
    }

    .flip-card-back button a{
      color:#fff;
      font-weight: 600;
    }

        .flip-card-back p{
      color:#fff;
      font-weight: 600;
    }
    

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 0px;
  background-color: #fff;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background:#1e7a1c; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #34db31; 
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  /* overflow: hidden; */
  padding: 30px 0;
}

/* .padd-section {
  padding-bottom: 80px;
  padding-top: 80px;
} */

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-title {
  margin-bottom: 40px;
  background: -webkit-radial-gradient(#061c00, #0f9b0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  /* font-size: 45px; */
  font-weight: 600;
  /* letter-spacing: 2px; */
  margin-bottom: 20px;
  /* text-transform: capitalize; */
  text-transform: uppercase;
}

.section-title1 h2 {
  font-family: "Montserrat", sans-serif;
  /* font-size: 45px; */
  font-weight: 600;
  /* letter-spacing: 2px; */
  margin-bottom: 20px;
  /* text-transform: capitalize; */
  color: #fff;
  text-transform: uppercase;
}

.section-title1 p {
  font-family: "Montserrat", sans-serif;
  /* font-size: 45px; */
  font-weight: 600;
  /* text-transform: capitalize; */
  color: #fff;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5fbf3;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li {
  /* letter-spacing: 0; */
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Get Started Section
--------------------------------*/
#get-started {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#get-started .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block img {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

@media (max-width: 991px) {
  #get-started .feature-block {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
  margin-bottom: 20px;
}

#get-started .feature-block p {
  margin-bottom: 20px;
}

#get-started .feature-block a {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
}

#get-started .feature-block a:hover {
  color: #71c55d;
}

/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us .about-content {
  padding-top: 60px;
}

#about-us .about-content h2 {
  color: #252525;
  font-family: "Montserrat", sans-serif;
  font-size: 39px;
  font-weight: 100;
  /* letter-spacing: 2px; */
  margin-bottom: 20px;
  text-transform: capitalize;
}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 10px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#features .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block img {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
  margin-bottom: 20px;
}

#features .feature-block p {
  margin-bottom: 0;
}

/* Screenshots Section
--------------------------------*/
#screenshots .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#screenshots .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #71c55d;
}

#screenshots .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #71c55d;
}

/* Video Section
--------------------------------*/
#video {
  background: url(../img/video-bg.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  overflow: hidden;
}

#video .overlay {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
}

#video .overlay .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#71c55d 50%, rgba(113, 197, 93, 0.15) 52%);
  border-radius: 50%;
  display: block;
  margin: 153px auto 0;
  position: relative;
  overflow: hidden;
}

#video .overlay .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#video .overlay .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate1 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#video .overlay .play-btn:hover::after {
  border-left: 15px solid #71c55d;
  transform: scale(20);
}

#video .overlay .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate1 {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Team Section
--------------------------------*/
#team .team-block {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  height: 254px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  #team .team-block {
    margin-bottom: 30px;
  }
}

#team .team-block img {
  width: 100%;
}

#team .team-block .team-content {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
  bottom: -147px;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
}

#team .team-block .team-content ul {
  display: block;
  width: 100%;
}

#team .team-block .team-content ul li {
  display: inline-block;
}

#team .team-block .team-content ul li a {
  color: #626262;
}

#team .team-block .team-content ul li a .fa {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.3s;
}

#team .team-block .team-content ul li a .fa:hover {
  color: #71c55d;
}

#team .team-block .team-content ul > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  /* letter-spacing: 0.5px; */
  margin-bottom: 20px;
  text-transform: uppercase;
}

#team .team-block:hover .team-content {
  bottom: 0px;
  transition: all 0.5s ease-in-out 0s;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  background-image: linear-gradient(180deg, #ffffff, #fffce0, #fffce000);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 50px;
}

#testimonials .testimonials-content {
  box-shadow: 0 0 15px rgb(0, 0, 0);
  padding: 20px 20px;
  background-image: linear-gradient(50deg, #061f01, #0a530a, #061f01);
  /* background-color: #ffffffae; */
}

/* #testimonials .testimonials-content::before {
  color: #71c55d;
  content: "\f10e";
  display: inline-block;
  font: 70px/1 "Roboto", "sans-serif";
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
} */

#testimonials .top-top > h4 {
  /* font: 700 12px Lato, sans-serif; */
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 20px;
}

#testimonials .top-top h6 {
  font-weight: 500;
  color: #ffffff;
  /* font-size: 20px; */
  line-height: 24px;
}

#testimonials .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#testimonials .btm-btm ul li {
  float: left;
  margin: 0 8px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: #ddd none repeat scroll 0 0;
  cursor: pointer;
  height: 12px !important;
  width: 12px !important;
  border: 0;
  content: "";
}

#testimonials .btm-btm .active {
  background: #ffffff;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

@media (max-width: 570px) {
  .carousel-indicators {
    display: none;
  }
}

.carousel-indicators li {
  margin: 0;
}

/* Pricing Table Section
--------------------------------*/

/* #pricing {
  background-image: linear-gradient(360deg,#fffce0, #c5f7cb00, #ccedd0);
} */

#pricing .block-pricing {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7), 0 0 4px 0 rgba(0, 0, 0, 0.9);
  display: inline-block;
  /* background-image: url(../img/speaker-bg.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

@media (max-width: 991px) {
  #pricing .block-pricing {
    margin-bottom: 30px;
  }
}

#pricing .block-pricing .table {
  margin-bottom: 0;
  padding: 30px 15px;
  max-width: 100%;
  width: 100%;
}

#pricing .block-pricing .pricing-table h3 {
  padding-bottom: 30px;
}

#pricing .block-pricing .pricing-table span {
  font-size: 24px;
}

#pricing .block-pricing h2 {
  margin-bottom: 10px;
  font-size: 60px;
}

#pricing .block-pricing ul {
  list-style: outside none none;
  margin: 10px auto;
  /* max-width: 240px; */
  width: 100%;
  padding: 0;
}

#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #083c04;
}

#pricing .block-pricing ul li b {
  color: #3c4857;
}

#pricing .block-pricing .pricing-table .table_btn a {
  font-family: "Montserrat", sans-serif;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  /* letter-spacing: 1px; */
  display: inline-block;
  /* padding: 11px 36px; */
  border-radius: 50px;
  transition: 0.5s;
  /* margin-bottom: 30px; */
  border: 2px dashed #083c04;
  background: #fff;
  color: #083c04;
  text-decoration: none;
}

#pricing .block-pricing .pricing-table .table_btn a:hover {
  background-image: linear-gradient(50deg, #061f01, #0f960f);
  color: #fff;
}

#pricing .block-pricing .pricing-table .table_btn a .fa {
  font-size: 13px;
  margin-right: 5px;
}

#pricing img {
  position: absolute;
  padding-top: 30%;
  width: 100%;
  left: 0%;
  z-index: 1;
}

/* Blog Section
--------------------------------*/

#blog {
  background-image: linear-gradient(
    to bottom,
    #fffce0,
    #e8ebd857,
    #fbf9de,
    #ffffff
  );
}

@media (max-width: 991px) {
  #blog .block-blog {
    margin-bottom: 30px;
  }
}

#blog .block-blog img {
  width: 100%;
}

#blog .block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
}

#blog .block-blog .content-blog h4 {
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: normal;
  /* letter-spacing: 0; */
  font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
  color: #71c55d;
}

#blog .block-blog .content-blog > span {
  float: left;
  font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  /* letter-spacing: 0; */
  text-transform: capitalize;
}

#blog .block-blog .content-blog a.readmore:hover {
  color: #71c55d;
}

/* Newsletter Section
--------------------------------*/
#newsletter {
  background: rgba(0, 0, 0, 0) url(../img/newsletter-bg.jpg) no-repeat center
    top fixed;
  background-size: cover;
}

#newsletter .overlay {
  background: linear-gradient(
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.2) 95%
  );
  height: 100%;
  width: 100%;
}

#newsletter .form-control {
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  text-align: center;
  width: 70%;
  background: #fff;
}

@media (max-width: 575px) {
  #newsletter .form-control {
    margin-bottom: 30px;
    width: 100%;
  }
}

#newsletter .form-control:focus {
  border-color: #71c55d;
  box-shadow: none;
  outline: 0 none;
}

#newsletter .btn {
  background: #71c55d;
  border: 0;
  border-radius: 0;
  height: 50px;
  width: 30%;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #newsletter .btn {
    width: 100%;
  }
}

#newsletter .btn:hover {
  background: #55b03f;
}

#newsletter .btn .fa {
  padding-right: 10px;
}

#newsletter ul {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 0;
}

#newsletter ul li {
  background: #71c55d;
  border-radius: 50px;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li:hover {
  background: #55b03f;
}

#newsletter ul li i {
  color: #fff;
  line-height: 0;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #fff;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: #71c55d;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #71c55d;
  color: #fff;
  line-height: 1;
  padding: 6px 0 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #55b03f;
  color: #fff;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #71c55d;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background: #71c55d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #92d283;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #2a2c30;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  /* letter-spacing: 0.2em; */
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #fff;
  font-size: 12px;
  /* letter-spacing: 1px; */
}

.footer .list-menu > h4 {
  color: #fff;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  /* letter-spacing: 0; */
}

.footer .copyrights {
  background: #fff;
  margin-top: 50px;
  text-align: center;
  padding: 25px;
}

.footer .copyrights p,
.footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 14px;
  /* letter-spacing: 0; */
}

.footer .copyrights p a,
.footer .copyrights .credits a {
  /* letter-spacing: 0; */
  color: #71c55d;
}

#overview h6{
font-family: "Montserrat", sans-serif;
line-height: 20px;
}

.overview1 {
  background-image: linear-gradient(0deg, #4b8927, #5aaa2e, #177d03);
}

.overview1 ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: #fff;
  color: #000;
  line-height: 22px;
  font-size: 18px;
  text-align: justify;
  list-style: none;
  padding: 15px;
  border-radius: 10px;
  /* vertical-align: baseline; */
  margin-top: 10px;
  box-shadow: inset 0 0 8px #000;
}

.overview1 h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500px;
  text-align: center;
  color: #fff;
}

/* about section */

.overview {
  background-image: linear-gradient(180deg, #061f01, #177d03, #177d03);
}

.overview p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 22px;
  font-size: 16px;
  text-align: justify;
  /* vertical-align: baseline; */
  margin-top: 10px;
}

.overview h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500px;
  text-align: center;
  color: #fff;
  font-style: oblique;
}

.hoja {
  color: #dcdce2;
  position: absolute;
  /* top: 40%;
  left: 50%;
  margin-left: -140px;*/
  margin-top: 25px;
  width: 340px;
  height: 340px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  /* line-height: 280px; */
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 991px) {
  .hoja {
    color: #dcdce2;
    position: relative;
    top: 0%;
    left: 0%;
    margin-left: 0px;
    margin-top: 20px;
    width: 300px;
    height: 300px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    /* line-height: 280px; */
    -webkit-font-smoothing: antialiased;
    margin-bottom: 50px;
  }
}

.hoja img {
  width: 95%;
}

.hoja img {
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: reverse;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  position: relative;
  transform: translateZ(5px);
  transform-style: preserve-3d;
  animation: rotate 2s linear infinite;
  rotate: 0deg;
}

@media (max-width: 771px) {
  .hoja img {
    content: "";
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    transform: reverse;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    position: relative;
    transform: translateZ(5px);
    transform-style: preserve-3d;
    animation: none;
    rotate: 4deg;
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) perspective(500px) rotateY(0deg);
  }

  100% {
    transform: translate(-50%, -50%) perspective(500px) rotateY(360deg);
  }
}

.hoja:after,
.hoja:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

.hoja:after {
  box-shadow: inset 0 17.5px 0 #006633, inset 17.5px 0 0 #21305e,
    inset 0 -17.5px 0 #82c341, inset -17.5px 0 0 #013e7f;
  -webkit-animation: rotar 2s -0.5s linear infinite;
  animation: rotar 2s -0.5s linear infinite;
}

.hoja:before {
  box-shadow: inset 0 17.5px 0 #013e7f, inset 17.5px 0 0 #82c341,
    inset 0 -17.5px 0 #21305e, inset -17.5px 0 0 #006633;
  -webkit-animation: rotarIz 2s -0.5s linear infinite;
  animation: rotarIz 2s -0.5s linear infinite;
}

@-webkit-keyframes rotar {
  0% {
    transform: rotateZ(0deg) scaleX(1) scaleY(1);
  }

  50% {
    transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);
  }

  100% {
    transform: rotateZ(360deg) scaleX(1) scaleY(1);
  }
}

@keyframes rotar {
  0% {
    transform: rotateZ(0deg) scaleX(1) scaleY(1);
  }

  50% {
    transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);
  }

  100% {
    transform: rotateZ(360deg) scaleX(1) scaleY(1);
  }
}

@-webkit-keyframes rotarIz {
  0% {
    transform: rotateZ(0deg) scaleX(1) scaleY(1);
  }

  50% {
    transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);
  }

  100% {
    transform: rotateZ(-360deg) scaleX(1) scaleY(1);
  }
}

@keyframes rotarIz {
  0% {
    transform: rotateZ(0deg) scaleX(1) scaleY(1);
  }

  50% {
    transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);
  }

  100% {
    transform: rotateZ(-360deg) scaleX(1) scaleY(1);
  }
}

/* speaker section */

/* .section1 .cards {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: 820px;
} */

.section1 {
  background-image: url("../img/speakerbg.png");
  background-size: contain;
  /* background-repeat: no-repeat; */
  position: relative;
  background-attachment: fixed;
}

.section1::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(360deg,#ffffff, #ffffffc7, #ffffff);
}

.section1 .card__like {
  width: 18px;
}

.section1 .card__clock {
  width: 15px;
  vertical-align: middle;
  fill: #ad7d52;
}

.section1 .card__time {
  font-size: 12px;
  color: #ad7d52;
  vertical-align: middle;
  margin-left: 5px;
}

.section1 .card__clock-info {
  float: right;
}

.section1 .card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.section1 .card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 300px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
}

.section1 .card {
  margin-right: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}

.section1 .card:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
  transform: scale(1.1, 1.1);
}

.section1 .card__info {
  z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 16px 24px 24px 24px;
  text-align: center;
}

.section1 .card__category {
  /* font-family: 'Raleway', sans-serif; */
  text-transform: uppercase;
  font-size: 16px;
  /* letter-spacing: 2px; */
  font-weight: 700;
  color: #000000;
}

.section1 .card__title {
  margin-top: 5px;
  margin-bottom: 10px;
  /* font-family: 'Roboto Slab', serif; */
}

.section1 .card__by {
  font-size: 12px;
  /* font-family: 'Raleway', sans-serif; */
  font-weight: 500;
}

.section1 .card__author {
  font-weight: 600;
  text-decoration: none;
  color: #ad7d52;
}

.section1 .card:hover .card__img--hover {
  height: 100%;
  opacity: 0.3;
}

.section1 .card:hover .card__info {
  background-color: transparent;
  position: relative;
}

.section1 .card:hover .card__info-hover {
  opacity: 1;
}

.section1 h4 {
  padding: 8px;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  /* font-size: 16px; */
  font-weight: 500;
  /* text-transform: uppercase; */
  /* filter: drop-shadow(0 0 1px #061e0196); */
}

.section1 h5 {
  /* padding: 0px 15px; */
  font-size: 17px;
  font-weight: 600;
  /* text-transform: uppercase; */
  color: #000000;
  font-family: "Montserrat", sans-serif;
  padding: 5px;
  /* filter: drop-shadow(0 0 1px #061e0196); */
}

.section1 h6 {
  /* padding: 0px 15px; */
  /* font-size: 14px; */
  font-weight: 400;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  /* text-transform: uppercase; */
  color: #000000;
  /* filter: drop-shadow(0 0 1px #061e0196); */
}
.section1 .card-container {
  padding-top: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #ffffffde;
}

.section1 .card-container .round {
  /* border: 2px solid #061c00; */
  box-shadow: 1px 1px 4px 2px #254e21;
  border-radius: 5%;
  width: 180px;
  height: 180px;
  margin-bottom: 5px;
}

.section1 .card-container .card-text{
  padding-top: 10px;
  position: relative;
  width: 100%;
min-height: 120px;
  text-align: center;
  background-color: #ffffffcb;
  border-radius: 4px;
  /* box-shadow: 1px 1px 4px 2px #19f13d5d;
  border: 2px solid #061c00; */
}

@media(max-width:771px){
  .section1 .card-container .round {
  /* border: 2px solid #061c00; */
  box-shadow: 1px 1px 4px 2px #254e21;
  border-radius: 5%;
  width: 90px;
  height: 90px;
  margin-bottom: 5px;
}

.section1 h5 {
    /* padding: 0px 15px; */
    font-size: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #000000;
    font-family: "Montserrat", sans-serif;
    padding: 5px;
    /* filter: drop-shadow(0 0 1px #061e0196); */
}

.section1 h6 {
    /* padding: 0px 15px; */
    /* font-size: 14px; */
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    font-family: "Montserrat", sans-serif;
    /* text-transform: uppercase; */
    color: #000000;
    /* filter: drop-shadow(0 0 1px #061e0196); */
}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* .services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background-image: linear-gradient(50deg, #061f01, #0f960f);
  background: #083c04 ;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #67b0d1;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
} */

/* key theme */

/* .services {
  background-image: linear-gradient(360deg, #d6ffad, #ffffff00, #fbfefc);
} */

.services .features-column .icon-box {
  position: relative;
  width: 240px;
  height: 240px;
  padding: 40px 20px 20px 20px;
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.services .features-column .icon-box:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #6ac610;
  border-radius: 120px 0px 120px 120px;
  background: -moz-radial-gradient(center center, #0f9b0f, #0c740b, #061e01);
  background: -o-radial-gradient(center center, #0f9b0f, #0c740b, #061e01);
  background: -ms-radial-gradient(center center, #0f9b0f, #0c740b, #061e01);
  background: -webkit-radial-gradient(center center, #0f9b0f, #0c740b, #061e01);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.services .features-column .icon-box .icon {
  position: relative;
  /* font-size: 88px; */
  width: 50%;
  height: 50%;
  right: -47px;
  line-height: 100px;
  /* margin-bottom: 20px; */
  z-index: 2;
}

.services .features-column .icon-box .icon i {
  font-size: 40px;
}

.services .features-column .icon-box {
  position: relative;
  width: 240px;
  height: 240px;
  padding: 40px 20px 20px 20px;
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
}

/* .services .features-column .icon-box:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
} */

.services .icon-box .title {
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0px; */
  color: #fff;
  filter: drop-shadow(0 0 5px #012970);
  transition: 0.5s ease-in-out;
}

.services .icon-box:hover .title {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px #fff);
  transition: 0.5s ease-in-out;
}

.single_process {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.single_process_thumb {
  border: 5px solid #000;
  background-image: linear-gradient(50deg, #061f01, #0a530a, #061f01);
  display: inline-block;
  border-radius: 30%;
  width: 100%;
  min-height: 150px;
  padding: 35px 15px;
}
.single_process_thumb h5 {
  border-radius: 50%;
  /* border: 10px solid #fff; */
  width: 100%;
  text-align: center;
  align-items: center;
  color: #fff;
}

.single_process_number {
  position: absolute;
  /* left: 80px; */
  top: 20%;
  margin: auto;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-90%);
  -ms-transform: translateY(-90%);
  transform: translateY(-90%);
}
.single_process_number span {
  background: #083506;
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 21px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.single_process_number span:before {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 80px;
  height: 80px;
  background: #056900;
  opacity: 0.5;
  content: "";
  margin: auto;
  border-radius: 100%;
  z-index: -1;
}

.single_process_content h5 {
  color: #000000;
  text-align: center;
  /* font-size: 19px; */
}

/* .features1 {
  background-image: linear-gradient(180deg, #d6ffad, #ffffff00, #fbfefc);
} */

.features1 .feature-box {
  background-color: #ffffff;
  padding:5px 5px;
  box-shadow: 0px 0 3px rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  height: 100%;
}

.features1 .feature-box h5 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.features1 .feature-box i {
  background: color-mix(in srgb, #71c55d, transparent 92%);
  color: #0a4d06;
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features1 .feature-box:hover i {
  background: #0a4d06;
  color: #ffffff;
}

@media(max-width:771px){
  .features1 .feature-box {
  background-color: #ffffff;
  padding:5px 5px !important;
  box-shadow: 0px 0 3px rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  height: 100%;
}

.features1 .feature-box h5 {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.features1 .feature-box i {
  background: color-mix(in srgb, #71c55d, transparent 92%);
  color: #0a4d06;
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 15px;
  border-radius: 3px;
  transition: 0.3s;
}
}
/* who should attend  */

.main_crypto ul li {
  list-style: none;
}
.main_crypto {
  margin: 0 auto;
  text-align: center;
  display: table;
  position: relative;
}
.main_crypto ul {
  display: flex;
  padding-left: 0px;
}

@media (max-width: 991px) {
  .main_crypto ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
  }
}
.bitcoin_box {
  background: #fff;
  display: inline-block;
  padding: 25px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  border-top: 5px solid #26a30d;
  box-shadow: 0px 0px 23px 2px rgba(0, 0, 0, 0.35);
}
.bitcoin_box i {
  margin-bottom: 20px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
  animation-direction: alternate;
  line-height: 30px;
  background: #ecf3ff;
  color: #145407;
  padding: 4px;
  margin-right: 10px;
  font-size: 35px;
  border-radius: 3px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bitcoin_box:hover i {
  background: #145407;
  color: #fff;
}
.bitcoin_box p {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0px;
  /* font-family: 'Poppins', sans-serif;
  text-transform: uppercase; */
}
.btc_text a {
  background: #7bcc62;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.6px;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.5s ease;
  display: inline-block;
}
.btc_text a:hover {
  background: #084304;
}
.bitcoin_box:hover {
  transform: scale(1.1);
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* WHY YOU SHOULD ATTEND */

/* #features {
  background-image: linear-gradient(360deg, #d6ffad, #ffffff00, #fbfefc);
} */

#features .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#features .content-left span {
  float: right;
}

#features .content-left .icon1 {
  float: left;
}

#features .content-left .text {
  text-align: right;
}

#features .content-right span {
  float: left;
}

#features .box-item {
  box-shadow: 0 0 12px #f4f4f4;
  padding: 15px;
  line-height: 22px;
  margin-top: 30px;
  border-radius: 3px;
  background-color: #fff;
  /* -webkit-transition: all .6s ease-in-out;
  -mox-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out; */
  position: relative;
  top: 0;
  padding: 12px 10px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.8);
  /* transition: 0.6s; */
  height: 100%;
}

@media (max-width: 450px) {
  #features .box-item .icon i {
    line-height: 30px;
    background: #ecf3ff;
    color: #145407;
    padding: 4px;
    margin-right: 10px;
    font-size: 45px;
    border-radius: 3px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 450px) {
  #features .box-item {
    box-shadow: 0 0 12px #f4f4f4;
    padding: 15px;
    line-height: 22px;
    margin-top: 30px;
    border-radius: 3px;
    background-color: #fff;
    /* -webkit-transition: all .6s ease-in-out;
    -mox-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out; */
    position: relative;
    top: 0;
    padding: 12px 10px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.8);
    /* transition: 0.6s; */
    height: 100%;
    display: grid;
    justify-items: center;
  }
}

#features .box-item .icon {
  /* text-align: center; */
  margin: 12px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;

  line-height: 30px;
  /* background: #ecf3ff; */
  color: #013e7f;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

@media (min-width: 450px) {
  #features .box-item .icon i {
    line-height: 30px;
    background: #ecf3ff;
    color: #145407;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

#features .box-item:hover i {
  background: #145407;
  color: #fff;
}

#features .box-item .text h5 {
  cursor: pointer;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: rgb(43, 43, 43);
  line-height: 26px;
  font-size: 18px;
  text-align: left;
  vertical-align: baseline;
}

#features .box-item:hover {
  box-shadow: 0 10px 22px 10px rgba(27, 38, 49, 0.1);
}

/* #features .show-box {
  margin-top: 50px;
} */

#features .show-box img {
  width: 100%;
  border-radius: 5%;
  box-shadow: 0 10px 22px 10px rgb(20 84 7 / 26%);
}

/* Award */

#topics {
  background-image: radial-gradient(#000, #00000000),
    url("../img/awardbg2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#topics .kuku h2.special {
  position: relative;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  color: #ffffff;
}

#topics .kuke h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700px;
  /* color: rgb(255, 255, 255); */
  line-height: 49px;
  /* font-size: 26px; */
  text-align: center;
  vertical-align: baseline;
  text-transform: capitalize;
  color: #fff;
  filter: drop-shadow(4px 4px 0px black);
}

#topics .gold-text {
  color: #d5ad6d;
  background: -webkit-linear-gradient(#ecd355, transparent),
    -webkit-linear-gradient(top, #f8e766 0%, #f8e766 26%, rgba(226, 186, 120, 1)
          35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1)
          100%);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 55px #000);
}

#topics .card{
  box-shadow: 0 0 4px #fff;
  background-color: #0000008f;
}

#topics .card ul li{
  border-bottom: 1px solid #fff;
   border-top: 1px solid #fff;
  padding-bottom: 10px;
  padding-top: 10px;
}

#topics .card h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  pointer-events: none;
  opacity: 1;
  text-align: center;
}

.topics.container {
  background-color: white;
}

.topics .content h3,
.topics .content h5 {
  color: #ffffff;
}

.car {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: 0.5s;
}

.car .circ {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.car .circ::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -3px;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: circle(80px at center);
  transition: 0.5s;
}

.car:hover .circ::before {
  background: #ffffffc9;
  clip-path: circle(300px at center);
}

.car img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 200px;
  pointer-events: none;
  transition: 0.5s;
}

.car:hover img {
  left: 84%;
  height: 170px;
}

.car .conten {
  position: relative;
  width: 75%;
  padding: 20px 20px 20px 40px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.car:hover .conten {
  left: -2%;
  opacity: 1;
  visibility: visible;
}

.car .conten h2 {
  color: #000;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 700;
  margin-top: 15px;
}

.car .conten p {
  color: #000;
  line-height: 16px;
  font-size: 15px;
  text-align: start;
  font-weight: 600;
}

.car .conten a {
  position: relative;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  margin-top: 5px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .car {
    width: auto;
    max-width: 350px;
    align-items: flex-start;
    margin: 10px;
  }

  .car:hover {
    height: 370px;
  }

  .car .conten {
    width: 100%;
    left: 0;
    padding: 30px;
  }

  .car:hover img {
    top: 50%;
    left: 20%;
    height: 180px;
  }
}

@media (max-width: 420px) {
  .car .conten {
    padding: 40px;
  }
}

.gold-text {
  color: #d5ad6d;
  /*if no support for background-clip*/

  background: -webkit-linear-gradient(#ecd355, transparent),
    -webkit-linear-gradient(left, #f8e766 0%, #f8e766 26%, rgba(
            226,
            186,
            120,
            1
          )
          35%, #f8e766 45%, rgba(145, 112, 59, 1) 61%, rgba(213, 173, 109, 1)
          100%);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.Flexible-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.Flexible-container iframe,
.Flexible-container object,
.Flexible-container video,
/* for html5 video embeds */
.Flexible-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topics .wrapper {
  position: absolute;

  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 650px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topics .card {
  flex: 1;
  flex-basis: 300px;
  flex-grow: 0;
  height: 100%;
  width: 100%;
  /* max-width: 650px; */
  background: transparent;
  /* border: 2px solid #fff; */
  /* box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.5); */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  overflow: hidden;
  position: relative;
}

.topics .card img {
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  filter: brightness(150%);
}

.topics .descriptions {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  transition: all 0.7s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
  clip-path: circle(0% at 100% 100%);
}

.topics .descriptions h4 {
  /* font-size: 20px; */
  font-weight: 500;
  color: #ffffff;
}

.topics .card:hover .descriptions {
  left: 0px;
  transition: all 0.3s ease-in-out;
  background-color: #000000da;
  clip-path: circle(75%);
}

.topics .card:hover {
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  transform: scale(0.97);
}

.topics .card:hover img {
  transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  /* transform: scale(1.6) rotate(20deg); */
  filter: blur(3px);
}

.topics .card p {
  /* line-height: 24px;
  height: 70%; */
  margin-top: 10px;
  font-weight: 500;
  color: #ffffff;
  line-height: 20px;
  font-size: 16px;
}

.topics .card button {
  width: fit-content;
  height: 50px;
  cursor: pointer;
  border-style: none;
  background-color: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
}

.topics .card button a {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

.topics .card button:hover {
  transform: scale(0.90) translateX(-5px);
  transition: all 0.5s ease-in-out;
}

/* why sponsor */
.values {
  background: 
    linear-gradient(180deg, #ffffff, #ffffffc2, #ffffff),
    url('../img/speakerbg.png');
    /* background-attachment: fixed; */
  background-size: contain;
}

.values .overview1 h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600px;
  /* color: rgb(255, 255, 255); */
  line-height: 31px;
  /* font-size: 26px; */
  text-align: center;
  vertical-align: baseline;
}

.values .overview1 h5 span{
  color: #006633;
  font-weight: 700;
  font-size: 100%;
}

.values .box {
  padding: 10px;
  box-shadow: 0px 0 15px rgba(1, 41, 112, 0.2);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  transition: 0.5s;
  transform: scale(1);
}

.values .box h3 {
  font-size: 20px;
  margin-top: 15px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 15px rgba(1, 41, 112, 0.7);
}

.values .box:hover img {
  transform: scale(0.8);
}

.values .overview p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: rgb(43, 43, 43);
  line-height: 25px;
  font-size: 17px;
  text-align: left;
  vertical-align: baseline;
}

.blog-card {
  display: flex;
  flex-direction: column;
  /* margin: 1rem auto; */
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.8);
  margin-bottom: 5%;
  background: #fff;
  /* line-height: 1.4; */
  /* font-family: sans-serif; */
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  min-height: 250px;
}

.blog-card a {
  color: inherit;
}

.blog-card a:hover {
  color: #5ad67d;
}

.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}

.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}

.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}

.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}

.blog-card .details a {
  -webkit-text-decoration: dotted underline;
  text-decoration: dotted underline;
}

.blog-card .details ul li {
  display: inline-block;
}

.blog-card .details .author:before {
  font-family: "Montserrat", sans-serif;
  margin-right: 10px;
  content: "ï€‡";
}

.blog-card .details .date:before {
  font-family: "Montserrat", sans-serif;
  margin-right: 10px;
  content: "ï„³";
}

.blog-card .details .tags ul:before {
  font-family: "Montserrat", sans-serif;
  content: "ï€«";
  margin-right: 10px;
}

.blog-card .details .tags li {
  margin-right: 2px;
}

.blog-card .details .tags li:first-child {
  margin-left: -4px;
}

.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

.blog-card .description h1,
.blog-card .description h2 {
  font-family: "Montserrat", sans-serif;
}

.blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}

.blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}

.blog-card .description .read-more {
  text-align: right;
}

.blog-card .description .read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}

.blog-card .description .read-more a:after {
  content: "ï¡";
  font-family: "Montserrat", sans-serif;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}

.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}

.blog-card p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: rgb(43, 43, 43);
  line-height: 20px;
  font-size: 16px;
  text-align: left;
  vertical-align: baseline;
}

.blog-card p:first-of-type {
  margin-top: 1.25rem;
}

.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: -webkit-radial-gradient(#061c00, #0f9b0f);
  width: 306px;
  top: -0.75rem;
  border-radius: 3px;
}

.blog-card:hover .details {
  left: 0%;
}

@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }

  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }

  .blog-card .description {
    flex-basis: 60%;
  }

  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .blog-card.alt {
    flex-direction: row-reverse;
  }

  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }

  .blog-card.alt .details {
    padding-left: 25px;
  }
}

.our_feature_sec {
  background: #f8f4fe;
  padding: 60px 0px;
  padding-bottom: 200px;
}
.our_feat {
  margin: 0;
  text-align: center;
  font-size: 37px;
  color: #000;
  line-height: 58px;
  letter-spacing: 0.3px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 40px;
}
.our_section {
  position: relative;
}
.our_section::after {
  position: absolute;
  content: "";
  border-left: 2px dashed #0f9b0f;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: table;
}
.main_lending_box {
  position: relative;
}
.main_lending_box::after {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #0f9b0f;
  width: 40%;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
}
.main_lending_box::before {
  position: absolute;
  content: "";
  background: #0f9b0f;
  width: 23px;
  height: 23px;
  right: -23px;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.main_lending_box_01 {
  display: flex;
  justify-content: end;
  margin-top: 320px;
  position: relative;
}
.main_lending_box_01::after {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #0f9b0f;
  width: 34%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  left: 0;
}
.main_lending_box_01::before {
  position: absolute;
  content: "";
  background: #0f9b0f;
  width: 23px;
  height: 23px;
  left: -23px;
  border-radius: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.lending_section {
  background: #fff;
  width: 420px;
  text-align: center;
  max-width: 420px;
  padding: 10px;
  position: relative;
  z-index: 9;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
}
.our_feat_img {
  margin-bottom: 50px;
}
.lending_text .lend_text {
  color: #0f9b0f;
  font-size: 25px;
  font-weight: 500;
  /* letter-spacing: 0.50px; */
  /* text-transform: uppercase;
  font-family: 'Roboto', sans-serif; */
  margin-bottom: 10px;
}
.lending_text p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 25px;
  /* letter-spacing: 0.30px;
  font-family: 'Roboto', sans-serif; */
  margin-bottom: 60px;
}
.main_lending_box.lending_second_box {
  margin-top: -185px;
}
.main_lending_box_01.lending_third_box {
  margin-top: 130px;
}

@media only screen and (max-width: 768px) {
  .lending_section {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
  }

  .main_lending_box {
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: table;
  }

  .main_lending_box {
    margin-bottom: 30px;
  }

  .main_lending_box_01 {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .main_lending_box {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .lending_section {
    width: 240px;
    max-width: 240px;
  }
}

@media only screen and (max-width: 1200px) {
  .lending_section {
    width: 330px;
    max-width: 330px;
  }
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 992px) {
  .lending_text p {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .ico_sec .ico_text br,
  .ico_sec p br,
  .main_lending_box_01::before,
  .main_lending_box_01::after,
  .our_section::after,
  .main_lending_box::after,
  .main_lending_box::before,
  .main_no_box::after,
  .loan_01::after,
  .loan_03::after,
  .loan_03::before,
  .idea_text br,
  .road_title br,
  #video-section .video-img::after {
    display: none;
  }
  .main_lending_box {
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: table;
  }

  .main_lending_box_01 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .main_lending_box {
    margin-bottom: 30px;
  }
  .main_lending_box_01.lending_third_box {
    margin-top: 0px;
  }
  .main_lending_box.lending_second_box {
    margin-top: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .lending_section {
    width: 330px;
    max-width: 330px;
  }
}

@media only screen and (max-width: 992px) {
  .lending_section {
    width: 240px;
    max-width: 240px;
  }
  .lending_text p {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .lending_section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 420px) {
  .lending_section {
    width: 100%;
    max-width: 100%;
  }
}
/* FOOTER */

.site-footer {
  background: linear-gradient(50deg, #061f01, #061f01);
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer h3 .site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer a {
  overflow-wrap: break-word;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #737373;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #061f01;
  box-shadow: 0 0 3px #fff;
}

.copyright-text {
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.facebook:hover {
  background-color: #3b5998;
}

.social-icons a.twitter:hover {
  background-color: #000;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.youtube:hover {
  background-color: red;
}

.social-icons a.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

/* venue */

#contact2 {
  background-color: #fffce0;
}

.contact2 .info-box {
  color: #fff;
  background: linear-gradient(50deg, #061f01, #0f960f);
  padding: 30px;
}

.contact2 .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #fff;
}

.contact2 .info-box h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact2 .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffff;
}

#register {
  background-color: #fffce0;
}
 .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  /* letter-spacing: 1px; */
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 2px dashed #083c04;
  background: #fff;
  color: #083c04;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
 .btn-get-started:hover {
  background-image: linear-gradient(50deg, #061f01, #0f960f);
  color: #fff;
  border: none;
}

#register .section-title {
  margin-bottom: 80px;
  background: -webkit-radial-gradient(#ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#nominate .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  /* letter-spacing: 1px; */
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 20px;
  border: 2px dashed #083c04;
  background: #fff;
  color: #083c04;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

#nominate .btn-get-started:hover {
  background-image: linear-gradient(50deg, #061f01, #0f960f);
  color: #fff;
  border: none;
}

.section-bg1 {
  background-image: linear-gradient(180deg, #fffce0, #fffce0);
}

/* partners */

/* #partner {
  background-image: linear-gradient(180deg, #fffce0, #fffce0, #fffce000);
} */

#partner .card_content {
  padding: 20px;
  text-align: center;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: relative;
  /* margin-bottom: 40px; */
  z-index: 1;
  background-color: #fff;
  border: 2px solid #119c11;
  border-radius: 5px;
}

#partner .card_content:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border: 2px solid #7f3669;
}

@media (max-width:771px) {
  h2{
    font-size: 19px;
  }
  h3{
    font-size: 16px;
  }
  h4{
    font-size: 15px;
  }
  h5{
    font-size: 13px;
  }
  h6{
    font-size: 13px;
    line-height: 15px;
  }
  #hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    text-transform: none;
    font-weight: 600;
    font-size: 15px;
    /* letter-spacing: 1px; */
    /* display: inline-block; */
    padding: 5px 10px;
    border-radius: 50px;
    transition: 0.5s;
    margin-bottom: 20px;
    border: 1px dashed #083c04;
    background-image: linear-gradient(50deg, #fff, #aaa);
    color: #061f01;
    text-decoration: none;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 2px 2px 0 #083c04;
}
.btn-get-started {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    /* letter-spacing: 1px; */
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    transition: 0.5s;
    margin-bottom: 20px;
    border: 2px dashed #083c04;
    background: #fff;
    color: #083c04;
    text-decoration: none;
    width: 100%;
    text-align: center;
}
/* Make reCAPTCHA responsive */
.g-recaptcha {
    transform: scale(0.85);  /* Adjust scale as needed */
    transform-origin: 0 0;
}

/* Ensure container doesn’t overflow */
.g-recaptcha > div {
    max-width: 100% !important;
    overflow: hidden;
}
}

@media(max-width:771px){
  .topics li {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}
.blog-card {
    display: flex
;
    flex-direction: column;
    /* margin: 1rem auto; */
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.8);
    margin-bottom: 5%;
    background: #fff;
    /* line-height: 1.4; */
    /* font-family: sans-serif; */
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
    min-height: 100px;
}
.blog-card p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: rgb(43, 43, 43);
    line-height: 16px;
    font-size: 13px;
    text-align: left;
    vertical-align: baseline;
}
}

/* #partners .content h4 {
  font-size: 18px;
  font-weight: 700;
} */
