@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200&display=swap');

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


@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

/* CSS Document */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
    line-height: 25px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
a:hover,
a:focus,
a:visited,
a.active {
    outline: none;
    box-shadow: none !important;
    text-decoration: none;
      cursor: pointer !important;
}

.form-control {
    outline: none;
    box-shadow: none !important;
    border-radius: 0px !important;
}

input:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #ced4da !important;
}

/************** Header-Css ***********/
li.current_page_item a {
    color: #f3eb48 !important;
}
.header {
    width: 100%;
    background: #fff;
    /* z-index: 99999; */
    float: left;
    
}
.banner {
    position: absolute;
}
.navigation {
    /* width: 83%; */
    padding: 10px 10px;
    z-index: 9;
    /* float: left; */
    background: rgb(0 0 0 / 45%);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}

.brand {
  float: left;
  line-height: 63px;
  text-transform: uppercase;
  font-size: 1.4em;
  width: 23%;
  padding: -3px 0;
}
.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
}

nav {
  float: right;
  margin-top: 10px;
}
ul.nav-list {
    /* margin-top: 23px; */
}
nav ul {
  list-style: none;
  margin: 0px 0 0 0;
  padding: 0;
}
nav ul li {
    float: left;
    position: relative;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 10px;
  line-height: 66px;
  color: #fff;
  text-decoration: none;
  /* font-weight: 700; */
  font-size: 16px;
  text-transform: uppercase;
}

nav ul li a:hover,
nav ul li a:visited:hover {/* background: #f9b900;*/color: #f5e30c;/* font-weight: 700; */}

nav ul li ul li {
  min-width: 212px;
  border-bottom: 1px solid #f4433654;
}
nav ul li ul li a {
    padding: 12px;
    line-height: 17px;
    font-family: 'Nunito', sans-serif;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  background: #ffffff;
  /* border-bottom: 1px solid #af7c21; */
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #262626;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 798px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 0;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 10px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 799px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

article {
/*
  max-width: 1000px;
  margin: 0 auto;
*/
  padding: 10px;
}



/***** Silder *****/
.slideshowContainer {
    /* position: relative; */
    /* overflow: hidden; */
    margin: 0px 0;
    width: 100%;
    height: 100vh;
    top: 108px;
    background: rgb(0 0 0 / 60%);
    background-size: 100% 100% !important;
}
.slideshowContainer:before{

position: absolute;

content: "";

/* background: rgb(249 218 138 / 46%); */

width: 100%;

height: 100vh;
}
.imageSlides {
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translate(-0%, -0%); */
  width: 100%;
  /* min-height: 100%; */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

/* add 'visible' class via Javascript */
.visible {
  opacity: 1;
}

.slideshowArrow {
  /* font-size: 7em; */
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  font-size: 85px;
}

.slideshowArrow:hover {
  opacity: 0.75;
}

#leftArrow {
  position: absolute;
  left: 4%;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
}
#rightArrow {
  position: absolute;
  right: 4%;
  top: 47%;
  transform: translate(50%, -50%);
  z-index: 9999999;
}

.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
    display: none;
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}


.serch_pnl {
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 190px;
}
.serch_pnl input[type="text"] {
   padding: 18px;
    width: 500px;
    border: none;
}
.serch_pnl h3{
    margin-bottom: 20px;
    font-size: 50px;
    color: #fff;
    font-weight: 600;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.68);
}

.serch_pnl button {
    padding: 16px 30px;
    border: white;
    background: #f4b401;
    letter-spacing: 1px;
    font-weight: 600;
}




section.main_wrap5 {
    background: #f0f0f0;
    padding: 50px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  align-items: stretch;
}
.grid img{
    width: 100%;
}
.grid > article {
    background: #fff;
  
}

.grid > article img {
  max-width: 100%;
}

.grid .text {
padding: 5px 0;
    text-align: center;
}

.grid .text h3 {
    font-size: 1.4rem;
    font-family: 'Galada', cursive;
    text-align: left;
    padding-bottom: 15px;
}

.grid .text p {
 font-size: 24px;
    padding-bottom: 15px;
    text-align: left;
    color: #ffbd14;
    font-weight: 600;
}

.grid .text p a {
  text-decoration: none;
  font-weight: bold;
  color: #555;
    font-family: 'Nunito', sans-serif;
}
.grid .btn-primary {
     color: #fff;
    background-color: #000000;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover {
    color: #fff;
    background-color: #ffbd14;
    /* border-color: #000; */
}




.prd {
    padding: 50px 0;
    background-image: url(../image/download.svg);
    background-attachment: fixed;
}
.prd h2{
    color: #1e1e1e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-align: center;
    width: 100%;
    color: #000000;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.btn_view {
    text-align: center;
    width: 100%;
    margin: 25px 0;
}
.btn_view a{
    background: #ffde63;
    padding: 10px 25px;
    color: #000000;
    font-weight: 700;
    border: 1px solid #a99a12;
}
.btn_view a:hover{
        background: #373737;
    color: #fff;
}
.prd p{
    text-align: center;
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    color: #5a5959;
    font-weight: 600;
}
.post-slide .post-content p{
    text-align: center;
    font-size: 15px;
    color: #424141;
    padding: 0 10px;
    font-weight: 500;
}

#news-slider{
    margin-top: 25px;
}
.post-slide{/* background: #fff; */margin: 0px 0px 32px 0;border-radius: 10px;padding-top: 1px;/* box-shadow: 1px 1px 12px 0px #d5d5d58c; *//* border: 1px solid #ededed; */}
.post-slide .post-img{
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    margin-left: 0px;
    /* padding: 10px 10px 10px 10px; */
    height: 267px;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{width: 100%;height: 100%;position: absolute;top: 0;left: 0;opacity: 0;background: rgb(90 172 86 / 72%);transition: all 0.50s linear;text-align: center;}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color: #000000;
    font-size:25px;
}
.post-slide .post-content{
    /* background: #fff; */
    /* padding: 2px 10px 10px; */
    border-radius: 15px;
    text-align: center;
}
.post-slide .post-title a{
    font-size: 17px;
    font-weight: 500;
    color: #040000;
    display: inline-block;
    /* text-transform: uppercase; */
    transition: all 0.3s ease 0s;
    padding: 15px 0;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color: #000000;
}
.post-slide .post-description{
    line-height:24px;
    color:#808080;
    margin-bottom:25px;
}
.post-slide .post-date{
color: #000000;
    font-size: 14px;
     margin: 0 19px 0 0;
}
.post-slide .post-date i{
    font-size: 20px;
    margin-right: 8px;
    color: #8a8a8a;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}
.owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
    background: #fff;
    position: absolute;
    top:-13%;
    left:15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
    background: #fff;
    position: absolute;
    top:-13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #333;
    font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}
@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}



.calculater{
    background-size: cover;
    padding: 50px 0 0px;
    background: #f5fff5;
}
.calculater figcaption {
    padding: 35px 0 0 0;
}

.calculater figcaption h2{color: #000000;font-weight: 700;font-size: 45px;letter-spacing: 1px;margin-bottom: 0;text-transform: capitalize;line-height: 52px;}
.calculater figcaption p{color: #000000;font-weight: 500;font-size: 15px;/* letter-spacing: 0.5px; */text-align: justify;padding: 14px 0;line-height: 25px;color: #585858 !important;margin-bottom: 0px;}
a.ylbtn {background: #0a0a0a !important;padding: 17px 39px;color: #fff7e9 !important;margin: 20px 0 0 0;letter-spacing: 1px;text-transform: capitalize;/* font-weight: 600; */transition: 0.3s;font-size: 17px;/* border: 1px solid #ffe329; */box-shadow: 1px 1px 12px 0px #d5d5d58c !important;}
a.ylbtn:hover{
    /* background: #000 !important; */
    color: #fff;
}
.lgo {
    text-align: center;
    width: 100%;
}
.lgo img{
    text-align: center;
}
.bostom {
    background-size: cover !important;
    padding: 50px 0;
    background-repeat: no-repeat !important;
}
.bostom figure{
    text-align: center;
}

.bostom figure img {
    width: 31%;
    border: 10px solid #dedede;
    
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.34);
    -moz-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.34);
    box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.34);
}
.bostom figcaption{
        width: 100%;
    padding-bottom: 40px;
    font-size: 27px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
        padding-top: 40px;
}

.ft {
    background: #077600;
    text-align: center;
    width: 100%;
    /* float: left; */
    display: flex;
    justify-content: space-evenly;
}
/* .ft{
    background: #463000;
    text-align: center;
    width: 100%;
    float: left;
} */
.ft p{
    color: #ffffff;
    /* letter-spacing: 2px; */
    padding: 10px 0;
    font-size: 13px;
    background: #077600;
    /* font-weight: 600; */
}
ul.nav-lis {
    width: 100%;
    text-align: center;
}
ul.nav-lis li {
    display: inline-block;
    margin: 30px 10px;
}
ul.nav-lis li a {
    color: #beb18b;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 14px;
}


.image-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 80%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.image-grid__item {
  display: -webkit-box;
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 360px;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  height: 390px;
  margin-right: 14px;
  margin-bottom: 14px;
  -webkit-transition: text-shadow 0.1s ease-in, -webkit-transform 0.14s ease-in;
  transition: text-shadow 0.1s ease-in, -webkit-transform 0.14s ease-in;
  transition: transform 0.14s ease-in, text-shadow 0.1s ease-in;
  transition: transform 0.14s ease-in, text-shadow 0.1s ease-in, -webkit-transform 0.14s ease-in;
  box-shadow: 1px 1px 12px 0px #999999;
  border-radius: 25px;
}
.image-grid__item:before {
  content: "";
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  border-radius: 3px;
  box-shadow: 0 10px 24px 0px rgba(0, 0, 0, 0.06), 0 8px 20px -2px rgba(0, 0, 0, 0.1), 0 6px 10px -6px rgba(0, 0, 0, 0.2);
  -webkit-transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}
.image-grid__item:hover:before {
  visibility: visible;
  opacity: 1;
}

.grid-item {
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #eeeeee;
  overflow: hidden;
  box-shadow: 1px 1px 12px 0px #ebebeb;
}
.grid-item:hover .grid-item__image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-item:hover .grid-item__hover {
  visibility: visible;
  opacity: 1;
}
.grid-item:hover .grid-item__name {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.grid-item__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  -webkit-transform: scale(1);
          transform: scale(1);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
        border-radius: 10px;
}

.grid-item__hover {visibility: hidden;display: block;position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: rgb(18 83 203 / 58%);border-radius: 0;-webkit-transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition: visibility 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);opacity: 0;}

.grid-item__name {
  visibility: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 300;
  /* text-shadow: 0px 0px 30px rgb(0 0 0 / 86%), 2px 2px 6px rgb(0 0 0 / 88%); */
  -webkit-box-pack: center;
  justify-content: center;
  letter-spacing: 1px;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: visibility 0.14s ease-out, opacity 0.14s ease-out, -webkit-transform 0.24s ease;
  transition: visibility 0.14s ease-out, opacity 0.14s ease-out, -webkit-transform 0.24s ease;
  transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease;
  transition: visibility 0.14s ease-out, opacity 0.14s ease-out, transform 0.24s ease, -webkit-transform 0.24s ease;
  opacity: 0;
  font-weight: 700;
}



.grid-item__name h2{padding: 10px 20px;font-size: 19px;color: #ffffff;text-align: left;/* letter-spacing: 2px; */font-weight: 700;/* background: #6c4d08; *//* border: 1px solid #000; */}
.grid-item__name h3{
    font-size: 14px;
    color: #fff;
    text-align: left;
    position: absolute;
    bottom: 20px;
    font-weight: 600;
}
.listing {
    padding: 50px 0;
    background: #ffffff;
}

.listing h1 {
    /* color: #000; */

    /* font-weight: 700; */
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-align: center;
    width: 100%;
    color: #3a2a00;
    color: #1e1e1e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: capitalize;
    text-align: center;
    width: 100%;
}
.listing p {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 50px;
    color: #5a5959;
    font-weight: 600;
}


.inner_banner{
    padding: 50px 0;
    background-size: cover;
}

.inner_banner {
padding: 200px 0;
}
.inner_banner h2 {
    position: absolute;
  bottom: 257px;
    background: rgba(255, 255, 255, 0.81);
    padding: 13px 69px;
}
.wrp{
    padding: 50px 0;
}
.contan figure img {
    width: 30%;
}
.contan figcaption {
    padding: 120px 0;
}
.contan p{
line-height: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
}
.con_info {
    padding: 50px 0;
    width: 100%;
}

.cont_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_box_img {
    height: 50px;
    width: 50px !important;
    margin-right: 9px;
}
.cont_box h2 {
font-size: 21px;
    margin-bottom: 5px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 14px;
}
.cont_box h3 {
font-size: 14px;
    color: #2b1f02;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 7px;
}
.wrp h4 {
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 31px;
    text-transform: uppercase;
}
.con_info figure{
    text-align: center;
    margin-bottom: 30px;
}
.con_info figure img {
    width: 350px;
    border: 10px solid #efefef;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.34);
-moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.34);
box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.34);
}
.cont_box h3 a {
color: #2b1f02;
}
.cont_box_content {
    width: auto;
    padding: 0 0 0 30px;
}
.contact_form_form {
    width: 100%;
    padding: 54px 80px;
    background-size: cover;
    background-repeat: no-repeat;
        background: #f3f3f3;
}
.contact_form_form .form-group {
    margin-bottom: 29px;
}
.contact .form-control {
    padding: .375rem 0rem;
    background-color: #fff0;
    border: none;
    border-radius: 0;
border-bottom: 1px solid #6d561b;
    color: #fff !important;
}
.contact_form_form input.send_button:hover {
    border: 2px solid #ffdc4d;
    color: #ffbd14;
    letter-spacing: 3px;
    background: #404040;
}

.contact_form_form input.send_button {
    float: left;
    background: #ffdc4d;
    border: 2px solid #ffdc4d;
    text-align: center;
    color: #1f0505;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin: 0 auto;
    border-radius: 50px;
    transition: 0.3s;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.75);
}
.contact{
}
    width: 100%;
}

.contact h2{
    text-align: center;
    width: 100%;
}


.con_info h6{
width: 100%;
    padding-bottom: 40px;
    font-size: 27px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
}

.con_info h5{
    width: 100%;
    padding-bottom: 40px;
    font-size: 27px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
}



.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: capitalize;
    z-index: 999;
}
.white-heading{
    color: #000;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #000;
}
/*-----Testimonial-------*/

.testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}

.testimonial {
    min-height: 375px;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}
#testimonial4 .carousel-inner:hover{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
  height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
  left: 7%;
  top: 50%;
  right: auto;
}
.testimonial4_control_button .carousel-control.right{
  right: 7%;
  top: 50%;
  left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}
.testimonial4_slide img {
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
color: #292929;
    font-size: 15px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
    font-weight: 600;
}
.testimonial4_slide h4 {
    color: #040404;
    font-size: 17px;
    font-weight: 700;
}

.testimonial .carousel {
	padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
    width: 35px;
    height: 35px;
}
.carousel-control-next-icon {
       background-image: url(../image/right-arrow.png);
}
.carousel-control-prev-icon {
       background-image: url(../image/left-arrow.png);
}

/* ------testimonial  close-------*/




.brnd{
    border-top: 1px solid #ccc;
    padding: 20px 0;
}
.brnd li{
 display: inline-block;
    margin: 0 34px 0 0;
}

.footer{
    background: #161616;
    padding: 50px 0 50px 0;
    float: left;
    width: 100%;
}

.footer .ft_logo figure{
    text-align: left;
    width: 100%;
        margin-bottom: 20px;
}
.footer .ft_logo figcaption {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}
.sc{
    text-align: left;
    width: 100%;
}
.sc li{display: inline-block;margin: 0 4px 0 0;text-align: center;/* background: #00123e; */padding: 6px;border-radius: 5px;border: 1px solid #666666;}


.footer h5{
    text-align: left;
    /* font-weight: 600; */
    margin-bottom: 20px;
    color: #c9c9c9;
    margin-top: 13px;
    letter-spacing: 1px;
    /* border-bottom: 1px solid #bfbfbf; */
    padding-bottom: 10px;
}


.footer li a{
    color: #b3b3b3;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

/************** - Our Service - ***********/
.ban {
    float: left;
    width: 100%;
    text-align: center;
    background: #fff7ba;
    padding: 50px 0;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_section {
    float: left;
    width: 100%;
    margin: 50px 0;
}

/***************** - Login - *******************/
.login_wrp{
        display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #ffffff;
}
.log_logo {
    text-align: center;
    margin-bottom: 45px;
}
.login-container {
    border: 1px solid #ececec;
    padding: 2rem;
    max-width: 370px;
    margin: 0 auto;
    background: #fff;
    box-shadow: -1px -1px 5px 0px rgb(0 0 0 / 57%);
    -webkit-box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: -1px -1px 5px 0px rgba(0,0,0,0.57);
    position: relative;
}
.login-container h3{
      margin: 0 0 30px;
  text-transform:capitalize;
  font-size:24px;
}

.input-field input{
  padding:.8rem;
  width:100%;
  border:1px solid #ccc;
}
input::placeholder{
  text-transform:capitalize;
  font-size:12px;
  color:#A0A3B0;
}
.input-field .label{
  display:flex;
  padding:5px 0;
  justify-content:space-between;
}
label{
  font-size:13px;
  font-weight:bold;
}
.label small{
  color:red;
  text-transform:capitalize;
}

.btn{
  padding:.75rem;
  width:100%;
  border-radius:3px;
  /* border: 2px solid #ffcd15; */
  color: #ffffff;
  background:transparent;
  font-weight: 600;
  cursor:pointer;
  margin-bottom:5px;
  transition:.2s ease-in;
  margin-top: 25px;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover{
  box-shadow:1px 4px 7px rgba(0,0,0,.2);
  background: #5e3d00;
  color:#fff;
}
.login{
  border:1px solid #ffcd15;
  background:#ffcd15;
  color:#000;
  margin-top:1rem;
    text-transform: uppercase;
}
.login:hover{
  box-shadow:1px 4px 7px rgba(0,0,0,.2);
  background:#000;
}

.otp {
    position: absolute;
    top: 133px;
    width: 83%;
    display: none;
}


/********************* Plumbing ***********************/

.content p {
    color: #434343;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.content h2 {
    color: #000;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    margin-top: 25px;
}
.content li{
    list-style-type: disc;
    color: #434343;
    font-weight: 600;
    padding-bottom: 10px;
}
.content img{
    width: 100%;
}
.content p {
    margin-top: 20px;
    text-align: justify;
    margin-bottom: 20px;
}
.content label {
    padding: 0 5px;
    margin-bottom: 20px;
}
#contact {
  background: #ffcd15;
  padding: 25px;
  margin: 150px 0;
  /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); */
  max-width: 520px;
  margin: 0 auto;
  margin-top: 50px;
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-weight: 600;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
  font-size: 15px !important;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  background: #eaeaea;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px !important;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #191919;
  color: #fff;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #000000;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

:-moz-placeholder {
  color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

::-moz-placeholder {
  color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

:-ms-input-placeholder {
  color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    
}

p.copyright a {
    color: #000;
    font-weight: 800;
}
.plum img{
    width: 100%;
    border: 5px solid #b9b9b9;
}
.plum{
    margin: 45px 0;
}
div#checkboxes {
    margin-bottom: 20px;
    padding: 0 2px;
}


/***********/









.carousel-wrap {
  /* margin: 90px auto; */
  padding: 0 5%;
  width: 100%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  /* border: 12px solid #f1f1f1; */
  box-shadow: 1px 1px 12px 0px #ebebeb;
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}





/************** Details  **************/


.post-slide .over-layer .btn1 {
    position: relative;
    top: 45%;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 25px;
}

button.btn1 {
    background: #000;
    padding: 6px 10px;
    font-size: 16px !important;
    border: none;
    letter-spacing: 1px;
    border-radius: 5px;
}

button.btn1:hover {
    background: red;
}
.post-title2{
    text-align: center;
    font-size: 20px;
}

.post-title2 a {
    text-align: center;
    font-size: 20px;
    font-weight: 800 !important;
    color: #000;
    text-transform: uppercase;
}

.modal-body #contact {
    padding-top: 20px;
    margin-top: 0;
    background: #fff;
}
.modal-dialog {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#exampleModal {
    background: rgb(0 0 0 / 85%);
}


/******/
#sync1 .item {
  margin: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

#sync2 .item {
  background: #c9c9c9;
  /* padding: 10px 0px; */
  margin: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#sync2 .item h1 {
  font-size: 18px;
}

#sync2 .current .item {
  background: #0c83e7;
}

.owl-theme .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

#sync1.owl-theme {
  position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

#sync1.owl-theme .owl-prev {
  left: 10px;
}

#sync1.owl-theme .owl-next {
  right: 10px;
}
/* animate fadin duration 1.5s */
.owl-carousel .animated {
  animation-duration: 1.5s !important;
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 35px !important;
  height: 55px !important;
}
#sync1 svg {
  width: 22px !important;
}
.fade:not(.show) {
opacity: 5 !important; 
}
.kls .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}
.owl-nav {
    position: absolute;
    top: 48%;
    display: flex;
    align-items: center;
    width: 100%;
}
.owl-nav .owl-prev {
    left: -30px !important;
    position: absolute;
}
button.owl-next {
    right: 0;
    position: absolute;
}

.modal-header {
    background: #ffcd15;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 800;
    text-align: center;
    width: 100%;
}


/************** Our Partner ***************/


.content2 p{
    text-align: center;
    width: 100%;
    
}
.content2 strong {
    margin-bottom: 15px;
    display: block;
    font-size: 16px;
    text-align: center;
}
.pricing-table{

  font-family: 'Montserrat', sans-serif;
}

.pricing-table .block-heading {
  padding-top: 50px;
  margin-bottom: 40px;
  text-align: center; 
    
}

.pricing-table .block-heading h2 {
color: #000;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.pricing-table .block-heading p {
  text-align: center;
  max-width: 580px;
  margin: auto;
  /* opacity: 0.7; */
}

.pricing-table .heading {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
}

.pricing-table .item {
  background-color: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
  border-top: 2px solid #ffcd15;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.pricing-table .col-md-5:not(:last-child) .item {
  margin-bottom: 30px; 
}

.pricing-table .item button {
  font-weight: 600; 
}

.pricing-table .ribbon {
  width: 160px;
  height: 32px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
  background: #2b2922;
  transform: rotate(45deg);
  position: absolute;
  right: -42px;
  top: 20px;
  padding-top: 7px;
}

.pricing-table .item p {
  text-align: center;
  margin-top: 20px;
  opacity: 0.7; 
}

.pricing-table .features .feature {
  font-weight: 600; }

.pricing-table .features h4 {
  text-align: center;
  font-size: 18px;
  padding: 5px; 
}

.pricing-table .price h4 {
  margin: 15px 0;
  font-size: 45px;
  text-align: center;
  color: #312703;
}

.pricing-table .buy-now button {
  text-align: center;
  margin: auto;
  font-weight: 600;
  padding: 9px 0; 
}


.heading2 {
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}


button.btn.btn-block.btn-outline-primary a {
    color: #000;
}
.brand img {
    width: 80%;
}

.calculater img{
    width: 100%;
    /* border: 5px solid #fff; */
    /* box-shadow: 1px 1px 12px 0px #1c1c1c8c; */
    position: relative;
    /* top: 0; */
}

.mt{
    margin-top: 0px;
}

.ft_logo img{
    width: 70%;
}


ul.pst li {
    list-style-type: disc;
    padding-bottom: 6px;
    color: #000000;
    /* font-weight: 600; */
    font-size: 16px;
    letter-spacing: 0.5px;
    text-align: justify;
}
.lp p {
    width: 90%;
    color: #fff !important;
}
ul.pst {
    padding: 18px;
}
.ft_logo p{
    color: #a7a7a7;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 22px;
}

.slideshowContainer h1 {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 83%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    top: 42%;
    /* background: rgb(0 0 0 / 81%); */
    color: #ffffff;
    padding: 15px;
    font-size: 66px;
    text-transform: capitalize;
    font-weight: 800;
    text-shadow: 8px 7px 8px #0a000033;
}
a.active {
    /* background: #c9b175; */
    color: #f5e30c !important;
    font-weight: 700;
}

.dfh{
    background: #061302;
    background-attachment: inherit;
}
.dfh h2{
    color: #a0f99e !important;
}

.dfh figcaption p{
        color: #ffffff !important;
        font-weight: 400;
}






header h1 {
    font-size: 17px;
    color: #fff;
    padding: 15px 0;
}

header {
    position: absolute;
    height: 50px;
    width: 100%;
    top: 25px;
}

.text{
    text-align: center;
    /* height: 100px; */
    background: #ffedf5;
    color: #FFF;
    z-index: 9999;
    position: absolute;
    width: 100%;
    height: 28px;
    display: flex;
    align-items: center;
}
.text h2{
    margin: 0;
    line-height: 34px;
    font-size: 18px;
    color: #fff !important;
}
.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 300ms ease;
    background: #000;
}
.text img {
    width: 25px;
    margin: 0 10px 0 0;
}
.text p{
    text-align: left;
    display: flex;
    align-items: center;
    color: #3a2a00;
    font-weight: 600;
    font-size: 14px;
}
ul.sc_head {
    float: left;
}
ul.sc_head li{
   display: inline-block;
   /* margin: 0 4px; */
   text-align: center;
}
ul.sc_head li .fa{
    color: #3a2a00 !important;
    margin: 0 0;
    /* border: 1px solid #409bf9; */
    width: 30px;
    /* padding: 4px 7px; */
    text-align: center;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
.ban h1 {
    color: #fff1f6;
    margin: 117px 0 0 0;
    letter-spacing: 3px;
    font-size: 40px;
    /* font-family: 'Poppins', sans-serif; */
}


.main_sec{
    padding: 70px 0;
    width: 100%;
    float: left;
}
.ab_pg p{
    color: #201f1f;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-align: justify;
    padding: 14px 0;
    line-height: 29px;
}
.ab_pg h2 {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    /* font-weight: 700; */
    font-size: 35px;
    letter-spacing: 1px;
    /* margin-bottom: 25px; */
    text-transform: capitalize;
    margin-top: 25px;
}










.revGallery-anchor, .gal-overlay, .nak-gallery-poster{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


.revGallery-anchor{
  overflow: hidden;
  position: relative;
  width: calc(100% / 5);
  display: block;
  float: left;
  border: 5px solid #e9e9e9;
}

.gal-overlay{
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(27,27,27, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  transition: background .4s ease;
  -webkit-transition: background .4s ease;
}
		
.revGallery-anchor:hover .gal-overlay{
  background: rgba(27,27,27, 0);
}

.nak-gallery {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.nak-gallery-poster{
  padding-bottom:100%;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
}

.revGallery-anchor:hover .nak-gallery-poster{
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
}

.img-responsive{
  display:none;
}

.button{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  width: fit-content;
  height: 48px;
  border: 1px solid rgb(181 209 138);
  background-color: rgb(241 255 230);
  border-radius: 2px;
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0 20px;
}

.button:hover {
  background-color: #363636;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.button:active,
.button.is-checked {
  background-color: #238100;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}


.revGallery-anchor-width1{
  width: 40%
}

.revGallery-anchor-width2{
  width: 30%
}

.revGallery-anchor-width3{
  width: 20%
}

.nak-gallery-height1{
  padding-bottom: 400px
}

.nak-gallery-height2{
  padding-bottom: 300px
}

.nak-gallery-height3{
  padding-bottom: 200px
}

.preloader{
  display: none;
}

.preloaderStyle{
  background: red;
  width: 100%;
  height: 100px;
}
.bt_list{
    text-align: center;
display:none;
}

.office_contact_details h5 {
   color: #000000;
   font-family: 'Poppins', sans-serif;
   /* font-weight: 700; */
   font-size: 35px;
   letter-spacing: 1px;
   /* margin-bottom: 25px; */
   text-transform: capitalize;
   margin-top: 25px;
   margin-bottom: 25px;
}

.office_contact_details ul li {
    width: 100%;
    margin: 10px 0px;
    font-size: 15px;
    color: #000;
    padding-bottom: 15px;
}
.office_contact_details ul li a {
     color: #000;
    font-size: 18px;
}

.office_contact_details li span img {
    width: 43px !important;
    margin: 0 20px 0 0;
    /* background: #242000; */
    padding: 9px;
    background: #daddd6;
    border: 1px solid #f1f1f1;
}
.office_contact_details span {
    float: left;
}
.office_contact_details strong {
    width: 100%;
    font-size: 16px;
    color: #2a2929;
}
.form-horizontal input.form-control {
    padding: 8px 15px;
    width: 100%;
    border: 1px solid #ccc;
    background: #f2f2f2;
}
input.btn {
    background: #2c2c2c;
}
.form-horizontal .form-group {
    margin-bottom: 10px !important;
}

textarea.form-control {
    height: 191px;
}
.office_contact_details.contact_us_paged {
    background: #fbfbfb;
    padding: 15px 20px;
    max-width: 590px;
    margin: 0 auto;
    margin-top: 70px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
}

.office_contact_details.contact_us_paged h5 {
   color: #000000;
   font-family: 'Poppins', sans-serif;
   /* font-weight: 700; */
   font-size: 27px;
   letter-spacing: 1px;
   /* margin-bottom: 25px; */
   text-transform: capitalize;
   margin-top: 0;
   margin-bottom: 25px;
}







#accordion .card {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: none;
}
#accordion .card .card-header {
  background: none;
  border: none;
  padding: 25px 0;
}
#accordion .card .card-header.top-headline {
  padding: 0 0 25px;
}
#accordion .card .card-body {
  padding: 0 0 25px;
}

.vertical-tabs .nav-link {
  text-transform: uppercase;
  color: #000000;
  /* font-family: "azo-sans-web", sans-serif; */
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  padding: 11px;
}
@media (min-width: 768px) {
  .vertical-tabs .nav-link {
    border-bottom: 1px solid #73b8ff;
  }
}
.vertical-tabs .nav-link.active {
  background: #0d84ff;
  color: #fff;
  border-bottom: none;
}
.vertical-tabs .tab-content {
  /* margin-top: 30px; */
}
@media (min-width: 768px) {
  .vertical-tabs .tab-content {
    /* margin-top: 22px; */
  }
}

#news-slider .post-slide {
    /* background: #f7f7f7; */
    margin: 0px 10px;
    border-radius: 10px;
    padding-top: 1px;
    /* box-shadow: 1px 1px 12px 0px #d5d5d5; */
    /* border: 1px solid #c9b175; */
}

div#v-pills-tab {
    background: #a3d0ff;
    /* padding: 15px; */
}


.p_deta{
    width: 100%;
}

.p_deta img{
    width: 100%;
}
.p_deta h1 {
    color: #000000;
    /* font-family: 'Poppins', sans-serif; */
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 1px;
    /* margin-bottom: 25px; */
    text-transform: capitalize;
    /* margin-top: 25px; */
    margin-bottom: 0;
}

.p_deta h5{
    margin-bottom: 25px;
    color: #666;
}

.p_deta th {
    width: 155px;
}
.p_deta td {font-weight: 500;color: #2c2c2c;}



.p_deta .btn {
    padding: 0.75rem;
    width: 30%;
    border-radius: 3px;
    /* border: 1px solid #bfbfbf; */
    color: #fffafa;
    background: #ff0060;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 5px;
    transition: .2s ease-in;
    margin-top: 25px;
}

.footer li a:hover{
    color: #44a247;
}

.text .fa {
    margin: 0 10px 0 0;
}
.sc ul.sc_head li .fa {
    color: #c1c1c1 !important;
    margin: 0 0;
    /* border: 1px solid #409bf9; */
    width: 30px;
    /* padding: 4px 7px; */
    text-align: center;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 20px;
}

a.det {
    background: #2c2c2c;
    padding: 5px 15px;
    margin-bottom: 20px;
    margin-top: 25px;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 5px;
}
h3.post-title {
    background: #fff;
    /* position: absolute; */
    bottom: 40px;
    left: 0;
    right: 0;
    max-width: 290px;
    margin: 0 auto;
    font-size: 35px;
}
.lp figcaption span {
    color: #fff !important;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}
.post-slide figcaption {
padding: 25px 10px;
}
.post-slide figcaption h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.post-slide figcaption h5 {
    font-size: 16px;
    font-weight: 600;
}
.p_deta h2 {
    font-size: 21px;
    color: #323232;
    font-weight: 700;
        font-family: 'Poppins', sans-serif;
    margin: 10px 0;
}


#news-slider h3.post-title {
    background: #fff;
    position: relative;
    bottom: 29px;
    left: 0;
    right: 0;
    max-width: 290px;
    margin: 0 auto;
    font-size: 35px;
    border: 1px solid  #56ab54;
    z-index: 9999;
}
.bds {
    position: absolute;
    top: 200px;
    right: 0;
    left: 0;
    text-align: center;
}
.bds span {
    background: rgb(0 0 0 / 68%);
    font-size: 28px;
    color: #cdbc03;
    padding: 25px 25px;
    margin-bottom: 35px;
    line-height: 0;
    display: block;
    max-width: 210px;
    right: 0;
    left: 0;
    margin: 0 auto;
    margin-bottom: 55px;
}
a.btns {
    position: absolute;
    bottom: 120px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #c3ba00;
    max-width: 150px;
    text-align: center;
    padding: 15px;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    /* box-shadow: 1px 1px 14px 2px #000000bd; */
}
.calculater span {
    font-size: 20px;
}
.calculater.dfh li {
    color: #fff;
    padding-bottom: 17px;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}
ul.oxp li img {
    width: auto;
}
.calculater.dfh li img {
    margin: 0 20px 0 0;
}
.if {
    margin-top: -128px;
}
.calculater.dd {
    padding-bottom: 70px;
}








.testim {
		width: 100%;
		position: relative;
		top: 289px;
		/* -webkit-transform: translatey(-50%); */
		-moz-transform: translatey(-50%);
		-ms-transform: translatey(-50%);
		-o-transform: translatey(-50%);
		transform: translatey(-50%);
		background: #f2fcfe;
		padding: 50px 0 0 0;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #2e2e2e;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #bbb;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #343131;
    font-size: 19px;
    margin: 15px 0;
    font-weight: 500;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #000;
    width: 80%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

}


.testim-cover h2{
        text-align: center;
    width: 100%;
    color: #000000;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.testim-cover p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  margin-top: 60px;
}

.gallery img {
  width: 100%;
}

.gallerys h2 {
    text-align: center;
    width: 100%;
    color: #000000;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.gallerys{
    padding: 70px 0;
text-align:center;
}
.gallerys a.ylbtn{
margin-top:50px;
}

.footer h5 {
    font-size: 16px !important;
    color: #4da649;
}
ul.opn li {
    color: #c3c3c3;
    font-size: 12px;
}


.snip1467 {
  font-family: 'Lato', Arial, sans-serif;
  /* position: relative; */
  /* overflow: hidden; */
  margin: 10px;
  /* min-width: 230px; */
  /* max-width: 315px; */
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  background-color: #264008;
  line-height: 1.5em;
  height: 410px;
  margin-bottom: 68px;
}

.snip1467 *,
.snip1467 *:before,
.snip1467 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.snip1467 img {
  width: 100%;
  /* backface-visibility: hidden; */
  /* vertical-align: top; */
  /* -webkit-transform: translate(-40px); */
  /* transform: translate(-40px); */
  height: 280px;
}

.snip1467 figcaption {
  /* position: absolute; */
  top: 50%;
  width: 100%;
  /* -webkit-transform: translateY(-25%); */
  /* transform: translateY(-25%); */
  padding: 15px 40px;
  /* opacity: 0; */
}

.snip1467 h3 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}

.snip1467 p {
  font-weight: 400;
  margin: 0;
  font-size: 0.9em;
}

.snip1467 i {
  position: absolute;
  color: #fff;
  font-size: 17px;
  line-height: 37px;
  width: 35px;
  bottom: 52px;
  left: 0;
  background-color: #8bc34a;
  /* -webkit-transform: translateX(-55px); */
  /* transform: translateX(-55px); */
  right: 0;
  margin: 0 auto;
  height: 35px;
}

.snip1467 a {
  /* position: absolute; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.snip1467:hover img,
.snip1467.hover img {
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -webkit-transform: translateX(0px);
  /* transform: translateX(0px); */
}

.snip1467:hover figcaption,
.snip1467.hover figcaption {
  /* -webkit-transform: translateY(-50%); */
  /* transform: translateY(-50%); */
  /* opacity: 1; */
}

.snip1467:hover i,
.snip1467.hover i {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.service_pg {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.contact-pg{
    display: inline-block;
        width: 100%;
    padding: 0 0 50px 0;
}
.conts span img {
    width: 43px;
}

.conts {
    padding: 15px;
    /* background: #f1f1f1; */
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.34);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 0px 3px 5px 0px rgb(227 227 227 / 34%);
    width: 100%;
    height: 77px;
    border: 1px solid #9edf54;
    border-radius: 6px;
}
h1.aos-init.aos-animate {
    font-size: 54px;
    margin: 0 auto;
    margin-top: 25px;
}
.row.map {
    margin-bottom: 50px;
}
.service_pg p {
    text-align: center;
    line-height: 19px;
}
.head_pnl2 h3 {
    text-align: left;
    color: #000;
    font-size: 44px;
    text-transform: uppercase;

    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
    line-height: 52px;
    margin-bottom: 35px;
    padding-left: 0;
    margin-left: 0;
}
ul.exp li {
    font-size: 19px;
    margin-bottom: 14px;
    list-style-type: disclosure-closed;
    color: #001e50;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}




.section-title {
    text-align: center;
    padding-bottom: 0;
    position: relative;
    top: 0px;
    /* padding-left: 15px; */
    padding-right: 15px;
}
.section-title .section-title__01 {
    color: #f47629;
}
.section-title .section-title__01 {
    font-size: 16px;
    line-height: 26px;
    color: #729f2f;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-align: left;
}
.section-title .section-title__02 {
    font-size: 36px;
    line-height: 46px;
    color: #303442;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7px;
    margin-bottom: 0;
    text-align: left;
}

.layout01__content p {
    font-size: 16px;
    line-height: 27px;
    margin: 28px 0 0 0px;
}

.abs img{
    width: 100%;
}


.cer{
        background: #061302;
    padding: 50px 0;
}
.cer img{
    width: 100%;
    height: 250px;
    border: 2px solid #a0f99e;
}
.cer h2 {

font-family: 'Poppins', sans-serif;

color: #a0f99e !important;
font-weight: 700;

font-size: 45px;

letter-spacing: 1px;

margin-bottom: 0;

text-transform: capitalize;

margin-bottom: 15px;

text-align: center;
}
.cer p {
    text-align: center;
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    color: #ccc;
    font-weight: 600;
    margin-bottom: 50px;
}

.cal_bak {
    background-size: cover;
    padding: 50px 0;
}
.tt-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.tt-box_description {
    background-color: rgb(255 255 255);
    display: inline-block;
    padding: 47px 50px 60px 51px;
    max-width: 584px;
    border-radius: 10px;
}
.tt-box_title{
    font-size: 36px;
    line-height: 46px;
    color: #303442;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding: 0 0 0 37px;
    margin: 0 0 23px 0;
    border-left: 5px solid #8bc34a;
}
.tt-row-btn {
    position: relative;
    margin-top: 40px;
    /* margin-left: -20px; */
}

a.tt-btn {
    background: #013c00;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
}
textarea.form-control {
    width: 100%;
    padding: 10px;
       background: #f2f2f2;
        border: 1px solid #ccc;
}
a.ylbtn:hover {
    background: #e6dd29 !important;
    color: #000 !important;
}
.cer{
	display:none;
}
ul.sc_head li:hover{
	background:green;
}
	input.wpcf7-form-control.wpcf7-text.form-control {
    width: 100%;
    height: 49px;
    margin-bottom: 20px;
    border: 0;
    background: #f2f2f2;
    border: 1px solid #ccc;
}
div#wpcf7-f226-o1 {
    width: 100%;
}

.footer li	{
	color:#fff;
	margin-bottom:0px;
	padding-bottom:0px;
}
/**************responsive***********/



@media screen and (max-width: 1500.98px) {}

@media screen and (max-width: 1241.98px) {
    a.btns {
    position: absolute;
    bottom: 110px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #c3ba00;
    max-width: 150px;
    text-align: center;
    padding: 15px;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    /* box-shadow: 1px 1px 14px 2px #000000bd; */
}
    .slideshowContainer h1{
      font-size: 56px;
    }
}

@media screen and (max-width: 991.98px) {}

@media screen and (max-width: 767.98px) {}

@media screen and (max-width: 420.98px) {
h1.aos-init.aos-animate {
    font-size: 20px;
	line-height: 31px;
}
	.brand {
    width: auto;
   
}

	.calculater img {
    width: 100% !important;
		margin-top:20px;
}
	ul.oxp li img {
    width: auto !important;
}
	.calculater figcaption {
    padding: 35px 0 40px 0;
    text-align: center;
    margin-bottom: -10px;
}
	.gallerys {
    padding: 0 0 70px 0;
    text-align: center;
}
	.tt-box_title {
    font-size: 21px;
    line-height: 32px;
    color: #303442;
    font-family: "Poppins", sans-serif;
    position: relative;
    padding: 0 0 0 37px;
    margin: 0 0 23px 0;
    border-left: 5px solid #8bc34a;
}
	.snip1467{
		margin:0 auto;
		    margin-bottom: 30px;
	}

	.conts{
		margin-bottom:15px;
	}
	.calculater figcaption h2 {
    color: #000000;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
}
	.prd h2{
		 font-size: 30px;
	}
	.prd {
		padding: 0px 0 50px 0;
	}
	.calculater.dd {
    padding-bottom:20px;
    margin-bottom: 25px;
}
	.calculater.dfh li{
		text-align:left;
	}
	.testim-cover h2{
		font-size:30px;
	}
	.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 0px 20px;
    margin: auto;
}
	.gallerys h2{
		font-size:30px;
	}
	.nav-mobile {

    position: absolute;
    top: 30px;
    right: 20px;
    background: #262626;
    height: 70px;
    width: 70px;
		    border: 1px solid #fff;
}
	.navigation {
    background: rgb(0 0 0);

}
	
	.slideshowContainer {
    /* position: relative; */
    /* overflow: hidden; */
    margin: 0px 0;
    width: 100%;
    height:55vh;
    top: 0;
    background: transparent;
    background-size: 100% 100% !important;
}
	.imageSlides {
    position: absolute;
    left: 0;
    top: 129px;
    right: 0;
}
	a.btns{
		display:none;
	}
		.bds span {
    background: rgb(0 0 0 / 68%);
    font-size: 18px;
    color: #cdbc03;
    padding: 16px 0;
    margin-bottom: 35px;
    line-height: 0;
    display: block;
    max-width: 130px;
    right: 0;
    left: 0;
    margin: 0 auto;
    margin-bottom: 0;
}
.bds {
    position: absolute;
    top: 160px;
    right: 0;
    left: 0;
    text-align: center;
}
	#rightArrow {
    top: 67%;
}
	#leftArrow{
		 top: 67%;
	}
	.calculater {
    padding: 30px 0 0px;
    background: #f5fff5;
}
	.dfh {
    background: #061302 !important;
 
}
	a.tt-btn {
    background: #013c00;
    padding: 10px 11px;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
}
}
@media screen and (max-width: 390px) {

}

@media screen and (max-width: 321.98px) {}

