
/*** 
====================================================================
Global Settings
====================================================================
***/
:root {
    --white-color: #ffffff;
    --body-color:#394e66;
    --black: #000000;
    --card-shadow-2: 0 10px 15px rgba(23, 42, 65, .1);
    --theme-color-1: #41b0db;
    --theme-color-3: #021a3c;
    --light-grey: #eaf1f9;
    --grey-color:#63788f;
    --border-radius-xs: 5px;
    --border-radius-sm: 10px;
}
body{
    color: var(--body-color);
    line-height: 1.65;
    font-family: 'Inter', 'Trebuchet MS', 'Century Gothic', 'Segoe UI', sans-serif;
    font-size: 15px;
}
.text-primary{
    color: var(--theme-color-1) !important;
}
.text-warning{
    color: var(--warning-color) !important;
}
.border-radius-xs{
    border-radius: var(--border-radius-xs);
}
.border-radius-sm{
    border-radius: var(--border-radius-sm);
}
.bg-primary{
    background: var(--theme-color-1) !important;
}
.bg-light {
    background: linear-gradient(90deg, #52ABFF14 0%, #00305714 100%) !important;
}
.vcp-wrapper{
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}
.bg-overlay:after{
    position: absolute;
    content: "";
    inset: 0;
    background: var(--black);
    opacity: .3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-overlay{
    position: relative;
    z-index: 1;
}

a{
    text-decoration: none;
}

h1,h2,h3,h4{
    color: var(--black);
    font-weight: 700;
    line-height: 1.25;
}
.h1, h1 {
    font-size: 45px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 18px;
}
h1 span,
h2 span,
h3 span{
    color: var(--theme-color-1);
}
.form-select,
.form-control{
    height: 46px;
    font-size: 14px;
    border-color: rgba(0,0,0,.15);
    background-color: var(
    --white-color);
    border-radius: var(
    --border-radius-xs);
}
.form-select{
    background-position: right 0.2rem center;
    padding: 0 22px 0 8px;
}
.form-select:focus,
.form-control:focus{
    border-color: var();
    box-shadow: none;
}
input.invalid {
    background-color: #ffdddd
}
textarea.form-control{
    height: 110px !important;
    resize: none;
    padding: 10px 15px;
}


.vcp-blog-detail-block{
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.vcp-blog-detail-block h1{
    font-size: 30px;
}
.vcp-blog-detail-block h2{
    font-size: 26px;
}

/* Section 16 */
.vcp-about-aside-list-sec .vcp-section-caption.vcp-main-list ul{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 3px 15px;
}
.vcp-about-content-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.vcp-about-content-list li{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vcp-about-content-list li .img-holder img{
    border-radius: 20px;
    width: 100%;
}
.vcp-about-content-list .content{
    background: var(--theme-color-1);
    color: var(--white-color);
    padding: 20px 15px;
    border-radius: 20px;
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vcp-about-content-list .content p{
    margin-bottom: 0;
}
.vcp-about-content-list .content h3{
    font-size: 22px
}
.vcp-about-content-list li:nth-child(2){ 
    flex-direction: column-reverse;
}
.vcp-about-content-list li:nth-child(2) .content{
    background: var(--danger-color);
}
.vcp-about-us-sec .vcp-main-list ol, 
.vcp-about-us-sec .vcp-main-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
}

/* Section 18 */
.vcp-choose-caption-list-2 ul {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 30px;
    padding: 12px 0;
}
.vcp-choose-caption-list-2 ul li{
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 21px 21px 59px 0px rgba(27, 137, 212, 0.1);
    -webkit-transform: skewY(-4deg);
    transform: skewY(-4deg);
}
.vcp-choose-caption-list-2 ul .content{
    -webkit-transform: skewY(4deg);
    transform: skewY(4deg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vcp-choose-caption-list-2 ul .content p{
    margin-bottom: 0;
}
.hcp-sticky-call-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color-1);
    color: var(--white-color);
    border-radius: 7px;
    z-index: 999;
    padding: 6px 16px;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}
.bounce {
    animation: bounce 0.8s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-5px); }
}












/************** New Code *****************/
.spacing-padding {
    padding: 70px 0;
}
.spacing-margin {
    margin-bottom: 70px;
}
.btn{
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 43px;
    padding: 8px 16px;
    line-height: 1.3;
    font-weight: 600;
    white-space: nowrap;
    color: var(--white-color);
}
.btn-primary{
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: var(--white-color);
}
.btn-primary:hover{
    background: #3490b4;
    border-color: #3490b4;
}
.btn-secondary{
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: var(--white-color);
}
.btn-secondary:hover{
    background: #3490b4;
    border-color: #3490b4;
}
.btn-outline-primary{
    border-color: var(--theme-color-1);
    color: var(--theme-color-1);
}
.btn-outline-primary:hover{
    background: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: var(--white-color);
}
.btn-outline-light{
    border-color: var(--white-color);
    color: var(--white-color);
}
.btn-outline-light:hover{
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--theme-color-1);
}
.btn-light{
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--theme-color-1);
}
.btn-light:hover{
    background: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}
.checlist-items ul{
    padding: 0;
    list-style-type: none;
    line-height: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checlist-items.grid-2 ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}
.checlist-items ul li{
    position: relative;
    padding: 0 0 0 33px;
}

.checlist-items ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: var(--theme-color-1);
    background-position: center;
    border-radius: 50%;
}
.checlist-items.sm-items ul{
    line-height: 20px;
    font-size:15px
}
.checlist-items.sm-items ul li{
    padding: 0 0 0 25px;
}
.checlist-items.sm-items ul li:not(:last-child){
    margin-bottom: 15px;
}
.checlist-items.sm-items ul li::before{
    top: 0px;
}
.vcp-top-subtitle{
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-color-1);
    font-size: 14px;
}
.vcp-btn-wrapp{
    margin-top: 15px;
}
.vcp-section-caption{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    align-items: flex-start;
    font-size: 16px;
}
.vcp-section-caption h2{
    margin-bottom: 0;
}
.vcp-section-caption p{
    margin-bottom: 0;
}
/* Page Header */
#pageHeader {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.2s ease, box-shadow .2s ease, padding .2s ease;
    background: var(--white-color);
}
.vcp-header-top-bar{
    background: var(--theme-color-1);
    color: var(--white-color);
    padding: 8px 0;
}
.vcp-header-bar-list{
    display: flex;
    font-size: 14px;
    gap: 6px 20px;
    flex-wrap: wrap;
}
.vcp-header-bar-list a,
.vcp-header-bar-list li{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vcp-header-bar-list li:first-child{
    flex: 1 1 auto;
}
.vcp-header-bar-list .ico{
    display: flex;
}
.vcp-header-bar-list a{
    color: var(--white-color);
}
.vcp-main-menu-wrapper{
    gap: 40px;
    position: relative;
}
.vcp-page-nav .vcp-navbar {
    display: flex;
    gap: 30px;
    text-transform: capitalize;
    font-weight: 600;
}
.vcp-page-nav .vcp-navbar .nav-link{
    padding: 0;
    color: var(--black);
    position: relative;
    line-height: 80px;
    font-size: 16px;
    transition: color .25s ease-in-out;
}
.vcp-page-nav .vcp-navbar .nav-link i{
}
.vcp-page-nav .vcp-navbar .nav-link:hover{
    color: var(--theme-color-1);
}
/* .vcp-header-actions .btn{
font-size: 14px;
height: 42px;
} */
.vcp-header-actions .btn-sm span {
    font-size: 10px;
}
/* Mega menu */
.vcp-serviceMainMenu{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    z-index: 909;
    top: 100%;
    transition: all .2s ease-in-out;
    transform: translateY(20px);
    visibility: hidden;
}
.vcp-page-nav .vcp-navbar .nav-item:hover .vcp-serviceMainMenu{
    opacity: 1;
    transform: translateY(0);
    visibility:visible;
}
.serviceMegaMenu .menueTitle{
    font-size: 18px;
    color: var(--theme-color-1);
    border-bottom: 1px solid rgb(219 0 125 / 10%);
    padding-bottom: 10px;
    margin-bottom: 15px;
    width: 80%;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.serviceMegaMenu{
    background: var(--white-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}
.triangle {
    width: 14px;
    height: 10px;
    border-style: solid;
    border-width: 0px 10px 10px 10px;
    border-color: transparent transparent var(--white-color) transparent;
    transform: rotate(0deg);
    position: relative;
    top: 0;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}
.serviceMegaMenu .serviceRightSide{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}
.serviceRightSide .serviceMenuList{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 15px;
}
.serviceRightSide .serviceMenuList a{
    color: var(--body-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .25s ease-in-out;
    position: relative;
    padding-left: 17px;
}
.serviceRightSide .serviceMenuList a:after{
    position:absolute;
    content:'';
    width: 8px;
    height: 8px;
    border: 2px solid var(--theme-color-1);
    border-radius: 50%;
    left: 0;
    top: 7px;
}
.serviceRightSide .serviceMenuList a:hover{
    color:var(--theme-color-1);
}
.serviceRightSide .serviceMenuList img{
    max-width: 25px;
}
.serviceMenuChoose{
    width: 25%;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-direction: column;
}

.serviceMenuChooseList{
    padding: 0;
    list-style-type: none;
    margin: 0;
}
.serviceMenuChooseList li{
    position: relative;
    padding: 0 0 0 30px;
}
.serviceMenuChooseList li:not(:last-child){
    margin-bottom: 10px;
}
.serviceMenuChooseList li:after{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color-1);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
}
.serviceMegaMenu .menueImg{
    width: 25%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.serviceMegaMenu .menueImg.bg-overlay:after{
    z-index: 1;
    opacity: .5;
}
.serviceMegaMenu .menueImg .menueImgDetails{
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    z-index: 9;
    font-size: 16px;
    color: var(--white-color);
}
.serviceMegaMenu .menueImg .img-title{
    font-size: 20px;
    line-height: 1.3;
}
.serviceMegaMenu .menueImg .btn{
    font-size: 14px;
    height: 42px;
    padding: 8px 12px;
}
.serviceMegaMenu .menueImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Mobile Menu */

.vcp-offcanvas-close,
.vcp-offcanvas-opener{
    border: none;
    background: transparent;
    color: var(--body-color);
}
.vcp-mobile-page-nav .offcanvas {
    background: var(--white-color);
    max-width: 330px;
}
.vcp-mobile-page-nav li a {
  padding: 10px 22px;
  color: var(--body-color);
  display: block;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,.05);
  position: relative;
  font-size: 16px;
}
.vcp-mobile-page-nav li a.vcp-accordion-button{
    position: absolute;
    top: 0px;
    right: 0;
    padding: 13px 12px;
    display: flex;
    align-items: center;
    border: none;
    background: var(--theme-color-1);
    color: var(--white-color);
}
.vcp-mobile-page-nav li a:hover {
    color:var(--warning-color);
}
.vcp-mobile-page-nav .vcp-mobile-submenu-list{
  margin: 13px auto;
  width: 90%;
  line-height: 20px;
  background: rgba(255,255,255,.035);
}
.vcp-mobile-page-nav .vcp-mobile-submenu-list a{
    font-size:14px;
    padding: 8px 15px;
}
.vcp-mobile-page-nav li:last-child a{
    border:none;
}


/* Section 1 */
.vcp-accordian .accordion-button{
    background: transparent;
    color: var(--body-color);
    padding: 12px 45px 12px 15px;
    font-size: 15px;
    box-shadow: none;
    font-weight: 500;
    overflow: hidden;
    letter-spacing: -.5px;
}
.vcp-accordian .accordion-button:before{
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    height: 100%;
    transition: all .3s linear;
}
.vcp-accordian .accordion-button:focus{
    box-shadow: none;
}
.vcp-accordian .accordion-body {
    padding: 10px 15px 0 15px;
    color: #000;
    font-size: 15px;
    line-height: 24px;
}
.vcp-accordian .accordion-item{
    border: none;
    border-radius: var(--border-radius-sm);
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}
.accordion-button:after{
    display: none;
}
.expand-icon {
    height: 15px;
    width: 15px;
    right: 15px;
}
.expand-icon:before, .expand-icon::after {
    content: " ";
    width: 15px;
    height: 2px;
    background-color: var(--theme-color-1);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.25s cubic-bezier(.42, 0, .58, 1);
    opacity: 1;
    border-radius: 2px;
}
.expand-icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.expand-icon:after {
    transform: translate(-50%, -50%);
}
.vcp-accordian .accordion-button[aria-expanded="true"] .expand-icon:before {
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
}
.vcp-accordian .accordion-button[aria-expanded="true"] .expand-icon:after{
}
.vcp-accordian .accordion-button[aria-expanded="true"]:before{
}
.vcp-accordian .accordion-button[aria-expanded="true"]{
    color: var(--theme-color-1);
}
/* Section 2 */
.vcp-hero-sec {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 0;
    position: relative;
    background-image: var(--desktop-bg);
    margin-bottom: 80px;
}
.vcp-small-hero-sec.bg-overlay:after,
.vcp-hero-sec.bg-overlay:after{
    opacity: 1;
    background: linear-gradient(90deg, rgba(2, 26, 60, .8) 5%, rgba(2, 26, 60, 0) 70%);
}
.vcp-hero-col-wrapper{
    display: flex;
    flex-direction: column;
    gap: 60px;
    height: 100%;
    justify-content: center;
    justify-content: space-between;
}
.vcp-hero-sec .vcp-section-caption{
    gap: 20px;
}
.vcp-hero-details-features{
    gap: 30px;
}
.vcp-hero-caption p{
    margin-bottom:0;
}
.vcp-hero-caption {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
}
.vcp-her-form-wrapp{
    flex: 0 0 35%;
    background: var(--white-color);
    border-radius: var(--border-radius-sm);
    padding: 30px 40px;
    text-align: center;
    gap: 12px;
    color: var(--black);
}
.vcp-her-form-wrapp .vcp-hero-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vcp-her-form-wrapp .form-group{
    position: relative;
}
.vcp-her-form-wrapp i{
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}
.vcp-her-form-wrapp svg{
    width: 16px;
    height: 16px;
}
.vcp-her-form-wrapp .form-control{
    box-shadow: rgba(0, 0, 0, .2) 0px 1px 3px;
    padding: 4px 10px 4px 35px;
    border-color: var(--light-grey);
}
.vcp-her-form-wrapp .vcp-form-heading{
    font-size: 24px;
    line-height: 30px;
}
.vcp-clients-reviews{
    display: flex;
    text-align: start;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}
.vcp-clients-reviews ul li:not(:first-child){
    margin-left: -20px;
}
.vcp-clients-reviews ul img{
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 3px solid var(--white-color);

}
.vcp-clients-reviews strong{line-height: 18px;font-size: 14px;}

.vcp-trust-hero-bar{
    background: var(--white-color);
    display: flex;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    line-height: 20px;
    font-size: 13px;
    margin: 0 0 -80px;
    box-shadow: rgba(0, 0, 0, .2) 0px 1px 3px;
}
.vcp-trust-hero-bar .vcp-trust-col{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.vcp-trust-hero-bar .vcp-trust-col .trust-title{
    font-size: 16px;
    color: var(--black);
}
.vcp-trust-hero-bar .vcp-trust-col p{
    margin-bottom:0;
}
.vcp-trust-hero-bar .swiper-slide:not(:last-child) .vcp-trust-col::after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 85%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(167 167 167 / 65%) 50%, rgb(0 0 0 / 0%) 100%);
    border-radius: 10px;
}
.vcp-trust-hero-bar li:nth-child(even){
/* background: var(--light-grey); */
}
.vcp-trust-bar{
    background: var(--theme-color-1);
    padding: 8px 0;
}
.vcp-star-bar-wrapps{
    gap: 15px;
}

/* Section 3 */
.vcp-services-style-1-list {
    display: grid;
    gap: 20px;
    justify-content: unset; /* last row center */
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.vcp-services-style-1-list li a{
    box-shadow: 0 7px 20px rgba(23, 42, 65, 0.1);
    border-radius: var(--border-radius-xs);
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--body-color);
    height: 100%;
    font-weight: 500;
    overflow: hidden;
}
.vcp-services-style-1-list .vcp-text-block{
    margin: -35px 0 0;
    padding: 0 15px 20px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.vcp-services-style-1-list .vcp-service-ico{
    width: 70px;
    height: 70px;
    background: #f5faf3;
    padding: 12px;
}
.vcp-services-style-1-list .more-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--theme-color-1);
}
.vcp-services-style-1-list .vcp-text-block p{
    flex: 1;
    margin: 0;
}
/* Secton 4 */
.vcp-features-list-wrapp{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
.vcp-features-list-wrapp .vcp-features-col:not(:last-child):after{
    position: absolute;
    content: '';
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.1);
    height: 70%;
    width: 1px;
}
.vcp-features-list-wrapp .vcp-features-col{

display: flex;

flex-direction: column;

gap: 12px;

padding: 0 10px;
}
.vcp-features-col p{
    margin-bottom:0;
}
/* Section 5 */
.vcp-questions-wrap h3{
    font-size: 18px;
}
.vcp-questions-wrap p{
    margin-bottom: 0;
}
/* Section 6 / Section 11 */
.vcp-about-us-sec .vcp-about-us-wapper{border-radius: var(--border-radius-sm);overflow: hidden;}
.vcp-about-us-sec .vcp-section-caption{
    font-size: inherit;
    padding: 20px 25px;
}
.vcp-about-us-sec .vcp-img-holder{
    width: 100%;
    height: 100%;
}
.vcp-about-us-sec .vcp-img-holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vcp-about-action-btn{
    display: flex;
    position: absolute;
    bottom: 20px;
    background: rgba(255,255,255,.9);
    border-radius: var(--border-radius-sm);
    gap: 15px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    align-items: center;
    padding: 12px;
    right: 20px;
}
.vcp-about-action-btn .icon{
    background: var(--theme-color-1);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    min-width: 60px;
}
.vcp-about-action-btn .icon svg{
    width: 30px;
    height: 30px;
}
.vcp-about-action-btn .text-wrap{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vcp-about-action-btn .number{
    font-weight: 700;
    font-size: 18px;
}

/* Section 26 */
.vcp-reviews-col{
    border-radius: 10px;
    font-size: 13px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
}
.vcp-reviews-col p{
    margin: 0;
}
.vcp-reviews-col .vcp-reviews-head{
    display: flex;
    gap: 10px;
    position: relative;
    padding-right: 35px;
}
.vcp-reviews-col .vcp-reviews-head .google-symbol{
    position: absolute;
    right: 0;
}
.vcp-reviews-col .icon{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--theme-color-1);
    border-radius: 50%;
    color: var(--white-color);
}
.vcp-reviewsSwiper .swiper-slide:nth-child(1) .icon{
    background: #ff6b6b;
}

.vcp-reviewsSwiper .swiper-slide:nth-child(2) .icon{
    background: #4ecdc4;
}

.vcp-reviewsSwiper .swiper-slide:nth-child(3) .icon{
    background: #ffa94d;
}

.vcp-reviewsSwiper .swiper-slide:nth-child(4) .icon{
    background: #6c5ce7;
}

.vcp-reviewsSwiper .swiper-slide:nth-child(5) .icon{
    background: #20c997;
}
.vcp-reviews-col .vcp-reviews-info-wrapp{
    display: flex;
    flex-direction: column;
}
.vcp-reviews-col .vcp-reviews-info-wrapp .name{
    font-size: 14px;
    line-height: 20px;
}
.vcp-reviews-col .vcp-reviews-info-wrapp .time{
    color: var(--grey-color);
    font-size: 12px;
}
.vcp-reviewsSwiper .swiper-slide{
    height: auto;
    display: flex;
}
.vcp-reviews-col .check-icon{
    color: #1a73e8;
}
.vcp-star-list{
    color: #f6b52a;
    gap: 3px;
}
.vcp-star-list li{
    display:flex;
}
.vcp-star-list svg{
    width: 14px;
    height: 14px;
}
.vcp-swiper-btn-block{}
/* Lock class ka asar khatam karo */
.vcp-swiper-btn-block .swiper-button-lock {
    display: flex !important;
    opacity: 1;
}
.vcp-swiper-btn-block .swiper-button-next:after, 
.vcp-swiper-btn-block .swiper-button-prev:after{
    content: none;
}
.vcp-swiper-btn-block svg{
    width: 16px;
    height: 16px;
}
.vcp-swiper-btn-block .swiper-button-next, 
.vcp-swiper-btn-block .swiper-button-prev{
    width: 30px;
    height: 40px;
    background: linear-gradient(180deg, #52ABFF14 0%, #00305714 100%);
    border-radius: var(--border-radius-xs);
    color: var(--black);
    margin: 0;
    display: flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transform: translateY(-50%);
    border: 1px solid transparent;
    transition:all .25s ease-in-out;
}
.vcp-swiper-btn-block .swiper-button-next:hover, 
.vcp-swiper-btn-block .swiper-button-prev:hover{
    border-color:rgba(0, 0, 0, .15);
    background:transparent;
}
.vcp-swiper-btn-block .swiper-button-next{
    right: 0;
}
.vcp-swiper-btn-block .swiper-button-prev{
    left: 0;
}
.vcp-reviewsSwiper .vcp-swiper-btn-block {
    position: relative;
    margin-top: 20px;
    justify-content: flex-end;
}



/***** Service-Details *****/
.hcp-service-wrapper {
    display: grid;
    grid-template-columns: 320px auto;
    gap: 30px;
}
/* Sidebar */
.hcp-sidebar-wrapp{
    position: sticky;
    top: 15px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hcp-cta-service-wrapp .hcp-service-side-btn{
    display: flex;
    background: var(--theme-color-1);
    gap: 12px;
    font-size: 20px;
    color: var(--white-color);
    transition: all .3s ease-in-out;
    padding: 9px 18px;
}
.hcp-cta-service-wrapp .hcp-service-side-btn:hover{
    background: var(--primary-color);
}
.hcp-side-bar{
    overflow: hidden;
    height: fit-content;
}
.hcp-side-bar .sidebar-title{
    background: var(--theme-color-1);
    font-size: 20px;
    color: var(--white-color);
    padding: 15px 20px;
}
.side-bar-list{
}
.side-bar-list li{
}
.side-bar-list li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.side-bar-list li a{
    color: var(--grey-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 11px 20px;
    position: relative;
}
.side-bar-list li a.active{
    color:var(--theme-color-1);
    background: #e2edf6;
}
.side-bar-list li a.active:after{
    position:absolute;
    content:"";
    left: 0;
    height: 100%;
    width: 4px;
    background: var(--theme-color-1);
}
.side-bar-list li a:hover{
    color:var(--black)
}
.side-bar-list .arrow{
    width: 10px;
    height: 10px;
    transition: all .3s ease-in-out;
    color: var(--black);
}
.side-bar-list li a:hover .arrow{
    transform: rotate(45deg);
}
.side-bar-list li a.active .arrow{
     transform: rotate(45deg);
    color:var(--theme-color-1);
}
.hcp-benefits-list li{
    display: flex;
    gap: 20px;
}
.srp-service-details .vcp-section-caption{
    font-size: 15px;
}
.srp-service-details .hcp-web-services-sec.spacing-padding-wrapp{
    padding: 35px 20px;
    margin-bottom: 50px;
}
.srp-service-details .hcp-web-services-sec .hcp-service-col-wrapps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hcp-benefits-list li:not(:last-child){
    border-bottom: 1px solid rgba(0, 0, 0,.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.hcp-benefits-list li p{
    margin-bottom: 0;
}
.hcp-benefits-list .icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--theme-color-1);
}
.hcp-benefits-list h3{
    margin: 0;  
    font-size: 18px;
}
.hcp-benefits-caption{
    background: var(--theme-color-1);
    color: var(--white-color);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
}
.hcp-service-row-listing{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hcp-service-row-listing .row:nth-child(odd) {
    flex-direction: row-reverse;
}
.hcp-service-col-details{
   border: 1px solid rgba(0, 0, 0,.1);
   padding: 30px;
   height: 100%;
   position: relative;
}
.hcp-service-col-details h3{
    border-bottom: 1px solid rgba(0, 0, 0,.1);
    margin-bottom: 20px;
    padding-bottom: 30px;
}
.hcp-service-col-details p{
    margin-bottom: 0;
    padding-bottom: 55px;
}
.hcp-service-col-details .hcp-counter{
    font-weight: 900;
    font-size: 40px;
    opacity: .2;
    text-align: end;
    line-height: 40px;
    position: absolute;
    bottom: 36px;
    right: 30px;
    transition: opacity .3s ease-in-out;
}
.hcp-service-col-details:hover .hcp-counter{
    opacity: 1;
}

/* Section 30 */
.hcp-service-content-col-bg .hcp-service-col-bg-details{
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
}
.hcp-service-content-col-bg .hcp-service-col-bg-details.bg-overlay:after{
    background: radial-gradient(circle at top right, rgb(93 114 150) 0%, transparent 100%), linear-gradient(135deg, #2b3549 0%, #1f2735 100%);
    opacity: .8;
}
/* Section 31 */
.hcp-benefits-list-2{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}
.hcp-benefits-list-2 li{
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, .1);
}
.hcp-benefits-list-2 p{
    margin: 0;
}
.hcp-benefits-list-2 .icon{
    background: var(--theme-color-1);
    width: 75px;
    height: 75px;
}
/* Section 32 */
.hcp-service-img-wrap-listing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hcp-service-img-wrap-listing .row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Section 20 */
.vcp-about-description-2{
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.vcp-about-details-2 .icon{
    background: var(--white-color);
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 4px solid var(--theme-color-1);
    margin: -25px 0 0 0;
    padding: 10px;
}
.vcp-about-details-2{
    gap: 10px;
    background: var(--theme-color-1);
    align-items: center;
    padding: 10px 12px;
}
.vcp-about-details-2 h3{
    color: var(--white-color);
    font-size: 14px;
}
.vcp-about-sec-2 .vcp-img-holder{
    background: var(--theme-color-3);
    padding-left: 15px;
    clip-path: polygon(12% 0%, 100% 0, 100% 100%, 0% 100%);
}
.vcp-about-sec-2 .vcp-img-holder img{
    clip-path: polygon(12% 0%, 100% 0, 100% 100%, 0% 100%);
}
.vcp-about-caption-2{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vcp-about-caption-2 p{
    margin-bottom:0;
}
/* Section 8 */
.vcp-choose-wrapper{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap: 40px;}
.vcp-choose-wrapper .vcp-choose-col{border: 1px solid rgba(0, 0, 0, .1);border-radius: var(--border-radius-sm);position: relative;padding: 25px 20px 15px;display: flex;gap: 15px;}
.vcp-choose-counter{
    
width: 30px;
    
height: 30px;
    
background: var(--theme-color-1);
    
top: -10px;
    
left: 10px;
}
.vcp-choose-wrapper .icon{
    background: var(--light-grey);
    width: 70px;
    height: 70px;
    min-width: 70px;
}
.vcp-choose-wrapper p{
    margin-bottom:0;
}
.vcp-choose-wrapper .vcp-choose-col:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -34px;
    top: 50%;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 24'%3E%3Cpath fill='%23cccccc' fill-rule='evenodd' d='M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
    transform: translateY(-50%);
}

/* Section 22 */
.vcp-solutions-caption{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vcp-solutions-list li{

display: flex;

gap: 20px;
}
.vcp-solutions-list li:not(:last-child) {
    /* style */
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.vcp-solutions-list .ico-holder{background: linear-gradient(90deg, #52ABFF14 0%, #00305714 100%);width: 65px;height: 65px;min-width: 65px;border-radius: var(--border-radius-sm);}
.vcp-solutions-text p{margin: 0;}

/* Section 21 */
.vcp-protection-list-wrapp{
    display: flex;
    gap: 20px;
}
.vcp-protection-list-details{

width: 32%;

display: flex;

flex-direction: column;

gap: 20px;

/* height: 100%; */
}
.vcp-protection-list{

background: linear-gradient(180deg, #52ABFF14 0%, #00305714 100%);

border-radius: var(--border-radius-sm);

padding: 15px;

display: flex;

flex-direction: column;

gap: 8px;

height: 100%;
}
.vcp-protection-list ul{
    margin: 0;
}
.vcp-protection-list p{
    margin-bottom: 0;
}

/* Section 23 */
.vcp-cta-sec .vcp-cta-wrapp:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;

}

.vcp-cta-wrapp{
    display: grid;
    box-shadow: rgba(0, 0, 0, .15) 0px 2px 5px 0px;
    grid-template-columns: 1fr .7fr;
    z-index: 1;
    padding: 40px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.vcp-cta-sec .vcp-cta-wrapp:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 50% 50%, 0 100%);
    z-index: -1;
        background-repeat: no-repeat;
    background-size: cover;
}
.vc-cta-btn-actions .vcp-about-action-btn{
    position: static;
    background: var(--theme-color-1);
    color: var(--white-color);
}
.vc-cta-btn-actions .vcp-about-action-btn .icon{
    background: var(--white-color);
    color: var(--theme-color-1);
}
.vcp-cta-text-wrapp h2{
    
font-size: 20px;
    
line-height: 1.45;
}


/*** Footer Page ***/
.vcp-footer-page {
    font-size: 14px;
    background: var(--theme-color-3);
    font-weight: 500;
    color: var(--white-color);
}
.vcp-footer-page .vcp-footer-text p{
    line-height: 25px;
}
.vcp-footer-page .ft-heading{
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 26px;
    letter-spacing: 2px;
    color: var(--theme-color-1);
}

.vcp-ft-contact-list a{
    display: inline-flex;
}
.vcp-footer-page .ft-list li a{
    display: inline-flex;
    align-items: baseline;
    padding-left: 28px;
    position: relative;
}
.vcp-footer-page .ft-list li a:hover{
    transform: translateX(7px);
}

.vcp-footer-page .ft-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color-1); /* Is color ko change kar sakte hain */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
}
.vcp-ft-contact-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vcp-ft-contact-list li i{
    color: var(--theme-color-1);
    width: 22px;
    min-width: 22px;
    height: 22px;
    text-align: center;
}
.vcp-ft-contact-list li .text-wrap{
    gap: 10px;
    display: inline-flex;
}
.vcp-footer-page a{
    color: var(--white-color);
    transition: all .25s ease-in-out;
}
.vcp-footer-page a:hover{
    color: var(--theme-color-1);
}
.vcp-footer-page .ft-list{
    display: grid;
    gap: 10px;
}
.vcp-ft-service-list .ft-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
}
.social-mdeia-icons li {
    margin-right: 12px;
}
.social-mdeia-icons a{
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s linear;
    color: var(--white-color);
    background: rgba(255, 255, 255, .09);
}
.social-mdeia-icons a:hover{
    transform: translateY(-5px);
    color: var(--white-color);
}
.vcp-map{
    filter: grayscale(100%);
}
.vcp-map iframe{
    height: 260px;
    width: 100%;
}
.copyright{border-top: 1px solid rgba(255,255,255,.15);margin-top: 35px;color: var(--white-color);}
.copyright a{
    color: var(--theme-color-1);
}
.vcp-footer-top-wrapp{
    background: rgba(255, 255, 255, .03);
    padding: 20px 0;
    margin-bottom: 40px;
    z-index: 1;
}
.ft-bar-img{
    position: absolute;
    height: 100%;
    opacity: .3;
    top: 0;
    z-index: -1;
}
.ft-bar-img.ft-left-img{
    left: 0;
}
.ft-bar-img.ft-right-img{
    right: 0;
}
.vcp-footer-text-wrap p{
    max-width: 350px;
}
.vcp-footer-text-wrap .footer-title{
    font-size: 20px;
    line-height: 27px;
}
.vcp-footer-top-bar{
    gap: 20px;
}
.vcp-footer-top-bar ul{
    gap: 30px;
}
.vcp-footer-top-bar ul .ico{
    width: 45px;
    height: 45px;
    border: 2px solid var(--theme-color-1);
    color: var(--theme-color-1);
}
.vcp-footer-top-bar ul li a{
    display:flex;
    gap: 12px;
    align-items: center;
}
.vcp-footer-top-bar ul .vcp-text-wrap{
    font-size:15px;
}
.vcp-footer-top-bar .btn-primary{
    color: var(--white-color);
}
.vcp-footer-top-bar .btn-primary:hover{
    color: var(--white-color);
}
/* Section 32 */
.vcp-inner-hero-sec{
    background-position: right;
    background-repeat: no-repeat;
    background-size:cover ;
padding: 100px 0;
}
.vcp-inner-hero-caption{

background: #021a3ccc;

color: var(--white-color);

padding: 40px;

display: flex;

flex-direction: column;

gap: 10px;
}
.vcp-inner-hero-trust-bar{
    
margin: -60px 0 0;
}
.vcp-inner-hero-trust-bar .vcp-trust-hero-bar{
    margin: 0;
}


/* Section 24 */

.vcp-service-form-wrapp{border: 1px solid rgba(0,0,0,.1);padding: 20px;display: grid;grid-template-columns: 350px auto;gap: 0;}
.vcp-service-form-wrapp .vcp-hero-form{
    gap:14px;
}
.vcp-service-form-widget{
        border-right: 1px solid rgba(0,0,0,.1);
        padding-right: 25px;
        margin-right: 25px;
        display: flex;
        flex-direction: column;
        gap: 10px;
}
.vcp-service-form-widget h2{
    font-size: 22px;
}
.vcp-service-form-wrapp .form-control {
    box-shadow: none;
    padding: 4px 10px 4px 35px;
    background-color: var(--light-grey);
}
.vcp-service-form-widget .icon{
    
width: 70px;
    
height: 70px;
    
background: var(--light-grey);
    
padding: 12px;
}

/* Section 5 */
.vcp-agency-benefits-content{
    background: var(--light-grey);
    /* display: grid; */
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin: 30px -166px 0 0px;
    font-size: 14px;
    width: 100%;
}
.vcp-agency-benefits-col{
    display: flex;
    position: relative;
    background: var(--light-grey);
    gap: 15px;
    padding: 25px 15px;
    z-index: 1;
    height: 100%;
}
.vcp-agency-benefits-col .ico-holder{
    max-width: 60px;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
}
.vcp-agency-benefits-col:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.05) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .05) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .05) 100%);
    z-index: -1;
}
.vcp-agency-benefits-content p{
    margin-bottom:0;
}
.vcp-agency-benefits-2 .vcp-section-caption {
    font-size: inherit;
}
/* Section 27 */
.vcp-small-hero-sec{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    min-height: 350px;
    padding: 50px 0;
}
/* Contact Page */
.vcp-contact-page-list li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.vcp-contact-page-list .ico{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 2px solid var(--theme-color-1);
    border-radius: 50%;
    color: var(--theme-color-1);
}
.vcp-contact-page-list .ico svg{
    width: 20px;
    height: 20px;
}
.vcp-contact-page-list{
    gap: 15px;
}
.vcp-contact-page-list a{
    color:var(--dark-grey);
    transition: color .25s ease-in-out;
}
.vcp-contact-page-list a:hover{
    color: var(--theme-color-1);
}
.vcp-contact-page-list strong{
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}
.vcp-contact-map iframe{
    width: 100%;
    height: 400px;
    display: block;
}
.vcp-contact-page-form{
    background: var(--white-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: -110px;
    padding: 55px 70px;
    border-radius: var(--border-radius-sm);
}
.vcp-section-summary{
    color: var(--black);
}

/* Section 9 */
.vcp-blog-col{
    font-size: 14px;
}
.vcp-blog-col .blog-title{
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    color: var(--black);
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
.vcp-blog-col .blog-title:hover{
    color: var(--name);
}
.blog-btn a{
    display: inline-block;
    position: relative;
    float: none;
    font-size: 13px;
    line-height: normal;
    margin: 0;
    padding: 12px 20px;
    text-transform: capitalize;
    background: var(--theme-color-1);
    color: var(--white-color);
    letter-spacing: 0.5px;
}
.blog-btn span {
    margin: 0 0 0 30px;
}
.blog-btn a:after {
    content: '';
    position: absolute;
    width: 37%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 23% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 23% 100%);
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: auto;
}
.blog-btn a:hover:after {
    width: 40%;
}
.blog-btn svg {
    fill: currentColor;
    height: 1em;
    line-height: 1;
    margin: 0;
    width: 1em;
}
.vcp-thank-you-wrapper{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 40px 50px;
}