@import url('custom.css');

:root{
  --color-green:#139647;
  --color-red:#ed2028;
  --color-white:#fff;
  --color-black:#333;
  --color-light:#eee;
}
/*Button Style */
.main-btn, .theme-btn-two, .bordered-btn {
  display: inline-block;
  background: red;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 18px 35px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-btn, .theme-btn-two, .bordered-btn {
    padding: 20px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-btn, .theme-btn-two, .bordered-btn {
    padding: 15px 40px;
  }
}
@media (max-width: 767px) {
  .main-btn, .theme-btn-two, .bordered-btn {
    padding: 15px 40px;
  }
}

.main-btn:hover, .theme-btn-two:hover, .bordered-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.bordered-btn {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.theme-btn-two {
  background: var(--color-black);
  border: 1px solid var(--color-black);
}
.theme-btn-two:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}

/*Form Style CSS */
input,
textarea,
select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-white);
  padding: 13px 20px;
  font-size: 14px;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

textarea {
  height: 250px;
}

input[type=submit],
button[type=submit],
button[type=button] {
  border: none;
  display: inline-block;
  background: var(--color-red) !important;
  color: var(--color-white);
  padding: 7px 10px;
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-transform: uppercase;
  /*width: 200px;*/
}
button[type=button].navbar-toggler.active {
  padding: 15px 10px !important;
}

@media (max-width: 767px) {
  input[type=submit],
  button[type=submit] {
    width: 50%;
}
}

input[type=submit]:hover,
button[type=submit]:hover {
  background: var(--color-black);
  color: var(--color-white);
}

input::placeholder,
textarea::placeholder {
  font-size: 15px;
  font-weight: 500;
}

input.form-control {
  padding: 12px 20px;
  line-height: 1.2;
  outline: none;
	box-shadow:none !important;
	border-radius: none !important;
}

/*Bootstrap CSS*/
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-toggler-icon {
  background-image: none;
}

.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none;
}

/* Bacground Color & Overlay CSS 
============== */
.dark-bg {
  background: var(--color-black);
}

.dark-bg-two {
  background: #13163D;
}

.white-bg {
  background: var(--color-white) !important;
}

.gray-bg {
  background: #F9F9FB;
}

.sky-bg {
  background: #E9F0FB;
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: -1;
}

.text-white {
  color: var(--color-white) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.fix {
  overflow: hidden;
}

/* Sticky CSS 
============== */
.header-area .is-sticky .sticky-area {
  background: var(--color-white);
  z-index: 999 !important;
  -webkit-animation: slideInDown 0.6s forwards;
  animation: slideInDown 1s forwards;
  margin-top: 0;
  box-shadow: 0px 0px 20px -6px rgba(0,0,0,.4) !important;
}

.header-area .is-sticky .navigation {
  height: 85px;
  margin-top: 0;
}

.header-area .is-sticky .main-menu li:hover .sub-menu {
  top: 90px;
}

.header-area .is-sticky .menu-trigger span {
  background: var(--color-black);
}

.header-area.absolute-header .is-sticky .menu-trigger span {
  background: var(--color-black);
}
@media (max-width: 767px) {
  .header-area .is-sticky .navigation {
    height: 70px;
    margin-top: 0;
  }
}
/* Pre-Loader CSS 
============== */
#loader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 1000;
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
}

#loader:before, #loader:after {
  content: "";
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-green);
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: loaderCircleAnim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#loader:after {
  animation-delay: 1s;
}

@keyframes loaderCircleAnim {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}

/* Header Top Area
============== */
.header-top {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  padding: 8px 0;
  background: var(--color-green);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-top {
    display: none;
  }
}
.contact-info i {
  color: var(--color-white);
  font-size: 20px;
  margin-right: 2px;
}

.site-info .social-area {
  display: inline-block;
  margin-left: 10px;
}
.site-info .social-area i {
  font-size: 17px;
  color: var(--color-white);
  padding-left: 10px;
}
.header-area .logo {
  margin-top: 5px;
  position: relative;
}
.navbar-brand img{
  width: 140px;
  padding-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .logo {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .navbar-brand img{
    width: 110px;
    padding-top: 5px;
  }
  .header-area .logo {
    margin-top: 0px;
    padding-bottom: 10px;
  }
}

.header-icon i {
  font-size: 26px;
  margin-left: 20px;
}

.header-right-content {
  margin-top: 35px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-right-content {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-right-content {
    display: none;
  }
}
/* 
/* Header # 02 */
/* #header-aside .aside-content {
  float: right;
  color: #585252;
  margin-top: 15px;
}

#header-aside .aside-content .info-wrap {
  display: table;
  overflow: hidden;
  width: 100%;
}

#header-aside .aside-content .info-i,
#header-aside .aside-content .info-c {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

#header-aside .aside-content .info-c span {
  opacity: 0.5;
}

#header-aside .aside-content .info-i {
  width: 45px;
}

#header-aside .aside-content .info-i span {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: var(--color-green);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
}

#header-aside .aside-content .info-i span i::before {
  font-size: 36px;
}

#header-aside .aside-content .info-i span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px dashed transparent;
  background-color: transparent;
}

#header-aside .aside-content .inner > div {
  float: left;
  display: block;
  width: 170px;
  position: relative;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-left: 25px;
  border-right: 2px solid var(--color-light);
}

#header-aside .aside-content .inner > div:last-child {
  border: 0;
}

.responsive-logo {
  display: none;
}

#header-2 .navigation {
  height: 100px;
  border-top: 1px solid var(--color-light);
  padding: 5px 30px;
}

#header-2 .aside-content {
  padding: 10px 0;
}

#header-2 .main-menu .navbar-nav .nav-link {
  padding: 35px 0;
  color: #d7d7d7;
}

#header-2.header-area .main-menu .navbar-nav .nav-link.active {
  color: var(--color-green);
} */

/* Main Menu 
============== */
.main-menu .navbar {
  padding: 0;
}

.main-menu li.nav-item {
  position: relative;
  margin-right: 40px;
}

.main-menu li.nav-item:last-child {
  margin-right: 0;
}

.main-menu .navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 20px 0;
  position: relative;
  color: var(--color-black);
}

.main-menu .navbar-nav .nav-link {
  padding: 35px 5px;
}

.main-menu .navbar-nav .nav-link.active {
  color: var(--color-green);
}

.main-menu li.nav-item:hover > a {
  color: var(--color-white);
}

.main-menu .navbar-nav .nav-link::before {
  content: "";
  height: 2px;
  width: 12px;
  border-radius: 0px;
  background-color: var(--color-green);
  position: absolute;
  bottom: 44px;
  left: -12px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu li.nav-item:hover > .nav-link::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

/*Dropdown Menu */
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 15px;
  position: absolute;
  left: 0;
  top: 100px;
  min-width: 230px;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 99;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.sub-menu::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: var(--color-green);
  visibility: hidden;
  opacity: 0;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 90px;
}

#header-2 .main-menu li:hover .sub-menu {
  top: 90px;
}

.header-area.absolute-header .main-menu li:hover .sub-menu {
  top: 90px;
}

.main-menu li:hover .sub-menu::after {
  opacity: 1;
  visibility: visible;
}

.main-menu .sub-menu li {
  display: block;
}

.main-menu .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 12px;
  color: #2f3140;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-menu .sub-menu li:hover > a {
  color: var(--color-green);
}

.dropdown-toggle::after {
  display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
  display: none;
}

/* Hero Area Slider 
==================*/
.homepage-slides {
  position: relative;
  overflow: hidden;
}
.homepage-slides .single-slide-item {
  background-color: var(--color-white);
  width: 100%;
  height: 600px;
  display: table;
  align-items: center;
  position: relative;
  z-index: 1;
}
.homepage-slides .single-slide-item .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .homepage-slides .single-slide-item {
    background-color: var(--color-white);
    width: 100%;
    height: 380px;
  }
  .homepage-slides .single-slide-item .image-layer {
    background-position: left;
  }
}
.homepage-slides .single-slide-item h1 {
  color: var(--color-white);
  font-size: 48px;
  line-height: 50px;
  margin: 10px 0;
  position: relative;
}
.homepage-slides .single-slide-item p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .homepage-slides .single-slide-item h1 {
    font-size: 42px;
    line-height: 40px;
  }
  .homepage-slides .single-slide-item p {
    color: var(--color-white);
    font-size: 14px;
    line-height: 20px;
  }
}
.homepage-slides .single-slide-item .main-btn, .homepage-slides .single-slide-item .bordered-btn, .homepage-slides .single-slide-item .theme-btn-two {
  margin-top:0px;
}

.hero-area-content {
  display: table-cell;
  vertical-align: middle;
}
.hero-area-content h6 {
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 1px;
}

#home-1.homepage-slides .owl-nav button.owl-prev,
#home-1.homepage-slides .owl-nav button.owl-next {
  width: 70px;
  height: 70px;
  font-size: 20px;
  font-weight: 100;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
  background: transparent;
  border: 2px solid;
  color: rgba(200, 157, 102, 0.5490196078);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

#home-1.homepage-slides .owl-nav button.owl-next {
  left: auto;
  right: 0;
}

#home-1.homepage-slides:hover .owl-nav button.owl-prev,
#home-1.homepage-slides:hover .owl-nav button.owl-next {
  visibility: visible;
  opacity: 0.3;
}

#home-1.homepage-slides .owl-nav button.owl-prev:hover,
#home-1.homepage-slides .owl-nav button.owl-next:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  opacity: 1;
}

.homepage-slides .owl-nav button.owl-prev,
.homepage-slides .owl-nav button.owl-next {
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-light);
  border-left: none;
  font-size: 30px;
  font-weight: 100;
  line-height: 16px;
  position: absolute;
  right: 80px;
  bottom: 0;
  margin-top: -25px;
  background: var(--color-white);
  color: #F25B26;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.homepage-slides .owl-nav button.owl-next {
  left: auto;
  right: 0px;
}

.homepage-slides .owl-nav button.owl-prev:hover,
.homepage-slides .owl-nav button.owl-next:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

/* Promo Section
============== */
.single-promo-item {
  padding: 40px;
  position: relative;
  z-index: 1;
  background: var(--color-white);
  height: 250px;
  margin-top: -60px;
  transition: 0.5s;
  box-shadow: 0 3px 9px -2px #d0cece;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-promo-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-promo-item {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .single-promo-item {
    padding: 35px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
.single-promo-item h5 {
  font-size: 22px;
  font-weight: 600;
  margin: 5px 0 10px;
  position: relative;
  padding-left: 40px;
}
.single-promo-item h5:before {
  position: absolute;
  content: " ";
  top: 50%;
  left: 0;
  background: var(--color-green);
  height: 3px;
  width: 25px;
  margin-top: -1px;
}
.single-promo-item p {
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
}
.single-promo-item i {
  position: relative;
}
.single-promo-item i:before {
  font-size: 50px;
  font-weight: 400;
  color: var(--color-green);
}

.single-promo-item:hover h5 {
  color: var(--color-white);
}

.single-promo-item:hover p {
  color: var(--color-white);
}

.single-promo-item:hover .promo-icon {
  color: var(--color-white);
}

.single-promo-item:hover .promo-icon i:before {
  color: var(--color-white);
}

.single-promo-item:hover h5:before {
  background: var(--color-white);
}

.single-promo-item::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 16px;
  width: 16px;
  background: var(--color-green);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.single-promo-item:hover:after {
  width: 100%;
  height: 100%;
  z-index: -2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .info-content-area {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .single-promo-item h5 {
    font-size: 20px;
  }
  .info-content-area {
    margin-top: 50px;
  }
}

.info-content-area p.highlight {
  position: relative;
  padding-left: 25px;
  margin: 10px 0 0 0;
  text-align: justify;
  font-weight: 600;
  color: var(--color-green);
}

.info-content-area p.highlight:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 5px;
  left: 0;
  background: var(--color-green);
}
.info-content-area p{
  text-align: justify;
}

.about-img {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 70px);
}
@media (max-width: 767px) {
  .about-img {
    max-width: calc(100% - 0px);
  }
}
.about-key {
  overflow: hidden;
  margin-bottom: 10px;
}
.about-key li {
  width: 100%;
  font-weight: 600;
  padding-left: 20px;
  line-height: 1.4;
  padding: 0px;
  margin: 4px;
  color: var(--color-green);
}

@media (max-width: 767px) {
  .about-key li {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .about-content-area {
    margin-top: 50px;
  }
  .about-content-area .section-title{
    color: var(--color-green);
    margin: 0px;
    padding: 0px;
  }
}
.about-content-area .section-title{
  color: var(--color-green);
  margin: 0px;
  padding: 0px;
}
.about-content-area .section-title h2{
  color: var(--color-green);
}
.about-content-area h5{
  font-size: 18px;
  margin: 20px 0px;
  text-align: left;
  line-height: 1.5;
}
.about-content-area p{
  text-align: justify;
  line-height: 1.7;
}
.about-content-area .main-btn, .about-content-area .bordered-btn, .about-content-area .theme-btn-two {
  margin: 35px 0;
}

.call-us .icon i {
  font-size: 25px;
  margin-top: 0;
  margin-right: 24px;
  margin-left: -12px;
  display: inline-block;
  color: var(--color-white);
  background: #10102D;
  padding: 16px;
  border-radius: 50%;
}

.mobile-number p {
  color: #232323;
  font-size: 18px;
  font-weight: 500;
}

.mobile-number h5 {
  color: var(--color-black);
  font-size: 18px;
  margin-bottom: 3px;
}

.founded-year {
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .founded-year {
    right: 0;
    left: auto;
  }
}
.founded-year i {
  background: var(--color-red);
  color: var(--color-white);
  width: 220px;
  height: 100px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  padding: 6px;
}
.founded-year i:before {
  font-size: 45px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-img {
  position: relative;
  z-index: 1;
}

/* About Section # 02
============== */
#about-3.about-area {
  border-top: 1px solid var(--color-light);
}

.single-bar-item h4 {
  color: var(--color-black);
  font-size: 18px;
  margin-bottom: 10px;
}

.progress-bar-area {
  margin-top: 40px;
}

.barfiller .fill {
  background: var(--color-green) !important;
}

#about-3 .choose-certify {
  text-align: center;
}

#about-3 .choose-certify i {
  position: relative;
}

#about-3 .choose-certify i:after {
  position: absolute;
  content: " ";
  width: 60px;
  height: 60px;
  top: -7px;
  left: -30px;
  border-radius: 50%;
  background: var(--color-green);
  z-index: 1;
  opacity: 0.4;
}

#about-3 .choose-certify h5 {
  font-size: 22px;
  margin: 20px 0;
  color: var(--color-black);
  padding-left: 0;
}

#about-3 .choose-certify p {
  padding-left: 0;
}

.choose-certify i {
  font-size: 45px;
  color: var(--color-green);
  position: absolute;
}

.choose-certify h5 {
  color: var(--color-white);
  padding-left: 70px;
  margin-bottom: 15px;
}

.choose-certify p {
  padding-left: 70px;
}

.single-service-item {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 50px 5px 10px 20px;
  margin-top: 40px;
  transition: 0.3s;
  border-bottom: 1px solid var(--color-white);
}
.single-service-item .service-icon i:before {
  font-size: 50px;
  color: var(--color-green);
}
.single-service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin:10px 0;
}
.single-service-item .service-link {
  margin-top: 20px;
  transition: 0.3s;
}
.single-service-item .service-link i {
  font-size: 30px;
}
.single-service-item .service-link i:hover {
  color: var(--color-green);
}

.single-service-item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--color-green);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.single-service-item:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.service-slider .owl-nav button.owl-prev,
.service-slider .owl-nav button.owl-next {
  background: var(--color-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.service-slider .owl-nav button.owl-prev:hover,
.service-slider .owl-nav button.owl-next:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.service-slider .owl-nav i {
  font-size: 20px;
}

.service-slider .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.service-slider .owl-dots button.owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--color-white);
  margin-right: 20px;
  margin-top: 20px;
}

.service-slider .owl-dots button.owl-dot.active span {
  background: var(--color-green);
}

.service-slider .owl-dots {
  text-align: center;
}

.service-two .single-service-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-two .service-img {
  position: relative;
  z-index: 1;
  height: 250px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
  object-fit: cover;
}
@media (max-width: 767px) {
  .service-two .service-img {
    height: 220px;
  }
}
.service-two .service-img img {
  width: 100%;
  height: 300px;
  transition: transform ease-in-out 0.7s;
  transition-property: all;
}
.service-two .service-icon {
  background: var(--color-green);
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}
.service-two .service-icon i:before {
  font-size: 45px;
  line-height: 45px;
  color: var(--color-white);
}
.service-two .service-icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--color-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.service-two .service-icon span img {
    height: auto !important;    
}
.service-two .single-service-area:hover h5 {
  color: #F25B26;
}
.service-two .single-service-area:hover .service-icon {
  background: var(--color-red);
}
.service-two .single-service-area:hover .service-icon span {
  transform: rotateY(360deg);
}
.service-two .single-service-area:hover .service-img img {
  transform: scale(1.1) rotate(2deg);
  transition: all 2s ease-out;
}
.service-two .service-content {
  padding: 10px 22px 15px;
  box-shadow: 0 3px 9px -2px #d0cece;
  min-height: 200px;
}
.service-two .service-content h5{
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 5px;
}
.service-two .service-content h5 a{
  font-size: 22px;
  font-weight: 600;
}
.service-two .service-content p{
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.service-two .single-service-area a {
  font-size: 18px;
  color: var(--color-green);
  margin: 5px 0;
}
.service-two .single-service-area .read-more i:before {
  font-size: 26px;
  transition: all 500ms linear;
}
.service-two .single-service-area:hover .read-more i:before {
  padding-left: 5px;
  color: #092755;
}
.service-two .service-slider .owl-dots button.owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--color-black);
  margin-right: 10px;
  margin-top: 20px;
}
.service-two .service-slider .owl-dots button.owl-dot.active span {
  width: 35px;
  height: 10px;
  background: var(--color-green);
}
.service-two .service-slider .owl-dots {
  text-align: center;
  margin-top: 0px;
}

.project-bg {
  background-image: url(../img/project/project-1-1.jpg);
}

.project-bg-2 {
  background-image: url(../img/project/project-1-2.jpg);
}

.project-bg-3 {
  background-image: url(../img/project/project-1-3.jpg);
}

.project-bg-4 {
  background-image: url(../img/project/project-1-4.jpg);
}

.project-bg-5 {
  background-image: url(../img/project/project-5.jpg);
}

.project-bg-6 {
  background-image: url(../img/project/project-6.jpg);
}

.project-bg-7 {
  background-image: url(../img/project/project-7.jpg);
}

.project-bg-8 {
  background-image: url(../img/project/project-8.jpg);
}

.single-project-item.bg-cover {
  height: 450px;
}

.single-project-item {
  position: relative;
  z-index: 1;
  border-bottom: 4px solid #020E28;
}

.single-project-item:hover {
  border-bottom: 4px solid var(--color-green);
}

.project-inner .hover-info {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(50px);
  width: 100%;
  z-index: 2;
  padding: 35px 40px 35px 38px;
  max-width: 500px;
  transition: all ease 0.3s;
  transition-delay: 0.07s;
}

.single-project-item:hover .hover-info {
  opacity: 1;
  transform: translateY(0);
}

.project-inner:after {
  content: " ";
  width: 100%;
  height: 100%;
  background-color: rgba(3, 15, 39, 0.8);
  display: block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0px;
  transition: all ease 0.3s;
}

.single-project-item:hover .project-inner:after {
  opacity: 1;
}

.hover-info h4 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.hover-info p {
  color: var(--color-light);
}

.hover-info a {
  color: var(--color-green);
  font-size: 16px;
}

.project-inner .project-icon {
  position: absolute;
  right: 35px;
  top: 30px;
  opacity: 0;
  z-index: 2;
  transition: all ease 0.3s;
  font-size: 24px;
  transform: rotate(-45deg);
  cursor: pointer;
}
.project-inner .project-icon:hover {
  transform: rotate(0deg);
}

a.project-icon {
  width: 45px;
  height: 45px;
  background: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-project-item:hover .project-icon {
  opacity: 1;
  color: var(--color-green);
}

.project-area.home3 .section-title {
  margin-bottom: 50px;
}

#project-page .single-project-item {
  margin-bottom: 50px;
}

.project-single-section h3 {
  font-size: 35px;
  margin: 30px 0;
}

.project-info {
  border: 1px solid var(--color-light);
  padding: 20px 20px;
  margin-bottom: 50px;
}

.project-info h5 {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  color: var(--color-green);
  padding-bottom: 10px;
  border-bottom: 5px solid var(--color-green);
}

.project-info p {
  margin: 10px 0;
  padding: 10px 10px;
  border-bottom: 1px solid var(--color-light);
  padding-bottom: 10px;
}

.project-info p b {
  color: #222;
  padding-right: 20px;
}

.project-info span {
  float: right;
}

.project-info .main-btn, .project-info .bordered-btn, .project-info .theme-btn-two {
  padding: 15px 18px;
  font-size: 17px;
  margin: 20px 0;
  width: 60%;
  margin-left: 20%;
  line-height: 17px;
}

.project-overview h4 {
  margin:20px 0px 10px 0px;
}
.project-overview p{
  text-align: justify;
}
.project-overview p:last-child {
  margin-bottom: 40px;
}

.client-section {
  height: 200px;
  justify-content: space-evenly;
  border-bottom: 2px solid var(--color-white);
}
@media (max-width: 767px) {
  .client-section {
    height: 400px;
    flex-direction: column;
  }
}
.client-section .single-client-item {
  position: relative;
}
.client-section .single-client-item:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -65px;
  width: 1px;
  height: 200px;
  background: #BECBCC;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-section .single-client-item:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .client-section .single-client-item:after {
    display: none;
  }
}

.single-client-item:nth-child(5)::after {
  display: none;
}

/* Testimonial Section 
============== */
.author-wrap {
  display: flex;
  align-items: center;
}

.author-thumb img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
}

.author-desc {
  padding-left: 20px;
}
.author-desc h5 {
  font-size: 20px;
}
.author-desc span {
  font-size: 15px;
  color: #898a9c;
}

.single-testimonial-item {
  background: var(--color-white);
  padding: 65px 50px 70px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  box-shadow: 0 3px 9px -2px #d0cece;
  border-bottom: 1px solid #f6f6f6;
  transition: 0.3s;
}
.single-testimonial-item p {
  margin-bottom: 50px;
  font-size: 17px;
}

.testimonial-icon i {
  font-size: 25px;
  background: var(--color-green);
  padding: 15px;
  position: absolute;
  top: -20px;
  color: var(--color-white);
  z-index: 9;
}

.testimonial-area .owl-dots button.owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--color-white);
  margin-right: 10px;
  margin-top: 20px;
}

.testimonial-area .owl-dots button.owl-dot.active span {
  width: 35px;
  height: 10px;
  background: var(--color-green);
}

.testimonial-area .testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 50px;
}

.single-testimonial-item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--color-green);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.single-testimonial-item:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.single-testimonial-wrap {
  text-align: center;
}

.testimonial-area-2 {
  background-image: url(../img/testimonial/testimonial-bg.jpg);
  position: relative;
}

.single-testimonial-wrap img {
  width: 90px !important;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.single-testimonial-wrap p {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 35px;
}
@media (max-width: 767px) {
  .single-testimonial-wrap p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-testimonial-wrap i {
  font-size: 70px;
  color: var(--color-green);
}

.testimonial-avatar {
  margin-top: 40px;
}

.single-testimonial-wrap h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-top: 20px;
}

.single-testimonial-wrap h4 span {
  font-size: 90%;
  display: block;
  margin: 5px 0;
  opacity: 0.7;
}

.counter-area {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .counter-area {
    height: 700px;
  }
}

.fact-icon i:before {
  font-size: 40px;
  line-height: 35px;
  color: var(--color-white);
  margin: 20px 0;
  display: inline-block;
  background: var(--color-green);
  padding: 25px;
  border-radius: 5px;
}

.single-counter-box {
  text-align: center;
}
@media (max-width: 767px) {
  .single-counter-box {
    margin-bottom: 100px;
  }
}
.single-counter-box span {
  font-size: 140px;
  font-weight: 600;
  color: #a3a7ad;
  margin: 30px 0 10px;
  opacity: 0.1;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translate(-50px, -50px);
  width: 100%;
}
@media (max-width: 767px) {
  .single-counter-box span {
    font-size: 100px;
    transform: translate(-50px, 0);
  }
}
.single-counter-box h6 {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .single-counter-box h6 {
    font-size: 16px;
    margin-top: 25px;
  }
}
.single-counter-box p {
  font-size: 40px;
  color: var(--color-white);
}

.single-counter-box.two .counter-number span {
  color: #616366;
}

/* Blog Section 
============== */
.single-blog-item {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog-item {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .single-blog-item {
    margin-bottom: 50px;
  }
}

p.blog-meta {
  font-size: 14px;
  margin: 7px 0;
  letter-spacing: 1px;
  font-weight: 500;
}

p.blog-meta i:before {
  padding-right: 7px;
}

.blog-meta i {
  font-size: 18px;
}

i.las.la-comments {
  margin-left: 13px;
}

.blog-content {
  padding: 10px 20px 0;
}
.blog-content p {
  line-height: 28px;
}

#blog-2 .blog-content {
  padding: 30px;
}

.blog-content h5 a {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.blog-content h5 a:hover {
  color: #092755;
}

.blog-area a.read-more {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  margin: 10px 0 0;
  color: var(--color-green);
}

.blog-area a.read-more:hover {
  color: var(--color-green);
}

.blog-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}

.blog-bg img {
  width: 100%;
  height: 250px;
  transition: transform ease 0.3s;
}

.blog-bg span {
  background: var(--color-green);
  color: var(--color-white);
  padding: 20px;
  display: block;
  width: 80px;
  height: auto;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  line-height: 20px;
}

.blog-bg img:hover {
  transform: scale(1.07);
}

.pagination-block {
  display: block;
  margin: 45px auto;
}

.pagination-block .page-numbers {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: #656c76;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #e9eef6;
  margin: 0 3px;
  padding: 0;
  transition: all 0.3s ease 0s;
}

.page-numbers.current {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.pagination-block .page-numbers:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.blog-details-link {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-details-link i {
  font-size: 24px;
}

.blog-page .pagination {
  justify-content: center;
}

.blog-page .page-link {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-white);
}

.blog-page .page-item:first-child .page-link {
  display: block;
  border: none;
  display: inline-flex;
}

.blog-page .active > .page-link, .page-link.active {
  border-radius: 0;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.page-link:focus {
  box-shadow: none;
}

.single-blog-wrap .blog-meta {
  margin: 20px 0;
}

.single-blog-wrap .blog-meta span i {
  color: var(--color-green);
  font-size: 20px;
  margin-right: 10px;
}

.single-blog-wrap h3 {
  font-size: 28px;
  margin: 20px 0;
}

.single-blog-wrap h5 {
  font-size: 22px;
  margin: 20px 0;
}

img.blog-inside {
  margin: 30px 0;
}

/* Blog-Classic  
============== */
#blog-page .single-blog-item {
  margin-bottom: 40px;
  background: var(--color-white);
  box-shadow: 0 3px 9px -2px #d0cece;
}

#blog-page .blog-bg img {
  width: 100%;
  height: 100%;
}

#blog-page .blog-content p.blog-meta {
  font-size: 16px;
  color: #898a9c;
}

#blog-page .blog-content a {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  color: #00283F;
  margin-bottom: 20px;
}

#blog-page .blog-content a:hover {
  color: #C89D66;
}

#blog-page .blog-content a.read-more {
  text-transform: uppercase;
  font-size: 16px;
  color: #C89D66;
}

.blog-search input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--color-white);
  padding: 0;
  padding-bottom: 15px;
}

.blog-search button {
  background: none;
  margin: 0;
  padding: 0;
}

.blog-search button i {
  color: #191919;
  font-size: 20px;
  opacity: 0.5;
  position: absolute;
  top: 18px;
  right: 28px;
}

.blog-category h5,
.archive h5 {
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0;
}

.blog-category a,
.archive a {
  display: block;
  color: #191919;
  font-size: 18px;
  margin-bottom: 20px;
}

.blog-category a:hover,
.archive a:hover {
  color: #F35E27;
}

.blog-category a.active,
.archive a.active {
  color: var(--color-green);
}

.recent-post h5 {
  margin: 30px 0;
  margin-top: 50px;
  font-weight: 600;
}

.recent-post img {
  float: left;
  width: 70px;
  height: 70px;
}

.single-recent-post h6 {
  margin: 0;
  padding-left: 90px;
  font-size: 17px;
  line-height: 1.5;
}

p.blog-date {
  padding-left: 90px;
}

.single-recent-post {
  padding-bottom: 25px;
}

.single-recent-post .recent-post-content {
  display: block;
  padding-left: 110px;
}

.single-recent-post h6 a {
  color: #1d2143;
  line-height: 1.5;
}

.popular-tag h5 {
  margin: 30px 0;
  margin-top: 50px;
  font-weight: 600;
}

.popular-tag span {
  padding: 8px 15px;
  background: #00283F;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 15px;
}

.popular-tag a {
  font-size: 17px;
  color: var(--color-white);
  padding: 5px;
}

.popular-tag span.active {
  background: var(--color-green);
}

.popular-tag span:hover {
  background: var(--color-green);
}

.popular-tag span:hover a {
  color: var(--color-white);
}

.author-profile img {
  width: 90px;
  height: 90px;
  float: left;
}

.comments-section h5 {
  font-size: 22px;
  margin: 40px 0;
}

.comments-section img {
  width: 90px;
  height: 90px;
  float: left;
}

.single-comments-section {
  margin-bottom: 40px;
}

.comments-form button {
  margin-top: 40px;
}

.comments-form input {
  margin: 30px 0;
}

.comments-form p {
  margin-bottom: 30px;
}

.single-comments-section p {
  padding-left: 120px;
}

.single-comments-section p b {
  color: var(--color-black);
}

a.reply-btn {
  text-transform: uppercase;
  font-size: 14px;
}

.comments-form h3 {
  margin: 40px 0 15px;
}

.author-info {
  padding-left: 120px;
}

.author-info h6 {
  font-size: 20px;
  margin: 10px 0;
}

.single-comments-section p span {
  font-size: 15px;
  display: block;
}

.blog-search {
  border: 1px solid var(--color-white);
  padding: 15px;
}

.blog-category,
.recent-post,
.archive,
.popular-tag {
  border: 1px solid var(--color-white);
  padding: 10px 30px 20px;
  margin: 20px 0;
}

.helpline-section {
  background: #00283F;
  background-size: cover;
  background-position: center center;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.helpline-content h4 {
  color: white;
}

.helpline-content p {
  color: var(--color-white);
  margin-top: 20px;
}

.helpline-content button {
  z-index: 9;
  position: relative;
}

.helpline-section button {
  margin-top: 30px;
}

.footer-area {
  background: var(--color-green);
  color: var(--color-white);
  position: relative;
}
.footer-area h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 20px 0px 10px 0px;
}
.footer-area p {
  margin-top: 18px;
  color: var(--color-white);
  font-size: 17px;
}
.footer-area ul li a {
  font-size: 17px;
  display: block;
  color: var(--color-white);
  padding: 5px 0;
  position: relative;
}
@media (max-width: 767px) {
  .footer-area ul li a {
    padding: 6px 0;
  }
}
.footer-area ul li a:hover {
  color: var(--color-white);
  padding-left: 25px;
}
.footer-area ul li a span {
  color: var(--color-green);
  font-size: 18px;
  font-weight: 600;
}
.footer-area ul li a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 3px;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
}
.footer-area ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}

.contact-info p {
  margin-bottom: 10px;
}

.subscribe-form {
  position: relative;
}
.subscribe-form button {
  padding: 18px 40px;
  font-size: 17px;
  line-height: 13px;
  background: var(--color-green);
  color: var(--color-white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 0;
  cursor: pointer;
}
.subscribe-form input {
  border: 0;
  background: var(--color-white);
}
.subscribe-form input::placeholder {
  color: #797A7E;
  font-size: 16px;
}

.footer-up {
  padding: 40px 0;
}
.footer-up .social-area i {
  color: var(--color-light);
  font-size: 20px;
  margin-right: 10px;
}

.footer-bottom {
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0;
  background: var(--color-light);
}
.footer-bottom p {
  margin: 0;
  color: var(--color-black);
}

p.privacy {
  text-align: right;
}

.company-email a {
  color: #f6f6f6;
  font-size: 17px;
  font-weight: 600;
}
.company-email a:hover {
  color: var(--color-white);
}

.phone-number p {
  font-size: 20px;
  color: var(--color-white);
}

.choose-us-wrap {
  position: relative;
}
.choose-us-wrap img {
  width: 100%;
}

.choose-us-content {
  background: var(--color-black);
  padding: 85px 50px;
  position: relative;
  z-index: 1;
  margin-bottom: -15px;
}
.choose-us-content hr {
  border-color: #323f50;
}
.choose-us-content h3 {
  font-size: 48px;
  line-height: 63px;
  color: var(--color-white);
  margin: 80px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-us-content h3 {
    font-size: 34px;
    line-height: 45px;
    margin: 34px 0;
  }
}
.choose-us-content h6 {
  color: var(--color-white);
}
.choose-us-content .main-btn:hover, .choose-us-content .bordered-btn:hover, .choose-us-content .theme-btn-two:hover {
  background: var(--color-white);
  color: #182333;
}

.team-member-bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}

.team-member-bg {
  background-image: url(../img/team/1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/4.jpg);
}

.team-bg-5 {
  background-image: url(../img/team/5.jpg);
}

.team-bg-6 {
  background-image: url(../img/team/6.jpg);
}

.team-bg-7 {
  background-image: url(../img/team/7.jpg);
}

.team-bg-8 {
  background-image: url(../img/team/8.jpg);
}

.single-team-member {
  position: relative;
  margin-top: 25px;
}
.single-team-member .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 15px;
}
.single-team-member .team-content .team-title {
  font-weight: 500;
  margin-bottom: -3px;
}
.single-team-member .team-content .team-title a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #191919;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin: 0;
}
.single-team-member .team-content .team-title p {
  font-size: 16px;
  color: #7c7c7c;
  margin-bottom: 10px;
}

ul.team-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.team-social li {
  display: inline-block;
}
ul.team-social li a {
  font-size: 18px;
  padding: 10px;
  padding-top: 0;
  transition: all 0.3s ease-out;
}

.single-team-member:hover .team-social li a {
  color: var(--color-green);
}

.breadcrumb-area {
  background: url(../img/breadcrumb/bread-bg.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  text-align: center;
  position: relative;
}
.breadcrumb-area h2 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.breadcrumb-area h6 {
  font-size: 14px !important;
  font-weight: 400;
  line-height: 2px;
  margin-top: 14px;
  color: var(--color-green) !important;
}
.breadcrumb-area h6 a {
  color: var(--color-white);
  font-size: 14px !important;
}

.single-price-item {
  background: #F8F9FA;
  padding: 30px 50px;
  margin-top: 50px;
  transition: 0.3s;
}

.single-price-item h5 {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin: 20px 0;
}

.single-price-item h6 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 40px;
}

.single-price-item h5:before {
  position: absolute;
  content: "";
  width: 54px;
  height: 2px;
  bottom: -10px;
  left: 0;
  right: 0;
  background: var(--color-green);
}

.single-price-item p b {
  font-size: 45px;
  color: var(--color-green);
  margin-right: 10px;
  margin-left: 3px;
}

.single-price-item p {
  font-size: 18px;
  margin: 40px 0px;
}

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

.price-list ul li {
  display: block;
  margin: 10px 0;
  font-size: 17px;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.3s;
}

.price-list i {
  font-size: 20px;
  color: var(--color-green);
  margin-right: 10px;
}

.single-price-item .main-btn, .single-price-item .bordered-btn, .single-price-item .theme-btn-two {
  display: inline-block;
  margin: 30px 0 0;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: 16px;
}

.single-price-item.active {
  background: var(--color-white);
  box-shadow: 0 3px 9px -2px #d0cece;
  overflow: visible;
  padding-bottom: 75px;
}

.accordion.faqs {
  padding-right: 15px;
}

.accordion.faqs .card .card-header {
  background: var(--color-white);
  margin-bottom: 0px;
  border-radius: 0px;
  border: none;
  padding-left: 0;
}

.accordion.faqs .card {
  margin-bottom: 20px;
  border-radius: 0px;
  border: 2px solid #f3f5f8;
  padding: 0 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .accordion.faqs .card {
    padding: 0 16px;
  }
}

.accordion.faqs .card:last-child {
  margin-bottom: 0;
}

.accordion.faqs .card .card-header .btn-link {
  padding: 10px 0px;
  background: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #061815;
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
  border-radius: 0px;
  position: relative;
  text-decoration: none;
  border: none;
  padding-right: 95px;
}
@media (max-width: 767px) {
  .accordion.faqs .card .card-header .btn-link {
    padding-right: 30px;
  }
}
.accordion.faqs .card .card-header .btn-link:focus {
  outline: none !important;
}
.accordion.faqs .card .card-header .btn-link:active {
  outline: none !important;
}

.accordion.faqs .card .card-header .btn-link::after {
  right: 0;
  content: "\f061";
  font-family: "Line Awesome Free";
  height: 50px;
  width: 50px;
  text-align: center;
  top: 0;
  font-size: 25px;
  font-weight: 400;
  transform: rotate(45deg);
  border-radius: 50%;
  position: absolute;
  line-height: 51px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.accordion.faqs .card .subtitle > button[aria-expanded=true]::after {
  content: "\f061";
  transform: rotate(-45deg);
}

.accordion.faqs .card .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid;
  padding-left: 0;
}

.accordion.faqs .card .card-body .content {
  font-size: 16px;
  line-height: 24px;
  padding-left: 0;
  text-align: justify;
}

.accordion.faqs .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 2px solid #f3f5f8;
}

.accordion.faqs .card-body p {
  margin: 0;
  font-size: 17px;
}

.faq-icon-box {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--color-white);
  top: 40%;
  right: 85px;
  margin-top: -70px;
  z-index: 2;
  border-radius: 50%;
  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;
}

.faq-thumb {
  position: relative;
  z-index: 2;
}

.faq-icon-box img {
  -webkit-animation: 1.5s shake infinite;
  animation: 1.5s shake infinite;
  width: 80px;
  height: auto;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}
.faq-icon-box::after {
  width: 180px;
  height: 180px;
  -webkit-box-shadow: 0 8px 16px 0px rgba(130, 139, 148, 0.3);
  box-shadow: 0 8px 16px 0px rgba(130, 139, 148, 0.3);
  left: -20px;
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.faq-section-gallery {
  position: relative;
  min-height: 625px;
}
@media (max-width: 767px) {
  .faq-section-gallery {
    display: none;
  }
}

.faq-img-two {
  position: absolute;
  right: 10px;
  top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-img-two {
    right: 70px;
  }
}

.faq-img-three {
  position: absolute;
  bottom: 0;
}

.faq-section {
  position: relative;
}

.faq_shape_bottom {
  position: absolute;
  bottom: 0;
  left: -260px;
}

.faq_shape_top {
  position: absolute;
  top: 0;
  right: 0px;
}

.faq-section .section-title p {
  color: var(--color-black);
}
.faq-section .section-title p:before {
  background: var(--color-black);
}

.faq-two .accordion {
  background: transparent !important;
}

.faq-two .card {
  background: transparent;
  border: 1px solid #21312F !important;
}

.faq-two .accordion.faqs .card .card-header {
  background: transparent;
}

.faq-two .accordion.faqs .card .card-header .btn-link {
  background: transparent;
  color: var(--color-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-two .accordion.faqs .card .card-header .btn-link {
    font-size: 16px;
    padding-right: 75px;
  }
}

.faq-two .accordion.faqs .card .card-header .btn-link.active {
  color: var(--color-black);
}

.faq-two .accordion.faqs .card-body p {
  margin: 0;
  color: var(--color-white);
}

.contact-main{
  padding: 80px 0px;
}
@media (max-width: 767px) {
  .contact-main{
    padding: 0px;
  }
}
.contact-form-header {
  padding: 35px;
  background: var(--color-black);
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-header {
    padding: 20px;
  }
}
.contact-form-header p {
  font-size: 16px;
  font-weight: 600;
  color: #061815;
}
.contact-form-header h2 {
  font-size: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-form-header h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .contact-form-header h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-form-header {
    padding: 25px;
  }
}

.contact-form-inner {
  padding: 35px;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-form-inner {
    margin-top: 6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-inner {
    padding: 15px;
    margin-top: 6px;
  }
}
.contact-form-inner input {
  border-radius: 0;
  margin-bottom: 20px;
  background: #F9F3EB;
  border: 1px solid var(--color-black) !important;
  padding: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-inner input {
    padding: 15px;
    margin-bottom: 15px;
  }
}
.contact-form-inner textarea {
  border: none;
  border-radius: 0;
  background: #F9F3EB;
  height: 175px;
}
.contact-form-inner input[type=submit] {
  background: var(--color-black);
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
  color: #061815;
}
.contact-form-inner input[type=submit]:hover {
  background: var(--color-black);
  color: var(--color-white);
}

#faq-page .section-title p {
  color: var(--color-black);
}
#faq-page .section-title p:before {
  background: var(--color-black);
}

.faq-bg {
  background-image: url(../img/faq.png);
  height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin-bottom: -60px;
}

.contact-form {
  padding: 20px 40px;
  background: var(--color-green);
}
.contact-form .section-title{
  padding-bottom: 10px;
}
.contact-form .section-title h2{
  font-size: 30px;
  padding-bottom: 0px;
  margin-bottom: 10px;
}
.contact-form .section-title p{
  color: var(--color-white);
  line-height: 1.4;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .contact-form .section-title p{
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 20px;
  
  }
  .contact-form {
    margin-top: 10px;
    padding: 30px 30px;
  }
}

.contact-form label {
  color: var(--color-white);
  margin-bottom: 8px;
}

.contact-form input, .contact-form textarea {
  border-radius: 0;
  margin-bottom: 20px;
  border: none;
  background: var(--color-white);
  padding: 15px 20px;
}

.contact-form textarea {
  height: 200px;
}

.contact-form::placeholder {
  color: var(--color-white);
}

.contact-form button[type=submit] {
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-page.google-map iframe {
  width: 100%;
  height: 785px;
}

.contact-form form {
  margin-top: 0px;
}

.single-contact-info {
  border: 1px solid var(--color-light);
  text-align: center;
  padding: 40px 20px 10px 20px;
  margin-bottom: 30px;
  height: 100%;
}
.single-contact-info p{
  font-weight: 600;
}
.contact-icon {
  height: 80px;
  width: 80px;
  background: var(--color-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/*CUSTOM CSS*/
.service-details ul{
  list-style: none;
  margin: 20px 0;
}
.service-details li{
  display: block;
  float: left;
  width: 50%;
  font-size: 16px;
  padding-left: 10px;
  padding-bottom: 10px;
  font-weight: 500;
}
.service-details li::before {
  content: '\2192';
  display: inline-block;
  margin-right: 5px;
  color: var(--color-green);
  font-weight: 800;
  font-size: 20px;
  position: relative;
  top: 4px;
}
@media (max-width: 767px) {
  .service-details li{
    display: block;
    float: inherit;
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    padding-bottom: 10px;
    font-weight: 500;
  }
}

.project-list-main{
  padding: 10px 0px 50px 0px;
}
.project-list-img{
  height: 150px;
  text-align: center;
  background: violet;
  margin: 0px;
  padding: 0px;
}
.project-list-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-list-content{
  padding: 20px 20px;
}
.project-list-content h5{
  margin-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-list-content p{
  padding-top: 5px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-info-main{
  padding: 30px 0px;
}

.careers-main .form-input{
  padding: 20px 30px;
}

.careers-main .form-input small{
  font-size: 12px;
  color: var(--color-red);
  padding-right: 10px;
}
.careers-main .form-input label{
  padding-bottom: 5px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .careers-main .form-input{
    padding: 10px 5px;
  }
}

.top-phone {
    color: #FFF;
    font-size: inherit;
}
.data-error {
    border: 1px solid #F00 !important;
}

.whatsapp{
	position: fixed;
	bottom: 10px;
	right: 20px;
	float: right;
	z-index: 999;
}
.about-us {
    padding-top: 80px;
}
.about-us .single-promo-item {
    margin-top: 0px !important;
    padding: 30px;
}
.enq-file {
    padding: 8px !important;
    margin-bottom: 5px !important;
}
.text-10 {
    font-size: 10px !important;
}