*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
h1,h2,h3,h4,h5,h6,a,ul,li,span,p{
    margin: 0;
    padding: 0;
}
html, body{
    overflow: unset;
	font-family: "Poppins";
}
a,
a:hover,
a:focus{
    text-decoration: none;
}
img,
video {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*================= menu =======================*/
.header .navbar {
  max-width: 100%;
  height: auto;
	float: right;
    padding-right: 40px;
	align-items:flex-start;
}

.header .menu > .menu-item {
  position: relative;
  display: inline-block;
  margin: 0 1.50rem;
}

.header .menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  line-height: inherit;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: #fff;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.35rem;
  border: none;
  outline: none;
  pointer-events: none;
}

.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  content: '';
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu > .menu-item:hover > a {
  color: #000;
}

.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
  background: #e91e63;
}

.header .menu > .menu-item > a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #e91e63;
}

.header .menu > .menu-item > .sub-menu {
  position: absolute;
  left: -1rem;
  top: 100%;
  width: 13rem;
  height: auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #e91e63;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: inherit;
  padding: 0.5rem 1.25rem;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .opened-menu {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.header .opened-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: #fff;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
  top: 0;
}

.header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
  top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
  top: 1rem;
}

.header .closed-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  outline: none;
  background: none;
}

.header .closed-menu img.closed-icon {
  display: block;
  width: 1rem;
  height: auto;
}

.header .overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .header .menu > .menu-item-has-children:hover > a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media only screen and (max-width: 992px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -18rem;
    width: 18rem;
    height: 100%;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar::-webkit-scrollbar {
    width: 5px;
  }
  .header .navbar::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #e6e6e6;
    -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  .header .menu {
    width: 100%;
    height: auto;
    margin-top: 3.5rem;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu > .menu-item > a {
    padding: 0.75rem 1rem;
    color: #121212;
    border-bottom: 1px solid #f2f2f2;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #f2f2f2;
  }
  .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
    background: #121212;
  }
  .header .menu > .menu-item-has-children.active > a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 0.75rem 2rem;
    color: #121212;
    border-bottom: 1px solid #f2f2f2;

  }
  .header .opened-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .closed-menu {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 1rem;
    right: 0.5rem;
  }
}

#search-btn{
 /* position: absolute;
  top: 1em;
  right: 1em; */
 
}


#search-overlay{
  display:none;
}
.block {
  position: fixed;
  top: 0;
  right: 0;
  bottom:0 ;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  margin: 0;
z-index: 9;
}

.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}

.centered {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  padding: 10px 15px;
  color: #FFF;
  border: none;
  background: transparent;
}

#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}

#search-form {
  height: 4.1em;
  border: 1px solid #999;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  overflow: hidden;
}

#search-text {
  font-size: 14px;
  color: #ddd;
  border-width: 0;
  background: transparent;
}

#search-box input[type="text"] {
    width: 100%;
    padding: 19px 110px 20px 20px;
    color: #333;
    outline: none;
    font-size: 18px;
}

#search-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 4.7em;
  width: 100px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 42px;
  border-width: 0;
  background-color: #59b234;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
}

#close-btn{
  position: fixed;
  top: 1em;
  right: 1em;
}
#close-btn:hover{
  color: #777;
  cursor: pointer;
}

.footer_bottom{
	background: #3f3f3f;
}
.footer_top{
	background: rgb(139,191,103);
	background: -webkit-linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	background: -o-linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	background: linear-gradient(312deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	position: relative;
	    padding: 50px 50px 30px;
}
.footer_top:after{
	content: "";
	position: absolute;
	background: url(../images/background_spakel.png) 0 0 no-repeat;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0px;
}
.foot_title {
    padding-bottom: 30px;
}
.foot_title h5 {
    color: #fff;
}
.footer_top p {
    color: #fff;
}
ul.foot_social {
    padding: 20px 0 0;
    display: flex;
}
ul.foot_social li {
    padding: 0 10px;
}
ul.foot_social li a {
    color: #59b234;
    font-size: 20px;
}
ul.foot_social li a:hover {
    color: #fff;
}
ul.foot_quick li {
    padding: 0 0 12px;
    position: relative;
    font-size: 17px;
}

ul.foot_quick li a {
    color: #fff;
}
ul.foot_quick li a:hover {
    color: #59b234;
}
.foot_address li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}
.foot_address li span {
    color: #fff;
    padding-right: 10px;
    font-size: 23px;
}
.foot_address li a {
    color: #fff;
}

section.menu_inner {
    position: relative;
    z-index: 9;

}
.head_serch {
    position: absolute;
    right: 12px;
    top: 23px;
}
.head_serch i#search-btn {
    font-size: 15px;
    color: #fff;
}
.banner_section{
	background: rgb(139,191,103);
	background: -webkit-linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	background: -o-linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	background: linear-gradient(312deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	position: relative;
	    padding: 150px 50px;
}
.banner_section:after{
	content: "";
	position: absolute;
	background: url(../images/background_spakel.png) 0 0 no-repeat;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0px;
}
.banner_title, .banner_leftimg {
    position: relative;
    z-index: 9;
}
.banner_title h3 {
    color: #fff;
    font-size: 46px;
}
.banner_title h5 {
    color: #fff;
    padding: 14px 0 50px;
}
.banner_title a {
    background: #fff;
    border-radius: 4px;
    padding: 15px 30px;
    color: #59b234;
}
.banner_leftimg {
    text-align: right;
}
.banner_leftimg img {
    max-width: 80%;
}


.section_title h3 {
    font-weight: 600;
    margin-bottom: 5px;
}
.section_title p {
    font-size: 14px;
}
.offering_section {
    background: #f6f7ff;
    padding: 60px 0;
}
.offer_boxing {
    margin-bottom: 50px;
    min-height: 300px;
    padding: 40px 60px;
    border-radius: 10px;
}
.offer_boxing:hover{
	background: rgb(139,191,103);
background: -webkit-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: -o-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
}
.offer_icon{
	background: rgb(139,191,103);
background: -webkit-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: -o-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	    height: 50px;
    width: 50px;
    padding: 10px;
    border-radius: 8px;
}
.offer_icon img {
    filter: invert(96%) sepia(4%) saturate(0%) hue-rotate(279deg) brightness(104%) contrast(103%);
}
.offer_boxing:hover .offer_icon img{
	filter: invert(74%) sepia(52%) saturate(7164%) hue-rotate(60deg) brightness(92%) contrast(80%);
}
.offer_boxing:hover .offer_icon{background: #fff;}
.offer_boxing:hover h4, .offer_boxing:hover p{color: #fff;}
.offer_boxing h4 {
    padding: 25px 0 10px;
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
	    display: inline-block;
}
.offer_boxing h4:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #60c038;
}
.offer_boxing h4:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #60c038;
    bottom: 0;
    left: 0;
}
.offer_boxing p {
    font-size: 14px;
}
.aboutus_section {
    padding: 60px 0;
}
.contact_section {
    background: #f6f7ff;
    padding: 90px 0;
}
.cont_img {
    text-align: center;
}
.cont_img img {
    max-width: 75%;
}
.cont_form input.form-control {
    margin-bottom: 20px;
    font-size: 14px;
    height: 45px;
    background: #f9f9ff;
}
.cont_form textarea.form-control {
    margin-bottom: 20px;
    font-size: 14px;
    height: 105px;
    background: #f9f9ff;
}
.cont_form a {
    background: #fff;
    margin: auto;
    display: table;
    padding: 8px 20px;
    border-radius: 6px;
    color: #59b234;
}
.cont_form a:hover {
    background: #59b234;
    color: #fff;
}
.testmorial_section{
	background: rgb(139,191,103);
background: -webkit-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: -o-linear-gradient(132deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
background: linear-gradient(222deg, rgba(139,191,103,1) 0%, rgba(169,224,125,1) 100%);
	padding: 50px 0;
}
.testmo_inner {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}
.testmo_inner .testmo_top {
    display: flex;
    align-items: center;
}
.testmo_top .testmo_img {
    width: 60px;
    height: 60px;
    background: #999;
    border-radius: 50%;
    object-fit: cover;
}
.testmo_inner .testmo_autore {
    padding-left: 15px;
}
.testmo_inner .testmo_autore p.autor {
    font-weight: 600;
    line-height: 1.25;
    font-size: 14px;
}
.testmo_inner .testmo_autore p.desination {
    line-height: 1.25;
    font-size: 14px;
}
.testmo_inner .testmo_info {
    padding-top: 15px;
    font-size: 14px;
    line-height: 1.25;
}
.testimori_slider button.owl-prev {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
}
.testimori_slider button.owl-next {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translate(0, -50%);
}
.testimori_slider button.owl-prev i, .testimori_slider button.owl-next i{
	font-size: 40px;
    color: #fff;
}
.testimori_slider button.owl-prev:hover, .testimori_slider button.owl-next:hover {
	background: none !important;
}
.testimori_slider button.owl-prev:hover i, .testimori_slider button.owl-next:hover i{
    color: #59b234;
}
.ourclient_top_section {
    background: #f6f7ff;
    padding: 50px 0;
}
.ourclient_bottom_section{
	background: #fbfbff;
	padding: 50px 0;
}
.bussness_section {
    background: #f6f7ff;
}
.bussniss_img {
    text-align: center;
}
.bussnis_info {
    max-width: 75%;
    margin: 0 auto;
}
.bussnis_info h4 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}
.bussnis_info p {
    font-size: 14px;
}
ul.bussis_cust_icon {
    display: flex;
    align-items: center;
    margin-top: 50px;
	justify-content: space-between;
}
.bussis_cust_icon img {
    max-width: 30px;
}
.bussis_cust_icon li {
    font-size: 14px;
}
ul.bussis_tick_icon {
    margin-top: 40px;
}
ul.bussis_tick_icon li {
    padding: 0 0 25px 30px;
    position: relative;
    font-weight: 600;
}
ul.bussis_tick_icon li:after{
	content: "";
	position: absolute;
	background: url(../images/tick_icon.png) 0 0 no-repeat;
	width: 35px;
	height: 35px;
	left: 0;
	top: 2px;
	background-size: 20px;
}
.topproject_section {
    background: #f6f7ff;
    padding: 70px 0 50px;
}
.topproject_section .section_title {
    padding-bottom: 70px;
}
.topproje_tow img {
    margin-bottom: 20px;
    border-radius: 7px;
}
.topproje_one img{
	border-radius: 7px;
}









