body{
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 400;
}
.flex_v_cen{
    display: flex;
    align-items: center;
}
.flex_cen{
      display: flex;
    align-items: center;
    justify-content: center;
}
:root{
    --light: #f7f6fc;
    --dark: #202020;
    --primary: #0055FF;
    --gradient: linear-gradient(90deg, #005dc1 0%, #003091 100%);
    --hovergradient: linear-gradient(90deg, #4A00E1 0%, #0055FF 100%);
    --textdark: #000;
    --textlight: #666666;
}
.bg_gray{
    background-color: var(--light);
    padding: 50px 0px;
}
.wrapper{
    padding-left: 80px;
    padding-right: 80px;
}
.container{
    width: 100%;
    max-width: 1320px;
}
.mt_70{
    margin-top: 70px;
}
.pr-0{
    padding-right: 0;
}
.pl-0{
    padding-left: 0;
}
.title_head{
    margin-bottom: 45px;
}
.title_head .sub_head{
    color: var(--primary);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.title_head .head{
    color: var(--textdark);
    font-size: 45px;
    margin-bottom: 0;
    text-transform: capitalize;
}
.title_head .head_h2{
    color: var(--textdark);
    font-size: 40px;
    margin-bottom: 0;
}
.title_head p {
    color: var(--textlight);
    font-size: 16px;
    margin-top: 15px;
}
.title_head.white .sub_head, .title_head.white .head{
    color: #fff;
}
.btn_style a{
        background: var(--primary);
    color: #fff;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: 0.3s;
	text-transform:uppercase;
	border:1px solid var(--primary);
}
.btn_style a:hover{
     background:#003cb3;
	border-color:#003cb3;
}

/*start dropdown menu*/
.dropdown_menu{
 width: calc(100vw - 100px);
    position: absolute;
    top: 164px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 99;
    padding: 0px 20px;
    margin: 0 auto;
    border-radius: 15px;
    border-top: 1px solid var(--primary);
    box-shadow: 0px 15px 12px 0px rgba(25, 47, 87, 0.05);
    height: 0;
    overflow: hidden;
}
.dropdown_menu.solution-menu {
        min-width: 70vh;
}
.dropdown-item{
     font-size: 15px;
    padding: 7px 0px;
    color: var(--dark);
    position: relative;
    white-space: pre-wrap;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 400;
    transition: 0.4s;
}
.dropdown-item:hover{
     color: var(--primary);
    
}
.dropdown-item:before {
        font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
        content: "\F285";
    display: block;
    color: var(--primary);
    padding-right: 10px;
    font-weight: 800;
    transition: 0.4s;
}
.dropdown-item:hover:before  {
    
    padding-right: 17px;
}
.dropdown_menu.menu-drop{
         display: none;
    width: 100%;
    max-width: 1600px;
    left: 0;
    right: 0;
    margin: 0 auto;
	overflow:hidden;
	padding:0;
	border:none !important;
	box-shadow:inset 0px 30px 19px -32px #00000036;
        z-index: 9999999;
	border-radius:0;
    
}
.menu-height-0{
	height:0%;
	transition:0.4s;
	display:none;
	opacity:0;
    display:block !important;
}
.menu-height-100{
	height:386px;
	transition:0.4s;
	display:block;
	opacity:1;
    display:block !important;
}
#menu-show.menu-height-100{
	height:386px;
}
.dropdown_menu .bg-clr {
    background: linear-gradient(to right,#2794d1 0%,#0e679a 100%);
    margin-top: 30px;
}
.dropdown_menu .gray-bg {
    background-color: #333;
}
#menu-show.menu-height-100 .link-box{
    padding-left: 15px;
    padding-right: 15px;
}
.dropdown_menu .drop_head{
   font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
	 margin-top: 20px;
    position: relative;
}

.dropdown_menu .drop_head a{
   font-size: 18px;
    color: var(--dark);
    text-decoration: none;
    padding-bottom: 15px;
    display: block;
    position: relative;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.dropdown_menu .drop_head a i{
    font-size: 25px;
    color:  var(--primary);
    padding-right: 15px;
}

.dropdown_menu .drop_head a:hover{
    color: var(--primary);
    transition: 0.4s;
}

.dropdown-item i{
    color: #2794d1;
    padding-right: 10px;
}


.dropdown-item:hover{
    background-color: transparent;
}

/*end dropdown menu*/
/* start sidebar menu */
.sidebar_menu{
    width: 100%;
    position: fixed;
    z-index: 9999;
    background-color: rgba(0, 0, 0,.3);
    left: 0;
    top: 0;
    height: 100vh;
    transform: translate(-100%, 0);
    transition: 0.3s;
}
.sidebar_menu.menu_show{
    transform: translate(0%, 0);
}
.sidebar_menu .box{
    height: 100%;
        overflow-y: scroll;
    overflow-x: hidden;
    background-color: #fff;
    width: calc(100% - 35px);
    position: relative;
}
.sidebar_menu .login{
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}
.sidebar_menu .login img{
    max-width: 195px;
    width: 100%;
}
.sidebar_menu .login a{
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.sidebar_menu .login a i {
    font-size: 30px;
    margin-right: 8px;
}
.sidebar_menu .login .close_side{
        width: 34px;
    height: 34px;
    background-color: var(--bggray);
    border-radius: 50%;
     display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textdark);
    font-size: 18px;
}
.sidebar_menu .main_mnu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 20px;
}
.sidebar_menu .main_mnu ul li{
       border-bottom: 1px solid #ddd;
    color: var(--textdark);
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    padding: 15px 0px;
    letter-spacing: 0px;
/*     display: flex; */
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}
.sidebar_menu .main_mnu ul li i {
    color: var(--primary);
}
.sidebar_menu .main_mnu ul li:last-child{
    border: none;
}
.sidebar_menu .main_mnu ul li a{
     text-decoration: none;
    color: var(--textdark);
}
.sidebar_menu .main_mnu ul li.menu-item-type-custom{
	position:relative;
}
.sidebar_menu .main_mnu ul li.menu-item-type-custom:after{
	    position: absolute;
    font-family: bootstrap-icons !important;
    content: "\F282";
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: var(--primary);
    width: 25px;
    height: 25px;
    right: 15px;
    top: 14px;
}
.sidebar_menu .main_mnu ul li.current-menu-parent a, .sidebar_menu .main_mnu ul li.current-menu-item a{
	color:var(--primary);
}
.sidebar_menu .main_mnu ul li.current-menu-parent .sub-menu li a{
	color:var(--textdark);
}
.sidebar_menu .main_mnu ul li.current-menu-parent .sub-menu li.current-menu-item a{
	color:var(--primary);
}
.sidebar_menu .main_mnu ul.sub-menu{
	display:none;
}
.sidebar_menu .main_mnu ul .sub-menu-toggle{
	display:none;
}
.sidebar_menu .social_links{
        border-top: 1px solid #ddd;
    padding: 15px 0px;
    margin-top: 25px;
}
.sidebar_menu .social_links ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.sidebar_menu .social_links ul li{
    padding: 0px 14px;
    display: inline-block;
}
.sidebar_menu .social_links ul li a{
    text-decoration: none;
     color: var(--textdark);
    font-size: 22px;
}
.mb_sub_menu{
    position: absolute;
    top: 96px;
    background-color: #fff;
    width: 100%;
    height: 100%;
 transform: translate(100%, 0);
    transition: 0.3s;
}
.mb_sub_menu.sub_show{
    transform: translate(0%, 0);
}
.mb_sub_menu .side_head{
        border-bottom: 1px solid #ddd;
        color: var(--textdark);
    font-size: 15px;
    text-transform: capitalize;
    padding: 15px 20px;
        display: flex;
    align-items: center;
}
.mb_sub_menu .side_head .cls_sub_menu{
    font-size: 20px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #ddd;
    color: var(--primary);
}

.mb_sub_menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 20px;
}
.mb_sub_menu ul li a{
    border-bottom: 1px solid #ddd;
    color: var(--textdark);
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    padding: 15px 0px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}
.mb_sub_menu .accordion-item {
    border: none;
    position: relative;
}
.mb_sub_menu .accordion-button {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: var(--textdark);
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 0!important;
}
.mb_sub_menu .accordion-button:focus{
    background-color: transparent;
    box-shadow: none;
}
.mb_sub_menu .accordion-button .hide_text{
        visibility: hidden;
}
.mb_sub_menu .accordion-item .abs_anchr {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 9;
}
.mb_sub_menu .accordion-item .abs_anchr a{
        border: none;
        align-items: center;
    color: var(--textdark);
    text-transform: capitalize;
    font-size: 16px;
}
.mb_sub_menu .accordion-button::after {
    margin-right: 15px;
    background-size: 17px;
}
.mb_sub_menu .accordion-body{
        padding: 0;
}
.mb_sub_menu .accordion-body ul{
        margin-left: 15px;
        list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
}
/* end sidebar menu */
/*start header*/
header{
/*    background: var(--gradient);*/
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 99;
}
header .top_part{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
header .top_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
header .top_part ul.social li a{
    color: #fff;
    font-size: 18px;
    margin-right: 16px;
}
header .top_part ul.con{
    justify-content: flex-end;
}
header .top_part ul.con li{
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 15px;
    margin-left: 15px;
}
header .top_part ul.con li:first-child{
    padding: 0;
    margin: 0;
    border: none;
}
header .top_part ul.con li a{
     color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
header .top_part ul.con li a i {
    padding-right: 10px;
        font-size: 18px;
}

header .nav_part .box{
/*    background-color: #fff;*/
/*    border-radius: 60px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
/*    padding: 0px 40px;*/
}
header .nav_part .box .left_part{
    display: flex;
    align-items: center;
     width: 100%;
    flex: 1;
}
header .nav_part .box .left_part .logo{
    width: 290px;
    margin-right: 80px;
}
header .nav_part .box .left_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex: 1;
    text-align: right;
}
header .nav_part .box .left_part ul li{
    display: inline-block;
    margin: 0px 20px;
    position: relative;
}
header .nav_part .box .left_part ul li a{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    padding: 40px 0px;
    text-decoration: none;
    display: block;
    position: relative;
    transition: 0.3s;
}
header .nav_part .box .left_part ul li.current-menu-item a{
	color:#fff;
}
header .nav_part .box .left_part ul li a:after{
    position: absolute;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 25px;
    opacity: 0;
}
header .nav_part .box .left_part ul li a.active:after{
    opacity: 1;
}


header .nav_part .box .con_part .btn_book {
    display: inline-block;
    padding: 12px 35px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    background: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    margin-left: 15px;
    transition: .3s;
}
header .nav_part .box .con_part .btn_book:hover{
    background:#003cb3;
}
header .logo .drk{
	display:none;
}
header.fixed{
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
        box-shadow: 0px 0px 30px 0px rgba(103, 84, 233, 0.1);
}
header.fixed .top_part{
    display: none;
}
header.fixed .logo .drk{
	display:block;
}
header.fixed .logo .wht{
	display:none;
}
header.fixed .dropdown_menu{
        top: 107px;
}
header.fixed .nav_part .box .left_part ul li a{
	 color: var(--textdark);
}
header .nav_part .box .left_part .drop_menu{
           position: absolute;
    top: 90px;
    left: -20px;
    width: 300px;
    height: auto;
    z-index: 9;
    background-color: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0px 0px 20px 4px #00000014;
    display: none;
    border-radius: 10px;
}
header .nav_part .box .left_part li:hover .drop_menu{
    display: block;
}
header .nav_part .box .left_part .drop_menu ol{
    display: block;
    padding: 0;
    margin: 0;
}
header .nav_part .box .left_part .drop_menu ol li{
    margin: 0;
    display: block;
}
header .nav_part .box .left_part .drop_menu ol li a{
       padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
    color: var(--textdark);
}
header .nav_part .box .left_part .drop_menu ol li a:hover{
     color: var(--primary);
}
header .nav_part .box .left_part .drop_menu ol li a:before{
      position: absolute;
    font-family: bootstrap-icons!important;
    content: "\F135";
    display: block;
    font-size: 25px;
    line-height: 25px;
    color: var(--primary);
    width: 25px;
    height: 25px;
    right: 15px;
}
header .nav_part .box .left_part .drop_menu ol li a:after{
    display: none;
}
header .nav_part .box .left_part .drop_menu ol li:last-child a{
    border: none;
}

header .nav_part .box .left_part .sub-menu{
        position: absolute;
    top: 90px;
    left: -20px;
    width: 300px;
    height: auto;
    z-index: 9;
   background-color: #fff;
    border-top: 3px solid var(--primary);
    box-shadow: 0px 0px 20px 4px #00000014;
	border-radius:15px;
    display: none;
}
header .nav_part .box .left_part li:hover .sub-menu{
    display: block;
}
header .nav_part .box .left_part .sub-menu{
    padding: 0;
    margin: 0;
}
header .nav_part .box .left_part .sub-menu-toggle{
	display:none;
}
header .nav_part .box .left_part .sub-menu li{
    margin: 0;
    display: block;
}
header .nav_part .box .left_part .sub-menu li a{
       padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
	color:var(--textdark);
	transition:0.3s;
}
header .nav_part .box .left_part .sub-menu li a:hover{
	color: var(--primary);
}
header .nav_part .box .left_part .sub-menu li a:before{
      position: absolute;
    font-family: bootstrap-icons!important;
    content: "\F135";
    display: block;
    font-size: 25px;
    line-height: 25px;
    color: var(--primary);
    width: 25px;
    height: 25px;
    right: 15px;
}
header .nav_part .box .left_part .sub-menu li a:after{
    display: none;
}
header .nav_part .box .left_part .sub-menu li:last-child a{
    border: none;
}
/* header .nav_part .box .left_part li.current-menu-parent a, header .nav_part .box .left_part li.current-menu-item a{
	color:var(--primary);
} */
header .nav_part .box .left_part li.current-menu-parent .sub-menu li a{
	color:var(--textdark);
}
header .nav_part .box .left_part li.current-menu-parent .sub-menu li.current-menu-item a{
	color:var(--primary);
}
/*end header*/

/*start home banner*/
.home_banner{
     
/*    background: var(--gradient);*/
    background-size: cover;
    padding-top: 195px;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}
.home_banner:after{
    position: absolute;
    content: '';
    background:#021334;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .7;
}

.home_banner .con_part .bann_head{
    font-size: 65px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 25px;
}
.home_banner .con_part .bann_sub_head{
            font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding-left: 0;
    position: relative;
    z-index: 1;
}
/* .home_banner .con_part .bann_sub_head:before{
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 2px;
        top: 12px;
    left: 0;
    z-index: -1;
    background-color: #fff;
} */
 .home_banner .con_part .bann_h3{
          font-size: 20px;
    line-height: 28px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 5px;
   
}
/*.home_banner .con_part .bann_head b{
      font-size: 42px;
    font-weight: 500;
    background-color: var(--primary);
    width: 100px;
    display: inline-block;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
} */
/* .home_banner .con_part h4:before{
    position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 90px;
    background-image: url(../img/head3_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: -22px;
    left: -30px;
    z-index: -1;
} */
.home_banner .con_part h1 span{
       position: relative;
    z-index: 1;
    color: #000;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
}
.home_banner .con_part h1 span:before{
    z-index: -1;
    background-image: url(../img/shap_style_6.png);
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
        position: absolute;
    content: "";
        background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}
.home_banner .con_part p{
     font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}
.home_banner .con_part .btn_grp{
	display:flex;
	align-items:center;
}
.home_banner .con_part .btn_grp .btn_style{
	margin-bottom:0;
	margin-right:10px;
}
.home_banner .con_part .btn_grp .btn_style:last-child a{
	    border: 1px solid #fff;
    background-color: transparent;
}
.home_banner .con_part .btn_grp .btn_style:last-child a:hover{
	background: #003cb3;
	 border: 1px solid #003cb3;
}
.home_banner .con_part ul.points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.home_banner .con_part ul.points li{
     font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}
.home_banner .con_part ul.points li:before {
    content: "\f633";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary);
    font-size: 16px;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
    border: 1px solid #fff;
    box-shadow: 0px 4px 4px 0px rgb(25 47 87 / 12%);
}
.home_banner .con_part ol.bann_logos{
	list-style:none;
	padding:20px;
	margin:0;
	border-radius:15px;
	background-color:#fff;
	display:flex;
}
.home_banner .con_part ol.bann_logos li{
	padding:0px 15px;
	border-right:1px solid #ddd;
}
.home_banner .con_part ol.bann_logos li:last-child{
	border:none;
}
.social_chanels{
	    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-top: 25px;
gap:12px;
}
.social_chanels li{
	max-width:50px;
}
.home_banner .form_part{
        width: 560px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 40px;
    margin: 0 auto;
}

.home_banner .form_part h3{
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: center;
}
.home_banner .form_part label{
        font-size: 16px;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
}
.home_banner .form_part label.brdr{
        display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--dark);
}
.home_banner .form_part .form-check{
       padding-top: 2px;
    padding-bottom: 2px;
	    padding-left: 0;
}
.home_banner .form_part .form-check .wpcf7-list-item input{
		    width: 18px;
    height: 18px;
    margin-right: 6px;
	}
.home_banner .form_part .form-check .wpcf7-list-item label{
	    display: flex;
    align-items: center;
}
.select2-container{
	width: 100% !important;
}
.select2-container--default .select2-selection--multiple{
	    border: 1px solid #d1d1d1 !important;
    background-color: #f3f3f3 !important;
    height: auto;
    font-size: 16px;
    border-radius: 10px !important;
    margin-bottom: 15px;
    padding: 6px 25px;
}
.home_banner .form_part .form-check label{
    font-size: 15px;
    font-weight: 400;
    color: var(--textlight);
    margin-bottom: 0;
}
.home_banner .form_part p {
	margin-bottom:0;
}
.form-check-input:active {
    filter: brightness(100%);
}
.home_banner .form_part .form-check .wpcf7-list-item{
	margin-left:0
}
.home_banner .form_part .form-check .form-check-input{
	    float: none;
	border:none;
}
.home_banner .form_part .form-control, .home_banner .form_part .form-select{
       border: 1px solid #d1d1d1;
    background-color: #f3f3f3;
    height: 50px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 25px;
}
.home_banner .form_part .form-control:focus{
    box-shadow: none;
}
.home_banner .form_part .form-control::placeholder{
    color: #5E5C68;
}
.home_banner .form_part .my_btn{
    width: 100%;
    color: #fff;
    background-color: var(--primary);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    height: 50px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
    margin-top: 8px;
	text-transform:uppercase;
}
.home_banner .form_part .my_btn:hover{
     background-color: var(--primary);
}
.home_banner .img_part img{
    max-width: 490px;
    width: 100%;
}
/*end home banner*/

/*start success count*/
.suc_count .count_part{
        grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
    display: grid;
    margin-top: 50px;
}
.suc_count .count_part .box{
       border: 1px solid #ffffff;
    text-align: center;
    border-radius: 10px;
    /* width: 168px; */
    /* height: 185px; */
    padding: 14px 15px;
    margin: 0 auto;
}

.suc_count .count_part .box i{
   color: #fff;
    font-size: 45px;
}
.suc_count .count_part .box:first-child .head i {
    color: #5BD7CF;
}
.suc_count .count_part .box:nth-child(2) .head i {
    color: #8273E1;
}
.suc_count .count_part .box:nth-child(3) .head i {
    color: #FF693B;
}
.suc_count .count_part .box:nth-child(4) .head i {
    color: #D969B7;
}
.suc_count .count_part .box .para{
    font-size: 18px;
     font-weight: 500;
    margin-bottom: 0;
    color: #fff;
        text-transform: capitalize;
}
.suc_count .right_box{
       background-color: var(--dark);
    padding: 35px 50px;
    border-radius: 15px;
    height: 100%;
}
.suc_count .right_box img{
    max-width: 80px;
}
.suc_count .right_box h2{
       font-size: 48px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 10px;
}
.suc_count .right_box p {
    font-size: 18px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 0;
}
.suc_count .right_box p.btn_rm{
    margin-top: 20px;
}
.suc_count .right_box p.btn_rm a{
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}
.suc_count .right_box p.btn_rm a:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    bottom: -8px;
    left: 0;
    transition: .3s;
}
.suc_count .right_box p.btn_rm a:hover:after{
    background-color: #fff;
}
/*end success count*/
/*start award section*/
.awards .box{
    border-radius: 15px;
    background-color: #fff;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 15px 12px 0px rgba(25, 47, 87, 0.05);
    margin-bottom: 20px;
}
.awards .box .img_box{
    width: 168px;
    height: 168px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.awards .box .img_box img{
    max-width: 120px;
}
.awards .box h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--textdark);
    margin-top: 15px;
}
.awards .box p{
    color: var(--textlight);
    margin-bottom: 0;
    font-size: 15px;
}
.awards .owl-nav{
    display: flex !important;
    position: absolute;
    height: 0;
    right: 0;
    top: -115px;
}
.awards .owl-nav button{
    width: 42px;
    height: 42px;
    background-color: var(--dark) !important;
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    font-size: 16px !important;
    margin-left: 10px;
    transition: 0.3s;
}
.awards .owl-nav button:hover{
    background-color: var(--primary) !important;
}
/*end award section*/
/*start price section*/

.price_sec .price_grid {
     grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    display: grid;
}
.price_sec .box{
    border: 1px solid #E5E6EF;
    transition: .3s;
    background-color: #fff;
    position: relative;
}
.price_sec .box:after{
    position: absolute;
    background-size: contain;
    background-position: center;
    width: 275px;
    height: 500px;
    right: -37%;
    top: 0;
    content: '';
    background-image: url(../img/price_right.png);
    background-repeat: no-repeat;
}
.price_sec .box .top_part{
    position: relative;
}

.price_sec .box .top_part h5{
        font-size: 25px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    background-color: var(--dark);
    text-align: center;
    padding: 12px;
}

.price_sec .box .top_part .para {
      color: var(--textdark);
    margin-bottom: 0;
    padding: 10px;
    text-align: center;
    background-color: var(--light);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}
.price_sec .box .top_part .para img{
	    display: block;
    margin: 0 auto;
    max-width: 190px;
    width: 100%;
    margin-top: 8px;
}
.price_sec .box .top_part .para.plan{
    border-top: 1px solid #ddd;
/*    text-align: left;*/
}
.price_sec .box .top_part .para.plan b{
    font-size: 22px;
    font-weight: 600;
}
.price_sec .box .top_part .price{
        font-size: 60px;
    color: var(--textdark);
    line-height: 60px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}
.price_sec .box .top_part .accordion {
    padding: 15px;
}
.price_sec .box .top_part .accordion-button{
   font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--textdark);
    box-shadow: none;
}
.price_sec .box .top_part .accordion-button span{
    padding-left: 10px;
}
.price_sec .box .top_part .price span{
   color: #E0E0E0;
}
.price_sec .box .top_part .price sub{
    color: var(--textdark);
    font-size: 16px;
}
.price_sec .box .top_part .buy_btn{
   display: block;
    text-align: center;
    height: 50px;
    font-size: 18px;
    text-transform: uppercase;
    padding: 14px 0px;
    text-decoration: none;
    color: #fff;
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 0;
    transition: 0.3s;
	font-weight:600;
	
}
.price_sec .box .top_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.price_sec .box .top_part ul li{
     color: var(--textdark);
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
}
.price_sec .box .top_part ul li:last-child{
    margin: 0;
}
.price_sec .box .top_part ul li:before{
    content: "\F26A";
    font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
    margin-right: 10px;
}

.price_sec .box .top_part h5 i{
        color: var(--primary);
}

.price_sec .box .top_part .buy_btn{
        background-color: var(--primary);
}
.price_sec .box .top_part ul li:before{
    color: var(--primary);
}

.price_sec .con_us{
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--textlight);
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
}
.price_sec .con_us a{
    text-decoration: none;
    position: relative;
    color: var(--primary);
    font-weight: 500;
    transition: 0.3s;
}
.price_sec .con_us a:hover{
    color: var(--textdark);
}
.price_sec .con_us a:after{
        position: absolute;
    content: '';
    width: 60px;
    height: 20px;
    background-image: url(../img/con_arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -30px;
    left: 0;
}
.price_sec .box .top_part .buy_btn:hover{
    color: #fff;
    background-color: var(--dark);
}
/*end price section*/
/*start case study*/
.case_study{

    position: relative;
     z-index: 1;
}
.case_study .title_head p{
        color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
}
.case_study .nav-tabs {
    border: 1px solid #E5E6EF;
    background-color: var(--light);
    padding: 15px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    display: grid;
    border-radius: 10px;
    margin-bottom: 25px;
}
.case_study .nav-tabs .nav-link {
    height: 55px;
    border-radius: 10px;
    background-color:#fff;
    font-size: 16px;
    text-transform: capitalize;
    border: none;
    color: var(--textdark);
    font-weight: 500;
    transition: 0.3s;
}
.case_study .nav-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}
.case_study .box{
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    margin-bottom: 20px;
	display:block;
}
.case_study .box .img_box{
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
	    max-height: 400px;
}
.case_study .box .img_box img{
	transition:0.3s;
}
.case_study .box:hover .img_box img{
	transform:scale(1.1);
}
.case_study .box .img_box.case_btn:after{
    position: absolute;
        content: "\F52A";
    font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
    margin-right: 10px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: -100%;
    transition: 0.3s;
    z-index: 9;
}
.case_study .box:hover .img_box.case_btn:after{
    left: 0%;
}

.case_study .box h5{
        
    text-transform: capitalize;
    margin-bottom: 0;
    color: #fff;
   
	 font-size: 16px;
    font-weight: 600;
    
}
.case_study .box .text_box h5 span{
	    display: block;
    font-weight: 400;
    margin-bottom: 5px;
	 font-size: 14px;
}
.case_study .box .text_box{
     position: absolute;
    bottom: 0;
    background: var(--primary);
    padding: 14px 25px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.case_study .owl-nav {
    display: flex !important;
    position: absolute;
    height: 0;
    right: 0;
    bottom: 35px;
    z-index: 1;
}
.case_study .owl-nav button {
    width: 42px;
    height: 42px;
    background-color: #fff !important;
    border-radius:10px;
    color: var(--textdark) !important;
    text-align: center;
    font-size: 16px !important;
    margin-left: 10px;
    transition: 0.3s;
}
.case_study .owl-nav button:hover{
    background-color: var(--primary)!important;
    color: #fff!important;
}
.case_study .owl-dots{
    display: flex !important;
    margin-top: 30px;
    opacity: 0;
    z-index: -1;
}
.case_study .owl-dots button span{
    display: inline-block;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background-color: rgba(255,255,255,.5);
    border-radius: 50%;
}
/*end case study*/

/*start client section*/

.client .box .head b{
    font-weight: 600;
    color: var(--primary);
}
.client .box ul{
    list-style: none;
    padding: 0;
        grid-template-columns: repeat(6,1fr);
    grid-gap: 15px;
    display: grid;
}
.client .box ul li{
       text-align: center;
    padding: 15px 15px;
/*    filter: grayscale();*/
    transition: 0.3s;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
}
.client .box ul li img{
   max-height: 60px;
}
.client .box ul li:hover{
    filter: none;
    cursor: pointer;
}
/*end client section*/
/*start testimonial section*/
.testi .box{
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 8px 10px 0px rgba(25, 47, 87, 0.15);
    margin-top: 15px;
    margin-bottom: 15px;
}
.testi .box i{
       font-size: 45px;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}
.testi .box h4{
    font-size: 22px;
    color: var(--textdark);
    margin-bottom: 12px;
}
.testi .box p {
    color: var(--textlight);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
}
.testi .box .user{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.testi .box .user .img_box{
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}
.testi .box .user .name{
    font-size: 14px;
    color: var(--textdark);
    text-transform: capitalize;
        line-height: 22px;

}
.testi .box .user .name b{
    font-weight: 600;
    font-size: 18px;
}
.testi .owl-nav {
    display: flex !important;
    position: absolute;
    height: 0;
    right: 0;
    bottom: 0;
}
.testi .owl-nav button {
    width: 42px;
    height: 42px;
    background-color: var(--primary) !important;
    border-radius: 10px;
    color: #fff !important;
    text-align: center;
    font-size: 16px !important;
    margin-left: 10px;
    transition: 0.3s;
}
.testi .owl-nav button:hover{
     background-color: var(--dark) !important;
}
.client_testi .box{
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
}
.client_testi .box .text_box{
   padding: 15px; 
    
}
.client_testi .box .text_box .company{
    display: flex;
    align-items: center;
        margin-top: -65px;
    margin-bottom: 12px;
}
.client_testi .box .text_box .company_logo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.client_testi .box .text_box .stars{
          color: #ffa000;
    margin: 1px;
    font-size: 16px;
    margin-left: 15px;
    margin-top: 40px;
}
.client_testi .box .text_box h4{
        font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--textdark);
}
.client_testi .box .text_box h6{
     font-size: 16px;
    text-transform: capitalize;
    color: var(--textlight);
}
.client_testi .box .text_box p{
     font-size: 16px;
    line-height: 26px;
    color: var(--textlight);
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #ddd;
}

/*start why us section*/

.why_us .text_part .title_head{
    margin-bottom: 15px;
}

.why_us .text_part p {
    font-size: 18px;
    line-height: 28px;
   color: var(--textlight);
    margin-bottom: 15px;
}
.why_us .text_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
    margin-top: 25px;
}
.why_us .text_part ul li{
       display: flex;
    margin-top: 0;
    padding: 25px 40px;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    transition: 0.3s;
}
.why_us .text_part ul li:hover{
    border-color:var(--primary);
}
.why_us .text_part ul li .icon{
    width: 100px;
    margin-right: 30px;
}
.why_us .text_part ul li .text{
    flex: 1;
}
.why_us .text_part ul li h3{
    font-size: 24px;
    margin-bottom: 10px;
   color: var(--textdark);
    font-weight: 500;
}
.why_us .text_part ul li h4{
    font-size: 18px;
    margin-bottom: 10px;
   color: var(--textdark);
    font-weight: 500;
}
.why_us .text_part ul li p{
      font-size: 16px;
    line-height: 26px;
     color: var(--textlight);
    margin-bottom: 0;
}
.why_us{
    background-color: var(--light);
z-index: 1;
    position: relative;
    padding: 80px 0px;
}
/*
.why_us:after{
    width: 100%;
    height: 80%;
    background-image: url(../img/Vector-4.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    opacity: .5;
}
*/
.why_us .dvd_part{
    display: flex;
    margin-bottom: 30px;
}
.why_us .dvd_part .dvd_text{
    flex: 1;
    margin-left: 35px;
}
.why_us .awrd{

    width: 275px;
    border-radius: 15px;
    background: var(--gradient);
    padding: 30px;
}
.why_us .awrd img{
    width: 100px;
    margin-bottom: 20px;
    display: block;
}
.why_us .awrd p {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0
}

/*end why us section*/
/*start blog section*/
.blogs .title_head{
    margin-bottom: 0;
}
.blogs .flex_v_cen{
    justify-content: flex-end;
}
.blogs .box{
  background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 2px 19px 0px rgb(25 47 87 / 10%);
    display: block;
    text-decoration: none;
    margin-top: 35px;
}
.blogs .box .text_part{
    padding: 20px 40px;
}
.blogs .box .text_part p {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--textlight)
}
.blogs .box .text_part p b{
    font-weight: 500;
    color: var(--textdark);
    text-transform: uppercase;
}
.blogs .box .text_part h3{
    font-size: 22px;
    margin-bottom: 0;
    color: var(--textdark);
    text-transform: capitalize;
    font-weight: 500;
    line-height: 32px;
    transition: 0.3s;
}
.blogs .box:hover .text_part h3{
    color: var(--primary);
}
.blogs .box .btn_rm{
    padding: 10px 40px;
    color: var(--textdark);
   display: flex;
    align-items: center;
    overflow: hidden;
}
.blogs .box .btn_rm i {
     font-size: 22px;
     transition: 0.6s;
      transform: translate(-120px, 0px);
}
.blogs .box .btn_rm span{
    color: var(--primary);
    text-transform: capitalize;
    font-size: 18px;
    padding-right: 10px;
        transform: translate(-150px, 0px);
    transition: 0.6s;
}
.blogs .box:hover .btn_rm i{
     transform: translate(-0, 0px);
}
.blogs .box:hover .btn_rm span{
      transform: translate(-0, 0px);
}
/*end blog section*/

/*start  form partn*/
.form_sec{
    background-image: url(../img/form_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    position: relative;
    padding: 50px 0px;
    background-attachment: fixed;
}
.form_sec:after{
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
    top: 0;
    left: 0;
    z-index: -1;
}
.form_sec .left_part{
    background: var(--primary);
    border-radius: 30px;
    padding: 30px;
        outline: 8px solid #ffffff26;
}
.form_sec .left_part h2{
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 500;
    text-align:center;
}
.form_sec .left_part p {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    text-align:center;
}
.form_sec .left_part form{
    margin-top: 25px;
}
.form_sec .left_part form .form-control{
       background-color: #ffffff24;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid #ffffff47;
    color: #fff;
    margin-bottom: 15px;
    height: 50px;
    padding-left: 25px;
    padding-right: 25px;
}
.form_sec .left_part form .form-control:focus{
    box-shadow: none;
}
.form_sec .left_part form .form-control::placeholder{
    color: #fff;
}
.form_sec .left_part form label.brdr {
   display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ffffff94;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}
.form_sec .left_part form .form-check {
   padding-top: 6px;
    padding-bottom: 6px;
    background-color: #ffffff2b;
    border-radius: 5px;
    padding-left: 15px;
    margin-bottom: 5px;
	 
}
.form_sec .left_part form .form-check label{
	display:flex;
	align-items:center;
}
.form_sec .left_part form .form-check .form-check {
	padding:0;
	background-color:transparent;
}
.form_sec .left_part form .form-check .wpcf7-list-item input{
		    width: 15px;
    height: 15px;
    margin-right: 6px;
	   outline: 1px solid #fff !important;
	}
.form_sec .left_part form .form-check-input:checked {
    background-color: #0067ff;
    border-color: #ffffff;
}
.form_sec .left_part form .form-check label {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.form_sec .left_part p {
    margin-bottom: 0;
}
.form_sec .left_part .form-check .form-check-input {
    float: none;
    border: none;
	background-color: transparent;
}
.form_sec .left_part form .form-check p{
	text-align:left;
}
.form_sec .left_part .form-check .wpcf7-list-item {
    margin-left: 0;
	background-color: transparent;
}
.form_sec .left_part form textarea.form-control{
    height:95px;
    border-radius: 10px;
    padding-top: 20px;
}
.form_sec .left_part form .my_btn{
        background: #fff;
    color: var(--textdark);
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    border: none;
    transition:0.3s;
    margin-top: 10px;
}
.form_sec .left_part form .my_btn:hover{
     background:  var(--dark);
    color: #fff;
}
.form_sec .right_part{
    padding-left: 40px;
}
.form_sec .right_part h5{
        color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    
}
.form_sec .right_part h3{
         color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}
.form_sec .right_part p {
    color: #D8D8D8;
    font-size: 16px;
    line-height: 26px;
     margin-bottom: 20px;
}
.form_sec .right_part p.call_head{
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}
.form_sec .right_part .phone{
    font-size: 40px;
    font-weight: 600;
    display: block;
    text-decoration: none;
    margin-bottom: 5px;
    color: #fff;
    transition: 0.3s;
}
.form_sec .right_part .phone:hover{
    color: var(--primary);
}
.form_sec .right_part .req{
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
    color: #fff;
    display: block;
    
}
/*end  form part*/
/*start faq*/
.faq .brd{
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.faq .accordion{
    padding-top: 15px;
}
.faq .accordion-item{
    border: none;
    border-radius: 0px;
    margin-bottom: 15px;
}
.faq .accordion-button{
    border-radius: 10px !important;
    font-size: 18px;
    font-weight: 500;
    color: var(--textdark);
    background-color: var(--light);
    box-shadow: none;
}
.faq .accordion-button:focus{
    box-shadow: none;
    border: none;
}
.faq .accordion-body{
    font-size: 16px;
    color: var(--textlight);
    line-height: 26px;
    
}
/*end faq*/
/*start footer*/
footer {
    padding-top: 40px;
    background-color: var(--light);
}


.foot_bottom .awrd_part{
    padding:15px 30px;
        grid-template-columns: repeat(5,1fr);
    grid-gap: 15px;
    display: grid;    background-color: #fff;
}
.foot_bottom .awrd_part img{
    display: block;
    margin: 0 auto;
    max-width: 60px;
}
/* .foot_bottom .links_box{
    margin-top: 20px;
} */
.foot_bottom .links_box p{
    font-size: 16px;
    line-height: 26px;
    color: var(--textlight);
}
.foot_bottom .links_box .call a{
    font-size: 30px;
    font-weight: 600;
    display: block;
    text-decoration: none;
    margin-bottom: 5px;
    color: var(--textdark);
    transition: 0.3s;
}
.foot_bottom .links_box .call a:hover{
        color: var(--primary);
}
.foot_bottom .links_box .call a i{
     color: var(--primary);
    margin-right: 0;
}
.foot_bottom .links_box img{
    max-width: 250px;
    margin-bottom: 20px;
}
.foot_bottom .links_box h4{
    font-size: 20px;
    text-transform: capitalize;
    color:var(--textdark);
    font-weight: 600;
    margin-bottom: 15px;
}
.foot_bottom .links_box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot_bottom .links_box ul li a{
    color:var(--textlight);
    font-size: 14px;
    text-decoration: none;
    padding: 0px 8px;
    display: block;
    transition: 0.3s;
    text-transform: capitalize;
}
.foot_bottom .links_box ul li a:hover{
    opacity: 1;
      color:var(--primary);
}
.foot_last{
    padding-top: 25px;
    margin-top: 30px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.foot_last p{
     color: var(--textlight);
    font-size: 14px;
    margin-bottom: 0;
}
.foot_last ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.foot_last ul.social li a {
    color: var(--textlight);
    font-size: 18px;
    margin-left: 16px;
    transition: .3s;
    display: block;
}
.foot_last ul.social li a:hover{
    transform: translate(0,-5px);
    color: var(--primary);
}
/*end footer*/
/*start service page*/

.ser_pg_count .count_part{
        grid-template-columns: repeat(4,1fr);
        grid-gap: 0px;
    border-bottom: 1px solid rgba(32, 32, 32, 0.2);
    padding: 25px 0px;
}
.ser_pg_count .count_part .box{
        padding: 0px 15px;
    border: none;
     border-right: 1px solid rgba(32, 32, 32, 0.2);
    border-radius: 0;
}
.ser_pg_count .count_part .box:last-child{
    border-right:none;
}
.ser_pg_count .count_part .box .head{
        font-size: 50px;
        margin-bottom: 0px;
}

.content_part .title_head{
    margin-bottom: 15px;
}
/*
.content_part h3{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    color: var(--textdark);
    font-weight: 500;
}
*/
.content_part p{
    color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
}
.img_dvd_con .content_part{
    padding-top: 35px;
    padding-bottom: 35px;
}
.img_dvd_con .content_part h2{
    margin-bottom: 15px;
}
.img_dvd_con .content_part ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.img_dvd_con .content_part ul li{
    color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
.img_dvd_con .content_part ul li:before{
       content: "\f633";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary);
    font-size: 16px;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
    border: 1px solid #fff;
    box-shadow: 0px 4px 4px 0px rgb(25 47 87 / 12%);
}
.img_dvd_con .img_part{
    background-size: cover;
    border-radius: 15px;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100%;
    margin-left: 30px;
}
.img_dvd_con .box{
    padding: 25px;
    border-radius: 15px;
    background-color: #fff;
        box-shadow: 0px 0px 20px 4px #0055ff0f;
    margin-bottom: 25px;
}
.img_dvd_con .box .icon{
    width: 100px;
}
.img_dvd_con .box h4{
    font-size: 22px;
    color: var(--textdark);
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
.img_dvd_con .box p {
        color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
}
.img_dvd_con .left_img{
    max-width: 780px;
    width: 100%;
}
.inner_ser{
       padding-top: 60px;
    position: relative;
    z-index: 1;
}

.inner_ser .box{
      /* display: flex; */
    margin-bottom: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    padding: 25px;
    height: 95%;
}
.inner_ser .box .icon{
  width: 65px;
    height: 65px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: var(--primary);
    padding: 10px;
}
/*
.inner_ser .box .icon:before{
      position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .1;
    border-radius: 50%;
}
*/
.inner_ser .box .text{
    flex: 1;
}
.inner_ser .box .text h3{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    color: var(--textdark);
    font-weight: 600;
}
.inner_ser .box .text p {
     font-size: 16px;
    color: var(--textlight);
    line-height: 26px;
}
.inner_ser .call_part{
       text-align: center;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;

}
.inner_ser .call_part p {
        font-size: 24px;
    line-height: 38px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
}
.inner_ser .call_part p span{
    color: var(--primary);
    font-weight: 600;
}
.inner_ser .call_part p a{
    display: inline-block;
    text-decoration: none;
    text-decoration: none;
    font-size: 35px;
    color: var(--primary);
    margin-left: 10px;
    font-weight: bold;
}

.need_help{
    background-color: var(--primary);
    position: relative;
    padding-top: 165px;
}
.need_help .flex_end{
    display: flex;
    align-items: flex-end;
}
.need_help:after{
       position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 145px;
    background-image: url(../img/need_help_abstract.svg);
    background-repeat: repeat-x;
    background-position: top;
    top: -14px;
    left: 0;
}
.need_help .box{
    text-align: center;
    padding-bottom: 60px;
}
.need_help .box h2{
        font-size: 55px;
    line-height: 65px;
    font-weight: 600;
    margin-bottom: 15px;

    color: #fff;
}
.need_help .box h3{
        color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}
.need_help .box p{
        color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
}
.need_help .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.need_help .box ul li {
    margin: 0px 4px;
}
.need_help .box ul li a {
    text-decoration: none;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 10px;
    background-color: #fff;
    color: var(--textdark);
    text-transform: capitalize;
    border: 1px solid #fff;
    transition: 0.3s;
    display: inline-block;
    transition: 0.3s;
	text-transform:uppercase;
	font-weight:600;
}
.need_help .box ul li a:hover{
     background-color: var(--dark);
     border-color: var(--dark);
    color: #fff;
}
.need_help .box ul li:last-child a{
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.need_help .box ul li:last-child a:hover{
     background-color: var(--dark);
     border-color: var(--dark);
    color: #fff;
}
.inner_pg .mt{
    margin-top: 25px;
}

.card_sec .card_box{
      border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 98%;
    box-shadow: 6px 6px 25px -8px #0055ff29;
	background-color:#fff

}
.card_sec .card_box .icon{
         width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 10px;
    background: var(--primary);
    /* margin: 0 auto; */
    margin-top: 0;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
	    margin: 0 auto;
}
.card_sec .card_box .icon img{
    max-width: 40px;
    width: 100%;
}
.card_sec .card_box h3{
        font-size: 18px;
    font-weight: 600;
    color: var(--textdark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    margin-top: 15px;
    transition: 0.3s;
    text-transform: capitalize;
}
.card_sec .card_box h3:after{
        position: absolute;
    content: '';
    display: block;
    width: 40px;
    background: var(--gradient);
    height: 2px;
    bottom: 0;
        left: 0;
    right: 0;
    margin: 0 auto;
}
.card_sec .card_box p {
        color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
    transition: 0.3s;
}

.faq .accordion.pt_0{
    padding-top: 0;
}
/*end service page*/
/*start case study popup*/
.case_popup{
    width: 100vw;
    height: 100vh;
    background-color: #000000b8;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
     z-index: 99;
    display: none;
}
.case_popup.show{
    display: flex;
}
.case_popup .close_icon{
        font-size: 25px;
    right: 12px;
    top: 12px;
    color: #fff;
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case_popup .box{
        position: relative;
    width:50%;
    height: 100%;
    overflow-y: scroll;
}
.case_popup .box::-webkit-scrollbar {
  width: 5px;
}
.case_popup .img_box{
   border-radius: 15px;
    overflow: hidden;
}
/*end case study popup*/
/*start case study popup*/
.video_pop{
    width: 100vw;
    height: 100vh;
    background-color: #000000b8;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
     z-index: 99;
    display: none;
}
.video_pop.show{
    display: flex;
}
.video_pop .close_icon{
       font-size: 40px;
    right: -60px;
    top: -60px;
    color: #fff;
    position: absolute;
    cursor: pointer;
}
.video_pop .box{
    position: relative;
     width: 800px;
}
.video_pop .video_box{
   border-radius: 15px;
    overflow: hidden;
}
.video_pop .video_box iframe{
    height: 500px;
}
/*end case study popup*/
/*start contact page*/
.single_banner{
/*    background: var(--gradient);*/
        padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
    background-image: url(../img/form_bg.jpg);
    z-index: 1;
    background-size: cover;
}
.single_banner:after{
        position: absolute;
    content: '';
    background: #021334;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .7;
}

.single_banner .con_part{
    text-align: center;
}
.single_banner .con_part h1{
    font-size: 70px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 15px;
}
.single_banner .con_part .breadcrumb{
    justify-content: center;
}
.single_banner .con_part .breadcrumb span{
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
}
.single_banner .con_part .breadcrumb a{
    color: #fff;
    text-decoration: none;
}
.contact_info .box{
    text-align: center;
    padding: 32px;
    border-radius: 15px;
        box-shadow: 0px 0px 30px 0px rgb(25 47 87 / 5%);
    margin-top: 30px;
    text-decoration: none;
    display: block;
	height:90%;
}
.contact_info .box .head{
        font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--primary);
    margin-top: 15px;
}
.contact_info .box .para{
        color: var(--textdark);
    margin-bottom: 0;
    font-size: 15px;
}
.contact_info .box i{
    font-size: 30px;
    color:#fff;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_info .form_part .left_part{
    padding-right: 50px;
}
.contact_info .form_part .left_part h2{
    color: var(--textdark);
    font-size: 48px;
    margin-bottom: 20px;
}
.contact_info .form_part .left_part p{
        color: var(--textlight);
    font-size: 18px;
    line-height: 28px;
}
.contact_info .form_part .left_part .rvw{
    border-top: 1px solid #ddd;
    padding-top: 40px;
    margin-top: 40px;
    
}
.contact_info .form_part .left_part .rvw span{
        list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact_info .form_part .left_part .rvw span i {
    color: #ffc947;
    font-size: 16px;
    padding: 0px 2px;
}
.contact_info .form_part .left_part .rvw p {
    color: var(--textdark);
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-style: italic;
}
.contact_info .form_part .left_part .rvw .user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.contact_info .form_part .left_part .rvw .user .img_box {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}
.contact_info .form_part .left_part .rvw .user .name {
    font-size: 14px;
    color: var(--textdark);
    text-transform: capitalize;
    line-height: 22px;
}
.contact_info .form_part .left_part .rvw .user .name b {
    font-weight: 600;
    font-size: 18px;
}
.contact_info .form_part form{
    border: 1px solid var(--dark);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 10px 10px 0px 0px var(--dark);
}
.contact_info .form_part form label{
     color: var(--textdark);
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
	display:flex;
	align-items:center;
}
.contact_info.con .form_part form label{
	    border-bottom:none;
	    padding-bottom: 10px;
	    margin-bottom: 0;
}
.contact_info.con .form_part form .form-check{
	    padding-left: 0;
}
.contact_info.con .form_part form .form-check .wpcf7-list-item{
	    margin-left: 0;
}
.contact_info.con .form_part form .form-check label{
	text-transform:capitalize;
	font-size:15px;
}
.contact_info.con .form_part form .form-check .wpcf7-list-item input{
	    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.contact_info .form_part form label img{
	    width: 42px;
    margin-right: 10px;
}
.contact_info .form_part form .form-control{
        border: 1px solid #E2E2E2;
    background-color: #fff;
    height: 60px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 25px;
}
.contact_info .form_part form .form-control.wpcf7-not-valid{
	border:1px solid #f00;
}
.contact_info .form_part form .wpcf7-not-valid-tip{
	display:none;
}
.contact_info .form_part form .form-select{
	  border: 1px solid #E2E2E2;
    background-color: #fff;
    height: 60px;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 25px;
}
.contact_info .form_part form .form-control:focus{
    box-shadow: none;
}
.contact_info .form_part form textarea.form-control{
     height: 150px;
    padding: 15px 25px;
}
.contact_info .form_part form .form-check-input{
	    display: block;
    width: 100%;
    border: none;
    font-size: 16px;
    color: var(--textdark);
    margin: 0;
	    margin-bottom: 25px;
	    background-color: transparent;
	text-transform: capitalize;
}
.contact_info .form_part form .form-check-input .wpcf7-list-item{
	    margin-left: 0;
	    display: flex;
    align-items: center;
	margin-bottom:15px;
}
.contact_info .form_part form .form-check-input .wpcf7-list-item input{
	    width: 20px;
    height: 20px;
	margin-right:8px;
	    border-radius: 5px;
}
.contact_info label{
	    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    display: block;
}

.contact_info .frm_box{
	background-color: var(--light);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.contact_info .form_part form .my_btn{
    width: 100%;
    color: #fff;
    background-color: var(--primary);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
    height: 50px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}
.contact_info .form_part form .my_btn:hover{
	background-color: var(--dark);
}
.contact_info .form_part .left_part ul{
        list-style: none;
    padding: 0;
    margin: 0;
}

.contact_info ul li {
    display: flex;
    margin-top: 20px;
}
.contact_info ul li i {
    font-size: 22px;
    color: var(--primary);
    margin-right: 15px;
    line-height: 22px;
}
.contact_info ul li h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--textdark);
    font-weight: 500;
}
.contact_info ul li p {
    font-size: 16px;
    line-height: 26px;
    color: var(--textlight);
    margin-bottom: 0;
    border-left: 1px solid var(--primary);
    padding-left: 20px;
}
.contact_info .form_part form h5{
     font-size: 30px;
    margin-bottom: 30px;
    color: var(--textdark);
    font-weight: 600;
    text-align: center;
}
.contact_info .form_part form h5 span{
     color: var(--primary);
}
.order_right{
	    position: sticky;
    top: 130px;
}
.your_order_details{
	padding: 24px;
    background-color: var(--dark);
    border-radius: 15px;
	position:relative;
	position
}
.your_order_details:after{
	    position: absolute;
    content: '';
    display: block;
    left: 50px;
    right: 50px;
    background-color: var(--primary);
    border-radius: 10px;
    height: 4px;
    top: -4px;
}
.your_order_details .title{
	    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.your_order_details ul{
	list-style:none;
	padding:0;
	margin:0;
}
.your_order_details ul li{
	    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 12px 0px;
    border-top: 1px solid #ffffff40;
    display: flex;
    justify-content: space-between;
	    gap: 15px;
}
.your_order_details ul li#seo_extracityfield, .your_order_details ul li#seo_extrapagefield{
	border-top:none;
}
.your_order_details .totaldiscount{
	    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
    font-size: 16px;
}
.your_order_details .total{
	 color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
        font-size: 22px;
    border-top: 2px solid #fff;
}
/* .contact_info .frm_box.webdesign-packages-form .form-check-input{
	    margin-bottom: 0;
} */
.contact_info .frm_box.webdesign-packages-form .form-select{
	margin-top:20px;
}
.wpcf7-form-control-signature-wrap{
	    height: 90px !important;
	    width: 100% !important;
}
 #wpcf7_signature-719_clear{
	    margin-top: 10px;
    color: #fff;
    background-color: var(--dark);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}
.wpcf7-form-control-signature-body canvas{
	border: 1px solid #E2E2E2;
    background-color: #fff;
    border-radius: 10px;
    height: 90px;
}
.agree_terms{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
	margin-top:15px !important;
}
.agree_terms .wpcf7-list-item{
	margin-left:0;
}
.agree_terms a{
	color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.agree_terms .wpcf7-list-item input {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 5px;
}
.agree_terms label{
	padding: 0;
    margin: 0;
    border: none;
}
/*end contact page*/
.price_sec.packages_pg .box .top_part ul.tot_key {
    background-color: var(--primary);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}
.price_sec.packages_pg .box .top_part ul.tot_key li{
    color: #fff;
}
.price_sec.packages_pg .box .top_part ul.tot_key li:before{
    color: #fff;
    content: '\F1C0';
}
.price_sec.packages_pg .box.mid .top_part ul.tot_key{
     background-color: #fff;
}
.price_sec.packages_pg .box.mid .top_part ul.tot_key li{
    color: var(--textdark);
}
.price_sec.packages_pg .box.mid .top_part ul.tot_key li:before{
     color:var(--primary);
}
.price_sec.packages_pg .nav-tabs{
    grid-template-columns: repeat(3,1fr);
}
.price_sec.packages_pg .nav-tabs .nav-link a{
    color: var(--textdark);
    text-decoration: none;
}
.price_sec.packages_pg .nav-tabs .nav-link:hover a{
     color: #fff;
}
.portfolio .box{
    margin-bottom: 25px;
}

.portfolio .box h3{
      margin-top: 12px;
    font-size: 20px;
    line-height: 40px;
    color: var(--primary);
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    text-transform: capitalize;
    font-weight: 600;
}
.portfolio .box p{
      font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 12px;
    color: var(--textlight);
}
.portfolio .box p a{
    display: inline-block;
    background-color: var(--dark);
    font-size: 18px;
    padding: 3px 25px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}
.portfolio .table th {
    font-size: 16px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    padding: 14px 25px;
    text-transform: capitalize;
}
.portfolio .table td {
    font-size: 15px;
    color: var(--textlight);
    font-weight: 400;
    padding: 14px 25px;
    text-transform: capitalize;
}
.portfolio .table tr:nth-child(odd) td{
    background-color: var(--light);
}
.portfolio .table th:first-child {
    border-top-left-radius: 15px;
}
.portfolio .table th:last-child {
    border-top-right-radius: 15px;
}
.portfolio .text_part{
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--light);
    padding: 25px;
}


/*start external*/
.home_abt{
    margin-top: 75px;
}
.wpcf7-spinner{
	display:none;
}
.wpcf7-not-valid-tip{
	display:none;
}
.form-control.wpcf7-not-valid{
	    border: 1px solid #dc3232 !important;
}
.wpcf7 form.invalid .wpcf7-response-output {
    background-color: #fff;
    border-color: #dc3232;
    text-align: center;
    color: #dc3232;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
}
.frm_valid_err{
	  background-color: #fff;
    border-color: #dc3232;
    text-align: center;
    color: #dc3232;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
	
}
.orderdetails_ip{
	display:none;
}
.thank img{
	width: 100%;
    max-width: 500px;
}
.thank p{
	font-size:18px;
	margin-top:15px;
	color:#fff;
	font-weight:500;
}
.common_content {
	margin-bottom:50px;
}
.common_content p{
	    font-size: 18px;
    line-height: 28px;
    color: var(--textlight);
    margin-bottom: 15px;
}
.common_content ul li{
	  font-size: 18px;
    line-height: 28px;
    color: var(--textlight);
    margin-bottom: 8px;
}
.common_content a{
	color: var(--primary);
	font-weight:600;
	text-decoration:none;
}
.common_content h2,.common_content h3, .common_content h4, .common_content h5, .common_content h6 {
    color: var(--textdark);
  
    margin-bottom: 15px;
    text-transform: capitalize;
}
.common_content h2{
  font-size: 35px;	
}
.common_content h3{
  font-size: 32px;	
}
.common_content h4{
  font-size: 28px;	
}
.common_content h5{
  font-size: 26px;	
}
.common_content h6{
  font-size:22px;	
}
.btn_sh{
	    display: inline-block;
    padding: 12px 35px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    width: 170px !important;
    transition: .3s;
    text-align: center;
    margin: 0 auto;
	cursor:pointer;
}
#t_c .modal-dialog{
	width: 100% !important;
    max-width: 800px !important;
}
#t_c .modal-body h2{
	    font-size: 26px;
    color: var(--textdark);
    margin-bottom: 15px;
    font-weight: 500;
}
#t_c .modal-body h4{
	    font-size: 20px;
    color: var(--textdark);
    margin-bottom: 15px;
    font-weight: 500;
}
#t_c .modal-body p {
	    color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
}
#frm_valid_err{
	    width: 100%;
    background-color: #f00;
    color: #fff;
    text-align: center;
    margin-top: 12px;
    padding: 5px;
}
.clserr{
	    color: #dc3232;
	font-size:15px;
	margin-top: -10px;
    margin-bottom: 6px;
}
.cap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.cap img{
	    height: 30px;
    width: auto !important;
    background-color: #fff;
    border-radius: 5px;
    margin-right: 10px;
}
.cap input{
	    
    border-radius: 10px;
    font-size: 16px;
       border: 1px solid #d1d1d1;
    background-color: #f3f3f3;
       color: #000;
    margin-bottom: 0;
    height: 40px;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 160px;
}
.form_sec .cap input{
	 background-color: #ffffff24;
	 border: 1px solid #ffffff47;
	 color: #fff;
}
.cap input:focus{
	box-shadow:none;
	outline:none;
}
/* start blog page  */
.blog_listing{
    background: transparent;
    padding: 0 !important;
	margin-bottom:50px;
    
}
.blogs.blog_listing .col-lg-8 .box{
    border: 1px solid #f3f3f3;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.blogs.blog_listing .box .text_box {
    padding: 12px 12px;
}
.blogs.blog_listing .box .text_box h4 a{
        font-size: 18px;
    line-height: 25px;
	    color: var(--textdark);
	    display: block;
	    text-decoration: none;
}
.blogs.blog_listing .box .text_box p {
    font-size: 15px;
    line-height: 23px;
        margin-bottom: 10px;
	    color: var(--textlight);
}
.blogs.blog_listing .box .text_box .my-btn a {
    font-size: 15px;
	    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: capitalize;
    color:var(--textdark);
    transition: 0.3s;
	display:flex;
	align-items:center;
}
.blogs.blog_listing .box .text_box .my-btn a:hover{
	  color: var(--primary);
}
.blogs .box .text_box .my-btn a i {
    color: var(--primary);
    padding-left: 0px;
    transition: .3s;
    font-size: 25px;
    line-height: 0;

}
.blogs.blog_listing .box .text_box p.my-btn{
    margin-bottom: 0;
}
#sidebar section {
    margin-bottom: 20px;
    margin-top: 20px;
}
.wp-block-group__inner-container .wp-block-heading {
        background: var(--textdark);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 5px;
}
.wp-block-group__inner-container ul {
    list-style: none !important;
    padding: 0;
    margin: 0 !important;
}
.wp-block-group__inner-container ul li {
    margin-bottom: 5px !important;
    margin-top: 5px !important;
}
.wp-block-group__inner-container ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--textlight) !important;
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #555;
    display: block;
    padding-left: 20px;
    position: relative;
    transition: .3s;
}
.wp-block-group__inner-container ul li a:before {
    content: '\F285';
    color: var(--textdark);
    padding-right: 12px;
    top: 15px;
    font-size: 12px;
	font-weight: 400 !important;
    position: absolute;
    font-family: bootstrap-icons !important;
    font-style: normal;
    left: 0;
}
.blogs .box .img_box{
	position:relative;
}
.blogs .box .img_box img{
	border-radius:5px;
}
.blogs .box .img_box .date {
  width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px #00000014;
    position: absolute;
        top: 12px;
    left: 12px;

    background-color: #05f;
    border-radius: 5px;
}
.blogs .box .img_box .date p {
       margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.blogs .box .img_box .date p b {
    font-weight: 400;
    border-top: 1px solid;
    padding-top: 3px;
    margin-top: 3px;
    display: block;
}
.bl_details .post-thumbnail img{
	    width: 100%;
    height: 51.32%;
    max-width: 1894px;
    border-radius: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 9;
    outline: 10px solid #fff;
}
.entry-content p {
    max-width: 100% !important;
    color: var(--textlight);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    margin-top: 0;
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6{
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #000;
    text-transform: capitalize;
  margin-top: 20px; 
}
.entry-content h2{
	 font-size: 35px;
    
}
.entry-content h3{
	 font-size: 30px;
}
.entry-content h4{
	 font-size: 26px;
}
.entry-content h5{
	 font-size: 24px;
}
.entry-content h6{
	 font-size: 20px;
}
.entry-content ul {
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 20px;
}
.entry-content ul li {
    max-width: 100% !important;
    color: var(--textlight);
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 6px;
}
.entry-content ul li a, .entry-content p a{
	color:var(--primary);
	font-weight:500;
	text-decoration:none;
}
.bl_details{
	margin-bottom:50px;
}
/* start landing page */
.landing_pg .home_banner {
	      padding-bottom: 75px;
    padding-top: 35px;
}
.landing_pg .logo_bann{
	    width: 100%;
    max-width: 335px;
    margin-bottom: 25px;
}

.landing_pg .home_banner .con_part h3{
	    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
      background: linear-gradient(45deg, #1b91cf, #4fc1ef);
	background:#2a9fd8cc;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #47b9ee;
	color:#fff;
	background: linear-gradient(-45deg, #0055ff, #0055ff, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	text-transform:uppercase;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.landing_pg .home_banner .con_part .bann_head{
	    font-size: 75px;
	    font-weight: 400;
}
.landing_pg .home_banner .con_part .bann_head b{
	    font-weight: 600;
	background: -webkit-linear-gradient(105deg, #1b91cf, #4fc1ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	color:#61d2fa;
}
.landing_pg .home_banner .con_part h3:before{
	display:none;
}
.landing_pg .call {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.landing_pg .call i {
    width: 62px;
    height: 62px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-right: 10px;
	position:relative;
	z-index:1;
}
.landing_pg .call i:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    animation: video_icon 2s infinite;
    border-radius: 50%;
    z-index: -1;
    transition: 0.3s;
}
@keyframes video_icon{
	0% {
    transform: scale(1);
    opacity: 1;
}
	50% {
    transform: scale(1.6);
    opacity: 0;
}
	100% {
    transform: scale(1);
    opacity: 0;
}
}
.landing_pg .call span {
       font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-transform: capitalize;
}
.landing_pg .call span b {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
}
.landing_pg .home_banner .form_part{
	    padding: 0;
	overflow:hidden;
	
}
.landing_pg .home_banner .form_part h3{
	    font-size: 32px;
    line-height: 36px;
    background-color: var(--primary);
    padding-top: 30px;
    padding-bottom: 60px;
    color: #fff;
    position: relative;
}
.landing_pg .home_banner .form_part h3:after{
	      position: absolute;
    content: '';
    width: 100%;
    height: 44px;
    background-image: url(https://99-marketing.com/wp-content/uploads/2024/07/wave-2.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    bottom: -1px;
    left: 0;
	
}
.landing_pg .home_banner .form_part form{
	    padding: 0px 30px;
    padding-bottom: 25px;
}

.landing_pg .suc_count .count_part {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.landing_pg .suc_count .count_part .box{
	     border: none !important;
    margin: 0;
    text-align: left;
    background-color: #434b5c9e;
    border-radius: 5px;
}
.landing_pg .suc_count .count_part .box .ico_count{
	    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.landing_pg .suc_count .count_part .box .ico_count i {
	    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-right: 10px;
}
.landing_pg .suc_count .count_part .box .ico_count span{
	    font-size: 30px;
       color: #fff;
    font-weight: 600;
}

.landing_pg .suc_count .count_part .box .para {
          font-size: 15px;
        color: #fff;
}
.landing_pg  .title_head .head{
	font-weight:400;
}
.landing_pg  .title_head .head span{
	color: var(--primary);
	font-weight:600;
}
.cer{
	    background-color:var(--light);
    padding-top: 30px;
    padding-bottom: 30px;
}
.cer ul{
	    list-style: none;
    padding: 0;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
/*     display: grid; */
    margin-top: 28px;
}
.cer ul li{
	    text-align: center;
    padding: 15px;
    transition: .3s;
    border-radius: 10px;
    background-color: #fff;
	border: 1px solid #ddd;
}
.cer ul li img{
	       max-height: 60px;
    min-height: 60px;
    width: auto !important;
    margin: 0 auto;
}
.pricing .box{
	border-radius:10px;
	overflow:hidden;
	box-shadow:0px 0px 117px 0px rgba(196, 206, 213, 0.24);
}
.pricing .box .price_head{
        background-color: var(--primary);
    padding-top: 25px;
    padding-bottom: 75px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    justify-content: space-between;
}
.pricing .box .price_head:before{
	position: absolute;
    content: '';
    width: 100%;
    height: 48px;
    background-image: url(https://99-marketing.com/wp-content/uploads/2024/07/wave-2.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    bottom: -1px;
    left: 0;
}
.pricing .box .price_head .tag{
    font-size: 14px;
    padding: 3px 12px;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: #ffffff4d;
    color: #fff;
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    margin-bottom: 0;
}
.pricing .box .price_head h5{
	    font-size: 26px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}
.pricing .box .price_head .price{
	       font-size: 55px;
    color: #fff;
    line-height: 55px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
}
.pricing .box .price_head sub{
	    font-size: 16px;
    text-transform: capitalize;
    opacity: .8;
}
.pricing .box .price_body{
	padding: 15px;
}
.pricing .box .accordion-button {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--textdark);
    box-shadow: none;
}
.pricing .box .accordion-button span {
    padding-left: 10px;
}
.pricing .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing .box ul li {
    color: var(--textdark);
    font-size: 16px;
    margin-bottom:5px;
    position: relative;
}
.pricing .box ul li:before {
    content: "\F26A";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    margin-right: 10px;
	    color: var(--primary);
}

.pricing .buy_btn{
	display: block;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 0;
    transition: .3s;
    font-weight: 600;
	    background-color: var(--primary);
}
.get_proposal{
	       background-color: #000;
    padding: 60px 0;
    text-align: center;
    background-image: url(//99-marketing.com/wp-content/themes/marketing/assets/css/../img/form_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	position:relative;
	z-index:1;
	overflow:hidden;
}
.get_proposal:after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .4;
    top: 0;
    left: 0;
    z-index: -1;
}
.get_proposal .con_box h2 {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 15px;
}
.get_proposal .con_box p {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}
.get_proposal .con_box .btn_grp{
	display: flex;
    align-items: center;
    justify-content: center;
}
.get_proposal .con_box .btn_grp .call{
	margin-left:15px;
	text-align:left;
}
.copyright{
	font-size: 14px;
    line-height: 1rem;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
    text-align: center;
	    background-color: var(--dark);
}
.animated_text {
       position: relative;
    width: 100%;
    height: 42px;
    overflow: hidden;
    z-index: 99;
    background-color: #0a1222;
    color: #fff;
    font-size: 16px;
	    font-weight: 600;
}
.animated_text p.text2{
	 color: #61d2fa;
}
.animated_text p {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.animated_text p i {
	margin-right:6px;
}

.animated_text .visible {
    opacity: 1;
}
.landing_pg .owl-dots{
	    margin-top: 15px;
    margin-bottom: 0;
    justify-content: center;
    display: flex;
}
.landing_pg .owl-dots button span{
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary) !important;
    margin: 0px 3px;
	opacity:.2;
}
.landing_pg .owl-dots button.active span{
	opacity:15;
}
.landing_pg .home_banner .con_part h4{
	font-size: 40px;
	    margin-top: -20px;
    margin-bottom: 30px;
	    display: flex;
    align-items: center;
}
.landing_pg .home_banner .con_part h4 b{
overflow:hidden;
	position:relative;
	z-index:1;	
	    margin-left: 15px;
	animation:blink 1s infinite;
}
@keyframes blink {
0%, 49% {
   background-color: var(--primary);
  }
  50%, 100% {
   background-color:#fc9244;
  }
}
.pricing .box .addon_box{
	        background-color: var(--light);
    padding: 25px;
    margin: 10px 15px;
    border-radius: 10px;

}
.pricing .box .addon_box .price_head{
	    padding: 0;
	background-color:transparent;
	margin-bottom:15px;
}
.pricing .box .addon_box .price_head:before{
	display:none;
}
.pricing .box .addon_box .price_head h5{
	    color: var(--textdark);
	    font-size: 22px;
}
.pricing .box .addon_box .price_head .tag{
	background-color: #0055ff0f;
    color: #05f;
}
.pricing .box .addon_box .price_head .price{
	    color: var(--primary);
	    font-size: 45px;
}
.pricing .box .addon_box .price_head sub{
	    color: var(--textdark);
}
/* .landing_pg .home_banner .con_part h4 b:after{
	content:'';
	position:absolute;
	width:100%;
	height:100%;
	background-color: #fb9745;
	border-radius:50%;
	top:0;
	left:0;
	transform: translate(0, 100%);
	z-index:-1;
	animation:move 3s infinite;
}

@keyframes move {
	0%{
		transform: translate(0, -0%);
	}
	10%{
		transform: translate(0, 100%);
	}
	90%{
		transform: translate(0, 100%);
	}
	100%{
		transform: translate(0, -0%);
	}
} */



@media screen and (max-width:1800px){
	   .landing_pg .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
	.suc_count .count_part .box{
		    padding: 12px 10px;
	}
	.landing_pg .suc_count .count_part .box .para {
    font-size: 14px;
	}

	.landing_pg .home_banner .con_part h3 {
    padding: 8px 18px;
	}
	.landing_pg .home_banner .con_part{
		margin-left:0;
	}
	.landing_pg .logo_bann {
    max-width: 315px;
    margin-bottom: 5px;
}
}
@media screen and (max-width:1500px){
	    .landing_pg .home_banner .con_part .bann_head {
                      font-size: 60px;
        line-height: 68px;
        margin-bottom: 30px;
    }
	.landing_pg .home_banner .con_part h4{
		    margin-bottom: 20px;
	}
    .landing_pg .home_banner .con_part h3 {
        padding: 8px 18px;
        font-size: 16px;
        margin-bottom: 15px;
    }
	 .landing_pg .home_banner .con_part p{
		        max-width: 500px;
        width: 100%;
	}
	.landing_pg .suc_count .count_part{
		    margin-top: 28px;
	}
	.landing_pg .suc_count .count_part .box .ico_count i {
    width: 35px;
    height: 35px;
		    font-size: 20px;
	}
	.landing_pg .suc_count .count_part .box .ico_count span {
    font-size: 24px;
	}
	.landing_pg .logo_bann {
        max-width: 285px;
	}
	.landing_pg .home_banner {
    padding-bottom: 45px;
    padding-top: 25px;
}
	.landing_pg .home_banner .form_part {
    width: 450px;
	}
	.landing_pg .home_banner .form_part h3:after{
		    height: 34px;

	}
	.landing_pg .home_banner .form_part h3{
		    font-size: 25px;
    line-height: 25px;
		padding-top: 25px;
    padding-bottom: 45px;
	}
	.landing_pg .suc_count .count_part .box{
		        padding: 10px 6px;
	}
	.cer ul li img {
    max-height: 40px;
		min-height:40px
	}
	.cer ul{
		    grid-gap: 10px;
		margin-top: 24px;
	}
	.pricing .box .price_head .tag {
    font-size: 14px;
	}
	.pricing .box .price_head h5 {
    font-size: 22px;
	}
	.pricing .box .price_head .price {
   font-size: 45px;
        color: #fff;
        line-height: 50px;
        margin-top: 0;
	}
	.pricing .box .price_head sub {
    font-size: 14px;
	}
	.pricing .box .price_head{
		    padding-top: 15px;
        padding-bottom: 55px;
	}
	.pricing .box .price_head:before{
		    height: 42px;
	}
	.pricing .box .accordion-button {
            font-size: 16px;
        padding: 12px;
	}
	.pricing .box .addon_box{
		    padding: 15px;
	}
	.pricing .box .addon_box .price_head h5{
		    font-size: 20px;
	}
	.pricing .box .addon_box .price_head .price{
		    font-size: 38px;
	}
	.pricing .box ul li{
		    font-size: 15px;
    margin-bottom: 3px;
	}
	.pricing .box ul li:before{
		    margin-right: 6px;
	}
	.pricing .buy_btn{
		font-size: 16px;
		    padding: 12px 0;
		    margin-top: 15px;
	}
	.get_proposal .con_box h2 {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 10px;
}
	.get_proposal .con_box p{
		font-size: 16px;
    margin-bottom: 20px;
	}
	
	.get_proposal .con_box .btn_grp .call i {
    width: 55px;
    height: 55px;
	}
	.get_proposal .con_box .btn_grp .call span b {
    font-size: 26px;
	}
	.get_proposal{
		    padding: 50px 0;
		}
}

@media screen and (max-width:991px){
	.landing_pg .logo_bann {
        max-width: 265px;
        margin: 0 auto;
        margin-bottom: 25px;
    }
	.home_banner .con_part{
		text-align:center;
	}
	.landing_pg .home_banner .con_part p{
		        margin: 0 auto;
        margin-bottom: 15px;
	}
	.landing_pg .call{
		        text-align: left;
        justify-content: center;
	}
	.landing_pg .home_banner .form_part{
		width:100%;
		box-shadow:none;
	}
	.pricing .img_box{
		display:none;
	}
	.landing_pg .home_banner .con_part h4{
		        justify-content: center;
	}
	.landing_pg .home_banner .con_part h4:before {
        width: 55px;
        height: 70px;
        left: -203px;
        top: -18px;
        right: 0;
        margin: 0 auto;
    }
}
@media screen and (max-width:767px){
	.landing_pg .home_banner .con_part h4 b{
		        font-size: 38px !important;
        width: auto !important;
        height: auto !important;
        line-height: 50px !important;
	}
	.animated_text p{
	    font-size: 15px;
	}
	    .landing_pg .logo_bann {
        max-width: 220px;
        margin-bottom: 30px;
    }
	.landing_pg .home_banner .con_part{
		        max-width: 100%;
	}
	    .landing_pg .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
	.landing_pg .home_banner .con_part .bann_head {
               font-size: 38px;
        line-height: 45px;
        margin-bottom: 10px;
    }
	.landing_pg .home_banner .con_part h4{
		    font-size: 30px;
    margin-top: 0px;
		        padding-left: 35px;
	}
	.landing_pg .home_banner .con_part h4:before {
        width: 40px;
        height: 62px;
        left: -175px;
        top: -14px;
    }
	.landing_pg .home_banner .con_part p {
        font-size: 15px;
    }
	    .landing_pg .home_banner .con_part h3 {
        padding: 6px 18px;
        font-size: 15px;
        margin-bottom: 12px;
    }
	.landing_pg .call i {
    width: 45px;
    height: 45px;
		margin-right: 8px;
		    font-size: 20px;
	}
	.landing_pg .call span b {
    font-size: 22px;
	}
	.landing_pg .call span {
    font-size: 15px;
		line-height: 22px;
	}
	.landing_pg .call{
		        margin-top: 22px;
}
	.landing_pg .suc_count .count_part {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
}
	.landing_pg .suc_count .count_part .box .ico_count span {
        font-size: 22px;
    }
	    .landing_pg .home_banner {
        padding-bottom: 30px;
        padding-top: 30px;
    }
	.suc_count .count_part{
		        margin-top: 25px;
	}
	.landing_pg .home_banner .form_part{
		display:block;
	}
	    .landing_pg .home_banner .form_part h3 {
        font-size: 22px;
        line-height: 22px;
        padding-top: 22px;
        padding-bottom: 36px;
    }
	
	.landing_pg .home_banner .form_part h3:after {
        height: 26px;
    }
	.landing_pg .home_banner .form_part form {
    padding: 0 15px;
    padding-bottom: 15px;
}
	    .landing_pg .home_banner .form_part label {
        font-size: 14px;
        margin-bottom: 3px;
    }
	.landing_pg .home_banner .form_part .form-control{
		height: 44px;
        font-size: 15px;
        margin-bottom: 6px;
	}
	.home_banner .form_part .my_btn {
        font-size: 15px;
		    height: 44px;
    }
	.cer{
		    padding-top: 20px;
    padding-bottom: 20px;
	}
	    .cer ul {
        grid-gap: 5px;
        margin-top: 15px;
        grid-template-columns: repeat(3, 1fr);
			margin-bottom: 0;
    }
	    .cer ul li img {
        max-height: 35px;
			min-height:35px;
    }
	.cer ul li{
		    padding: 10px;
	}
	
	    .pricing .box .price_head .price {
        font-size: 45px;
        line-height: 45px;
        margin-top: 8px;
    }
	    .pricing .box .price_head:before {
        height: 30px;
    }
	    .pricing .box .price_head {
        padding-top: 15px;
        padding-bottom: 25px;
			    padding-left: 15px;
    padding-right: 15px;
			display:block;
			        text-align: center;
    }
	    .pricing .box .addon_box {
        padding: 12px;
    }
	    .pricing .box .accordion-button {
        font-size: 15px;
        padding: 14px 15px;
    }
	.pricing .box .accordion-button span {
    padding-left: 5px;
}
	.pricing .box .accordion-button:after{
		        right: -5px;
	}
	
	.pricing .box ul li{
		    font-size: 15px;
    margin-bottom: 5px;
	}
	    .pricing .buy_btn {
        font-size: 15px;
        padding: 10px 0;
        margin-top: 12px;
    }
	    .get_proposal .con_box h2 {
        font-size: 32px;
        line-height: 40px;
	}
	.get_proposal .con_box .btn_grp .call {
    margin-left: 12px;
		margin-top:0;
	}
	    .get_proposal .con_box .btn_grp .call i {
        width: 45px;
        height: 45px;
    }
	    .landing_pg .get_proposal .call span {
        font-size: 14px;
        line-height: 22px;
    }
	.get_proposal .con_box .btn_grp .call span b {
        font-size: 18px;
    }
	.get_proposal .btn_style a{
		font-size: 15px;
    padding: 12px 20px;
	}
	.get_proposal {
        padding: 35px 0;
    }
	   .landing_pg .testi {
        padding-bottom: 0;
    }
	.copyright {
    font-size: 13px;
	}
	.landing_pg .owl-dots button span{
    width: 8px;
    height: 8px;
		    margin: 0 2px;
	}
	
}
/* pricing new */
/* .price_sec .pricing_new_left{
	   border: 1px solid #e8e8ed;
    border-radius: 10px;
    padding: 20px;
    background-color: #f7f6fc;
} */

.price_sec .pricing_new_left .p_box{
	         display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 12px;
    align-items: center;
    box-shadow: 0px 5px 4px 0px #0055ff0f;
    border: 1px solid #e8e8ed;
}
.price_sec .pricing_new_left .p_box p {
margin-bottom: 0;
    display: flex;
	    align-items: center;
}
.price_sec .pricing_new_left .p_box p span{
	    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    padding-left: 20px;
    line-height: 24px;
}
.price_sec .pricing_new_left .p_box p span em{
	    font-style: normal;
}
.price_sec .pricing_new_left .p_box p span em .badge {
	    margin-left: 3px;
    background-color: #000 !important;
    font-weight: normal;
    font-style: normal;
	    font-size: 12px;
	    top: -2px;
	position:relative;
}
.price_sec .pricing_new_left .p_box p small{
    font-size: 15px;
    color: var(--textlight);
}
.price_sec .pricing_new_left .p_box p.price{
	font-size:18px;
	 color: var(--textlight);
}
.price_sec .pricing_new_left .p_box p.price b{
	color: #000;
	 
}
.price_sec .pricing_new_left .radio_before input{
	width:25px;
	height:25px;
}
.price_sec .pricing_new_left .radio_before {
	position:relative;
}

.price_sec .pricing_new_left .check_icon {  
	 position: absolute;
    font-size: 25px;
    color: var(--primary);
    top: 0;
    left: 0;
	    line-height: 25px;
    font-style: normal;
	display:none;
}
.price_sec .pricing_new_left .radio_before input:checked {
	   visibility: hidden;
}
.price_sec .pricing_new_left .radio_before input:checked + .check_icon{
	display:block;
}



.pricing_new_fea{
	   border: 1px solid #e8e8ed;
   
    padding: 24px;
    background-color: var(--dark);
    border-radius: 15px;
}
.pricing_new_fea h4{
	        font-size: 22px;
    margin-bottom: 22px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}
.pricing_new_fea ul{
	    padding: 0;
    margin: 0;
    list-style: none;
}
.pricing_new_fea ul li {
	       font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}
.pricing_new_fea ul li:before{
	       position: absolute;
    content: '\F26C';
    display: block;
    font-size: 16px;
    color: #fff;
    top: 0;
    left: 0;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
}
.pricing_new_fea .my_btn{
	      display: inline-block;
    padding: 12px 35px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    background: var(--primary);
    border-radius: 10px;
    text-decoration: none;
    margin-top: 12px;
    transition: .3s;
    width: 100%;
    border: none;
}
.addon_plan{
	margin-top:25px;
}
.addon_plan .addon_box{
	    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 12px;
    align-items: center;
    box-shadow: 0px 5px 4px 0px #0055ff0f;
    border: 1px solid #e8e8ed;
	    height: 95%;
}
.addon_plan .addon_box h5{
	    font-size: 22px;
    line-height: 28px;
    margin-bottom: 6px;
    color: var(--textdark);
    font-weight: 600;
}
.addon_plan .addon_box .price{
	     line-height: 35px;
    color: var(--textdark);
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 700;
    margin-top: 12px;
}
.addon_plan .addon_box .price small{
	    font-weight: 400;
    color: var(--textlight);
}
.addon_plan .addon_box p{
	    font-size: 16px;
    color: var(--textlight);
    line-height: 24px;
    font-weight: 400;
	margin-bottom:0;
}
.addon_plan .addon_box ul{
	list-style:none;
	padding:0;
	margin:0;
	margin-top:18px;
}
.addon_plan .addon_box .btn_style a{
	padding: 12px 40px;
    font-size: 15px;
    margin-top: 15px;
}
.addon_plan .addon_box ul li{
	    font-size: 16px;
    color: var(--textlight);
    line-height: 24px;
	    margin-bottom: 6px;
    font-weight: 400;
}
.addon_plan .addon_box ul li b{
	 color: #000;
	font-weight:500;
}
.addon_plan .title_head {
	    margin-bottom: 25px;
}
/* price table design */

.price_table article {
  width:100%;
  position:relative;
}
.price_table ul.mob_tab {
  display:flex;
  top:0px;
  z-index:10;
  padding-bottom:14px;
	    padding-left: 0;
	    gap: 5px;
	    margin-bottom: 0;
}
.price_table ul.mob_tab button{
	       color: #000 !important;
    border: none;
    font-size: 15px;
    line-height: 18px;
    background-color: #ebebeb;
    font-weight: 500;
}
.price_table ul.mob_tab .bg-grey.active button{
	 background: #f73859;
	  color: #fff !important;
}

.price_table ul.mob_tab .bg-ltpurple.active button{
	 background: #00aeef;
	  color: #fff !important;
}
.price_table ul.mob_tab .bg-purple.active button{
	 background: #ff7f45;
	  color: #fff !important;
}
.price_table ul.mob_tab .bg-green.active button{
	 background: #00a11c;
	  color: #fff !important;
}
.price_table li {
  list-style:none;
  flex:1;
}
.price_table article li{
	    border-radius: 10px;
    overflow: hidden;
}
.price_table li:last-child {
  border-right:1px solid #DDD;
}
.price_table button {
  width:100% !important;
  border: 1px solid #DDD;
  border-right:0;
  border-top:0;
  padding: 10px;
  background:#FFF;
  font-size:14px;
  font-weight:bold;
  height:60px;
  color:#999
}
.price_table li.active button {
  background:#F5F5F5;
  color:#000;
}
.price_table table { border-collapse:collapse;  width:100%; }
.price_table th { background:#FFF; display:none; }
.price_table td, .price_table th {
  height:45px
}
.price_table td, .price_table th { 
	border:1px solid #DDD;    border-bottom: none;
      padding: 2px 10px;empty-cells:show; 
}
.price_table td,.price_table th {
  text-align:left;
}
.price_table td+td,.price_table th+th {
  text-align:center;
  display:none;
}
.price_table td.default {
  display:table-cell;
}
.price_table .bg-grey {
      background-color: #f73859;
    color: #fff;
}
.price_table .bg-ltpurple {
      background-color: #00aeef;
    color: #fff;
}
.price_table .bg-purple {
     background-color: #ff7f45;
    color: #fff;
}
.price_table .bg-green {
       background-color: #00a11c;
    color: #fff;
}
.price_table .bg-orange {
       background-color: #ed9900;
    color: #fff;
}
.price_table .bg-membership {
  Height:10px !important;
  border-top:3px solid #0097CF;
}
.price_table .sep {
      background: #00aeef;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}
.price_table td.short{
   height:20px !important;
      color: #f73859;
}
.price_table td.shortltpurple{
   height:20px !important;
      color: #00aeef;
}
.price_table td.shortpurple{
   height:20px !important;
      color: #ff7f45;
   display:table-cell;
}
.price_table td.shortgreen{
   height:20px !important;
      color: #00a11c;
}
.price_table td.price{
   height:20px !important;
/*    border-top:0px; */
   border-bottom:0px;
   text-align:center;
	    position: relative;
}
.price_table td.priceltpurple{
   height:20px !important;
/*    border-top:0px; */
   border-bottom:0px;
   text-align:center; 
	    position: relative;
}
.price_table td.pricepurple, .price_table td.pricegreen{
   height:20px !important;
   border-top:0px;
   border-bottom:0px;
   text-align:center;
   display:table-cell;  
	    position: relative;
    top: -8px;
}
.price_table td.priceheader{
   height:20px !important;
   border:0;
   font-size:25px;
   font-weight:bold;
}
.price_table td .my_btn{
	    padding: 6px 20px;
    border: 1px solid #ddd;
    text-transform: capitalize;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    font-size: 15px;
	    position: relative;
    top: -10px;
	    top: -8px;
    display: block;
}
.price_table td.description .my_btn{
	 border-color:#f73859;
	color:#f73859;
}
.price_table td.descriptionltpurple .my_btn{
	 border-color:#00aeef;
	color:#00aeef;
}
.price_table td.descriptionpurple .my_btn{
	 border-color:#ff7f45;
	color:#ff7f45;
}
.price_table td.descriptiongreen .my_btn{
	 border-color:#00a11c;
	color:#00a11c;
}
.price_table td.descriptionorange .my_btn{
	color:#ed9900;
	 border-color:#ed9900;
}
.price_table td.descriptiongreen, .price_table td.descriptionorange{
	border-top:0;
}
.price_table td.description{
   height:20px !important;
   border-top:0px;
   text-align:center;
   border-bottom:0px;
}
.price_table td .bi-check-circle-fill{
	color: #00a11c;
}
.price_table td .bi-x-circle-fill{
    color: #ed0808;
}
.price_table td.descriptionltpurple{
   height:20px !important;
   border-top:0px;
   text-align:center;
   border-bottom:0px;  
}
.price_table td.descriptionpurple{
   height:20px !important;
   border-top:0px;
   text-align:center;
   border-bottom:0px;  
   display:table-cell;  
}
.price_table td.last_btn,.price_table td.last_td{
	border-bottom:1px solid #ddd
}

.price_table td.last_btn a.my_btn{
	    top: 0;
	    width: 100%;
    display: block;
}
.price_table td.last_btn.description a.my_btn{
	    background-color: #f73859;
    color: #fff;
}
.price_table td.last_btn.descriptionltpurple a.my_btn{
	    background-color: #00aeef;
    color: #fff;
}
.price_table td.last_btn.descriptionpurple a.my_btn{
	    background-color: #ff7f45;
    color: #fff;
}
.price_table td.last_btn.descriptiongreen a.my_btn{
	    background-color: #00a11c;
    color: #fff;
}
.price_table td.last_btn.descriptionorange a.my_btn{
	    background-color: #ed9900;
    color: #fff;
}
.price_table td.grey{
   background-color:#fff;   
   color:#5e6a71;
}
.price_table td.ltpurple{
/*    background-color:#f4eef6;    */
   display:table-cell;
   color:#8e258d;
}
.price_table td.purple{
/*    background-color:#e2cee3; */
   color: #8e258d;
}
.price_table .txt-l { font-size:24px; font-weight:500;    line-height: 24px;
    margin: 10px 0px;    display: block;}
/*--.txt-top { position:relative; top:-9px; left:-15px; }--*/
.price_table .txt-top { 
    position: relative;
    font-size: 16px;
    top: 2px;
}
.price_table .tick { font-size:18px; color:#5e6a71; }
.price_table .tickltpurple { font-size:18px; color:#b079b1; }
.price_table .tickltpurplesmallfont { font-size:16px; color:#b079b1; }
.price_table .tickpurple { font-size:18px; color:#8e258d; }
.price_table .donotshow {
  border:0;
  background:none;
}
.price_table .hidetop {
  border-top:1px solid #ddd;
  border-bottom:0px;
  background:none;
}
.price_table .nav-tabs{
	      max-width: 800px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    margin-bottom: 35px;
    border: none;
}
.price_table .nav-tabs .nav-link{
       box-shadow: 0px 5px 4px 0px #0055ff0f;
    border: 1px solid #e8e8ed !important;
    border-radius: 10px;
    color: #000;
    font-size: 16px;
	    height: auto;
	    padding: 15px;
	position:relative;
}
.price_table .nav-tabs .nav-link.active:after{
position: absolute;
    content: "\F229";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    width: 30px;
    height: 30px;
    color: var(--primary);
    font-size: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -12px;
}
.price_table .nav-tabs .nav-link img{
	    display: block;
    width: 60px;
    margin: 0 auto;
	margin-bottom:6px;
}
.price_table .nav-tabs .nav-link.active img{
	filter: invert(1);
}
.price_table .nav-tabs .nav-link.active{
	color: #fff;
	background-color:var(--primary);
}
.price_table .nav-tabs li:last-child{
	border:none;
}
.price_table .donotshow{
	    min-width: 300px;
}
@media (min-width: 640px) {
  .price_table ul.mob_tab {
    display:none;
  }
  .price_table td,.price_table th {
    display:table-cell !important;
  }
  .price_table td,.price_table th {
    width: 280px;
  
  }
  td+td, th+th {
    width: auto;
  }
}
@media (max-width: 1450px) {
	.price_table .txt-l {
    font-size: 20px;
	}
	.price_table td .my_btn {
    padding: 4px 18px;
	}
	.price_table .txt-top{
		font-size: 15px;
	}
	.price_table td, .price_table th{
		font-size:15px;
	}
	.price_table .nav-tabs .nav-link img{
		    width: 55px;
	}
}
@media (max-width: 639px) {
	.price_table table{
		    table-layout: fixed;
	}
	.price_table .nav-tabs .nav-link{
		    font-size: 15px;
    line-height: 20px;
	}
	    .price_table .nav-tabs .nav-link img {
                width: 42px;
        margin-bottom: 8px;
    }
	.price_table .nav-tabs{
		    gap: 10px;
	}
	.price_table .nav-tabs .nav-link.active:after{
		    bottom: -20px;
		    font-size: 25px;
		width: 25px;
    height: 25px;
	}
.mob_d_none{
	display:none;
}
	.price_table .txt-l {
    font-size: 20px;
	}
	.price_table .txt-top{
		    font-size: 14px;
	}
	.price_table td, .price_table th{
		height: 40px;
		    font-size: 14px;
	}
	.price_table .txt-top{
		    top: 0px;
	}
	.price_table td .my_btn{
		    top: -8px;
	}
	.price_table td .my_btn {
    padding: 4px 15px;
	}
}
/* start order page */
.radio_group .wpcf7-list-item{
	    margin-left: 0;
}
.radio_group .wpcf7-form-control{
	    display: grid;
    grid-template-columns:repeat(2,1fr);
    grid-gap: 10px;
    margin-bottom: 15px;
}
.radio_group .wpcf7-list-item label{
	    background-color: #fff;
    padding: 12px;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    border-radius: 5px;
    border: none !important;
}
.radio_group .wpcf7-list-item input{
	margin-right:10px;
} 


.radio_group .wpcf7-list-item input{
	    opacity: 0;
}

.radio_group input[type=radio] + .wpcf7-list-item-label{
	position:relative;
}

.radio_group input[type=radio] + .wpcf7-list-item-label::before {
      font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    content: "\F28A";
    font-size: 18px;
    color: silver;
    margin-right: 5px;
    position: absolute;
    left: -25px;
}
.radio_group input[type=radio]:checked + .wpcf7-list-item-label:::before {
    content: "\F26A";
    color:var(--primary);
}



/*start portfolio page*/
.portfolio_web .grid_dvd{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    
}
.portfolio_web .grid_dvd .box{
    margin-bottom: 30px;
    cursor: pointer;
}
.portfolio_web .grid_dvd .box .img_part{
    border-radius: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.portfolio_web .grid_dvd .box .img_part:after{
        position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #000000ad, transparent);
    left: 0;
    bottom: 0;
    z-index: 0;
}
.portfolio_web .grid_dvd .box .abslt_box{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	    z-index: 9;
}
.portfolio_web .grid_dvd .box .abslt_box p{
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}
.portfolio_web .grid_dvd .box .abslt_box a{
       color: #fff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background-color: #ffffff47;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio_web .grid_dvd .box .text_part{
       display: flex;
    align-items: center;
    padding-top: 12px;
    padding-left: 0;
}
.portfolio_web .grid_dvd .box .text_part .com_fav{
      width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0px 4px 5px 0px #00427f26;
    margin-right: 13px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.portfolio_web .grid_dvd .box .text_part p{
    margin-bottom: 0px;
}


.portfolio_modal{
    position: fixed;
    
    left: 0;
    z-index: 9999;
    width: 100%;
    height: calc(100% - 100px);
    border-top-right-radius: 50px;    
    border-top-left-radius: 50px;
    background-color:#ededed;
   bottom: -100%;
    padding-bottom: 0;
    overflow-y: scroll;
    transition: 0.3s;
    
}
.portfolio_modal.open_mod{
     bottom: 0 !important;
}
.portfolio_modal::-webkit-scrollbar {
  width: 0;
}
 
.portfolio_modal::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.portfolio_modal::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.port_wrapper{
    max-width: 1200px;
    margin: 0 auto;
       padding: 50px 0px;
    width: 100%;
        overflow: hidden;
}
.portfolio_modal p{
    font-size: 16px;
    color: #222;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.portfolio_modal .close_port{
      position: absolute;
    right: 30px;
    top: 32px;
    font-size: 25px;
    cursor: pointer;
	z-index:99;
}
.portfolio_modal h4{
       font-size: 60px;
    color: #222;
    text-transform: capitalize;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}
.portfolio_modal .com_logo{
    max-width: 120px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 25px;
}
.portfolio_modal .mock_pos{
    position: relative;
}
.portfolio_modal .desk_view{
      max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.portfolio_modal .desk_view .desk_img{
        position: absolute;
    height: 372px;
    overflow-y: scroll;
    border-radius: 6px;
    top: 28px;
    width: calc(100% - 7%);
    margin: 0 auto;
    left: 0;
    right: 0;
}
.portfolio_modal .desk_view .desk_img::-webkit-scrollbar {
  width: 3px;
}
 
.portfolio_modal .desk_view .desk_img::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.portfolio_modal .desk_view .desk_img::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.portfolio_modal .mob_view{
       position: absolute;
    max-width: 210px;
    bottom: 0;
    right: 60px;
}
.portfolio_modal .mob_view .mob_img{
   position: absolute;
    height: 420px;
    overflow-y: scroll;
       border-radius: 25px;
    top: 8px;
    width: calc(100% - 7%);
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: #ae3434;
}

.portfolio_modal .mob_view .mob_img::-webkit-scrollbar {
  width: 0;
}
 
.portfolio_modal .mob_view .mob_img::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.portfolio_modal .mob_view .mob_img::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

@media screen and (max-width:1500px){
    .port_wrapper{
            padding: 25px 0px;
    }
    .portfolio_modal p {
    font-size: 14px;
    }
    .portfolio_modal h4 {
    font-size: 45px;
    }
    .portfolio_modal .com_logo {
    max-width: 105px;
            margin-bottom: 15px;
    }
    .portfolio_modal .desk_view {
    max-width: 575px;
    }
    .portfolio_modal .desk_view .desk_img{
            height: 304px;
            top: 24px;
    width: calc(100% - 8%);
    }
    .portfolio_modal .mob_view{
           max-width: 185px;
    right: 140px; 
    }
    .portfolio_modal .mob_view .mob_img{
        height: 370px;
            border-radius: 24px;
    top: 7px;
    width: calc(100% - 7%);
    }
}
@media screen and (max-width:1200px){
    .portfolio_modal .mob_view{
                right: 3%;
    }
    .portfolio_modal{
            height: calc(100% - 40px);
    }
   
}
@media screen and (max-width:991px){
	.portfolio_web .grid_dvd{
		    grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width:767px){
	.portfolio_web .grid_dvd{
		    grid-template-columns: repeat(1, 1fr);
	}
     .portfolio_modal .mob_view{
            position: relative;
                     max-width: 230px;
        margin: 0 auto;
        margin-top: 20px;
         right: 0;
    }
        .portfolio_modal .desk_view {
        max-width: 350px;
    }
        .portfolio_modal .desk_view .desk_img {
       height: 186px;
        top: 14px;
        border-radius: 2px;
    }
        .portfolio_modal h4 {
        font-size: 26px;
    }
    .portfolio_modal .close_port{
        right: 20px;
    top: 20px;
    font-size: 20px;
    }
    .portfolio_modal{
            border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    }
          .portfolio_modal .mob_view .mob_img {
               height: 461px;
        border-radius: 28px;
        top: 9px;
        width: calc(100% - 7%);
        right: -1px;
    }
}
/* end portfolio page*/
.loader {
    display: none; /* Initially hidden */
    text-align: center;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

#desktop_loader,
#mobile_loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 16px;
}
.web_link{
	text-decoration:none;

}
.web_link h4{
		transition:0.3s;
}
.web_link:hover h4{
	color:var(--blue)
}






/*pricing  */
.pricing-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            margin: 10px;
        }
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        .pricing-card .price {
            font-size: 36px;
            font-weight: bold;
            margin: 20px 0;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
        }
       
        .pricing-card .btn {
            width: 100%;
            margin-top: 20px;
        }
        .best-value {
            border: 2px solid #007bff;
        }

 .price-display {
            margin-top: 20px;
            display: none;
        }
       
        
        /* Larger switch styles */
.form-switch{
	    margin-bottom: 60px !important;
}
        .form-switch .form-check-input {
            height: 2rem;
            width: 4rem !important;
            margin-left: -0.5rem;
			    margin: 0px 30px !important;
        }
        .form-switch .form-check-label {
            font-size: 20px;
            font-weight: 500;
			    text-align: center;
			    position: relative;
        }
.form-switch .form-check-label small{
	     font-size: 13px;
    text-transform: capitalize;
    color: #ffffff;
    padding: 3px 10px;
    background-color: #00a11c;
    border-radius: 2px;
    border: 1px solid #00a11c;
    position: absolute;
    display: block;
    width: 165px;
    left: -40px;
    right: 0;
    bottom: -37px;
    margin: 0 auto;
	border-radius: 15px;
}
.form-switch .form-check-label small:after{
	    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #00a11c;
    top: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(45deg);
	    
	
}
        .form-switch {
            padding-left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Switch colors */
        .form-check-input:checked {
            background-color: #198754;
            border-color: #198754;
        }
        .form-check-input:focus {
            box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
        }

/* web design pricing */

 :root {
            --primary-color: #4e73df;
            --secondary-color: #05f;
            --accent-color: #f6c23e;
            --light-color: #f8f9fc;
            --dark-color: #5a5c69;
        }

.pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            overflow: hidden;
            border: none;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background: var(--primary-color);
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
        }
        
        .popular-tag {
            position: absolute;
            top: 0;
            right: 20px;
            background: var(--accent-color);
            color: #333;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 0 0 5px 5px;
        }
        
        .package-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .package-cms {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .package-price {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .price-period {
            font-size: 14px;
            opacity: 0.8;
			margin-bottom:0;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .features-list li {
              padding: 5px 0;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
        }
        
        .features-list li:before {
            content: "\f26a";
            font-family: bootstrap-icons !important;
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }
        
        .btn-order {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-order:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .popular .pricing-header {
            background: var(--secondary-color);
        }
        
        @media (max-width: 767px) {
            .pricing-card {
                margin-bottom: 30px;
            }
        }

.pp{
 display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top:10px;
}

.pp .txt-l{
text-align: left;
      font-size: 42px;
    line-height: 24px;
}
.pp sup{
font-size: 20px;
    opacity: .5;
    top: -0.9em;
    padding-right: 3px;
}
.pp sub {
bottom: 0;
    font-size: 16px;
    opacity: .5;
}
.pp .yr{
font-size: 15px;text-transform: none;margin-top: 8px;display: block;
}
.pp .yr del{
 opacity: .5;
}
.pp .sv{
font-size:13px;text-transform:capitalize;color: #008918;padding: 3px 15px;background-color: #00a11c1c;border-radius: 50px;border: 1px solid #00a11c3d;
}


 @media (max-width: 991px) {
.pp{
display: block;
    margin-bottom: 15px;
}
.pp .txt-l{
    text-align: center;
   font-size: 35px !important;
    line-height: 26px;
    margin-bottom: 5px;

}

.pp sup{
    font-size: 16px;
}
.pp .yr{
    margin-top: 3px;
    font-size: 12px;
}
.pp .sv {
font-size: 12px;
padding: 3px 12px;
}
}


.radio_group_new_sec label {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 15px;
	    margin-bottom: 15px !important;
    padding: 0;
}
.contact_info .form_part form .radio_group_new_sec .form-check-input {
    height: auto;
    margin-bottom: 0;
}
.contact_info .form_part form .radio_group_new_sec .form-check-input .wpcf7-list-item {
    margin-bottom: 0 !important;
}
.radio_group_new_sec .wpcf7-form-control-wrap label {
    width: 100% !important;
    font-weight: normal !important;
    font-size: 16px !important;
    height: auto;
    padding-bottom: 15px;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
}


 @media (max-width: 991px) {
	 .radio_group_new_sec .wpcf7-form-control-wrap label{
		     font-size: 13px !important;
	 }
	 .radio_group_new_sec .wpcf7-form-control-wrap label{
		     padding-bottom: 8px;
    margin-bottom: 8px !important;
	 }
}