@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;900;1000&display=swap');
@import url("animate.css");
@import url("swiper.min.css");
@import url("jquery.fancybox.min.css");
@import url("tm-bs-mp.css");
@import url("tm-utility-classes.css");
:root {

  --theme-color1: #2e2d2d;
  --theme-color2: #1f9ce4;
  --theme-color3: #3e60c1;
  --theme-color4: #f4f5fa;
  
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --bg-theme-color4: var(--theme-color4);
  --border-theme-color1: var(--theme-color1);
  --border-theme-color2: var(--theme-color2);
  --border-theme-color3: var(--theme-color3);
  --border-theme-color4: var(--theme-color4);
  --text-color-bg-theme-color1: #fff;
  --text-color-bg-theme-color2: #fff;
  --text-color-bg-theme-color3: #fff;
  --text-color-bg-theme-color4: #fff;
  --text-color: #67687a;
  --headings-color: var(--theme-color1);
  --link-color: var(--theme-color1);
  --link-hover-color: var(--theme-color1);
  --gradient-1: linear-gradient(to left, var(--theme-color3), var(--theme-color2));
  --gradient-2: linear-gradient(to left, var(--theme-color2), var(--theme-color3));
  --text-font: "Mulish", sans-serif;
  --title-font: "Mulish", sans-serif;
  --body-font-size: 18px;
  --body-line-height:1.25em;
  --body-font-weight: 300;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 75px;
  --h2-font-size: 42px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight:500;
  --h2-font-weight:600;
  --h3-font-weight:600;
  --h4-font-weight:600;
  --h5-font-weight:600;
  --h6-font-weight:600;
  --sec-title-subtitle-color: var(--gradient-1);
  --sec-title-subtitle-font-size: 18px;
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 22px;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #222429;
  --container-width: 1200px;
  --small-container-width: 1000px;
  --large-container-width: 1550px;
  --container-pt: 120px;
  --container-pb: 120px;
}

::-moz-selection {
  background: var(--theme-color3);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color3);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  letter-spacing:-0.5px;
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}


h1, h2, h3, h4 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}



p {
  margin-bottom: 20px;
}

a {
  color: var(--theme-color3);
  text-decoration: none;
  font-weight:500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a img {
  border: none;
}

ul {
  margin-bottom: 10px;
}

ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}



section > .container {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-width);
  }
}

.form-control {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}


* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}


textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

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

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  max-width:2000px;
  z-index: 99;
  background-color: #ffffff;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}


.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color:var(--theme-color2);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--theme-color1);
  color: #ffffff;
}



.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(../img/header25.jpg);
  background-attachment:fixed;
}

.bg-pattern-6 {
  background-image: url(../img/bg02.jpg);
  border-radius:15px;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.bg-pattern-6:before {
background-image:linear-gradient(to left, var(--theme-color3), var(--theme-color2));
position:absolute;
content:'';
top:0;
left:0;
  border-radius:15px;
width:100%;
height:100%;
opacity:0.75;
}



.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);


}
.theme-btn .btn-title {
  position: relative;

}



.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  padding: 15px 30px;
  font-weight:300;
  overflow: hidden;
  color: #ffffff;
background-image: linear-gradient(to left, var(--theme-color3), var(--theme-color2)); 
  border-radius:8px;
}
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 100%;
  width: 100%;
  content: "";
  background: var(--gradient-2);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one i {
  margin-left: 5px;
}
.btn-style-one:hover:before {
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btn-style-one:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.btn-style-three {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  padding: 15px 30px;
  overflow: hidden;
  color: var(--theme-color1);
  background-color: var(--bg-theme-color4);
  border-radius: 5px;
}
.btn-style-three:before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 100%;
  width: 100%;
  content: "";
  background: var(--gradient-1);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-three i {
  margin-left: 5px;
}
.btn-style-three:hover:before {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btn-style-three:hover {
  color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

.main-header {
  width: 100%;
  z-index: 999;
}
.main-header .logo {
  position: relative;

}

.main-header .slogan {
  position: relative;
padding-left:20px;
max-width:220px;

}

.main-header .slogan p{
    line-height: 1em;
    font-size: 15px;
	font-weight:400;
}

.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
   -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; 
}
.main-header .main-box .nav-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.main-menu {
  position: relative;
}
@media only screen and (max-width: 1160px) {
  .main-menu {
    display: none;
  }
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 18px 0px;
  margin-right: 60px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:before {
  position: absolute;
  left: 50%;
  bottom: 20px;
  height: 1px;
  width: 0%;
  background-color: #ffffff;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li:hover:before {
  left: 0;
  width: 100%;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: #ffffff;
  font-size:17px;
  line-height: 30px;
  font-weight: 500;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: var(--title-font);
}
.main-menu .navigation > li > a:hover {
  color: #ffffff;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 30px 0;
}


.main-header {
position:absolute;
  width: 100%;
  top:0;
  left:0;

}
.auto-container {
  max-width: 1470px;
}
@media only screen and (max-width: 1700px) {
  .main-header .auto-container {
   /* max-width: 1470px;*/
  }
}


.main-header .main-box .nav-outer {
  width: auto;
}
.main-header .logo-box {
  position: relative;
  padding: 20px 0px;
}
@media only screen and (max-width: 1023px) {
  .main-header .logo-box {
    padding: 10px 0;
  }

}
@media only screen and (max-width: 1199px) {
  .main-header .main-menu .navigation > li {
    margin-right: 50px;
  }
}
.main-header .main-menu .navigation > li > a {
  color: var(--theme-color1);
}
.main-header .outer-box {
  padding: 20px 0;
}
.main-header .mobile-nav-toggler {
  color: var(--theme-color1);
}

@media only screen and (max-width: 630px) {
.main-header .main-box {flex-direction: column;}

}

.mobile-nav-toggler {
  position: relative;
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  color: #ffffff;
  display: none;
  top: -3px;
  margin-left: 20px;
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}
@media only screen and (max-width: 1160px) {
  .mobile-nav-toggler {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  top: -10px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 40px;
}
.mobile-menu .menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--gradient-1);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}

.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.mobile-menu-visible .scroll-to-top {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a {
  color: #ffffff;
}

.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
}
.contact-list-one li {
  position: relative;
  margin-bottom: 20px;
}
.contact-list-one li:last-child {
  margin-right: 0;
}
.contact-list-one li .contact-info-box {
  position: relative;
  padding-left: 54px;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.contact-list-one li .contact-info-box a {
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-one li .contact-info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 34px;
  line-height: 50px;
  color: #ffffff;
}
.contact-list-one li .contact-info-box .title {
  display: block;
  font-size: 12px;
  color: #b2c1c0;
  font-weight: 400;
  text-transform: uppercase;
}


.hidden-bar-back-drop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


.sec-title {
  position: relative;
  margin-bottom: 50px;
}
.sec-title h2 {
  position: relative;
  font-size: var(--sec-title-font-size);
  color:#555;
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  line-height: 53px;
  letter-spacing: 0.01em;
  margin-top: -5px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1023px) {
  .sec-title h2 {
    font-size: 38px;
    line-height: 1.2em;
  }
}



.contact-block {
	padding:5px 10px;
font-weight:600;
	border-radius:27px;
	padding:5px 23px 5px 25px;
	text-align:right;
	float:right;
	display:flex;
}

.contact-block .icon{
margin-right:5px;

    height:30px;
    width: 30px;
    border-radius: 6px;
    background-color: var(--theme-color2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}


.contact-block .icon img {
height:16px;
}

.contact-block a {
line-height:1.3em;
display:block;
font-size:19px;
letter-spacing:-0.75px;
font-weight:400;
color:#555;
}

.contact-block p {
line-height:1.3em;
display:block;
font-size:14px;
letter-spacing:-0.75px;
font-weight:400;
}

.contact-block .recall-me-link {
	font-size:14px;
font-weight:400;
}


.header-banner {
  position: relative;
  height:650px;
}

.header-banner h1 {
color:#555;
}

.header-banner .bg-shape {
  position: absolute;
  right:-80px;
  top:80px;

}

.header-banner .bg-shape img{
float:right;
}

.banner-content {
    margin-top:220px;
    position:relative;
    z-index:2;
    
}
.banner-content p {
margin: 0 0 50px 0;
    background: #ddd;

    display: inline-block;
    padding: 5px 10px 4px;
    border-radius: 5px;
}

h1 {
text-shadow: 1px 0 3px #fff, 
0 1px 3px #fff, 
-1px 0 3px #fff, 
0 -1px 3px #fff;

}

@media only screen and (max-width: 1023px) {
  .header-banner .bg-shape {

  }
}
.header-banner .title {
  font-size:54px;
  line-height: 1em;
  letter-spacing: -0.5px;
  margin-bottom:25px;
}
@media only screen and (max-width: 1199px) {
  .header-banner .title {font-size:44px;}
  .header-banner .bg-shape {
    position: absolute;
    right: -400px;
    top: 40px;
}



}
@media only screen and (max-width: 630px) {
  .header-banner .title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  
.main-header .logo img {max-height:90px}  
.banner-content {margin-top:250px;}

.header-banner .bg-shape {right:-600px}

.header-banner {height:auto;}
  
}
@media only screen and (max-width: 424px) {
  .header-banner .title {font-size:28px;}
}


.why-ecobal {
  position: relative;
  padding: 55px 0 90px;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .why-ecobal .image-column {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}
.why-ecobal .image-column .image-box {
  position: relative;
  margin-left: -20px;
}
.why-ecobal .image-column .image-box:before {
  position: absolute;
  left: -80px;
  top: 40px;
  width: 332px;
  height: 472px;
  background-image: url(../images/icons/lines.png);
  content: "";
}
@media only screen and (max-width: 1199px) {
  .why-ecobal .image-column .image-box {
    margin-left: 0px;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  .why-ecobal .image-column .image-box {
    text-align: center;
  }
  .why-ecobal .image-column .image-box::before {
    left: 30px;
  }
  .why-ecobal .image-column .image-box img {
    max-width: 50%;
  }
}


.feature-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
 
}
.feature-block .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding:40px 40px 40px 50px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 10px;
  
}

.feature-block .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--gradient-1);
  width: 0;
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block .inner-box:hover {
  -webkit-box-shadow: 0 10px 60px rgba(38, 96, 242, 0.31);
          box-shadow: 0 10px 60px rgba(38, 96, 242, 0.31);
}
.feature-block .inner-box:hover .text,
.feature-block .inner-box:hover .title {
  color: #ffffff;
}
.feature-block .inner-box:hover:before {
  width: 100%;
}
.feature-block .content {
  position: relative;
  padding-left:100px;
}

.feature-block .icon {
  position: absolute;
  left:20px;
bottom:5px;
z-index:1;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}


.feature-block .icon img{
height:133px;
}

.feature-block .title {
  margin-bottom: 5px;
  font-weight: 600;
}
.feature-block .text {
  position: relative;
  color: #67687a;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media only screen and (max-width: 767px) {
  .feature-block .inner-box {padding: 35px 30px;}
  .feature-block .content {padding-left:99px;}
}



@media only screen and (max-width: 575px) {
.feature-block .icon {display:none;}
  .feature-block .content {padding-left:0;}
}



.services-section {
  position: relative;
  padding: 230px 0 60px;
  background: var(--gradient-1);
  margin-top:-160px;
}

.call-to-action {
  position: relative;
  z-index: 2;
  
  
}

.call-to-action p{
font-size:28px;
color:#fff;
}

.call-to-action .outer-box {
  position: relative;
  padding: 110px 20px 40px;
  max-width: 1234px;
  margin: 0 auto;
}

@media only screen and (max-width: 1400px) {
	.call-to-action .outer-box {max-width:80%;}
}

@media only screen and (max-width: 1199px) {
  .call-to-action .outer-box {
    padding: 70px 10px 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .call-to-action .outer-box {
    text-align: center;
  }
}
.call-to-action .sec-title {
  margin-bottom: 0;
  padding-left:27px;
}


.call-to-action .sec-title .price {
color:var(--theme-color3);
background:#fff;
padding:12px 20px;
border-radius:8px;
display:inline-block;
}


.call-to-action .btn-column {
  margin-bottom: 40px;
    padding-right:27px;
}
.call-to-action .btn-column .inner-column {
  position: relative;
  text-align: right;

}



@media only screen and (max-width: 1199px) {
  .call-to-action .btn-column .inner-column {
    padding-top:0px;
  }
}
@media only screen and (max-width: 1023px) {
  .call-to-action .btn-column .inner-column {
    text-align: center;
    padding-top: 0;
  }
}
.call-to-action .title-column {
  position: relative;
  margin-bottom: 40px;
}

.services-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  height:100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.services-block .inner-box {
  position: relative;
  background-color: #fff;
  padding:50px 55px;
  padding-right: 50px;
  width: 100%;
    height:100%;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  overflow:hidden;
}

.services-block .title-box .price {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space:nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size:25px;
  line-height: 1em;
  font-weight: 700;
  color:var(--theme-color2);
  margin-bottom: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.services-block .title {
  font-size:20px;
}

.services-block .title-box .price sub {
  position: relative;
  display: block;
  margin-top: 7px;
  font-size: 18px;
  line-height: 1em;
  color: #67687a;
  font-weight: 400;
}
.services-block .theme-btn {
  font-size: 18px;
  padding: 15px 30px;
  line-height: 30px;
  left:50px;
  bottom:50px;
  position:absolute;
}
.services-block .theme-btn i {
  font-size: 14px;
}

@media only screen and (max-width: 1199px) {

  
  
  .services-block .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
padding-bottom:100px
  
  }  
  
  
  .services-block .theme-btn {

    padding: 15px 30px;
    line-height: 30px;
    right: 50px;
	left:auto;
  
    position: absolute;
}
  
}
@media only screen and (max-width: 767px) {

}
.services-block .inner-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.services-block .inner-box:hover .title-box .price {
  color: var(--theme-color3);
}
.services-block .title-box {
  position: relative;
  padding-right: 20px;

}
@media only screen and (max-width: 1199px) {
  .services-block .title-box {
    min-width: 120px;
  }
}


.benefits-section {padding: 100px 0 20px;}

.benefits-item {

  padding-right: 30px;
      position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
  .benefits-item {
    margin-top: 30px;
  }
}




.benefits-item .icon {


  float: left;
  overflow: hidden;
  margin-right: 25px;
  display: inline-block;
  background: #ffdd00;
  border-radius:10px;
background-image: linear-gradient(to left, var(--theme-color3), var(--theme-color2)); 
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}


.benefits-item .icon img{

 

  height:54px;
  line-height: 70px;
  text-align: center;
}

.benefits-item .description {
  overflow: auto;
}

.benefits-item .description h3 {
  font-size: 22px;
  margin-top: -5px;
  margin-bottom: 10px;
  line-height:1.2em;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}




.contact-section {
    padding: 100px 0 20px;
}


.proj-section {
  position: relative;
  padding: 120px 0 80px;
}

.proj-section h3 {
font-size:22px;
}

.proj-section .carousel-outer {
  overflow: hidden;
  padding: 15px 0;
}
.proj-section .swiper-pagination {
  margin-top: 0;
}

.proj-plus {font-size:0.8em;margin:0 0 15px 0;padding:0;font-weight:700;}

.styled-pagination {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  margin-top: 60px;
  border-radius: 10px;
  background-color: #f4f2f9;
}
.styled-pagination .swiper-pagination-progressbar-fill {
  background: var(--bg-theme-color2);
}
.styled-pagination .swiper-pagination-progressbar-fill::before {
  position: absolute;
  top: -7px;
  right: 0;
  height: 17px;
  width: 17px;
  background-color: var(--bg-theme-color2);
  border-radius: 50%;
  content: "";
  -webkit-transform: none;
          transform: none;
  display: none;
}

.proj-details_top-left {
  position: relative;
  display: block;
  margin-right: 20px;
}

.proj-details_top-img {
  position: relative;
  display: block;
  border-radius: 30px;
}
.proj-details_top-img img {
  width: 100%;
  border-radius: 30px;
}

.proj-details_top-right {
  position: relative;
  display: block;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  .proj-details_top-right {
    margin-top: 70px;
    margin-left: 0;
  }
}

.proj-details_top-content {
  position: relative;
  display: block;
  margin-top: -11px;
}

.project-details {
	margin-bottom:15px;
	}

.project-details p {
	margin:0;
	}

.project-name {}

.project-details-title {font-weight:700;}


.contact-details__info {
  position: relative;



}
.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
margin-right:30px;

}
.contact-details__info li .icon {
  height:50px;
  width:50px;
  border-radius:6px;
  background-color: var(--theme-color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li:hover .icon {
  background-color: #fff;
}
.contact-details__info li .text {
  margin-left:20px;
  text-align:left;
  color:#fff;
}

.contact-details__info li .text .title{
  color:#fff;
  font-size:15px;
  margin:0;
  padding:0;
  font-weight:300;
}

.contact-details__info li .text span, .contact-details__info li .text a {
  color:#fff;
  font-size:16px;
}



.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  font-size: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media only screen and (max-width: 1023px) {
.contact-details__info li {
    margin-bottom: 30px;
}
}



.main-footer {
  position: relative;
    background-image: url(../img/footer.jpg);
z-index:1;
  background-size:cover;


    background-position:bottom;
}

.main-footer:before {
  position: absolute;
    background-image: url(../img/footer.jpg);
background:#777;
opacity:0.55;
top:0;
left:0;
width:100%;
height:100%;
content:'';
}
.main-footer .widgets-section {
  position: relative;
  padding: 75px 0 40px;
}
.main-footer.style-two .footer-bottom .inner-container {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}


.footer-bottom {
  position: relative;
  width: 100%;
}
.footer-bottom .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .footer-bottom .inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}
.footer-bottom .footer-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
}
.footer-bottom .footer-links li {
  position: relative;
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .footer-bottom .footer-links li {
    margin-left: 0;
    margin-right: 15px;
  }
}
.footer-bottom .footer-links li a {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height:1.1em;
}
.footer-bottom .footer-links li a:hover {
  color: #ffffff;
}

.error {color:red;font-size:0.86em;}




.modal .close {
    float: right;
    font-size: 61px;
    font-weight: 400;
    line-height:0.5;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=60);
    opacity: .7;
}



.modal-content{
border-radius:0;
padding:10px 15px;
transition: all .3s ease-in-out;
}

.modal-text p{
margin-bottom:5px;
}

.modal-header {
border:0;
}

.conf-info, .conf-info a {font-size:0.8rem;text-align:justify;padding:10px 0;line-height:1.1em;}

.modal .form-group {margin-bottom:13px;}

.modal .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-size: 1rem;
    text-align: left;
    line-height: 1.5;
    color: #444;
   background:#f1f1f1;
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: 6px;
 -webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out
}

.modal .form-control:focus {
    border: 1px solid #008b8b;
    outline: 0;
    background:#fff;
    -webkit-box-shadow: none;
    box-shadow: none;
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out    
}



.contact-modal form::placeholder {
color: #777;

opacity: 1;
}


.surname {display:none;}


input[type=checkbox].css-checkbox {
position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=checkbox].css-checkbox + label.css-label {
padding-left:35px;
height:20px; 
display:inline-block;
line-height:20px;
background-repeat:no-repeat;
background-position: 0 0;

vertical-align:middle;
cursor:pointer;

}

input[type=checkbox].css-checkbox:checked + label.css-label {
background-position: 0 -20px;
}
label.css-label {
background-image:url('../images/checkbox-mini.png');
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.btn-check:active+.btn-secondary, .btn-check:checked+.btn-secondary, .btn-secondary.active, .btn-secondary:active, .show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #b53027;
    border-color: #b53027;
}

.modal-body .gw-title {

    color:#222;
        line-height:1.2em;

}
.gw-text {
    color:#222;
    font-size:0.8em;
    line-height:1.2em;
    padding:10px;
    background:#ddd;
    
}


.ab_img_left_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index:-1;
}

.partners {padding:0;margin:0;}
.partners p {font-size:27px; margin-bottom:30px;}
.partners img {max-height:444px;}
.partners .container {padding-bottom:0;}


.obj-1 .container{padding:0 0 50px 0;}
.obj-1 p {font-size:27px; margin-bottom:30px;}
.obj-1 p {font-size:27px; margin-bottom:30px;}
.obj-1 li {font-size:27px; line-height:40px;}

.obj-1 ul {
    text-align:left;

}

.obj-1 ul li:before {
    margin-right:10px;
  background-color:var(--theme-color2);
display:inline-block;
width:20px;
height:20px;
margin-top:2px;
  border-radius:5px;
  content:' ';
  line-height:40px;
}


.feature-block-2 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.feature-block-2 .inner-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding:27px;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 10px;
  z-index: 3;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}


.feature-block-2 .title {
  position: relative;
  display: inline-block;
  font-size:22px;

  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.feature-block-2 .title::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--bg-theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.feature-block-2 .icon {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
}
.feature-block-2 .icon:before {
  position: absolute;
  right: -30px;
  bottom: -20px;
  height: 100px;
  width: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  z-index: -1;
}
.feature-block-2 .text {
  position: relative;
  color: #67687a;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-bottom: 20px;
}
.feature-block-2 .read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-2 .read-more span {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-2 .read-more span::before {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--gradient-1);
  content: "";
}
.feature-block-2 .read-more i {
  position: relative;
  margin-left: -90px;
  font-size: 28px;
  color: #67687a;
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block-2 .read-more:hover {
  color: var(--theme-color3);
}


.steps-section {padding:60px 0 0 0;}

.szz-steps .events {
    border-top: 2px solid #ccc;
    display:flex;
}
.szz-steps p {
margin:20px 0;
}
.szz-steps .events .steps-list {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 70px;
    margin-right: 0;
}
.szz-steps .events .steps-list:before {
    content: "";
    position: absolute;
    height: 36px;
    border-right: 2px dashed #dee2e6;
    top: 0;
}
.szz-steps .events .steps-list .step-number {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    width: 75px;
    margin: 0 auto;
    border-radius:8px;
    padding: 4px 9px;
    font-size:0.86em;
background-image: linear-gradient(to left, var(--theme-color3), var(--theme-color2));  
color:#fff;
}
@media (min-width: 1140px) {
    .szz-steps .events .steps-list {
        display: inline-block;
        width: auto;
        padding-top:30px;
    }
    .szz-steps .events .steps-list .step-number {
        top: -16px;
    }
}



@media (max-width:610px) {
.szz-steps .events {
    border-top:1;
    display:block;
}
}
