body {
  font: 16px "Montserrat", sans-serif;
  color: #707070;
}

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

/*Header Style Starts*/

header {
  border-top: 5px solid #3498db;
  position: relative;
}

header:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  height: 5px;
  background: #00b24a;
  width: 50%;
  z-index: 9;
}

header .navbar-brand {
  width: 285px;
}

header .navbar-collapse {
  flex-grow: unset;
}

header .navbar {
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

header .navbar-nav {
  align-items: center;
}

header .navbar-nav a.nav-link {
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  padding: 25px 15px !important;
  border-bottom: 4px solid transparent;
  transition: all 0.13s linear;
  -moz-transition: all 0.13s linear;
  -webkit-transition: all 0.13s linear;
}

header .navbar-nav a.nav-link.call-now {
  padding: 10px 20px !important;
  background: #3498db;
  color: #fff;
  border-radius: 25px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border: none;
  transition: all 0.13s linear;
  -moz-transition: all 0.13s linear;
  -webkit-transition: all 0.13s linear;
}

header .navbar-nav a.nav-link.call-now:hover {
  background: #2586c7;
  color: #fff;
}

header .navbar-nav a.nav-link:hover,
header .navbar-nav a.nav-link.active {
  color: #3498db;
  border-color: #3498db;
}

/*Header Style Ends*/

/*Hero Section Style Starts*/

.hero-sec {
  border-bottom: 4px solid #57b3f1;
}

.hero-lft {
  width: calc(100% - 390px);
}

.hero-lft .owl-nav {
  position: absolute;
  left: 0;
  top: calc(50% - 25px);
  z-index: 99;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-lft .owl-carousel .owl-nav button span {
  opacity: 0;
  visibility: hidden;
}

.hero-lft .owl-carousel .owl-nav button {
  background: #fff url(images/slide-arrow.svg) 16px center no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: 10px;
  opacity: 0.8;
  transition: all 0.11s linear;
  -moz-transition: all 0.11s linear;
  -webkit-transition: all 0.11s linear;
}

.hero-lft .owl-carousel .owl-nav button:hover {
  opacity: 1;
}

.hero-lft .owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  background-position: 17px center;
}

.hero-rgt {
  background: #57b3f1;
  width: 390px;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  padding: 35px;
  color: #fff;
  justify-content: center;
}

.hero-rgt h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
}

.hero-rgt h1 small {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  width: 100%;
}

.hero-rgt p {
  font-size: 14px;
  line-height: 21px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.hero-rgt .btn-white {
  background: #fff;
  color: #57b3f1;
  font-size: 14px;
  font-weight: 500;
  border-radius: 33px;
  padding: 9px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}

.hero-rgt .btn-white:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/*Hero Section Style Ends*/

/*Content Section Style Starts*/

.content-main h2 {
  color: #ebebeb;
  font: 84px "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 54px;
}

.content-main h2 small {
  color: #3498db;
  font-size: 28px;
  display: inline-block;
  width: 100%;
}

.content-main h2 small span {
  color: #00b24a;
}

.content-main h4 {
  color: #3d3d3d;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-main p {
  color: #a5a5a5;
  font-size: 14px;
}

.about-sec {
  padding-top: 60px;
  padding-bottom: 60px;
}

/*Product Section Style Starts*/

.product-sec {
  background: #3498db;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.product-sec:before {
  content: "";
  position: absolute;
  left: -26%;
  top: -222px;
  width: 75%;
  height: 165%;
  background: #00b24a;
  z-index: 9;
  transform: rotate(20deg);
  border-right: 30px solid #52a7e0;
}

.product-sec h3 {
  color: #fff;
  font: 28px "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
}

.product-sec .cont-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 99;
}

.product-sec .cont-hdr a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.product-sec .cont-hdr a img {
  margin-left: 7px;
  filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.product-sec .owl-carousel {
  position: relative;
  z-index: 99;
}

.product-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: 100%;
  padding: 20px;
}

.product-item .img-wrap {
  padding: 15px;
  margin-bottom: 10px;
}

.product-item p {
  font-size: 14px;
  color: #3d3d3d;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-bottom: 0;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-sec .owl-stage-outer {
  padding-bottom: 20px;
}

.product-sec .owl-carousel .owl-nav,
.testimonial-wrap .owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  top: calc(50% - 30px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.product-sec .owl-carousel .owl-nav button,
.testimonial-wrap .owl-carousel .owl-nav button {
  background: url("images/slide-arrow-circle.svg") no-repeat 0 0;
  width: 33px;
  height: 33px;
  opacity: 0.75;
}

.product-sec .owl-carousel .owl-nav button span,
.testimonial-wrap .owl-carousel .owl-nav button span {
  opacity: 0;
  visibility: hidden;
}

.product-sec .owl-carousel .owl-nav button.owl-prev,
.testimonial-wrap .owl-carousel .owl-nav button.owl-prev {
  margin-left: -40px;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.product-sec .owl-carousel .owl-nav button.owl-next,
.testimonial-wrap .owl-carousel .owl-nav button.owl-prev {
  margin-right: -40px;
}

/*Product Section Style Ends*/

/*Testimonial Section Style Starts*/

.testimonial-wrap {
  padding-top: 15px;
  padding-bottom: 125px;
}

.testimonial-wrap .owl-carousel {
  width: 650px;
  margin: 0 auto;
}

.testimonial-wrap .owl-carousel .testi-item {
  display: inline-flex;
  width: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-wrap .testi-item .avatar-img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.testimonial-wrap .testi-item .username {
  color: #3d3d3d;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonial-wrap .testi-item p {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}

.testimonial-wrap .testi-item p:before {
  content: "";
  background: url(images/quote.svg) no-repeat 0 0;
  position: absolute;
  left: 10px;
  top: -45px;
  width: 88px;
  height: 76px;
  z-index: -9;
}

.testimonial-wrap .owl-carousel .owl-nav {
  width: auto;
  position: static;
  display: table;
  margin: 0 auto;
}

.testimonial-wrap .owl-carousel .owl-nav button {
  filter: brightness(0);
  -moz-filter: brightness(0);
  -webkit-filter: brightness(0);
  opacity: 0.2;
  margin: 0 4px !important;
}

.testimonial-wrap .owl-carousel .owl-nav button:hover {
  opacity: 1;
}

/* Testimonial Section Style Ends */

/*Content Section Style Ends*/

/*Footer Style Starts*/

footer {
  background: #086daf;
  color: #fff;
}

.ftr-top {
  background: #57b3f1;
  border-radius: 4px;
  margin-top: -85px;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.ftr-top .icon-wrap {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.ftr-top p {
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0;
  font-weight: 500;
}

.ftr-top p a {
  color: #fff;
}

.ftr-top .bdr-rgt {
  position: relative;
}

.ftr-top .bdr-rgt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 80px;
  opacity: 0.3;
  background: #fff;
}

.ftr-top .bdr-rgt:last-child:after {
  display: none;
}

.ftr-nav ul {
  display: table;
  margin: 0 auto;
}

.ftr-nav ul .list-inline-item {
  margin: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(149, 191, 219, 0.57);
}

.ftr-nav ul .list-inline-item:last-child {
  border-right: none;
}

.ftr-nav ul li a {
  color: #95bfdb;
  display: inline-block;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.13s linear;
  -moz-transition: all 0.13s linear;
  -webkit-transition: all 0.13s linear;
}

.ftr-nav ul li a:hover {
  color: #fff;
}

.ftr-nav {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ftr-btm {
  background: #004887;
  text-align: center;
  padding: 12px 0;
}

.ftr-btm p {
  margin-bottom: 0;
  color: #95bfdb;
  font-size: 12px;
  opacity: 0.59;
}

/*Footer Style Ends*/

/*Responsive Style Starts*/

@media only screen and (max-width: 1199px) {
  .hero-rgt {
    padding: 15px;
  }

  .product-sec .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 991px) {
  header .navbar-brand {
    width: 190px;
  }

  header .navbar-nav a.nav-link {
    font-size: 13px;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  header .navbar-nav a.nav-link.call-now {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero-lft,
  .hero-rgt {
    width: 100%;
  }

  .hero-rgt {
    padding: 25px;
  }

  .content-main h2 {
    font-size: 55px;
    line-height: 43px;
    margin-top: -15px;
  }

  .about-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ftr-top p {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-wrap .owl-carousel {
    width: 100%;
  }

  header .navbar-collapse {
    background: #3498db;
    margin-bottom: 10px;
  }

  header .navbar-collapse .nav-item {
    display: inline-block;
    width: 100%;
  }

  header .navbar-nav a.nav-link {
    border-bottom: 1px solid #56aee8;
    padding: 10px 15px !important;
    color: #fff;
  }

  header .navbar-nav a.nav-link:hover,
  header .navbar-nav a.nav-link.active {
    background: #1c78b5;
    color: #fff;
  }

  header .navbar-nav a.nav-link.call-now {
    margin: 0;
    background: #00b24a;
    border-radius: 0;
  }

  header .navbar-toggler {
    padding-right: 0;
  }

  header .navbar-toggler-icon {
    background: #3498db;
    border-radius: 4px;
    width: 40px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 7px 5px;
  }

  header .navbar-toggler-icon span {
    background: #fff;
    height: 2px;
    width: 100%;
  }

  header .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .hero-rgt {
    padding: 20px;
  }

  .hero-rgt h1 {
    font-size: 23px;
    font-weight: 600;
    line-height: 24px;
  }

  .hero-rgt p {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .content-main h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .content-main h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .product-sec {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .product-sec h3,
  .content-main h2 small {
    font-size: 24px;
  }

  .product-sec .cont-hdr a {
    font-size: 14px;
  }

  .product-sec:before {
    top: -82px;
  }

  .testimonial-wrap h2 {
    margin-bottom: 0;
    margin-top: 0px;
  }

  .testimonial-wrap .testi-item p:before {
    background-size: contain;
    width: 40px;
    top: -16px;
  }

  .ftr-top {
    width: calc(100% - 30px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .ftr-top .bdr-rgt:after {
    display: none;
  }

  .ftr-top .bdr-rgt {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .ftr-top .bdr-rgt:last-child {
    border-bottom: none;
  }

  .ftr-nav ul .list-inline-item {
    padding: 0 7px;
  }
}


/*Responsive Style Ends*/

.title {
  height: 50px;
}
.title div {
  color: #fff;
  font: 28px "Oswald", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  /* background-color: #00b24a; */
  line-height: 50px;
  background-image: linear-gradient(to right, #00b24a,    #3498db,    #57b3f1);
}

.ptitle{
  font: 23px "Oswald", sans-serif;

}


/*contact us*/

input[type=text], select, textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 16px;
}

button {
  background-color: #00b24a;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #0aa54a;
}

div.error
{
  margin-bottom: 5px;
  margin-top: -10px;
  color:red;
  font-size: small;
}

.subtitle
{
  color: #fff;
  font: 22px "Oswald", sans-serif;
  text-transform: uppercase;
  padding-left: 5px;
  margin-bottom: 15px;
  /* background-color: #00b24a; */
  line-height: 30px;
  background-image: linear-gradient(to right, #00b24a,    #3498db,    #57b3f1);
}


.gallery .row div
{
  margin: auto;
  margin-bottom: 20px;
}

