:root{
    --wbd-green-dark: #042A2D;
    --wbd-white-color: 255,255,255;
    --wbd-heading-color: #222222;
    --wbd-body-color: #1a1a1a;
    --wbd-border-color: 224, 224, 224;
    --wbd-primary-font: 'general_sans';
    --wbd-primary-light-color: #1e4042;
}

@font-face {
    font-family: 'general_sans';
    src: url('../fonts/generalsans-bold-webfont.woff2') format('woff2'),
         url('../fonts/generalsans-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'general_sans';
    src: url('../fonts/generalsans-medium-webfont.woff2') format('woff2'),
         url('../fonts/generalsans-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'general_sans';
    src: url('../fonts/generalsans-regular-webfont.woff2') format('woff2'),
         url('../fonts/generalsans-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'general_sans';
    src: url('../fonts/generalsans-semibold-webfont.woff2') format('woff2'),
         url('../fonts/generalsans-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
/* body *{
    font-family: var(--wbd-primary-font) !important; 
} */
body{
    font-size: 14px;
    font-family: var(--wbd-primary-font) !important;
    line-height: 26px !important;
    font-weight: 500 !important;
    color: var(--wbd-body-color);
}
p{
    line-height: 26px !important;
    font-weight: 500;
}
.wbd-p0{
    padding: 0 !important;
}
img{
    max-width: 100%;
    display: block;
    height: auto;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700;
    color: var(--wbd-heading-color);
}
.wbd-h1{
    font-size: 56px;
    line-height: 58px;
}
.wbd-h2{
    font-size: 42px;
    line-height: 52px;
}
.wbd-h3{
    font-size: 36px;
    line-height: 46px;
}
.wbd-h4{
    font-size: 28px;
    line-height: 34px;
}
.wbd-h5{
    font-size: 24px;
    line-height: 34px;
}
.wbd-h6{
    font-size: 20px;
    line-height: 28px;
}
.wbd-fs-18{
    font-size: 18px;
    line-height: 26px;
}
.wbd-fw-400{
    font-weight: 400;    
}
.wbd-fw-500{
    font-weight: 500;       
}
.wbd-fw-600{
    font-weight: 600;      
}
.wbd-fw-700{
    font-weight: 700;      
}
.wbd-container{
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1380px !important;
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}
.wbd-flex{
    display: flex;
    flex-wrap: wrap;
}
.wbd-gap{
    gap: 30px;
}
.wbd-nowrap{
    flex-wrap: nowrap;
}
.wbd-align-center{
    align-items: center;
}
.wbd-justify-between{
    justify-content: space-between;
}
.wbd-justify-center{
    justify-content: center;
}
.wbd-col-50{
    max-width: calc(50% - 15px);
    width: 100%;
}
.wbd-3-col .wbd-col{
    max-width: calc((100% - 60px) / 3);
    width: 100%;
}
.wbd-mb-15{
    margin-bottom: 15px;
}
.wbd-mb-10{
    margin-bottom: 10px;
}
.wbd-mb-20{
    margin-bottom: 20px;
}
.wbd-mb-30{
    margin-bottom: 30px;
}
.wbd-mb-40{
    margin-bottom: 40px;
}
.wbd-gradient-text {
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.wbd-mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.wbd-sec-py,
.wbd-sec-pt{
    padding-top: 80px;
}
.wbd-sec-py,
.wbd-sec-pb{
    padding-bottom: 80px;
}
.wbd-sec-my,
.wbd-sec-mt{
    margin-top: 80px;
}
.wbd-sec-my,
.wbd-sec-mb{
    margin-bottom: 80px;
}
.wbd-heading-block{
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.wbd-text-uppercase{
    text-transform: uppercase;
}
.wbd-text-center{
    text-align: center;
}
.wbd-white-text{
    color: #fff;
}
.wbd-body-text{
    color: var(--wbd-body-color) !important;
}
.wbd-inner-link{
    font-weight: 500;
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.wbd-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 11px 28px;
    line-height: 28px;
    display: table;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s ease all;
}
.wbd-btn-primary{
    background-image: linear-gradient(to right, #099896 0%, #68E47F 50%, #099896 100%);
    color: rgba(var(--wbd-white-color), 1);
    background-position: top left;
    background-size: 200% auto;
}
.wbd-btn-secodary{
    background-color: var(--wbd-green-dark);
}
.wbd-btn-secodary span{
    background: linear-gradient(to right, #099896 0%, #68E47F 50%, #099896 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-position: top left;
    transition: .3s ease all;
    background-size: 200% auto;
}
.wbd-btn-secodary:hover span{
    background-position: top right;
}
.wbd-btn-white{
    background-color: rgba(var(--wbd-white-color), 1);
    color: var(--wbd-heading-color);
}
.wbd-btn-primary:hover{
    background-position: top right;
    color: rgba(var(--wbd-white-color), 1);
}
a.wbd-btn{
    position: relative;
    text-align: center;
}
a.wbd-btn.wbd-btn-primary.wbd-btn-border-primary{
    color: var(--wbd-green-dark);
    overflow: hidden;
}
a.wbd-btn.wbd-btn-primary.wbd-btn-border-primary:before {
    content: '';
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 30px;
    background-color: #fff;
    transition: .3s ease all;
    transform: scaleX(1);
    transform-origin: top left;
}
a.wbd-btn.wbd-btn-primary.wbd-btn-border-primary span{
    position: relative;
}
a.wbd-btn.wbd-btn-primary.wbd-btn-border-primary:hover:before{
   transform: scaleX(0);
}
a.wbd-btn.wbd-btn-primary.wbd-btn-border-primary:hover{
    color: #fff;
}
.wbd-btn-center{
    display: flex;
    justify-content: center;
}

.current-menu-ancestor > a,
.hfe-nav-menu li:hover > .hfe-has-submenu-container > a,
.hfe-nav-menu > li.current-menu-item > .hfe-has-submenu-container > a,
.hfe-nav-menu li:hover > a,
.hfe-nav-menu > li.current-menu-item > a {
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hfe-nav-menu li a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--wbd-heading-color) !important;
    font-family: var(--wbd-primary-font) !important;
}
.menu-item-has-children ul.sub-menu li a {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.wbd-banner-inner-text h1.wbd-text-shaped {
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-color: white;
    padding: 10px 15px;
    border-top-right-radius: 15px;
    line-height: 1.2;
    border-bottom-right-radius: 15px;
}
.wbd-flex.wbd-btn-block {
    gap: 10px;
    background: #fff;
    display: inline-flex;
    padding: 10px 15px;
    border-radius: 10px;
    border-top-left-radius: 0;
}
.wbd-banner-sec .wbd-banner-inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    aspect-ratio: 16 / 9;
}
.wbd-banner-sec .wbd-banner-inner .wbd-col-left{
    max-width: calc(60% - 25px);
    width: 100%;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}
.wbd-banner-sec .wbd-banner-inner .wbd-col-right{
    max-width: calc(40% - 25px);
    width: 100%;
    align-self: end;
    padding-top: 30px;
}
.wbd-video-hero {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}
.wbd-video-hero video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.wbd-banner-inner-text {
    margin-bottom: 100px;
    margin-left: 16%;
    position: relative;
}
.wbd-banner-inner .wbd-flex{
    position: relative;
}
.wbd-banner-inner:before,
.wbd-banner-inner:after{
    content: '';
    position: absolute;
    z-index: 1;
}
.wbd-banner-inner:before {
    top: 0;
    left: 0;
    height: 75px;
    width: 150px;
    background: #fff;
}
.wbd-banner-inner:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    top: 75px;
    left: 0;
    background: transparent;
    box-shadow: -5px -5px 0px 5px #fff;
    border-top-left-radius: 15px;
    z-index: 1;
}
.wbd-banner-inner .wbd-flex{
    gap: 50px;
}
.wbd-flex.wbd-btn-block {
    gap: 10px;
}
.cs-box-item{
    padding: 30px;
    border-radius: 20px;
    transition: .3s ease all;
}
.cs-icon-block{
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-tilt-boxes .cs-box-item:hover{
    rotate: 0deg !important;
}
.wbd-no-gap-col .cs-box-item{
    max-width: calc(100% / 3);
}
.cs-tilt-boxes {
    border: 1px solid rgba(var(--wbd-border-color), 1);
    padding: 80px 40px 50px;
    border-radius: 40px;
}
.wbd-icon-no-bg img{
    height: 50px;
    width: auto;
}
.wbd-no-gap-col .wbd-col-50:nth-child(1),
.wbd-no-gap-col .wbd-col-50:nth-child(2){
    border-top-color: transparent;
}
.wbd-no-gap-col .wbd-col-50 {
    padding: 40px 70px;
    border: 1px solid transparent;
    border-top-color:rgba(var(--wbd-border-color), .25);
    transition: .3s ease all;
}
.wbd-no-gap-col .wbd-col-50:hover{
    background-color: rgba(var(--wbd-white-color), .1);
}
.wbd-no-gap-col .wbd-col-50:nth-child(odd){
    border-right: 1px solid rgba(var(--wbd-border-color), .25);
}
.wbd-commitment-sec .wbd-col {
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    padding: 30px;
    border-radius: 20px;
    transition: .3s ease all;
    background-color: #fff;
}
.wbd-commitment-sec .wbd-col:hover{
    background: linear-gradient(to right, #099896, #68E47F);
    box-shadow: none;
}
.wbd-commitment-sec .wbd-col:hover *{
    color: rgba(var(--wbd-white-color), 1);
}
.wbd-design-item .cs-col-text {
    max-width: calc(40% - 25px);
    width: 100%;
}
.wbd-design-item .cs-col-image{
    max-width: calc(60% - 25px);
    width: 100%;
}
.wbd-design-item .cs-col-image img{
    border-radius: 15px;
    width: 100%;

}
ul.slick-dots {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin-top: 50px;
}
ul.slick-dots li button {
    display: none;
}
ul.slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--wbd-white-color),.4);
}
ul.slick-dots li.slick-active{
    background: linear-gradient(to right, #099896, #68E47F);
}
.wbd-design-process-slider button.slick-arrow{
    position: absolute;
    bottom: 0;
    right: 0;
}
button.slick-arrow {
    width: 40px;
    height: 30px;
    font-size: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='29' viewBox='0 0 42 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M41 14.3333L0.999998 14.3333M41 14.3333L27.6667 0.999999M41 14.3333L27.6667 27.6667' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M41 14.3333L0.999998 14.3333M41 14.3333L27.6667 0.999999M41 14.3333L27.6667 27.6667' stroke='url(%23paint0_linear_467_1769)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_467_1769' x1='21' y1='0.999999' x2='21' y2='27.6667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235CEDE5'/%3E%3Cstop offset='1' stop-color='%2365E180'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .7;
    cursor: pointer;
    transition: .3s ease all;
    background-color: transparent !important;
}
button.slick-arrow.slick-prev{
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='29' viewBox='0 0 42 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 14.3332L41 14.3332M1 14.3332L14.3333 27.6665M1 14.3332L14.3333 0.999839' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1 14.3332L41 14.3332M1 14.3332L14.3333 27.6665M1 14.3332L14.3333 0.999839' stroke='url(%23paint0_linear_467_1769)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_467_1769' x1='21' y1='27.6665' x2='21' y2='0.99984' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235CEDE5'/%3E%3Cstop offset='1' stop-color='%2365E180'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    right: 60px;
}
button.slick-arrow:hover{
    opacity: 1;
}
.wbd-cta-inner{
    background-image: linear-gradient(to right, #099896, #68E47F);
    border-radius: 12px;
    padding: 60px 30px;
}
.wbd-cta-inner .wbd-cta-text{
    max-width: 820px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.wbd-faq-accordion-content{
    display: none;
    padding-top: 15px;
}

.wbd-faq-main {
    padding: 30px 130px;
    counter-increment:faq-counter;
}
.wbd-faq-inner {
    counter-reset: faq-counter;
    border: 1px solid #F7F7FA;
    border-radius: 15px;
    overflow: hidden;
}

.wbd-faq-main h6 {
    position: relative;
    cursor: pointer;
}
.wbd-faq-main.wbd-faq-active{
    background-color: #F7F7FA;
}
.wbd-faq-main .wbd-faq-accordion-header::before {
    content: counter(faq-counter, decimal-leading-zero);
    font-size: 42px;
    width: 70px;
    text-align: center;
    position: absolute;
    top: -6px;
    left: -100px;
    font-weight: 800;
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 42px;
}
.wbd-faq-main h6.wbd-faq-accordion-header:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -70px;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='24' fill='%23F7F7FA'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 17H23V23H17V25H23V31H25V25H31V23H25V17Z' fill='%23222222'/%3E%3C/svg%3E%0A");
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
}
.wbd-faq-main.wbd-faq-active h6.wbd-faq-accordion-header:after{
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='48' height='48' rx='24' fill='%23222222'/%3E%3Cline x1='17' y1='23' x2='31' y2='23' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.wbd-ideal-design-partner .wbd-icon-block-hover-text {
    gap: 20px;
}
.wbd-flip-box-front,
.wbd-flip-box-back{
    padding: 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
}
.wbd-flip-box-front img{
    height: 70px;
    width: auto;
}
.wbd-flip-box-front{
    background-color: rgba(var(--wbd-white-color), .1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.wbd-flip-box-back{
    background-color: rgba(var(--wbd-white-color), 1);
    transform: rotateY(180deg);
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    scrollbar-width: thin;
    padding: 12px 15px;
}
.wbd-flip-box-back::-webkit-scrollbar {
    width: 4px;
}
.wbd-flip-box-back::-webkit-scrollbar-track {
    background: transparent;
}
.wbd-flip-box-back::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}
.wbd-flip-box {
  background-color: transparent;
  max-width: calc(50% - 10px);
  width: 100%;
  height: 223px;
  perspective: 1000px;
}
.wbd-flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.wbd-flip-box:hover .wbd-flip-box-inner {
  transform: rotateY(180deg);
}
.wbd-img-col img{
    border-radius: 15px;
}
.wbd-4-col .wbd-col{
    max-width: calc((100% - 90px) / 4);
    width: 100%;
}
.wbd-4-col.wbd-no-gap-col .wbd-col{
    max-width:  calc(100%  / 4);
    width: 100%;
}
.wbd-expert-webdesign .wbd-col{
    padding: 30px;
    border: 1px solid transparent;
    border-top-color: rgba(var(--wbd-border-color), 1);
    transition: .3s ease all;
    border-right-color: rgba(var(--wbd-border-color), 1);
}
.wbd-expert-webdesign .wbd-col:hover{
    background-color: var(--wbd-green-dark);
}
.wbd-expert-webdesign .wbd-col *{
    transition: .3s ease all;
}
.wbd-expert-webdesign .wbd-col:hover *{
    color: rgba(var(--wbd-white-color));
}
.cs-tilt-boxes .wbd-btn-block {
    position: relative;
    top: 75px;
}
.wbd-core-left-img {
    position: relative;
    border-top-right-radius: 400px;
    overflow: hidden;
    border-bottom-right-radius: 400px;
}
.wbd-core-left-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wbd-green-dark);
    opacity: .9;
}
.wbd-core-left-img .wbd-logo-icon {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 100%;
    height: 100%;
}
.wbd-core-slider-item{
  opacity: 0.4;
  margin-bottom: 100px;
  transition: 0.35s;
  max-width: 530px;
}
.wbd-core-slider-item.active {
  opacity: 1;
}
.wbd-core-principle-slider-outer{
    gap: 70px;
}
.wbd-core-principle-slider-outer .wbd-col-50 {
    max-width: calc((100% - 70px) / 2);
    padding: 30px 30px 30px 0;
}
.wbd-core-principle-slider-outer{
    position: relative;
}
.wbd-core-principle-slider-outer:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 4px;
    background-image: linear-gradient(to right, #099896, #68E47F);
    right: calc(50% - 70px);
}
.wbd-core-principle-slider-outer:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 4px;
    background-image: linear-gradient(to right, #099896, #68E47F);
    right: calc(50% - 70px);
}
.wbd-core-slider-item-inner {
    display: flex;
    gap: 15px;
    align-items: center;
}
.wbd-core-slider-item-inner .wbd-core-item-count {
    min-width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-image: linear-gradient(to right, #099896, #68E47F);
    color: #fff;
    position: relative;
    /* top: -9px; */
}
.wbd-core-slider-item-inner .wbd-core-item-count h5 {
    font-weight: 500;
    color: #fff;
    font-size: 24px;
}
.wbd-img-h100{
    height: 100%;
    object-fit: cover;
}
.wbd-no-gap-col .wbd-col-50 {
    max-width: 50%;
}
.wbd-logo-icon img {
    max-width: 400px !important;
    width: 100%;
}
.cs-icon-block img {
    width: 100%;
    height: 100%;
}
.wbd-banner-inner > .wbd-flex .wbd-banner-inner-text:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    top: 75px;
    left: -20px;
    background: transparent;
    box-shadow: -5px -5px 0px 5px #fff;
    border-top-left-radius: 15px;
    z-index: 1;
    transform: rotate(90deg);
}
.wbd-social-links {
    position: absolute;
    background: #fff;
    width: 42px;
    padding: 15px 5px;
    top: 80px;
    left: 0px;
    border-bottom-right-radius: 20px;
}
.cs-footer-shape:before,
.cs-footer-shape:after,
.wbd-social-links:after,
.wbd-social-links:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    background: transparent;
    box-shadow: -5px -5px 0px 5px #fff;
    border-top-left-radius: 20px;
    z-index: 1;
}
.wbd-social-links:before {
    top: 0;
    right: -20px;
    left: unset;
    transform: rotate(0);
}
.wbd-social-links:after {
    bottom: -20px;
    left: 0;
}
.wpcf7-form-control-wrap{
    display: block;
}
footer .e-con-inner {
    position: relative;
}
.cs-marquee-wrapper {
    width: 100%;
}
.cs-image-slider-left {
    display: flex;
    width: max-content;
    animation: marquee-left 150s linear infinite;
}
.cs-marquee-track {
    display: flex;
    gap: 100px;
}
.cs-image-slider-left h5 {
    background: linear-gradient(to bottom, #FFFFFF 0%, rgba(13,13,21,.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    font-size: 150px;
    line-height: 1;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
}
.cs-image-slider-left h5::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #FFFFFF 0%, rgba(13,13,21,.7) 100%);
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-50%);
}
.pum-content.popmake-content strong{
    text-transform: uppercase;
    color: var(--wbd-heading-color);
    font-weight: 700;
}
.cf7-cf-turnstile{
    margin: 0 !important;
}
.wbd-form-action {
    margin-top: 20px;
}
.wbd-form-action button{
    border: 0;
    box-shadow: none !important;
}
.cs-footer-shape {
    position: absolute;
    top: 80px;
    right: 0;
    height: 40px;
    width: 180px;
    background: #fff;
    border-bottom-left-radius: 20px;
}
.cs-footer-shape:before {
    transform: rotate(90deg);
    left: -20px;
    border: 0;
}

.cs-footer-shape:after {
    right: 0;
    top: 40px;
    transform: rotate(90deg);
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.phone-input-wrapper .wpcf7-form-control-wrap,
.phone-input-wrapper select#countryCode{
    height: 48px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type=url]:focus, textarea:focus, select:focus{
    border-color: var(--wbd-green-dark);
}
span.wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% - 5px);
    font-weight: 500;
    font-size: 12px;
}
.wpcf7 form .wpcf7-response-output{
    color: var(--wbd-body-color);
}
textarea{
    resize: none;
}

/* CSS For Inner Pages */
.wbd-bg-inner{
    background: var(--wbd-green-dark) !important;
    position: relative;
}
.wbd-bg-inner:before{
    content: '';
    background-image:url(../images/form-bg-vector.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    z-index: -1;
}
.wbd-hero-inner-sec p{
    font-size: 14px !important;
}
.card-back-one,
.card-back{
    background: var(--wbd-green-dark);
}
.card-back-one p{
    font-size: 14px;
}
.counting-no,
.counting-no-active{
    border-radius: 50%;
    background-image: linear-gradient(to right, #099896, #68E47F);
    color: #fff;
    font-weight: 600;
}
.seo-tab-content{
    background-image: url(../images/slider-bg-vector.png);
    background-size: contain;
    background-position: top right;
    background-color: var(--wbd-green-dark);
}
.wbd-tabs-sec .seo-tab-content p{
    font-size: 14px;
}
.seo-tabs li.active{
    background-color: var(--wbd-green-dark);
    color: #fff;
    border-left: 2px solid var(--wbd-green-dark);
}
.wbd-commitments-section .commitment-box{
    background: var(--wbd-primary-light-color);
}
.wbd-seo-right ul.list-style-icons li {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}
.wbd-seo-right ul.list-style-icons li:before{
    width: 20px;
    height: 20px;
    left: -20px;
    top: 8px;
    filter: invert(1);
}
.icon-class-sec{
    background-image: linear-gradient(to right, rgb(9, 152, 150), rgb(104, 228, 127));
}
.icon-class-sec i {
    font-family: "Font Awesome 6 Free" !important;
}
body .wbd-gradient-count {
    background-image: linear-gradient(to right, rgb(9, 152, 150), rgb(104, 228, 127));
    color: #FFF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
}
.testimonials-box-sec img{
    border: 2px dotted var(--wbd-green-dark);
}
.cs-testimonials-grid.wbd-mob-slider .slick-dots{
    margin-top: 25px;
}


.counting-no, .counting-no-active{
    margin-bottom: 10px;
}
.left-right-stcky-box h3,
.card-front h3,
.card-back-one h3{
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 34px;
}
.left-right-stcky-box h3,
.card-back-one h3{
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    
}
.card-back-one .web-d-flex,
.card-back .web-d-flex{
    margin-bottom: 15px;
}
.time-line-sec-bg{
    background: var(--wbd-green-dark);
}
.time-line-sec-bg .time-line-box{
    background: var(--wbd-primary-light-color);
}
.commitment-box .title-four-style{
    margin-bottom: 15px;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}
.commitment-box p{
    color: #ffF !important;
}
.wbd-commitments-section .slider-arrows{
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
}
.wbd-boxes-hover-bg .cs-border-box h4,
.sticky-box h4,
.wbd-tabs-sec h3{
    background: linear-gradient(-90deg, #099896 0%, #68E47E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}
.sticky-box h4{
    padding: 0 !important;
}
.sticky-crads-sec {
    background: var(--wbd-green-dark) !important;
}
.wbd-boxes-hover-bg .cs-border-box h4{
    font-size: 20px;
    line-height: 28px;
}
.wbd-boxes-hover-bg .cs-border-box p{
    color: #fff !important;
}



.cs-d-flex-tab {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cs-new-tab-sec .image-box { width: 45%; }
.cs-new-tab-sec .content-box { width: 55%; }

.cs-new-tab-sec .tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.cs-new-tab-sec .cs-new-tab {
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    position: relative;
}

.cs-new-tab-sec .cs-new-tab.active { color: #000; }

.cs-new-tab-sec .cs-new-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 100%;
    background: #000;
}

.cs-new-tab-sec .cs-new-tab-content {
    display: none;
    animation: fade .3s ease;
}

.cs-new-tab-sec .cs-new-tab-content.active {
    display: block;
}

@keyframes fade {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:none; }
}

@media (max-width:768px) {
    .cs-d-flex-tab { flex-direction: column; }
}





.ver-scroll-sec {
    height: 650px;
    overflow-y: scroll;
}
.ver-scroll-sec {
  overflow-y: auto;
  scrollbar-color: #2bd4a4 transparent;
}
.read-more-btn {
  color: #2bd4a4;
  cursor: pointer;
}
.read-more-content {
    display: none;
}
.ver-scroll-sec::-webkit-scrollbar {
  width: 8px;
}
.ver-scroll-sec::-webkit-scrollbar-track {
  background: transparent;
}
.ver-scroll-sec::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2bd4a4, #1aa37a);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.ver-scroll-sec::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #35e0b0, #1fc28f);
  background-clip: content-box;
}
.ver-scroll-sec {
  scrollbar-width: thin;
}
.cs-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    justify-content: center;
    text-align: center;
	flex-wrap:wrap;
    gap: 20px;
}
.cs-industries-box {
    background-color: #1B232B;
    padding: 15px;
    border-radius: 50px;
}
.cs-industries-box {
    background-image: linear-gradient(to right, #099896 0%, #68E47F 0%, #099896 100%);
    padding: 15px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.cs-new-bg-padding-sec {
    padding: 40px;
    border-radius: 30px;
}


























@media (min-width: 992px){
    .wbd-expert-webdesign .wbd-col:nth-child(-n+4) {
        border-top-color: transparent;
    }
    .wbd-expert-webdesign .wbd-col:nth-child(4n) {
        border-right-color: transparent;
    }
}
@media (max-width: 1199px){
    .wbd-banner-inner-text{
        margin-left: 6%;
    }
}
@media (max-width: 1024){
    .wbd-ipad-full{
        max-width: 100% !important;
    }
}
@media (max-width: 991px){
    .wbd-sm-ipad-full{
        max-width: 100% !important;
    }
	.cs-new-tab-sec .image-box { width: 100%; }
.cs-new-tab-sec .content-box { width: 100%; }
    .wbd-sm-ipad-hide{
        display: none !important;
    }
    .wbd-banner-inner-text{
        margin-bottom: 20px;
    }
    .wbd-no-gap-col .wbd-col-50{
        padding: 20px 30px;
    }
    .wbd-core-left-img .wbd-logo-icon img {
        max-width: 250px !important;
    }
    .wbd-3-col .wbd-col {
        max-width: calc((100% - 30px) / 2);
    }
    .wbd-4-col.wbd-no-gap-col .wbd-col{
        max-width: calc(100%  / 2);
    }
    .wbd-expert-webdesign .wbd-col:nth-child(-n+2) {
        border-top-color: transparent;
    }
    .wbd-expert-webdesign .wbd-col:nth-child(2n) {
        border-right-color: transparent;
    }
    .wbd-ideal-design-partner .wbd-img-col img{
        width: 100%;
    }
    .wbd-ideal-design-partner .wbd-img-col {
        margin-bottom: 30px;
    }
    .wbd-heading-content .wbd-flex{
        gap: 20px;
    }
    .cs-tilt-boxes .wbd-flex.wbd-3-col.wbd-no-gap-col {
        justify-content: center;
    }
    .wbd-banner-sec .wbd-banner-inner {
        min-height: auto;
        aspect-ratio: unset;
    }
	.cs-industries-grid {
    display: block;
}
.cs-industries-box {
    padding: 10px;
    font-size: 16px;
}
.cs-new-bg-padding-sec {
    padding: 40px 20px;
}
.cs-image-box-stcky {
    
    padding: 10px;
	margin:0 auto;
}
}
@media (min-width: 768px){
    div#infiniteScroll::-webkit-scrollbar {
        display: none;    
    }
    #infiniteScroll {
        height: 500px;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        scrollbar-width: none; 
    }
    .wbd-core-slider-item {
        scroll-snap-align: center;
    }
    .wbd-col-50.wbd-core-right-slider{
        align-self: center;
    }
}
@media (max-width: 767px){
    .wbd-sec-py,
    .wbd-sec-pt{
        padding-top: 60px;
    }
    .wbd-sec-py,
    .wbd-sec-pb{
        padding-bottom: 60px;
    }
    .wbd-sec-my,
    .wbd-sec-mt{
        margin-top: 60px;
    }
    .wbd-sec-my,
    .wbd-sec-mb{
        margin-bottom: 60px;
    }
    .wbd-h1,
    .wbd-h2 {
        font-size: 30px;
        line-height: 42px;
    }
    .wbd-h3{
        font-size: 30px;
        line-height: 40px;
    }
    .wbd-h4{
        font-size: 28px;
        line-height: 34px;
    }
    .wbd-h5{
        font-size: 24px;
        line-height: 34px;
    }
    .wbd-h6{
        font-size: 20px;
        line-height: 28px;
    }
    .wbd-btn {
        padding: 11px 18px;
        font-size: 14px;
    }
    .wbd-container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .wbd-mob-full{
        max-width: 100% !important;
    }
    .wbd-no-gap-col .wbd-col-50{
        border-right: 0 !important;
        border-top: 1px solid rgba(var(--wbd-border-color), .25) !important;
    }
    .wbd-design-item-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .wbd-4-col.wbd-no-gap-col .wbd-col{
        border-top:1px solid rgba(var(--wbd-border-color), 1);
        border-right: 0 !important;
        padding: 20px 15px;
    }
    .wbd-4-col.wbd-no-gap-col .wbd-col:nth-child(1),
    .wbd-no-gap-col .wbd-col-50:nth-child(1){
        border-top: 0 !important;
    }
    .wbd-cta-inner {
        padding: 40px 20px;
    }
    .wbd-faq-main {
        padding: 60px 20px 30px 20px;
    }
    .wbd-faq-main .wbd-faq-accordion-header::before {
        left: 0;
        top: -40px;
        width: auto;
        font-size: 36px;
    }
    .wbd-3-col .wbd-col{
        rotate: 0deg !important;
    }
    .wbd-3-col .wbd-col{
        max-width: 100%;
    }
    .cs-tilt-boxes {
        padding: 20px 20px 30px;
        border-radius: 20px;
    }
    .cs-tilt-boxes .wbd-btn-block {
        top: 52px;
    }
    .cs-tilt-boxes .wbd-flex.wbd-3-col.wbd-no-gap-col {
        gap: 20px;
    }
    .wbd-banner-sec .wbd-banner-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .wbd-no-gap-col .wbd-col-50{
        padding: 20px 15px;
    }
    .wbd-core-principle-slider-outer .wbd-core-left-img.wbd-col-50 {
        display: none;
    }
    .wbd-core-principle-slider-outer .wbd-col-50{
        padding: 30px 15px;
        max-width: 100%;
    }
    .wbd-core-principle-slider-outer:after {
        right: unset;
        left: 0;
        transform: translateY(-50%);
        z-index: 0;
        width: 50px;
        display: none;
    }
    #infiniteScroll ul.slick-dots {
        margin-top: 25px;
    }
	
    .wbd-core-slider-item-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .wbd-core-slider-item{
        opacity: 1;
        margin-bottom: 0 !important;
        padding-left: 10px;
        padding-right: 10px;
    }
    .wbd-commitment-sec .wbd-col{
        padding: 20px;
    }
    .wbd-faq-main h6 {
        padding-right: 45px;
    }
    .wbd-faq-main h6.wbd-faq-accordion-header:after {
        width: 36px;
        height: 36px;
        background-size: contain;
        right: 0;
    }
    .wbd-banner-inner > .wbd-flex .wbd-banner-inner-text:after {
        left: -16px;
    }
    .wbd-mob-slider ul.slick-dots {
        margin: 0;
        justify-content: center;
        width: 100%;
    }
    .wbd-mob-slider ul.slick-dots li:not(.slick-active){
        background: #687f81;
    }
    .wbd-mob-slider.wbd-no-gap-col .wbd-col,
    .wbd-mob-slider.wbd-no-gap-col .wbd-col-50{
        padding: 0 10px !important;
        border: 0 !important;
    }
    .cs-tilt-boxes .wbd-mob-slider.wbd-no-gap-col .wbd-col{
        padding: 20px !important;
    }
    .wbd-mob-slider{
        gap: 25px !important
    }
    .wbd-mob-slider .slick-list {
        margin: 0 -10px;
    }
    .wbd-social-links {
        top: 60px;
        padding: 5px;
    }
    .wbd-social-links {
        flex-direction: row !important;
        width: 130px;
        gap: 20px;
    }
    .cs-image-slider-left h5 {
        font-size: 40px !important;
    }
    .cs-footer-shape{
        display: none;
    }
    .list-style-icons{
        padding: 20px 40px;
    }
    .wbd-banner-inner:before {
        width: 90px;
    }
}
footer *,
.page-template-home-new header#masthead a{
    font-family: var(--wbd-primary-font) !important;
}
.page-template-home-new header#masthead {
    margin-bottom: 20px;
}
section *{
    font-family: var(--wbd-primary-font) !important;
}
.wbd-core-principle-slider-outer{
    align-items: stretch;
}

@supports (-webkit-touch-callout: none) {
  .wbd-banner-inner-text h1.wbd-text-shaped {
    line-height: 1.4;
  }
}

