:root{
	--primary-color: #11b4f5;
	--secondary-color: #06425a;
	--third-color: #011218;
}

@media screen and (max-width:768px){
    .footer-logo{
        width: unset !important;
    }
}

/*-----------------------------------
About Us page
------------------------------------*/
.about-page{
    min-height: auto !important;
    height: auto !important;
	padding: 20px 0 !important; 
}
@media screen and (min-width:991px){
   .about-page .banner-title{
    font-size: 40px;
   } 
}


/*-----------------------------------
About Us Styling
------------------------------------*/
.about .title-box h5{
    color: #021f2a;
    font-weight: 700;
}
.about .title-box h2{
    color: #11b4f5;
}
@media screen and (min-width:991px){
   .about .title-box h5{
    font-size: 40px;
   } 
}
.about .about-img-wrapper{
    position: relative;
}
.about .about-counter{
    background:  #11b4f5;
    position: absolute;
    top: 30%;
    transform: translateY(-30%);
    left: 0;
    padding: 30px;
}
.about .about-counter h2{
    color: #fff;
    font-weight: 700;
}
@media screen and (min-width:991px){
   .about .about-counter h2{
    font-size: 54px;
   } 
}
.about .about-counter p{
    color: #fff;
    font-size: 18px;
}
.about .about-content p{
    color: #727272;
    line-height: 1.8;
}
.about .about-featured .about-featured-icon img{
    width: 67px;
    height: 67px;
    min-height: 67px;
    min-width: 67px;
}
.about .about-featured .about-featured-text h3{
font-family: "Poppins", sans-serif;
font-weight: 600;
}
@media screen and (min-width:991px){
   .about .about-featured .about-featured-text h3{
    font-size: 28px;
   } 
}
.about .about-featured-list ul{
    list-style:none;
    line-height: 2;
}
.about .about-featured-list ul li:before{
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%2383bfed' stroke-linejoin='round' stroke-width='4'%3E%3Cpath d='M24 44a19.94 19.94 0 0 0 14.142-5.858A19.94 19.94 0 0 0 44 24a19.94 19.94 0 0 0-5.858-14.142A19.94 19.94 0 0 0 24 4A19.94 19.94 0 0 0 9.858 9.858A19.94 19.94 0 0 0 4 24a19.94 19.94 0 0 0 5.858 14.142A19.94 19.94 0 0 0 24 44Z'/%3E%3Cpath stroke-linecap='round' d='m16 24l6 6l12-12'/%3E%3C/g%3E%3C/svg%3E");
position: relative;
top: 5px;
margin-right: 10px;
}

.custom-blog-title{
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.custom-blog-para{
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}


/*-----------------------------------
projects page
------------------------------------*/
@media screen and (min-width:991px){
	.projects-title{
		font-size: 28px !important;
	}
}


/*================================
 <-- Single Blog -->
==================================*/
.single-blog .single-blog-img {
	margin-bottom: 20px;
}
@media screen and (min-width:991px){
	.single-blog .single-blog-img img{
		width: 100% !important;
	height: 398.13px;
		object-fit: cover;
}
}
.single-blog .single-blog-img-content{
	border-left: 2px solid var(--primary-color);
	padding-left: 15px;
	
}
.single-blog .single-blog-img-content span,
.single-blog .single-blog-img-content span a{
	color: var(--primary-color);
}
.single-blog .single-blog-img-content span{
	margin-bottom: 5px;
}
.single-blog .single-blog-img-content p{
	color: var(--secondary-color);
	font-weight: 500;
}
.single-blog .single-blog-title h2{
	color: var(--primary-color) !important;
	font-weight: 700;
}
.single-blog .single-blog-content h3{
	color: var(--primary-color) !important;
	font-weight: 700;
}
@media screen and (min-width:991px){
	.single-blog .single-blog-title h2{
		font-size: 35px;
	}
}
.single-blog .single-blog-content p{
	color: #565969;
	line-height: 1.7;
	font-size: 17px;
	text-align: justify;
}
.single-blog-sidebar-wrapper {
	margin-bottom: 30px;
    background-color: #f6f6f6;
    padding: 25px 25px 25px;
}
.single-blog-sidebar-wrapper h2{
	color: var(--primary-color);
	border-left: 2px solid var(--primary-color);
	padding-left: 15px;
	text-transform: capitalize;

}
@media screen and (min-width:991px){
	.single-blog-sidebar-wrapper h2{
		font-size: 20px;
	}
}
.single-blog-post-inner ul{
	list-style: none;
	padding-left: 0;
	display: flex;
	padding: 10px 0;
	border-bottom: 1px solid #cccccc;
}
.single-blog-post-inner li img{
/* 	width: 91.5px; */
	width: 150px;
	height: 114.08px;
	object-fit: cover;
	border-radius: 4px;
	max-width: 120px;
}
.single-blog-post-inner li h3{
	padding-left: 10px;
	line-height: 0.9;
}
.single-blog-post-inner li span{
	padding-left: 10px;
	color: #565969;
}
.single-blog-post-inner li a{
	font-size: 18px;
	color: var(--secondary-color);
	transition: all .5s ease-in-out;
	
}
.single-blog-post-inner li a:hover{
		color: var(--primary-color);
}


/*================================
 <-- Single Service -->
==================================*/ 
.single-service .single-service-sidebar h3,
.single-service .single-service-sidebar-contacts h3{
	color: var(--primary-color);
	position: relative;
	margin-bottom: 30px;
	text-transform: capitalize;
	padding-bottom: 15px;
}
.single-service .single-service-sidebar h3:before,
.single-service .single-service-sidebar-contacts h3:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	top: 100%;
}
.single-service .single-service-sidebar ul{
	list-style: none;
	padding-left: 0;
/* 	border: 1px solid #d7d7d7; */
	}
.single-service .single-service-sidebar ul{
	background: #F6F6F6;
}
.single-service .single-service-sidebar ul li a{
/* 	background: #f5f5f5; */
	color: var(--text-white);
	padding: 18px 30px;
	text-transform: capitalize;
	font-weight: 500;
/* 	border-bottom: 1px solid #d7d7d7; */
	position: relative;
	z-index: 9999 !important;
	display: block;
	transition: all .5s ease-in-out;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.single-service .single-service-sidebar ul li a:before{
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	left: 50%;
	top: 0;
	background: var(--primary-color);
	transition: all .5s ease-in-out;
	z-index: -1;
	
}
.single-service .single-service-sidebar ul .current-menu-item a{
	
	background: var(--primary-color);
	transition: all .5s ease-in-out;
	z-index: 1;
	color: #fff;
}
.single-service .single-service-sidebar ul li:hover a:before{
	width: 100%;
	left: 0;
	border-left: 4px solid #000;
}
.single-service .single-service-sidebar ul li:hover a{
	color: #fff;
}
.single-service .single-service-sidebar ul li a:after{
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%232C4A28' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m22 6l8 10l-8 10m8-10H2'/%3E%3C/svg%3E");
	position: absolute;
	right: 20px;
}

.single-service .single-service-sidebar-contacts .single-service-sidebar-info svg{
	width: 44px;
	height: 45px;
	color: var(--primary-color);
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a{
	color: #777;
	transition: all .5s ease-in-out;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info a:hover{
	color: var(--primary-color);
}
.single-service .single-service-content-img img{
	border-radius: 5px;
}
.single-service .single-service-sidebar-contacts .single-service-sidebar-info h4{
	font-size: 18px;

}
.single-service .single-service-content-img{
	position: relative;
	overflow: hidden;
	
}
/* .single-service .single-service-content-img:before{
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	background: linear-gradient(rgba(180, 16, 23, 0.5),rgba(180, 16, 23, 0.5));
	transition: all .5s ease-in-out;
	border-radius: 10px;
} */
.single-service .col-md-8:hover .single-service-content-img:before{
	width: 100%;
}
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
		border-radius: 10px;
        border: 8px solid var(--primary-color);
	}
@media screen and (min-width:991px){
	.single-service .single-service-content-img img{
		width: 100%;
		height: 450px;
		object-fit: cover;
	}
}
.single-service .single-service-content p{
	color: #777;
	line-height: 1.5;
	text-align: justify;
}
.single-service .single-service-content h2,
.single-service .single-service-content h3,
.single-service .single-service-content h4{
	color: var(--primary-color);
}
.single-service .single-service-content ul li,
.single-service .single-service-content ol li{
	color:  #777;
}.single-service .single-service-content ul {
	list-style: none;
	padding-left: 0;
}
.single-service .single-service-content ul li:before{
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 256 256'%3E%3Cpath fill='%232c4a28' d='M225.86 102.82c-3.77-3.94-7.67-8-9.14-11.57c-1.36-3.27-1.44-8.69-1.52-13.94c-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52c-3.56-1.47-7.63-5.37-11.57-9.14C146.28 23.51 138.44 16 128 16s-18.27 7.51-25.18 14.14c-3.94 3.77-8 7.67-11.57 9.14c-3.25 1.36-8.69 1.44-13.94 1.52c-9.76.15-20.82.31-28.51 8s-7.8 18.75-8 28.51c-.08 5.25-.16 10.67-1.52 13.94c-1.47 3.56-5.37 7.63-9.14 11.57C23.51 109.72 16 117.56 16 128s7.51 18.27 14.14 25.18c3.77 3.94 7.67 8 9.14 11.57c1.36 3.27 1.44 8.69 1.52 13.94c.15 9.76.31 20.82 8 28.51s18.75 7.85 28.51 8c5.25.08 10.67.16 13.94 1.52c3.56 1.47 7.63 5.37 11.57 9.14c6.9 6.63 14.74 14.14 25.18 14.14s18.27-7.51 25.18-14.14c3.94-3.77 8-7.67 11.57-9.14c3.27-1.36 8.69-1.44 13.94-1.52c9.76-.15 20.82-.31 28.51-8s7.85-18.75 8-28.51c.08-5.25.16-10.67 1.52-13.94c1.47-3.56 5.37-7.63 9.14-11.57c6.63-6.9 14.14-14.74 14.14-25.18s-7.51-18.27-14.14-25.18m-52.2 6.84l-56 56a8 8 0 0 1-11.32 0l-24-24a8 8 0 0 1 11.32-11.32L112 148.69l50.34-50.35a8 8 0 0 1 11.32 11.32'/%3E%3C/svg%3E");
	position: relative;
	top: 6px;
	margin-right: 5px;
}


/*-----------------------------------
Why Choose Us Styling
------------------------------------*/
.why-choose-us{
    padding-bottom: 70px;
}
.why-choose-us .why-choose-us-img-wrapper{
    position: relative;
}
.why-choose-us .why-choose-us-img-wrapper:before{
    content: '';
    position: absolute;
    width:100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));
}

.why-choose-us .why-choose-us-img-wrapper img{
    border-radius: 10px;
}
.why-choose-us .why-choose-us-img-wrapper .why-choose-us-wrapper-btn{
    position: absolute;
    bottom: 30px;
    left: 20px;
}
@media screen and (max-width:768px){
	.why-choose-us .why-choose-us-img-wrapper .why-choose-us-wrapper-btn{
		top: 50%;
		transform: translateY(-50%);
		left: 20px;
	}
}
.why-choose-us .why-choose-us-img-wrapper .why-choose-us-wrapper-btn .why-choose-btn-1{
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    color: #171717;
    text-transform: uppercase;
/*      font-family: "Montserrat", sans-serif; */
}
.why-choose-us .why-choose-us-img-wrapper .why-choose-us-wrapper-btn .why-choose-btn-2{
    background: var(--primary-color);
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
/*      font-family: "Montserrat", sans-serif; */
}
.why-choose-us .why-choose-us-img-wrapper .why-choose-us-img-content{
    position: absolute;
    bottom: 15px;
    right: 10px;
    color: #fff;
}
@media screen and (max-width:768px){
	.why-choose-us .why-choose-us-img-wrapper .why-choose-us-img-content{
		left: 20px;
		bottom: 10%;
		
	}
}
.why-choose-us .why-choose-us-img-wrapper .why-choose-us-img-content h3{
    text-transform: uppercase;
/*     font-family: "Anton", sans-serif !important; */
    font-weight: 400;
}
@media screen and (min-width:991px){
   .why-choose-us .why-choose-us-img-wrapper .why-choose-us-img-content{
    width:308.05px;
   } 
}
 .why-choose-us .why-choose-content{
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 24px;
 }
   .why-choose-us .why-choose-content .why-choose-content-icon{
    width: 64px;
    height: 64px;
    min-width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 10px;
    background: var(--third-color);
   }
     .why-choose-us .why-choose-content .why-choose-content-icon .reveal{
        padding-bottom: 0;
        vertical-align: middle;
        margin-bottom: 0;
     }
  .why-choose-us .why-choose-content .why-choose-content-icon img{
    width: 32px;
    height: 32px;
  }
   .why-choose-us .why-choose-content .why-choose-content-title h3{
    font-size: 18px;
    color: #fff;
/*          font-family: "Anton", sans-serif !important; */
         text-transform: uppercase;
         font-weight: 600;
   }
      .why-choose-us .why-choose-content .why-choose-content-para p{
        color: #fff;
/*          font-family: "Montserrat", sans-serif; */

   }


/* Addtional CSS */
.homepage-form input,
.homepage-form textarea,
.homepage-form select{
	border-radius: 10px !important;
}
.wpforms-submit{
	background: var(--primary-color) !important;
	width: 100% !important;
	border-radius: 10px !important;
}
.wpforms-submit:hover{
	background: var(--secondary-color) !important;
}
@media screen and (min-width:991px){
	.custom-banner-title{
		font-size: 40px !important;
	}
}


/*-----------------------------------
   Contact Us page CSS
------------------------------------*/

.contact-page-section .contact-page-section-content{
	padding: 30px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	border-radius: 10px;
	min-height: 180px;
	max-height: 180px;
}
.contact-page-section .contact-page-section-content svg{
	color: var(--primary-color);
	
}
.contact-page-section .contact-page-section-content a{
	color: #000;
	
}
.contact-page-section .contact-page-section-content a:hover{
	color: var(--primary-color);
}
@media screen and (min-width:991px){
	.contact-page-section .contact-page-section-content a{
	font-size: 18px;
}
}

.contact-page-form-section h3{
	color: var(--primary-color);

}
@media screen and (min-width:991px){
	.contact-page-form-section h3{
		font-size: 48px;
	}
}
.contact-page-form-section .contact-page-form input{
	background: #F6F6F6;
	color: #2c4a28;
	height: 45px;
}
.contact-page-form-section .contact-page-form input:focus{
	border: 1px solid  #2c4a28;
	box-shadow: none;
}
.contact-page-form-section .contact-page-form textarea{
	background: #F6F6F6;
	color: #2c4a28;
	height: 100px;
}
.contact-page-form-section .contact-page-form textarea:focus{
	border: 1px solid  #2c4a28;
	box-shadow: none;
}

.contact-page-form-section .contact-page-form select{
	color: #2c4a28;
	  
}
.contact-page-form-section .contact-page-form select:focus{
	border: 1px solid  #2c4a28;
	box-shadow: none;
	background: #F6F6F6;
}
.contact-page-form-section .contact-page-form input::placeholder,
.contact-page-form-section .contact-page-form textarea::placeholder{
	 
}

.contact-page-form-section .contact-page-form .theme-btn{
	background:  #2c4a28;
	color: #fff;
	padding: 12px 30px;
	height: unset !important;
	border: none;
}

.contact-page-form-section .contact-page-form .theme-btn:hover{
	background: #222;
}

/* Testimonials section */
.testimonials-svg{
	width: 60px !important;
	height: 60px !important;
}