/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Awning - Roofing Services HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Services css
08. Our Project css
09. Why Choose Us css
10. How It Work css
11. Intro Video css
12. Our Testimonial css
13. Our Features css
14. Our Blog css
15. Footer css
16. About Us Page css
17. Services Page css
18. Service Single css
19. Projects Page css
20. Project Single css
21. Blog Archive css
22. Blog Single css
23. Team Page css
24. Team Single css
25. Pricing Page css
26. Testimonial Page css
27. Image Gallery css
28. Video Gallery css
29. FAQs Page css
30. Contact Us Page css
31. 404 Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #000;
	--secondary-color		: #FFFFFFCC;
	--text-color			: #000000;
	--accent-color			: #FF6600;
	--white-color			: #FFFFFF;
	--divider-color			: #EAEAEA;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Inter", sans-serif;
	--accent-font			: "Onest", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.8em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: #000;
}
h2{
	margin-bottom:20px;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container, 
.container-fluid,
.container-lg,
.container-md, 
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}   

.image-anime{
   border-radius: 10px;
    box-shadow: #FF9800 0px 4px 25px;
    border: 1px solid #FF9800;
    position: relative;
    overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.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;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

/*.row > *{*/
/*	padding-right: 15px;*/
/*	padding-left: 15px;*/
/*}*/

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: #000;
	color: var(--white-color);
	padding: 17px 16px 17px 16px;
	margin-right: 50px;
	border: none;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	background-color: orange;
	background-image: url('../images/arrow-btn.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: #000;
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.btn-highlighted{
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	padding: 16px 16px 16px 16px;
}

.btn-default.btn-highlighted::before{
	top: -1px;
	background-image: url('../images/arrow-highlighted-btn-.svg');
	background-size: 16px auto;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	text-align: center;
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title p{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	margin-top: 20px;
}

.section-row .section-title.dark-section p{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	margin-top: 20px;
	color: var(--secondary-color);
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 40px;
}

.section-title-content p{
	margin: 0;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
    font-weight: 500;
	line-height: 1.2em;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c60127;
	padding-left: 25px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/home-button.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.section-title h1{
	font-size: 56px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	margin-bottom: 0;
	cursor: none;
} 

.section-title.dark-section h1,
.section-title.dark-section h2{
	color: #FFA100;
}

.section-title p{
	    color: black;
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section p{
	color: var(--secondary-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	border-bottom: 1px solid var(--dark-divider-color);
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
width: 100%;
    position: fixed !important;
	top: 0;
	z-index: 100;
}
                                         
header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: #000;
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	background: #fff;
	padding: 10px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1; 
	text-align: end;
	/*margin-left: 40px;*/
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;                                                             
	display: inline-flex;
}  
                                                       
.main-menu ul li{
	margin: 0 -1px;      
	position: relative;   
}  
                
.main-menu ul li a{
   font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 10px !important;
    color: #004562;
    text-transform: uppercase;   
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #c60127;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;  
	padding: 0;
	margin: 0;
	list-style: none;
	width: 300px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #004562;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 6px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #fff;
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}
  
.header-btn{
	display: flex;
	align-items: center;
}  

.header-contact-btn a{
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	display: flex;
	align-items: center;
}

.header-contact-btn a img{
	max-width: 24px;
	margin-right: 10px;
}

.header-btn .offcanvas-backdrop{
	z-index: 100;
}

.header-btn .btn-popup{
	display: flex;
	flex-wrap: wrap;
}

.header-btn .btn-popup{
	background: var(--dark-divider-color);
	box-shadow: 5px 18px 20.1px 0px #00000026;
	border-radius: 50%;
	border: none;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 40px;
	transition: all 0.3s ease-in-out;
}

.header-btn .btn-popup:hover{
	background: #000;
}

.header-btn .btn-popup img{
	position: relative;
	max-width: 14px;
	z-index: 1;
}

body:has(:not(.offcanvas)){
	padding-right: initial !important;
}

body:has(.offcanvas){
	padding-right: 0 !important;
}
  
.header-btn .offcanvas{
	position: fixed;
	top: 0;
	bottom: 0;
	left: auto;
	right: -15px;
	background: black !important;
	border-radius: 0;
	opacity: 100%;
	width: 100% !important;
	height: 100% !important;
	max-width: 375px;
	border: none;
	padding: 150px 37px 150px 30px;
	transform: translateX(100%) !important;
	z-index: 101;
	transition: all 0.3s ease-in-out !important;
} 

.offcanvas.show:not(.hiding),
.offcanvas.showing{
    transform: translateX(0) !important;
}

.navbar-expand-lg .offcanvas .offcanvas-body{
	display: block;
}

.header-btn .offcanvas .btn-close{
	position: absolute;
	top: 30px;
	right: 37px;
	background-color: transparent;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: brightness(0) invert(1);
	opacity: 100%;
	box-shadow: none;
	padding: 0;
}

.header-contact-box{
	text-align: center;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.header-contact-box .icon-box{
	margin-bottom: 20px;
}

.header-contact-box .icon-box img{
	max-width: 40px;
}

.header-contact-box-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: #c60127;
	margin-bottom: 10px;
}

.header-contact-box-content p{
	color: var(--secondary-color);
	margin: 0;
}

.header-social-links{
	text-align: center;
	margin-right: 0;
}

.header-social-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.header-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-social-links ul li a{
	background-color: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li a:hover{
	border-color: var(--white-color);
}

.header-social-links ul li a i{
	font-size: 16px;
	color: #c60127;
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li a:hover i{
	color: var(--white-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: #000;
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: #000;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/
  
.hero{
	position: relative; 
	/*background: url('../images/VIDEO-AAHS (1).jpg');*/
	background-repeat: no-repeat;
	background-position: center center; 
	background-size: cover;
	padding: 250px 0 150px;   
	margin-top: -98px;
}
.hero.parallaxie.d-block.d-md-none {
    opacity: 0.8; 
  display: block; 
  width: 100%;  
  height: 100vh; /* full screen height */
  background: url('../images/phone.jpg') no-repeat center center;
  background-size: cover !important;
  background-position: center center !important;
}
/* Hide desktop section on mobile */ 
.hero.parallaxie.d-none.d-md-block {  
  display: none;
}  

/* Desktop view (768px and up) */
@media (min-width: 768px) {                       
  .hero.parallaxie.d-block.d-md-none {
    display: none; 
  }

  .hero.parallaxie.d-none.d-md-block {
      background-position: center center !important;
    display: block;
    background: url('../images/VIDEO-AAHS-(1)-banner (1).jpg'); no-repeat center center;
   background-size: cover;
  /*height: 100vh;*/
  }
}
.hero::before{
	content: '';
    inset: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgb(30 30 30 / 78%) 0.02%, #004562 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
    width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 305px 0 205px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
}

.hero-slide .hero-content .hero-btn{
	margin-bottom: 0;
}

.hero-content{
	position: relative;
	width: 100%;
	max-width: 800px;
	z-index: 1;
}

.hero-content .section-title{
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title p{
	color: white;
	max-width: 600px;
}

.hero-btn{
	margin-bottom: 50px;
}

.hero-btn .btn-default{
	background: var(--white-color);
	color: #000;
}

.hero-btn .btn-default.btn-highlighted{
	background: transparent;
	color: var(--white-color);
	margin-left: 40px;
}

.hero-content-body{
	display: flex;
	align-items: center;
}

.satisfy-client-images{
	margin-right: 20px;
}

.satisfy-client-img{
	display: inline-block;
	border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
}

.satisfy-client-img:first-child{
    margin: 0;
}

.satisfy-client-img figure{
	display: block;
}

.satisfy-client-img img{
    max-width: 50px;
	border-radius: 50%;
}

.hero-counter-box h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.hero-counter-box p{
	font-family: var(--accent-font);
	color: var(--secondary-color);
	margin: 0;
}

.hero-counter-box p i{
	color: #c60127;
}

.hero-counter-box p span{
	font-weight: 600;
	color: var(--white-color);
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	background-color: #000;
	padding: 20px 0;
}

.scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	padding: 12px 0;
	animation: scroll 60s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 40px;
	font-weight: 700;
	color: var(--white-color);
	vertical-align: middle;
}

.scrolling-content span img{
	width: 100%;
	max-width: 24px;
	margin-right: 40px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***    	06. About Us css      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	background: url('../images/about-bg-dot-shape-1.svg') no-repeat;
	background-position: top 45px right;
	background-size: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
	padding-right: 30px;
	margin-right: 20px;
}

.about-us-images::before{
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url('../images/about-bg-dot-shape-2.svg') no-repeat;
	background-position: bottom center;
	background-size: auto;
	width: 80px;
	height: 60px;
	z-index: 0;
}

.about-image-box-1,
.about-image-box-2{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-image-box-2{
	margin-top: 75px;
}

.about-img-1,
.about-img-2,
.about-img-3,
.about-img-4{
	width: 100%;
}

.about-img-1 figure,
.about-img-2 figure,
.about-img-3 figure,
.about-img-4 figure{
	display: block;
	overflow: hidden;
}

.about-img-1 img{
	aspect-ratio: 1 / 1.41;
	object-fit: cover;
}

.about-img-2 img{
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.about-img-3 img{
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
}

.about-img-4 img{
	aspect-ratio: 1 / 1.41;
	object-fit: cover;
}

.about-us-content-body{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-us-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.about-us-item:last-child{
	margin-bottom: 0;
}

.about-us-item .icon-box{
	background-color: #000;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
}

.about-us-item:nth-child(even) .icon-box{
	background-color: #000;
}

.about-us-item .icon-box img{
	max-width: 50px;
}

.about-item-content{
	width: calc(100% - 110px);
}

.about-item-content h3{
	color: #FFA100;
	width: 100%;
	max-width: 400px;
	font-size: 20px;
}

.about-us-content-list{
	margin-bottom: 30px;
}

.about-us-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.about-us-content-list ul li{
	position: relative;
	width: calc(50% - 10px);
	color: #000;
	padding-left: 25px;
}

.about-us-content-list ul li::before{
	content: '\f00c';
	position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 18px;
	top: 0;
	left: 0;
	color: #c60127;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	position: relative;
	background: url('../images/service-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-services::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 0.8) 1.71%, #000 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-services .container{
	position: relative;
	z-index: 1;
}

.our-service-nav{
	margin-bottom: 60px;
}

.our-service-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 15px 0;
    padding: 0;
    margin: 0;
	border-bottom: 3px solid var(--white-color);
	padding-bottom: 30px;
}

.our-service-nav ul li{
    display: inline-block;
	padding-right: 100px;
}

.our-service-nav ul li:last-child{
	padding-right: 0;
}

.our-service-nav ul li .nav-link{
	position: relative;
    background: transparent;
	border: none;
    color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.our-service-nav ul li .nav-link.active,
.our-service-nav ul li .nav-link:hover{
    background: transparent;
    color: #c60127;
}

.our-service-nav ul li .nav-link::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -32px;
    left: -35px;
    right: 0;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
    width: 100%;
    height: 3px;
	opacity: 0;
	visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.our-service-nav ul li .nav-link.active:before,
.our-service-nav ul li .nav-link:hover:before{
    opacity: 1;
	visibility: visible;
	width: 146%;
}

.our-service-nav ul li:last-child .nav-link:before{
	width: 132%;
}

.our-service-nav ul li .nav-link img{
	max-width: 30px;
	margin-right: 10px;
}

.service-tab-content-header{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-tab-content-header p{
	color: #ffffff;
	margin: 0;
}

.service-tab-content-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.service-tab-content-list ul li{
	position: relative;
	width: 100%;
	color: var(--white-color);
	padding-left: 25px;
}

.service-tab-content-list ul li::before{
	content: '\f00c';
	position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 18px;
	top: 0;
	left: 0;
	color: #c60127;
}

.service-tab-image{
	position: relative;
	margin: 30px 30px 0 50px;
}

.service-tab-image::before{
	content: '';
	position: absolute;
	display: block;
	top: -30px;
	bottom: 0;
	left: 30px;
	right: 0;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.service-tab-image figure{
     border-radius: 10px;
    box-shadow: 0 4px 12px #c60127;
    border: 1px solid #c60127;
  
	display: block;
}

.service-tab-image img{
	position: relative;
	width: 100%;
	z-index: 1;
}

/************************************/
/***     08. Our Project css      ***/
/************************************/

.our-project{
	padding: 100px 0;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: #000;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:before{
    content: '';
    position: absolute;
    top: 50%;
	bottom: 0;
    right: -30px;
	transform: translateY(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--text-color);
}

.our-Project-nav ul li:last-child a:before{
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: #c60127;
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
	overflow: hidden;
}

.project-image{
	position: relative;
}

.project-image::before{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.39%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-image figure{
    border-radius: 10px;
    box-shadow: #FF9800 0px 4px 25px;
    border: 2px solid #FF9800;
	display: block;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-tag{
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 2;
}

.project-tag a{
	position: relative;
	display: block;
	backdrop-filter: blur(80px);
	-webkit-backdrop-filter: blur(80px);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 6px 15px;
}

.project-tag  a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
	opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-content{
	position: absolute;
	bottom: 25px;
	left: 25px;
	right: 25px;
	text-align: left;
	z-index: 2;
}

.project-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.project-content h3 a{
	color: inherit;
}

.project-quote-text{
	text-align: center;
	margin-top: 20px;
}

.project-quote-text p{
	font-weight: 500;
	margin: 0;
}

.project-quote-text p span{
	background: linear-gradient(135deg, #150305, #004562, #9e051c);
	font-family: var(--accent-font);
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	padding: 2px 10px;
}

.project-quote-text p a{
	color: #c60127;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.project-quote-text p:hover a{
	color: #000;
}

/************************************/
/***     09. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	position: relative;
	background-color: #000;	
	overflow: hidden;
}

.why-choose-us .container-fluid{
	padding: 0;
}

.why-choose-us::before{
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(89.96deg, rgba(0, 0, 0, 0) 62.89%, #000 99.96%), url('../images/why-choose-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 20%;
	width: 40%;
	height: 100%;
	z-index: 0;
}

.why-choose-content{
	position: relative;
	padding-left: calc((100vw - 1300px) / 2);
	margin: 100px 0px 100px 0;
	z-index: 1;
}

.why-choose-item{
	border-bottom: 1px solid var(--dark-divider-color);
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.why-choose-item .icon-box{
	margin-right: 30px;
}

.why-choose-item .icon-box img{
	max-width: 50px;
}

.why-choose-item-content{
	width: calc(100% - 80px);
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-item-content p{
	color: #ffffff;
	margin: 0;
}

.why-choose-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.why-choose-list ul li{
	display: inline-block;
	width: calc(50% - 10px);
	font-size: 18px;
	color: var(--white-color);
}

.why-choose-list ul li img{
	max-width: 30px;
	margin-right: 10px;
}

.why-choose-images{
	position: relative;
	z-index: 1;
}

.why-choose-images img,
.why-choose-images figure,
.why-choose-images{
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: left center;
}

/************************************/
/***     10. How It Work css      ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.how-work-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.how-work-img{
	width: calc(50% - 15px);
}

.how-work-img figure{
	display: block;
}

.how-work-img img{
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
}

.how-work-icon-box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.how-work-icon-box figure{
	background-color: #ffffff;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	width: 106px;
	height: 106px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-work-icon-box figure img{
	max-width: 175px;
}

.how-work-step-box{
	margin-left: 30px;
}

.how-work-step-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.how-work-step-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.how-work-step-no{
	margin-right: 15px;
}

.how-work-step-no h3{
	font-size: 20px;
	color: #c60127;
}

.how-work-step-content h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.how-work-step-content p{
	color: black;
	margin: 0;
}

.how-work-benefit-box{
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 120px;
}

.work-benefit-item{
	width: calc(25% - 90px);
	display: flex;
	align-items: center;
}

.work-benefit-item .icon-box{
	margin-right: 15px;
}

.work-benefit-item .icon-box img{
	max-width: 50px;
}

.work-benefits-item-content{
	width: calc(100% - 65px);
}

.work-benefits-item-content h3{
	color: #c60127;
	font-size: 20px;
}

/************************************/
/***     11. Intro Video css      ***/
/************************************/

.intro-video{
    position: relative;
    padding: 100px 0;
    background: url('../images/ac.webp') no-repeat;
	background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.intro-video:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 40%;
    width: 100%;
    height: 100%;
}

.intro-video .container{
	position: relative;
	z-index: 1;
}

.intro-video-box{
    margin-bottom: 150px;
}

.intro-video-box .video-play-button{
    text-align: center;
    margin-bottom: 30px;    
}

.intro-video-box .video-play-button a{
	position: relative;
	display: block;
	max-width: 150px;
	margin: 0 auto;
	cursor: none;
}

.intro-video-box .video-play-button a::before{
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 35px;
	color: #c60127;
	z-index: 1;
}

.intro-video-box .video-play-button img{
    max-width: 150px;
	animation: videorotate 20s infinite linear;
}

@keyframes videorotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.intro-video-box .section-title{
    max-width: 610px;
    margin: 0 auto;
    text-align: center;
}

.intro-video-box .section-title h2{
    color: var(--white-color);
}

.intro-video-list{
	border-top: 1px solid var(--dark-divider-color);
    padding-top: 50px;
}

.intro-video-list ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 60px;
    list-style: none;
}

.intro-video-list ul li{
    position: relative;
    color: var(--white-color);
    padding-left: 25px;
}

.intro-video-list ul li:after{
    content: '\f00c';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 18px;
    top: 0;
    left: 0;
    color: #c60127;
}

/************************************/
/***   12. Our Testimonial css    ***/
/************************************/

.our-testimonial{
	padding: 100px 0;
}

.our-testimonial .container{
	position: relative;
}

.our-testimonial-image{
	margin-right: 30px;
	height: 100%;
}

.our-testimonial-image figure{
	display: block;
	height: 100%;
}

.our-testimonial-image img{
	width: 100%;
	aspect-ratio:  1 / 1.17;
	object-fit: cover;
}

.our-testimonial-content{
	height: 100%;
	padding-bottom: 355px;
}

.testimonial-counter{
	display: flex;
	align-items: center;
	padding-bottom: 40px;
	border-bottom: 4px solid #c60127;
}

.testimonial-counter-no{
	width: 100px;
}

.testimonial-counter-no h2{
	font-size: 50px;
	color: #c60127;
}

.testimonial-counter-content{
	width: calc(100% - 100px);
}

.testimonial-counter-content .testimonial-rating{
	margin-bottom: 5px;
}

.testimonial-counter-content .testimonial-rating i{
	color: #c60127;
}

.testimonial-counter-content p{
	margin: 0;
}  

.testimonial-slider{
    border-radius: 10px;
    box-shadow: 0 4px 12px #c60127;
    border: 1px solid #c60127;
    
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	width: 100%;
	max-width: 930px;
	padding: 40px 70px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6em;
	color: #000;
	margin: 0;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 65px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p{
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: #000;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 20px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '\f054';
	font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 16px;
	color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	color: #000;
}

/************************************/
/***     13. Our Features css     ***/
/************************************/

.our-features{
	position: relative;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) -72.46%, rgba(18, 18, 18, 0.94) 2.57%, #000 106.15%), url('../images/features-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.contact-now-circle{
	position: absolute;
	bottom: 0;
	right: 8%;
	transform: translateY(50%);
}

.contact-now-circle img{
    max-width: 176px;
	animation: contactrotate 20s infinite linear;
}

@keyframes contactrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.our-features-images{
	margin-right: 20px;
}

.features-img-1 figure{
	display: block;
}

.features-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 2.05;
	object-fit: cover;
}

.features-img-2 figure{
	display: block;
}

.features-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.42;
	object-fit: cover;
}

.features-counter{
	text-align: center;
	margin-bottom: 20px;
}

.features-counter h2{
	font-size: 150px;
	line-height: 1em;
	color: #c60127;
}

.features-counter p{
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white-color);
	margin: 0;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white-color);
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 16px;
    color: #c60127;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f054';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 0;    
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
    color: #c60127;
}

.faq-accordion .accordion-item .accordion-body{
    padding-right: 35px;
}

.faq-accordion .accordion-item:last-child .accordion-body{
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 20px;
}

.post-featured-image a{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.84;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-meta{
    margin-bottom: 20px;
}

.post-item-meta ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-item-meta ul li{
    position: relative;
    text-transform: capitalize;
    color: var(--text-color);
    display: inline-block;
    margin-right: 24px;
}

.post-item-meta ul li:last-child{
    margin-right: 0;
}

.post-item-meta ul li:before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(18px, -50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
}

.post-item-meta ul li:last-child::before{
    display: none;
}

.post-item-meta ul li a{
    color: #c60127;
}

.post-item-meta ul li span{
    color: #c60127;
}

.post-item-content h2{
    font-size: 20px
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/***        15. Footer css        ***/
/************************************/

.main-footer{
	position: relative;
	background: linear-gradient(135deg, #150305, #004562b8, #9e051c6b);
	padding: 100px 0 50px;
}

.main-footer::before{
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	background: url('../images/footer-bg.png') no-repeat;
	background-position: left bottom;
	background-size: auto;
	opacity: 5%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.about-footer{
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	z-index: 1;
}

.footer-links{
	/* position: relative;
	height: 100%; */
	padding-right: 15px;
	margin-right: 15px;
	z-index: 1;
}

.main-footer .col-lg-4:last-child .footer-links{
	margin-right: 0;
	padding-right: 0;
}

.footer-links::before{
	content: '';
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid var(--dark-divider-color);
	height: 100%;
}

.main-footer .col-lg-4:last-child .footer-links:before{
	display: none;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 40px;
}

.footer-links p{
	color: var(--secondary-color);
	margin-bottom: 30px;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-contact-item .icon-box{
	margin-right: 20px;
}

.footer-contact-item .icon-box img{
	max-width: 30px;
}

.footer-contact-content{
	width: calc(100% - 50px);
}

.footer-contact-content p{
	color: var(--secondary-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--white-color);
}

.footer-social-links ul li a i{
	color: #FF6600;
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--white-color);
}

.footer-newsletter-form .form-group{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-newsletter-form h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 40px;
}

.footer-newsletter-form .form-group .form-control{
	width: 100%;
	padding: 8px 20px 8px 0;
	border: none;
	border-bottom: 1px solid var(--dark-divider-color);
	background: transparent;
	color: var(--secondary-color);
	border-radius: 0;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--secondary-color);
	text-transform: capitalize;
}

.footer-newsletter-form .btn-default{
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
	padding: 12px 16px 13px 16px;
	margin-right: 0;
}

.footer-newsletter-form .btn-default:hover{
	color: #000;
}

.footer-newsletter-form .btn-default::before{
	display: none;
}

.footer-newsletter-form .btn-default:hover:after{
	background: var(--white-color);
}

.footer-copyright{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding: 50px 0 0;
	margin-top: 50px;
	z-index: 1;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.footer-menu ul li{
	display: inline-block;
	margin-right: 50px;
}

.footer-menu ul li:last-child{
	margin-right: 0;
}

.footer-menu ul li a{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a{
	color: #c60127;
}

.footer-copyright-text{
	text-align: end;
}

.footer-copyright-text p{
	color: var(--secondary-color);
	margin: 0;
}

/************************************/
/***     16. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	background: url('../images/banner (2).jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 170px;
	margin-top: -100px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 80.31%, rgba(30, 30, 30, 0.6) 100.45%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 60px;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: #c60127;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
	position: relative;
    background-image: url("../images/our-approach-bg.jpg");
    background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
}

.our-approach::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) -73.04%, rgba(22, 22, 22, 1) 48.71%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-approach .container-fluid{
	position: relative;
    padding: 0;
	z-index: 1;
}

.our-approach-content{
    position: relative;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    padding: 100px;
}

.our-approach-content .section-title{
	width: 100%;
    max-width: 600px;
}

.our-approach-content .section-title h3{
    color: #c60127;
}

.our-approach-item{
	width: 100%;
    display: flex;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-approach-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.our-approach-item .icon-box{
    margin-right: 30px;
}

.our-approach-item .icon-box img{
    max-width: 50px;
}

.approach-item-content{
    width: calc(100% - 80px);
}

.approach-item-content h3{
	font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}

.approach-item-content p{
    margin: 0;
}

.our-approach-img{
	height: 100%;
}

.our-approach-img figure,
.our-approach-img figure img{
    width: 100%;
    height: 100%;
	aspect-ratio: 1 / 0.7;
    object-fit: cover;
}

.our-benefits{
    padding: 100px 0;
}

.our-benefits-images{
    position: relative;
	margin-right: 20px;
}

.our-benefit-img figure{
	display: block;
}

.our-benefits-image-box-1{
    margin-bottom: 30px;
}

.our-benefits-image-box-1 .our-benefit-img img{
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
}

.our-benefits-image-box-2{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.our-benefits-image-box-2 .our-benefit-img{
    width: calc(50% - 15px);
}

.our-benefits-image-box-2 .our-benefit-img img{
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
}

.company-benefit-box{
    position: absolute;
    background: var(--white-color);
    padding: 30px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    max-width: 220px;
}

.company-benefit-box h2{
    font-size: 46px;
    color: #c60127;
    margin-bottom: 5px;
}

.company-benefit-box h3{
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.company-benefit-box p{
    font-size: 14px;
    margin: 0;
}

.company-benefit-box p span{
    color: #000;
}

.our-benefits-content .our-benefits-list{
	border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.our-benefits-list .benefits-list-item{
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
}

.our-benefits-list .benefits-list-item:last-child{
    margin-bottom: 0;
}

.our-benefits-list .benefits-list-item::before{
    content: '\f00c';
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: #c60127;
}

.our-benefits-list .benefits-list-item h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.our-benefits-list .benefits-list-item p{
    margin: 0;
}

.company-skills{
    padding: 100px 0;
}

.company-skill-image{
    margin-right: 30px;
}

.company-skill-image figure{
	display: block;
}

.company-skill-image img{
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
}

.about-our-skillbar{
    margin-bottom: 40px;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{	
	font-size: 16px;
	text-transform: capitalize;
	color: #000;
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 16px;
	color: #000;
	margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	width: 100%;
	height: 6px;
	background: var(--divider-color);
	border-radius: 0px;
	position: relative;
}

.skills-progress-bar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);
	border-radius: 0px;
}

.about-skill-counter{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 120px;
	border-top: 1px solid var(--divider-color);
    padding-top: 80px; 
	margin-top: 80px;
}

.skill-counter-item{
	width: calc(25% - 90px);
    display: flex;
	align-items: center;
}

.skill-counter-item .icon-box{
    margin-right: 15px;
}

.skill-counter-item .icon-box img{
    max-width: 53px;
}

.skill-counter-item-content{
    width: calc(100% - 68px);
}

.skill-counter-item-content h3{
    font-size: 30px;
    color: #c60127;
}

.skill-counter-item-content p{
	text-transform: capitalize;
    margin: 0;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
    position: relative;
    margin-bottom: 20px;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
    top: 20px;
    right: 20px;
	text-align: center;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.team-member-item:hover .team-social-icon{
	top: 28px;
}

.team-social-icon ul{
	position: relative;
	display: inline-block;
	list-style: none;
	line-height: normal;
	margin: 0;
    padding: 0;
	backdrop-filter: blur(80px);
	-webkit-backdrop-filter: blur(80px);
	overflow: hidden;
}

.team-social-icon ul::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
	opacity: 20%;
    width: 100%;
    height: 100%;
	z-index: 0;
}

.team-social-icon ul li{
	position: relative;
    border-bottom: 1px solid var(--dark-divider-color);
    text-align: center;
	z-index: 1;
}

.team-social-icon ul li:last-child{
    border-bottom: none;
}

.team-social-icon ul li a{
    background-color: transparent;
    color: var(--white-color);
    width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
    background-color: #000;
	color: #c60127;
}

.team-social-icon ul li a i{
    color: inherit;
    font-size: 16px;
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     17. Services Page css    ***/
/************************************/

.page-services{
    padding: 100px 0 70px;
}

.service-item{
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image{
    position: relative;
}

.service-image a{
    display: block;
    cursor: none;
}

.service-image figure{
    position: relative;
    display: block;
}

.service-image figure::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.39%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.service-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.96;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
    transform: scale(1.1);
}

.service-content{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.service-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.service-content h3 a{
    color: inherit;
}

.service-icon{
    position: absolute;
    top: 30px;
    right: 30px;
    height: 54px;
    width: 54px;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
	z-index: 2;
}

.service-item:hover .service-icon{
    background-color: #000;
}

.service-icon img{
    max-width: 30px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-icon img{
    filter: brightness(0) invert(1);
}

/************************************/
/***    18. Service Single css    ***/
/************************************/
  
.page-service-single{
    /*padding: 100px 0;*/
} 
  
.service-sidebar{ 
    position: sticky;
    top: 97px;
    margin-right: 30px;
}

.service-catagery-list{
    border: 1px solid var(--divider-color);
    margin-bottom: 40px;
}

.service-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
	text-transform: capitalize;
	background-color: #FFA100;
	color: var(--white-color);
    padding: 18px 30px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.service-catagery-list ul li{
    position: relative;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border: none;
}

.service-catagery-list ul li::before{
    content: '\f054';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover::before{
    color: #c60127;
}  

.service-catagery-list ul li a{
    position: relative;
    display: block;
    color: black;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
    color: #c60127;
}

.sidebar-cta-box{
    background-color: #000;
    padding: 40px 30px;
}

.cta-client-images{
    display: inline-flex;
    margin-bottom: 20px;
}

.cta-client-img{
    margin-left: -16px;
}

.cta-client-img:first-child{
    margin: 0;
}

.cta-client-img figure{
    display: block;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
}

.cta-client-img img{
    max-width: 50px;
    border-radius: 50%;
}

.sidebar-cta-body{
    margin-bottom: 30px;
}

.sidebar-cta-body h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.sidebar-cta-body p{
    color: var(--secondary-color);
    margin-bottom: 0;
}

.sidebar-cta-body p a{
    font-weight: 600;
    color: #c60127;
    text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-body p a:hover{
    color: var(--secondary-color);
}

.sidebar-cta-footer ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-footer ul li{
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.sidebar-cta-footer ul li:last-child{
    margin-bottom: 0;
}

.sidebar-cta-footer ul li img{
    max-width: 30px;
    margin-right: 20px;
}

.service-single-slider{
    margin-bottom: 30px;
}

.service-single-slider .swiper-slide figure{
    position: relative;
    display: block;
}

.service-single-slider .swiper-slide figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.79%, rgba(30, 30, 30, 0.8) 100%);
    z-index: 1;
}

.service-single-slider .swiper-slide img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.service-single-slider .service-pagination{
    position: absolute;
    bottom: 20px;
    text-align: center;
    z-index: 1;
}

.service-single-slider .service-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--text-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.service-single-slider .service-pagination .swiper-pagination-bullet-active{
    position: relative;
    width: 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
	color: black;
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0px;
}

.service-entry h2{
    font-size: 46px;
    margin-bottom: 20px;
}

.service-specialty{
    margin: 60px 0;
}

.service-entry-box{
    background-color: #000;
    padding: 40px;
	margin-top: 30px;
}

.service-entry-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.service-entry-item{
    position: relative;
    width: calc(33.33% - 40px);
}

.service-entry-item::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(30px, -50%);
    width: 1px;
    height: 90%;
    background-color: var(--dark-divider-color);
}

.service-entry-item:last-child::before{
    display: none;
}

.service-entry-item .icon-box{
    margin-bottom: 20px;
}

.service-entry-item .icon-box img{
    max-width: 50px;
}

.service-entry-item-content h3{
    font-size: 20px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.service-entry-item-content p{
    color: var(--secondary-color);
}

.service-entry-box-footer{
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.service-entry-box-footer p{
    font-weight: 500;
    color: var(--secondary-color);
}

.service-entry-box-footer p a{
    color: #c60127;
    text-decoration: underline;
    text-transform: capitalize;
}

.service-image-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.service-entry-image{
    width: calc(50% - 15px);
}

.service-entry-image figure{
    display: block;
}

.service-entry-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.97;
}

.service-entry-list{
    width: calc(50% - 15px);
}

.service-list-item{
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.service-list-item:last-child{
    margin-bottom: 0;
}

.service-list-item::before{
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-weight: 100;
    color: #c60127;
}

.service-list-item h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-accordion.page-faq-accordion .accordion-item{
    border-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button{
    color: #000;
}

.faq-accordion.page-faq-accordion .accordion-button:not(.collapsed){
    color: #c60127;
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after{
    color: #000;
}

.faq-accordion.page-faq-accordion .accordion-button:not(.collapsed)::after{
    color: #c60127;
}

/************************************/
/***     19. Projects Page css    ***/
/************************************/

.page-projects{
	padding: 100px  0 70px;
}

/************************************/
/***    20. Project Single css    ***/
/************************************/

.page-project-single{
    padding: 100px 0;
}

.project-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.project-catagery{
    border: 1px solid var(--divider-color);
    margin-bottom: 60px;
}

.project-catagery-list ul{
    margin: 0;
    padding: 30px;
    list-style: none;
}

.project-catagery-list ul li{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
}

.project-catagery-list ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-catagery-list ul li span{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
    display: inline-flex;
    width: 50%;
}

.category-social-link{
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 25px 30px;
}

.category-social-link span{
    font-size: 20px;
    font-weight: 600;
	text-transform: capitalize;
    color: var(--white-color);
}

.category-social-link ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-social-link ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.category-social-link ul li:last-child{
    margin-right: 0;
}

.category-social-link ul li a{
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li:hover a{
    border-color: #000;
}

.category-social-link ul li a i{
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li:hover a i{
    color: #000;
}

.project-single-slider{
    margin-bottom: 40px;
}

.project-single-slider .swiper-slide figure{
    position: relative;
    display: block;
}

.project-single-slider .swiper-slide figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.79%, rgba(30, 30, 30, 0.8) 100%);
    z-index: 1;
}

.project-single-slider .swiper-slide img{
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.project-single-slider .project-pagination{
    position: absolute;
    bottom: 20px;
    text-align: center;
    z-index: 1;
}

.project-single-slider .project-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--text-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.project-single-slider .project-pagination .swiper-pagination-bullet-active{
    position: relative;
    width: 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
}

.project-entry{
    margin-bottom: 40px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0px;
}

.project-entry h2{
    font-size: 46px;
    margin-bottom: 20px;
}

.project-overview,
.project-goals{
    margin-bottom: 40px;
}

.project-goals-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-goal-item{
    width: calc(33.33% - 20px);
    border: 1px solid var(--divider-color);
    padding: 25px;
}

.project-goal-item .icon-box{
    margin-bottom: 20px;
}

.project-goal-item .icon-box img{
    max-width: 50px;
}

.project-goal-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.project-goal-video{
    position: relative;
    width: calc(33.33% - 20px);
    overflow: hidden;
	cursor: none;
	z-index: 1;
}

.project-goal-video .video-image{
    height: 100%;
}

.project-goal-video .video-image figure{
    height: 100%;
}

.project-goal-video .video-image img{
	width: 100%;
    height: 100%;
	filter: brightness(80%);
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.project-goal-video:hover .video-image img{
    transform: scale(1.1);
}

.project-goal-video .video-image a{
	cursor: none;
	position: relative;
	z-index: 1;
}

.project-goal-video .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.project-goal-video .video-play-button a{
	position: relative;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);
	border-radius: 100%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.project-goal-video .video-play-button a:before{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.4);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.project-goal-video .video-play-button a:after{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.4);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .4s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.project-goal-video .video-play-button a i{
	font-size: 18px;
	color: var(--white-color);
}

.project-entry-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.project-entry-list ul li{
    position: relative;
    width: calc(50% - 10px);
    color: #000;
    padding-left: 25px;
}

.project-entry-list ul li::before{
    content: '\f00c';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    top: 0;
    left: 0;
    color: #c60127;
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-blog .post-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: #000;
	border-radius: 0;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
    color: var(--white-color);
}

/************************************/
/***      22. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: #c60127;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 56px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: #000;
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url(../images/icon-blockquote.svg), #000;
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 0;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 20px;
	font-weight: 600;
	color: #000;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
    color: var(--white-color);
	border-radius: 0;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: #000;
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
    color: var(--white-color);
	border-radius: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: #000;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      23. Team Page css       ***/
/************************************/

.page-team{
    padding: 100px 0 70px;
}

/************************************/
/***     24. Team Single css      ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-member-info-box{
	display: flex;
	height: calc(100% - 80px);
    margin-bottom: 80px;
}

.team-member-image{
	width: 50%;
    height: 100%;
}

.team-member-image figure{
    height: 100%;
    display: block;
}

.team-member-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

.team-member-content{
	width: 50%;
    background-color: #000;
    padding: 60px;
    height: 100%;
}

.member-content-header{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.member-content-header p{
	text-transform: capitalize;
    color: #c60127;
    margin-bottom: 10px;
}

.member-content-header h2{
    font-size: 46px;
    color: var(--white-color);
}

.member-content-body{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.member-content-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-content-body ul li{
    position: relative;
	width: 100%;
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
	display: flex;
    justify-content: space-between;
    padding-left: 36px;
    margin-bottom: 30px;
}

.member-content-body ul li:last-child{
    margin-bottom: 0;
}

.member-content-body ul li img{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 20px;
}

.member-content-body ul li span{
	width: 62%;
    font-size: 16px;
    font-weight: 400;
    text-transform: initial;
    color: var(--text-color);
}

.member-social-list{
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-social-list span{
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
    margin: 0;
}

.member-social-list ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li i{
    font-size: 16px;
    color: #c60127;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a i{
    color: var(--secondary-color);
}

.team-member-personal-info{
    margin-bottom: 80px;
}

.team-member-personal-info h2{
    font-size: 46px;
    margin-bottom: 20px;
    cursor: none;
}

.team-member-personal-info p{
    margin-bottom: 20px;
}

.team-member-personal-info p:last-child{
    margin-bottom: 0;
}

.contact-form-content.member-contact-form{
	margin-right: 20px;
}

/************************************/
/***     25. Pricing Page css     ***/
/************************************/

.page-pricing{
    padding: 100px 0;
}

.pricing-box{
    border: 1px solid var(--divider-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-box.highlight-box{
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
    border: none;
}

.pricing-box-header{
    margin-bottom: 30px;
}

.pricing-title{
    margin-bottom: 30px;
}

.pricing-title h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.pricing-box.highlight-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-title p{
    margin-bottom: 20px;
}

.pricing-box.highlight-box .pricing-title p{
    color: var(--secondary-color);
}

.pricing-title h2{
    font-size: 40px;
    color: #c60127;
}

.pricing-box.highlight-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sub{
	font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlight-box .pricing-title h2 sub{
    color: var(--secondary-color);
}

.pricing-btn .btn-default{
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);
    margin: 0;
}

.pricing-box.highlight-box .pricing-btn .btn-default{
    background-color: var(--white-color);
    color: #000;
}

.pricing-btn .btn-default::after{
    background: #000;
}

.pricing-box.highlight-box .btn-default:hover{
    color: var(--white-color);
}

.pricing-btn .btn-default:before{
    display: none;
}

.pricing-list-title{
    margin-bottom: 20px;
}

.pricing-list-title h3{
    font-size: 20px;
}

.pricing-box.highlight-box .pricing-list-title h3{
    color: var(--white-color);
}

.pricing-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-list ul li{
    position: relative;
    width: 100%;
    text-transform: capitalize;
    padding-left: 30px;
}

.pricing-box.highlight-box .pricing-list ul li{
    color: var(--secondary-color);
}

.pricing-list ul li::before{
    content: '\f00c';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 18px;
    top: 0;
    left: 0;
    color: #c60127;
}

.pricing-box.highlight-box .pricing-list ul li::before{
    color: var(--white-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: #000;
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***   26. Testimonial Page css   ***/
/************************************/

.page-testimonial{
    padding: 100px 0;
}

.testimonial-box-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-box{
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    padding: 40px;
}

.testimonial-box-header{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial-author{
    display: flex;
    width: calc(70% - 15px);
}

.testimonial-author-img{
	margin-right: 15px;
}

.testimonial-author-img figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.testimonial-author-img img{
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-author-content{
	width: calc(100% - 65px);
}

.testimonial-author-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-author-rating{
    width: calc(30% - 15px);
    text-align: end;
}

.testimonial-author-rating i{
	font-size: 16px;
	color: #c60127;
}

.testimonial-author-rating i:last-child{
	margin-right: 0;
}

.testimonial-box-body p:last-child{
    margin: 0;
}

/************************************/
/***    27. Image Gallery css     ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
}

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 30%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(135deg, #150305, #004562, #9e051c);;
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
}

/************************************/
/***      29. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
}

.faq-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 40px;
	margin-bottom: 40px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: #c60127;
}

.faq-catagery-list ul li a::after{
	content: '\f054';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
    color: #c60127;
}

.page-faqs-catagery{
	margin-left: 30px;
}

.page-faqs-catagery .our-faq-section{
	margin-bottom: 60px;
}

.page-faqs-catagery .our-faq-section:last-child{
	margin-bottom: 0;
}

/************************************/
/***   30. Contact Us Page css    ***/
/************************************/

.page-contact-us{
    padding: 100px 0 20px;
}

.contact-info-item{
    border: 1px solid var(--divider-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}

.contact-info-item .icon-box{
    background: #FFA100;  
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background: #000;
}

.contact-info-item .icon-box img{
    max-width: 40px;
}

.contact-info-item .contact-info-content p{
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-item .contact-info-content h3{
    font-size: 20px;
}

.contact-form{
    padding: 50px 0 100px;
}

.contact-form-img{
	margin-right: 20px;
}

.contact-form-img figure{
	display: block;
}

.contact-form-img img{
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
}

.contact-form-content form .form-control{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: #000;
    background: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 0;
    padding: 16px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form-content form .form-control::placeholder{
    color: var(--text-color);
}

.google-map .container-fluid{
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height:400px;
}

/************************************/
/***      31. 404 Page css        ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 40px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
    margin-bottom: 30px;
}

.error-page-content-body p{
	margin-bottom: 30px;
}

/************************************/
/***       32. Responsive Css     ***/
/************************************/

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}
}

@media only screen and (max-width: 991px){
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title{
		margin-right: 0px;
	}

	.section-row .section-title p{
		max-width: 100%;
		margin-top: 15px;
	}
	
	.section-row .section-title.dark-section p{
		max-width: 100%;
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 46px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		padding: 150px 0 80px;
		margin-top: -80px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 230px 0 160px;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content{
		max-width: 700px;
	}

	.hero-content .section-title{
		margin-bottom: 30px;
	}

	.hero-btn{
		margin-bottom: 30px;
	}

	.hero-btn .btn-default.btn-highlighted{
		margin-left: 30px;
	}

	.our-scrolling-ticker{
		padding: 10px 0;
	}

	.scrolling-ticker-box{
		--gap: 20px;
	}

	.scrolling-content{
		padding: 8px 0;
	}

	.scrolling-content span{
		font-size: 34px;
	}

	.scrolling-content span img{
		max-width: 22px;
		margin-right: 20px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-image-box-2{
		margin-top: 50px;
	}

	.about-us-item .icon-box{
		width: 70px;
		height: 70px;
		margin-right: 20px;
	}

	.about-us-item .icon-box img{
		max-width: 40px;
	}

	.about-item-content{
		width: calc(100% - 90px);
	}

	.our-services{
		padding: 50px 0;
	}

	.our-service-nav{
		margin-bottom: 40px;
	}

	.our-service-nav ul{
		padding-bottom: 20px;
	}

	.our-service-nav ul li{
		padding-right: 16px;
	}

	.our-service-nav ul li .nav-link{
		font-size: 16px;
	}

	.our-service-nav ul li .nav-link::before{
		bottom: -22px;
		left: -2px;
	}

	.our-service-nav ul li .nav-link.active:before,
	.our-service-nav ul li .nav-link:hover:before{
		width: 110%;
	}

	.our-service-nav ul li:last-child .nav-link:before{
		width: 102%;
	}

	.our-service-nav ul li .nav-link img{
		max-width: 22px;
		margin-right: 2px;
	}

	.service-tab-content{
		margin-bottom: 30px;
	}

	.service-tab-content-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-tab-content-list ul{
		gap: 15px;
	}

	.service-tab-image{
		margin: 30px 30px 0 0px;
	}

	.our-project{
		padding: 50px 0;
	}

	.our-Project-nav{
		margin-bottom: 40px;
	}

	.project-tag{
		top: 15px;
		left: 15px;
	}

	.project-tag a{
		padding: 4px 10px;
	}

	.project-content{
		bottom: 15px;
		left: 15px;
		right: 15px;
	}

	.project-quote-text{
		margin-top: 10px;
	}

	.why-choose-us{
		padding: 50px 0 0;
	}

	.why-choose-content{
		padding: 0 15px;
		margin: 0 0 30px 0;
	}

	.why-choose-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-work-images{
		margin-bottom: 30px;
	}

	.how-work-icon-box figure{
		width: 86px;
		height: 86px;
	}

	.how-work-icon-box figure img{
		max-width: 38px;
	}

	.how-work-step-box{
		margin-left: 0px;
	}

	.how-work-step-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.how-work-benefit-box{
		margin-top: 40px;
		padding-top: 40px;
		gap: 20px 30px;
	}

	.work-benefit-item{
		width: calc(50% - 15px);
		display: flex;
		align-items: center;
	}

	.work-benefit-item .icon-box img{
		max-width: 40px;
	}

	.work-benefits-item-content{
		width: calc(100% - 55px);
	}

	.work-benefits-item-content h3{
		font-size: 18px;
	}

	.intro-video{
		padding: 50px 0;
	}

	.intro-video-box{
		margin-bottom: 100px;
	}

	.intro-video-box .video-play-button img{
		max-width: 130px;
	}

	.intro-video-box .video-play-button a::before{
		font-size: 30px;
	}

	.intro-video-box .section-title{
		max-width: 510px;
	}

	.intro-video-list{
		padding-top: 30px;
	}

	.intro-video-list ul{
		gap: 30px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.our-testimonial-image{
		margin-right: 0px;
		height: 100%;
	}

	.our-testimonial-content{
		height: 100%;
		padding-bottom: 270px;
	}

	.testimonial-counter{
		padding-bottom: 30px;
	}

	.testimonial-counter-no{
		width: 80px;
	}

	.testimonial-counter-no h2{
		font-size: 40px;
	}

	.testimonial-counter-content{
		width: calc(100% - 80px);
	}

	.testimonial-slider{
		max-width: 700px;
		padding: 20px 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.our-features{
		padding: 50px 0;
	}

	.contact-now-circle img{
		max-width: 100px;
	}

	.our-features-images{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.features-img-1 img{
		aspect-ratio: 1 / 1.55;
	}

	.features-img-2 img{
		aspect-ratio: 1 / 1.1;
	}

	.features-counter h2{
		font-size: 100px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding-right: 30px;
	}

	.faq-accordion .accordion-button:not(.collapsed){
		padding-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 10px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-right: 30px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.74;
	}

	.post-item-meta{
		margin-bottom: 15px;
	}

	.main-footer{
		padding: 50px 0 25px;
	}

	.main-footer::before{
		background-size: 50% auto;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.footer-links{
		height: auto;
		padding-right: 0px;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.footer-links::before{
		right: -15px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links p{
		margin-bottom: 20px;
	}

	.footer-contact-item{
		margin-bottom: 10px;
	}

	.footer-contact-item .icon-box{
		margin-right: 10px;
	}

	.footer-contact-item .icon-box img{
		max-width: 24px;
	}

	.footer-contact-content{
		width: calc(100% - 34px);
	}

	.footer-contact-content p{
		margin: 0;
	}

	.footer-copyright{
		padding: 25px 0 0;
		margin-top: 0px;
	}

	.footer-menu ul li{
		margin-right: 20px;
	}

	.page-header{
        padding: 160px 0 80px;
    }

    .page-header-box h1{
        font-size: 46px;
    }

	.our-approach-content{
		height: auto;
		display: block;
		padding: 50px 15px 30px 15px;
	}

	.our-approach-img figure img{
		height: auto;
	}

	.our-approach-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.our-benefits{
        padding: 50px 0;
    }

    .our-benefits-images{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .company-benefit-box{
        padding: 15px;
    }

    .company-benefit-box h2{
        font-size: 36px;
    }

    .our-benefits-list .benefits-list-item{
        padding-left: 30px;
        margin-bottom: 20px;
    }

	.our-benefits-content .our-benefits-list{
		padding-top: 30px;
	}

	.company-skills{
        padding: 50px 0;
    }

    .company-skill-image{
        margin-right: 0;
        margin-bottom: 30px;
    }

	.company-skill-image img{
		aspect-ratio: 1 / 0.8;
	}

    .about-our-skillbar{
        margin-bottom: 30px;
    }

    .skills-progress-bar{
        margin-bottom: 30px;
    }

    .about-skill-counter{
		gap: 20px 10px;
		padding-top: 40px;
		margin-top: 40px;
	}

    .skill-counter-item{
		width: calc(25% - 7.5px);
	}

	.skill-counter-item .icon-box{
		margin-right: 10px;
	}

	.skill-counter-item .icon-box img{
		max-width: 40px;
	}

	.skill-counter-item-content{
		width: calc(100% - 50px);
	}

	.skill-counter-item-content h3{
		font-size: 26px;
	}

	.skill-counter-item-content p{
		font-size: 14px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.05;
	}

	.page-services{
        padding: 50px 0 20px;
    }

    .service-image img{
        aspect-ratio: 1 / 0.8;
    }

    .service-content{
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-icon{
        top: 20px;
        right: 20px;
        height: 44px;
        width: 44px;
    }

    .service-icon img{
        max-width: 26px;
    }

	.page-service-single{
        padding: 50px 0;
    }

    .service-sidebar{
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list{
        margin-bottom: 30px;
    }

    .service-catagery-list h3{
        padding: 12px 20px;
    }

    .service-catagery-list ul{
        padding: 20px;
    }

	.service-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

    .sidebar-cta-box{
        padding: 30px 20px;
    }

    .sidebar-cta-body{
        margin-bottom: 20px;
    }

    .sidebar-cta-body h3{
        margin-bottom: 10px;
    }

    .sidebar-cta-footer ul li{
        margin-bottom: 10px;
    }

	.service-single-slider{
		margin-bottom: 20px;
	}

    .service-entry{
        margin-bottom: 30px;
    }

    .service-entry h2{
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-specialty{
        margin: 30px 0;
    }

    .service-entry-box{
        padding: 20px;
		margin-top: 20px;
    }

    .service-entry-item-list{
        gap: 30px 40px;
    }

    .service-entry-item{
        width: calc(33.33% - 26.67px);
    }

    .service-entry-item::before{
        transform: translate(20px, -50%)
    }

    .service-entry-item .icon-box img{
        max-width: 40px;
    }

    .service-entry-item-content h3{
        margin-bottom: 15px;
    }

    .service-entry-box-footer{
        margin-top: 20px;
    }

    .service-list-item{
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .service-list-item::before{
        font-size: 18px;
    }

    .service-list-item h3{
        margin-bottom: 5px;
    }

	.page-projects{
		padding: 50px  0 20px;
	}

	.page-project-single{
        padding: 50px 0;
    }

    .project-sidebar{
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .project-catagery{
        margin-bottom: 30px;
    }

    .project-catagery-list ul{
		padding: 20px;
	}

    .category-social-link{
        padding: 15px 20px;
    }

	.project-catagery-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

    .project-single-slider{
        margin-bottom: 30px;
    }

    .project-entry{
        margin-bottom: 30px;
    }

    .project-overview,
    .project-goals{
        margin-bottom: 30px;
    }

    .project-entry h2{
        font-size: 36px;
        margin-bottom: 15px;
    }

	.project-entry p{
		margin-bottom: 15px;
	}

    .project-goal-item{
        padding: 20px;
    }

    .project-goal-item .icon-box img{
        max-width: 40px;
    }

    .project-goal-item-content h3{
        font-size: 18px;
    }

	.page-blog{
        padding: 50px 0;
    }

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 40px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.tag-links{
		font-size: 22px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
        padding: 50px 0;
    }

	.team-member-info-box{
		display: block;
		height: auto;
	}

    .team-member-info-box,
    .team-member-personal-info{
        margin-bottom: 40px;
    }

	.team-member-image,
	.team-member-content{
		width: 100%;
		height: auto;
	}

    .team-member-image img{
        aspect-ratio: 1 / 0.85;
    }

    .team-member-content{
        padding: 30px;
    }

    .member-content-header,
    .member-content-body{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .member-content-header h2{
        font-size: 36px;
    }

    .member-content-body ul li{
		font-size: 18px;
        margin-bottom: 20px;
    }
    
    .team-member-personal-info h2{
        font-size: 36px;
        margin-bottom: 20px;
    }

    .team-member-personal-info p{
        margin-bottom: 15px;
    }
	
	.contact-form-content.member-contact-form{
		margin-right: 0px;
		margin-bottom: 30px;
	}	

	.page-pricing{
        padding: 50px 0;
    }

    .pricing-box{
        padding: 30px;
    }

	.pricing-box-header{
		margin-bottom: 20px;
	}

	.pricing-title{
		margin-bottom: 20px;
	}

	.pricing-title h3{
		margin-bottom: 10px;
	}

	.pricing-title p{
		margin-bottom: 15px;
	}

	.pricing-list-title{
		margin-bottom: 15px;
	}

	.pricing-list ul{
		gap: 10px;
	}

    .pricing-benefit-list{
        margin-top: 10px;
	}

	.page-testimonial{
        padding: 50px 0;
    }

    .testimonial-box{
        padding: 30px 20px;
    }

    .testimonial-box-header{
        gap: 20px;
        margin-bottom: 30px;
    }

    .testimonial-author{
        width: 100%;
    }

    .testimonial-author-rating{
        width: 100%;
        text-align: start;
    }

	.page-gallery{
        padding: 50px 0 20px;
    }

	.photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}

    .page-video-gallery{
        padding: 50px 0 20px;
    }

	.video-gallery-image img{
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs{
		padding: 50px 0;
	}

    .faq-sidebar{
        position: initial;
        margin-bottom: 30px;
    }

	.page-faqs-catagery{
		margin-left: 0px;
	}

	.page-faqs-catagery .our-faq-section{
		margin-bottom: 40px;
	}

	.faq-catagery-list{
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-contact-us{
        padding: 50px 0 0;
    }

    .contact-info-item{
        padding: 20px;
    }

    .contact-info-item .icon-box{
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .contact-info-item .contact-info-content h3{
        font-size: 18px;
    }

    .contact-info-item .icon-box img{
        max-width: 30px;
    }

    .contact-form{
        padding: 25px 0 50px;
    }

    .contact-form-img{
		margin-right: 0;
        margin-bottom: 30px;
    }

	.contact-form-img img{
		aspect-ratio: 1 / 0.9;
		object-position: top center;
	}

    .contact-form-content{
        margin-left: 0px;
    }

    .contact-form-content form .form-control{
        padding: 14px 16px;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 450px;
    }

	.error-page{
        padding: 50px 0;
    }

    .error-page-image{
        margin-bottom: 30px;
    }

    .error-page-image img{
        max-width: 80%;
    }

    .error-page-content-body p{
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px){

	.main-header .navbar-brand img{
		max-width: 80%;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 12px;
		padding-left: 23px;
	}

	.section-title h3::before{
		width: 14px;
		height: 14px;
	}

	.section-title h1{
		font-size: 32px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title-content{
		margin-top: 10px;
	}

	.hero-content{
        max-width: 100%;
    }

	.hero-btn .btn-default{
		margin-right: 70px;
	}
	
	.hero-btn .btn-default.btn-highlighted{
		margin-top: 20px;
        margin-left: 0px;
    }

	.hero-content-body{
		display: block;
	}

	.satisfy-client-images{
		margin-right: 0px;
		margin-bottom: 10px;
	}

	.hero-counter-box h3{
		font-size: 18px;
	}

	.our-scrolling-ticker{
        padding: 16px 0;
    }

	.scrolling-content{
        padding: 3px 0;
    }

	.scrolling-content span{
        font-size: 28px;
    }

	.about-us-images{
        max-width: 100%;
        margin-bottom: 30px;
		padding-right: 20px;
		gap: 20px;
    }

	.about-image-box-1,
	.about-image-box-2{
		width: calc(50% - 10px);
		gap: 20px;
	}

	.about-us-item{
		margin-bottom: 20px;
	}

	.about-item-content h3{
		max-width: 100%;
		font-size: 18px;
	}

	.about-us-content-list ul{
		gap: 10px;
	}

	.about-us-content-list ul li{
		width: 100%;
	}

	.our-service-nav{
        margin-bottom: 30px;
    }

	.our-service-nav ul li .nav-link{
        font-size: 14px;
    }

	.our-service-nav ul li .nav-link::before{
		display: none;
	}

	.service-tab-content-header{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.our-Project-nav{
        margin-bottom: 30px;
    }

	.our-Project-nav ul{
		gap: 10px 15px;
	}

	.our-Project-nav ul li a{
		font-size: 14px;
	}

	.our-Project-nav ul li a:before{
		right: -9px;
		width: 4px;
		height: 4px;
	}

	.project-content h3{
		font-size: 18px;
	}

	.project-quote-text p{
		font-size: 14px;
	}

	.why-choose-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.why-choose-item .icon-box img{
		max-width: 40px;
	}

	.why-choose-item .icon-box{
		margin-right: 15px;
	}

	.why-choose-item-content{
		width: calc(100% - 55px);
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-list ul li{
		width: 100%;
		font-size: 16px;
	}

	.why-choose-list ul li img{
		max-width: 24px;
	}

	.how-work-images{
		gap: 20px;
	}

	.how-work-img{
		width: calc(50% - 10px);
	}

	.how-work-icon-box figure{
        width: 66px;
        height: 66px;
    }

	.how-work-icon-box figure img{
        max-width: 28px;
    }

	.how-work-step-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.how-work-step-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.how-work-benefit-box{
        margin-top: 30px;
        padding-top: 30px;
        gap: 20px 20px;
    }

	.work-benefit-item{
        width: calc(50% - 10px);
    }

	.work-benefit-item .icon-box{
		margin-right: 10px;
	}

	.work-benefit-item .icon-box img{
        max-width: 34px;
    }

	.work-benefits-item-content{
        width: calc(100% - 34px);
    }

	.work-benefits-item-content h3{
        font-size: 14px;
    }

	.intro-video-box .video-play-button img{
        max-width: 100px;
    }

	.intro-video-box .video-play-button a::before{
        font-size: 24px;
    }

	.intro-video-list{
        padding-top: 20px;
    }

	.intro-video-list ul{
		justify-content: left;
	}

	.intro-video-list ul{
        gap: 10px;
    }

	.our-testimonial-image{
        margin-right: 0px;
		margin-bottom: 30px;
        height: auto;
    }

	.our-testimonial-content{
        height: auto;
        padding-bottom: 30px;
    }

	.testimonial-counter{
        padding-bottom: 20px;
    }

	.testimonial-slider{
		position: initial;
        max-width: 100%;
        padding: 0;
    }

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
		position: initial;
		justify-content: left;
	}

	.testimonial-slider .testimonial-button-next{
		margin-left: 15px;
	}

	.features-img-1 img{
        aspect-ratio: 1 / 2.05;
    }

	.features-img-2 img{
		aspect-ratio: 1 / 1.29;
	}

	.features-counter h2{
        font-size: 50px;
    }

	.features-counter p{
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.contact-now-circle img{
        max-width: 90px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.about-footer{
		text-align: left;
	}

	.footer-links h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-links p{
        margin-bottom: 15px;
    }

	.footer-contact-content p{
        margin: 0;
    }

	.footer-social-links ul li{
		margin-right: 10px;
	}

	.footer-menu ul{
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-copyright-text{
		text-align: center;
	}

	.page-header-box h1{
        font-size: 32px;
		margin-bottom: 5px;
    }

	.our-approach-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.our-approach-item .icon-box{
		margin-right: 20px;
	}

	.our-approach-item .icon-box img{
		max-width: 40px;
	}

	.approach-item-content{
		width: calc(100% - 60px);
	}

	.approach-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-benefits-image-box-1{
        margin-bottom: 20px;
    }

    .our-benefits-image-box-2{
        gap: 20px;
    }

    .our-benefits-image-box-2 .our-benefit-img{
        width: calc(50% - 10px);
    }

	.company-benefit-box{
        padding: 15px 10px;
    }

    .company-benefit-box h2{
        font-size: 26px;
    }

    .company-benefit-box h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

	.company-benefit-box p{
		font-size: 12px;
	}

    .our-benefits-list .benefits-list-item h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

    .skills-progress-bar{
        margin-bottom: 20px;
    }

	.about-skill-counter{
        gap: 20px 10px;
        padding-top: 30px;
        margin-top: 30px;
    }

	.skill-counter-item{
        width: calc(50% - 5px);
    }

	.skill-counter-item-content h3{
        font-size: 22px;
    }

	.skill-counter-item-content p{
        font-size: 12px;
    }

	.team-image{
		margin-bottom: 15px;
	}

	.service-content h3{
		font-size: 18px;
	}

	.service-catagery-list{
        margin-bottom: 20px;
	}

    .service-catagery-list h3{
        font-size: 18px;
    }

    .sidebar-cta-body h3{
        font-size: 18px;
    }

    .service-single-slider .swiper-slide img{
        aspect-ratio: 1 / 0.75;
    }

    .service-single-slider .service-pagination{
        bottom: 10px;
    }

    .service-entry h2{
        font-size: 24px;
    }

    .service-entry-item-list{
        gap: 30px 40px;
    }

    .service-entry-box{
        padding: 20px;
    }

    .service-entry-item{
        width: 100%;
    }

    .service-entry-item::before{
        width: 90%;
        height: 1px;
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translate(50%, 15px)
    }

    .service-entry-item .icon-box{
        margin-bottom: 10px;
    }

    .service-entry-item .icon-box img{
        max-width: 34px;
    }

    .service-entry-item-content h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-image-list{
        gap: 20px;
        margin-top: 20px;
    }

    .service-entry-image,
    .service-entry-list{
        width: 100%;
    }

    .service-entry-image img{
        aspect-ratio: 1 / 0.78;
    }

    .service-list-item{
        margin-bottom: 20px;
    }

    .service-list-item h3{
        font-size: 18px;
    }

    .project-catagery-list ul li span{
        font-size: 18px;    
    }

    .category-social-link span{
        font-size: 18px;
    }

    .category-social-link{
        gap: 20px;
    }

    .category-social-link ul li{
        margin-right: 10px;
    }

    .project-single-slider{
        margin-bottom: 20px;
    }

    .project-single-slider .swiper-slide img{
        aspect-ratio: 1 / 0.75;
    }

    .project-single-slider .project-pagination{
        bottom: 10px;
    }
    
    .project-entry h2{
        font-size: 26px;
    }

    .project-goal-item,
    .project-goal-video{
        width: 100%;
    }

    .project-goal-video .video-image img{
        aspect-ratio: 1 / 0.72;
        object-position: top center;
    }

    .project-entry-list ul{
        gap: 10px;
    }

    .project-entry-list ul li{
        width: 100%;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.team-member-content{
        padding: 20px;
    }

    .team-member-info-box,
    .team-member-personal-info{
        margin-bottom: 30px;
    }

    .member-content-header,
    .member-content-body{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .member-content-header p{
        margin-bottom: 5px;
    }

    .member-content-header h2{
        font-size: 26px;
    }

    .member-content-body ul li{
        font-size: 16px;
        margin-bottom: 20px;
		padding-left: 30px;
    }

    .member-content-body ul li span{
        width: 58%;
		font-size: 14px;
    }

    .member-social-list span{
        font-size: 18px;
    }

	.member-social-list{
		gap: 10px;
	}

	.member-social-list ul li{
		margin-right: 5px;
	}

    .team-member-personal-info h2{
        font-size: 26px;
    }

	.pricing-box{
        padding: 20px;
    }

    .pricing-title h3{
        font-size: 18px;
    }

    .pricing-list-title h3{
        font-size: 18px;
    }

    .pricing-title h2{
        font-size: 28px;
    }

    .pricing-btn .btn-default{
        padding: 14px;
    }

    .page-pricing .pricing-benefit-list ul{
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

	.testimonial-box{
        width: 100%;
        padding: 20px;
    }

    .testimonial-box-header{
        gap: 15px;
        margin-bottom: 20px;
    }

    .testimonial-author-content h3{
        font-size: 18px;
    }

	.testimonial-box-body p{
		font-size: 14px;
	}

    .faq-catagery-list{
        padding: 20px;
    }

	.contact-form-content form .form-control{
        padding: 12px 14px;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }

	.error-page-image{
        margin-bottom: 20px;
    } 

	.error-page-image img{
        max-width: 100%;
    }
}
img.logo-size { 
    height: 57px;  
    width: 230px;
}  
li {
    color: black !important;
	line-height: 1.8em;
}
.container.p-4.service-brand {
   border-radius: 10px;
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;
}
.col-12.col-sm-6.col-md-3 { 
    border: 1px solid;
}
h3.fw-bold.mb-1 {  
    color: #FFA100;
}
.footer-icon {  
    font-size: 21px;
    color: white; 
}
h3.sidebar-heading {
    color: #FFA100;
}
i.fa-solid.fa-house {
    font-size: 46px;  
    color: #c60127; 
} 
div.ex1 {
  box-shadow: 0 4px 12px #c60127;
    border-radius: 10px;
    border: 2px solid #c60127;
    padding: 16px;
    background-color: #e6cdad29;
    height: 800px;
    width: 100%;
    overflow-y: scroll;
}
.page-service-single {
    margin-top: 100px;
}   

.page-service-single {
    margin-bottom: 50px;
}
.cta-section{ 
   border-radius: 10px;
    box-shadow: 0 4px 12px #FFA100;
    border: 1px solid yellow;
    background: linear-gradient(214deg, #7f1702;, #E2E8E9, #FFA100);
}
.section-button {
      background-color:#FFA100;
      color: #ffffff;
      font-weight: 600;
      border-radius: 10px;   
      padding: 10px 25px;
      margin: 5px; 
      text-decoration: none;
      border: none;
      display: inline-block;
      transition: background 0.3s ease;
    }

    .section-button:hover {  
      background-color: black;  
      color: #fff;
    }
   
    .section-title { 
      margin-top: 100px;  
    }  
    .d-flex.justify-content-center.flex-wrap.p-4 {
    border-radius: 10px;
    box-shadow: 0 4px 12px #FFA100;
    border: 1px solid yellow;
    background: linear-gradient(214deg, #7f1702, #E2E8E9, #FFA100);
}              

.custom-modal-content {  
    background: #ffa50080 !important;                                                          
    border-radius: 5px;
    box-shadow: 0 4px 25px #FFA100;
    border: 1px solid yellow;
    /* background: linear-gradient(214deg, #7f1702;, #E2E8E9, #FFA100); */
}
figure.image-anime.reveal {
   border-radius: 10px;
    box-shadow: #FF9800 0px 4px 25px;
    border: 1px solid #FF9800;
}
 .video-popup {
  display: none;                                                          
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.video-popup-content iframe {
  width: 100%;
  height: 315px;
}

.close-btn { 
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
}
  video.w-100.d-block.mx-auto.rounded {
    border-radius: 10px;
   box-shadow: 0 4px 25px #7f1702;
    border: 5px solid #c60127;
}    
section.topbar-background-color {  
    background: linear-gradient(135deg, #150305, #004562, #9e051c);;  
} 
button.btn-close.bg-light.p-2 {
    opacity: 0.9;  
}                        
i.fas.fa-phone-alt {
    transform: rotateY(180deg);
}  
button#openModalBtn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #FF9800;
    /*border:2px solid black; */
    border-color: #000000;
}                                        
span.me-4.text-light {  
   color: #fff !important;
}
i.fas.fa-phone-alt.me-2 {  
    color: #fff !important;
}
@media (max-width: 767px) {
    .topbar-background-color {
        display: none !important;
    }
}  
button#openModalBtn {
    background: #FF9800 !important;
}
.row.topbar {
    margin-right: 61px !important;
    margin-left: 40px !important;
}


/*======services=========*/

    /* Left Section */
    .left {
 /*background: #00669790;*/
 background:transparent;
    height: 100%;
      flex: 1;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .logo {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .left h1 {
      font-size: 44px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .left p {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .phone-btn {
      display: inline-block;
      background: #fff;
      color: #0e1a33;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      margin-bottom: 30px;
      text-decoration: none;
    }

    .reviews {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .reviews img {
      height: 30px;
    }

    /* Right Section */
    .right {
      flex: 1;
      /*background: url("/images/banner1.webp") no-repeat center center/cover;*/
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .form-box {
    background: #ffffff70;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
}
.checkbox input{
    width:40px !important;
}

    .form-box h4 {
      font-size: 12px;
      letter-spacing: 1px;
      text-align: center;
      margin-bottom: 10px;
      color: #ccc;
    }

    .form-box h2 {
      font-size: 22px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
    }

    .form-box p {
      font-size: 13px;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .form-box input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
    }

    .checkbox { 
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-size: 13px;
    }

    .checkbox input {
      margin-right: 10px;
    }

    .btn {  
      width: 100%;
    padding: 10px;
    background: #a6d62e;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    }

    .btn:hover {
      background: #90bd1c;
    }
   .heroSection {
    background-color:#006697;
    padding: 40px 0;
    margin-top:120px;
}


    @media(max-width: 900px) {

        width: 100%;
      }
    }


    .containerDiv {
                      display: flex;
                      min-height: 100vh;
      align-items: center;
      justify-content: center;
      padding: 40px;
      gap: 40px;33
    }

    .image-side {
      flex: 1;
    }

    .image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .content-side {
      flex: 1;
      padding: 10px 20px;
    }

    .content-side h2 {
      font-size: 26px;
      margin-bottom: 20px;
      color: #1a365d;
    }

    /* Accordion */
    .accordion-item {
      margin-bottom: 10px;
    }

    .accordion-header {
      cursor: pointer;
      padding: 10px 5px;
      display: flex;
      align-items: center;
      font-size: 16px;
      font-weight: 600;
      color: #111;
    }

    .accordion-header span {
      color: #16a34a;
      font-size: 18px;
      margin-right: 10px;
    }

    .accordion-header .chevron {
      margin-left: auto;
      font-size: 14px;
      transition: transform 0.3s ease;
      color: #666;
    }

    .accordion-header.active .chevron {
      transform: rotate(90deg);
      color: #16a34a;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 14px;
      line-height: 1.5;
      color: #444;
      padding-left: 28px;
    }

    .accordion-content.open {
      max-height: 120px;
      margin-top: 4px;
    }

    @media (max-width: 992px) {
     
      .image-side img {
        height: 280px;
      }

      .content-side {
        padding: 15px;
      }
    }
    
    
      .aa-windows-section {
    --accent: #0f5fff;
    --muted: #6b7280;
    --card-bg: rgba(15, 95, 255, 0.06);
    --glass: rgba(255,255,255,0.6);
    --radius: 14px;
    --shadow: 0 10px 25px rgba(16,24,40,0.08);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-sizing: border-box;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(180deg, rgba(15,95,255,0.02), rgba(15,95,255,0.00));
    border-radius: calc(var(--radius) + 4px);
  }

  /* image column */
  .aa-windows-section__visual {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .aa-windows-section__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.19,1,.22,1);
  }
  .aa-windows-section__visual::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15,95,255,0.08), rgba(15,95,255,0.01));
    pointer-events: none;
  }
  .aa-windows-section__visual:hover img{ transform: scale(1.06); }

  /* content column */
  .aa-windows-section__content {
    padding: 18px 6px;
  }
  .aa-windows-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #006697;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .aa-windows-section__title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.05;
    color: #0b1220;
    letter-spacing: -0.2px;
  }
  .aa-windows-section__lead {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 15px;
  }

  /* services grid */
  .aa-windows-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
  }

  .aa-windows-section__card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: linear-gradient(0deg, rgba(255,255,255,0.8), rgba(255,255,255,0.65));
    border-radius: 12px;
    padding: 12px;
    box-shadow: none;
    border: 1px solid rgba(15,23,42,0.04);
    transition: transform .28s ease, box-shadow .28s ease;
    min-height: 76px;
  }
  .aa-windows-section__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16,24,40,0.08);
  }

  .aa-windows-section__icon {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--card-bg);
    display: grid;
    place-items: center;
    box-shadow: inset 0 -6px 18px rgba(15,95,255,0.02);
  }
  .aa-windows-section__icon svg { width: 22px; height: 22px; display:block; }

  .aa-windows-section__meta {
    min-width: 0;
  }
  .aa-windows-section__meta h4 {
    margin: 0;
    font-size: 15px;
    color: #071233;
    font-weight: 700;
  }
  .aa-windows-section__meta p {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
  }

  /* full-width CTA row under grid */
  .aa-windows-section__cta-row {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .aa-windows-section__btn {
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(90deg, #006697, #006697);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15,95,255,0.14);
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .aa-windows-section__btn:active{ transform: translateY(1px); }
  .aa-windows-section__link {
    color: #006697;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }

  /* responsive */
  @media (max-width: 920px) {
    .aa-windows-section { grid-template-columns: 1fr; padding: 20px; gap: 18px; }
    .aa-windows-section__grid { grid-template-columns: 1fr 1fr; }
    .aa-windows-section__visual { min-height: 220px; }
  }
  @media (max-width: 520px) {
    .aa-windows-section__grid { grid-template-columns: 1fr; }
    .aa-windows-section__title { font-size: 20px; }
  }
  
  .cta-section {
  background: linear-gradient(135deg, #006697, #b1d5e7);
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  color: #fff;
}
.ctaSec{
    background-color:#f7f7f7;
    padding:40px 0;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #0066ff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}
.bgGrey{
    background-color:#F5F6F0;
}
.bgWhite{
    background-color:#ffffff;
}

/* Responsive text scaling */
@media (max-width: 600px) {
  .cta-container h2 {
    font-size: 1.6rem;
  }
  .cta-subtext {
    font-size: 1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
 
 
.window-services {
  background: linear-gradient(135deg, #f8f9fa, #e6f2ff);
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.services-text {
  flex: 1.2;
  min-width: 300px;
}

.services-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #004080;
  text-transform: uppercase;
}

.service-item {
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0066cc;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.services-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.services-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.services-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .services-text h2 {
    font-size: 1.6rem;
  }
  .service-item h3 {
    font-size: 1.2rem;
  }
  .service-item p {
    font-size: 0.95rem;
  }
} 


.process-section {
  --card-radius: 14px;
  --accent: #005bb5;
  --accent-dark: #00408a;
  --muted-bg: #f6f9ff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--muted-bg), #ffffff);
  padding: 56px 20px;
  border-radius: 16px;
  max-width: 1200px;
  margin: 32px auto;
  box-shadow: 0 8px 30px rgba(12,35,75,0.06);
}

/* Title */
.process-title {
  font-size: 1.55rem;
  letter-spacing: 0.6px;
  color: #052c4a;
  text-align: center;
  margin: 0 0 28px;
  font-weight: 700;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card */
.process-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12,35,75,0.06);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  outline: none;
}
.process-card:focus {
  box-shadow: 0 12px 26px rgba(0,91,181,0.18);
  transform: translateY(-6px);
}

/* Media (image) */
.card-media {
  margin: 0;
  height: 220px;
  overflow: hidden;
  display: block;
  background: linear-gradient(180deg,#e9f2ff,#f8fbff);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay slides up from bottom on hover/focus */
.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.2,.9,.3,1), box-shadow 0.25s;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 10%, rgba(0,64,128,0.92) 100%);
  min-height: 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Headings inside overlay */
.card-overlay h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none; /* keep original capitalization exactly */
}
.card-overlay p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.95;
}

/* Hover and focus behavior */
.process-card:hover .card-overlay,
.process-card:focus-within .card-overlay,
.process-card:focus .card-overlay {
  transform: translateY(0%);
      background: #00000090;
}
.process-card:hover .card-media img,
.process-card:focus-within .card-media img {
  transform: scale(1.06);
}
.card-overlay h3{
    color:#fff;
}

/* CTA area */
.process-cta {
  margin-top: 28px;
  text-align: center;
}
.cta-line {
  margin: 0 0 12px;
  font-weight: 600;
  color: #213547;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,91,181,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cta-button:active,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,91,181,0.22);
}

/* Responsive: 2 columns tablet, single column mobile */
@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .card-media { height: 200px; }
}

@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-media { height: 180px; }

  /* On small screens, overlay becomes stacked content under the image for readability */
  .card-overlay {
    position: relative;
    transform: none !important;
    background: none;
    color: #09263b;
    min-height: auto;
    padding: 14px 12px 18px;
  }
  .card-overlay h3 { color: #052c4a; font-size: 1rem; }
  .card-overlay p { color: #23333f; font-size: 0.95rem; opacity: 0.95; }

  .process-card { transform: none; }
  .process-card:focus { box-shadow: 0 6px 16px rgba(12,35,75,0.06); }
}


.window-options {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 70px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1a1a1a;
}

/* Title */
.options-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #004080;
  margin-bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layout */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

/* Cards */
.option-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
  border-left: 6px solid #0066cc;
}

.option-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0066cc;
}

.option-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-left-color: #004080;
}

/* Material Options */
.materials-section {
  border-radius: 14px;
  padding: 28px 24px;
}

.materials-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #004080;
}

.material-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.material-list li {
  font-size: 1rem;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #e6ecf3;
}

.material-list li:last-child {
  border-bottom: none;
}

.material-list strong {
  color: #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .options-title {
    font-size: 1.6rem;
  }
  .option-card {
    padding: 22px 18px;
  }
  .materials-section h3 {
    font-size: 1.15rem;
  }
}



.benefits-section {
  background: #f9f9f9;
  padding: 80px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  text-align: center;
}

.benefits-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 10px 10px 0 #00408a; /* orange offset like reference */
}

.benefit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

/* Overlay */
.benefit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.benefit-content {
  border: 2px solid #fff;
  padding: 20px;
}

.benefit-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-title {
    font-size: 1.6rem;
  }
  .benefit-content h3 {
    font-size: 1rem;
  }
  .benefit-content p {
    font-size: 0.9rem;
  }
}


.service-areas {
  /*background: linear-gradient(135deg,#006697, #0077b6);*/
  background:#fff;
  color: #fff;
  padding: 80px 20px;
  font-family: "Segoe UI", Roboto, sans-serif;
  text-align: center;
}

/* Container */
.service-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.service-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

/* Intro Paragraph */
.service-intro {
  font-size: 1.15rem;
  margin-bottom: 25px;
}

/* Cities Grid */
.service-cities {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

/* City Card */
.city-card {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.city-card h3 {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Description */
.service-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* CTA Button */
.service-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #fff;
  color: #0077b6;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.service-btn:hover {
  background: #006697;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .service-title {
    font-size: 1.6rem;
  }
  .service-intro {
    font-size: 1rem;
  }
  .service-desc {
    font-size: 0.95rem;
  }
  .service-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #0077b6;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f9f9f9;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e9f5fc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough for longer text */
  padding: 10px 20px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-details {
  flex: 1 1 50%;
  color: #333;
}

.contact-details h2 {
  margin-bottom: 20px;
}

.contact-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #222;
}

.contact-info {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.license {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #555;
}

/* Contact Form */
.contact-form {
  flex: 1 1 40%;
  background:linear-gradient(45deg, #006697, #001631, #000910);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #0077b6;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077b6;
}

.contact-form button {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 17px;
  /*border-radius: 8px;*/
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
 
}

.contact-form button:hover {
  background: #005f8d;
   border-right:1px solid #fff !important;
}

/* Overview Line */
.contact-overview {
  margin-top: 50px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0077b6;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 25px;
  /*box-shadow: 0 4px 15px rgba(0,0,0,0.08);*/
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.stars {
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* Read More Link */
.read-more {
  margin-top: 25px;
}
.read-more a {
  text-decoration: none;
  color: #0077b6;
  font-weight: bold;
  transition: color 0.3s;
}
.read-more a:hover {
  color: #005f8d;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #0077b6;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background: #005f8d;
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    font-size: 0.9rem;
    padding: 20px;
  }
  .testimonial-title {
    font-size: 1.3rem;
  }
}

@media (max-width:991px){
    .row.topbar{
    margin-right: 0px !important;
    margin-left: 0px !important;
}
.contact-form {
    width: 100%;
}
}


@media (max-width:767px){
    .containerDiv {
    flex-direction: column;
}
.aa-windows-section__cta-row {
    flex-direction: column;
}
.options-grid{
    grid-template-columns: 1fr;
}
.service-cities {
    grid-template-columns: 1fr;
}
}


.window-replacement{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/Window-replacement.jpg') center/cover no-repeat;
}
.impact-windows-florida{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/impact-windows-florida.webp') center/cover no-repeat;
}
.hurricane-windows-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/hurricane-windows-miami.webp') center/cover no-repeat;
}
.new-construction-windows-cape-coral{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/new-construction-windows-cape-coral.webp') center/cover no-repeat;
}
.vinyl-impact-windows-boca-raton{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/vinyl-impact-windows-boca-raton.webp') center/cover no-repeat;
}
.aluminum-impact-windows-naples{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/aluminum-impact-windows-naples.webp') center/cover no-repeat;
}
.window-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/window-installation-miami.webp') center/cover no-repeat;
}
.energy-efficient-windows-florida{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/energy-efficient-windows-florida.webp') center/cover no-repeat;
}
.types-of-home-windows{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/types-of-home-windows.webp') center/cover no-repeat;
}
.window-insulation{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/window-insulation.webp') center/cover no-repeat;
}
.front-entry-doors{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/front-entry-doors.webp') center/cover no-repeat;
}
.patio-doors-cost{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/patio-doors-cost.webp') center/cover no-repeat;
}
.sliding-glass-doors-cost{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/sliding-glass-doors-cost.webp') center/cover no-repeat;
}
.hurricane-impact-doors-florida{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/hurricane-impact-doors-florida.webp') center/cover no-repeat;
}
.french-doors-installation-florida{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/french-doors-installation-florida.webp') center/cover no-repeat;
}
.roof-replacement-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/roof-replacement-miami.webp') center/cover no-repeat;
}
.tile-roofing-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/tile-roofing-installation-miami.webp') center/cover no-repeat;
}
.metal-roofing-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/metal-roofing-installation-miami.webp') center/cover no-repeat;
}
.shingle-roofing-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/shingle-roofing-installation-miami.webp') center/cover no-repeat;
}
.roof-repair-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/roof-repair-miami.webp') center/cover no-repeat;
}
.commercial-window-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/commercial-window-installation-miami.webp') center/cover no-repeat;
}
.bathroom-remodeling-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/bathroom-remodeling-miami.webp') center/cover no-repeat;
}
.ac-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/ac-installation-miami.webp') center/cover no-repeat;
}
.commercial-windows-and-doors-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/commercial-windows-and-doors-installation-miami.webp') center/cover no-repeat;
}
.commercial-door-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/commercial-door-installation-miami.webp') center/cover no-repeat;
}
.storefront-installation-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/storefront-installation-miami.webp') center/cover no-repeat;
}
.kitchen-remodeling-miami{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/kitchen-remodeling-miami.webp') center/cover no-repeat;
}
.door-replacement-cost{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/door-replacement-cost.webp') center/cover no-repeat;
}
.impact-doors-south-florida{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/impact-doors-south-florida.webp') center/cover no-repeat;
}
.door-installation-cost{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/door-installation-cost.webp') center/cover no-repeat;
}
.fiberglass-doors-cost{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/fiberglass-doors-cost.webp') center/cover no-repeat;
}

.delray-beach{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/Roofing-Services.webp') center/cover no-repeat;
}

.roof-inspection{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/images/roof-inspection-banner.webp') center/cover no-repeat;
}

.roof-installation{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/delray-beach/img/create-image-of--roof-installation.webp') center/cover no-repeat;
}

.roof-maintenance{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/delray-beach/img/roof-maintenance-in-delray-b.webp') center/cover no-repeat;
}

.roof-repair{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/delray-beach/img/roof-repair-in-delray-beach--fl.webp') center/cover no-repeat;
}

.roof-replacement{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/delray-beach/img/roof-replacement-in-delray-beach--fl.webp') center/cover no-repeat;
}

.roof-restoration-coating{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('/delray-beach/img/roof-restoration---coating-in-delray-beach--fl.webp') center/cover no-repeat;
}

footer ::marker {
    color: #fff;
}

/* new pages css================== */


/* Headings */
.services-section h2 {
  font-size: 2.2rem;
  color: #111827;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Service Boxes */
.service-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

/* Titles & Paragraphs */
.service-box h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
}

.service-box strong {
  color: #1d4ed8;
  font-weight: 600;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 1.75rem;
  }
  .service-box {
    padding: 20px 15px;
  }
  .form-box {
    padding: 25px;
}

}


.materials-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}
.process-sec{
    display: flex;
    justify-content: center;
    align-items: center;
}
.materials-container {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Left Image */
.materials-image {
  flex: 1;
  overflow: hidden;
}

.materials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.materials-content {
  flex: 1;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.materials-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Tabs Navigation */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  background: #f3f4f6;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
}

.tab:hover {
  background: #e5e7eb;
}

.tab.active {
  background: #006697;
  color: #fff;
}

/* Tab Content */
.tab-content {
  /* display: none; */
  animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 1.1rem;
  color: #1d4ed8;
  margin-bottom: 8px;
  font-weight: 600;
}

.tab-content ul {
  list-style: none;
  padding-left: 0;
}

.tab-content ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  color: #ffffff !important;
  font-size: 0.95rem;
}

.tab-content ul li::before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Closing Text */
.closing {
  font-size: 0.96rem;
  color: #333;
  margin-top: 25px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .materials-container {
    flex-direction: column;
  }

  .materials-image {
    width: 100%;
    height: 280px;
  }

  .materials-content {
    padding: 40px 30px;
  }

  .materials-content h2 {
    font-size: 1.7rem;
  }
}


.process-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.process-container {
  display: flex;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Content */
.process-content {
  flex: 1;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.process-list {
  list-style: none;
  margin-bottom: 25px;
}

.process-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: #444;
}

.process-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: bold;
}

.process-list strong {
  color: #1e3a8a;
  font-weight: 600;
}

.closing {
  margin-top: 10px;
  font-size: 0.96rem;
  color: #333;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

/* Image */
.process-image {
  flex: 1;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
  }

  .process-content {
    padding: 40px 30px;
  }

  .process-image {
    height: 300px;
  }

  .process-content h2 {
    font-size: 1.7rem;
  }
}

.delray-testimonial-card {
  transform: translateY(0);
}
.delray-testimonial-card:hover {
  transform: translateY(-6px);
}

.roof-repair-section {  
  background-color: #006697;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;

}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;

}

.service-box {
  /* background: #162d44; */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  border-top: 4px solid #f8a127;
}
.services-grid .service-box:nth-child(odd) {
  background-color: #dee2e6; 
}
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(248,161,39,0.3);
  background: #d1e2f1;
}

.service-box h3 {
  color: #f8a127;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.service-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #e2e8f0;
}

.service-box ul li::before {
  content: "✔";
  color: #f8a127;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-box p {
  /* color: #cbd5e1; */
  line-height: 1.6;
}

.why-trust {
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.why-trust h3 {
  color: #f8a127;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.why-trust p {
  line-height: 1.7;
  color:#000;
}

.why-trust ul {
  margin: 20px 0;
  list-style: none;
  padding: 0;
}

.why-trust ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.why-trust ul li::before {
  content: "★";
  color: #f8a127;
  position: absolute;
  left: 0;
}

.cta {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  background: #f8a127;
  color: #0a1a2f;
  padding: 15px 25px;
  border-radius: 12px;
  display: inline-block;
  transition: 0.3s ease;
}

.cta:hover {
  background: #ffb84d;
  transform: scale(1.05);
}

.ctaBtn{
    display:inline-block;
}

.topbar a{
    font-size:14px;
}
button#openModalBtn {
    line-height: 1;
    font-size:14px;
    padding: 12px 20px;
}

.topbar .fas,.topbar .fa-solid {
    font-size: 14px;
}

section.contact-section {
    padding: 60px 0;
}

.video-section {
  position: relative;
  width: 100%;
  height: 800px; /* Full viewport height */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* Semi-transparent dark overlay */
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.video-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6f00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.video-content .btn:hover {
  background: #e65c00;
}
.heroFormDiv{
    display :flex;
    justify-content:flex-end;
    align-items:center;
}
.heroContent{
      display :flex;
    justify-content:flex-start;
    align-items:center;  
}
.aboutSection{
    background-image: url(/delray-beach/img/bg.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;

}
.fa-1,.fa-2,.fa-3,.fa-4{
    background: #00669782;
    padding: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 10px;
    color: #fff;
    margin: 10px;
}

.faq-accordion .accordion-item .accordion-body p {
    color: #fff;
}
.form-group input{
    color:#fff !important;
}
input::placeholder,
textarea::placeholder {
  color: #999 !important; /* Change this to any color you like */
  opacity: 1;  /* Ensures consistent color visibility across browsers */
}




/*mobile responsive */
  @media (min-width: 320px) and (max-width: 767px) { 
            
         .video-content {
    padding: 100px 20px !important;
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
     top: 0 !important; 
     transform: none !important; 
    padding: 0 20px;
    }

    .video-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    }
    .video-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    }
    
    .video-content p {
    font-size: 16px;
    margin-bottom: 30px;
}
    
        }
  /* FIX: Footer links not clickable */
        .main-footer {
            position: relative;
            z-index: 1;
        }

        .main-footer::before,
        .main-footer::after {
            pointer-events: none;
        }

        .main-footer a {
            position: relative;
            z-index: 5;
            pointer-events: auto;
        }

        /* Prevent invisible overlays blocking clicks */
        .main-footer * {
            pointer-events: auto;
        }