@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
/* Portfolio Template Styles */
:root {
	--white-color: #ffffff;
	--black-color: #000000;
    --primary-color: #ff3838;
	--heading-color: #24201f;
	--subheading-color: #6d6c74;
	--background-color: #FFB646;
	/* --subheading-color: #f9004d; */
    --text-color: #13132e;
	--gradient-hover-color: linear-gradient(145deg, #6a67ce, #fc636b);
	--plat-background-gradient: linear-gradient(145deg, #e2e8ec, #ffffff); 
	--plat-boxshadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
	--border-color: #dce1e4;
    --light-bg: #ecf0f1;
	--font-mulish: "Mulish", sans-serif;
	--font-kumbh: "Kumbh Sans", sans-serif;
	--transition: all 0.5s;
}


/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
body, html {
	font-family: var(--font-mulish);
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	color: #333333;
	margin: 0;
	background-color: var(--white-color);
  	transition: var(--transition);
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
a {
	color: #797979;
	text-decoration: none;
	transition: var(--transition);
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-kumbh);
	font-weight: 500;
	margin: 0;
}
p{
	margin: 0;
	padding: 0;
}
figure{
	margin: 0 !important;
  }
  .dav1_primary_btn{
	font-size: 16px;
	line-height: 24px;
    font-weight: 600;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: var(--white-color);
	background: var(--primary-color);
	padding: 13px 25px;
    padding-left: 57px;
	font-family: var(--font-mulish);
	transition: var(--transition);
	display: inline-flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
}  
.dav1_primary_btn::before{
	content: "\f178";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	width: 38px;
    height: 38px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid var(--white-color);
	background-color: var(--white-color);
	color: var(--black-color);
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	transition: var(--transition);
	z-index: -1;
}
.dav1_primary_btn:hover::before{
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	transition: var(--transition);
}
.dav1_primary_btn:hover{
	color: var(--white-color);
	background-color: var(--black-color);
}
/*--------- Comman css End -------*/
/*--------- Header css Start -------*/
.dav1_header_wrapper{
	/* position: relative; */
	z-index: 3;
}
.dav1_header_nav_wrapper{
	margin-left: auto;
}
.dav1_header_wrapper.is-sticky{
	position: sticky;
	top: 0;
	transform: translateY(-20px);
	animation: stickyFadeIn 0.4s cubic-bezier(.4,0,.2,1) forwards;
	background-color: var(--white-color);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
}
.dav1_header_wrapper.is-sticky .dav1_header_inner{
	padding-top: 10px;
}
.dav1_header_wrapper.is-sticky .dav1_header_inner .dav1_header_contact_btn{
	padding: 5px 50px;
}
.dav1_header_logo_wrapper img{
	height: 38px;
}
.dav1_header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 25px;
	padding-top: 25px;
    padding-bottom: 10px;
	position: relative;
}
  @keyframes stickyFadeIn {
	from { opacity: 0; transform: translateY(-20px);}
	to   { opacity: 1; transform: translateY(0);}
  }
.dav1_nav_wrapper ul{
	display: flex;
	align-items: center;
	gap: 20px;
}
.dav1_nav_wrapper ul li a{
	color: var(--text-color);
	font-family: var(--font-mulish);
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 10px;
	position: relative;
}
.dav1_nav_wrapper ul li a:hover,
.dav1_nav_wrapper ul li a.active{
	transition: var(--transition);
	color: var(--primary-color);
}
.dav1_nav_wrapper ul li a:after{
	content: '';
	border: 1px solid transparent;
	width: 0;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0px auto;
	bottom: -3px;
	transition: var(--transition);
}
.dav1_nav_wrapper ul li a.active:after, .dav1_nav_wrapper ul li:hover a:after {
    content: '';
    border: 1px solid var(--primary-color);
    width: 30px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -3px;
    transition: var(--transition);
}
.dav1_header_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.dav1_header_social ul li a{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	color: var(--text-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: #efefef;
}
.dav1_header_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.el_header_mob_toggle_btn{
	display: none;
	transform: rotate(180deg);
    cursor: pointer;
}
#close-sidebar{
	display: none;
}
.dav1_header_contact{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
    padding-right: 60px;
}
.dav1_footer_contact_icon{
	position: relative;
}
.dav1_footer_contact_icon .contact_header_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	width: 50px;
	height: 50px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	color: var(--white-color);
}
.dav1_footer_contact_icon_cont h6{
	font-size: 14px;
	line-height: 24px;
	font-family: var(--font-mulish);
	font-weight: 400;
	color: #6D6C74;
}
.dav1_footer_contact_icon_cont p{
	font-size: 14px;
	line-height: 20px;
	font-family: var(--font-kumbh);
	font-weight: 600;
	color: var(--black-color);
}
.dav1_header_contact_btn{
	padding: 20px 50px;
}
.dav1_banner_inner{
	position: relative;
}
.dav1_banner_top_shape{
	width: 402px;
	height: 115px;
	position: absolute;
	top: -98px;
	right: 0;
}
.dav1_banner_top_shape img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_header_contact_btn .dav1_primary_btn{
	background: #222222;
	border: 1px solid rgba(248, 248, 248, 0.31);
	margin-left: 5px;
}
.dav1_header_contact_btn .dav1_primary_btn::before{
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
}
.dav1_header_contact_btn .dav1_primary_btn:hover{
	background: var(--primary-color);
}
.dav1_header_contact_btn .dav1_primary_btn:hover::before{
	border: 1px solid var(--white-color);
	background-color: var(--white-color);
	color: var(--black-color);
}

/*--------- Header css End -------*/
/*--------- Banner css Start -------*/
.dav1_banner_wrapper{
	padding: 0 25px;
}
.dav1_banner_inner{
	width: 100%;
	background-color: #171733;
	position: relative;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	border-top-right-radius: 0;
}
.dav1_banner_content{
	flex: 0 0 60%;
	max-width: 60%;
	padding-top: 150px;
	padding-bottom: 250px;
    padding-left: 200px;
	position: relative;
	z-index: 2;
}
.dav1_banner_content h6{
	font-size: 16px;
	color: var(--white-color);
	text-transform: uppercase;
	line-height: 26px;
	background-color: #FFFFFF47;
	padding: 10px 35px;
	display: inline-block;
}
.dav1_banner_content h2{
	font-size: 76px;
    line-height: 86px;
	color: var(--white-color);
	font-weight: 700;
	margin-top: 30px;
}
.dav1_banner_content h4{
	font-size: 35px;
	line-height: 40px;
	color: #ccc;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 25px;
}
.dav1_banner_content .dav1_primary_btn{
	margin-top: 20px;
	margin-right: 10px ;
}
.dav1_banner_content .dav1_primary_btn:hover{
	background: var(--white-color);
	color: var(--black-color);
}
.dav1_banner_content_wrapper{
	position: relative;
	overflow: hidden;
	display: flex;
}
.dav1_banner_image{
	position: absolute;
    right: 50px;
    bottom: -15px;
	z-index: 1;
	max-width: 660px;
    width: 100%;
	height: 745px;
}
.dav1_banner_image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.dav1_banner_image_bg{
	position: absolute;
	inset: 0;
	z-index: -1;
}
.dav1_banner_image_bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_banner_video_btn{
	width: 150px;
	height: 150px;
	display: inline-block;
	position: absolute;
	right: 0;
	top: calc(70% - 100px);
	z-index: 2;
	font-size: 0;
	color: transparent;
}
.circle {
	--width: 150px;
	--height: 150px;
	position: absolute;
	left: auto;
	right: 0;
	top: calc(70% - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
	width: var(--width, 150px);
	height: var(--height, 150px);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
  }
  .circle::before{
	content: '';
	background-color: #ffffff24;
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 100%;
	border: 1px solid #ffffff78;
	left: -5px;
  }
  
  .circle .arrow-img {
	position: absolute;
  }
  
  .circle .text {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: rotateText 10s linear infinite;
	-webkit-animation: rotateText 10s linear infinite;
  }
  .circle .text .char{
	color: var(--white-color);
  }
  .arrow-img i{
	color: #fff;
    font-size: 26px;
    position: relative;
    z-index: 1;
  }
  .circle .text:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 95px;
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: #171733;
	z-index: -1;
	border: 1px solid #ffffff78;
  }
  
  .circle .text .char {
	position: absolute;
	left: 50%;
	font-size: 14px;
	font-weight: 600;
	transform-origin: 0 calc(var(--width, 150px) / 2);
	text-transform: uppercase;
  }
  @keyframes rotateText {
	0% {
	  transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -moz-transform: rotate(360deg);
	  -ms-transform: rotate(360deg);
	  -o-transform: rotate(360deg);
	}
	100% {
	  transform: rotate(0deg);
	  -webkit-transform: rotate(0deg);
	  -moz-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  -o-transform: rotate(0deg);
	}
  }
.dav1_banner_parallax_text h3{
	font-size: 150px;
	color: rgba(255, 255, 255, 0.15);
	position: absolute;
	left: 0;
	bottom: 10px;
	font-weight: 700;
	white-space: nowrap;
}
/*--------- Banner css End -------*/
/*--------- About css start -------*/
.dav1_about_wrapper{
	padding: 100px 0;
	padding-left: 100px;
}
.dav1_about_image{
	width: 100%;
	height: 655px;
}
.dav1_about_image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.dav1_about_image_wrapper{
	position: relative;
}
.dav1_about_shape_image{
	position: absolute;
	left: -90px;
    bottom: -130px;
}
.dav1_about_cont{
	padding-left: 50px;
	display: flex;
}
.dav1_heading h5{
	font-size: 14px;
    line-height: 20px;
	text-transform: uppercase;
    color: var(--subheading-color);
    font-weight: 600;
	letter-spacing: 1.4px;
}
.dav1_heading h3{
	font-size: 50px;
    line-height: 55px;
	text-transform: capitalize;
    color: var(--heading-color);
    font-weight: 700;
	margin-top: 20px;
}
.dav1_about_cont p{
	font-size: 16px;
    line-height: 30px;
    color: var(--subheading-color);
	margin-top: 20px;
	max-width: 85%;
}
.dav1_about_cont_left{
	flex: calc(100% - 400px);
	max-width: calc(100% - 400px);
	padding-right: 30px;
}
.dav1_about_cont_right{
	flex: 0 0 400px;
	max-width: 400px;
    transform: translateY(50px);
	position: relative;
	height: 424px;
	margin-top: auto;
}
.dav1_about_cont_right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.dav1_about_list{
	width: 100%;
	background-color: #FF38381A;
	border: 10px solid var(--white-color);
	-webkit-border-radius: 20px 20px 20px 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
	padding: 30px 40px;
    padding-top: 15px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.dav1_about_list ul{
	display: flex;
	flex-wrap: wrap;
}
.dav1_about_list ul li{
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 15px;
	font-size: 18px;
	line-height: 28px;
	color: var(--black-color);
	font-weight: 700;
	font-family: var(--font-kumbh);
	text-transform: capitalize;
	position: relative;
	padding-left: 25px;
}
.dav1_about_list ul li::before{
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
	font-size: 16px;
}
.portfolio-progressbar {
	margin-bottom: 25px;
  }
  .progressbar-label {
	font-weight: 500;
	margin-bottom: 6px;
	color: var(--heading-color);
	font-size: 15px;
	font-family: var(--font-kumbh);
	text-transform: capitalize;
  }
  .progressbar-track {
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	height: 15px;
	width: calc(100% - 38px);
	position: relative;
  }
  .progressbar-track::before{
	content: '';
	border: 1px solid #ebebeb;
	position: absolute;
	left: 0;
	top: 50%;
    width: 98%;
    transform: translateY(-50%);
  }
  .progressbar-fill::after{
	content: '';
	width: 20px;
	height: 100%;
	position: absolute;
	right: -20px;
	top: 0;
	bottom: 0;
	background: #fefbfb;
  }
  .progressbar-fill {
	background: var(--primary-color);
	height: 100%;
	width: 0;
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
	display: flex;
	align-items: center;
	transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
	position: relative;
  }
  .progressbar-percent {
	color: var(--primary-color);
	font-weight: 800;
	font-size: 14px;
	position: absolute;
	right:-39px;
	top: 50%;
	transform: translateY(-50%);
	letter-spacing: 1px;
	font-family: var(--font-mulish);
  }
  .dav1_about_btn{
	margin-top: 10px;
  }
  .dav1_about_btn .dav1_primary_btn{
	margin-right: 10px;
  }
/*--------- About css End -------*/
/*--------- Hiw css Start -------*/
.dav1_services_main_wrapper{
	padding: 0 25px;
}
.dav1_services_main_inner{
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}
.dav1_services_bg_img{
	position: absolute;
	inset: 0;
}
.dav1_services_bg_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_hiw_wrapper{
	padding: 100px 0;
}
.dav1_hiw_wrapper .dav1_heading{
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
.dav1_hiw_wrapper .dav1_heading h5{
	color: #c8c8c8;
}
.dav1_hiw_wrapper .dav1_heading h3{
	color: var(--white-color);
}
.dav1_hiw_card{
	position: relative;
    padding: 62px 40px;
	min-height: 400px;
	background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	margin-top: 60px;
	transition: var(--transition);
}
.dav1_hiw_card:hover{
	transition: var(--transition);
	background: var(--primary-color);
}
.dav1_hiw_card h3{
	font-size: 24px;
    line-height: 34px;
	text-transform: capitalize;
    color: var(--white-color);
    font-weight: 600;
	margin-bottom: 30px;
}
.dav1_hiw_number{
	position: absolute;
    right: 30px;
    top: -30px;
    background: #37334b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    line-height: 1;
    padding: 9px 25px 13px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    transition: all 300ms ease;
	transition: var(--transition);
}
.dav1_hiw_number p{
    color: var(--white-color);
	font-size: 36px;
	transition: var(--transition);
}
.dav1_hiw_card:hover .dav1_hiw_number{
	background: var(--white-color);
	transition: var(--transition);
	border: 1px solid var(--white-color);
}
.dav1_hiw_card:hover .dav1_hiw_number p{
	color: var(--primary-color);
	transition: var(--transition);
}
.dav1_hiw_list ul{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dav1_hiw_list ul li{
	border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white-color);
    display: inline-block;
    font-weight: 400;
    padding: 9px 35px;
    margin-bottom: 15px;
    transition: all 300ms ease;
	transition: var(--transition);
}
.dav1_hiw_card:hover .dav1_hiw_list ul li{
	background-color: rgba(0, 0, 0, 0.1);
    border-color: transparent;
	transition: var(--transition);
}
.dav1_hiw_icon{
	position: absolute;
	bottom: 8px;
	right: 8px;
}
.dav1_hiw_icon img{
	width: 180px;
}
.dav1_hiw_card:hover .dav1_hiw_icon img{
	animation: rotateX 30s linear infinite;
}
@keyframes rotateX {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(180deg);
	}
  }
  .animation__rotateX {
	animation: rotateX 30s linear infinite;
  }
/*--------- Hiw css End -------*/
/*--------- Services css Start -------*/
.dav1_service_bot_wrapper .dav1_heading{
	max-width: 900px;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
}
.dav1_service_bot_wrapper .dav1_heading h5{
    color: #c8c8c8;
}
.dav1_service_bot_wrapper .dav1_heading h3{
    color: var(--white-color);
}
.dav1_service_large_list{
	position: relative;
	margin-top: 50px;
}
.dav1_service_large_list_img {
	position: absolute;
	top: 15px;
	left: 0px;
	max-width: 338px;
	width: 100%;
	height: 120px;
	opacity: 0;
	border-radius: 20px;
	visibility: hidden;
	margin-right: 30px;
	transform: scaleX(0);
	transform-origin: left center;
	overflow: hidden;
	transition: 300ms;
}
.dav1_service_large_list_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_service_large_list:hover .dav1_service_large_list_img{
	visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}
.dav1_service_left_cont{
	display: flex;
	gap: 35px;
	align-items: center;
	padding: 30px 0px;
	transition: 300ms;
}
.dav1_service_left_cont p{
	font-size: 48px;
    line-height: 58px;
	text-transform: capitalize;
    color: var(--white-color);
    font-weight: 600;
}
.dav1_service_left_cont a{
	font-size: 80px;
    line-height: 90px;
	text-transform: capitalize;
    color: var(--white-color);
    font-weight: 600;
	font-family: var(--font-kumbh);
}
.dav1_service_left_cont a:hover{
	color: var(--primary-color);
}
.dav1_service_large_list_cont{
	display: flex;
	gap: 35px;
	align-items: center;
	justify-content: space-between;
	transition: 300ms;
}
.dav1_service_right_cont a{
	position: relative;
	width: 60px;
    height: 60px;
	display: block;
	margin-bottom: 5px;
	color: transparent;
    font-size: 0;
}
.dav1_service_right_cont a:before{
	content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
	transition: 500ms;
	transform: rotate(-32deg);
}
.dav1_service_large_list:hover .dav1_service_large_list_cont{
	padding-left: 368px;
}
.dav1_service_large_list:hover .dav1_service_right_cont a:before{
	background-color: var(--primary-color);
	color: var(--white-color);
	transform: rotate(0deg);
}
/*--------- Services css End -------*/
/*--------- Wcu css Start -------*/
.dav1_wcu_wrapper{
	position: relative;
}
.dav1_wcu_inner{
	position: relative;
	padding-top: 100px;
}
.dav1_wcu_left_shape{
	position: absolute;
	left: 0;
	top: 0;
	background-size: 100%;
	max-width: 466px;
	height: 352px;
	width: 100%;
}
.dav1_wcu_left_shape img{
	width: 100%;
}
.dav1_wcu_right_shape{
	position: absolute;
	right: 100px;
	top: 40px;
	background-size: 100%;
	width: 370px;
	height: 613px;
	-webkit-animation: movebounce 3.9s linear infinite;
    animation: movebounce 3.9s linear infinite;
}
@keyframes movebounce {
	0% {
	  transform: translateY(0px); }
	50% {
	  transform: translateY(20px); }
	100% {
	  transform: translateY(0px); } 
}
.dav1_wcu_img_wrapper{
	display: flex;
	gap: 30px;
	position: relative;
}
.dav1_wcu_img_left{
	flex: 0 0 47%;
	max-width: 47%;
	height: 530px;
	align-self: flex-end;
}
.dav1_wcu_img_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.dav1_wcu_img_right{
	display: flex;
	flex-direction: column;
	gap: 30px;
	flex: 0 0 47%;
	max-width: 47%;
}
.dav1_wcu_img_right_top{
	width: 100%;
	height: 290px;
}
.dav1_wcu_img_right_top img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.dav1_wcu_video_btn{
	width: 150px;
    height: 150px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    top: calc(50% - 80px);
    font-size: 0;
    color: transparent;
    z-index: 2;
}
.dav1_wcu_img_wrapper .circle{
	left: 0;
    margin: 0px auto;
    top: calc(50% - 80px);
}
.dav1_wcu_img_wrapper .circle::before{
	background-color: var(--primary-color);
	border: 3px solid #ffffff;
}
.dav1_wcu_img_wrapper .circle .text:before{
	background: var(--white-color);
}
.dav1_wcu_img_wrapper .arrow-img i{
	color: var(--primary-color);
}
.dav1_wcu_content_wrapper{
	padding-left: 80px;
	position: relative;
	z-index: 1;
}
.dav1_wcu_header .wcu_icon{
	background-color: var(--white-color);
    width: 75px;
    height: 75px;
    box-shadow: 0px 0px 10px 0px #F3EDED;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 36px;
	color: var(--primary-color);
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	flex: 0 0 75px;
	transition: 300ms;
}
.dav1_wcu_box:hover .dav1_wcu_header .wcu_icon{
	background-color: var(--primary-color);
	color: var(--white-color);
	transform: rotateY(180deg);
}
.dav1_wcu_box{
	margin-top: 50px;
}
.dav1_wcu_header{
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}
.dav1_wcu_header h5{
	font-size: 23px;
    line-height: 32px;
	text-transform: capitalize;
    color: var(--heading-color);
    font-weight: 600;
	max-width: 50%;
}
.dav1_wcu_content p{
	font-size: 16px;
    line-height: 30px;
    color: var(--subheading-color);
	margin-top: 20px;
}
/*--------- Wcu css End -------*/
/*--------- Project css Start -------*/
.dav1_project_wrapper{
	padding: 100px 15px;
}
.dav1_project_wrapper .dav1_heading{
	text-align: center;
	margin-bottom: 35px;
}
.dav1_filter_gallery{
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 600px;
	margin-top: 25px;
}
.dav1_filter_gallery:after{
	content: '';
	background-image: linear-gradient(transparent, var(--primary-color));
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.dav1_filter_gallery:hover::after{
	transition: var(--transition);
	opacity: 1;
	visibility: visible;
}
.dav1_filter_gallery img{
	width: 100%;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	transition: all 1s ease;
	object-fit: cover;
	height: 100%;
}
.dav1_filter_gallery:hover img{
	transform: scale(1.1);
}
.dav1_filter_gallery_overlay{
	position: absolute;
	inset: 0;
	bottom: -200px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 30px;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.dav1_filter_gallery:hover .dav1_filter_gallery_overlay{
	bottom: 0;
	transition: var(--transition);
}
.dav1_filter_gallery:hover .dav1_filter_gallery_overlay{
	opacity: 1;
	visibility: visible;
	transition: var(--transition);
}
.dav1_filter_gallery_overlay h5{
	color: var(--white-color);
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
}
.dav1_filter_gallery_overlay .dav1_project_title{
	color: var(--white-color);
	font-size: 26px;
	line-height: 34px;
	font-weight: 600;
	max-width: 60%;
	margin-top: 10px;
}
.dav1_filter_btn{
	position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: block;
	color: transparent;
	font-size: 0;
}
.dav1_filter_btn:before {
    content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: #222222;
    color: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 500ms;
    transform: rotate(-32deg);
}
.dav1_filter_btn:hover:before{
	transform: rotate(0deg);
}
.dav1_wcu_btn{
	width: 100%;
	text-align: center;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
/*--------- Project css End -------*/
/*--------- Team css Start -------*/
.dav1_team_main_wrapper{
	padding: 0 25px;
	padding-bottom: 100px;
}
.dav1_team_inner{
	position: relative;
	overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
	padding: 100px 0;
}
.dav1_team_bg_img{
	position: absolute;
	inset: 0;
}
.dav1_team_bg_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_team_main_wrapper .dav1_heading{
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}
.dav1_team_main_wrapper .dav1_heading h5 {
    color: #c8c8c8;
}
.dav1_team_main_wrapper .dav1_heading h3 {
    color: var(--white-color);
	max-width: 570px;
    margin: 20px auto 0 auto;
}
.dav1_team_card{
	background-color: #222222;
    border-radius: 20px;
    padding: 15px;
	transition: 300ms;
	margin-top: 20px;
	position: relative;
    z-index: 1;
}
.dav1_team_img{
	width: 100%;
	height: 370px;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	position: relative;
}
.dav1_team_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.dav1_team_cont .dav1_team_name{
	color: var(--white-color);
	font-size: 23px;
	line-height: 32px;
	font-weight: 600;
}
.dav1_team_cont{
	padding: 20px 50px 10px;
}
.dav1_team_cont p{
	color: var(--white-color);
	font-size: 14px;
	line-height: 28px;
}
.dav1_team_social{
	position: absolute;
	right: 18px;
    bottom: -18px;
}
.dav1_plus_btn{
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    color: #222222;
    cursor: pointer;
    font-size: 16px;
    transition: 300ms;
	border: 0;
	padding: 0;
	outline: none;
}
.dav1_plus_btn .dav1_plus_icon{
    transition: 300ms;
}
.social-icons{
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: 400ms;
	opacity: 0;
	visibility: hidden;
}
.social-icons li a{
	width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #222222;
    color: var(--white-color);
    cursor: pointer;
    font-size: 16px;
    transition: 300ms;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icons li a:hover{
	background-color: var(--primary-color);
}
.social-icons li a i{
	transition: 900ms;
}
.social-icons li a:hover i{
	transform: rotateY(360deg);
}
.dav1_team_card:hover{
	background-color: var(--primary-color);
}
.dav1_team_card:hover .dav1_plus_btn .dav1_plus_icon{
	transform: rotate(135deg);
}
.dav1_team_card:hover .dav1_plus_btn{
	background-color: #222222;
	color: var(--white-color);
}
.dav1_team_card:hover .social-icons{
	bottom: 45px;
	visibility: visible;
	opacity: 1;
}
/*--------- Team css End -------*/
/*--------- Testimonail css Start -------*/
.dav1_testimonail_main_wrapper{
	padding-bottom: 100px;
	position: relative;
}
.dav1_testimonail_main_wrapper:before {
    content: '';
    background: url('../images/wcu-circle-bg.png');
    top: 0;
    transform: translateY(-50%);
    left: 0;
    width: 860px;
    height: 861px;
    opacity: 0.6;
    position: absolute;
    margin: 0px auto;
}
.dav1_testimonail_main_wrapper .dav1_heading{
	border-bottom: 1px solid #E6E0FA;
	padding-bottom: 30px;
}
.dav1_testimonail_main_wrapper .dav1_heading h3{
	max-width: 85%;
}
.dav1_testimonail_descition{
	padding: 40px 0;
	padding-right: 95px;
}
.dav1_testimonail_descition .quote_icon{
	position: relative;
    margin-bottom: 15px;
    width: 43px;
    height: 33px;
	display: inline-block;
}
.dav1_testimonail_descition .quote_icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_testimonail_descition p{
	color: var(--subheading-color);
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 20px;
}
.dav1_testimonail_descition h4{
	color: var(--heading-color);
	font-size: 23px;
	line-height: 32px;
	font-weight: 600;
	font-family: var(--font-mulish);
}
.dav1_testimonail_descition h5{
	color: var(--subheading-color);
	font-size: 16px;
	line-height: 30px;
	font-family: var(--font-mulish);
}
.dav1_testimonail_thumb{
	width: 80px;
	height: 80px;
	position: relative;
	margin: 0px auto;
	cursor: pointer;
}
.dav1_testimonail_thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	border: 3px solid var(--white-color);
}
.slick-current.slick-active .dav1_testimonail_thumb img{
	border: 3px solid var(--primary-color);
}
.dav1_testimonail_thumnail_slider .slick-slider{
	width: 300px;
	position: unset;
}
.dav1_testimonail_thumnail_slider .slick-prev:before, .dav1_testimonail_thumnail_slider .slick-next:before{
	color: var(--black-color);
	opacity: 1;
	font-size: 21px;
	transition: 300ms;
}
.dav1_testimonail_thumnail_slider .slick-prev{
	left: auto;
	right: 60px;
	top: 50%;
    transform: translateY(-50%);
	bottom: 20px;
	width: 50px;
	background-color: #E6E0FA;
	height: 50px;
	border-radius: 100%;
	transition: 300ms;
}
.dav1_testimonail_thumnail_slider .slick-next{
	right: 0;
	top: 50%;
    transform: translateY(-50%);
    bottom: 20px;
	width: 50px;
    background-color: #E6E0FA;
    height: 50px;
    border-radius: 100%;
	transition: 300ms;
}
.dav1_testimonail_thumnail_slider .slick-prev:hover,
.dav1_testimonail_thumnail_slider .slick-next:hover{
	background-color: var(--primary-color);
}
.dav1_testimonail_thumnail_slider .slick-prev:hover:before,
.dav1_testimonail_thumnail_slider .slick-next:hover:before{
	color: var(--white-color);
}
.dav1_testimonail_thumnail_slider{
	position: relative;
}
.dav1_testimonail_thumnail_slider::before{
	content: '';
    width: calc(100% - 500px);
    height: 2px;
    background-color: #FF432E33;
    position: absolute;
    left: 24%;
    right: 0;
    margin: 0px auto;
    top: 50%;
    transform: translateY(-50%);
}
.dav1_testimonail_main_img{
	width: 100%;
    height: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
}
.dav1_testimonail_main_img img{
	width: 100%;
	position: relative;
	z-index: 1;
}
.dav1_testimonail_main_img::before{
	content: '';
    background-color: #EAE3FB;
    border-radius: 300px 300px 0px 0px;
    border-style: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 304px;
    height: 100%;
}
.dav1_testimonail_main_img::after{
	content: '';
    border-radius: 500px 500px 0px 0px;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    overflow: hidden;
    width: 395px;
    height: 400px;
    border-color: var(--primary-color);
    position: absolute;
    left: -10px;
    top: 25px;
}
.dav1_testimonail_left{
	padding-right: 120px;
	position: relative;
}
.dav1_testimonail_arrow_shape{
	width: 155px;
	height: 155px;
	position: absolute;
	right: 75px;
    bottom: 20%;
	-webkit-animation: movebounce 3.9s linear infinite;
    animation: movebounce 3.9s linear infinite;
}
.dav1_testimonail_sicoal{
	position: absolute;
    top: -90px;
    right: 0;
}
.dav1_testimonail_sicoal img{
	width: auto;
}
/*--------- Testimonail css End -------*/
/*--------- brand css Start -------*/
.dav1_brand_heading{
	text-align: center;
	margin-top: 100px;
	position: relative;
}
.dav1_brand_heading::before{
	content: '';
	height: 1px;
	background-color: #D9D9D9;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
}
.dav1_brand_heading h3{
	color: var(--black-color);
	font-size: 16px;
	line-height: 30px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--font-mulish);
	background-color: var(--white-color);
	display: inline-block;
	position: relative;
    z-index: 1;
    padding: 0 40px;
}
.dav1_brand_slider_wrapper{
	padding-top: 60px;
}
.dav1_brand_logo img{
	max-width: 100%;
}
/*--------- brand css End -------*/
/*--------- Contact css Start -------*/
.dav1_contact_wrapper{
	display: flex;
	padding: 0 25px;
}
.dav1_contact_left{
	flex: 0 0 50%;
	max-width: 50%;
	min-height: 100%;
	max-height: 100%;
}
.dav1_contact_left img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-top-left-radius: 50px;
    -moz-border-top-left-radius: 50px;
    border-top-left-radius: 50px;
	-webkit-border-bottom-left-radius: 50px;
    -moz-border-bottom-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.dav1_contact_right{
	flex: 0 0 50%;
	max-width: 50%;
	padding: 100px;
	background-color: #F5F5F5;
	-webkit-border-top-right-radius: 50px;
    -moz-border-top-right-radius: 50px;
    border-top-right-radius: 50px;
	-webkit-border-bottom-right-radius: 50px;
    -moz-border-bottom-right-radius: 50px;
    border-bottom-right-radius: 50px;
	position: relative;
}
.dav1_contact_right_bg_img{
	position: absolute;
	inset: 0;
}
.dav1_contact_right_bg_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dav1_contact_right .dav1_heading h3{
	line-height: 60px;
	max-width: 80%;
	margin-bottom: 20px;
}
.dav1_input_wrapper{
	margin-top: 30px;
}
.dav1_input_wrapper input{
	width: 100%;
	height: 60px;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	padding: 0 20px;
	font-size: 16px;
	color: var(--heading-color);
	outline: none;
	background: transparent;
	transition: 300ms;
}
.dav1_input_wrapper input:hover,
.dav1_input_wrapper input:focus,
.dav1_input_wrapper textarea:hover,
.dav1_input_wrapper textarea:focus{
	border: 1px solid var(--primary-color);
}
.dav1_input_wrapper textarea{
	width: 100%;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	padding: 20px;
	font-size: 16px;
	color: var(--heading-color);
	outline: none;
	background: transparent;
	transition: 300ms;
	resize: none;
}
.dav1_input_wrapper .dav1_primary_btn{
	outline: none;
	border: 0;
}
.dav1_contact_right_inner{
	display: flex;
	flex-direction: column;
	height: 100%;
    justify-content: center;
	position: relative;
}
/*--------- Contact css End -------*/
/*--------- Blog css Start -------*/
.dav1_blog_wrapper{
	padding: 100px 0;
}
.dav1_blog_left p{
	color: var(--subheading-color);
	font-size: 16px;
	line-height: 30px;
	margin-top: 30px;
	max-width: 80%;
}
.dav1_blog_left .dav1_primary_btn{
	margin-top: 30px;
	margin-right: 10px;
}
.dav1_blog_image{
	width: 100%;
	height: 240px;
	padding-left: 20px;
	position: relative;
}
.dav1_blog_image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-top-left-radius: 20px;
    -moz-border-top-left-radius: 20px;
    border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
    -moz-border-top-right-radius: 20px;
    border-top-right-radius: 20px;
}
.dav1_blog_date{
	position: absolute;
    bottom: -47px;
    right: 15px;
	width: 70px;
    height: 85px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top-left-radius: 50px;
    background-color: var(--white-color);
    z-index: 2;
	transition: 300ms;
}
.dav1_blog_content{
	position: relative;
	padding-right: 20px;
    padding-left: 39px;
    padding-top: 10px;
    padding-bottom: 15px;
    border-radius: 25px 0 0 25px;
    overflow: hidden;
    transition: all 400ms ease;
}
.dav1_blog_content::before{
	content: "";
    position: absolute;
    left: 0px;
    top: -1px;
    height: 100%;
    transform: scale(0.996);
    width: 100%;
    border-radius: 25px 0 0 25px;
    background-color: var(--white-color);
    clip-path: polygon(0% 8.162%, 0% 8.162%, 0.077% 6.858%, 0.301% 5.621%, 0.66% 4.467%, 1.14% 3.414%, 1.731% 2.478%, 2.42% 1.674%, 3.194% 1.02%, 4.042% 0.533%, 4.952% 0.228%, 5.91% 0.123%, 100% 0.123%, 100% 75.118%, 100% 75.118%, 99.97% 75.927%, 99.881% 76.719%, 99.737% 77.49%, 99.538% 78.234%, 99.287% 78.946%, 98.985% 79.622%, 98.636% 80.255%, 98.24% 80.841%, 97.801% 81.374%, 97.32% 81.85%, 78.634% 98.436%, 78.634% 98.436%, 78.341% 98.68%, 78.039% 98.9%, 77.729% 99.095%, 77.412% 99.265%, 77.089% 99.409%, 76.76% 99.529%, 76.426% 99.622%, 76.088% 99.689%, 75.747% 99.73%, 75.404% 99.743%, 5.91% 99.743%, 5.91% 99.743%, 4.952% 99.638%, 4.042% 99.333%, 3.194% 98.846%, 2.42% 98.192%, 1.731% 97.389%, 1.14% 96.452%, 0.66% 95.399%, 0.301% 94.245%, 0.077% 93.008%, 0% 91.705%, 0% 8.162%);
    z-index: 1;
}
.dav1_blog_content::after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #b4b4b4;
    clip-path: polygon(0% 8.162%, 0% 8.162%, 0.077% 6.858%, 0.301% 5.621%, 0.66% 4.467%, 1.14% 3.414%, 1.731% 2.478%, 2.42% 1.674%, 3.194% 1.02%, 4.042% 0.533%, 4.952% 0.228%, 5.91% 0.123%, 100% 0.123%, 100% 75.118%, 100% 75.118%, 99.97% 75.927%, 99.881% 76.719%, 99.737% 77.49%, 99.538% 78.234%, 99.287% 78.946%, 98.985% 79.622%, 98.636% 80.255%, 98.24% 80.841%, 97.801% 81.374%, 97.32% 81.85%, 78.634% 98.436%, 78.634% 98.436%, 78.341% 98.68%, 78.039% 98.9%, 77.729% 99.095%, 77.412% 99.265%, 77.089% 99.409%, 76.76% 99.529%, 76.426% 99.622%, 76.088% 99.689%, 75.747% 99.73%, 75.404% 99.743%, 5.91% 99.743%, 5.91% 99.743%, 4.952% 99.638%, 4.042% 99.333%, 3.194% 98.846%, 2.42% 98.192%, 1.731% 97.389%, 1.14% 96.452%, 0.66% 95.399%, 0.301% 94.245%, 0.077% 93.008%, 0% 91.705%, 0% 8.162%);
}
.dav1_blog_meta{
	position: relative;
    z-index: 1;
	padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e0fa;
}
.dav1_blog_meta{
	display: flex;
	align-items: center;
	gap: 10px;
}
.dav1_blog_icon{
	position: relative;
}
.dav1_blog_comment{
	display: flex;
	align-items: center;
	gap: 5px;
}
.dav1_blog_comment .blog_icon{
	color: var(--primary-color);
	font-size: 14px;
}
.dav1_blog_comment .comment_link{
	color: #a1a1a1;
	font-size: 14px;
	line-height: 26px;
}
.dav1_blog_comment .comment_link:hover{
	color: var(--primary-color);
}
.dav1_blog_title{
	font-size: 23px;
	line-height: 32px;
	color: var(--heading-color);
	position: relative;
	z-index: 1;
	font-weight: 700;
}
.dav1_blog_title:hover{
	color: var(--primary-color);
}
.dav1_blog_readmore{
	position: relative;
	z-index: 1;
	margin-top: 30px;
}
.dav1_blog_readmore::before{
	content: "";
    position: absolute;
    top: 14px;
    left: 30%;
    width: 45%;
    height: 2px;
    background-color: #e6e0fa;
    transition: all 300ms ease;
}
.dav1_readmore_text{
	font-size: 14px;
	line-height: 26px;
	color: #352f27;
}
.dav1_readmore_text:hover{
	color: var(--primary-color);
}
.dav1_readmore_btn{
	position: absolute;
    right: 0;
    bottom: -12px;
    font-size: 0;
    color: transparent;
    width: 56px;
    height: 56px;
}
.dav1_readmore_btn::before{
	content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    width: 56px;
    height: 56px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid var(--primary-color);
    background-color: var(--white-color);
    color: var(--black-color);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: var(--transition);
    z-index: -1;
}
.dav1_blog_date p{
	font-size: 20px;
    line-height: 26px;
    font-weight: 800;
	color: var(--heading-color);
	transition: 300ms;
}
.dav1_blog_date p.date-month{
	font-size: 16px;
	color: var(--subheading-color);
	font-weight: 400;
}
.dav1_blog_card:hover .dav1_blog_date{
	background-color: var(--primary-color);
}
.dav1_blog_card:hover .dav1_blog_date p{
	color: var(--white-color);
}
.dav1_blog_card:hover .dav1_readmore_btn::before{
	background-color: var(--primary-color);
	color: var(--white-color);
}
/*--------- Blog css End -------*/
/*--------- Footer css Start -------*/
.dav1_footer_wrapper{
	padding: 0 25px 25px;
	background: var(--section-bg-1);
	position: relative;
}
.dav1_footer_inner{
	background-color: #171717;
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}
.dav1_footer_bg_img{
	position: absolute;
	bottom: 0;
	left: 15%;
}
.dav1_footer_wrapper #row-edit{
	position: relative;
	z-index: 1;
}
.dav1_footer_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.dav1_footer_social ul li a{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	color: var(--primary-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: var(--white-color);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.09)
}
.dav1_footer_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.dav1_footer_center{
	margin-top: 35px;
	padding-left: 100px;
}
.dav1_footer_left{
	padding-left: 0 !important;
}
.dav1_footer_center h3{
	font-size: 23px;
    line-height: 32px;
    font-weight: 600;
	text-transform: capitalize;
    color: var(--white-color);
}
.dav1_footer_links{
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 25px;
	align-items: flex-start;
}
.dav1_footer_links a{
	color: var(--white-color);
	position: relative;
}
.dav1_footer_links a:after{
	content: '';
    border: 1px solid var(--primary-color);
    width: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: -3px;
    transition: var(--transition);
	opacity: 0;
	visibility: hidden;
}
.dav1_footer_links a:hover:after{
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.dav1_footer_links a:hover{
	color: var(--primary-color);
}
.dav1_footer_contact{
	display: flex;
	align-items: center;
	gap: 15px;
}
.dav1_footer_contact .contact_footer_icon{
	width: 20px;
	flex: 0 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
}
.dav1_footer_contact p{
	word-break: break-word;
	color: var(--white-color);
}
.dav1_footer_contact_wrap{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}
.dav1_botttom_footer{
	text-align: left;
	margin-top: 40px;
	padding: 20px 0;
	padding-bottom: 40px;
	position: relative;
	z-index: 1;
}
.dav1_botttom_footer p{
	font-size: 14px;
	color: var(--white-color);
}
.dav1_top_footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.349);

}
.dav1_top_footer_left img{
	max-width: 180px;
	width: 100%;
}
.dav1_top_footer_left h4{
	font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--heading-color);
}
.dav1_top_footer_left p{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
	margin-top: 15px;
}
.dav1_top_footer_right .social-icons{
	display: flex;
		align-items: center;
		gap: 12px;
		position: unset;
		opacity: 1;
		visibility: visible;
		flex-direction: row;
}
.dav1_top_footer_right .social-icons li a{
	width: 48px;
    height: 48px;
	flex: 0 0 48px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
} 
.dav1_top_footer_right .social-icons li a:hover{
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
}
.dav1_top_footer_right .social-icons li a:hover i{
	transform: rotateY(180deg);
}
/*--------- Footer css End -------*/

/* Form Validation Styles */
#contactForm input[type="text"].error,
#contactForm input[type="email"].error,
#contactForm input[type="tel"].error,
#contactForm textarea.error {
  border-color: #dc3545;
}
#contactForm .error-message {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
#contactForm .error-message.show {
  display: block;
}

/* Success Modal Styles */
.form-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
  position: relative;
}

.form-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.form-modal-close:hover,
.form-modal-close:focus {
  color: #000;
  text-decoration: none;
}

.form-modal-body {
  padding: 40px 30px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  font-weight: bold;
  animation: scaleIn 0.3s ease 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.form-modal-body h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.form-modal-body p {
  margin: 0 0 25px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.form-modal-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.form-modal-btn:hover {
  background-color: var(--primary-color);
}

.form-modal-btn:active {
  transform: scale(0.98);
}

#scroll {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 48px;
	height: 48px;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: transparent;
	border: none;
  }
  .scroll-progress {
	position: absolute;
	top: 0; left: 0;
	width: 48px; height: 48px;
	transform: rotate(-90deg); /* start from top */
  }
  .scroll-bg {
	stroke: #eee;
  }
  .scroll-bar {
	stroke: var(--primary-color);
	transition: stroke-dashoffset 0.3s cubic-bezier(.4,0,.2,1);
  }
  .scroll-arrow {
	position: absolute;
	left: 0; right: 0; top: 0; bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--primary-color);
	z-index: 2;
	pointer-events: none;
  }
/*--------- Media css start -------*/
@media (min-width: 1400px) {
    .container{
        max-width: 1320px;
    }
}
@media (max-width: 1500px){
	.dav1_about_cont_left {
		flex: calc(100% - 300px);
		max-width: calc(100% - 300px);
	}
	.dav1_about_cont_right {
		flex: 0 0 300px;
		max-width: 300px;
	}
}
@media (max-width: 1400px) {
    .container{
        max-width: 100%;
		padding: 0 30px;
    }
	.dav1_header_contact{
		padding-right: 35px;
		gap: 12px;
	}
	.dav1_nav_wrapper ul{
		gap: 5px;
	}
	.dav1_footer_contact_icon .contact_header_icon{
		width: 40px;
    	height: 40px;
	}
	.dav1_header_logo_wrapper img {
		height: 30px;
	}
	.dav1_banner_content{
		padding-left: 100px;
	}
	.dav1_banner_content h2 {
		font-size: 60px;
		line-height: 70px;
	}
	.dav1_banner_content h4 {
		font-size: 28px;
		line-height: 34px;
	}
	.dav1_about_cont_left {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.dav1_about_cont_right {
		display: none;
	}
	.dav1_about_wrapper {
		padding-left: 50px;
	}
	.dav1_about_shape_image img{
		width: 270px;
	}
	.dav1_about_shape_image {
		bottom: -35px;
	}
	.dav1_hiw_icon img{
		width: 125px;
	}
	.dav1_wcu_content_wrapper {
		padding-left: 15px;
	}
	.dav1_heading h3 {
		font-size: 44px;
		line-height: 55px;
	}
	.dav1_filter_gallery{
		height: 500px;
	}
	.dav1_testimonail_main_img::after{
		width: 330px;
	}
	.dav1_footer_bg_img {
		left: 3%;
	}
}
@media (max-width: 1199px){
	.dav1_header_contact{
		display: none;
	}
	.dav1_header_nav_wrapper {
		margin-right: auto;
	}
	.dav1_banner_content h2 {
        font-size: 40px;
        line-height: 50px;
    }
	.dav1_heading h3 {
		font-size: 40px;
		line-height: 50px;
	}
	.dav1_about_cont {
		padding-left: 15px;
	}
	.dav1_about_image {
		height: 450px;
	}
	.dav1_about_shape_image img {
        width: 200px;
    }
	.dav1_about_shape_image {
		left: -55px;
	}
	.dav1_banner_image{
		opacity: 0.6;
	}
	.dav1_banner_parallax_text h3 {
		font-size: 100px;
	}
	.dav1_hiw_card {
		padding: 62px 25px;
	}
	.dav1_service_left_cont a {
		font-size: 48px;
		line-height: 58px;
	}
	.dav1_service_left_cont p {
		font-size: 34px;
		line-height: 44px;
	}
	.dav1_service_left_cont{
		padding: 15px 0;
	}
	.dav1_filter_gallery{
		height: 350px;
	}
	.dav1_contact_right{
		padding: 50px;
	}
	.dav1_footer_center {
		padding-left: 0;
	}
}
@media (max-width: 991px){
	.dav1_header_wrapper {
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
	}
	.el_header_mob_toggle_btn{
		display: block;
	}
	.dav1_header_nav_wrapper{
		position: fixed;
        background: var(--white-color);
        left: -310px;
        top: 0;
        height: 100vh;
        bottom: 0;
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);
        width: 280px;
        z-index: 10;
        overflow-y: auto;
        transition: var(--transition);
	}
	.sidebar-active .dav1_header_nav_wrapper{
		left: 0;
	}
	.dav1_nav_wrapper ul{
		display: block;
		padding: 35px 0px;
	}
	.dav1_nav_wrapper ul li a{
        width: 100%;
        display: inline-block;
        padding: 10px 15px;
        border-bottom: 1px solid #E4E4E4;
		font-weight: 500;
	}
	.dav1_nav_wrapper ul li a.active{
		background: var(--primary-color);
		color: var(--white-color);
	}
	.dav1_nav_wrapper ul li a.active:after, .dav1_nav_wrapper ul li:hover a:after{
		display: none;
	}
	#close-sidebar{
		display: block;
	}
	.dav1_nav_wrapper{
		position: relative;
	}
	#close-sidebar{
		position: absolute;
		right: 9px;
        top: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 25px;
		height: 25px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-khtml-border-radius: 3px;
		border: 1px solid #E4E4E4;
		background: #fff;
		cursor: pointer;
		z-index: 1;
		font-size: 21px;
		color: var(--primary-color);
	}
	.dav1_header_inner {
		padding: 20px 30px !important;
	}
	.dav1_banner_inner::before, .dav1_header_contact_btn, .dav1_banner_image, .dav1_testimonail_arrow_shape{
		display: none;
	}
	.dav1_banner_wrapper {
		padding: 0;
	}
	.dav1_banner_inner {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.dav1_banner_content {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 100px 30px;
	}
	.circle, .dav1_banner_video_btn {
		right: 25px;
		top: auto;
		bottom: 25px;
	}
	.dav1_about_image_wrapper{
		display: none;
	}
	.dav1_about_wrapper {
		padding: 60px 15px !important;
	}
	.dav1_about_cont {
        padding-left: 0;
    }
	.dav1_about_cont_left{
		padding-right: 0;
	}
	.dav1_heading h3 {
        font-size: 28px;
        line-height: 38px !important;
    }
	.dav1_hiw_wrapper {
		padding: 60px 0;
	}
	.dav1_hiw_number p {
		font-size: 22px;
	}
	.dav1_hiw_number {
		top: -25px;
	}
	.dav1_hiw_card h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.dav1_hiw_card {
        padding: 40px 25px;
    }
	.dav1_services_main_wrapper {
		padding: 0;
	}
	.dav1_services_main_inner{
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		padding-bottom: 40px;
	}
	.dav1_service_large_list_img {
		position: unset;
		opacity: 1;
		visibility: visible;
		transform: scaleX(1);
	}
	.dav1_service_left_cont a {
        font-size: 34px;
        line-height: 44px;
    }
	.dav1_service_right_cont a:before,.dav1_service_right_cont a{
		width: 50px;
		height: 50px;
	}
	.dav1_service_left_cont{
		gap: 15px;
	}
	.dav1_service_large_list:hover .dav1_service_large_list_cont{
    	padding-left: 0;
	}
	.dav1_wcu_inner{
		padding-top: 60px;
	}
	.dav1_wcu_content_wrapper {
        padding-left: 0;
		padding-top: 40px;
    }
	.dav1_wcu_wrapper:before, .dav1_wcu_inner::after{
		display: none;
	}
	.dav1_project_wrapper {
		padding: 60px 15px;
	}
	.dav1_team_inner{
		padding: 60px 0;
		padding-bottom: 40px;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	.dav1_team_main_wrapper{
		padding: 0;
	}
	.dav1_testimonail_main_img, .dav1_testimonail_left::before, .dav1_testimonail_main_wrapper:before,
	.dav1_wcu_right_shape{
		display: none;
	}
	.dav1_testimonail_left{
		padding-right: 0;
	}
	.dav1_testimonail_main_wrapper{
		padding-top: 60px;
	}
	.dav1_testimonail_descition {
		padding-right: 0;
	}
	.dav1_contact_wrapper {
		flex-direction: column;
	}
	.dav1_contact_left{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.dav1_contact_right{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.dav1_contact_left img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		-webkit-border-bottom-left-radius: 0;
		-moz-border-bottom-left-radius: 0;
		border-bottom-left-radius: 0;
		-webkit-border-top-right-radius: 20px;
		-moz-border-top-right-radius: 20px;
		border-top-right-radius: 20px;
		-webkit-border-top-left-radius: 20px;
		-moz-border-top-left-radius: 20px;
		border-top-left-radius: 20px;
	}
	.dav1_contact_right{
		-webkit-border-top-right-radius: 0;
		-moz-border-top-right-radius: 0;
		border-top-right-radius: 0;
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	.dav1_testimonail_main_wrapper {
		padding-bottom: 60px;
	}
	.dav1_blog_wrapper {
		padding: 60px 0;
	}
	.dav1_blog_left p{
		margin-top: 15px;
	}
	.dav1_blog_wrapper .dav1_blog_card{
		margin-top: 40px;
	}
	.dav1_footer_inner{
		padding-top: 40px;
	}
	.dav1_footer_bg_img {
        left: -190px;
    }
	.dav1_banner_top_shape{
		display: none;
	}
}
@media (max-width: 767px){
	.container{
        max-width: 100%;
		padding: 0 15px;
    }
	.dav1_header_inner {
		padding: 20px 15px !important;
	}
	.circle{
		display: none;
	}
	.dav1_banner_content{
		text-align: center;
		padding: 100px 15px;
	}
	.dav1_banner_parallax_text h3 {
		font-size: 65px;
	}
	.dav1_banner_content h2 {
        font-size: 32px;
        line-height: 42px;
    }
	.dav1_banner_content h4 {
        font-size: 24px;
        line-height: 30px;
		margin-top: 30px;
    }
	.dav1_banner_content h6 {
		font-size: 14px;
		padding: 10px 15px;
	}
	.dav1_about_wrapper {
        padding: 60px 0 !important;
    }
	.dav1_heading h3 {
		font-size: 28px;
        line-height: 38px !important;
    }
	.dav1_about_list{
		padding: 30px 20px;
		padding-top: 15px;
	}
	.dav1_about_list ul li{
		font-weight: 600;
		font-size: 16px;
	}
	.dav1_service_large_list {
		margin-top: 30px;
	}
	.dav1_wcu_header h5 {
		font-size: 18px;
		line-height: 28px;
	}
	.dav1_wcu_header .wcu_icon{
		flex: 0 0 60px;
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
	.dav1_wcu_box {
		margin-top: 30px;
	}
	.dav1_wcu_img_wrapper, .dav1_wcu_img_right {
		gap: 15px;
	}
	.dav1_wcu_btn {
		margin-top: 40px;
	}
	.dav1_project_wrapper {
		padding: 60px 0;
	}
	.dav1_team_img {
		height: 260px;
	}
	.dav1_testimonail_thumnail_slider::before, .dav1_banner_video_btn, .dav1_wcu_video_btn{
		display: none;
	}
	.dav1_testimonail_thumnail_slider .slick-prev{
		left: 0;
		right: auto;
		top: auto;
		transform: none;
		bottom: -80px;
	}
	.dav1_testimonail_thumnail_slider .slick-next{
		left: 60px;
		right: auto;
		top: auto;
		transform: none;
		bottom: -80px;
	}
	.dav1_brand_heading{
		margin-top: 130px;
	}
	.dav1_brand_slider_wrapper {
		padding-top: 40px;
	}
	.dav1_contact_right {
        padding: 30px;
    }
	.dav1_contact_wrapper {
		padding: 0 15px;
	}
	.dav1_footer_wrapper {
		padding: 0;
	}
	.dav1_footer_inner {
		border-radius: 0;
	}
	.dav1_team_cont {
		padding: 20px 20px 10px;
	}
}
@media (max-width: 580px){
	.dav1_about_list ul {
		flex-direction: column;
	}
	.dav1_about_list ul li{
		flex: 0 0 100%;
        max-width: 100%;
	}
	.dav1_service_left_cont a, .dav1_service_left_cont p {
        font-size: 24px;
        line-height: 34px;
    }
	.dav1_service_large_list_cont{
		gap: 10px;
	}
	.dav1_wcu_inner::before{
		width: 100%;
	}
	.dav1_wcu_img_left{
		height: 300px;
	}
	.dav1_wcu_img_right_top {
		height: 150px;
	}
	.dav1_wcu_header .wcu_icon{
		background-color: var(--primary-color);
		color: var(--white-color);
	}
	.dav1_filter_gallery_overlay .dav1_project_title {
		font-size: 22px;
		line-height: 28px;
	}
	.dav1_blog_title {
		font-size: 18px;
		line-height: 28px;
	}
	.dav1_blog_date {
		bottom: 0;
	}
	.dav1_blog_content{
		padding-left: 25px;
	}
	.dav1_top_footer{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 15px;
	}
}
/*--------- Media css end -------*/

/* Custom Lightbox Styles Start*/
.custom-lightbox {
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background: rgba(0,0,0,0.8);
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
	z-index: 1050;
  }
  .custom-lightbox.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
  }
  .custom-lightbox-content {
	max-width: 90vw;
	max-height: 80vh;
	margin: auto;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.4);
	background: #fff;
	padding: 8px;
	opacity: 1;
	transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .custom-lightbox-content.fade {
	opacity: 0;
  }
  .custom-lightbox-close {
	position: absolute;
	top: 24px;
	right: 40px;
	color: #fff;
	font-size: 2.5rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 1100;
	transition: color 0.2s;
  }
  .custom-lightbox-close:hover {
	color: #ff5252;
  }
  .bs_normal_list ul{
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  /* Lightbox Arrow Styles */
  .custom-lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 1100;
	user-select: none;
	padding: 0 16px;
	transition: color 0.2s;
  }
  .custom-lightbox-prev {
	left: 10px;
  }
  .custom-lightbox-next {
	right: 10px;
  }
  .custom-lightbox-arrow:hover {
	color: #ff5252;
  }
  
  .gallery-item {
	position: relative;
  }
  .lightbox-open-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(44, 62, 80, 0.85);
	color: #fff;
	border: none;
	border-radius: 24px;
	padding: 10px 28px;
	font-size: 1.1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	cursor: pointer;
  }
  .gallery-item:hover .lightbox-open-btn,
  .gallery-item:focus-within .lightbox-open-btn {
	opacity: 1;
	pointer-events: auto;
  }
  
  .custom-lightbox-content#lightboxVideo {
	width: 90vw;
	height: 50vw;
	max-width: 900px;
	max-height: 70vh;
	background: #000;
	display: none;
  }
  @media (max-width: 600px) {
	.custom-lightbox-content#lightboxVideo {
	  width: 98vw;
	  height: 56vw;
	  max-width: 100vw;
	  max-height: 40vh;
	}
  }
/* Custom Lightbox Styles End*/

/*--------- Edit Mode css start -------*/
.edit-mode .dav1_footer_contact_icon_cont p{
	margin-top: 20px;
}
.edit-mode .dav1_banner_top_shape, .edit-mode .dav1_about_cont_left .row-edit-btn, .edit-mode .dav1_service_bot_wrapper .row-edit-btn,
.edit-mode .dav1_filter_gallery:after, .edit-mode .dav1_filter_btn .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_testimonail_top_slider .row-edit-btn, .edit-mode .dav1_testimonail_thumnail_slider .row-edit-btn, .edit-mode .dav1_brand_slider_wrapper .row-edit-btn{
	display: none !important;
}
.edit-mode .dav1_header_contact .icon-edit-btn-wrapper{
	left: 0;
    right: 0;
    top: -28px;
    margin: 0 auto;
}
.edit-mode .dav1_banner_parallax_text h3{
	font-size: 30px;
    color: #fff;
	z-index: 10;
	left: 50px;
}
.edit-mode .portfolio-progressbar {
    padding-top: 35px;
	margin-bottom: 50px;
}
.edit-mode .dav1_service_large_list,
.edit-mode .dav1_testimonail_descition, .edit-mode .dav1_brand_logo{
    margin-top: 0;
    margin-bottom: 50px;
}
.edit-mode .dav1_service_large_list .dav1_service_large_list_img {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
	overflow: visible;
}
.edit-mode .dav1_service_large_list .dav1_service_large_list_cont {
    padding-left: 368px;
}
.edit-mode .dav1_wcu_content_wrapper #row-edit{
	margin-top: 55px;
}	
.edit-mode .dav1_wcu_box{
	margin-top: 0;
	margin-bottom: 70px;
	padding-top: 30px;
}
.edit-mode .dav1_wcu_box .dav1_wcu_header .wcu_icon{
	background-color: var(--white-color);
	color: var(--primary-color);
	transform: rotateY(0deg);
}
.edit-mode .dav1_wcu_box .icon-edit-btn-wrapper{
	left: 12px;
    top: -13px;
}
.edit-mode .dav1_filter_gallery,
.edit-mode .dav1_team_card{
	margin-top: 0;
	margin-bottom: 50px;
	overflow: visible;
	height: auto;
}
.edit-mode .dav1_filter_gallery .dav1_filter_gallery_overlay{
	bottom: 0;
	opacity: 1;
    visibility: visible;
	position: unset;
	background: #7d7d7d;
}
.edit-mode .dav1_filter_gallery img {
    transform: scale(1);
}
.edit-mode .dav1_filter_gallery_overlay h5{
	margin-bottom: 30px;
}
.edit-mode .dav1_team_card:hover{
	background-color: #222222;
}
.edit-mode .dav1_team_card .social-icons {
    bottom: 45px;
    visibility: visible;
    opacity: 1;
}
.edit-mode .dav1_team_cont p,
.edit-mode .dav1_testimonail_descition h5{
	margin-top: 20px;
}
.edit-mode .dav1_team_social #add-social-link-btn{
	white-space: nowrap;
}
.edit-mode .dav1_testimonail_main_wrapper {
	padding-top: 100px;
}
.edit-mode .dav1_testimonail_top_slider .column-toolbar{
	left: 0;
}
.edit-mode .dav1_testimonail_thumb{
	margin-bottom: 40px;
}
.edit-mode .dav1_brand_logo{
	display: inline-block;
}
.edit-mode .dav1_blog_date, .edit-mode .dav1_blog_content{
	overflow: visible;
}
.edit-mode .dav1_blog_meta .editable-anchor .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_blog_content .editable-anchor .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_team_card .editable-anchor .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_filter_gallery_overlay .editable-anchor .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_service_large_list_cont .editable-anchor .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_banner_content .dav1_banner_video_btn .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_banner_content .dav1_banner_video_btn .anchor-button-wrapper .anchor-delete-btn,
.edit-mode .dav1_wcu_img_wrapper .dav1_wcu_video_btn .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .dav1_wcu_img_wrapper .dav1_wcu_video_btn .anchor-button-wrapper .anchor-delete-btn{
	display: none;
}
.edit-mode .dav1_blog_meta .icon-edit-btn-wrapper{
	left: -8px;
    top: -23px;
}
.edit-mode .dav1_blog_content{
	padding-left: 20px;
}
.edit-mode .dav1_blog_meta{
	gap: 25px;
}
.edit-mode .dav1_banner_content .circle{
	z-index: -1;
}
.edit-mode .circle .text{
	animation: rotateText 0s linear infinite;
		-webkit-animation: rotateText 0s linear infinite;
}
.edit-mode .dav1_wcu_video_btn{
	z-index: 100;
}
.edit-mode .dav1_header_contact_btn .anchor-button-wrapper .anchor-duplicate-btn, .color-switcher, 
.edit-mode .dav1_wcu_btn .anchor-button-wrapper .anchor-duplicate-btn{
	display: none !important;
}
.edit-mode .dav1_footer_contact_icon .icon-edit-btn-wrapper{
    left: -3px;
    top: -33px;
}
.edit-mode .dav1_footer_contact{
	margin-top: 30px;
}
.edit-mode .dav1_footer_links a{
	margin-top: 20px;
}
/*--------- Edit Mode css end -------*/