/**
* Template Name: Proclean Landing Page
*/

/*============================================
1. Color Veriables
2. Preloader
3. Scroll top button
4. General
5. Animation keyframes
6. Header 
7. Banner 
8. About us
9. Our Services
10. video
11. Our Team
12. Count
13. Testimonials
14. Clear Pricing
15. Our Blog
16. Contact Info
17. Footer
============================================*/

/*--------------------------------------------------------------
# Color Veriables
--------------------------------------------------------------*/
:root {
  --h05-primary-color:#00081D;
  --h05-secondary-color: #00ADEF;
  --h05-text-primary-color: #00081D;
  --h05-text-secondary-color: #777777;
  --h05-tertiary-color: #FFFFFF;
  --h05-text-hover-color: #00081D;
}

:root {
  scroll-behavior: smooth;
}
:root
{

	/* ----------------------------------
   @font weight declaration
  ------------------------------------ */
	--lh-fw-normal: normal;
	--lh-fw-elight: 200;
	--lh-fw-light: 300;
	--lh-fw-regular: 400;
	--lh-fw-medium: 500;
	--lh-fw-sbold: 600;
	--lh-fw-bold: 700;
	--lh-fw-ebold: 800;
	--lh-fw-black: 900;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--h05-primary-color);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--h05-secondary-color);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--h05-secondary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.scroll-top i {
  font-size: 24px;
  color: var(--h05-primary-color);
  line-height: 0;
  margin-top: -5px;
}

.scroll-top:hover {
  background: var(--h05-secondary-color);
  color: var(--h05-primary-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 18px;
  font-family: "poppins", sans-serif;
  background-color: var(--h05-tertiary-color);
  line-height: 26px;
  overflow-x: hidden !important; 
}
::-webkit-scrollbar {
	height: 4px;
	width: 4px;
	background: var(--h05-primary-color);
}

::-webkit-scrollbar-thumb {
	background:var(--h05-secondary-color);
	-webkit-border-radius: 1ex;
	-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
	background: transparent;
}
img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "poppins", sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  margin-bottom: 0px;
  
}

h1,
.h1 {
  font-family: "poppins", sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 120px;
  
}

h2,
.h2 {
  font-family: "poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 70.56px;
  
}

h3,
.h3 {
  font-family: "poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
 
}

h4,
.h4 {
  font-family: "poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 40.32px;
  
}

h5,
.h5 {
  font-family: "poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
 
}

h6,
.h6 {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
 
}

p {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--h05-text-secondary-color);
}
.services-title
{
  margin-bottom: 50px;
}
.services-title h6 {
  color: var(--h05-secondary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.services-title h3 {
  color: var(--h05-primary-color);
}

/*==============================
  # Header 
==============================*/
.header {
  position: absolute;
  padding: 15px 0px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--h05-primary-color);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1030;
}

.header .navbar-expand-lg>.container>.row {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header.sticked {
  padding: 15px 0px;
  position: fixed;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  background-color: var(--h05-primary-color);
  -webkit-animation: fadeInDown 1s ease-in-out;
  -moz-animation: fadeInDown 1s ease-in-out;
  top: 0;
  left: 0;
}

.header .navbar-expand-lg {
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 12px;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  text-align: end;
}

.header .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-family: "poppins", sans-serif !important;
  font-weight: 400 !important;
  color: var(--h05-tertiary-color) !important;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
  color: var(--h05-secondary-color) !important;
}
.header .navbar-nav .nav-item .nav-link.active .menu-dot {
  color: var(--h05-secondary-color);
  padding: 0px 5px;
}
.menu-dot
{
  color: transparent;
  padding: 0px 5px;
}

.lets-talk-btn {
  width: 100%;
  height: 48px;
  border: none;
  background-color:var(--h05-secondary-color);
  color: var(--h05-tertiary-color);
  padding: 0px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.lets-talk-btn:hover {
  background-color:var(--h05-tertiary-color);
  color: var(--h05-primary-color);
}

.lets-talk-btn img {
  padding-right: 10px;
}

/*==============================
   End of Header 
==============================*/

/*==========================
  # start of Banner section
============================*/

section#banner
{
  width: 100%;
  background-color: var(--h05-primary-color);
}
.banner .info-bg
{
  padding-top: 98px;
  background-color: var(--h05-primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner h6{
  letter-spacing: 20px;
  color: var(--h05-tertiary-color);
}
.banner h6 span{
  color: var(--h05-secondary-color);
}
.banner h1{
  color: var(--h05-tertiary-color);
  line-height: 95px;
}
.banner p{
  color: var(--h05-tertiary-color);
  padding-top: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 90%;
}
.banner-btn
{
padding-top: 100px;
}
.getstart-btn
{
display: inline-block;
padding: 16px 32px;
border: 1px solid var(--h05-tertiary-color);
color: var(--h05-tertiary-color);
background-color:#ffffff17;
font-size: 18px;
font-family: "poppins", sans-serif;
font-weight: var(--lh-fw-medium) ;
}
.getstart-btn:hover{
  color: var(--h05-tertiary-color);
}
.getstart-btn img{
  margin-left: 8px;
  display: inline-block;
  transition: 0.5s; 
}
.getstart-btn:hover img
{
  transform: rotate(45deg);
  transition: 0.5s; 
}
.subscribe-btn
{
display: inline-block;
padding: 16px 54px;
border:1px solid transparent;
background-color: var(--h05-secondary-color);
color: var(--h05-tertiary-color);
font-size: 18px;
font-family: "poppins", sans-serif;
font-weight: var(--lh-fw-medium);
margin: 0px 10px;
box-shadow: 0 4px 8px 0 rgb(27 174 237 / 24%), 0 6px 20px 0 rgb(20 135 188 / 24%)
}

.subscribe-btn:hover{
  color: var(--h05-primary-color);
  background-color: var(--h05-tertiary-color);
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.24), 0 6px 20px 0 rgba(255, 255, 255, 0.24);
}
.pro-banner-slider ul.slick-dots {
  position: absolute;
  top: 40%;
  right: 2%;
  z-index: 1;
  text-align: center;
  list-style: none;
  padding: 0px;
  margin-bottom: 0px;
}
.pro-banner-slider ul li a.dot {
  color: white;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height:43px;
  display: inline-block;
  margin: 10px 0px;
  cursor: pointer;
}
.pro-banner-slider ul li a.dot::before{
  content: "0";
}
.pro-banner-slider ul li a.dot:hover,
.pro-banner-slider ul li a.dot:focus,
.pro-banner-slider ul li a.dot:active {
  background-color: #324e9661;
  border-radius: 100%;
}

/*==========================
  # End of Banner section
============================*/

/*==========================
  # start of About us section
============================*/
.about-us
{
 margin:120px 0px;
 position: relative;
}
.ellips
{
position: absolute;
left: 19%;
top: 7%;
z-index: -1;
}
.about-us .services-title
{
  margin-bottom: 0px;
}
.aboutimgbox
{
position: absolute;
border: 8px solid var(--h05-tertiary-color);
left: 27.2%;
top: 35%;
}
.read-more {
  padding: 16px 40px;
  border: 1px solid transparent;
  background-color: var(--h05-secondary-color);
  color: var(--h05-tertiary-color);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-top: 58px;
  box-shadow: 0 4px 8px 0 rgb(27 174 237 / 24%), 0 6px 20px 0 rgb(27 174 237 / 25%);
  border: 1px solid transparent;
}
.read-more:hover{
  color: var(--h05-primary-color) !important;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid var(--h05-primary-color);
}
.read-more svg{
  margin-left: 12px;
  transition: 0.5s;
}
.read-more:hover svg{
  transition: 0.5s;
  transform: rotate(45deg);
}
.read-more:hover svg path{
  fill: var(--h05-primary-color) !important;
}

/*==========================
  # End of About us section
============================*/

/*==============================
  # start Our Services section
==============================*/
.pro-ourservices
{
  margin-top: 120px;
  background-color: #00081d0d;
  padding: 100px 0px;
  position: relative;
}
.pro-ourservices .icon-box {
  background-color: var(--h05-tertiary-color);
  text-align: center;
  padding:30px;
  width: 100%;
  height: 100%;
}
.pro-ourservices .icon-imgbox
{
  width: 145px;
  height: 145px;
  background: color-mix(in srgb, #1baeed, #1baeed14 95%);
  border-radius: 100px;
  border-radius: 100px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: 0.3s;
}

.pro-services-slider button.slick-prev.slick-arrow {
  left: 0;
  position: absolute;
  top: 33%;
  left:-14%;
  z-index: 1;
  content: url(../img/proclean/proservices-prev-arrow.html);
  background: url(../img/proclean/proservices-prev-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}
.pro-services-slider button.slick-prev.slick-arrow:hover,
.pro-services-slider button.slick-prev.slick-arrow:focus,
.pro-services-slider button.slick-prev.slick-arrow:active 
{
  border: none !important;
  content: url(../img/proclean/proservices-prev-arrow-hover.html);
  background: url(../img/proclean/proservices-prev-arrow-hover.html);
  outline:none;
}

.pro-services-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 33%;
  right:-14%;
  z-index: 1;
  content: url(../img/proclean/proservices-next-arrow.html);
  background: url(../img/proclean/proservices-next-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}
.pro-services-slider button.slick-next.slick-arrow:hover,
.pro-services-slider button.slick-next.slick-arrow:focus,
.pro-services-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/proclean/proservices-next-arrow-hover.html);
  background: url(../img/proclean/proservices-next-arrow-hover.html);
  outline:none;
}

/*==============================
  # End of Our Services section
==============================*/

/*==========================
  # start of video section
============================*/
.video-box{
  margin:120px 0px;
  position: relative;
}
.video-img::before {
  content: "";
  background: color-mix(in srgb, var(--h05-primary-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index:0;
}
.video-img img{
  width: 100%;
}
.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 98px;
  width: 98px;
  font-size: 31px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--h05-tertiary-color);
  background: color-mix(in srgb, #fbfbfb24, #0000003d 10%);
  z-index: 999 !important;
  font-size: 30px;
}
.video:hover{
  color: var(--h05-secondary-color);
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
   
  }
  50% {
    opacity: 0.9;

  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, #ffffff4d, #ffffff24 30%);
  opacity: 0;
  border-radius: 100%;
  right: -40px;
  bottom: -40px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*==========================
  # End of video section
============================*/

/*===================================
  # start of Our Team section
====================================*/
.our-team .team-content {
  position: relative;
  overflow: hidden;

}
.our-team .team-content img {
  transition: 0.3s;
  display: inline-block;
  width: 100%;
}
.our-team .team-content .team-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgb(0 0 0 / 70%);
  padding: 10px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}
.our-team .team-content .team-info:hover {
  opacity: 1;
}
.our-team .team-content .team-info:active {
  opacity: 1;
}
.our-team .team-content .team-info h4{
  font-size: 28px;
  color: var(--h05-tertiary-color);
}
.our-team .team-content .team-info p{
  font-size: 18px;
  color: var(--h05-tertiary-color);
}
.our-team .team-content .team-info .social
{
  padding: 30px 0px 0px 0px;
}
.our-team .team-content .team-info .social a{
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--h05-tertiary-color);
  color: var(--h05-primary-color);
  line-height: 1px;
  margin: 0 10px;
  border-radius: 50%;
  text-align: center;
  width: 35px !important;
  height: 35px !important;
  transition: 0.3s;
}
.our-team .team-content .team-info .social a:hover,
.our-team .team-content .team-info .social a:focus,
.our-team .team-content .team-info .social a:active{
  background: var(--h05-secondary-color);
  color: var(--h05-primary-color);
}
.procleanteam-slider button.slick-prev.slick-arrow {
  left: 0;
  position: absolute;
  top: 33%;
  left:-14%;
  z-index: 1;
  content: url(../img/proclean/proservices-prev-arrow.html);
  background: url(../img/proclean/proservices-prev-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}
.procleanteam-slider button.slick-prev.slick-arrow:hover,
.procleanteam-slider button.slick-prev.slick-arrow:focus,
.procleanteam-slider button.slick-prev.slick-arrow:active 
{
  border: none !important;
  content: url(../img/proclean/proservices-prev-arrow-hover.html);
  background: url(../img/proclean/proservices-prev-arrow-hover.html);
  outline:none;
}

.procleanteam-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 33%;
  right:-14%;
  z-index: 1;
  content: url(../img/proclean/proservices-next-arrow.html);
  background: url(../img/proclean/proservices-next-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}
.procleanteam-slider button.slick-next.slick-arrow:hover,
.procleanteam-slider button.slick-next.slick-arrow:focus,
.procleanteam-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/proclean/proservices-next-arrow-hover.html);
  background: url(../img/proclean/proservices-next-arrow-hover.html);
  outline:none;
}

/*==================================
  # End of Our Team section
==================================*/

/*==============================
  # start Count section
==============================*/
.count
{
  margin-top: 120px;
  background-color: #00081d0f;
  padding: 20px 0px;
}
.count .count-bg
{
 padding:0px;
}
.count .count-bg .count-border
{
  border-right: 1px solid var(--h05-text-secondary-color);
}
.count .count-bg .stats-item span
{
  font-size: 48px;
  display: block;
  color: var(--h05-secondary-color);
  font-weight:var(--lh-fw-bold);
  line-height: normal;
}
.count .count-bg .stats-item span::after {
  content: " +";
  display: inline-block;
  color: var(--h05-secondary-color);
  font-size: 50px;
  padding-left: 8px;
}
.count .count-bg .stats-item p{
  font-size: 20px;
  font-weight: 500;
  color: var(--h05-primary-color);
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}
.count .count-bg .stats-item1 span
{
  font-size: 48px;
  display: block;
  color: var(--h05-secondary-color);
  font-weight:var(--lh-fw-bold);
  line-height: normal;
}
.count .count-bg .stats-item1 span::after {
  content: " k";
  display: inline-block;
  color: var(--h05-secondary-color);
  font-size: 50px;
  padding-left: 8px;
}
.count .count-bg .stats-item1 p{
  color: var(--h05-primary-color);
  font-size: 20px;
  font-weight: 500;
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}
/*==============================
  # End of Count section
==============================*/

/*==============================================
  # start of testimonials(client-say) section
=============================================*/
.testimonial
{
  margin-top: 120px;
}
.testi-itemcontent
{
  background-color: #00081d14;
  padding: 163px 163px 163px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-itemcontent h4{
font-size: 30px;
color: var(--h05-primary-color);
}
.testi-itemcontent p{
  color: var(--h05-primary-color);
  }
.testimonial .client-content
{
color: var(--h05-text-secondary-color);
}
.testimonial-box
{
  display: flex;
  position: relative;
}
.testi-pic {
  position: absolute;
    left: 40%;
    right: 0px;
    top: 8%;
}
.testimonial .testi-itemcontent .stars {
  padding-top: 20px;
}
.testimonial .testi-itemcontent .stars i {
  color: var(--h05-secondary-color);
  margin: 0 5px 0px 0px;
  font-size: 25px;
}
.pro-testimonials-slider button.slick-prev.slick-arrow
{
  left: 0;
  position: absolute;
  top: 33%;
  left:-13%;
  z-index: 1;
  content: url(../img/proclean/proservices-prev-arrow.html);
  background: url(../img/proclean/proservices-prev-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
  
}
.pro-testimonials-slider button.slick-prev.slick-arrow:hover,
.pro-testimonials-slider button.slick-prev.slick-arrow:focus,
.pro-testimonials-slider button.slick-prev.slick-arrow:active 
{
  border: none !important;
  content: url(../img/proclean/proservices-prev-arrow-hover.html);
  background: url(../img/proclean/proservices-prev-arrow-hover.html);
  outline:none;
}

.pro-testimonials-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 33%;
  right:-13%;
  z-index: 1;
  content: url(../img/proclean/proservices-next-arrow.html);
  background: url(../img/proclean/proservices-next-arrow.html);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
  
}
.pro-testimonials-slider button.slick-next.slick-arrow:hover,
.pro-testimonials-slider button.slick-next.slick-arrow:focus,
.pro-testimonials-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/proclean/proservices-next-arrow-hover.html);
  background: url(../img/proclean/proservices-next-arrow-hover.html);
  outline:none;
}
/*===========================================
  # End of testimonials(client-say) section
============================================*/

/*=================================
  # start of Clear Pricing section
==================================*/
.pricing
{
  margin-top: 120px;
}
.pricing .pricing-item {
  background-color:var(--h05-primary-color);
  padding: 50px;
  height: 100%;
  border: 2px solid #77777750;
}
.pricing .pricing-item:hover{
  background-color:var(--h05-secondary-color);
  border: 2px solid #1d1d1d0d;
}
.pricing .pricing-item:hover h5{
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item:hover h2{
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item:hover span{
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item:hover ul li {
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item:hover .pricing-btn {
  background: var(--h05-tertiary-color);
  color: var(--h05-primary-color) !important;
  fill: var(--h05-tertiary-color);
}
.pricing .pricing-item:hover .pricing-line {
  background:var(--h05-tertiary-color);
}
.pricing .pricing-item:hover .pricing-btn svg path {
  fill: var(--h05-primary-color);
}
.pricing .pricing-item h5{
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item h2 {
  color: var(--h05-tertiary-color);
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 0;
}
.pricing .pricing-item h2 span {
  color: var(--h05-tertiary-color);
  font-size: 18px;
  font-weight: 400;
}
.pricing-line
{
 height: 2px;
 background:#77777750;
 margin: 20px 0px;
}
.pricing .pricing-item ul li {
  padding: 10px 0;
  align-items: center;
  color: var(--h05-tertiary-color);
}
.pricing .pricing-item ul li span{
 font-size: 18px;
 font-weight: 400;
}
.pricing-btn
{
  display: block;
  font-size: 18px;
  font-weight: 600;
  background: var(--h05-secondary-color);
  color: var(--h05-tertiary-color);
  padding: 20px;
  text-align: center;

}
.pricing-btn svg
{
 margin-left: 10px;
 transition: 0.5s;
}
.pricing-btn:hover svg
{
  transform: rotate(45deg); 
  transition: 0.5s;
}
/*==============================
  # End of Clear Pricing section
==============================*/

/*==================================
  # start of Our Blog section
===================================*/
.our-blog
{
  margin: 120px 0px 220px 0px;
}
.our-blog .post-list
{
  position: relative;
}
.our-blog .post-list-profile
{
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.our-blog .post-listbox
{
  position: absolute;
  padding: 20px;
  bottom: -95px;
  left: 35px;
  right: 0px;
  overflow: hidden;
  transition: 0.5s;
  background-color: var(--h05-tertiary-color);
  box-shadow: 0 4px 15px 0 rgb(0 0 0 / 11%), 0 6px 15px 0 rgb(0 0 0 / 2%);
}
*, ::after, ::before {
  box-sizing: border-box;
}
.our-blog .post-listbox .post-meta {
  font-size: 16px;
  font-weight: 400;
  color: var(--h03-text-secondary-color);
}
.our-blog .post-meta span{
  color: var(--h05-text-secondary-color);
}
.our-blog .post-listbox h4 {
  padding-right: 50px;
  line-height: 33px;
}
.our-blog .post-listbox h4 a{
  font-size: 22px;
  font-weight: 600;
  color: var(--h05-primary-color);
}
.blog-read-more {
  padding: 8px 20px;
  border: 1px solid transparent;
  background-color: var(--h05-secondary-color);
  color: var(--h05-tertiary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgb(27 174 237 / 25%), 0 6px 20px 0 rgb(27 174 237 / 25%);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  border: 1px solid transparent;
}
.post-listbox .blog-read-more:hover{
  color: var(--h05-primary-color) !important;
  background-color: transparent;
  box-shadow: none;
  border: 1px solid var(--h05-primary-color);
}
.post-listbox .blog-read-more svg{
  margin-left: 10px;
  transition: 0.5s;
}
.post-listbox .blog-read-more:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}
.post-listbox .blog-read-more:hover svg path{
  fill: var(--h05-primary-color) !important;
}
/*==================================
  # End of Our Blog section
===================================*/

/*==================================
  # start of Contact Info section
===================================*/
.contact-info
{
  padding: 100px 0px;
  background-color: var(--h05-primary-color);
}
.contact-info h4
{
  color: var(--h05-secondary-color);
  font-size: 30px;
  font-weight: 600px;
  line-height: 45px;
  padding-bottom: 20px;
}
.contact-info p
{
  color: var(--h05-tertiary-color);
}
.contact-info .info-item p a{
  color: var(--h05-tertiary-color);
}
.contact-info .info-item .info-title h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: var(--h05-tertiary-color);
}
.contact-info .info-item {
  width: 100%;
  margin-bottom: 10px;
  color: var(--h01-tertiary-color);
  padding-top: 50px;
}
.contact-info .info-item .info-title p{
  font-size: 17px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0px;
}
.contact-info .info-item i {
  font-size: 32px;
  color: var(--h05-tertiary-color);
  background-color:var(--h05-secondary-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact-info .info-item:hover i {
  background: var(--h05-tertiary-color);
  color: var(--h05-secondary-color);
}
/*start contact-info form*/
.contactinfo-form{
  display: block;
  width: 100%;
  padding:18px 0px 18px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height:24px;
  color: var(--h05-tertiary-color);
  background-color:#ffffff0a;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
}
.contactinfo-form::placeholder
{
  color:var(--h05-tertiary-color);
}
.php-email-form .loading {
  display: none;
  background: var(--h05-secondary-color);
  color:var(--h05-tertiary-color);
  text-align: center;
  padding: 10px;
  margin: 5px 0px;
}
.php-email-form .error-message{
  display: none;
  background: #df1529;
  color:var(--h05-primary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.php-email-form .sent-message {
  display: none;
  background: var(--h05-secondary-color);
  color:var(--h05-tertiary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px;
}
*, ::after, ::before {
  box-sizing: border-box;
}
.contact-info .php-email-form button[type=submit] {
  width: 100%;
  color: var(--h05-tertiary-color);
  background: var(--h05-secondary-color);
  border: 0;
  padding: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  transition: 0.4s;
  margin-top: 1px 0px;
  box-shadow: 0 4px 8px 0 rgb(27 174 237 / 25%), 0 6px 20px 0 rgb(27 174 237 / 25%);
  border: 1px solid transparent;
}
.contact-info .php-email-form button[type=submit]:hover {
  color: var(--h05-primary-color);
  background: var(--h05-tertiary-color);
  box-shadow: none;
  border: 1px solid var(--h05-primary-color);
}
.contact-info .php-email-form button[type=submit] svg{
  margin-left: 12px;
  transition: 0.5s;
}
.contact-info .php-email-form button[type=submit]:hover svg{
  transform: rotate(45deg); 
  transition: 0.5s;
}
.contact-info .php-email-form button[type=submit]:hover svg path{

  fill: var(--h05-primary-color) !important;
}
/*================================
  # End of Contact Info section
=================================*/

/*================================
  # start of Footer section
=================================*/
.footer{
  background-color: var(--h05-primary-color);
  padding: 37px 20px 10px 20px;
  border-top:1px solid grey;
}
.footer .footer-about .logo h4
{
  font-size: 31px;
  font-weight: 800;
  font-style: italic;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h05-secondary-color);
}

.footer .footer-about h4 span{
  color: var(--h05-tertiary-color);
  font-size: 31px;
  font-weight: 800;
  line-height: 42px;
  font-style: italic;
}
.footer .footer-about p {
  color: var(--h05-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.footer .footer-contact p a{
  color: var(--h05-tertiary-color);
}
.footer .footer-contact p a:hover{
  color: var(--h05-secondary-color);
}
.footer-links h6
{
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h05-tertiary-color);
}
.footer-links span{
  font-size: 22px;
  font-weight: 500;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;

}
.footer .footer-links ul li {
  padding:0px;
  display: inline-block;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-links ul a {
  color: var(--h05-tertiary-color);
  display:inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  padding-right: 40px;
}
.footer .footer-links ul a:hover {
  color: var(--h05-secondary-color);
}
.footer .footer-contact p{
  color: var(--h05-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}
.footer .footer-contact span{
  color: var(--h05-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.footer .footer-newsletter h6{
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h05-tertiary-color);
}
.footer-newsletter .php-email-form .loading {
  display: none;
  background: var(--h01-secondary-color);
  color:var(--h01-primary-color);
  text-align: center;
  padding: 10px;
}
.footer-newsletter .php-email-form .error-message{
  display: none;
  background: #df1529;
  color:var(--h01-primary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.footer-newsletter .php-email-form .sent-message {
  display: none;
  background:var(--h01-secondary-color);
  color:var(--h01-primary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
.footer-content-list
{
margin-bottom: 22px;
}
.footer .footer-contact .icon {
  color: var(--h05-secondary-color);
  padding-right: 15px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.footer .footer-newsletter .newsletter-form {
  position: relative;
  border: none;
  display: flex;
  background-color: transparent;
  transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form input[type=email] {
  border:none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px 15px 25px;
  width: 100%;
  background-color:var(--h05-tertiary-color);
  color: var(--h05-text-secondary-color);
  outline: none;
}
.footer .footer-newsletter .newsletter-form .submit {
  position: absolute;
  border: 0;
  right: 1%;
  top: 8%;
  padding: 11px 17px;
  background: var(--h05-secondary-color);
  color: var(--h05-tertiary-color);
  transition: 0.3s;
}
.footer .footer-newsletter .social-links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h05-tertiary-color);
  color: var(--h05-primary-color);
  line-height: 1;
  margin: 0 10px;
  border-radius: 50%;
  text-align: center;
  width: 37px;
  height: 37px;
  transition: 0.3s;
}
.footer .footer-newsletter .social-links a:hover{
  background: var(--h05-secondary-color);
  color: var(--h05-primary-color);
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--h05-text-secondary-color), transparent 80%);
}
.footer .copyright p{
 color: var(--h05-tertiary-color);
 font-size: 16px;
 font-weight: 400;
 line-height: 24px;
}
/*================================
  # End of Footer section
=================================*/
.common-bg {
    padding: 130px 0px 65px 0px;
    background: color-mix(in srgb, #1baeed, #1baeed14 95%);
}
section.section {
    padding: 55px 0px;
}
.navbar-brand img {
    max-width: 55%;
}
img.foot-logo {
    max-width: 30%;
    margin-bottom: 10px;
}