 

/* CSS Index
-----------------------------------

1. Theme default css
2. Header 
3. Mobile-menu 
4. Banner 
5. Features
6. Feedback
7. Services 
8. Team
9. Faq 
10. Testimonial 
11. Blog
12. Contact
13. Footer
14. Preloader

*/

/* 1. Theme default css */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;500&display=swap");

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #5d5a77;
    font-style: normal;
}

p,
li,
a,
button,
span,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    a:focus,
    .btn:focus,
    .button:focus {
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

    a:hover,
    .portfolio-cat a:hover,
    .footer -menu li a:hover {
        color: #2b96cc;
        text-decoration: none;
    }

a,
button {
    color: #1696e7;
    outline: medium none;
}

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

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
    color: #2c2c2c;
    margin-top: 0px;
    font-style: normal;
    font-weight: 800;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: inherit;
    }

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    /*color: #5d5a77;*/
    color: #2c2c2c;
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

label {
    color: #7e7e7e;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #444;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

/*新增加的分页css*/
.pagination-container {
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}
.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .current {
  background-color: rgb(255 121 8);
  color: white;
  border-color: rgb(255 121 8);
}
.pagination .disabled {
  color: #aaa;
  border-color: #eee;
}


/* Preloader */

#preloader {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 999;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 75px;
    display: inline-block;
    vertical-align: middle;
}

    .loader .loader-outter {
        position: absolute;
        border: 4px solid #ff4b36;
        border-left-color: transparent;
        border-bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
        animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    }

    .loader .loader-inner {
        position: absolute;
        border: 4px solid #ff4b36;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        left: calc(50% - 20px);
        top: calc(50% - 20px);
        border-right: 0;
        border-top-color: transparent;
        -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
        animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    }

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* scrollUp */

.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 105%;
    right: 30px;
    font-size: 16px;
    border-radius: 6px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #6153fc;
    transition: 1s ease;
    border: none;
    opacity: 0;
}

    .scroll-top.open {
        bottom: 30px;
        opacity: 1;
    }

    .scroll-top::after {
        position: absolute;
        z-index: -1;
        content: "";
        top: 100%;
        left: 5%;
        height: 10px;
        width: 90%;
        opacity: 1;
        background: radial-gradient( ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80% );
    }

    .scroll-top:hover {
        background: #ff4b36;
    }

.minsection {
    width: 100%;
    float: left;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cover-background {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    /*background-position: center center !important;*/
    background-position: bottom;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    padding: 7em 0;
}

.content-slider {
    text-align: left;
    width: 89%;
    left: 0em;
    position: relative;
    z-index: 9;
}

.cover-background:before {
    content: "";
    position: absolute;
    background: #021531;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
}

.content-slider h1 {
    color: #fff;
    font-size: 51px;
    font-weight: 500;
    line-height: 60px;
}

.content-slider p {
    color: #fff;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 3em;
}

.content-slider a {
    background: #2d721d;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 22px;
    font-weight: 500;
}

    .content-slider a i {
        margin-left: 10px;
    }

.content-slider .btn span {
    background: #ffffff;
    border: 2px solid #fff;
    color: #fff !important;
}

.left-image {
    width: 100%;
    margin: auto;
}

    .left-image img {
        width: 100%;
        position: relative;
    }

span.cricle {
    width: 140px;
    height: 140px;
    background: #2d721d;
    border-radius: 50%;
    position: absolute;
}

.alltuchtopdown {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.min-bg {
    position: absolute;
    bottom: 12%;
    background: white;
    left: 6%;
    padding: 22px;
    text-align: center;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 10px;
}

    .min-bg:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }

    .min-bg h1 {
        font-size: 57px;
        font-weight: 600;
        margin-top: 0;
        color: #262626;
    }

    .min-bg h3 {
        font-size: 19px;
        font-weight: 500;
        margin-top: 15px;
        color: #262626;
    }

.right-text .linetext {
    font-size: 16px;
    font-weight: 500;
    color: #2d721d;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.right-text h2 {
    font-size: 36px;
    font-weight: 500;
    color: #282828;
    line-height: 43px;
    margin-bottom: 0.5em;
}

.right-text p {
    color: #515151;
    font-size: 16px;
    font-weight: normal !important;
    line-height: 24px;
}

.company-aim {
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}

.com-one {
    width: 100%;
    display: inline-block;
}

.left-side-icon {
    float: left;
    width: 88px;
    height: 91px;
    background: #cb080c;
    border-radius: 9px;
    text-align: center;
    line-height: 91px;
    margin-right: 21px;
}

.right-side-text {
    float: left;
    width: 75%;
}

    .right-side-text h3 {
        color: #043a8b;
        font-size: 23px;
        font-weight: 500;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .right-side-text p {
        font-size: 15px;
    }

.orange {
    background: #2d721d;
}

.orange-btn {
    background: #2d721d;
    color: #fff;
}

    .orange-btn:hover {
        color: #fff;
    }

    .orange-btn i {
        margin-left: 12px;
    }

.orange-btn {
    background: #2d721d;
    color: #fff;
    padding: 19px 22px;
}

.play-video i {
    margin: 0px;
    font-size: 25px;
}

.play-video {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 15px;
}

.linetext {
    position: relative;
}

    .linetext:before {
        content: "";
        width: 36px;
        height: 2px;
        background: #fe6600;
        position: absolute;
        left: 18px;
        top: 4px;
    }

    .linetext:after {
        content: "";
        width: 36px;
        height: 2px;
        background: #fe6600;
        position: absolute;
        left: 3px;
        top: 13px;
    }

.d-button {
    background: #2d721d;
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 22px;
}

    .d-button span {
        background: #ffffff;
        border: 2px solid #fff;
        color: #fff !important;
    }

    .d-button i {
        margin-left: 10px;
    }

.top-section {
    padding: 70px;
    position: relative;
    background-size: cover;
}

.ful-section .col-md-4:before {
    content: "";
    position: absolute;
    background: rgb(1 38 93 / 82%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.d-content {
    position: relative;
    z-index: 34;
}

    .d-content h1 {
        font-size: 96px;
        color: #fff;
        position: relative;
        font-weight: 500;
        padding-bottom: 5px;
        margin-bottom: 25px;
    }

        .d-content h1:before {
            content: "";
            position: absolute;
            width: 54px;
            height: 4px;
            background: #2d721d;
            bottom: 0;
            left: 4px;
        }

    .d-content h4 {
        font-size: 25px;
        color: #fff;
        position: relative;
        font-weight: normal;
        margin-bottom: 17px;
    }

    .d-content p {
        font-size: 15px;
        color: #ffff;
        position: relative;
        font-weight: normal;
        line-height: 24px;
    }

.ful-section .row {
    margin: 0px;
}

.ful-section .col-md-4 {
    padding: 0px;
}

.top-section:before {
    content: "";
    position: absolute;
    background-image: url(../images/right-cr.png);
    width: 153px;
    height: 178px;
    background-size: auto;
    top: 0;
    right: 0;
    z-index: 9;
}

.top-section:after {
    content: "";
    position: absolute;
    background-image: url(../images/left-cr.png);
    width: 176px;
    height: 196px;
    background-size: auto;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.right-text h5 {
    font-size: 17px;
    font-weight: 500;
    color: #4a4949;
}

img {
    max-width: 100%;
}

.img-box {
    position: relative;
}

    .img-box:before {
        content: "";
        position: absolute;
        /*background: linear-gradient(to top, #cb080c 6%, transparent 100%);*/
        background-image: url(../images/g-line.png);
        bottom: 0;
        height: 96px;
        width: 100%;
    }

    .img-box .f-name {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        left: 0;
        right: 0;
        color: #fff;
        font-size: 21px;
        margin-bottom: 9px;
        font-weight: 400;
    }

.po-t-r {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0px;
    width: 45px;
    height: 45px;
    line-height: 42px;
    padding: 2px;
    text-align: center;
}

    .po-t-r i {
        font-size: 17px !important;
    }

.img-box,
.img-box:before {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .img-box:hover.img-box:before {
        background-color: #082c6196;
        background-image: none;
        top: 0;
        height: 100%;
    }

    .img-box:hover .d-button {
        display: block;
    }

    .img-box .d-button {
        display: none;
    }

        .img-box .d-button i {
            margin-left: 0px;
        }

        .img-box .d-button:hover {
            color: #000;
        }

.po-text {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 33%);
    background: white;
    position: relative;
    padding: 2em 2em;
    position: absolute;
    left: 3em;
    z-index: 9;
    top: 2em;
}

    .po-text:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }

    .po-text h3 {
        color: #161616;
        font-size: 30px;
        font-weight: 500;
    }

    .po-text p {
        color: #161616;
        font-size: 16px;
        line-height: 23px;
    }

.cr-bg {
    background-color: #f8f8f8;
    position: relative;
}

/*.cr-bg:before {
        content: "";
        position: absolute;
        background-image: url(../images/right-cr-bg.png);
    }*/

.po-img {
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    margin: auto;
}

.before-ani:before {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}

.img-con img {
    width: 67%;
    float: right;
    margin-right: 5em;
    border-radius: 6px;
    position: relative;
    z-index: 3;
}

.Consulting {
    width: 100%;
    display: inline-block;
    position: relative;
}

    .Consulting:before {
        content: "";
        width: 30%;
        position: absolute;
        background: #2d721d;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.img-con:before {
    content: "";
    position: absolute;
    
    width: 55%;
    height: 84%;
    right: 51px;
    bottom: -28px;
}

.po-con {
    position: absolute;
    z-index: 9;
    width: 45%;
    background: rgb(1 38 93 / 72%);
    padding: 25px;
    top: 22px;
    border-radius: 8px;
}

    .po-con h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 400;
        line-height: 36px;
        margin: 0px;
    }

.tran-bg {
    background: transparent;
}

.ml-55 {
    margin-left: 110px;
}

.b-text h3 {
    color: #232323;
}

.why-choose {
    background-color: #f8f8f8;
}

    .why-choose .row {
        margin: 0px;
    }

.pd-0 {
    padding: 0px;
}

.bg-sec-list {
    background: #2d721d;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 5px;
    padding: 15px;
}

    .bg-sec-list h3 {
        color: #fff;
        font-size: 19px;
        font-weight: 500;
        margin-top: 25px;
    }

    .bg-sec-list p {
        font-size: 15px;
        color: #fff;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 0px;
    }

span.text-w {
    font-size: 73px;
    position: absolute;
    right: 20px;
    top: -5px;
    color: rgb(255 255 255 / 62%);
}

.bg-sec-list {
    position: relative;
}

.min-s-list .col-md-4 {
    padding: 0px 8px;
}

.bg-blue {
    background-color: #cb080c;
}

.heading-t {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

    .heading-t:before {
        content: "";
        background-image: url(../images/heading.png);
        width: 33px;
        height: 27px;
        background-size: auto;
        position: absolute;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0;
        background-repeat: no-repeat;
    }

    .heading-t:after {
        content: "";
        position: absolute;
        width: 174px;
        height: 2px;
        background: #eeb013;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

.how-sec {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-left: 26px;
    padding-right: 26px;
}

.no-be:before {
    display: none;
}

.how-sec:before {
    width: 197px;
    height: 73px;
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    z-index: -1;
    background-image: url(../images/arrow-right.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.heading-t h2 {
    font-size: 36px;
    font-weight: 500;
    color: #282828;
    line-height: 43px;
    margin-bottom: 6px;
}

.heading-t p {
    font-size: 19px;
    font-weight: normal;
    color: #4a4949;
}

span.before-line {
    position: relative;
    background: #c2d8fc;
    width: 89px;
    height: 89px;
    display: inline-block;
    line-height: 73px;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 2em;
    border: 1px solid #6153fc;
    box-shadow: 0px 1px 14.53px -0.53px rgb(85 80 98 / 19%);
}

.how-sec h4 {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 15px;
}

.how-sec p {
    font-size: 16px;
    font-weight: normal;
    color: #2c2c2c;
    line-height: 26px;
    margin-bottom: 0px;
}

.howitwork {
    position: relative;
}

    .howitwork:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.before-line:before {
    content: "";
    position: absolute;
    background-image: url(../images/linebe.png);
    width: 99px;
    height: 143px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.Testimonials {
    position: relative;
    background-color: #f8f8f8;
}

    .Testimonials:before {
        content: "";
        position: absolute;
        background-image: url(../images/line-bg.png);
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.testmonial-box {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    background: #fff;
    padding: 20px;
    position: relative;
    border-radius: 5px;
}

    .testmonial-box:before {
        content: "";
        position: absolute;
        background-image: url(../images/right-cr.png);
        width: 89px;
        height: 105px;
        background-size: cover;
        top: 0;
        right: 0;
        opacity: 0.3;
    }

    .testmonial-box:after {
        content: "";
        position: absolute;
        background-image: url(../images/cote.png);
        width: 89px;
        height: 60px;
        background-size: contain;
        bottom: 0;
        right: 11px;
        opacity: 0.4;
        background-repeat: no-repeat;
    }

.img-user {
    float: left;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0px 2px 13.53px 1.47px rgb(85 80 98 / 12%);
    margin-right: 15px;
}

.right-t {
    margin-top: 8px;
}

.img-user img {
    width: 89px;
    height: 89px;
}

.owl-theme button {
    width: 46px;
    height: 46px;
    background: white !important;
    display: inline-block !important;
    float: left !important;
    border: 1px solid #000 !important;
    margin-right: 15px;
    margin-top: 15px;
    border-radius: 3px;
}

.right-t h4 {
    font-size: 16px;
    font-weight: 500;
    color: #282828;
}

.right-t p {
    color: #666666;
    line-height: 20px;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 4px;
}

.right-t ul li {
    display: inline-block;
}

    .right-t ul li i {
        color: #ecad0e;
    }

.img-text-top {
    display: inline-block;
    float: left;
    position: relative;
    z-index: 999;
    width: 100%;
    margin-bottom: 15px;
}

.dis-test {
    width: 100%;
    margin: 15px 0;
    margin-top: 5px;
    display: inline-block;
}

    .dis-test p {
        font-size: 14.5px;
        font-weight: normal;
        color: #515151;
        line-height: 23px;
        margin-bottom: 0px;
    }

.blog-box {
    width: 94%;
    box-shadow: 0px 0px 16.53px 1px rgb(101 101 101 / 32%);
    position: relative;
    background-color: #f8f8f8;
    display: inline-block;
    float: left;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .blog-box:hover {
        background-color: #222429;
    }

        .blog-box:hover .top-b li:first-child {
            color: #949494;
        }

        .blog-box:hover .blog-con h4 a {
            color: #fff;
        }

.blog-img {
    position: absolute;
    top: -31px;
    right: -31px;
}

.blog-con {
    float: left;
    margin-top: 13.5em;
    padding: 26px;
}

.top-b {
    width: 100%;
    float: left;
    margin-bottom: 6px;
}

    .top-b li {
        float: left;
        font-size: 13px;
        font-weight: 500;
    }

        .top-b li:last-child {
            float: right;
            color: #2d721d;
        }

.blog-con h4 {
    font-size: 19px !important;
    font-weight: normal;
}

    .blog-con h4 a {
        font-size: 19px !important;
        font-weight: 500;
        line-height: 28px;
    }

.Blog-section {
    position: relative;
}

    .Blog-section:before {
        content: "";
        width: 41%;
        position: absolute;
        background-image: url(../images/bg-l-dot.png);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: repeat-y;
    }

.request-home {
    position: relative;
    background-color: #f8f8f8;
}
.request-home:before {
    content: "";
    position: absolute;
    background-image: url(../images/line-bg.png);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-w-re {
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 33%);
    background: white;
    position: relative;
    padding: 3em;
    border-radius: 6px;
}
.form-re .form-control {
    min-height: 56px;
    padding: 10px 20px;
    background: #f8f8f8;
}
.form-re textarea.form-control {
    min-height: 100px;
}
.min-bg-or {
    width: 100%;
    padding: 35px;
    background: #2d721d;
}
.cont-one h4 {
    color: #fff;
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
}
.cont-one:last-child {
    margin-bottom: 0px;
}
.cont-one p {
    color: #fff;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
}
.cont-one {
    margin-bottom: 30px;
}

.cont-one a {
    color: #fff;
    font-size: 21px;
}
    .cont-one a span {
        width: 40px;
        height: 40px;
        display: inline-block;
        background: #03285e;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        color: #fff;
        margin-right: 10px;
        font-size: 25px;
    }

.blue-btn {
    background: #03285e;
}
.blue-btn:hover {
    color: #fff;
}
.blue-btn span {
    background: #2d721d;
    color: #fff;
}
.form-send h3 {
    font-weight: 500;
}
.form-send p {
    font-weight: normal;
    line-height: 23px;
    margin-bottom: 30px;
    font-size: 16px;
}
.bg-w-re:before {
    content: "";
    background-image: url(../images/crose-line.png);
    width: 18%;
    height: 100%;
    top: 0;
    opacity: 0.4;    
    bottom: 0;
    background-size: auto;
    left: 0;
    right: 0;
    position: absolute;
}
.bg-w-re:after {
    content: "";
    background-image: url(../images/req-be.png);
    width: 11%;
    height: 100%;
    top: 0;
    opacity: 0.4;
    bottom: 0;
    background-size: auto;
     right: 0;
    position: absolute;
}
.wi-50 li a:hover{ color:#fff;}
.contact-btn .btn span {
    background: #222429;
}


/*
 About Us
   
*/

.sub-banner {
    width: 100%;
    background-image: url(../images/sub-banner.jpg);
    display: inline-block;
    position:relative;
}
    .sub-banner:before {
        content: "";
        position: absolute;
        background: rgb(2 39 94 / 61%);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
.text-center{ text-align:center;}
.text-line h1 {
    color: #fff;
    font-size: 54px;
    position: relative;
    font-weight: 500;
    padding-bottom: 18px;
    margin-bottom: 20px;
}
    .text-line h1:before{ content:""; position:absolute;}
    .text-line ul li {
        float: left;
        margin: 0px 10px;
        text-transform: uppercase;
        font-weight: 500;
    }
.text-line h1:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.text-c{}
.text-c {
    display: inline-block;
    color: #fff;
}
.color-t{ color:#2d721d;}

.images-about {
    position: relative;
}
.images-about:before {
    content: "";
    position: absolute;
    
    width: 28%;
    height: 18%;
    left: 2.8%;
    top: 3%;
}
.images-about:after {
    content: "";
    position: absolute;
    background: #2d721d;
    width: 64%;
    height: 60%;
    left: 17.8%;
    top: 28%;
    z-index: -1;
}

.after-ani:after {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}
span.min-text-line {
    position: absolute;
    right: 21%;
    top: 7%;
    font-size: 20px;
    font-weight: normal; color:#282828;
}
span.min-text-line:before {
    content: "";
    position: absolute;
    background-image: url(../images/sedow-line.png);
    width: 100px;
    height: 73%;
    left: -82%;
    top: 13%;
}
    span.min-text-line:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 100%;
        background: #282828;
        left: -6%;
        top: 2px;
    }
    .min-text-line b {
        margin-top: 7px;
        font-size: 62px;
        float: left;
        line-height: 49px;
        font-weight: 500;
        margin-right: 3px;
    }

.be-l {
    width: 100%;
    padding-left: 60px;
    position: relative;
    margin-bottom: 0px;
    float: left;
}
    .be-l:before {
        content: "";
        background-image: url(../images/l-check.png);
        position: absolute;
        width: 34px;
        height: 34px;
        left: 2px;
        top: 5px;
    }

.mar-auto {
    margin: auto;
}
.img-video {
    position: relative;
    z-index: 2;
}
.img-video:before {
    content: "";
    position: absolute;
    background: rgb(2 39 94 / 43%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.play-v {
    position: absolute;
    z-index: 9;
    width: 86px;
    height: 86px;
    left: 0;
    right: 0;
    margin: auto;
    top: 31%;
}
.box-con {
    background: #fff;
    padding: 30px;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
}
.img-b{ width:95px; display:inline-block}
.dis-con{}
    .dis-con h3 {
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 15px;
        font-size: 28px;
    }
    .dis-con p {
        font-size: 16px;
        font-weight: normal;
        line-height: 26px;
        color: #282828;
    }
.box-con a {
    color: #000;
}
.box-con:hover a {
    color: #2d721d;
}
.num {
    font-size: 9vw;
    float: right;
    line-height: 97px;
    color: rgb(186 186 186);
}
.po-box-mvv {
    margin-top: -5em;
    margin-left: -4em;
    padding-right: 4em;
    position: relative;
    z-index: 2;
}
.video-bg{ position:relative}
    .video-bg:before {
        content: "";
        width: 56%;
        position: absolute;
        background: #2d721d;
        top: -9%;
        /* left: 0; */
        right: -6%;
        bottom: 0;
        height: 117%;
    }
    .video-bg:after {
        content: "";
        width: 56%;
        position: absolute;
        background-image: url(../images/w-dot.png);
        top: -9%;
        right: -6%;
        bottom: 0;
        height: 117%;
        opacity: 0.5;
    }
.Director { position:relative;
}
 
    .Director:before {
        content: "";
        width: 30%;
        position: absolute;
        background: #2d721d;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.img-dir{ position:relative;}
    .img-dir img {
        z-index: 3;
        position: relative;
    }
    .img-dir:before {
        content: "";
        position: absolute;
        
        width: 98%;
        height: 90%;
        right: 51px;
        bottom: -45px;
    }
.sign img {
    float: right;
}
.Director-con b {
    font-size: 17px;
    color: #282828;
    font-weight: 500;
}
.Director-con p {
    font-size: 16px;
    color: #282828;
    line-height: 27px;
}
.left-i {
    width: 28%;
    float: left;
    position: relative;
}
    .left-i img {
        z-index: 9;
        position: relative;
        width: 127px;
        height: 127px;
    }
    .left-i .img-user {
        position: relative;
        margin-top: 13%;
    }
    .left-i:before {
        content: "";
        position: absolute;
        width: 61%;
        height: 165%;
        background: #2d721d;
        left: -20px;
        top: -21px;
        bottom: 0;
    }
    .right-side {
        width: 72%;
        float: right;
    }
        .right-side .right-t h4 {
            font-size: 19px;
            font-weight: 500;
            color: #282828;
        }
        .right-side .right-t p {
            
            font-size: 15px;
            
            margin-bottom: 8px;
        }
        .right-side .dis-test{ margin-bottom:0px;}
        .right-side .dis-test p {
            margin-bottom: 0px !IMPORTANT;
            color: #282828;
            margin-top: 5px;
        }
.testmonial-box-two {
    display: inline-block;
    overflow: hidden;
}
.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #8e8e8e;
    margin-bottom: 20px;
}
.set > a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #555;
        font-weight: 500;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        transition: all 0.2s linear;
        font-size: 18px;
    }

.set > a i {
    float: right;
    margin-top: 2px;
}

    .set > a.active {
        background-color: #2d721d;
        color: #fff;
    }
    .set .content {
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        display: none;
    }

        .set .content p {
            padding: 10px 15px;
            margin: 0;
            color: #333;
        }

.faq:after {
    content: "";
    width: 30%;
    position: absolute;
    background: #2d721d;
    top: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
}
.img-faq {
    position: relative;    
}
    .img-faq img {
        z-index: 2;
        position: relative;
    }
    .img-faq:before {
        content: "";
        position: absolute;
        
        width: 100%;
        height: 95%;
        right: -73px;
        bottom: -79px;
    }
.Team{ background-color:#f8f8f8}
.social-t li{ float:left}

.team-m {
    background: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
    .team-m:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-l.png);
        width: 206px;
        height: 38%;
        background-size: contain;
        background-repeat: no-repeat;
        left: 0;
        bottom: 0;
    }
    .team-m:hover {
        background-color: #222429;
    }
   
    .team-m:hover .n-d h3 {
        color: #fff;
    }
        .team-m:hover .n-d p {
            color: #999;
        }
.t-img {
    width: 130px;
    height: 130px;
    display: inline-block;
    margin-top: 30px;
    position: relative;
}
.team-m:before {
    content: "";
    position: absolute;
    background: #2d721d;
    width: 57%;
    height: 53%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0px 0px 50% 50%;
    top: 0;
}
.t-img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0px 2px 13.53px 1.47px rgb(85 80 98 / 12%);
}
.n-d {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 7;
    padding: 20px;
    margin-top: 10px;
    padding-bottom: 11px;
}
.owl-stage {
    padding: 20px 0px;
}
    .n-d h3 {
        font-weight: 500;
        font-size: 21px;
        color: #282828;
        margin-bottom: 2px;
    }
    .n-d p {
        font-weight: normal;
        font-size: 16px;
        color: #5f5f5f;
        margin-bottom: 2px;
    }
.social-t {
    width: auto;
    text-align: center;
    display: inline-block;
    float: none;
    margin-top: 20px;
}
    .social-t li:first-child a{ margin-left:0px !important}
    .social-t li a {
        float: left;
        width: 40px;
        height: 40px;
        box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
        display: inline-block;
        margin-left: 16px;
        border-radius: 50%;
        line-height: 40px;
        color: #fff;
    }

.facebook-change-co {
    background: #23a1cf;
    color: #fff;
}

.twitter-change-co {
    background: #88d9f7;
    color: #fff;
}

.pinterest-change-co {
    background: #f5235d;
    color: #fff;
}

.linkedin-change-co {
    background: #1893da;
    color: #fff;
}


/*--services--*/

.images-ser-r {
    position: relative;
}
    .images-ser-r:before {
        content: "";
        position: absolute;
        
        width: 52%;
        height: 84%;
        right: 0;
        bottom: 0px;
        z-index: -1;
    }

.min-bg-ser {
    position: absolute;
    top: 19%;
    background: white;
    left: -32%;
    padding: 22px;
    text-align: center;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
    border-radius: 10px;
}
.min-bg-ser h2 {
    font-weight: 500;
    text-align: left;
    font-size: 31px;
    line-height: 37px;
    color: #282828;
    margin-bottom: 15px;
}
.min-bg-ser a {
    font-size: 21px;
    color: #f60;
}
    .min-bg-ser:before {
        content: "";
        background-image: url(../images/crose-line.png);
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.4;
        z-index: -1;
        bottom: 0;
        background-size: auto;
        left: 0;
        right: 0;
        position: absolute;
    }
.min-section-ser{position:relative; background:#f8f8f8;}
.min-section-ser:before {
    content: "";
    width: 30%;
    position: absolute;
    background-image: url(../images/bg-l-dot.png);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat-y;
}
    .min-bg-ser a i {
        font-size: 22px;
        background: #2d721d;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        color: #fff;
    }
.box-ser-l {
    border-radius: 8px 60px 8px 8px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
    .box-ser-l:hover {
        background-color: #222429;
    }
        .box-ser-l:hover .dis-con h3 {
            color: #fff;
        }
        .box-ser-l:hover .dis-con p {
            color: #cfcfcf;
        }
    .box-ser-l .img-b {
        width: 84px;
        display: inline-block;
        background: #64afe8;
        border-radius: 50%;
        padding: 13px;
        height: 84px;
    }
    .box-ser-l .num {
        font-size: 7vw;
        float: right;
        line-height: 80px;
        color: rgb(186 186 186);
    }
    .box-ser-l .dis-con h3 {
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 15px;
        font-size: 23px;
        line-height: 31px;
        color: #1c1b1b;
    }
    .box-ser-l .dis-con p{}
    .box-ser-l:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-r.png);
        width: 183px;
        height: 32%;
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
        bottom: 0;
    }
.min-section-ser {
    position: relative;
    overflow: hidden;
}
    .min-section-ser .po-img { margin:inherit;
    }
.images-ser-r-two {
    position: relative;
}
    .images-ser-r-two:before {
        content: "";
        position: absolute;
        width: 122%;
        height: 31%;
        background: #2d721d;
        bottom: -12%;
        right: -14%;
        z-index: -1;
    }
    .images-ser-r-two:after {
        content: "";
        position: absolute;
        
        width: 52%;
        height: 78%;
        left: -8.7%;
        bottom: 45px;
        z-index: -2;
    }
ul.wi-50-ser li {
    width: 50%;
    display: inline-block;
    float: left;
    line-height: 34px;
    font-weight: normal;
    color: #0f0f0f;
    padding-left: 45px;
    margin-bottom: 10px; position:relative;
}
    ul.wi-50-ser li:before {
        content: "";
        position: absolute;
        background-image: url(../images/tick.png);
        width: 32px;
        height: 32px;
        left: 0;
    }
.consulting-over {
    overflow: hidden
}
/*-- Services-details --*/
.ser-det-img {
    position: relative;
    padding: 3em;
    background: #2d721d;
    z-index: 4;
}
    .ser-det-img:before {
        content: "";
        width: 100%;
        position: absolute;
        background-image: url(../images/w-dot.png);
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        opacity: 0.5;
        z-index: -1;
    }
    .bg-ser-details {
        position: relative;
    }
    .bg-ser-details:before {
        content: "";
        position: absolute;
        width: 61%;
        background: #f8f8f8;
        right: 0;
        top: 0;
        bottom: 0;
    }
    .bg-ser-details:after {
        content: "";
        position: absolute;
        background-image: url(../images/line-bg.png);
        width: 61%;
        height: 100%;
        right: 0;
        top: 0;
        bottom: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
.bg-gray-ser-d {
    position: relative;
    z-index: 4;
}
.ser-d-right-text h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #282828;
    margin-top: 15px;
    float: left;
    width: 100%;
    font-weight: 500;
}
.ser-d-right-text p {
    color: #282828;
    font-size: 16px;
    font-weight: normal !important;
    line-height: 24px;
}
.ser-d-right-text b {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}
.ser-d-right-text b i {
}
.p-first-latter {
    font-weight: normal;
    color: #515151;
    font-size: 16px;
     
    line-height: 24px;
}
    .p-first-latter::first-letter {
        font-weight: bold;
        color: #2d721d;
        font-size: 6.9vw;
        line-height: 34px;
        margin-top: 21px;
        margin-right: 12px;
        float: left;
    }
.box-s-gray {
    background-color: #e1e0e0;
    padding: 25px;
}
    .box-s-gray h3 {
        font-weight: 500;
        color: #3b3b3b;
        font-size: 21px;
        line-height: 24px;
    }
.box-s-gray p{
    font-weight: normal;
    color: #3b3b3b;
    font-size: 16px;
    line-height: 24px; margin-bottom:0px;
}
.ser-de-min-con p {
    font-weight: normal;
    color: #515151;
    font-size: 16px; text-align:justify;
    line-height: 24px;
}

.comment-re {
    background: #fff;
    padding: 20px; border-radius:5px;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
}
.list-com {
    margin-bottom: 15px;
}
.comment-b-reply {
    width: 87%;
    display: inline-block;
    margin-left: 13%;
    margin-top: 10px;
}
.img-user-co {
    width: 11%;
    /*height: 60px;*/
    border-radius: 50%;
    float: left; overflow:hidden
}
.comment-b-reply .comment-b {
    width: 86.5%;
}
.comment-re h2 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 0px;
}

.img-user-co img {
    width: 60px;
    height: fit-content;
    border-radius: 50%;
    float: left;
    border: 2px solid #2d721d;
}
.comment-b {
    background: #e3e3e3;
    display: inline-block;
    width: 86.5%;
    margin-left: 11px;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}
    .comment-b h4 {
        font-size: 18px;
        font-weight: 500;
    }
    .comment-b p {
        font-size: 15px;
        color: #2d3748;
        font-weight: normal;
        line-height: 22px;
        margin-bottom: 0px;
    }
.reply-com {
    position: absolute;
    right: 5px;
    top: 4px;
    background: #2d721d;
    color: #fff;
    border-radius: 50%;
    border: none;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.view-all .btn {
    width: 100%;
    padding: 12px;
}
.view-all a span{
    width: 100%;
 }
.view-all .btn {
    background-color: #cb080c;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}
    .view-all .btn i{ margin-left:20px;}
    .view-all .btn:hover {
        background-color: #2d721d;
        color: #fff;
    }
.post-com h2{ margin-bottom:10px !important;}
.form-com {
    min-height: 49px;
    background: #e3e3e3;
}
.form-com-message {
    min-height: 100px;
}
.post-com .form-group {
    margin-bottom: 24px;
}

.blog-box-one {
    width: 100%;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    border: 1px solid #c4c4c4;
    margin-bottom: 25px;
}
.blog-cont {
    position: relative;
    padding: 30px 25px;
    background: #f8f8f8;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.blog-box-one:hover .blog-cont {
    background-color: #222429;
}
.blog-box-one:hover .blog-cont h3 {
    color: #fff;
}
.blog-box-one:hover .blog-cont p {
    color: #cfcfcf;
}
    .blog-box-one:hover .blog-cont h3 a {
        color: #cfcfcf;
    }
.blog-box-one:hover .blog-cont-tr {
    border-color: #222429 transparent transparent transparent;
}
        .blog-cont-tr {
          
            width: 0;
            height: 0;
            border-width: 20px 20px 0 20px;
            border-color: #F8F8F8 transparent transparent transparent;
            border-style: solid;
            position: absolute;
            bottom: -20px;
            left: 25px;
        }
    .blog-cont h4 {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        color: #2d721d;
        margin-bottom: 15px;
    }
.blog-cont h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
    .blog-cont h3 a {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;
        overflow: hidden;
    }
.blog-cont:after {
    content: "";
    position: absolute;
    background-image: url(../images/af-r.png);
    width: 152px;
    height: 34%;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    bottom: 0;
}

    .blog-cont h3:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 3px;
        background: #2d721d;
        bottom: 0;
    }
        .blog-cont p {
            font-size: 16px;
            font-weight: normal;
            line-height: 27px;
            color: #282828;
            margin-bottom: 15px;
        }

.blog-list-two.row {
    padding: 10px;
    position: relative;
    background: #fff;
    margin: 0px;
    border-radius: 6px;
    box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.blog-list-two:hover {
    background-color: #222429;
}
    .blog-list-two:hover .blog-h-two h3 a{
        color: #fff;
    }
    .blog-list-two:hover .blog-d-two p {
        color: #cfcfcf;
    }
    .blog-list-two:after {
        content: "";
        position: absolute;
        background-image: url(../images/af-r.png);
        width: 152px;
        height: 48%;
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
        bottom: 0;
    }
.blog-h-two h3 {
    font-size: 19px;
    font-weight: 500;
    line-height: 21px;
    padding-bottom: 0;
    margin-bottom: 3px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.img-two-b {
    border-radius: 5px;
    overflow: hidden;
}
.blog-h-two {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c8c8c8;
}
.blog-d-two p {
    font-size: 16px;
    font-weight: normal;
    line-height: 27px;
    color: #5b5b5b;
    margin-bottom: 0;
}
.blog-two-cont {
    padding-top: 12px;
}
.blog-h-two span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #2d721d;
    margin-bottom: 15px;
}

/*-- Blog-Details --*/
.blog-details{ background-color:#f8f8f8;}
.min-bg-blog-details {
    padding: 30px;
    background: #fff;
    box-shadow: 0px 0px 5px 2px rgb(116 116 116 / 19%);
}

.heading-blog-top{}
    .heading-blog-top span {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 500;
        color: #2d721d;
        margin-bottom: 15px;
        display: inline-block;
    }
    .heading-blog-top h3 {
        font-size: 22px;
        font-weight: 500;
        line-height: 32px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        position: relative;
         
    }
    .heading-blog-top p {
        font-size: 16px;
        font-weight: normal;
        line-height: 27px;
        color: #525252;
        margin-bottom: 15px;
    }
    .heading-blog-top h3:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 3px;
        background: #2d721d;
        bottom: 0;
    }
.blog-date span {
    font-size: 24px;
    line-height: 25px;
    text-align: center;
}
.blog-date {
    background: #cacaca;
    padding: 10px;
    margin-bottom: 20px;
}

.share-blog .share-b {
    width: 100%;
    display: inline-block;
    text-align: center;
    
    margin-bottom: 5px;
    padding: 5px;
    color: #fff;
    font-size: 14px;
}
.share-blog .facebook {
    background: #1473e8;
}
.share-blog .Instagram {
    background: #e814aa;
}
.share-blog .Twitter {
    background: #15afdb;
}
.blog-d-p-con p {
    font-size: 16px;
    font-weight: normal;
    line-height: 27px;
    color: #525252;
    margin-bottom: 15px;
}
.blog-d-i-con b {
    font-weight: 500;
    line-height: 29px;
    color: #2d2d2d;
}
.blog-simler-right .blog-cont {
    width: 80%;
    float: left;
}
.blog-simler-right .blog-img-one {
    width: 20%;
    float: left;
    height: 286px;
    
    background-position: bottom center;
}
.blog-box-one:hover .blog-cont-tr-detail {
   border-color: transparent transparent transparent #222429;
}
.blog-simler-right .blog-cont {
    margin-bottom: 0px;
    background: #fff;
    box-shadow: 0px 0px 5px 2px rgb(116 116 116 / 19%);
}
.blog-simler-right{ margin-bottom:0px !important}
.blog-simler-right .blog-cont-tr-detail {
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #f8f8f8;
    border-style: solid;
    position: absolute;
    top: 20px;
    right: -20px;
    border-width: 15px 0 15px 20px;
}
.blog-simler-right .blog-img-one a{
    display: inline-block;
    width: 100%;
    height: inherit;
    padding: 30px;
}
.blog-simler-right {
    display: inline-block;
    float: left;
    width: 100%;
    border: none;
}
.view-all-blog .btn {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    letter-spacing: 0.6px;
    background: #2d721d;
   
}
    .view-all-blog .btn span {
        left: 0px !important;
    }



/*-- Contoct Us --*/
.left-side-add {
    padding: 30px;
    background: #2d721d;
}

.cont-add h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}
.cont-add p {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}
.add-li {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
}
    .add-li span {
        width: 56px;
        height: 56px;
        background: #ffd6ba;
        display: inline-block;
        text-align: center;
        line-height: 56px;
        font-size: 33px;
        border-radius: 4px;
        color: #272727;
        float: left;
        margin-right: 20px;
    }
.right-add {
    width: 74%;
    float: left;
}
#my-form-status {
    margin: 0px;
}
.right-add p {
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    line-height: 24px;
}

    .right-add h4 {
        margin-bottom: 0px;
        font-size: 17px;
        color: #fff;
        font-weight: 500;
    }
.social-con .social-t li {
    float: none;
    display: inline-block;
}
.social-con .social-t {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: #ffd6ba;
    padding: 7px;
    float: none;
    margin-top: 0px;
}
    .social-con .social-t li a {
        float: none;
        width: 40px;
        height: 40px;
        box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 19%);
        display: inline-block;
        font-size: 22px;
        border-radius: 50%;
        line-height: 40px;
        color: #fff;
        margin: auto;
        margin-left: 20px;
    }
.social-con {
    margin-bottom: 0px;
}



.light-sky {
    background-color: #dbf7f9;
    padding: 30px;
}
.black-t h3 {
    color: #181818
}
.form-send .form-group {
}
.form-send .form-com {
    background: #fff;
    min-height: 53px;
}
.form-send .form-group {
    margin-bottom: 30px;
}


.top-bar {
    
    position: relative;
}
/*-- Typography Page Start--*/
.typo-icon h3 {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 0;
}
.typo-icon p {
    font-size: 15px;
    font-weight: normal;
    color: #2c2c2c;
    line-height: 26px;
    margin-bottom: 0px;
}
.typo-icon {
    margin-bottom: 30px;
}
.left-i-t {
    width: 85px;
    height: 85px;
    float: left;
    background: red;
    text-align: center;
    border-radius: 50%;
    line-height: 85px;
    background: #c2d8fc;
    border: 1px solid #6153fc;
    box-shadow: 0px 1px 14.53px -0.53px rgb(85 80 98 / 19%);
    margin-right: 13px;
}
.right-side-t {
    display: flow-root;
}
.gray-bg-light{ background-color:#f8f8f8}
.normal{ font-weight:normal}
.small-check .wi-50-ser li {
    width: 100%;
    display: inline-block;
    float: left;
    line-height: 34px;
    font-weight: normal;
    color: #0f0f0f;
    font-weight: 500;
    padding-left: 45px;
    margin-bottom: 10px;
    position: relative;
}
.typo-p {
    margin-bottom: 20px;
}
.typo-p p {
    font-size: 15px;
    line-height: 24px;
}
/*-- Typography Page end --*/
/*home2*/
/*slider*/
.text span{
   color: #2d721d;
}


.btn-style-orange {
    background: #2d721d;
    color: #fff;
}
.btn-style-orange:hover {
    background: #000;
    color: #fff;
}
.theme-btn {
    padding: 15px 25px !important;
    display: inline-block !IMPORTANT;
    float: left;
    margin-right: 20px !IMPORTANT;
    border-radius: 5px;
    text-transform: uppercase;
}
/*slider-end*/
/*about company*/
.a-home {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.about-home h3 {
    line-height: 40px;
        margin-bottom: 10px;
            font-size: 26px;
}
.about-home p {
    font-weight: 400;
}
.a-c{
    position: relative;
}
.a-c:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    background: #2d721d;
    width: 25%;
    bottom: 0;
    }
   .owl-nav button {
    background:  #2d721d!important;
}
/*about company end*/
/*service-home*/
.service-h {
    padding: 10px 0;
}
.ser-home {
    padding: 20px;
    box-shadow: 0px 0px 2px 0px;
    border-radius: 8px;
    background: #FFF;
}
.ser-home-img img {
    border-radius: 8px;
}
.service-h h4 {
    font-size: 20px;
        display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}

.service-h p {
     display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.s-h-btn {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}
.service-hoe-heading {
    margin-bottom: 20px;
    padding-left: 15px;
}
.service-home{
    background: #f5f5f5;
}
/*service-home-end*/
/*blog-home*/
.news-blog h6 {
    font-size: 14px;
    font-weight: 600;
    color: #2d721d;
}
.news-blog span{
    color: #2d721d;
}
.news-blog {
    width: 100%;
    margin-bottom: 20px;
}
.nb-txt {
    padding: 0 10px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}
.nb-img img {
    position: relative;
}
.nb-txt p {
    opacity: 0;
    color: #FFF;
    line-height: 20px;
    margin-top: 10px;
}
.nb-txt h4 {
    margin-bottom: -48px;
    color: #FFF
}
.nb-home:hover h4 {
    margin-bottom: 0;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.nb-home:hover p {
    opacity:1;
}
.nb-home:hover li {
    opacity:1;
}
.user {
    position: absolute;
    top: 15px;
    left: 50px;
    z-index: 99;
}
.user-flex i {
    padding-right: 7px;
}
.user-flex li {
    opacity: 0;
    color: #FFF;
}
.news{
    position: relative;
}
.nb-img:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    max-width: 93%;
    margin-left: 14px;
}
/*blog-home-end*/
/*testinomial*/
.testi h6 {
    color: #2d721d;
    font-weight: 600;
}
.test-btn {
    padding: 10px 15px;
    background: #2d721d;
    color: #FFF;
    border-radius: 8px;
    font-size: 15px;
}
.testi p {
    padding-bottom: 10px;
}
.t-both {
    display: inline-flex;
    align-items: center;
}
.tes-img img {
    width: 60px !important;
}
.t-txt {
    padding: 6px 12px;
    text-align: left;
}
.t-txt h6 {
    margin-bottom: 6px;
}
.testi-nomial{
    text-align: center;
    position: absolute;
    top: 25%;
    left: 15%;
    width: 80%;
}
.testi-nomial p{
max-width: 333px;
    margin: 0 auto 26px;
}

/*testinomial-end*/
/*process*/
.wp-sec h6 {
    color: #2d721d;
    font-weight: 600;
}
.wp-sec span {
    color: #2d721d; 
}
.w-p {
    background: url(../images/p-bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: #000000a8;
}
.wp-sec h2 {
    color: #FFF;
}
.wp-sec {
    margin-bottom: 20px;
    width:100%;
}
#testi .owl-nav {
    display: none;
}
.wp-col-img img {
    width: 100px;
}
.wp-col-img {
    text-align: center;
    
}
.wp-col-text {
    margin-top: 20px;
    text-align: center;
}
.wp-col-text h4{
    color: #FFF;
}
.wp-col-text p{
    color: #FFF;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
}
/*process-end*/
/*faq*/
.accordion-faq h3 {
    margin-bottom: 20px;
}


.accordion {
  margin-top: 10px;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}*/
/*faq-end*/
/*why*/
.w-w-c {
   background:#f5f5f5;
}
.why h6 {
    color: #2d721d;
    font-weight: 600;
    margin-bottom:20px; 
}
.why span {
    color: #2d721d; 
}
.why {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}
.e-img img {
    width: 70px;
}
.expert{
    display: flex;
        margin-bottom: 20px;
}
.e-txt h5 {
    font-size: 18px;
  display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.e-txt p{
display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}
.e-txt {
    padding-left: 15px;
}

.why-we img {
    position: relative;
}
/*why-end*/
/*home2-end*/
.social h1{
    color: #fff;
    margin-bottom: 20px;
}

.social{
    color: #fff;
    text-align: center;
}
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 30px;
    background-color: #2d721d;
    border-radius: 50%;
    width: 80px;
    height: 80px;  
    margin-bottom: 20px;
    margin-inline: auto;
}
.social-icons i{
    color: #fff;
}
.media-text h5 {
    color: #fff;}

.media-text {
    color: #fff;
    text-align: center;
}
.media{
    background-image: url(../images/banner4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
/* about two */
.section-padding {
    padding: 120px 0px;
}
.company__history-area {
    max-width: 960px;
    margin: 0 auto;
}
.t-center {
    text-align: center;
}
.subtitle-one, .subtitle-two, .subtitle-three {
    position: relative;
    text-transform: uppercase;
    font-family: var(--heading-font);
    color: var(--primary-color-1);
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    padding-left: 55px;
    display: inline-block;
    margin-bottom: 14px;
}
.subtitle-one::before, .subtitle-two::before, .subtitle-three::before {
    position: absolute;
    content: "";
    top: 6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color-1);
}
.subtitle-one::after, .subtitle-two::after, .subtitle-three::after {
    position: absolute;
    content: "";
    bottom: 6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color-1);
}
.company__history-area {
    max-width: 960px;
    margin: 0 auto;
}
.company__history-area-item {
    display: flex;
}
.company__history-area-item-left {
    padding-right: 69px;
    margin-right: 70px;
    border-right: 1px dashed var(--primary-color-1);
}
.company__history-area-item-left img {
    max-width: 410px;
}
.company__history-area-item-right-content {
    padding: 39px;
    padding-bottom: 37px;
    border: 1px solid #e7e7e7;
    margin-top: 30px;
    position: relative;
}
.company__history-area-item-right-content::before {
    content: "";
    position: absolute;
    left: -76px;
    top: 70px;
    width: 10px;
    height: 10px;
    background: #f94c30;
    box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);
    border-radius: 50%;
}
.company__history-area-item-right-content-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.company__history-area-item-right-content-date span {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color:#fff;
    background: #f94c30;
    padding: 7px 22px;
    padding-left: 20px;
    padding-right: 25px;
    -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
    clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}
.company__history-area-item-right-content::after {
    content: "";
    position: absolute;
    left: -11px;
    top: 65px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-top: #e7e7e7 solid 1px;
    border-left: #e7e7e7 solid 1px;
    transform: rotate(-45deg);
}
.company__history-area-items-left {
    padding-right: 70px;
    margin-right: 70px;
    border-right: 1px dashed #f94c30;
}
.company__history-area-items-left-content {
    padding: 39px;
    padding-bottom: 37px;
    border: 1px solid #e7e7e7;
    margin-top: 30px;
    position: relative;
}
.company__history-area-items-left-content::before {
    content: "";
    position: absolute;
    right: -76px;
    top: 70px;
    width: 10px;
    height: 10px;
    background: #f94c30;
    box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);
    border-radius: 50%;
}
.company__history-area-items-left-content-date {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.company__history-area-items-left-content-date span {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    background: #f94c30;
    padding: 7px 22px;
    padding-left: 20px;
    padding-right: 25px;
    -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
    clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}
.company__history-area-items-left-content::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 65px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-bottom: #e7e7e7 solid 1px;
    border-right: #e7e7e7 solid 1px;
    transform: rotate(-45deg);
}
.company__history-area-item-left {
    padding-right: 69px;
    margin-right: 70px;
    border-right: 1px dashed #f94c30;
}
.company__history-area-items-right img {
    max-width: 410px;
}
.company__history-area-items {
    display: flex;
}
/*social-media*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


.hero {
  width: 100%;
  height: 100vh;
background-image: url(../images/line-bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}


.social-links {
    margin: 5em 0;
  display: flex;
}

.social-links a {
  width: 80px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  color: #000;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
  margin: 0 30px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s;
}

.social-links a .fab {
  font-size: 30px;
  line-height: 80px;
  position: relative;
  z-index: 10;
  transition: color 0.5s;
}

.social-links a::after {
  content: '';
  width: 100%;
  height: 100%;
  top: -90px;
  left: 0;
  background: #000;
  background: linear-gradient(-45deg, #ed1c94, #ffec17);
  position: absolute;
  transition: 0.5s;
}

.social-links a:hover::after {
  top: 0;
}

.social-links a:hover .fab {
  color: #fff;
}

.social-links a:hover {
  transform: translateY(-10px);
}
