:root{
      --primary-color: #007c12;
      --secondary-color: #87b516;
  }

  .nav-link{
    font-weight:bold;
    color: #212529 !important;
    transition: color .3s ease-in-out;
  }

  .nav-link:hover{
    color: var(--primary-color) !important;
  }

  .dropdown-item:hover{
    color: var(--secondary-color) !important;
  }

/* ==============NAVBAR==================*/
.main_header_area{
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.header_top{
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0 1rem;
}
.header_top .header_top_inner {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.149);
}
.header_top .header_top_inner ul li {
  display: inline-block;
  font-size: 90%;
  font-weight: bold;
  color: #fff;
  padding: 10px;
}
.header_top .header_top_inner ul li a {
  color: #fff;
  padding: 0 .8rem;
  position: relative;
}
.header_top .header_top_inner ul li a:hover {
  color: #fff;
}


.navbar .nav .nav-item a:after {
  display: none;
}
.navbar .nav .nav-item {
  position: relative;
}
.navbar .nav .nav-item ul {
  border: none;
  padding: 0px 15px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  margin: 0px;
}
.dropdown-menu{
  border: 0px;
  padding: 0px;
  box-shadow: 0 4px 12px rgba(33, 44, 55, 0.06);
  top: calc(100% + 10px);
  border-radius: 0px;
}
.dropdown-menu a.dropdown-item{
  font-weight: 500;
  font-size: 80%;
  padding: 10px;
  letter-spacing: 1px;
  white-space: inherit;
}
@media (min-width: 992px) {
  .navbar .nav .nav-item ul {
    position: absolute;
    top: 80px;
    left: 0;
    min-width: 130px;
    background: #fff;
    -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: left;
    opacity: 0;
    -webkit-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
    transition-delay: 200ms;
  }
  .dropdown-submenu{
    position: relative;
  }
  .dropdown-submenu .dropdown-menu{
    top: 100%;
  }
  .dropdown-submenu ul.dropdown-menu{
    visibility: hidden!important;
  }
  .dropdown-submenu:hover ul.dropdown-menu{
    visibility: visible!important;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .8rem;
    padding-left: .8rem;
  }

  .navbar-nav .nav-item{
    position: relative;
  }
  .navbar-nav .nav-item:last-child::after{
    display: none;
  }
}
.navbar .nav .nav-item ul li {
  float: none;
  margin-right: 0px;
  margin-left: 0px;
}
.navbar .nav .nav-item ul li a {
  line-height: 40px;
  /* color: #242424; */
  padding: 0px 15px;
  text-transform: capitalize;
  -webkit-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  display: block;
}
.navbar .nav .nav-item ul li:last-child {
  border-bottom: none;
}
.navbar-light .navbar-nav .nav-link {
  font-weight: 600;
  font-size: 95%;
  letter-spacing: 1px;
}
.dropdown-item:focus, .dropdown-item:hover {
 background-color: #f3f3f3;
}

/*@media (min-width: 992px) {*/
.navbar .nav .nav-item:hover ul {
  top: 57px;
  visibility: visible;
  opacity: 1;
  transition-delay: 0ms;
}
/*}*/

.navbar-toggler[aria-expanded="false"] span:nth-child(2) {
  opacity: 1;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: 7.7px;
}
.navbar-toggler[aria-expanded="true"] span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 4px;
  position: relative;
}
.navbar-toggler {
  border: 0px;
  padding: 0px;
  cursor: pointer;
}
.navbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: #232323;
  margin: auto;
  margin-bottom: 4px;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  cursor: pointer;
}
.navbar-toggler span:last-child {
  margin-bottom: 0px;
}
.navbar .navbar-brand > img{
  width: 170px;
}

/*=============== affix css ===============*/
.navbar_fixed {
  width: 100%;
  left: 0;
  top: -70px;
  background: #fff;
  position: fixed;

  border-bottom: 0px;
  z-index: 999;
  -webkit-transform: translateY(70px);
  -ms-transform: translateY(70px);
  transform: translateY(70px);
  transition: background 500ms linear, -webkit-transform 1000ms ease;
  -webkit-transition: background 500ms linear, -webkit-transform 1000ms ease;
  -o-transition: transform 1000ms ease, background 500ms linear;
  transition: transform 1000ms ease, background 500ms linear;
  transition: transform 1000ms ease, background 500ms linear, -webkit-transform 1000ms ease;
  -webkit-transition: transform 1000ms ease, background 500ms linear;
  -webkit-backface-visibility: hidden;
}
.navbar_fixed .navbar .navbar-brand img {
  width: 130px;
}
.navbar_fixed .navbar .navbar-toggler span {
  background: #0D2891;
}

/* ==============NAVBAR==================*/

        .carousel-itemm {
          height: 100vh;
          min-height: 350px;
          background: no-repeat center center scroll;
          -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
          z-index: -1 !important;
          }

          .carousel-caption{
            /* position: relative !important; */
            text-align: left;
            width: 75%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }

          .carousel-caption h6{
              margin-bottom: 15px;
              font-size: 22px;
              text-transform: uppercase;
              font-weight: 700;
              letter-spacing: 1px;
              color: #a4c639;
              animation: fadeOutRight 1s both;
          }

          .carousel-caption h4{
            margin-bottom: 30px;
            text-transform: uppercase;
            font-size: 70px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: #FFF;
            overflow: hidden;
            animation: fadeOutLeft 1s both;
          }

          .carousel-caption p{
            max-width: 700px;
            color: #fff;
            font-size: 15px;
            font-weight: 400;
            line-height: 30px;
            margin-bottom: 40px;
          }

          .carousel-caption  a{
            background-color: #a4c639;
            color: #fff;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            display: inline-block;
            transition: all 0.3s;
            text-decoration: none!important;
          }

          .border-bottom{
            border-bottom: 5px solid var(--primary-color) !important;
          }

          .scroll-discover{
            display: block;
            position: absolute;
            left: 50%;
            bottom: -80px;
            margin-left: -7px;
            width: 15px;
            height: 130px;
            line-height: 1.6;
            font-size: 1.4rem;
            font-family: -apple-system,BlinkMacSystemFont,open sans,sans-serif;
            font-weight: 400;
            color: #fcdb5a;
          }

          .scroll-discover:after {
              content: "";
              position: absolute;
              width: 5px;
              background-color: var(--secondary-color);
              -webkit-border-radius: 5px;
              border-radius: 5px;
          }

          .scroll-discover:before {
              content: "";
              position: absolute;
              width: 5px;
              background-color: var(--secondary-color);
              -webkit-border-radius: 5px;
              border-radius: 5px;
          }


          .scroll-discover:before {
            top: 10px;
            left: 0;
            height: 75px;
          }
          .scroll-discover:after {
              right: 0;
              height: 100%;
          }

          body{
            font-family: Raleway,sans-serif;
          }


          @media (max-width: 1200px)
          {
            .carousel-itemm {
              height: 50vh;
            }
            .carousel-caption h4{
              font-size: 50px;
            }
          }

          @media (max-width: 600px)
          {
            .carousel-itemm {
              height: 20vh;
              min-height: 240px;
              }
            .carousel-caption h4{
              font-size: 30px;
            }
          }

          .heading h2{
            /* font-size: 4rem; */
            font-weight: 900;
            font-family: Raleway,sans-serif;
            text-transform: uppercase;
            color: var(--primary-color);
            transition: color .3s ease-in-out;
            word-spacing: 0;
          }

          .heading h2 span{
            font-weight: 100;
          }

          .heading  p{
            line-height: 1.4;
            /* font-size: 1.8rem; */
            font-weight: 300;
            color: #b3b3b3;
          }

          .spimg{
                height: 60px;
                margin-bottom: 20px;
                margin-top: 20px;
          }

          h5{
            font-size: 1rem;
            margin-top: 0;
            margin-bottom: 10px;
            font-weight: 700;
            text-transform: none;
          }

          .iitem:hover:before {
              border-color: #fcdb5a;
          }

          .iitem:before {
              content: "";
              position: absolute;
              left: 50%;
              top: -15px;
              bottom: -15px;
              border: 5px solid transparent;
              margin-left: -25px;
              padding: 0 20px;
              z-index: -1;
              -webkit-transition: border-color .3s ease-in-out;
              -o-transition: border-color .3s ease-in-out;
              transition: border-color .3s ease-in-out;
          }


          		.profile-card {
          		    max-width: 300px;
          		    background-color: #FFF;
          		    border-radius: 5px;
          		    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          		    overflow: hidden;
          		    position: relative;
          		    margin: 10px auto;
          		    cursor: pointer;
          		}

          		.profile-card img {
          		    transition: all 0.25s linear;
          		}

          		.profile-card .profile-content {
          		    position: relative;
          		    padding: 15px;
          		    background-color: #FFF;
          		}


          		.profile-card .profile-content::before {
          		    content: "";
          		    position: absolute;
          		    height: 20px;
          		    top: -10px;
          		    left: 0px;
          		    right: 0px;
          		    background-color: #FFF;
          		    z-index: 0;
          		    transform: skewY(3deg);
          		}

          		.profile-card:hover img {
          		    transform: rotate(5deg) scale(1.1, 1.1);
          		    filter: brightness(110%);
          		}

              .git-bg{
                background-color: #333;
              }

              .h2-w{
                color: #fff !important;
              }

              .border-button {
                background-color: transparent;
                color: #fff;
                border: 2px solid var(--primary-color);
                font-size: 13px;
                text-transform: uppercase;
                font-weight: 700;
                padding: 10px 28px;
                border-radius: 30px;
                display: inline-block;
                transition: all 0.3s;
              }

              .border-button:hover {
                background-color: var(--secondary-color);
                color: #4f4a37;
              }

              .testimonails{
                background-image: url('../../assets/imgs/testi_bg_1.png');
                background-color: #f7f7f7;
                /* background-repeat: no-repeat, repeat; */
                /* height: 500px; /* You must set a specified height */
                /* background-position: center; /* Center the image */
                background-repeat: no-repeat; /* Do not repeat the image */
                background-size: cover;
              }
              .blockquote-custom {
                  position: relative;
                  font-size: 1.1rem;
                }

              .blockquote-custom-icon {
                  width: 50px;
                  height: 50px;
                  border-radius: 50%;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  position: absolute;
                  top: -25px;
                  left: 50px;
                }

                .carousel-innerr{
                  min-height: 500px !important;
                }

                @media (max-width: 700px)
                {
                  .carousel-innerr{
                    min-height: 600px !important;
                  }
                }

                .footer-social-icon{
                  text-decoration: none !important;
                  color: #fff;
                  transition: color .3s ease-in-out;
                }

                .footer-social-icon:hover{
                  color: var(--primary-color) !important;
                }

                .footer-a{
                    color: #333333 !important;
                    transition: color .3s ease-in-out;
                }

                .footer-a:hover{
                  color: var(--primary-color) !important;
                }

                .bgcolor-w{
              		background-color: var(--secondary-color);
              	}

              	.cont-num{
              		line-height: 1;
                  font-size: 2rem;
                  font-weight: 900;
                  color: #000;
              	}

              	.cont-text{
              		color: #000;
              		line-height: 1.2;
                  font-size: 1rem;
                  font-weight: 700;
                  font-family: Raleway,sans-serif;
              	}

              	.vcenter{
              		display: flex !important;
              	  justify-content: center !important;
              	  align-items: center !important;
              	}

                .form-controll{
                  border: none !important;
                  border-radius: 0px !important;
                  border-bottom: 1px solid var(--secondary-color) !important;
                  background-color: #333 !important;
                  color:#FFF;
                }
                .form-controll:focus {
                  color: #FFF !important;
                  background-color: #333 !important;
                  border-bottom: 2px solid var(--secondary-color) !important;
                  outline: 0 !important;
                  box-shadow: none !important;
                }

                /* blog CSS */
                .post-content{
                  margin: 0 20px;
                }
                .post-meta{
                  font-size: 12px;
                  font-weight: 400;
                  text-transform: uppercase;
                  letter-spacing: 1.6px;
                  margin-bottom: 20px;
                  /* font-family: "Teko", sans-serif; */
                  padding: 20px 20px;
                  background: #fff;
                  margin-top: -30px;
                  position: relative;
                  z-index: 1;
                  -webkit-box-shadow: 0px 20px 20px 0 rgba(0, 0, 0, 0.03);
                  box-shadow: 0px 20px 20px 0 rgba(0, 0, 0, 0.1);
                  border-radius: 8px;
                  -webkit-border-radius: 8px;

                }

                .pricolor{
                  color:var(--secondary-color) !important;
                }

                .post-title{
                  display: block;
                  text-transform: uppercase;
                  margin-top: 30px;
                  margin-bottom: 10px;
                  margin-top: 10px;
                  transition: color .3s ease-in-out;

                }

                .post-title a{
                  /* line-height: 34px; */
                  font-weight: 700;
                  font-size: 1rem;
                  color: #222429;
                  transition: all 0.35s;
                  text-decoration: none;
                  background-color: transparent;
                }
                .post-body{
                  margin-bottom: 20px;
                }

                .post-readmore{
                    transition: background .3s ease-in-out;
                }
                .post-readmore a {
                  width: 50px;
                  height: 50px;
                  line-height: 55px;
                  border-radius: 50%;
                  background: #D4D4D5;
                  color: #fff;
                  display: inline-block;
                  text-align: center;
                  font-size: 20px;
                  text-decoration: none;
                  transition: background .3s ease-in-out;
                }

                .card{
                  border-radius: 10px;
                  transition: border .1s ease-in-out;
                }

                .card-img-top{
                  border-radius: 10px;
                }

                .blogsection .card:hover{
                  border: 2px solid var(--secondary-color);
                }

                .blogsection .card:hover .post-title{
                  color: var(--primary-color);
                }

                .blogsection .card:hover .post-readmore a{
                  background: var(--primary-color);
                }
