@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
/* Portfolio Template Styles */
:root {
	--white-color: #ffffff;
	--black-color: #000000;
    --primary-color: #f68156;
	--background-color: #1d1d1d;
	--card-color: #3d2e2e;
	--text-color: #ffffff;
	/* --subheading-color: #f9004d; */
    --text-color: #08080899;
	--border-color: #5a4f4f;
    --light-bg: #ecf0f1;
	--font-opensans: "Open Sans", sans-serif;
	--font-poppins: "Poppins", sans-serif;
	--transition: .3s;
}


/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
body, html {
	font-family: var(--font-opensans);
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	color: var(--white-color);
	margin: 0;
	background-color: var(--background-color);
  	transition: var(--transition);
	  width: 100%;
	  height: 100%;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-poppins);
	font-weight: 500;
	margin: 0;
	color: var(--white-color);
}
p{
	margin: 0;
	padding: 0;
}
figure{
	margin: 0 !important;
  }
.pfv2_primary_btn{
	font-size: 14px;
	line-height: 24px;
    font-weight: 500;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: var(--white-color);
	background: transparent;
	padding: 6px 25px;
	padding-left: 62px;
	letter-spacing: 0.9px;
	font-family: var(--font-montserrat);
	transition: var(--transition);
	display: inline-flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
	position: relative;
	z-index: 3;
}  
.pfv2_primary_btn::after{
	content: '';
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid var(--white-color);
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -2;
}
.pfv2_primary_btn::before{
	content: "\f178";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--white-color);
	position: absolute;
	left: 0;
	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;
}
.pfv2_primary_btn:hover::before{
	width: 100%;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	justify-content: end;
    padding-right: 20px;
	transition: var(--transition);
}
.pfv2_primary_btn:hover::after{
	opacity: 0;
	visibility: hidden;
}
.pfv2_primary_btn:hover{
	color: var(--white-color);
	padding-left: 25px;
	padding-right: 45px;
}
/*--------- Comman css End -------*/
.pfv2_main_wrapper{
	position: relative;
    height: 100%;
	overflow: hidden;
}
.pfv2_main_wrapper section{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
	z-index: 0;
    opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity 0s ease .6s, -webkit-transform .6s ease .6s;
    transition: opacity 0s ease .6s, -webkit-transform .6s ease .6s;
    transition: transform .6s ease .6s, opacity 0s ease .6s;
    transition: transform .6s ease .6s, opacity 0s ease .6s, -webkit-transform .6s ease .6s;
	background-color: var(--background-color);
}
.pfv2_main_wrapper section.active{
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 1;
    opacity: 1;
    -webkit-transition: -webkit-transform .6s ease;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
}
/*--------- Header css Start -------*/
.pfv2_nav_toggle_wrapper{
	position: fixed;
    z-index: 10;
    top: 25px;
    left: 25px;
}
.pfv2_nav_toggle{
	width: 55px;
	height: 55px;
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	z-index: 2;
}
.pfv2_nav_hamburger{
	position: absolute;
	width: 16px;
	height: 2px;
	background-color: var(--white-color);
	left: 0;
    right: 0;
    margin: 0px auto;
    top: 50%;
    transform: translateY(-50%);
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.pfv2_nav_hamburger::before{
	content: '';
	position: absolute;
	width: 16px;
	height: 2px;
	background-color: var(--white-color);
	top: 0;
	left: 0;
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.pfv2_nav_hamburger::after{
	content: '';
	position: absolute;
	width: 16px;
	height: 2px;
	background-color: var(--white-color);
	top: 0;
	left: 0;
	-webkit-transform: translateY(6px);
	-moz-transform: translateY(6px);
	-ms-transform: translateY(6px);
	-o-transform: translateY(6px);
	transform: translateY(6px);
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.sidebar-active .pfv2_nav_hamburger{
	background-color: transparent;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.sidebar-active .pfv2_nav_hamburger::before{
	-webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
}
.sidebar-active .pfv2_nav_hamburger::after{
	-webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
}
.pfv2_nav_bg{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 55px;
	height: 55px;
	border-radius: 30px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	-webkit-transition: height 0.2s, box-shadow 0.2s;
	-moz-transition: height 0.2s, box-shadow 0.2s;
	transition: height 0.2s, box-shadow 0.2s;
	background-color: var(--card-color);
	border: 1px solid #5a4f4f;
}
.sidebar-active .pfv2_nav_bg{
	height: 100%;
}
.pfv2_nav_toggle_wrapper #nav-list{
	visibility: hidden;
	opacity: 0;
	height: 0;
	-webkit-transition: visibility 0.3s;
	-moz-transition: visibility 0.3s;
	transition: visibility 0.3s;
	position: relative;
	z-index: 2;
	padding-bottom: 15px;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list{
	visibility: visible;
	opacity: 1;
	height: 100%;
	-webkit-transition: visibility 0.3s;
	-moz-transition: visibility 0.3s;
	transition: visibility 0.3s;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item{
	position: relative;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item a{
	font-size: 14px;
	color: var(--white-color);
	line-height: 26px;
	padding: 10px 0 10px 70px;
    display: inline-block;
	position: relative;
    z-index: 1;
	transform: translateX(-20px);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
	text-transform: uppercase;
	font-family: var(--font-poppins);
	font-weight: 500;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item a::after{
	content: '';
    height: 16px;
    width: 3px;
    background-color: var(--primary-color);
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item.active a::after{
	opacity: 1;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item a:hover,
.pfv2_nav_toggle_wrapper #nav-list .menu-item a.active{
	color: var(--primary-color);
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item .menu_icon{
    position: absolute;
    top: 50%;
    transform: translateY(-56%);
	left: 0;
	transition: var(--transition);
	width: 55px;
    text-align: center;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item .menu_icon .menu_inicon{
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: .6;
	transition: transform 0.4s ease, opacity 0.4s ease;
	font-size: 14px;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item .menu_icon .menu_inicon{
	-webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
		opacity: 1;
}
.pfv2_nav_toggle_wrapper #nav-list .menu-item:hover .menu_icon,
.pfv2_nav_toggle_wrapper #nav-list .menu-item.active .menu_icon{
	color: var(--primary-color);
	transition: var(--transition);
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item a{
	transform: translateX(0);
	opacity: 1;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(1) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(1) .menu_icon .menu_inicon{
	transition-delay: 0.05s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(2) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(2) .menu_icon .menu_inicon{
	transition-delay: 0.1s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(3) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(3) .menu_icon .menu_inicon{
	transition-delay: 0.15s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(4) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(4) .menu_icon .menu_inicon{
	transition-delay: 0.2s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(5) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(5) .menu_icon .menu_inicon{
	transition-delay: 0.25s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(6) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(6) .menu_icon .menu_inicon{
	transition-delay: 0.3s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(7) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(7) .menu_icon .menu_inicon{
	transition-delay: 0.35s;
}
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(8) a,
.sidebar-active .pfv2_nav_toggle_wrapper #nav-list .menu-item:nth-child(8) .menu_icon .menu_inicon{
	transition-delay: 0.4s;
}
/*--------- Header css End -------*/
/*--------- Hero Banner css Start -------*/
.pfv2_hero_banner_wrapper{
	padding: 30px 0;
	display: flex;
	justify-content: center;
}
.pfv2_hero_banner{
	margin: auto;
	padding-left: 100px;
	padding-bottom: 40px;
}
.pfv2_hero_banner_inner::after{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-40%);
	max-width: 900px;
	height: 500px;
	width: 100%;
	border-radius: 100%;
	background-color: rgba(246, 129, 86, 0.502);
	filter: blur(200px);
}
.pfv2_hero_banner_inner{
	display: flex;
	align-items: center;
	padding-bottom: 80px;
	gap: 80px;
	position: relative;
	z-index: 2;
	max-width: 1430px;
	padding: 0 15px;
}
.pfv2_hero_user_name{
	display: flex;
	align-items: center;
	gap: 15px;
}
.pfv2_hero_right_img_wrapper h2{
	font-weight: 700;
    font-size: 60px;
    line-height: 62px;
    margin-bottom: 35px;
	color: var(--white-color);
}
.pfv2_hero_right_img_wrapper h2 span.pfv2_client_name{
	color: var(--primary-color);
}
.pfv2_hero_right_img_wrapper{
	flex: 0 0 650px;
	max-width: 650px;
	padding-top: 80px;
	position: relative;
}
.pfv2_hero_right_start .start_one{
	width: 80px;
    height: 80px;
    position: absolute;
    right: -50px;
    top: 25px;
}
.pfv2_hero_right_start .start_one path{
	fill: var(--primary-color);
}
.pfv2_hero_right_start .start_two{
	width: 50px;
    height: 50px;
    position: absolute;
    right: 30px;
    top: 75px;
}
.pfv2_hero_right_start .start_two path{
	fill: var(--white-color);
}
.pfv2_hero_left_content{
	flex: calc(100% - 650px);
	max-width: calc(100% - 650px);
	position: relative;
    z-index: 2;
	padding-top: 140px;
}
.pfv2_hero_left_content h5{
	font-size: 14px;
    color: var(--text-color);
    letter-spacing: 3px;
    text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
}
.pfv2_hero_name{
	display: flex;
	align-items: center;
	gap: 23px;
}
.pfv2_hero_left_content p{
	font-size: 16px;
    line-height: 30px;
    opacity: 0.9;
}
.pfv2_hero_left_content .pfv2_primary_btn{
	margin-top: 30px;
	margin-right: 10px;
}
.pfv2_hero_namebot{
	display: flex;
	align-items: center;
	gap: 15px;
}
.pfv2_hero_namebot h3{
	font-weight: 400;
    font-size: 60px;
    line-height: 62px;
    margin-bottom: 22px;
	color: var(--primary-color);
}
.pfv2_hero_namebot h3 span.pfv2_client_name{
color: var(--primary-color);
}
.pfv2_hero_right_img{
	position: relative;
	max-width: 450px;
    height: 500px;
	width: 100%;
	margin-left: auto;
}
.signature{
	position: absolute;
	bottom: -15px;
    right: -66px;
    color: var(--white-color);
    font-family: "Sacramento", cursive;
    z-index: 1;
    font-size: 28px;
	font-weight: 400;
}
.pfv2_hero_right_img::after{
	content: '';
	border: 8px solid var(--primary-color);
	inset: 0;
	position: absolute;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
}
.pfv2_hero_right_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	transform: translate(25px, 25px);
}
.pfv2_hero_exp_content{
	position: absolute;
	padding-right: 130px;
	right: 0;
    top: -55px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
    align-items: flex-end;
}
.pfv2_hero_exp_content img{
	width: 70px;
	height: 70px;
	position: absolute;
	right: 50px;
    top: -42px;
    transform: rotate(55deg);
	opacity: 0.7;
}
.pfv2_hero_exp_content h6{
	font-weight: 500;
	color: var(--white-color);
	font-size: 20px;
	line-height: 25px;
	position: relative;
	padding-left: 20px;
	letter-spacing: 1px;
}
.pfv2_hero_exp_content h6::before{
	content: '';
	width: 9px;
	height: 9px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: var(--white-color);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.pfv2_hero_exp_content ul{
	display: flex;
	gap: 20px;
}
.pfv2_hero_exp_content ul li{
	font-size: 14px;
	line-height: 15px;
	font-family: var(--font-poppins);
	position: relative;
	padding-left: 16px;
	color: var(--white-color);
	opacity: 0.9;
}
.pfv2_hero_exp_content ul li::before{
	content: '';
	width: 7px;
	height: 7px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: var(--white-color);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
/*--------- Hero Banner css End -------*/
/*--------- About css Start -------*/
.pfv2_about_wrapper{
	padding: 80px 0;
	padding-bottom: 30px;
}
.pfv2_about_left_cont{
	position: relative;
	padding: 0 100px;
}
.pfv2_about_exp_botbox{
	background-color: var(--card-color);
	width: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: relative;
    z-index: 1;
	padding: 20px 30px 25px 40px;
	text-align: left;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--border-color);
	margin-bottom: 30px;
}
.pfv2_about_count{
	display: flex;
	align-items: center;
	gap: 2px;
}
.pfv2_about_exp_botbox h3{
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: var(--font-poppins);
}
.pfv2_about_count i.about-plus-icon{
	font-weight: 400;
	font-size: 35px;
    transform: translateY(-8px);
	color: var(--primary-color);
	font-family: var(--font-poppins);
	font-style: normal;
}
.pfv2_about_exp_botbox h4{
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	color: var(--white-color);
	text-transform: uppercase;
	margin-top: 10px;
	opacity: 0.8;
	font-family: var(--font-opensans);
	padding-left: 45px;
	max-width: 140px;
	position: relative;
}
.pfv2_about_exp_botbox h4::before{
	content: '';
	content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 30px;
    height: 1px;
    background: var(--white-color);
	opacity: 0.8;
}
.pfv2_about_right_cont h5{
	font-size: 26px;
    color: var(--white-color);
    letter-spacing: 1px;
    text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 35px;
}
.pfv2_about_right_cont p{
	font-size: 16px;
    line-height: 30px;
    color: var(--text-color);
}
.pfv2_about_right_bot{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 30px;
	margin-top: 25px;
}
.pfv2_about_detail{
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 0 0 50%;
	max-width: 50%;
}
.pfv2_about_detail h6{
	font-size: 16px;
	color: var(--white-color);
	font-weight: 600;
	line-height: 26px;
	text-transform: capitalize;
}
.pfv2_about_detail p{
	font-size: 16px;
	color: var(--white-color);
	font-weight: 400;
	line-height: 26px;
	opacity: 0.8;
}
.pfv2_about_right_cont .pfv2_primary_btn{
	margin-top: 40px;
	margin-right: 10px;
}
.pfv2_about_right_exp_card .row{
	margin: 0 -15px;
}
.pfv2_about_right_exp_card .col{
	padding: 0 15px;
}
.pfv2_about_right_exp_card{
	position: relative;
}
.pfv2_about_right_exp_card::before{
	content: '';
    position: absolute;
    left: 0;
	right: 0;
	margin: 0px auto;
    top: 50%;
    transform: translateY(-60%);
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	opacity: 0.8;
    z-index: -1;
}
/*--------- About css End -------*/
/*--------- Services css Start -------*/
.pfv2_services_wrapper{
	padding: 120px 0;
	padding-bottom: 30px;
	position: relative;
}
.pfv2_heading_wrapper{
	text-align: center;
	margin: 0px auto;
	margin-bottom: 80px;
	max-width: 1040px;
	position: relative;
	z-index: 2;
}
.pfv2_services_wrapper .pfv2_heading_wrapper{
	margin-bottom: 80px;
}
.pfv2_heading_wrapper h5{
	font-size: 60px;
	line-height: 62px;
    color: var(--white-color);
    letter-spacing: 3px;
    text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}
.pfv2_heading_wrapper p{
	font-size: 22px;
    line-height: 30px;
    color: var(--primary-color);
	max-width: 700px;
	margin-left: auto;
	text-transform: uppercase;
	letter-spacing: 8px;
}
.pfv2_services_card_wrapper{
	background: var(--card-color);
	padding: 60px 45px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	text-align: left;
	margin-bottom: 50px;
	transition: var(--transition);
	border: 1px solid var(--border-color);
	position: relative;
    z-index: 1;
}
.pfv2_services_card_content{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.pfv2_services_icon{
	position: relative;
	margin-right: auto;
}
.pfv2_services_icon .pfv2_sericon{
    color: var(--primary-color);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    transition: var(--transition);
    font-size: 34px;
}
.pfv2_services_card_wrapper h4{
	font-size: 24px;
    line-height: 32px;
    font-weight: 600;
	color: var(--white-color);
	margin-bottom: 20px;
	transition: var(--transition);
	font-family: var(--font-poppins);
    text-transform: uppercase;
}
.pfv2_services_card_wrapper p{		
	font-size: 16px;
    line-height: 28px;
    color: var(--white-color);
	transition: var(--transition);
	opacity: 0.8;
}
.pfv2_services_wrapper .row{
	margin: 0 -25px;
}
.pfv2_services_wrapper .col{
	padding: 0 25px;
}

.pfv2_services_wrapper::before{
	content: '';
    position: absolute;
    left: 0;
    top: 10%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	opacity: 0.8;
	z-index: -1;
}
/*--------- Services css End -------*/
/*--------- Pricing css Start -------*/
.pfv2_pricing_wrapper{
	padding: 80px 0;
	padding-bottom: 0;
	position: relative;
}
.pfv2_pricing_wrapper::before{
	content: '';
    position: absolute;
    left: 0;
	right: 0;
	margin: 0px auto;
    top: 50%;
    transform: translateY(-30%);
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	z-index: -1;
	opacity: 0.8;
}
.pfv2_pricing_box{
	width: 100%;
	background-color: var(--card-color);
	border: 1px solid var(--border-color);
	padding: 60px;
	-webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
	margin-bottom: 50px;
}
.pfv2_pricing_top_cont{
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.pfv2_pricing_top_cont h3{
	font-size: 28px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 600;
	color: var(--white-color);
	margin-bottom: 30px;
}
.pfv2_pricing_top_cont h2{
	font-size: 50px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 400;
	color: var(--white-color);
}
.pfv2_pricing_top_cont h2 span{
	font-size: 28px;
	line-height: 35px;
	font-weight: 400;
}
.pfv2_pricing_top_cont p{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
	color: var(--white-color);
	opacity: 0.8;
	margin-top: 30px;
	max-width: 90%;
}
.pfv2_pricing_bot_cont h3{
	font-size: 28px;
    line-height: 35px;
    text-transform: capitalize;
    font-weight: 600;
	color: var(--white-color);
	margin-bottom: 30px;
}
.pfv2_pricing_bot_cont ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.pfv2_pricing_bot_cont ul li{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
	color: var(--white-color);
	opacity: 0.8;
	position: relative;
	padding-left: 35px;
}
.pfv2_pricing_bot_cont ul li::before{
	content: "\f058";
	font-family: "Font Awesome 6 free";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #67fe09;
}
.pfv2_pricing_wrapper .pfv2_primary_btn{
	margin-top: 50px;
	margin-right: 10px;
}
.pfv2_pricing_bot_cont ul li.cross-icon::before{
	content: "\f057";
	color: #ff6666;
}
.pfv2_pricing_wrapper .row{
	margin: 0 -25px;
}
.pfv2_pricing_wrapper .row .col{
	padding: 0 25px;
}
/*--------- Pricing css End -------*/
/*--------- Portfolio css Start -------*/
.pfv2_portfolio_wrapper{
	padding: 80px 0;
	padding-bottom: 50px;
}
.pfv2_portfolio_wrapper::before{
	content: '';
    position: absolute;
    left: 0;
    top: 10%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
    opacity: 0.8;
    z-index: -1;
}
.pfv2_portfolio_wrapper::after{
	content: '';
    position: absolute;
    right: 0;
    top: 100%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
    opacity: 0.8;
    z-index: -1;
}
.pfv2_portfolio_wrapper .pfv2_heading_wrapper{
	margin-bottom: 60px;
}
.pfv2_filter_nav{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}
.pfv2_filter_nav .filter-nav{
	font-size: 14px;
    line-height: 24px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 0;
    padding: 4px 20px;
    text-transform: capitalize;
	color: var(--white-color);
	background: var(--card-color);
	border: 1px solid var(--border-color);
	text-transform: uppercase;
	font-family: var(--font-opensans);
	letter-spacing: 1.3px;
	font-weight: 500;
}
.pfv2_filter_nav .filter-nav.is-checked{
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	font-weight: 600;
}
.pfv2_portfolio_wrapper .row{
	margin: 0 -15px;
}
.pfv2_portfolio_wrapper .col{
	padding: 0 15px;
}
.pfv2_filter_gallery{
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
	width: 100%;
	height: 440px;
}
.pfv2_filter_gallery:after{
	content: '';
	background: rgba(0, 0, 0, 0.50);
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.pfv2_filter_gallery:hover::after{
	transition: var(--transition);
	opacity: 1;
	visibility: visible;
}
.pfv2_filter_gallery img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	transition: all 1s ease;
}
.pfv2_filter_gallery:hover img{
	transform: scale(1.1);
}
.pfv2_filter_gallery_overlay{
	position: absolute;
	inset: 0;
	bottom: 0;
	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);
}
.pfv2_filter_gallery:hover .pfv2_filter_gallery_overlay{
	bottom: 0;
	transition: var(--transition);
}
.pfv2_filter_gallery:hover .pfv2_filter_gallery_overlay{
	opacity: 1;
	visibility: visible;
	transition: var(--transition);
}
.pfv2_filter_gallery_overlay h5{
	color: var(--white-color);
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: auto;
    background-color: var(--primary-color);
    padding: 1px 10px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.pfv2_filter_gallery_overlay h4{
	color: var(--white-color);
	font-size: 26px;
	line-height: 30px;
	font-weight: 600;
	max-width: 100%;
}

/* Custom Lightbox Styles Start*/
.custom-lightbox {
	display: flex;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	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: var(--primary-color);
  }
  
  /* 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: var(--primary-color);
  }
  
  .gallery-item {
	position: relative;
  }
  .lightbox-open-btn {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0px auto;
    background: var(--white-color);
    color: var(--primary-color);
    border: none;
    border-radius: 24px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
  }
  .lightbox-open-btn:hover{
	background: var(--primary-color);
	color: var(--white-color);
	transition: var(--transition);
  }
  .lightbox-open-btn:hover i{
	-webkit-animation: moveUp 0.8s linear;
    animation: moveUp 0.8s linear;
  }
  @-webkit-keyframes moveUp {
	0% {
	  opacity: 1;
	  transform: translateX(0px) translateY(0px) scale(1);
	}
	25% {
	  opacity: 0;
	  transform: translateX(10px) translateY(-10px) scale(0.9);
	}
	26% {
	  opacity: 0;
	  transform: translateX(-10px) translateY(10px) scale(0.9);
	}
	55% {
	  opacity: 1;
	  transform: translateX(0px) translateY(0px) scale(1);
	}
  }
  
  @keyframes moveUp {
	0% {
	  opacity: 1;
	  transform: translateX(0px) translateY(0px) scale(1);
	}
	25% {
	  opacity: 0;
	  transform: translateX(10px) translateY(-10px) scale(0.9);
	}
	26% {
	  opacity: 0;
	  transform: translateX(-10px) translateY(10px) scale(0.9);
	}
	55% {
	  opacity: 1;
	  transform: translateX(0px) translateY(0px) scale(1);
	}
  }
  
  .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*/
/*--------- Portfolio css End -------*/
/*--------- Resume css Start -------*/
.pfv2_resume_wrapper{
	padding: 80px 0;
	background: rgba(203, 51, 34, 0.02);
}
.pfv2_resume_wrapper .pfv2_heading_wrapper{
	margin-bottom: 80px;
}
.pfv2_resume_wrapper::before{
	content: '';
    position: absolute;
    left: 0;
    top: 10%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	opacity: 0.8;
	z-index: -1;
}
.pfv2_resume_wrapper::after{
	content: '';
    position: absolute;
	right: 0;
    top: 100%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	opacity: 0.8;
	z-index: -1;
}
.pfv2_resume_title{
	font-size: 20px;
	line-height: 25px;
	color: var(--white-color);
	font-weight: 600;
	text-transform: uppercase;
}
.pfv2_resume_card_wrapper{
	position: relative;
}
.pfv2_resume_card_wrapper::after{
	position: absolute;
    left: -38px;
    top: 0;
    content: "";
    height: 15px;
    width: 15px;
    background: var(--background-color);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
	transition: var(--transition);
}
.pfv2_resume_card_header{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.pfv2_resume_left_top_cont{
	display: flex;
	column-gap: 23px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
.pfv2_resume_left_top_cont h4{
	font-size: 16px;
    line-height: 24px;
	color: var(--white-color);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	transition: var(--transition);
}
.pfv2_resume_left_top_cont h4::after{
	content: '';
    border: 2px solid var(--white-color);
    opacity: 0.4;
    width: 10px;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}
.pfv2_resume_left_top_cont p{
	font-size: 16px;
	line-height: 24px;
	color: var(--white-color);
	font-weight: 400;
	opacity: 0.8;
	text-transform: uppercase;
}
.pfv2_resume_right_top_cont{
	display: flex;
	align-items: center;
	gap: 8px;
}
.pfv2_resume_calender_icon i{
	opacity: 0.8;
	color: var(--white-color);
}
.pfv2_resume_right_top_cont p{
    padding: 0;
    color: var(--white-color);
    display: inline-block;
	white-space: nowrap;
	font-size: 12px;
    font-weight: 400;
	opacity: 0.8;
}
.pfv2_resume_card_body p{
	font-size: 14px;
    line-height: 22px;
	color: var(--white-color);
	font-weight: 400;
	opacity: 0.8;
}
.pfv2_resume_inner_wrapper{
	padding-left: 30px;
    border-left: 1px solid var(--primary-color);
    margin-left: 8px;
    margin-top: 30px;
}
.pfv2_resume_inner_wrapper .row{
	gap: 30px;
}
.pfv2_resume_skills_wrapper{
	margin-top: 80px;
}
.portfolio-progressbar {
	margin-bottom: 50px;
  }
  .progressbar-label {
	font-weight: 500;
	margin-bottom: 16px;
	color: var(--white-color);
	font-size: 16px;
	font-family: var(--font-poppins);
	text-transform: uppercase;
  }
  .progressbar-track {
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	height: 1px;
	width: 100%;
	position: relative;
  }
  .progressbar-track::before{
	content: '';
	border: 1px solid var(--border-color);
	position: absolute;
	left: 0;
	top: 50%;
    width: 100%;
    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: 2px;
	width: 0;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	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);
	background: var(--background-color);
	border: 1px solid var(--primary-color);
	font-weight: 600;
	font-size: 12px;
	position: absolute;
	right: -23px;
    top: 50%;
    transform: translateY(-42px);
	letter-spacing: 1px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	padding: 3px 8px;
  }
  .progressbar-percent::after{
	width: 9px;
	height: 9px;
	border: 1px solid var(--primary-color);
	border-width: 0 1px 1px 0;
	background: var(--background-color);
	position: absolute;
	content: '';
	bottom: -5px;
	left: 0;
	right: 0;
	margin: 0px auto;
	transform: rotate(45deg) skew(3deg, 3deg);
  }
  .bs_portfolio_progressbar_wrapper {
	max-width: 600px;
	margin: 0 auto 40px auto;
	padding: 32px 18px 18px 18px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(80,80,120,0.07);
  }
  .pfv2_resume_skills_wrapper .pfv2_resume_title{
	margin-bottom: 40px;
  }
  .pfv2_resume_row{
	margin: 0 -30px;
  }
  .pfv2_resume_row .col-md-6,
  .pfv2_resume_row .col-md-12{
	padding: 0 30px;
  }
  .pfv2_skills_row{
	margin: 0 -30px;
  }
.pfv2_resume_card_wrapper:hover::after{
	background: var(--primary-color);
	transition: var(--transition);
}
.pfv2_resume_card_wrapper:hover .pfv2_resume_left_top_cont h4{
	color: var(--primary-color);
	transition: var(--transition);
}
/*--------- Resume css End -------*/
/*--------- testimonail css Start -------*/
.pfv2_testimonail_wrapper{
	padding: 80px 0;
	position: relative;
}
.pfv2_testimonail_wrapper::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
	opacity: 0.8;
	z-index: -1;
}
.pfv2_testimonail_wrapper .pfv2_heading_wrapper{
	margin-bottom: 70px;
}
.pfv2_testimonail_slide_content{
	display: flex;
	gap: 24px;
	flex-direction: column;
	padding: 30px;
	-webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
	background: var(--card-color);
    border: 1px solid var(--border-color);
}
.pfv2_client_img_wrapper{
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
}
.pfv2_client_img_wrapper::after{
	content: "\f10e";
    position: absolute;
    right: 0;
    top: 50%;
    font-family: "Font Awesome 6 free";
    font-weight: 600;
    font-size: 50px;
    transform: translateY(-50%);
	color: var(--primary-color);
}
.pfv2_client_img{
	width: 55px;
	height: 55px;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.pfv2_client_img img{
	width: 100%;
	height: 100%;
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	object-fit: cover;
}
.pfv2_client_img_name h5{
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 7px;
}
.pfv2_client_img_name p{
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: var(--white-color);
	opacity: 0.8;
}
.pfv2_client_des p{
	font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    font-weight: 400;
	font-style: italic;
	opacity: 0.8;
}
.pfv2_testimonail_wrapper .slick-slider .col{
	padding: 15px;
}
.pfv2_testimonail_wrapper .slick-dots{
	bottom: -45px;
}
.pfv2_testimonail_wrapper .slick-dots li{
	width: 10px;
    height: 10px;
	margin: 0 9px;
}
.pfv2_testimonail_wrapper .slick-dots li button:before{
	font-size: 35px;
	width: 10px;
    height: 10px;
	content: '';
	background: var(--primary-color);
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	opacity: 0.5;
}
.pfv2_testimonail_wrapper .slick-dots li button{
	padding: 0;
	width: 10px;
	height: 10px;
}
.pfv2_testimonail_wrapper .slick-dots li.slick-active button:before{
	opacity: 1;
}
.pfv2_testimonail_wrapper .slick-dots li.slick-active button:after{
	border: 1px solid var(--primary-color);
	width: 16px;
	height: 16px;
	position: absolute;
	inset: -3px;
	content: '';
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
/*--------- testimonail css End -------*/
/*--------- Blog css Start -------*/
.pfv2_blog_wrapper{
	padding: 80px 0;
	background: rgba(203, 51, 34, 0.02);
}
.pfv2_blog_wrapper::before{
	content: '';
    position: absolute;
    left: 0;
    top: 10%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
    opacity: 0.8;
    z-index: -1;
}
.pfv2_blog_wrapper::after{
	content: '';
    position: absolute;
    right: 0;
    top: 100%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
    opacity: 0.8;
    z-index: -1;
}
.pfv2_blog_card_wrapper{
	margin-bottom: 30px;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	overflow: hidden;
}
.pfv2_blog_image{
	width: 100%;
	height: 315px;
	overflow: hidden;
	position: relative;
}
.pfv2_blog_image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-top-left-radius: 10px;
    -moz-top-left-border-radius: 10px;
    border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
    -moz-top-right-border-radius: 10px;
    border-top-right-radius: 10px;
	transition: all 1s ease;
}
.pfv2_blog_card_wrapper:hover .pfv2_blog_image img{
	transform: scale(1.1);
}
.pfv2_blog_image h6{
	background-color: var(--primary-color);
    -webkit-border-top-left-radius: 10px;
    -moz-top-left-border-radius: 10px;
    border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
    -moz-top-right-border-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    position: absolute;
    left: 30px;
    bottom: -100px;
	transition: var(--transition);
}
.pfv2_blog_card_wrapper:hover .pfv2_blog_image h6{
	bottom: 0;
	transition: var(--transition);
}
.pfv2_blog_label h6{
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: capitalize;
	font-family: var(--font-poppins);
}
.pfv2_blog_info{
	background-color: var(--card-color);
	border: 1px solid var(--border-color);
	padding: 30px;
    padding-top: 15px;
	-webkit-border-bottom-left-radius: 10px;
    -moz-bottom-left-border-radius: 10px;
    border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
    -moz-bottom-right-border-radius: 10px;
    border-bottom-right-radius: 10px;
}
.pfv2_blog_info h4{
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
	color: var(--white-color);
	font-family: var(--font-poppins);
	margin-bottom: 15px;
	margin-top: 10px;
}
.pfv2_blog_info p{
	font-size: 16px;
    line-height: 28px;
    color: var(--white-color);
    transition: var(--transition);
    opacity: 0.8;
}
.pfv2_blog_info .pfv2_primary_btn{
	margin-top: 30px;
	margin-right: 10px;
}
.pfv2_blog_wrapper .row{
	margin: 0 -15px;
}
.pfv2_blog_wrapper .col{
	padding: 0 15px;
}
/*--------- Blog css End -------*/
/*--------- Contact css Start -------*/
.pfv2_contact_wrapper{
	padding: 80px 0;
	padding-bottom: 50px;
}
.pfv2_contact_wrapper::before{
	content: '';
    position: absolute;
    right: 0;
    top: 30%;
    max-width: 500px;
    height: 500px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(246, 129, 86, 0.502);
    filter: blur(200px);
    opacity: 0.8;
    z-index: -1;
}
.pfv2_contact_left_wrapper h3{
	font-size: 26px;
    color: var(--white-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
.pfv2_contact_left_wrapper p{
	font-size: 16px;
    line-height: 28px;
    color: var(--white-color);
    transition: var(--transition);
    opacity: 0.8;
	margin-top: 15px;
	margin-bottom: 30px;
	max-width: 70%;
}
.pfv2_contact_card{
	display: flex;
	align-items: center;
}
.pfv2_contact_card_icon{
	width: 50px;
	height: 80px;
	display: flex;
	align-items: center;
	border-right: 1px solid var(--border-color);
	position: relative;
}
.pfv2_contact_card_icon .contact_cion{
	color: var(--primary-color);
	font-size: 28px;
}
.pfv2_contact_card_content{
	flex: calc(100% - 50px);
	padding-left: 30px;
}
.pfv2_contact_card_content h4{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--white-color);
}
.pfv2_contact_card_content p{
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	opacity: 0.8;
	margin-top: 3px;
}
.pfv2_contact_form_wrapper{
	margin-top: 30px;
}
.pfv2_contact_form_wrapper input{
	width: 100%;
	height: 50px;
	background-color: var(--card-color);
	border: 1px solid var(--border-color);
	color: var(--white-color);
	font-size: 16px;
	outline: none;
	box-shadow: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 0 20px;
	margin-bottom: 20px;
	transition: var(--transition);
}
.pfv2_contact_form_wrapper input:hover,
.pfv2_contact_form_wrapper input:focus,
.pfv2_contact_form_wrapper textarea:hover,
.pfv2_contact_form_wrapper textarea:focus{
	border: 1px solid var(--primary-color);
	transition: var(--transition);
}
.pfv2_contact_form_wrapper textarea{
	width: 100%;
	background-color: var(--card-color);
	border: 1px solid var(--border-color);
	color: var(--white-color);
	font-size: 16px;
	outline: none;
	box-shadow: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 20px;
	transition: var(--transition);
	resize: none;
}
.pfv2_contact_form_wrapper .pfv2_primary_btn{
	box-shadow: none;
    outline: none;
    border: 0;
	margin-top: 30px;
}
/*--------- Contact css End -------*/
/*--------- Footer css Start -------*/
.pfv2_footer_wrapper{
	padding-top: 80px;
	background: linear-gradient(0deg, var(--white-color) 20%, #f7efee 100%);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.08);
}
.pfv2_footer_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.pfv2_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(--text-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: rgba(10, 10, 10, .06);
}
.pfv2_footer_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
}
.pfv2_footer_center h3{
	font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: var(--white-color);
}
.pfv2_footer_links{
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 25px;
	align-items: flex-start;
}
.pfv2_footer_links a{
	color: var(--text-color);
	position: relative;
}
.pfv2_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;
}
.pfv2_footer_links a:hover:after{
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.pfv2_footer_links a:hover{
	color: var(--primary-color);
}
.pfv2_footer_contact{
	display: flex;
	align-items: center;
	gap: 15px;
}
.pfv2_footer_contact i{
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	border: 2px solid #e7e3e3;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.pfv2_footer_contact p{
	word-break: break-word;
}
.pfv2_footer_contact_wrap{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}
.pfv2_botttom_footer{
	border-top: 1px solid #e7e3e3;
	text-align: center;
	margin-top: 60px;
	padding: 20px 0;
}
.pfv2_botttom_footer p{
	font-size: 14px;
}
/*--------- 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;
  }

/*--------- Theme Color css Start -------*/
#color-1{
	background: #f84a6c;
	border: 1px solid #f84a6c;
  }
  #color-2{
	background: #65a9ff;
	border: 1px solid #65a9ff;
  }
  #color-3{
	background: #a5d454;
	border: 1px solid #a5d454;
  }
/*--------- First Theme Color css Start -------*/ 
body.color-style-one {
	--primary-color: #f84a6c;
	--card-color: #391f24;
	--border-color: #4f393d;
}  
body.color-style-one .pfv2_hero_banner_inner::after, 
body.color-style-one .pfv2_about_right_exp_card::before,
body.color-style-one .pfv2_services_wrapper::before, 
body.color-style-one .pfv2_testimonail_wrapper::before,
body.color-style-one .pfv2_pricing_wrapper::before,
body.color-style-one .pfv2_resume_wrapper::before,
body.color-style-one .pfv2_resume_wrapper::after,
body.color-style-one .pfv2_portfolio_wrapper::before,
body.color-style-one .pfv2_portfolio_wrapper::after, 
body.color-style-one .pfv2_blog_wrapper::before,
body.color-style-one .pfv2_blog_wrapper::after, 
body.color-style-one .pfv2_contact_wrapper::before{
	background-color: #f84a6c75;
}
/*--------- First Theme Color css End -------*/ 
/*--------- Second Theme Color css Start -------*/ 
body.color-style-2 {
	--primary-color: #65a9ff;
    --card-color: #242a32;
    --border-color: #3a424d;
}  
body.color-style-2 .pfv2_hero_banner_inner::after, 
body.color-style-2 .pfv2_about_right_exp_card::before,
body.color-style-2 .pfv2_services_wrapper::before, 
body.color-style-2 .pfv2_testimonail_wrapper::before,
body.color-style-2 .pfv2_pricing_wrapper::before,
body.color-style-2 .pfv2_resume_wrapper::before,
body.color-style-2 .pfv2_resume_wrapper::after,
body.color-style-2 .pfv2_portfolio_wrapper::before,
body.color-style-2 .pfv2_portfolio_wrapper::after, 
body.color-style-2 .pfv2_blog_wrapper::before,
body.color-style-2 .pfv2_blog_wrapper::after, 
body.color-style-2 .pfv2_contact_wrapper::before{
	background-color: #65a9ff54;
}
/*--------- Second Theme Color css End -------*/ 
/*--------- Second Theme Color css Start -------*/ 
body.color-style-3 {
	--primary-color: #a5d454;
    --card-color: #2a321a;
    --border-color: #4a5438;
}  
body.color-style-3 .pfv2_hero_banner_inner::after, 
body.color-style-3 .pfv2_about_right_exp_card::before,
body.color-style-3 .pfv2_services_wrapper::before, 
body.color-style-3 .pfv2_testimonail_wrapper::before,
body.color-style-3 .pfv2_pricing_wrapper::before,
body.color-style-3 .pfv2_resume_wrapper::before,
body.color-style-3 .pfv2_resume_wrapper::after,
body.color-style-3 .pfv2_portfolio_wrapper::before,
body.color-style-3 .pfv2_portfolio_wrapper::after, 
body.color-style-3 .pfv2_blog_wrapper::before,
body.color-style-3 .pfv2_blog_wrapper::after, 
body.color-style-3 .pfv2_contact_wrapper::before{
	background-color: #a5d45461;
}
/*--------- Second Theme Color css End -------*/ 
/*--------- Theme Color css End -------*/

/*--------- Media css start -------*/
@media (max-width: 1400px) {
    .pfv2_hero_right_img_wrapper h2{
		font-size: 50px;
		line-height: 60px;
	}
	.pfv2_hero_namebot h3{
		font-size: 40px;
		line-height: 50px;
	}
	.pfv2_hero_right_img_wrapper {
		flex: 0 0 540px;
		max-width: 540px;
	}
	.pfv2_hero_left_content {
		flex: calc(100% - 540px);
		max-width: calc(100% - 540px);
	}
	.pfv2_hero_right_img{
		max-width: 370px;
		height: 400px;
	}
	.pfv2_hero_exp_content{
		top: 0;
	}
	.pfv2_filter_gallery{
		height: 375px;
	}
}
@media (max-width: 1199px){
	.pfv2_hero_right_img_wrapper h2 {
        font-size: 36px;
        line-height: 46px;
    }
	.pfv2_hero_right_start .start_one {
		width: 50px;
		height: 50px;
		right: 0;
	}
	.pfv2_hero_right_start .start_two {
		width: 30px;
		height: 30px;
		right: 55px;
		top: 65px;
	}
	.pfv2_hero_exp_content img{
		width: 60px;
		height: 60px;
		top: -20px;
		right: 0;
	}
	.pfv2_hero_exp_content{
		padding-right: 60px;
		gap: 10px;
	}
	.pfv2_hero_exp_content h6 {
		font-size: 16px;
		line-height: 23px;
	}
	.pfv2_hero_exp_content ul li {
		font-size: 13px;
	}
	.pfv2_hero_namebot h3 {
        font-size: 30px;
        line-height: 40px;
    }
	.pfv2_hero_left_content p {
		font-size: 14px;
		line-height: 24px;
	}
	.pfv2_hero_right_img_wrapper {
        flex: 0 0 415px;
        max-width: 415px;
    }
	.pfv2_hero_left_content {
		flex: calc(100% - 415px);
		max-width: calc(100% - 415px);
	}
	.pfv2_heading_wrapper h5 {
		font-size: 34px;
		line-height: 40px;
	}	
	.pfv2_about_right_cont h5{
		font-size: 20px;
		margin-bottom: 30px;
	}
	.pfv2_about_right_exp_card{
		margin-top: 40px;
    	padding-top: 40px;
		border-top: 1px solid var(--border-color);
	}
	.pfv2_services_wrapper {
		padding: 60px 0;
		padding-bottom: 30px;
	}
	.pfv2_services_wrapper .row {
		margin: 0 -15px;
	}
	.pfv2_services_wrapper .col {
		padding: 0 15px;
	}
	.pfv2_services_card_wrapper{
		padding: 30px;
		margin-bottom: 30px;
	}
	.pfv2_services_card_wrapper h4 {
		font-size: 18px;
		line-height: 28px;
	}
	.pfv2_testimonail_wrapper {
		padding: 60px 0;
	}
	.pfv2_pricing_wrapper {
		padding: 60px 0;
	}
	.pfv2_filter_gallery_overlay h4 {
		font-size: 18px;
		line-height: 25px;
	}
	.pfv2_filter_gallery_overlay{
		padding: 20px;
	}
	.pfv2_filter_gallery_overlay h5 {
		font-size: 12px;
	}
	.pfv2_contact_left_wrapper h3 {
		font-size: 20px;
	}
	.pfv2_filter_gallery{
		height: 315px;
	}
}
@media (max-width: 991px){
	.pfv2_nav_toggle_wrapper{
		top: 0;
		left: 0;
		right: 0;
	}
	.pfv2_nav_toggle {
		width: 100%;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		border-bottom: 1px solid var(--border-color);
	}
	.pfv2_nav_bg{
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		border: 0;
	}
	.pfv2_nav_toggle_wrapper #nav-list .menu-item a{
		width: 100%;
		border-bottom: 1px solid var(--border-color);
	}
	.pfv2_nav_toggle_wrapper #nav-list{
		padding-bottom: 0;
	}
	.pfv2_hero_banner{
		padding-left: 0;
	}
	.pfv2_main_wrapper section{
		padding-top: 90px;
	}
	.container{
		max-width: 100%;
		padding: 0 30px;
	}
	.pfv2_heading_wrapper p{
		margin: 0px auto;
		letter-spacing: 5px;
		font-size: 16px;
		line-height: 26px;
	}
	.pfv2_heading_wrapper h5 {
        font-size: 24px;
        line-height: 30px;
		margin-bottom: 15px;
    }
	.pfv2_heading_wrapper, .pfv2_services_wrapper .pfv2_heading_wrapper, .pfv2_testimonail_wrapper .pfv2_heading_wrapper{
		margin-bottom: 60px;
	}
	.pfv2_pricing_top_cont h3 {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 20px;
	}
	.pfv2_pricing_top_cont h2 {
		font-size: 36px;
		line-height: 46px;
	}
	.pfv2_pricing_top_cont h2 span {
		font-size: 20px;
		line-height: 30px;
	}
	.pfv2_pricing_bot_cont h3 {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 25px;
	}
	.pfv2_pricing_box{
		padding: 30px;
	}
	.pfv2_pricing_wrapper .row {
		margin: 0 -15px;
	}
	.pfv2_pricing_wrapper .row .col {
		padding: 0 15px;
	}
	.pfv2_resume_wrapper {
		padding: 60px 0;
	}
	.pfv2_blog_wrapper{
		padding-bottom: 30px;
	}
	.pfv2_blog_info h4 {
		font-size: 20px;
		line-height: 28px;
	}
	.pfv2_blog_image h6{
		bottom: 0;
	}
	.pfv2_filter_gallery{
		height: 435px;
	}
}
@media (max-width: 767px){
	.pfv2_hero_right_img_wrapper {
        flex: 0 0 380px;
        max-width: 380px;
    }
	.pfv2_hero_left_content {
        flex: 0 0 100%;
        max-width: 100%;
    }
	.pfv2_hero_banner_inner{
		gap: 50px;
		flex-wrap: wrap;
        justify-content: center;
	}
	.pfv2_hero_left_content p {
        font-size: 16px;
        line-height: 26px;
    }
	.pfv2_hero_exp_content {
        top: 40px;
    }
	.pfv2_hero_banner {
		padding-bottom: 0;
	}
	.container{
		max-width: 100%;
		padding: 0 15px;
	}
	.pfv2_about_right_cont h5 {
        font-size: 18px;
	}
	.pfv2_pricing_box {
        margin-bottom: 30px;
    }
	.pfv2_pricing_wrapper {
        padding: 60px 0;
		padding-bottom: 30px;
    }
	.pfv2_about_wrapper, .pfv2_services_wrapper{
		padding-bottom: 0;
	}
	.pfv2_resume_edu_title{
		margin-top: 50px;
	}
	.pfv2_resume_wrapper {
        padding-bottom: 30px;
    }
	.pfv2_resume_wrapper::before, .pfv2_resume_wrapper::after, .pfv2_about_right_exp_card::before,.pfv2_services_wrapper::before,
	.pfv2_testimonail_wrapper::before, .pfv2_pricing_wrapper::before, .pfv2_portfolio_wrapper::before, .pfv2_blog_wrapper::before,
	.pfv2_contact_wrapper::before{
		display: none;
	}
	.pfv2_filter_nav{
		gap: 10px;
	}
	.pfv2_filter_nav .filter-nav {
		font-size: 12px;
	}
	.pfv2_contact_right_wrapper{
		margin-top: 50px;
	}
	.pfv2_contact_left_wrapper p{
		max-width: 100%;
	}
	.pfv2_filter_gallery {
        height: 320px;
    }
	.pfv2_blog_image{
		height: auto;
	}
}
@media (max-width: 580px){
	.pfv2_hero_right_img_wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
	.pfv2_hero_right_img img{
		transform: translate(15px, 15px);
	}
	.pfv2_hero_right_img{
		margin: auto;
	}
	.pfv2_hero_right_img {
        max-width: 300px;
        height: 350px;
		padding-right: 10px;
    }
	.pfv2_hero_right_img::after{
		border: 4px solid var(--primary-color);
	}
	.signature{
		right: -10px;
	}
	.pfv2_hero_right_img_wrapper h2 {
        font-size: 30px;
        line-height: 40px;
    }
	.pfv2_hero_right_start .start_one{
		top: 15px;
	}
	.pfv2_hero_right_start .start_two{
		top: 40px;
	}
	.pfv2_hero_namebot h3 {
        font-size: 24px;
        line-height: 30px;
    }
	.pfv2_about_detail {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pfv2_about_exp_botbox{
		margin-bottom: 20px;
	}
	.pfv2_services_card_wrapper {
        padding: 25px;
        margin-bottom: 20px;
    }
	.pfv2_filter_gallery{
		height: auto;
	}
}
/*--------- Media css end -------*/

/* =============== Typewriter Cursor Styles =============== */
.typewriter-cursor {
  animation: blink 1s infinite;
  color: var(--primary-color);
  font-weight: 300;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}


/* =============== Edit Mode Styles =============== */
.edit-mode .typewriter-texts {
    display: flex !important;
    gap: 20px;
    flex-wrap: wrap;
	margin-bottom: 30px;
}
.edit-mode .pfv2_nav_toggle_wrapper #nav-list .menu-item{
	margin-bottom: 55px;
}
.edit-mode .signature .text-content-button-wrapper::after{
	font-family: 'Open Sans';
}
.edit-mode .pfv2_testimonail_wrapper .row-edit-btn,
.edit-mode .pfv2_resume_wrapper .row-edit-btn{
	display: none !important;
}
.edit-mode .pfv2_resume_wrapper #row-edit {
    padding: 0;
    border: 0;
}
.edit-mode .pfv2_resume_card_wrapper{
	padding: 25px 0px;
    border: 1px solid var(--edit-color);
    margin-bottom: 25px;
}
.edit-mode .pfv2_resume_skills_wrapper .column-toolbar{
	right: 20px;
	left: auto;
}
.edit-mode .pfv2_resume_skills_wrapper .column-toolbar::after{
	left: auto;
    right: 100%;
	margin-left: 0;
    margin-right: 7px;
}
.edit-mode .pfv2_resume_skills_wrapper .portfolio-progressbar {
	margin-bottom: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid var(--edit-color);
}
.edit-mode .pfv2_resume_skills_wrapper .progressbar-percent{
	display: none;
}
.edit-mode .pfv2_filter_gallery_overlay{
	opacity: 1;
	visibility: visible;
	bottom: 0;
	top: auto;
	background-color: #8d8d8d;
}
.edit-mode .pfv2_filter_gallery:after{
	display: none;
}
.edit-mode .pfv2_filter_gallery{
	overflow: visible;
}
.edit-mode .pfv2_filter_gallery:hover img {
    transform: scale(1);
}
.edit-mode .pfv2_blog_card_wrapper,
.edit-mode .pfv2_blog_image{
	overflow: visible;
}
.edit-mode .pfv2_blog_card_wrapper:hover .pfv2_blog_image img {
    transform: scale(1);
}
.edit-mode .pfv2_blog_image h6{
	bottom: 0;
}
.edit-mode .pfv2_contact_card_content p{
	margin-top: 30px;
}
.edit-mode .pfv2_contact_card{
	margin-bottom: 50px;
}
.edit-mode .menu_icon .icon-edit-btn-wrapper{
	left: 15px;
    top: -40px;
}
.edit-mode .pfv2_nav_toggle_wrapper #nav-list{
	padding-top: 30px;
}
.edit-mode #add-menu-btn{
	display: none !important;
}
.edit-mode .pfv2_contact_card_icon .icon-edit-btn-wrapper{
	left: -20px;
    top: -8px;
}
.edit-mode .pfv2_about_detail{
    padding: 30px 0;
}
.edit-mode .pfv2_about_right_bot .row-edit-btn{
	display: none !important;
}
.edit-mode .pfv2_about_right_cont #row-edit {
    padding: 0;
    border: 0;
}
.edit-mode .pfv2_services_icon .icon-edit-btn-wrapper{
	left: 0;
    top: -35px;
}