@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  background-color: #f0f1ec;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-family: 'Poppins', Sans-Serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Queensila';
  src: url(../fonts/fonnts.com-Queensila.ttf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Queensila';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Queensila';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Queensila';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Queensila';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 10px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: end;
  text-transform: capitalize;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 0 0 auto;
  border: 1px solid #fff;
  border-radius: 100px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
}
.menuSec ul li a.active {
    color: #fff !important;
    background-color: #7b8356;
    padding: 8px 20px;
    margin: 4px 4px;
    border-radius: 100px;
}
.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  /* padding-right: 0px; */
}
.menuSec .row {
    align-items: center;
}


.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */
.ban-sm-bx.top {
    justify-content: center;
    margin: unset;
}
section.banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner.jpg);
    position: relative;
    padding-top: 150px;
    background-attachment: fixed;
}
.ban-sm-bx.th {
    margin: 0 0 0 auto;
}
ul.num li p {
    margin-bottom: 0;
    margin-top: 9px;
    text-align: center;
}
.ban-sm-bx.tw {
    margin: 0 auto;
}
.ban-sm-bx {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 6px;
    border: 1px solid #fff;
    width: fit-content;
    border-radius: 100px;
    justify-content: center;
    /* margin: 0 auto; */
}

.ban-sm-bx h6 {
    font-size: 14px;
    color: #fff;
    margin: unset;
}
.baner-txt {
    padding-top: 360px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
}



.baner-txt h1 {
    font-size: 79px;
    color: #fff;
    line-height: 1;
    font-weight: 400;
}

.baner-txt h1 span {
    display: block;
}

.baner-txt p {
    font-size: 14px;
    color: #fff;
}
a.btn-1 {
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #000000;
    padding: 5px 5px;
    border-radius: 100px;
    width: fit-content;
    padding-left: 13px;
    border: 1px solid #7b8354;
}

.ban-bot {
    padding-bottom: 30px;
}
/*banner css end*/

/*about start*/
section.about {
    padding: 100px 0px;
}
.abt-txt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt-txt ul li h5 {
    font-size: 25px;
    color: #000000;
    margin: unset;
}

.abt-txt h3 {
    font-size: 60px;
    line-height: 1;
    color: #000000;
    font-weight: 400;
    margin-bottom: 0px;
}

.abt-txt h3 span {
    display: block;
}

.abt-txt p {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 21px;
    margin-bottom: 20px;
}
ul.num {
    margin-top: 21%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.num  li {
    display: block;
}

ul.num li h5 {
    font-size: 60px;
    line-height: 1;
    font-weight: 200;
    font-family: Arial, sans-serif;
}

.abt-txt a.btn-1 {
    background-color: #7b8356;
    color: #fff;
    padding-left: 20px;
}

/*about end*/

/*service start*/
.ser-top-txt {
    text-align: center;
    margin-bottom: 35px;
}

.ser-top-txt h5 {
    font-size: 25px;
    line-height: 1;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ser-top-txt h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
}

.ser-top-txt p {
    font-size: 14px;
    color: #7c7c7c;
    width: 60%;
    margin: 0 auto;
}

.ser-sm-img img {
    width: 65px;
    margin-bottom: 125px;
    height: 65px;
    object-fit: contain;
}

section.service {
    padding-bottom: 100px;
}
.main-ser-bx-1 {
    background-image: url(../images/ser-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding:40px 20px 20px 20px;
}
.main-ser-bx-2 {
    background-image: url(../images/ser-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding:40px 20px 20px 20px;
}
.main-ser-bx-3 {
    background-image: url(../images/ser-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding:40px 20px 20px 20px;
}
.main-ser-bx-4 {
    background-image: url(../images/ser-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding:40px 20px 20px 20px;
}
section.service .slick-active {
    opacity: 1;
}
.ser-txt-bot h5 {
    font-size: 30px;
    line-height: 1;
    color: #000000;
}

.ser-txt-bot p {
    font-size: 14px;
    color: #000000;
    line-height: 22px;
}

.ser-txt-bot a {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
}

.main-ser-bx-3 h5 {
    color: #fff;
}

.main-ser-bx-3 p {
    color: #fff;
}

.main-ser-bx-3 a {
    color: #fff;
}

section.service .slick-slide {
    margin: 0 15px;
}
section.service .slick-prev:before{
  position: absolute;
  top: 0;
  left: -25px;
  content: '';
  background-repeat: no-repeat;
  background-image: url(../images/ser-left-arr.png);
  background-size: contain;
  width: 50px;
  height: 50px;
}
section.service .slick-next:before{
  position: absolute;
  top: 0;
  right: -30px;
  content: '';
  background-repeat: no-repeat;
  background-image: url(../images/ser-right-arr.png);
  background-size: contain;
  width: 50px;
  height: 50px;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{
  opacity: 1;
}
/*section.service end*/
/*work start*/
section.works {
    padding: 80px 0px;
    background-image: url(../images/work-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.work-txt h5 {
    font-size: 25px;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.work-txt h3 {
    font-size: 60px;
    line-height: 1;
    color: #fff;
    font-weight: 200;
}
.work-txt p {
    font-size: 13px;
    color: #fff;
    margin: unset;
    line-height: 20px;
    margin-top: 33px;
}

section.works .row {
    align-items: center;
}

.work-main-bx {
    padding: 30px 20px;
    width: 86%;
    background-color: #7b8356;
    height: 380px;
}
.work-main-bx h3 {
    font-size: 60px;
    line-height: 1;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}
.work-main-bx h4 {
    font-size: 30px;
    line-height: 1;
    color: #fff;
    margin-bottom: 70px;
}

.work-main-bx h4 span {
    display: block;
}

.work-main-bx p {
    font-size: 14px;
    color: #fff;
    width: 93%;
}
.row.bf {
    position: relative;
    z-index: 1;
}

.row.bf::before {
    position: absolute;
    top: 34%;
    left: 10px;
    content: '';
    height: 134px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/shape-1.png);
    z-index: -1;
}
/*work end*/
/*chose start*/
section.chose {
    padding: 100px 0px;
}
.chs-sm-bx {
    padding: 20px;
    border: 1px solid #9fa09e;
}

.chs-sm-bx h4 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.chs-sm-bx p {
    font-size: 14px;
    color: #7c7c7c;
    margin: unset;
}
.chs-sm-bx img {
    margin-bottom: 20px;
}
.chose-txt h3 {
    font-size: 59px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 300;
}

.chose-txt h3 span {
    display: block;
}
.chose-txt h5 {
    font-size: 25px;
    line-height: 1;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.chose-txt p {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 21px;
    margin-bottom: 20px;
}

.chose-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.chose-txt a.btn-1 {
    background-color: #7b8356;
    color: #fff;
    padding-left: 20px;
}
/*chose end*/
/* reviews start */
.reviews-txt {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-txt h5 {
    font-size: 25px;
    line-height: 1;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.reviews-count span.total {
    font-size: 25px;
    color: #7c7c7c;
}

.reviews-count span.current {
    font-size: 38px;
    line-height: 1;
    color: #000;
}


section.reviews .slick-next {
    right: -50px !important;
}

.reviews-txt h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0px;
}

.reviews-txt p {
    font-size: 14px;
    color: #7c7c7c;
    width: 60%;
    margin: 0 auto;
}
.reviews-img img {
    height: 310px;
    object-fit: cover;
}

.reviews-sli-bx-txt p {
    font-family: 'Queensila';
    font-size: 30px;
    line-height: 40px;
    font-style: italic;
    color: #7c7c7c;
    width: 77%;
    margin-bottom: 40px;
}

.reviews-sli-bx-txt h4 {
    font-size: 25px;
    color: #000000;
}
section.reviews {
    padding-bottom: 100px;
    position: relative;
}
section.reviews .slick-prev, section.reviews .slick-next {
    position: absolute;
    bottom: 10px;
    top: auto;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
}

section.reviews .slick-prev {
    left: -300px;
} 

section.reviews .slick-prev:before {
    content: '';
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-image: url(../images/test-left.png);
    position: absolute;
    left: 0;
}
section.reviews .slick-next:before {
    content: '';
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-image: url(../images/test-right.png);
    position: absolute;
    left: 0;
}
section.ready {
    padding-bottom: 0px;
    margin-bottom: -25px;
}

.ready-txt {
    text-align: center;
}

.ready-txt h3 {
    font-size: 60px;
    line-height: 1;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
}

.ready-txt h3 span {
    display: block;
}

.ready-txt p {
    font-size: 14px;
    color: #7c7c7c;
    width: 47%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.ready-txt a {
    margin: 0 auto;
    background-color: #7b8356;
    padding-left: 20px;
    color: #fff;
}
/* reviws end */
/*footer start*/
footer {
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 23%;
}
.ft-logo img {
    margin-bottom: 20px;
}

.ft-logo p {
    font-size: 14px;
    color: #fff;
    width: 89%;
    margin-bottom: 30px;
}

.ft-logo form input {
    width: 100%;
    padding: 10px;
    background-color: unset;
    border: unset;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding-left: unset;
}

.inp {
    position: relative;
}

.inp button {
    background-color: unset;
    border: unset;
    position: absolute;
    right: 0;
    top: -15px;
}

footer h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
}

.quick-links ul li a {
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins';
    line-height: 33px;
}
.follow ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: unset;
}

.follow ul li a i {
    color: #fff;
    font-size: 25px;
}

.quick-links ul li p {
    font-size: 14px;
    color: #fff;
    margin-top: 12px;
}

.quick-links ul li p span {
    display: block;
}
.quick-links.tw {
    padding-left: 28%;
}

.quick-links.th {
    padding-left: 27%;
}

.follow {
    padding-left: 37%;
}
.ft-bot {
    margin: 30px 0px 0px 0px;
    padding: 20px 0px;
    border-top: 1px solid #fff;
}

.ft-bot p {
    font-size: 14px;
    color: #fff;
    margin: unset;
}

.ft-bot ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin: unset;
}

.ft-bot ul li a {
    font-size: 14px;
    color: #fff;
}

.ft-bot .row {
    align-items: center;
}
.quick-links ul li {
    padding-bottom: 10px;
}
a.btn-1:hover {
    transition: 1s;
    background-color: unset;
    color: #000;
    border: 1px solid #000;
}
.baner-txt a.btn-1:hover {
    color: #000;
    background-color: #fff;
    border: unset;
}
/*footer end*/
.chs-sm-bx:hover {
    transition: 1s;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.13);
    border: unset;
}
section.chose .container {
    max-width: 1420px;
}

.reviews-count{
    position:absolute;
    bottom: 96px;
    left: -109px;
    right:0;
    text-align:center;
    font-size:20px;
    color:#000;
}

.reviews-count span{
    font-weight:400;
}
.container {
    max-width: 1600px;
}
.work-main-bx.th {
    margin-left: 10%;
}
.work-main-bx.tw {
    margin-left: 4%;
}