@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*font-family: "Inter", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*##### Common css start #####*/
.common-btn1 {
  background-color: #61B536;
  border: 1px solid #61B536;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  transition: all 0.5s;
  padding: 6px 20px;
}

.common-btn1 i {
  transform: rotate(0deg);
  margin-left: 5px;
}

.common-btn1:hover {
  background-color: #fff;
  color: #001837;
  transform: scale(1.1);
}

.common-title {
  position: relative;
  width: 100%;
}
.common-title h5 {
  position: relative;
  width: 100%;
  color: #61B536;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.common-title h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-left: 35px;
}
.common-title h4::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(../images/common-clean-img.png);
  background-repeat: no-repeat;
  left: 0;
  top: -6px;
}
.common-title h3 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.common-title h3 span {
  color: #61B536;
}
.common-title p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 15px;
  margin-bottom: 10px;
}

/*##### Common css start ####*/
/*#### Header css start ####*/
.header-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(360deg, rgba(0, 24, 55, 0) 39%, rgba(0, 24, 55, 0.73) 100%);
  z-index: 9;
  border-radius: 10px 10px;
}
.header-wrapper .navbar {
    position: relative;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    align-items: flex-start;
}
.header-wrapper .navbar .menu-wrap {
  position: relative;
  background-color: #F0F2F4;
  padding: 10px 10px;
  border-radius: 10px;
}
.header-wrapper .navbar .menu-wrap::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 50px;
  height: 50px;
  background-image: url(../images/header-menu-left-shape.png);
  background-repeat: no-repeat;
}
.header-wrapper .navbar .menu-wrap::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 0;
  width: 38px;
  height: 40px;
  background-image: url(../images/header-menu-right-shape.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.logo-call-wrap {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  width: 28%;
}
.logo-call-wrap .logo-wrap {
  position: relative;
  width: 150px;
}
.logo-call-wrap .logo-wrap img{
	height: 100px;
}
.call-wrap {
  position: relative;
}
.call-wrap p {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}
.call-wrap p .icon {
  display: inline-flex;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #61B536;
  color: #fff;
  font-size: 14px;
}
.call-wrap p a {
  position: relative;
  color: #fff;
  font-weight: 500;
}

.head-right-btn {
  position: static;
  width: 25%;
	padding-top: 20px;
}
.head-right-btn ul {
  position: static;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
  align-items: center;
}

/*#### Header menu css start ####*/
/**/
.header-wrapper .main-menu > li {
  padding: 0px 10px;
}

.header-wrapper .main-menu > li > a {
  font-size: 14px;
  transition: all 0.5s;
  color: #001837;
  text-transform: uppercase;
}

.header-wrapper .main-menu > li > a:hover {
  color: #61B536;
}

.header-wrapper .navbar .main-menu li.current > a {
  color: #61B536;
}

.header-wrapper .navbar .main-menu > li.sub-dropdown:after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  top: 20%;
  right: -4px;
  display: inline-block;
  color: #61B536;
  font-size: 15px;
}

.header-wrapper .navbar .main-menu > li .sub-menu {
  background-color: #61B536;
  text-align: left;
  padding: 10px;
  left: 15px;
  border: 0px solid #08151C;
  border-radius: 0;
}

.header-wrapper .navbar .main-menu > li .sub-menu li a {
  padding: 2px 2px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.5s;
}

.header-wrapper .navbar .main-menu > li .sub-menu li a:hover {
  color: #08151C;
}

@media (max-width: 991px) {
  /*##*/
  .header-wrapper .responsive-menu {
    justify-content: space-between;
  }
  .toggle-menu {
    color: #61b536;
    padding-right: 0;
    font-size: 22px;
  }
  .toggle-menu:hover {
    color: #ffffff;
  }
  .header-wrapper .navbar .menu-wrap .main-menu.active {
    background-color: #F0F2F4;
  }
  .main-menu .expand, .sub-menu .expand {
    color: #61B536;
    padding: 0px 10px;
    line-height: normal;
  }
  .header-wrapper .navbar .main-menu > li .sub-menu {
    left: 0;
  }
  .header-wrapper .navbar .main-menu > li.sub-dropdown:after {
    display: none;
  }
  .header-wrapper .navbar .login-btn-wrap {
    margin-right: 10px;
  }
}
/*##### Header menu css end #####*/
/*### Header search css start ###*/
.hed-search {
  position: static;
}

.hed-search .open-search {
  position: relative;
  color: #001837;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  background-color: #FFFFFF;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 30%;
  background: #ffffff;
  padding: 10px 15px;
  margin-left: auto;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transform: rotateX(-90deg);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #61B536;
  border-radius: 8px;
}

.form-search input[type=search] {
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding: 8px 5px;
  padding-right: 45px;
  border: none;
  width: 100%;
  outline: none;
  background: transparent;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.form-search button {
  background: transparent;
  border: none;
  position: absolute;
  z-index: 2;
  padding: 0;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.form-search button i {
  color: #000000;
  font-size: 30px;
}

.form-search.active {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}

.close-overlay {
  opacity: 0;
  height: 0;
  width: 0;
}

.form-search.active + .close-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  cursor: url(../images/close-search-icon.png), auto;
  z-index: 3;
}

@media (max-width: 991px) {
  .form-search {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .form-search {
    width: 90%;
  }
  .form-search input[type=search] {
    padding: 2px 2px;
  }
  .form-search button {
    right: 10px;
  }
  .form-search button i {
    font-size: 24px;
  }
}
/*### Header search css end ###*/
/*#### Header css end ####*/
/*#### Banner css start ####*/
.banner-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.banner-sld-items {
  position: relative;
  width: 100%;
}
.banner-sld-items img {
	position: relative;
	width: 100%;
	height: 600px;
    object-fit: cover;
}
.banner-sld-items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 24, 55, 0) 39%, rgba(0, 24, 55, 0.73) 100%);
  z-index: 1;
}
.banner-sld-items::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(360deg, rgba(0, 24, 55, 0) 39%, rgba(0, 24, 55, 0.73) 100%);
  z-index: 1;
}

.banner-content-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.banner-content-wrap h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.banner-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}
.banner-content-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.banner-content-wrap ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/*arrow*/
#banner-slider .slick-arrow {
  position: absolute;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0px solid #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: rgba(0, 24, 55, 0.7294117647);
  width: 35px;
  height: 80px;
  font-size: 18px;
  border-radius: 0;
  z-index: 9;
}
#banner-slider .slick-arrow:hover {
  color: #61B536;
  transition: 0.5s;
}

#banner-slider .slick-arrow:before {
  display: none;
}

#banner-slider .slick-arrow.slick-prev {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/banner-left-arrow-bg.png);
}

#banner-slider .slick-arrow.slick-next {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/banner-right-arrow-bg.png);
}

/**/
/*#### Banner css end ####*/
/*#### banner-bottom-section css start ####*/
.banner-bottom-section-wrapper {
  position: relative;
  width: 100%;
  padding: 30px 0px;
  background-color: #F0F2F4;
}

.banner-bottom-left {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.banner-bottom-left > img {
  position: relative;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-bottom-left .bnrbtm-content-wrap {
  position: absolute;
  top: 10%;
  left: 0;
  padding-left: 15px;
  width: 50%;
}
.banner-bottom-left .bnrbtm-content-wrap h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 16px;
  margin-bottom: 15px;
}
.banner-bottom-left .bnrbtm-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.banner-bottom-left .bnrbtm-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../images/bnrbtm-btn-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 40px 0px 0px;
}

.banner-bottom-right {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.banner-bottom-right > img {
  position: relative;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-bottom-right .bnrbtm-right-content-wrap {
  position: absolute;
  top: 10%;
  left: 0;
  padding-left: 15px;
  width: 50%;
}
.banner-bottom-right .bnrbtm-right-content-wrap h3 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 24px;
  margin-bottom: 15px;
}
.banner-bottom-right .bnrbtm-right-content-wrap p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-bottom-right .bnrbtm-right-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/bnrbtm-btn-right-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 0px 0px 40px;
}

.banner-bottom-middle-content {
  position: relative;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  background-color: #61B536;
  border-radius: 10px;
  padding: 15px 15px;
}
.banner-bottom-middle-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 60px;
  -webkit-text-fill-color: #61B536; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.banner-bottom-middle-content h3 span {
  position: relative;
  color: #001837;
  -webkit-text-fill-color: #001837;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #001837;
}
.banner-bottom-middle-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
}

/*#### banner-bottom-section css end ####*/
/*#### why-choose css start #####*/
.why-choose-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0px 60px 0px;
  background-color: #fff;
}

.why-choose-left-wrap {
  position: relative;
  width: 100%;
}
.why-choose-left-wrap .why-choose-img {
  position: relative;
  width: 100%;
  border-radius: 10px 10px 0px 10px;
  overflow: hidden;
}
.why-choose-left-wrap .why-choose-img img {
  position: relative;
  width: 100%;
}
.why-choose-left-wrap .why-choose-img .choose-right-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/right-btn-white-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 0px 0px 40px;
}

.why-choose-list {
  position: relative;
  width: 100%;
}
.why-choose-list .icon {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #F0F2F4;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.why-choose-list h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 20px;
  margin-bottom: 10px;
}
.why-choose-list p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 14px;
  margin-bottom: 5px;
}

/*#### why-choose css end #####*/
/*#### brands-wrapper css start ####*/
.brands-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0px;
}

.brands-sld-items {
  position: relative;
  width: 100%;
  padding: 0px 15px;
}

.brands-wrap {
  position: relative;
  width: 100%;
}
.brands-wrap img {
  margin: 0px auto;
  max-height: 70px;
}

/*#### brands-wrapper css end ####*/
/*#### About css start ####*/
.about-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.about-left-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.about-left-img img {
  position: relative;
  width: 100%;
}

.about-right-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #F0F2F4;
  padding: 30px 30px;
  border-radius: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
}
.about-right-content .about-count-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about-right-content .about-count-list .count {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #fff;
  font-size: 20px;
  color: #001837;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 50%;
}
.about-right-content .about-count-list .count::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url(../images/round-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.about-right-content .about-count-list .head {
  position: relative;
  width: calc(100% - 80px);
  padding-left: 20px;
}
.about-right-content .about-count-list .head h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}
.about-right-content h5 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 20px;
  margin-bottom: 15px;
}
.about-right-content p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 15px;
  margin-bottom: 15px;
}
.about-right-content ul {
  position: relative;
  width: 100%;
  display: block;
}
.about-right-content ul li {
  position: relative;
  width: 100%;
  display: block;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #001837;
  font-size: 15px;
}
.about-right-content ul li:before {
  content: "\f058";
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0;
  color: #61B536;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/*#### About css end ####*/
/*#### Services section css start ####*/
.services-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0px;
}

.services-list {
  position: relative;
  width: 100%;
}
.services-list .services-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.services-list .services-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 42, 72, 0) 0%, rgba(1, 28, 47, 0.73) 100%);
  z-index: 1;
}
.services-list .services-img img {
  position: relative;
  width: 100%;
  transition: all 0.5s;
}
.services-list .services-name-btn {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.services-list .services-name-btn .srv-name {
  position: relative;
  width: 45%;
  padding: 10px 10px;
}
.services-list .services-name-btn .srv-name h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}
.services-list .services-name-btn .srv-name h4 a {
  color: #fff;
}
.services-list .services-name-btn .srv-btn {
  position: relative;
  width: 55%;
  text-align: right;
  background-image: url(../images/right-btn-white-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 35px 4px 6px 30px;
}
.services-list:hover .services-img img {
  transform: scale(1.1);
}

/*#### Services section css end ####*/
/*#### cost calculator css start ####*/
.cost-calculator-wrapper {
  position: relative;
  width: 100%;
  padding: 10px 15px;
}
.cost-calculator-wrapper .cost-calculator-inner-wrap {
  position: relative;
  width: 100%;
  padding: 60px 30px;
  background-image: url(../images/cost-calculator-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}

.cost-calculator-form-wrap {
  position: relative;
  width: 100%;
  padding: 40px 40px;
  background-image: url(../images/cost-calculator-form-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.cost-calculator-form-wrap .common-title h4 {
  color: #fff;
}
.cost-calculator-form-wrap .common-title h3 {
  color: #fff;
}
.cost-calculator-form-wrap .form-group {
  position: relative;
  width: 100%;
}
.cost-calculator-form-wrap .form-group .form-select, .cost-calculator-form-wrap .form-group .form-control {
  position: relative;
  width: 100%;
  background-color: transparent;
  color: #9CB5C7;
  border: 1px solid #9CB5C7;
  padding: 12px 10px;
  border-radius: 30px;
  font-size: 14px;
}
.cost-calculator-form-wrap .form-group .form-select::-moz-placeholder, .cost-calculator-form-wrap .form-group .form-control::-moz-placeholder {
  color: #9CB5C7;
}
.cost-calculator-form-wrap .form-group .form-select::placeholder, .cost-calculator-form-wrap .form-group .form-control::placeholder {
  color: #9CB5C7;
}
.cost-calculator-form-wrap .form-group .form-select:focus, .cost-calculator-form-wrap .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cost-calculator-form-wrap .form-group p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px;
}
.cost-calculator-form-wrap .estimate-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: auto;
  padding: 0;
}

/*#### cost calculator css end ####*/
/*#### team-member css start ####*/
.team-member-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px;
}

.team-list {
  position: relative;
  width: 100%;
  border: 1px solid #D7DCE0;
  border-radius: 15px;
}
.team-list .team-img {
  position: relative;
  width: 100%;
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
}
.team-list .team-img img {
  position: relative;
  width: 100%;
}
.team-list .team-dtls {
  position: relative;
  width: 100%;
  padding: 20px 15px 35px 15px;
  background-color: #FDFEFE;
  border-radius: 0px 0px 15px 15px;
  overflow: hidden;
}
.team-list .team-dtls h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-list .team-dtls h5 {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 16px;
  margin-bottom: 0px;
}
.team-list .team-btn-wrap {
  position: absolute;
  width: 80px;
  height: 45px;
  background-image: url(../images/team-btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  right: 20px;
  bottom: -1px;
  background-color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
}
.team-list .team-btn-wrap .team-btn {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #61B536;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/*#### team-member css end ####*/
/*#### Book Appointment section css start ###*/
.book-appointment-wrapper {
  position: relative;
  width: 100%;
}

.book-appointment-content-wrap {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.book-appointment-content-wrap img {
  position: relative;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.book-appointment-content-wrap .book-appointment-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 30px;
  width: 50%;
}
.book-appointment-content-wrap .book-appointment-content .common-title h4 {
  color: #fff;
}
.book-appointment-content-wrap .book-appointment-content .common-title h3 {
  color: #fff;
}
.book-appointment-content-wrap .appointment-call-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../images/appointment-call-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 40px 8px;
}
.book-appointment-content-wrap .appointment-call-wrap h4 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  align-items: center;
  transform: rotate(180deg);
}
.book-appointment-content-wrap .appointment-call-wrap h4 .icon {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #61B536;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.book-appointment-content-wrap .appointment-call-wrap h4 a {
  color: #001837;
  font-size: 15px;
}

/*#### Book Appointment section css end ###*/
/*#### testimonials section css start ####*/
.testimonials-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px;
}

#testimonials-slider .testimonials-sld-items {
  position: relative;
  padding: 0px 15px;
}

.testimonials-wrap {
  position: relative;
  width: 100%;
  padding: 35px 30px 40px 30px;
  background-color: #FDFEFE;
  border: 1px solid #D7DCE0;
  border-radius: 15px;
}
.testimonials-wrap .quote {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.testimonials-wrap p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 15px;
  margin-bottom: 15px;
}
.testimonials-wrap .auth-dtls {
  position: relative;
  width: 100%;
}
.testimonials-wrap .auth-dtls h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonials-wrap .auth-dtls h5 {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 14px;
  margin-bottom: 5px;
}
.testimonials-wrap .auth-img-wrap {
  position: absolute;
  bottom: -1px;
  right: 30px;
  width: 100px;
  height: 55px;
  background-image: url(../images/team-btn-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  background-color: #fff;
}
.testimonials-wrap .auth-img-wrap .auth-img {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

/*Dots css start*/
/*####*/
#testimonials-slider {
  margin-bottom: 0px;
}

#testimonials-slider .slick-dots {
  position: relative;
  width: 100%;
  padding: 15px 0px;
  z-index: 9;
  margin-bottom: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#testimonials-slider .slick-dots li {
  position: relative;
  margin: 0px 5px;
}

#testimonials-slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

#testimonials-slider .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #808080;
  display: block;
  border: 1px solid #808080;
  border-radius: 50%;
}

#testimonials-slider .slick-dots li.slick-active button:before {
  background-color: #61B536;
  border: 1px solid #61B536;
}

/*#### testimonials section css end ####*/
/*### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  padding: 0px 15px 0px 15px;
}
.footer-wrapper .footer-main-wrap {
  position: relative;
  width: 100%;
  padding-top: 40px;
  background-color: #001837;
  border-radius: 15px;
}

.footer-left-wrap {
  position: relative;
  width: 100%;
}
.footer-left-wrap .footer-logo {
  position: relative;
  width: 100%;
}
.footer-left-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

/**/
.footer-social-icon {
  position: relative;
  width: 100%;
}

.footer-social-icon ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 0px;
  margin-bottom: 0px;
}

.footer-social-icon ul li {
  position: relative;
  margin-right: 15px;
  display: inline-flex;
}

.footer-social-icon ul li a {
  color: #fff;
  font-size: 16px;
  transition: 0.5s;
}

.footer-social-icon ul li a:hover {
  color: #61B536;
  transition: 0.5s;
}

/**/
/*#### newsletter css start ####*/
.newsletter-main-wrap .left-title {
  position: relative;
  width: 100%;
}
.newsletter-main-wrap .left-title h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 25px;
  margin-bottom: 0px;
}

.newsletter-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 5px;
  border: 1px solid #E6E6E6;
  background-color: #fff;
  border-radius: 30px;
}
.newsletter-wrap .newsletter-input {
  position: relative;
  width: calc(100% - 165px);
  padding-right: 10px;
  padding-left: 30px;
}
.newsletter-wrap .newsletter-input::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../images/e-mail-icon.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.newsletter-wrap .newsletter-input .form-control {
  position: relative;
  width: 100%;
  border: 0px;
  color: #738A97;
  font-size: 14px;
}
.newsletter-wrap .newsletter-input .form-control:focus {
  outline: none;
  box-shadow: none;
}
.newsletter-wrap .newsletter-btn {
  position: relative;
  width: 165px;
  text-align: right;
}
.newsletter-wrap .newsletter-btn .common-btn1 {
  font-size: 14px;
  padding: 6px 10px;
}

/*#### newsletter css end ###*/
.footer-main-wrap .footer-line {
  position: relative;
  width: 100%;
}
.footer-main-wrap .footer-line hr {
  color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer-inner-wrap p {
  position: relative;
  width: 100%;
  color: #ABC6E9;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer-menu ul li {
  position: relative;
  padding: 5px 0px;
}
.footer-menu ul li a {
  position: relative;
  color: #ABC6E9;
  font-size: 14px;
  font-weight: 400;
}
.footer-menu.colum2 ul li {
  width: 50%;
}

/**/
.footer-inner-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-inner-wrap .contact-det-list .icon {
  color: #fff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  background-color: #61B536;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-inner-wrap .contact-det-list .info {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 10px;
}

.footer-inner-wrap .contact-det-list p {
  position: relative;
  font-size: 14px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #fff;
}

.footer-inner-wrap .contact-det-list p a {
  color: #fff;
}

/**/
.footer-copyright-wrap {
  position: relative;
  width: 100%;
  background-image: url(../images/footer-copyright-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 15px 10px 10px 10px;
}
.footer-copyright-wrap p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

/*### Footer css end ####*/
/*### Inner banner css start ####*/
.inner-bannerwrapper {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  z-index: 1;
}

.inner-bannerwrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 44, 75, 0.8) 1%, rgba(0, 44, 75, 0.1) 61.87%);
  z-index: 1;
}

.inner-bannerwrapper img {
  position: relative;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.inner-bannerwrapper .inner-banner-cont {
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
  z-index: 2;
}

.inner-bannerwrapper .inner-banner-cont h1 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.main-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.cms-content {
  position: relative;
  width: 100%;
}

.cms-content h3 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h4 {
  position: relative;
  width: 100%;
  color: #61B536;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h5 {
  position: relative;
  width: 100%;
  color: #08151C;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 15px;
  margin-bottom: 10px;
}

.cms-content ul {
  position: relative;
  width: 100%;
  display: block;
}

.cms-content ul li {
  position: relative;
  display: block;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #210026;
  font-size: 16px;
}

.cms-content ul li:before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0;
  color: #61B536;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/*### Inner banner css end ####*/
.blog-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px;
}

.blog-list {
  position: relative;
  width: 100%;
  background-color: #F0F2F4;
}

.blog-list .blog-img {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.blog-list .blog-img img {
  width: 100%;
}

.blog-list .blog-content {
  position: relative;
  width: 100%;
  padding: 15px 15px;
}

.blog-list .blog-content h6 {
  position: relative;
  width: 100%;
  color: #767f87;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-list .blog-content h4 {
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #000000;
  margin-bottom: 15px;
}

.blog-list .blog-content .read-btn {
  position: relative;
  color: #61B536;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

/*blog details css*/
.blog-details-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px;
}

.blog-details-wrapper .blog-img {
  position: relative;
  width: 100%;
}

.blog-details-wrapper .blog-img img {
  width: 100%;
}

.blog-detl-right {
  position: relative;
  width: 100%;
}

.blog-detl-right h4 {
  position: relative;
  width: 100%;
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-detl-right h6 {
  position: relative;
  width: 100%;
  color: #767f87;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-detl-right p {
  position: relative;
  width: 100%;
  color: #2b2b2b;
  font-size: 16px;
  margin-bottom: 10px;
}

/*####### contact us page css start #######*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F0F2F4;
}

.form-sec {
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.form-sec .comon-title h3 {
  font-size: 35px;
}

.form-sec .form-control {
  color: #000;
  border: 1px solid #b1b1b1;
  height: auto;
  padding: 12px 15px;
  border-radius: 0px;
  transition: 0.5s;
}

.form-sec .form-control:focus {
  border: 1px solid #001837;
  transition: 0.5s;
  box-shadow: none;
  outline: none;
}

.form-sec .btn-outline-dark {
  width: 100%;
  padding: 12px 10px;
  font-size: 18px;
  background-color: #001837;
  border-color: #001837;
  color: #fff;
}

.contact-info-right {
  position: relative;
  width: 100%;
}

.contact-info-details-wrap {
  position: relative;
  width: 100%;
}

.contact-info-details-wrap .contactpg-info-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.contact-info-details-wrap .contactpg-info-list .icon {
  margin-right: 10px;
  width: 30px;
  font-size: 20px;
  color: #61B536;
}

.contact-info-details-wrap .contactpg-info-list .contact-info-cont {
  width: calc(100% - 40px);
}

.contact-info-details-wrap .contactpg-info-list .contact-info-cont p {
  position: relative;
  width: 100%;
  color: #2e2e2e;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-info-details-wrap .contactpg-info-list .contact-info-cont p a {
  color: #2e2e2e;
}

.contact-us-wrapper .contact-map {
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.contact-us-wrapper .contact-map iframe {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px solid #61B536;
}

.map-wrap {
  position: relative;
  width: 100%;
}
.map-wrap iframe {
  position: relative;
  width: 100%;
  height: 400px;
}

/*####### contact us page css end #######*/
/*#### gallery css start ###*/
.gallery-page-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.gallery-page-wrapper .gallery-list {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-page-wrapper .gallery-list img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*#### gallery css end ###*/
.about-why-choose-wrapper {
  background-color: #fbfbfb;
}

/*###### */
/*##### Services css start #####*/
.services-details-wrapper {
  position: relative;
  width: 100%;
  padding: 50px 0px;
}

.services-top-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.services-details-section1 {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F0F2F4;
}

.services-details-section2 {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.services-dtls-common-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 25px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.services-dtls-common-box h4 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.services-dtls-common-box p {
  position: relative;
  width: 100%;
  color: #636F77;
  font-size: 15px;
  margin-bottom: 5px;
}

.services-details-section3 {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F0F2F4;
}

.services-details-img-box2 {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.services-details-choose-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.get-quote-section-wrapper {
  position: relative;
  width: 100%;
  padding: 30px 0px;
}
.get-quote-section-wrapper .get-quote-section-content {
  position: relative;
  width: 100%;
  background-color: #F0F2F4;
  padding: 40px 40px;
  border-radius: 30px;
}
.get-quote-section-wrapper .get-quote-section-content h3 {
  position: relative;
  width: 100%;
  color: #001837;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.codedropz-upload-handler {
    border: 2px solid #c5c5c5 !important;
}
.codedropz-upload-inner h6 {
    margin-bottom: 0;
	color: #fff;
}
/*##### Services css end #####*//*# sourceMappingURL=style.css.map */