body {
    font-family: Lato, sans-serif;
    color: #888;
    background-color: #111;
    scroll-behavior: smooth;
}
a {
    color: #5cba47;
    text-decoration: none;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Lato, sans-serif;
    color: #fff;
}
.container {
    background-color: #212121;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 20px;
    margin-right: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    margin-left: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    height: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #6d6d6d;
    position: relative;
}
img {
    max-width: 100%;
}
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:after,
#preloader:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after {
    left: auto;
    right: 0;
}
#preloader .loader_line {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000;
    -webkit-animation: lineheight 1s ease-in-out 0s forwards;
    -o-animation: lineheight 1s ease-in-out 0s forwards;
    animation: lineheight 1s ease-in-out 0s forwards;
}
.loader_line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #bbb;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1.2s linear 0s infinite;
    -o-animation: lineround 1.2s linear 0s infinite;
    animation: lineround 1.2s linear 0s infinite;
    animation-delay: 2s;
}
@keyframes lineheight {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}
@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}
.preloaded .loader_line:after {
    opacity: 0;
}
.preloaded .loader_line {
    opacity: 0;
    height: 100% !important;
}
.preloaded:after,
.preloaded:before {
    -webkit-animation: preloadedzero 0.3s ease-in-out 0.5s forwards;
    -o-animation: preloadedzero 0.3s ease-in-out 0.5s forwards;
    animation: preloadedzero 0.3s ease-in-out 0.5s forwards;
}
@keyframes preloadedzero {
    0% {
        width: 50%;
    }
    100% {
        width: 0%;
    }
}
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5cba47;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #fff;
}
.back-to-top:hover i {
    color: #5cba47;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
#header {
    z-index: 999;
    transition: all 0.5s;
    background: #212121;
    position: fixed;
    width: 260px;
    height: 100%;
}
#header.header-transparent {
    background: #212121;
}
#header.header-scrolled {
    background: #212121;
}
#header .social-links {
    position: absolute;
    bottom: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    right: 0;
    left: 0;
    display: flex;
    transition: 0.3s;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
#header .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #5cba47;
    color: #fff;
    line-height: 1;
    padding: 9px 0;
    border-radius: 50%;
    text-align: center;
    margin: 0 8px;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#header .social-links a:hover {
    background: #fff;
    color: #5cba47;
    text-decoration: none;
}
#header .profile img {
    margin: 20px auto 20px auto;
    display: block;
    max-width: 190px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}
#header .profile h1 {
    font-size: 25px;
    padding: 10px 0;
    margin: 0;
    line-height: 1;
    font-weight: 600;
	text-transform: uppercase;
	font: normal 700 24px/1 Oswald;
    -moz-text-align-last: center;
    text-align-last: center;
    border-bottom: 1px solid #5cba47;
    border-top: 1px solid #5cba47;
}
.navbar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(140vh - 500px);
    width: 100%;
    padding: 0;
    padding-top: 15px;
    overflow: auto;
}
.navbar ul {
    margin: 0;
    padding: 0;
	margin-top:-20px;
    list-style: none;
    align-items: center;
}
.navbar li {
    margin: 0 0 15px 0;
    padding: 0;
    display: flex;
    background: #111;
    padding: 5px 10px;
    border-radius: 10px;
    align-items: center;
    font-weight: 700;
}
.navbar li a,
.navbar li a:focus {
    text-decoration: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    padding: 5px 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar ul li a:after {
    content: "";
    position: absolute;
    height: 1px;
    bottom: 7px;
    left: 0;
    right: 0;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar ul li a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    display: flex;
    -ms-transform: scaleX(1);
    left: 36px;
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.navbar a i,
.navbar a:focus i {
    font-size: 20px;
    line-height: 0;
    margin-right: 15px;
}
.navbar .active,
.navbar .active i,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover > a {
    color: #5cba47;
}
.mobile-nav-toggle {
    color: #5cba47;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    transition: 0.5s;
    z-index: 999;
}
.navbar-mobile ul {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    background: #111;
    padding: 10px 0;
    border-radius: 20px;
    overflow-y: auto;
    transition: 0.6s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 14px;
    color: #3b434a;
}
.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover > a {
    color: #5cba47;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}
#main {
    width: calc(100% - 310px);
    margin-left: 285px;
}
#hero .container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
#hero .row {
    z-index: 1;
}
.background {
    position: absolute;
    height: 1001px;
    width: 400px;
    background: #5cba47;
    z-index: 0;
    left: -170px;
    top: -410px;
    transform: rotate(45deg);
}
.hero-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-img {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    background: center;
    min-height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
}
.hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    background: center;
    min-height: 600px;
    overflow: hidden;
}
.glitch-img-warp {
    position: relative;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    margin: 40px auto;
    max-width: 1000px;
    min-height: 600px;
    overflow: hidden;
    border-radius: 10px;
}
.glitch-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero-bg1.jpg");
    top: 0;
    left: 0;
    background-position: center;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}
.water-js {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-image: url("../img/hero-bg4.jpg");
}
.particles-js {
    position: relative;
}
.particles-js canvas {
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero-img img {
    object-fit: cover;
    display: block;
    min-height: 600px;
}
.hero-box h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-weight: 700;
    font-family: Lato, sans-serif;
    color: #fff;
}
.hero-box h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-box span {
    color: #5cba47;
}
.hero-box .btn-scroll {
    transition: 0.4s;
    color: rgba(255, 255, 255, 0.6);
    animation: up-down 1s ease-in-out infinite alternate-reverse both;
}
.hero-box .btn-scroll i {
    font-size: 48px;
}
.hero-box .btn-scroll:hover {
    color: #5cba47;
}
@-webkit-keyframes up-down {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}
@keyframes up-down {
    0% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(-5px);
    }
}
section {
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}
.pt-15 {
    padding-top: 30px;
}
.section-title {
    text-align: center;
    padding: 30px 0;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #5cba47;
    position: relative;
    z-index: 2;
}
.section-title span {
    position: absolute;
    top: 25px;
    color: #8888 !important;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 60px;
    text-transform: capitalize;
    line-height: 0;
}
.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.breadcrumbs {
    padding: 20px 0 0 0;
    min-height: 40px;
}
.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 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: "/";
}
.about .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #3b434a;
    text-transform: uppercase;
}
.about .content ul {
    list-style: none;
    padding: 0;
}
.about .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.about .content ul strong {
    margin-right: 10px;
    color: #fff;
}
.about .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: #5cba47;
    line-height: 0;
}
.about .content p:last-child {
    margin-bottom: 0;
}
.about .content .count-box {
    width: 100%;
    margin-top: 20px;
}
.about .content .count-box i {
    display: block;
    font-size: 36px;
    float: left;
}
.about .content .count-box span {
    font-size: 36px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-left: 72px;
    margin-top: -44px;
}
.about .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-family: Lato, sans-serif;
    font-size: 14px;
}
.about .content .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #5d6a75;
    font-size: 15px;
    font-family: Lato, sans-serif;
    transition: ease-in-out 0.3s;
}
.about .content .count-box a:hover {
    color: #82909c;
}
.about-img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
}
.about .about-img:hover .image {
    transform: scale(1);
    transition: ease-in-out 0.3s;
}
.about .image {
    background: url("../img/chalo1000v2.jpg") center center no-repeat;
    background-size: cover;
    height: 100%;
    transform: scale(1.1);
    border-radius: 20px;
    transition: ease-in-out 0.3s;
}
.about .skills-content {
    margin-top: 30px;
    display: flex;
    width: 100%;
}
.about .skills-content .progress {
    height: 60px;
    display: block;
    background: 0 0;
    width: 100%;
    padding: 0 15px;
    border-radius: 0;
}
.about .skills-content .progress .skill {
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: Lato, sans-serif;
    color: #888;
}
.about .skills-content .progress .skill .val {
    float: right;
    font-style: normal;
}
.about .skills-content .progress-bar-wrap {
    background: #e6e8eb;
    border-radius: 20px;
}
.about .skills-content .progress-bar {
    width: 1px;
    height: 10px;
    border-radius: 20px;
    transition: 3.9s;
    background-color: #5cba47;
}
.resume .section-title {
    margin-top: 30px;
}
.resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}
.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #888;
    position: relative;
}
.resume .resume-item h4 {
    line-height: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5cba47;
    margin-bottom: 10px;
}
.resume .resume-item h5 {
    font-size: 16px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    color: #111;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}
.resume .resume-item ul {
    padding-left: 20px;
}
.resume .resume-item ul li {
    padding-bottom: 10px;
}
.resume .resume-item:last-child {
    padding-bottom: 0;
}
.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #888;
}
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid #fff;
}
.services .icon {
    margin: 0 auto 20px auto;
    padding-top: 17px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    background: #212121;
}
.services .icon i {
    font-size: 36px;
    line-height: 1;
    color: #5cba47;
}
.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.services .title a {
    color: #fff;
    transition: 0.3s;
}
.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}
.services .icon-box:hover {
    border-color: #5cba47;
}
.services .icon-box:hover .icon i {
    color: #fff;
}
.services .icon-box:hover .title a {
    color: #5cba47;
}
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(14, 16, 17, 0.7);
}
.testimonials .section-header {
    margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgb(255 255 255 / 36%);
    margin: 0 auto;
}
.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    color: #fff;
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #5cba47;
    font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
    width: 70%;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5cba47;
}
.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}
.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 0 10px 10px 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    background: #5cba47;
    padding: 7px 10px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border: 2px solid #5cba47;
    border-radius: 10px;
}
.portfolio #portfolio-flters li.filter-active,
.portfolio #portfolio-flters li:hover {
    color: #fff;
    background: #212121;
}
.portfolio .portfolio-item {
    margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}
.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}
.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    bottom: 0;
    z-index: 3;
    right: 12px;
    border-radius: 0 0 20px 20px;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .details-link,
.portfolio .portfolio-item .portfolio-info .preview-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .details-link:hover,
.portfolio .portfolio-item .portfolio-info .preview-link:hover {
    color: #5cba47;
}
.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}
.portfolio-details .portfolio-details-slider img {
    width: 100%;
    border-radius: 20px;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #5cba47;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5cba47;
}
.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    border-radius: 20px;
}
.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #5cba47;
}
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    margin: 0;
}
.portfolio-details .portfolio-info ul li strong {
    color: #fff;
    padding-right: 5px;
}
.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}
.portfolio-details .portfolio-description {
    padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
    padding: 0;
}
.glightbox-clean .gdesc-inner {
    padding: 10px 20px;
}
.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    color: #000;
    margin: 0;
}
.pricing .box {
    padding: 20px;
    transform: scale(0.9);
    background: #111;
    text-align: center;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    border-radius: 5px;
    position: relative;
    transition: ease-in 0.4s;
    overflow: hidden;
}
.pricing .box:hover {
    transform: scale(1);
    transition: ease-in 0.4s;
}
.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    background: #111;
}
.pricing h4 {
    font-size: 36px;
    color: #5cba47;
    font-weight: 600;
    font-family: Lato, sans-serif;
    margin-bottom: 20px;
}
.pricing h4 sup {
    font-size: 20px;
    top: -12px;
    left: -3px;
}
.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}
.pricing ul {
    padding: 0;
    list-style: none;
    color: #888;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}
.pricing ul li {
    padding-bottom: 16px;
}
.pricing ul i {
    color: #5cba47;
    font-size: 18px;
    padding-right: 4px;
}
.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}
.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #111;
    text-align: center;
}
.pricing .btn-buy {
    background: #5cba47;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    border: 1px solid #5cba47;
    font-size: 14px;
    font-weight: 400;
    font-family: Lato, sans-serif;
    font-weight: 600;
    transition: 0.3s;
}
.pricing .btn-buy:hover {
    background: #111;
    color: #fff;
    border: 1px solid #5cba47;
}
.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #5cba47;
    color: #fff;
}
.contact .info-box {
    text-align: center;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    padding: 20px 0 30px 0;
    border-radius: 10px;
    margin-top: 20px;
}
.contact .info-box i.fas {
    font-size: 24px;
    color: #5cba47;
    border-radius: 50%;
    padding: 15px;
    background: #111;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #777;
    font-weight: 700;
    margin: 10px 0;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}
.contact .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}
.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #888;
    line-height: 1;
    background: #111;
    margin: 0 8px;
    transition: 0.3s;
    padding: 14px;
    border-radius: 50px;
}
.contact .social-links a:hover {
    color: #fff;
    background: #5cba47;
}
.email-form {
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    padding: 27px;
    border-radius: 5px;
}
.email-form .error-message br + br {
    margin-top: 25px;
}
.email-form input,
.email-form textarea {
    border-radius: 0;
    font-size: 14px;
    background: #212121;
    border: 0;
}
.email-form .form-control {
    background-color: #212121;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 85%);
    color: #fff;
}
.form-group {
    margin-bottom: 20px;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:active,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 85%);
    -webkit-text-fill-color: #777 !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}
.email-form input,
.email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    color: #fff;
}
.email-form input {
    padding: 10px 15px;
}
.email-form textarea {
    padding: 20px 20px;
}
.email-form button[type="submit"] {
    background: #5cba47;
    border: 0;
    padding: 10px 24px;
    border: 1px solid #5cba47;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}
.email-form button[type="submit"]:hover {
    background: #212121;
    color: #fff;
}
.map {
    border-radius: 20px;
    overflow: hidden;
}
.map iframe {
    width: 100%;
    min-height: 500px;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
#footer {
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 20px;
    padding: 0 0 15px 0;
    position: relative;
}
#footer .container {
    position: relative;
}
#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: Lato, sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}
#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 20px 0;
}
#footer .social-links {
    margin: 0 0 20px 0;
}
#footer .social-links a {
    font-size: 15px;
    display: inline-block;
    background: #5cba47;
    color: #fff;
    line-height: 1;
    padding: 9px 0;
    margin: 0 5px;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    transition: 0.3s;
}
#footer .social-links a:hover {
    background: #fff;
    color: #5cba47;
    text-decoration: none;
}
#footer .copyright {
    margin: 0 0 5px 0;
}
.blog .blog-post {
    border-radius: 10px;
    margin-bottom: 24px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}
.blog-thumb {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}
.blog-thumb img {
    transform: scale(1.2);
    transition: 0.3s;
}
.blog-thumb img:hover {
    transform: scale(1);
}
.down-content {
    padding: 10px 0 0 0;
}
.down-content h4:hover {
    color: #5cba47;
}
.down-content h4:hover a {
    color: #fff;
}
.down-content ul {
    margin-bottom: 0;
    padding: 0 0 0 15px;
}
.down-content p {
    margin-bottom: 0;
}
ul.page-numbers {
    list-style: none;
    text-align: center;
}
ul.page-numbers li {
    display: inline-block;
    margin: 0 5px;
}
ul.page-numbers li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    color: #888;
    border: 1px solid #5cba47;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 5px;
}
ul.page-numbers li a:hover {
    color: #fff;
}
ul.page-numbers li.active a {
    background-color: #5cba47;
    border-color: #5cba47;
    color: #fff;
}
