@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*-----------------------------------
 Universal Styling
------------------------------------*/
*,
html,
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif !important;
}
:root{
    --primary-color: #2196F3;
    --secondary-color: #04204F;
    --third-color: #0E47A1;
    --bg-black: #111;
}
a{
    text-decoration: none;
}
.title-box h5{
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
/*       font-family: "Montserrat", sans-serif; */
      font-size: 16px;
}
.title-box h2{
   
/*      font-family: "Anton", sans-serif !important; */
     font-weight: 600;
}
@media screen and (min-width:991px){
   .title-box h2{
 font-size: 42px;
   } 
}
.title-box p{
    font-size: 20px;
    color: #6a6a6a;
/*         font-family: "Montserrat", sans-serif; */
}

/* button */
.primary-btn-1{
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 15px 30px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .6s;
    border-radius: 5px;
     font-family: "Montserrat", sans-serif;
    }
    .primary-btn-1:hover{
        color: #fff;
    border: 1px solid var(--third-color);
    }
    .primary-btn-1 span{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--third-color);
    transition: all .6s;
    transform: translate(-50%, -50%);
    z-index: -1;
    }
    .primary-btn-1:hover span{
        width: 225%;
        height: 1000.5px;
    }
   .services,
   .why-choose-us,
   .testimonials,
   .projects {
        background:#EBEBEB;
    }

    /* Additional CSS */
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

 .banner-section-elements{
    position: relative;
}
 .banner-section-elements .banner-line-1{
    position: relative;
    display: inline;
}
 .banner-section-elements .banner-line-1:before{
    content: '';
    position: absolute;
    width:20px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
}
 .banner-section-elements .banner-line-1:after{
    content: '';
    position: absolute;
    width:20px;
    height: 2px;
    transform: translateX(25px);
    bottom: 0px;
    
    background:var(--primary-color);
}

 .banner-section-elements .banner-line-2:before{
    content: '';
    position: absolute;
    width:35px;
    height: 2px;
    left: -15px;
    bottom: -6px;
    background: var(--primary-color);
}
 .banner-section-elements .banner-line-2:after{
    content: '';
    position: absolute;
    width:35px;
    height: 2px;
    transform: translateX(25px);
    bottom: -6px;
    background:var(--primary-color);
}
/*-----------------------------------
Header Styling
------------------------------------*/
header .header-top{
    background: var(--third-color);
}
header .header-top a,
header .header-top p{
    color: #fff;
    transition: all .5s ease-in-out;
}
header .header-top a:hover{
    color: var(--primary-color);
}
header .header-top svg{
    color: var(--primary-color);
}
.header-contacts-phone{
    border-left: 1px solid #FFFFFFAB;
    border-right: 1px solid #FFFFFFAB;
    padding: 0 20px;
}
header .navbar .dropdown-menu .dropdown-item{
    text-transform: capitalize;
}

/* Navbar */
header .navbar{
	--bs-navbar-padding-y: 0 !important;
}
header  .navbar ul li a{
	color: var(--bg-black);
	padding: 0 12px;
	text-transform: uppercase !important;
	font-weight: 600;
}
header  .navbar ul li a:hover{
	color: var(--primary-color);
}
header  .navbar ul .current-menu-item a{
	color: var(--primary-color);
}
header .navbar .navbar-brand figure{
	margin-bottom: 0 !important;
}
header .navbar {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/* Humburger */

.nav-icon {
    width: 25px;
    height: 25px;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background:var(--primary-color) !important;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 8px;
}

.nav-icon span:nth-child(4) {
    top: 16px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

header .navbar button {
    outline: none;
    box-shadow: none !important;
}

header .navbar .navbar-toggler {
    border: none !important;
}

/* end of Humburger */
/*-----------------------------------
Banner Styling
------------------------------------*/
.banner-section .banner-section-elements{
    position: relative;
}
.banner-section .banner-section-elements .banner-line-1{
    position: relative;
    display: inline;
}
.banner-section .banner-section-elements .banner-line-1:before{
    content: '';
    position: absolute;
    width:20px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
}
.banner-section .banner-section-elements .banner-line-1:after{
    content: '';
    position: absolute;
    width:20px;
    height: 2px;
    transform: translateX(25px);
    bottom: 0px;
    
    background:var(--primary-color);
}

.banner-section .banner-section-elements .banner-line-2:before{
    content: '';
    position: absolute;
    width:35px;
    height: 2px;
    left: -15px;
    bottom: -6px;
    background: var(--primary-color);
}
.banner-section .banner-section-elements .banner-line-2:after{
    content: '';
    position: absolute;
    width:35px;
    height: 2px;
    transform: translateX(25px);
    bottom: -6px;
    background:var(--primary-color);
}
.banner-section  .banner-section-content h1{
    color: #fff;
	font-weight: 600;
}
.banner-section  .banner-section-content p{
    color: #fff;
}
/* banner form */
.banner-section .banner-form-wrapper{
    background: #fff;
    padding: 30px;
	border-radius:10px;
}
@media screen and (min-width:991px){
   .banner-section .banner-form-wrapper{
    width: 450px;
   } 
}
.banner-section .banner-form-wrapper input{

    border: 1px solid #ddd;
}
.banner-section .banner-form-wrapper select{
    border: 1px solid #ddd;
}
.banner-section .banner-form-wrapper  textarea{
   border: 1px solid #ddd;
}
.banner-section .banner-form-wrapper input:focus{
    box-shadow: none;
    border: 1px solid var(--primary-color);
}
.banner-section  .banner-form-wrapper .banner-form-btn{
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
	width: 100%;

}
.banner-section  .banner-form-wrapper select:focus{
    box-shadow: none;
    border: 1px solid var(--primary-color);
}
/*-----------------------------------
About  Styling
------------------------------------*/
.about .title-box h2{
    font-family: unset !important;
    font-weight: 700;
}
@media screen and (min-width:991px){
.about .title-box h2{
    font-size: 34px;
}
}
.about .about-content p{
    color: #555;
}
	.about .about-img-wrapper img{
		border-radius: 10px;
	
}
@media screen and (min-width:991px){
	.about .about-img-wrapper img{
		height: 500px !important;
		width: 100% !important;
	
}
}



/*-----------------------------------
Services Styling
------------------------------------*/
 .services .services-content{
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
}

.services .services-content:nth-child(even){
    background: var(--third-color);
}

.services-wrapper .services-content:not(.slick-cloned):nth-child(1),
.services-wrapper .services-content:not(.slick-cloned):nth-child(4) {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}
.services .services-content:nth-child(even) .primary-btn-1:hover span{
    background: var(--secondary-color) !important;
}
.services .services-content .services-title h3 a{
    color: #fff;
/*      font-family: "Anton", sans-serif !important; */
     text-transform: uppercase;
     transition: all .5s ease-in-out;
}
.services .services-content .services-title h3 a:hover{
    color: var(--primary-color);
}
@media screen and (min-width:991px){
    .services .services-content .services-title h3 a{
        font-size: 22px;
    }
}
.services .services-content .services-img{
    position: relative;
    overflow: hidden;
}
.services .services-content .services-img img{
    border-radius: 5px;
    width:100%;
    height: 250px;
    object-fit: cover;
    transition: all .5s ease-in-out;
}
.services .services-content:hover img{
    transform: rotate(5deg)scale(1.1);
    border-radius: 5px !important;
}
.services .services-content .services-content-para p{
    color: #CDCDCD;
/*      font-family: "Montserrat", sans-serif !important; */
}

.services .services-wrapper .slick-dots{
	font-size: 0;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	bottom: unset !important;
}
.services .services-wrapper .slick-dots li button{
	width: 15px;
	height: 15px;
	margin: 0 15px;
	border: 1px solid var(--primary-color) !important;
	border: none;
	border-radius: 50px;
}
.services .services-wrapper .slick-active button{
	background: var(--primary-color);
}





/*-----------------------------------
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; */

   }
/*-----------------------------------
projects Styling
------------------------------------*/
.projects .projects-wrapper .projects-content,
.projects-page .projects-content{
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
.projects .projects-wrapper .projects-content:hover,
.projects-page .projects-content{
    background: var(--third-color);
}
.projects .projects-wrapper .projects-content .projects-img,
.projects-page .project-contents .project-img{
    position: relative;
    overflow: hidden;
}
.projects .projects-wrapper .projects-content:hover img,
.projects-page .project-content:hover img{
    transform: rotate(5deg)scale(1.5);
}
.projects .projects-wrapper .projects-content .projects-img img,
.projects-page .projects-content .projects-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 1s ease-in-out;
}
.projects .projects-wrapper .projects-content .projects-title h3,
.projects-page .projects-content .projects-title h3{
/*       font-family: "Anton", sans-serif; */
      font-weight: 500;
      text-transform: capitalize;
}

.projects .projects-wrapper .projects-content .projects-para p,
.projects-page .projects-content .projects-para p{
    color: #fff;
}
@media screen and (min-width:991px){
    .projects .projects-wrapper .projects-content .projects-title h3,
	.projects-page .projects-content .projects-title h3{
        font-size: 24px !important;
    }
}
.projects .projects-wrapper  .slick-dots{
	font-size: 0;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	bottom: unset !important;
}
.projects .projects-wrapper  .slick-dots li button{
	width: 15px;
	height: 15px;
	margin: 0 15px;
	border: 1px solid var(--primary-color) !important;
	border: none;
	border-radius: 50px;
}
.projects .projects-wrapper .slick-active button{
	background: var(--primary-color);
}
/*-----------------------------------
Testimonials Styling
------------------------------------*/
.testimonials .testimonials-wrapper .testimonials-content{
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-para p{
    color: #cdcdcd;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile img{
    width: 41px;
    height: 41px;
    min-height: 41px;
    min-width:41px;
    object-fit:cover;
    border-radius: 50px;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile{
    position: relative;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile svg{
    position: absolute;
    right: 5px;
    bottom: 40px;
    color: #fff;
    width: 44px;
    height: 44px;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile h3{
/*       font-family: "Anton", sans-serif !important; */
    color: var(--primary-color);
}
.testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile p{
    color: #cdcdcd;
}
@media screen and (min-width:991px){
    .testimonials .testimonials-wrapper .testimonials-content .testimonials-content-profile h3{
        font-size: 24px;
    }
}
.testimonials .testimonials-wrapper .slick-dots{
	font-size: 0;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	bottom: unset !important;
}
.testimonials .testimonials-wrapper .slick-dots li button{
	width: 15px;
	height: 15px;
	margin: 0 15px;
	border: 1px solid var(--primary-color) !important;
	border: none;
	border-radius: 50px;
}
.testimonials .testimonials-wrapper .slick-active button{
	background: var(--primary-color);
}
/*-----------------------------------
Footer Styling
------------------------------------*/
footer{
    background: var(--bg-black);
}
footer .footer-top .container{
     border-bottom: 1px solid #303030;
}
footer .footer-top .footer-para p{
    color: #FFFFFFAB;
}
footer .footer-socials ul{
    list-style: none;
    padding-left: 0;
    display: flex;
    
}
footer .footer-socials ul li a{
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #292929;
    border-radius: 50px;
    display: block;
    transition: all .5s ease-in-out;
    margin-right: 20px;
}
footer .footer-socials ul li a svg{
    width: 16px;
    height: 16px;
}
footer .footer-socials ul li a:hover{
    background: var(--primary-color);
    color: #fff;
}
footer .footer-top h3{
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 40px;
}
footer .footer-top h3:before{
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    bottom: -35%;

}
footer .footer-top h3:after{
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -65%;
    left: 0;

}
@media screen and (min-width:991px){
   footer .footer-top h3{
    font-size: 22px;
   } 
}
footer .footer-top .footer-links{
    line-height: 2;
    padding-left: 0;
    list-style-type: none;
    text-transform: capitalize;
    

}
footer .footer-top .footer-links li a{
color: #FFFFFFAB;
font-size: 18px;
transition: all .5s ease-in-out;
}
footer .footer-top .footer-links li a:hover{
    color: var(--primary-color);
}
footer .footer-top .footer-links li a:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Ccircle cx='12.1' cy='12.1' r='1' fill='none' stroke='%23FFFFFFAB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    position: relative;
    top: 8px;
}
footer .footer-top .footer-contacts{
    border-bottom: 1px solid #303030;
    
}
footer .footer-top .footer-contacts svg{
    width: 40px;
    height: 40px;
    color: #fff !important;
}
footer .footer-top .footer-contacts h4{
    color: #FFFFFFAB;
    font-size: 18px;
}
footer .footer-top .footer-contacts a{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: all .5s ease-in-out;
}

footer .footer-top .footer-contacts a:hover{
    color: var(--primary-color);
}
footer .footer-top .footer-hightlights{
    border-bottom: unset !important;
}
footer .footer-bottom p,
footer .footer-bottom p a{
    color:#fff;
    text-transform: capitalize;
}
footer .footer-bottom p a:hover{
    color: var(--primary-color);
}


/*-----------------------------------
    Page Banner CSS
------------------------------------*/
.page-banner{
/* 	height: 50vh !important; */
/* box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px; */
/* 	margin: 10px 0; */
}
.page-banner h1{
    color: #111;
	display: none;
}
.page-banner .breadcrumb{
	margin-bottom: 0 !important;
	padding: 15px 0;
}
@media screen and (min-width:991px){
    .page-banner h1{
        font-size: 48px;
    }
}
.page-banner .breadcrumb li a {
    color: var(--primary-color);
}
.page-banner .breadcrumb li{
    color: #111;
}


/*-----------------------------------
        Blog Section CSS
------------------------------------*/

.blog .blog-content .blog-img img{
	width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
}
.blog .blog-content .blog-lower-content{
    background-color: var(--secondary-color);
    padding: 0 23px 25px;
    margin: 0 11px;
    box-shadow: 0px 0px 62px 0px rgba(27, 31, 45, 0.09);
    position: relative;
    top: -30px;
    border-radius: 6px;
  
}
.blog .blog-content .blog-lower-content .blog-category{
    font-size: 13px;
   padding: 3px 21px;
   position: relative;
   font-weight: 600;
   background: #292f43;
   width: max-content;
   color: #fff;
   border-radius: 12px;
   text-transform: capitalize;
   transform: translateY(-12px);
   z-index: 10 !important;
}
.blog .blog-content .blog-lower-content:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--primary-color);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    -ms-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    border-radius: 6px;
}
.blog .blog-content:hover .blog-lower-content:before{
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
}
.blog .blog-content .blog-lower-content .blog-post-meta{
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 99999 !important;
}
.blog .blog-content .blog-lower-content .blog-post-meta li a{
    color: var(--primary-color);
    font-size: 15px;
   font-family: "Oswald", sans-serif;
}
.blog .blog-content .blog-lower-content:hover a{
	color: #fff !important;
}
.blog .blog-content .blog-lower-content h4{
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog .blog-content .blog-lower-content h4:before{
    content: '';
    position: absolute;
    background: url('../images/border-shape-2.png') repeat-x center;
   height: 6px;
   width: 100%;
   left: 0;
   bottom: 0;
}
.blog .blog-content .blog-lower-content h4 a{
    color: #fff;
     font-family: "Oswald", sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 99999;
}
@media screen and (min-width:991px){
    .blog .blog-content .blog-lower-content h4 a{
        font-size: 20px;
    }
}
.blog .blog-content:hover h4 > a{
    color: #fff;
}
.blog .blog-content .read-more-link{
    color: var(--primary-color);
    padding-top: 30px;
    text-transform: capitalize;
    position: relative;
    z-index: 999 Im !important;
    transition: all .5s ease-in-out;
}
.blog .blog-content .read-more-link svg{
opacity: 0;
transition: all .5s ease-in-out;

}
.blog .blog-content .read-more-link:hover svg{
    opacity: 1;
   
}
.blog .blog-content .read-more-link:hover{
    margin-left: 20px;
}

/*================================
 <-- 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);
	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;
}
/*-----------------------------------
      contact section style
------------------------------------*/
.services-contact-section{
    background: #f3f3f3;
}
.services-contact-section h3{
	 
}
.services-contact-section .contact-section-content p{
    font-size: 13px;
    line-height: 23px;
    color: #7F7F7F;
}
.services-contact-section .contact-section-form{
    background: var(--primary-color);
    position: relative;
/*     transform: translateY(-29px); */
    /* margin-bottom: -50px; */
	border-radius: 10px;
}
.services-contact-section .contact-section-form:before{
    top: 0;
    left: -25px;
    width: 25.63px;
    height: 29px;
    position: absolute;
    content: "";
    /* background: var(--primary-color); */
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    transition: all .5s ease-in-out;
    z-index: 1;
}

.services-contact-section .contact-section-form input,
.services-contact-section .contact-section-form select{
    height: 40px;
    border-radius: 3px;
    color: var(--primary-color);
}

.services-contact-section .contact-section-form input::placeholder{
    color: #9E9E9E;
    font-size: 16px;
	
}
.services-contact-section .contact-section-form select{
    color: #9E9E9E;

    font-size: 13px;
}
.services-contact-section .contact-section-form input:focus{
    box-shadow: none;
}
.services-contact-section .contact-section-form .theme-btn {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    color: var(--primary-color);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 34px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    font-size: 15px;
    border-radius: 4px;

  }
  @media screen and (min-width:991px){
  .sticky2 {
    position: fixed !important;
	background: #fff;
    width: 400px;
    top: 5%;
    z-index: 10;
   transition: all .5s ease-in-out;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
   padding: 10px;
	  left: 5%;
  }
  }
  #sidebar-service.sticky2{
   opacity: 1;
  
  }
#sidebar-service {
  position: sticky;
  top: 100px;         /* adjust for your header height */
  transition: top 0.3s ease; /* smooth feel when snapping */
}






/*-----------------------------------
      Contact Us Page Section
------------------------------------*/
.contact-page-section .contact-section-content{
	padding: 7em 3em 3em 3em;
}
.contact-page-section .contact-section-content .section-sub-title{
	color:var(--secondary-color);
}
.contact-page-section .contact-section-content .section-title{
	color: #fff;
	line-height: 43px;
}
.contact-page-section .contact-section-para{
	color: #f0f0f0;
	
}
.contact-page-section .contact-section-content-text{
	border-bottom: 1px solid #FFFFFF25;
}
.contact-page-section .contact-section-info .contact-section-icon{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--primary-color);
	border-radius: 4px;
	
}
.contact-page-section .contact-section-info .contact-section-icon svg{
	width: 25px;
	height: 25px;
	color: #fff;
}
.contact-page-section .contact-section-info .contact-section-details h3{
	color: #fff;
	 font-family: "Alumni Sans", sans-serif;
	font-weight: 700;
}
.contact-page-section .contact-section-info .contact-section-details a{
	color: #d1d1d1;
}
@media screen and (min-width:991px){
	.contact-page-section .contact-section-info .contact-section-details h3{
		font-size: 24px;
	}
	.contact-page-section .contact-section-info .contact-section-details a{
	width: 280px;
		display: block;
}
}

.contact-page-section .contact-section-form-details h3{
	color: var(--primary-color);
	font-weight: 700;
	line-height: 43px;
	
}
.contact-page-section .contact-section-form-details p{
	color: #666;
}
@media screen and (min-width: 991px){
	.contact-page-section .contact-section-form-details h3{
		font-size: 45px;
	}
}
.contact-page-section .contact-section-form label{
	color: var(--secondary-color);
	font-weight: 500;
}
.contact-page-section .contact-section-form input{
	background: #f0f0f0;
	border: none;
	height: 45.19px;
	border-radius: 4px;
}
.contact-page-section .contact-section-form input:focus{
	box-shadow: none;
	border: 1px solid #f0f0f0;
	background: transparent;
}
.contact-page-section .contact-section-form textarea{
	background: #f0f0f0;
	border: none;
	height: 150px;
	border-radius: 4px;
}
.contact-page-section .contact-section-form textarea:focus{
	box-shadow: none;
	border: 1px solid #f0f0f0;
	background: transparent;
}
.contact-page-section .contact-section-form input::placeholder{
	color: #666;
}
.contact-page-section .contact-section-form .theme-btn{
	background: var(--primary-color) !important;
	font-size: 14px;
	height: unset;
	padding: 10px 20px;
	color: #fff;
	
}
.contact-page-section .contact-section-form .theme-btn:hover{
	background: var(--primary-color) !important;
}
.contact-page-section .contact-section-form .primary-btn-1:hover{
		background: var(--primary-color) !important;
}

@media screen and (min-width:991px){
	.contact-page-section .contact-section-form-wrapper{
	padding: 3em;
}
}

@media screen and (min-width:991px){
	#mega-menu-wrap-main-menu{
		width: 100% !important;
	}
}

.wpforms-submit{
	width: 100% !important;
}

/* Additonal for Mobile view */

  .navbar  .menu-toggle-btn {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: #333;
    }
    /* ============================
       Fullscreen Sidebar (Mobile)
    ============================ */
    .fullscreen-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.85));
      z-index: 1200;
      transition: left 0.4s ease;
      display: flex;
      flex-direction: column;
      padding: 80px 20px 20px;
    }

    .fullscreen-sidebar.active {
      left: 0;
    }

    .fullscreen-sidebar a {
      padding: 15px 0;
      font-size: 1.25rem;
      font-weight: 500;
      text-decoration: none;
      color: #333;
      border-bottom: 1px solid #eee;
    }

    .fullscreen-sidebar a:hover {
      background-color: #f9f9f9;
    }

   .navbar  .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      cursor: pointer;
      color: #333;
    }
.fullscreen-sidebar ul {
	list-style: none;
	line-height: 2.8;
}

/* additional for sub menu services in navbar */
/* ============================
   Submenu Sliding from Right (Mobile)
============================ */

.fullscreen-sidebar ul li {
  position: relative;
}

/* Parent menu links */
.fullscreen-sidebar ul li.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Submenu container - hidden off screen by default */
.fullscreen-sidebar ul.sub-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(255,255,255,0.95),rgba(255,255,255,0.95));
  display: flex;
  flex-direction: column;
  padding: 80px 25px;
  transition: right 0.4s ease;
  z-index: 1300;
  overflow-y: auto;
}

/* Active state - slides in */
.fullscreen-sidebar ul.sub-menu.active {
  right: 0;
}

/* Submenu links */
.fullscreen-sidebar ul.sub-menu a {
  font-size: 1.1rem;
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid #eee;
}

.fullscreen-sidebar ul.sub-menu a:hover {
  color: #000;
}

/* Arrow icon */
.fullscreen-sidebar .submenu-toggle {
  font-size: 18px;
  cursor: pointer;
  padding-left: 10px;
  color: #555;
  transition: transform 0.3s ease;
}

.fullscreen-sidebar .submenu-toggle.rotate {
  transform: rotate(90deg);
}

/* Back button inside submenu */
.fullscreen-sidebar .submenu-back {
  font-size: 1rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 20px;
  cursor: pointer;
  display: inline-block;
}
