/* 
    1. Common CSS 
    2. Header CSS
    3. Footer CSS
    4. Home Page CSS
    5. SEO Page CSS
	6. ABOUT Page CSS
    7. BLOG PAGE CSS
    8. CONTACT PAGE CSS
    9. THANK YOU PAGE CSS
    10. LANDING PAGE CSS
*/

/* 1. Common CSS */
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: #707070;
    font-size: 16px;
    line-height: 22px;
    font-family: "Montserrat", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", serif;
    margin: 0;
    color: #000000;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease 0s;
    color: #FF6600;
    font-size: 16px;
    line-height: 24px;
}

a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

p+p {
    margin-top: 10px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
.h1 {
    font-size: 70px;
    line-height: 72px;
    font-weight: bold;
}

h2,
.h2 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

h4,
.h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
}

h6,
.h6 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 800;
}

img {
    max-width: 100%;
}

label {
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
}

.bg-gray {
    background-color: #E8E8E8;
}

.text-lg {
    font-size: 18px;
    line-height: 26px;
}

.text-color-orange {
    color: #FF6600;
}

.text-color-body {
    color: #707070;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
    outline: none;
}



input:not([type="radio"]),
input:not([type="checkbox"]),
textarea,
select {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #BDBDBD;
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    width: 100%;
    font-weight: 400;
    line-height: 22px;
}

input::placeholder,
textarea::placeholder {
    color: #4F4F4F;
}

.input-success input,
.input-success textarea {
    border-color: #27AE60;
}

.input-success .status-label {
    color: #27AE60;
}

.input-warning input,
.input-warning textarea {
    border-color: #E2B93B;
}

.input-warning .status-label {
    color: #E2B93B;
}

.input-error input,
.input-error textarea {
    border-color: #EB5757;
}

.input-error .status-label {
    color: #EB5757;
}

.input-box-inner {
    position: relative;
}

.input-box-inner img {
    max-height: 18px;
    position: absolute;
    max-width: 20px;
    top: 13px;
    right: 15px;
}

.input-box-inner img+input,
.input-box-inner img+textarea {
    padding-right: 40px;
}

.btn-orange {
    background: #FF6600;
    color: #fff;
}

.btn-orange:hover {
    background: #000;
    color: #fff;
}

.btn {
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    padding: 12px 24px;
}

.round-bottom-right {
    position: relative;
    overflow: hidden;
}

.blue-round-bottom-right:before {
    background: radial-gradient(circle, rgba(0, 149, 218, 1) 30%, rgba(255, 255, 255, 1) 100%);

}

.round-bottom-right:before {
    content: "";
    width: 400px;
    position: absolute;
    height: 400px;
    border-radius: 100%;
    filter: blur(50px);
    opacity: 0.34;
    bottom: -160px;
    right: -160px;
}

.round-top-right:before {
    content: "";
    width: 400px;
    position: absolute;
    height: 400px;
    border-radius: 100%;
    filter: blur(50px);
    opacity: 0.34;
    top: -160px;
    right: -160px;
}

.round-top-left {
    position: relative;
    overflow: hidden;
}

.orange-round-top-left:before {
    background: radial-gradient(circle, rgba(255, 102, 0, 1) 30%, rgba(255, 255, 255, 1) 100%);

}

.round-top-left:before {
    content: "";
    width: 400px;
    position: absolute;
    height: 400px;
    border-radius: 100%;
    filter: blur(50px);
    opacity: 0.34;
    top: -160px;
    left: -160px;
}



.round-center-right {
    position: relative;
    overflow: hidden;
}

.pink-round-center-right:before {
    background: radial-gradient(circle, rgba(160, 45, 139, 1) 30%, rgba(255, 255, 255, 1) 100%);

}

.round-center-right:before {
    content: "";
    width: 400px;
    position: absolute;
    height: 400px;
    border-radius: 100%;
    filter: blur(50px);
    opacity: 0.34;
    top: 50%;
    transform: translateY(-50%);
    right: -160px;
}

/********************************************/

/* 2. Header CSS */
.header-menu {
    display: flex;
    align-items: center;
}

.header-menu li:not(.header-cta) a,
.site-header .primary-menu li:not(:last-child) a {
    border-bottom: 2px solid transparent;
    padding: 20px 18px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.header-menu li:not(.header-cta) a:hover,
.site-header .primary-menu li:not(:last-child) a:hover {
    border-color: #FF6600;
    background: #F4F4F4;
}

.header-menu li.menu-active a,
.site-header .primary-menu li.menu-item-home.current-menu-item a {
    border-color: #FF6600;
    font-weight: bold;
    background: #F4F4F4;
}

.header-cta,
.site-header .primary-menu li:last-child {
    margin-left: 10px;
}

.header-cta a:hover,
.site-header .primary-menu li:last-child a:hover {
    background: #000;
}

.header-section {
    background-color: #fff;
}

.site-header .main-navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/********************************************/


/* 3. Footer CSS */
.footer-bottom {
    background: #DBDBDB;
    padding: 15px 0;
    border-top: 4px solid #bababa;
}

.footer-bottom p,
.footer-bottom p a {
    font-size: 14px;
    color: #707070;
    line-height: 21px;
}

.footer-top {
    background: #F4F4F4;
    padding: 100px 0;
}

.icon-list i {
    position: relative;
    font-size: 20px;
    top: 1px;
    margin-right: 5px;
}

.icon-list li {
    display: flex;
}

.icon-list p {
    margin: 0;
}

.icon-list p,
.icon-list a {
    color: #707070;
    font-size: 14px;
    line-height: 21px;
}

.icon-list li+li {
    margin-top: 12px;
}

.footer-menu-box a {
    font-size: 14px;
    line-height: 21px;
}

.footer-menu-box a {
    color: #646464;
}

.footer-menu-box li+li {
    margin-top: 5px;
}

.footer-social-box ul {
    display: flex;
}

.footer-social-box ul a {
    background: #fff;
    border: 1px solid #DBDBDB;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707070;
}

.footer-social-box ul li+li {
    margin-left: 10px;
}

.footer-social-box ul a:hover {
    background: #FF6600;
    border-color: #FF6600;
    color: #fff;
}

/********************************************/

/* 4. Home Page CSS */

.home-hero-content {
    padding: 150px 0 80px 0;
    position: relative;
}

.home-hero-section {
    padding-bottom: 50px;
    position: relative;
}

.home-hero-section>div {
    position: relative;
    z-index: 1;
}

.hero-logo-box {
    padding: 0 15px;
}

.hero-logo-box img {
    width: 100%;
}

.hero-logo-slider .slick-track {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    pointer-events: none;
}

.home-hero-section:before {
    content: "";
    position: absolute;
    width: 156px;
    height: 332px;
    background-image: url(../images/hero-bg-rounds.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    top: 0;
    left: 0;
}

.home-hero-section:after {
    content: "";
    position: absolute;
    width: 156px;
    height: 332px;
    background-image: url(../images/hero-bg-rounds.svg);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    right: 0;
}

.service-swiper-button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.service-swiper-button-wrap .service-swiper-buttons {
    background: #fff;
    width: 52px;
    height: 52px;
    color: #707070;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    font-size: 30px;
    border-radius: 100%;
}

.hero-logo-slider {
    z-index: 1;
}

.blog-box-img img {
    width: 100%;
    aspect-ratio: 1/0.6;
    object-fit: cover;
    border-radius: 4px;
}

.blog-box {
    border-radius: 4px;
    background: #F4F4F4;
}

.blog-box-content {
    padding: 25px;
}

.blog-box-content a {
    text-decoration: underline;
}

.blog-box-content>p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.INDtelligence-box {
    text-align: center;
    border: 1px solid #F4F4F4;
    border-radius: 20px;
    padding: 20px 15px;
    background: #F4F4F4;
    height: 100%;
}

.INDtelligence-box p {
    margin: 10px 0 0 0;
}

.INDtelligence-box:hover {
    border-color: #707070;
}

.hero-logo-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.client-section {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 25%, rgba(244, 244, 244, 1) 25%);
}

.client-slider-img img {
    aspect-ratio: 1/0.65;
    border-radius: 20px;
    object-fit: cover;
}

.client-slider-img:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-image: url(../images/client-quote-icon.svg);
    background-size: cover;
    top: -34px;
    right: -34px;
}

.client-slider-img {
    margin-right: 20px;
    position: relative;
    margin-top: 34px;
}



.client-testimonial-slider .swiper-buttons {
    transform: none !important;
    top: auto;
    bottom: 0;
    cursor: pointer;
    position: absolute;
    font-size: 34px;
    color: #000000;
}

.client-testimonial-slider {
    padding-bottom: 60px;
}

.client-testimonial-slider .swiper-button_prev {
    left: 0;
}

.client-testimonial-slider .swiper-button_next {
    left: 65px;
}

.vertical_fix_box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.vertical_fix_box.is-visible {
    opacity: 1;
    visibility: visible;
}

#v-pills-tabContent .tab-pane ul {
  list-style: disc;
  padding-left: 20px;
}
  
/********************************************/


/* 5. SEO Page CSS */
.unlock-success-section {
    background-image: url(../images/bg-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.unlock-success-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0095DA;
    opacity: 0.77;
}

.faq-box-header .collapsed .ph-minus {
    display: none;
}

.faq-box-header .ph-plus {
    display: none;
}

.faq-box-header .collapsed .ph-plus {
    display: inline-block;
}

.faq-box-header p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-weight: bold;
    padding: 20px 30px;
    background: #F4F4F4;
}

.faq-box {
    border: 1px solid #707070;
    border-radius: 20px;
    overflow: hidden;
}


.faq-box-header {
    cursor: pointer;
}

.faq-box-content {
    padding: 0px 30px 20px 30px;
    background: #F4F4F4;
}
.faq-box-content ul {
  list-style: disc;
  padding-left: 25px;
  line-height: 2;
}
.faq-box-header p i {
    font-size: 24px;
}

.faq-box+.faq-box {
    margin-top: 20px;
}

.faq-box-header p.collapsed {
    background: #fff;
}

.know-more-wrap a {
    border-radius: 0 0 16px 16px;
    background: #FF6600;
    color: #fff;
    font-size: 18px;
    padding: 10px 36px;
}

.process-wrap-content {
    padding-top: 13px;
}

.process-wrap-box {
    display: flex;
    position: relative;
}

.process-wrap-icon {
    width: 63px;
    height: 63px;
    min-width: 63px;
    position: relative;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0 0px 10px #ff00005e;
    margin-right: 30px;
}

.process-wrap-icon img {
    width: 33px;
    height: 33px;
}

.process-wrap-content h3 {
    margin-bottom: 10px;
}

.process-wrap-box+.process-wrap-box {
    padding-top: 40px;
}

.process-wrap-box:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #F4F4F4;
    left: 29px;
    top: 0;
}

.process-wrap {
    padding-left: 10px;
}

.process-wrap-box:nth-child(4n+1) .process-wrap-icon {
    background-color: #FF6600;
    box-shadow: 0px 0 0px 10px #FF66005e;
}

.process-wrap-box:nth-child(4n+2) .process-wrap-icon {
    background-color: #0095DA;
    box-shadow: 0px 0 0px 10px #0095DA5e;
}

.process-wrap-box:nth-child(4n+3) .process-wrap-icon {
    background-color: #A02D8B;
    box-shadow: 0px 0 0px 10px #A02D8B5e;
}

.process-wrap-box:nth-child(4n+4) .process-wrap-icon {
    background-color: #707070;
    box-shadow: 0px 0 0px 10px #7070705e;
}

.pricing-section {
    margin-bottom: 80px;
}


.service-tab-navs {
    display: block;
}

.service-tab-trigger {
    display: flex;
    align-items: center;
    border: 1px solid;
    border-radius: 4px;
    padding: 0 10px 0 0;
    background-color: #fff;
    color: #000000 !important;
    font-weight: 500;
    overflow: hidden;
}

.service-tab-trigger-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.service-tab-trigger-icon img {
    max-height: 26px;
    filter: brightness(0) invert(1);
}

.service-tab-trigger+.service-tab-trigger {
    margin-top: 8px;
}

.service-tab-trigger.active .service-tab-trigger-icon {
    background: #fff !important;
}

.service-tab-trigger.active .service-tab-trigger-icon img {
    filter: none;
}

.service-tab-trigger.active {
    color: #fff !important;
}

.service-tab-trigger:nth-child(3n+1) {
    border-color: #FF6600;
}

.service-tab-trigger:nth-child(3n+2) {
    border-color: #0095DA;
}

.service-tab-trigger:nth-child(3n+3) {
    border-color: #A02D8B;
}

.service-tab-trigger.active:nth-child(3n+1) {
    background: #FF6600;
}

.service-tab-trigger.active:nth-child(3n+2) {
    background: #0095DA;
}

.service-tab-trigger.active:nth-child(3n+3) {
    background: #A02D8B;
}

.service-tab-trigger:nth-child(3n+1) .service-tab-trigger-icon {
    background: #FF6600;
}

.service-tab-trigger:nth-child(3n+2) .service-tab-trigger-icon {
    background: #0095DA;
}

.service-tab-trigger:nth-child(3n+3) .service-tab-trigger-icon {
    background: #A02D8B;
}

/********************************************/




.pricing-box {
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.pricing-box-action {
    margin-top: auto;
    text-align: center;
    padding: 15px;
}

.pricing-box-header {
    text-align: center;
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    padding: 12px 10px;
}

.gray-header {
    background: #707070;
}

.sky-header {
    background: #0095DA;
}

.pink-header {
    background: #A02D8B;
}

.orange-header {
    background: #FF6600;
}

.pricing-box-content {
    padding: 15px 15px 0;
    text-align: center;
}

.pricing-box-price {
    text-align: center;
    display: block;
    padding: 15px 15px 0;
    font-size: 52px;
    line-height: 63px;
    font-weight: 600;
}

.pricing-box-time {
    padding: 0 15px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
}

.pricing-box-row {
    margin-top: 30px;
}

.pricing-box-content li {
    padding: 10px 0;
}

.pricing-box-content li+li {
    border-top: 1px solid #F4F4F4;
}

.btn-pink {
    background: #A02D8B;
    color: #fff;
}

.btn-sky {
    background: #0095DA;
    color: #fff;
}

.btn-gray {
    background: #707070;
    color: #fff;
}

.btn-pink:hover {
    background: #000;
    color: #fff;
}

.btn-sky:hover {
    background: #000;
    color: #fff;
}

.btn-gray:hover {
    background: #000;
    color: #fff;
}

/********************************************/


/* 6. ABOUT Page CSS */
.cms-img {
    height: 100%;
}

.cms-img img {
    height: 100%;
    object-fit: cover;
    min-width: 50vw;
}

.our-vision-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px;
}

.INDtelligence-box.INDtelligence-pink:hover {
    border-color: #A02D8B;
}

.INDtelligence-box.INDtelligence-sky:hover {
    border-color: #0095DA;
}

.INDtelligence-box.INDtelligence-orange:hover {
    border-color: #FF6600;
}

.blog-box-content.show-full-text>p {
    display: block;
    object-fit: initial;
    text-overflow: unset;
    overflow: initial;
}

.about-hero-section {
    overflow: hidden;
}

.founder-img img {
    min-width: calc(50vw - 58%);
}

.founder-img,
.founder-img img {
    height: 100%;
    object-fit: cover;
}

.founder-section {
    overflow: hidden;
}

.innovating-today-wrap img {
    width: 407px;
    max-width: 100%;
}

.innovating-today-wrap p {
    font-size: 66px;
    line-height: 77px;
    font-weight: 200;
}

.overflow-x-auto {
  overflow-x: auto;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-green-500 {
	color: rgb(34, 197, 94);
}
.text-red-500 {
  color: rgb(239, 68, 68);
}

/********************************************/


/* 7. BLOG PAGE CSS */
.big-blog-box .text-exept {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-meta-data ul {
    display: inline-flex;
    flex-wrap: wrap;
}

.blog-meta-data ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.blog-meta-data ul li:not(:last-child) {
    border-right: 1px solid #DBDBDB;
}

.blog-page-listing .row {
    gap: 30px 0;
}

.with-filled ul {
    background: #F1F1F1;
    border-radius: 5px;
    padding: 4px 15px;
}

.blogs-signup-box {
    border-radius: 8px;
    padding: 20px;
}

.blog-listing-sidebar {
    position: sticky;
    top: 30px;
    z-index: 1;
}

.contact-expert-box {
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid #5995F9;
}

.author-box {
    background: #F4F4F4;
    border-radius: 4px;
    padding: 20px 0 34px 0;
    position: relative;
}

.author-box img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 100%;
    border: 8px solid #fff;
    margin: 15px 0;
    position: relative;
}

.author-box p {
    color: #4E4A4A;
    position: relative;
    z-index: 1;
}

.author-box:before {
    content: "";
    position: absolute;
    height: 108px;
    width: 100%;
    background: #DBDBDB;
    left: 0;
    border-radius: 4px;
    top: 0;
}

.single-blog-sidebar {
    position: sticky;
    top: 30px;
    z-index: 1;
}

.blog-share-box {
    margin-top: 30px;
    background: #DBDBDB;
    border-radius: 4px;
    padding: 20px;
}

.blog-table-content {
    background: #F4F4F4;
    margin-top: 30px;
    border-radius: 4px;
}

.blog-table-content-header {
    text-align: center;
    border-radius: 4px;
    background: #DBDBDB;
    padding: 12px 10px;
}

.blog-table-list {
    padding: 20px;
}

.blog-table-list li+li {
    margin-top: 10px;
}

.blog-table-list li.blog-title-active p {
    font-weight: 600;
}

.blog-table-list li p {
    font-size: 14px;
    line-height: 21px;
}
.single-post .entry-content h2 {
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 25px;
    padding-top: 25px;
    margin-bottom: 12px;
    font-size: 30px;
    line-height: normal;
}

.single-post .entry-content h2 strong, .single-post .entry-content h3 strong, .single-post .entry-content h4 strong, .single-post .entry-content h5 strong, .single-post .entry-content h6 strong {
    font-weight: 600;
}

.single-post .entry-content h3, .single-post .entry-content h4, .single-post .entry-content h5, .single-post .entry-content h6 {
    margin: 20px 0 10px 0;
}


.single-post .entry-content ul {
  list-style: disc;
  padding-left: 15px;
  margin-top: 10px;
}
.single-post .entry-content ul li {
  margin-bottom: 10px;
}

/********************************************/

/* 8. CONTACT PAGE CSS */
.innovating-today-section {
    position: relative;
    overflow: hidden;
}

.contact-form-row label {
    width: 100%;
    margin: 0;
}

.contact-page-form {
    margin-top: 20px;
}

.contact-form-row input,
.contact-form-row textarea,
.contact-form-row select {
    background: #F4F4F4;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    padding: 11px 15px;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus,
.contact-form-row select:focus {
    border-color: #707070;
}

.contact-form-row {
    margin-bottom: 5px;
}

.contact-form-row-checkbox .wpcf7-list-item {
    margin: 0;
    position: relative;
}

.contact-form-row-checkbox .wpcf7-list-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-form-row-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 16px;
    padding-left: 35px;
    display: inline-block;
    font-weight: normal;
    position: relative;
}

.contact-form-row-checkbox .wpcf7-list-item .wpcf7-list-item-label:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #DBDBDB;
    left: 0;
    top: 2px;
    border-radius: 4px;
}

.contact-form-row-checkbox .wpcf7-list-item input:checked+.wpcf7-list-item-label:before {
    background: #FF6600;
    border-color: #FF6600;
}

.contact-form-row label .wpcf7-not-valid-tip {
    font-size: 12px;
}

.contact-form-row-checkbox .wpcf7-list-item input:checked+.wpcf7-list-item-label:after {
    content: "";
    left: 9px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.contact-form-row-checkbox {
    margin: 15px 0 20px 0;
}

.contact-form-row-submit p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-row-submit input.wpcf7-submit {
    width: auto;
    border: none;
    background: #FF6600;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px 24px;
}

.contact-form-row textarea {
    height: 110px;
}

.related-posts .card-text {
  margin-bottom: 15px;
}


/********************************************/

/* 9. THANK YOU PAGE CSS */
.thankyou-section {
    padding: 160px 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 102, 0, 0.4) 100%);
    position: relative;
}

.thankyou-section:before {
    content: "";
    position: absolute;
    width: 156px;
    height: 332px;
    background-image: url(../images/hero-bg-rounds.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    top: 0;
    left: 0;
}

.thankyou-section:after {
    content: "";
    position: absolute;
    width: 156px;
    height: 332px;
    background-image: url(../images/hero-bg-rounds.svg);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    right: 0;
}
/********************************************/


/* 10. LANDING PAGE CSS */
.expect-card-animated-box h2 {
    display: flex;
    overflow: hidden;
    height: 107px;
    padding: 0;
    transition: all 0.3s ease 0s;
    flex-direction: column;
}

.expect-card-animated-box h2 span {
    display: block;
    transition: all 0.8s ease 0s;
}

.expect-card-animated-box-outer {
    /*position: absolute;
    top: 0;
    height: 100%;
    left: 15px;
    right: 15px;*/
}

.contact-form-row-submit  .wpcf7-spinner {
    display: none;
}
.expect-card-animated-box-outer-child {
    /*margin: 0;
    min-height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;*/
}
.expect-card.expect-trigger-one {
    /*margin-top: 100px;*/
}
.expect-card.expect-trigger-four {/*padding-bottom: 600px;*/}

.normal-expect-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.expect-card-animated-box.second-text-active h2 span:first-child {
    margin-top: -107px;
}

.expect-card-animated-box.third-text-active h2 span:first-child {
    margin-top: -214px;
}

.expect-card-animated-box.fourth-text-active h2 span:first-child {
    margin-top: -321px;
}
.expect-card.expect-card-animated-box {
    padding: 0;
}
.expect-card-animated-box p {
    height: 36px;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.expect-card-animated-box p span {
    transition: all 0.8s ease 0s;
}
.expect-card-animated-box.second-text-active p span:first-child {
    margin-top: -36px;
}

.expect-card-animated-box.third-text-active p span:first-child {
    margin-top: -72px;
}

.expect-card-animated-box.fourth-text-active p span:first-child {
    margin-top: -108px;
}
.growth-process-wrap {
    position: relative;
    z-index: 3;
}
.lines-animation-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lines-animation-outer {
    position: relative;
}

.animated-lines-after-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 0%;
    object-fit: cover;
    height: 100%;
    object-position: left;
    transition: all 0.3s ease 0s;
}

.animated-lines-before-img {
    position: relative;
    z-index: 1;
}



.contact-form-row.tick-box lable {
  font-size: 14px;
}
.contact-form-row.tick-box p > label {
  font-size: 14px;
  font-weight: normal;
  color: #BBBBBB;
}

.key-benefit .form .contact-page-form .contact-form-row {
  margin-bottom: 12px;
}
.contact-form-row.tick-box {
  background-color: #F1F1F1;
  padding: 12px 16px;
}
.contact-form-row.tick-box .wpcf7-list-item {
  display: inline-block;
  margin-left: 0;
  margin-right: 15px;
}
.contact-form-row.tick-box span label input {
  width: auto;
  display: inline-block;
  margin-right: 5px;
}
.contact-form-row.tick-box span label .wpcf7-list-item-label {
  font-size: 12px;
  font-weight: normal;
}


.lp-faq-box-header .collaps.collapsed a{
  color: #CDCDCD;
}

.lp-faq-box-header .collaps a {
  color: #ffffff;
}

.key-benefit .form .contact-page-form .row {
  margin-left: -8px;
  margin-right: -8px;
}
.key-benefit .form .contact-page-form .row .col-sm-6 {
  padding: 0 8px;
}
/********************************************/


.main-navigation li.menu-item-has-children img {
  display: inline-block !important;
}
.main-navigation li.menu-item-has-children .sub-menu li a {
  padding: 10px 18px !important;
}
.main-navigation .primary-menu .sub-menu .sub-menu {
  left: 100%;
}
.main-navigation li.menu-item-has-children .sub-menu > .menu-item-has-children > a::after {
  content: "\e13a";
  font-family: "Phosphor" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-variant-ligatures: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  right: 8px;
  position: absolute;
  top: 15px;
}

.main-navigation .primary-menu .sub-menu {
  display: none;
}
.main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
  display: flex !important;
}
.main-navigation ul ul {
  min-width: 180px;
}


.pricing-packages .pricing-box {
  box-shadow: 0 0 8px #ddd;
}
.pricing-packages .pricing-box-content li:first-child {
  padding-top: 0;
  min-height: 140px;
}

.home-hero-content .text-color-body ul {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 30px;
}
.home-hero-content .text-color-body ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  margin-right: 6px;
  font-style: normal;
}





@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media only screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .lines-animation-inner {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        min-width: 290px;
    }
    
    .animated-lines-before-img-mobile {
        position: relative;
        z-index: 1;
    }
    
    .animated-lines-before-img-mobile, .animated-lines-after-img-mobile {
        width: 290px;
    }
    
    .animated-lines-after-img-mobile {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        width: 100%;
        object-fit: cover;
        height: 0%;
        object-position: top;
        transition: all 0.3s ease 0s;
    }
    
    .grow-card {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
}

@media only screen and (min-width: 1025px) {
    .site-header .menu-icon {
        display: none;
    }

    .header-cta a,
    .site-header .primary-menu li:last-child a {
        font-size: 14px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 5px;
        background: #FF6600;
        border-radius: 4px;
        color: #fff;
        padding: 9px 19px;
    }
}

@media only screen and (max-width: 1024px) {
    .site-header .menu-icon {
        background-color: transparent;
        border: 0;
        padding: 0;
    }

    .site-header #site-navigation {
        position: fixed;
        top: 63px;
        left: 0;
        width: 100%;
        height: calc(100vh - 63px);
        background-color: #fff;
        z-index: 9;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }

    body.menu-open .site-header #site-navigation {
        transform: translateX(0);
    }

    .site-header #site-navigation .nav-menu {
        display: block;
    }

    .site-header .menu-icon span {
        position: relative;
        display: block;
    }

    .site-header .menu-icon span,
    .menu-icon span:before,
    .menu-icon span:after {
        width: 24px;
        height: 2px;
        background-color: #000;
    }

    .site-header .menu-icon span:before,
    .menu-icon span:after {
        content: "";
        position: absolute;
        left: 0;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .site-header .menu-icon span:before {
        top: -9px;
    }

    .site-header .menu-icon span:after {
        top: 9px;
    }

    .site-header {
        margin: 0;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-header .primary-menu li a {
        padding: 12px 30px !important;
        border-bottom: 2px solid transparent;
        font-size: 14px;
        color: #000000;
        font-weight: 500;
    }

    .site-header .primary-menu li:last-child {
        margin: 0;
    }

    body.menu-open {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }

    body.menu-open .menu-icon span:after {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    body.menu-open .menu-icon span:before {
        transform: rotate(45deg) translate(6px, 6px);
    }

    body.menu-open .menu-icon span {
        height: 0;
    }
}

@media only screen and (max-width: 991px) {
.blog-table-content {
    display: none;
}
    h1,
    .h1 {
        font-size: 50px;
        line-height: 52px;
    }

    h2,
    .h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .home-hero-content {
        padding: 70px 0 50px 0;
    }

    .home-hero-section:before {
        height: 200px;
        width: 100px;
    }

    .home-hero-section:after {
        height: 200px;
        width: 100px;
    }

    .text-lg {
        font-size: 16px;
        line-height: 22px;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
.thankyou-section:before {
        height: 200px;
        width: 100px;
    }
.thankyou-section {
padding: 60px 0;
}

    .thankyou-section:after {
        height: 200px;
        width: 100px;
    }
    .client-section {
        background: rgba(244, 244, 244, 1);
    }

    .client-slider-img {
        margin: 0;
    }

    .client-slider-img:before {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .round-bottom-right:before {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -100px;
    }

    .round-top-left:before {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .round-top-right:before {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }

    .set-us-apart-listing {
        gap: 30px;
    }

    .round-center-right:before {
        width: 200px;
        height: 200px;
    }

    .pricing-box-row {
        gap: 30px 0;
    }

    .our-vision-wrap {
        padding: 30px;
    }

    .work-ethics-row {
        gap: 30px 0;
    }

    .innovating-today-wrap p {
        font-size: 40px;
        line-height: normal;
    }

    .blog-listing-sidebar {
        margin-top: 30px;
    }
    
.single-post .entry-content h2 {
    font-size: 26px;
}
}

@media only screen and (max-width: 767px) {

    h1,
    .h1 {
        font-size: 40px;
        line-height: 44px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 39px;
    }

    .home-hero-content {
        padding: 55px 0 40px 0;
    }

    .footer-top {
        padding: 60px 0;
    }

    .faq-box-header p {
        padding: 15px;
    }

    .faq-box-content {
        padding: 0px 15px 15px 15px;
    }

    .faq-box {
        border-radius: 10px;
    }

    .pricing-box {
        height: auto;
    }

    h3,
    .h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .our-vision-wrap {
        padding: 30px 10px;
    }

    .innovating-today-wrap p {
        font-size: 43px;
        line-height: normal;
    }

    .innovating-today-wrap img {
        width: 200px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .site-header .primary-menu li a {
        padding: 12px 15px !important;
    }
    .contact-form-row-submit input.wpcf7-submit {
        padding: 10px 2px;
        font-size: 16px;
        width: 100% !important;
    }
}

@media only screen and (max-width: 575px) {
    .process-wrap-icon {
        width: 36px;
        min-width: 36px;
        height: 36px;
        margin-right: 20px;
        box-shadow: 0px 0 0px 6px #ff00005e;
    }
    .key-benefit .form .contact-page-form .contact-form-row .col-sm-6 + .col-sm-6 {
        margin-top: 12px;
    }
    .process-wrap {
        padding-left: 5px;
    }

    .process-wrap-icon img {
        width: 20px;
        height: 20px;
    }
    .digital-experties .counter {
        display: inline;
    }
    .process-wrap-box:before {
        left: 16px;
    }

    .process-wrap-content {
        padding-top: 0;
    }

    .our-vision-wrap {
        padding: 30px 5px;
    }

    .innovating-today-wrap p {
        font-size: 27px;
    }

}




/* process section css  */


.progress-wrapper {
    position: relative;
    width: 40px;
}

.progress-line {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 50%;
    width: 6px;
    background-color: #f4f4f4;
    transform: translateX(-50%);
    z-index: 0;
}

.progress-widget {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0px 0px;
}

.dot {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #f4f4f4;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1;
    margin: 14px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.dot.active {
    height: 25px;
    width: 25px;
    background-color: #ff6600;
    box-shadow: 0px 0 0px 10px #FF66005e;
    color: #fff;
}


.nav-pills .nav-link {
    border-radius: 0;
    text-align: left;
    padding: 10px 12px;
    background-color: #f5f5f5;
    border: 1px solid transparent;
    transition: 0.3s;
    border-radius: 4px;
    color: #000000 !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.nav-pills .nav-link.active {
    background-color: #f5f5f5;
    border: 1px solid #ff6600;
}

.tab-content {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .progress-wrapper, #v-pills-tab {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-pills .nav-link {
        font-size: 16px;
    }

    .tab-content {
        padding-left: 0px;
        padding-top: 20px;
    }
}


/* price section css  */

.pricing-title {
    padding: 10px 0;
}

.features-col .pricing-title {
    background-color: #000000;
}

.basic-package-col .pricing-title {
    background-color: #707070;
}

.standard-package-col .pricing-title {
    background-color: #0095DA;
}

.advanced-package-col .pricing-title {
    background-color: #A02D8B;
}

.premium-package-col .pricing-title {
    background-color: #FF6600;
}

.pricing-wrapper .col-lg-2 {
	max-width: 18.75%;
	flex: auto;
}

.pricing-title p {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #ffffff;
}

.pricing-content {
    padding: 20px;
    background-color: #ffffff;
    height: calc(100% - 40px);
}

.pricing-content p {
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #707070;
    margin-bottom: 6px !important;
}

.features-col .pricing-content p,
.basic-package-col .pricing-content p,
.standard-package-col .pricing-content p,
.advanced-package-col .pricing-content p, 
.premium-package-col .pricing-content p{
    min-height: 50px;
}

@media (max-width: 1158px){
    .features-col,
    .basic-package-col,
    .standard-package-col {
    	max-width: 33.3333% !important;
        flex: 0 0 33.3333%;
    }

    .advanced-package-col,
    .premium-package-col {
        max-width: 50% !important;
        flex: 0 0 50%;
    }
}

@media (max-width: 767px){
    .features-col,
    .basic-package-col,
    .standard-package-col,
    .advanced-package-col,
    .premium-package-col {
    	max-width: 100% !important;
        flex: 0 0 100%;
    }
}

@media (max-width:1158px) {
    .pricing-wrapper {
        row-gap: 24px;
    }
    
    .pricing-content p {
    	min-height: 40px !important;
    }
}



/*sub menu css*/

.main-navigation .primary-menu .sub-menu {
	flex-direction: column;

}

.main-navigation .primary-menu .sub-menu li {
	background: white;
    width: 100%;
}

.main-navigation .primary-menu .sub-menu li a{
    width: 100%;
    white-space: nowrap;
}

.site-header .primary-menu .sub-menu > li:last-child {
	margin-left: 0px;
}

.site-header .primary-menu .sub-menu > li:last-child a {
	border-bottom: 2px solid transparent;
    padding: 20px 18px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    border-radius: 0px;
    background: transparent;
}

.site-header .primary-menu .sub-menu > li:last-child a:hover {
    border-color: #FF6600;
    background: #F4F4F4;
}

@media (max-width: 1024px) {
	.site-header .primary-menu {
    	flex-direction: column;
    }
    
    .main-navigation li,
    .site-header .primary-menu .sub-menu {
    	width: 100%;
    }
    
    .main-navigation .primary-menu .sub-menu {
		position: relative;
        display: none;
        left: 0 !important;
	}
    
    .site-header .primary-menu .sub-menu li a {
    	padding: 12px 40px !important;
    }
    
    /*
    .main-navigation .primary-menu .sub-menu li {
		background: #f4f4f4;
	}*/
}

.dropdown-toggle-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .dropdown-toggle-icon {
    	display: none !important;
    }
}





/* landing page css */

.lp-section {
    font-family: "Inter", sans-serif !important;
}
.lp-section h1 , .lp-section .h1{
    font-family: "Inter", sans-serif;
    font-size: 58px;
    line-height: 100%
}
.lp-section h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    line-height: 100%;
}
.lp-section p {
    font-size: 20px;
    line-height: 28px;
}
.text-14{
    font-size: 14px !important;
    line-height: 20px !important;
}
.text-16{
    font-size: 16px !important;
    line-height: 126% !important;
}
.text-18{
    font-size: 18px !important;
    line-height: 126% !important;
}
.text-22{
    font-size: 22px !important;
    line-height: 140% !important;
}
.text-26{
    font-size: 26px !important;
    line-height: 140% !important;
}
.gap-20 {
    gap: 20px;
}
.row-gap-30 {
    row-gap: 30px;
}
.lp-home h1 {
    max-width: 950px;
}
.lp-home p {
    max-width: 600px;
}
.lp-1 h1 {
    max-width: 950px;
}
.text-charcoal-gray {
    color: #494949;
}
.text-black {
    color: #000;
}
.text-skyblue {
    color: #0095DA;
}
.text-purple {
    color: #A02D8B;
}
.text-orange {
    color: #FF6600;
}.text-royalblue {
    color: #01619D;
}
.bg-skyblue {
    background-color: #0095DA;
}
.bg-purple {
    background-color: #A02D8B;
}
.bg-orange {
    background-color: #FF6600;
}
.bg-royalblue {
    background-color: #01619D;
}
.bg-black {
    background-color: #000;
}
.bg-video {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.key-benefit .icon {
    width: 72px;
    height: 72px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #EDEDED;
}
.key-benefit .icon img {
    max-height: 30px;
    max-width: 40px;
    object-fit: cover;
}
.key-benefit .form {
    background-color: white;
    border: 1px solid #DBDBDB;
    box-shadow: 0px 4px 20px 0px #00000024;
    border-radius: 20px;
    padding: 25px 28px;
    min-height: 500px;
    margin-top: -200px;
}
.lp-accordion .lp-card , .lp-growth .lp-card {
    padding: 45px 55px;
    background-color: #F1F1F1;
    border-radius: 20px;
}
.digital-experties {
    padding: 50px;
    background: linear-gradient(90deg, #FF6600 0%, #A02D8B 100%);
    border-radius: 20px;
}
.lp-brands {
    background-color: #F1F1F1;
    padding: 70px 0px;
}
.lp-brands-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.img-card {
    border: 1px solid #2C2C2C;
    border-radius: 0px;
    margin: 0px;
    min-height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.img-card img {
    max-height: 30px;
}
.lp-cta {
  background-image: url("../images/LandingPage/image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-cta p {
    max-width: 610px;
}
.lp-cta button {
    font-size: 18px;
    line-height: 100%;
    padding: 16px 32px;
    background-color: #FF0000;
    margin-bottom: 90px;
    margin-top: 42px;
    border: 0px;
}
.expect-card h2 {
    /*font-size: 107px !important;*/
    font-weight: 700;
}
.expect-card {
   /* padding: 0 0 100px 0;*/
}
.grow-card {
    width: 170px;
    height: 170px;
    border-radius: 100%;
}
.grow-card p {
    font-size: 16px;
    line-height: 140%;
}
.grow-right-icon {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    background-color: #A2A2A2;
}
.grow-top {
    top: -30px;
}
.grow-bottom {
    bottom: -30px;
}
.grow-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 100%;
    border: 1px solid #fff;
}
.grow-icon img {
    max-width: 32px;
}
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 5px;
}
.lp-faq-box-header  .collaps.collapsed {
    background-color: transparent;
}
.lp-faq-box-header .collapsed .faq-icon {
    border: 1px solid #CDCDCD;
}
.lp-faq-box-header .faq-icon {
    border: 1px solid #fff;
}
.lp-faq-box-header .collapsed .arrow-down-left {
    display: none;
}
.lp-faq-box-header .arrow-up-right {
    display: none;
}
.lp-faq-box-header .collapsed .arrow-up-right {
    display: inline-block;
}
.lp-faq-box-header .collaps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 0 !important;
    padding: 24px;
}
.lp-faq-box {
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 0;
}
.lp-faq-box .collaps.collapsed {
    color: #888;
}
.lp-faq-box .collaps , .lp-faq-box-content {
    color: #fff;
}
.lp-faq-box-header {
    cursor: pointer;
}
.lp-faq-box-content {
    padding: 0px 24px 24px;
}
.lp-faq-box-header .collaps i {
    font-size: 24px;
}
.lp-faq-box + .lp-faq-box {
    margin-top: 20px;
}
.lp-faq-box-header .collaps.collapsed {
    padding: 0px;
}
.faq-num {
    width: 110px;
    min-width: 110px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 24px;
}
.lp-faq-box .collapsed .faq-num {
    border: 1px solid #CDCDCD;
}
.testimonial-user {
    background-color: #FF3631;
    padding: 20px 30px;
}
.testimonial-user h3 {
    line-height: 150%;
    font-size: 20px;
}
.testimonial-video {
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    height: 100%;
}
.testimonial-user p {
    line-height: 150%;
    font-size: 20px;
    font-weight: 100;
}
.testimonial-detail {
    background-color: #3E3E3E;
    padding: 12px;
    height: fit-content;
}
.testimonial-data {
    height: 100%;
    border: 1px solid red;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
}
.user-review {
    padding: 28px;
}
.benefit-tag {
    display: inline-block;
    position: absolute;
    top: -62px;
    left: 15px;
    background-color: #FF6B00;
    color: white;
    padding: 8px 16px;
    font-family: "Inter", sans-serif !important;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px; 
}
.benefit-tag::before {
    content: "";
    position: absolute;
    left: 6px;
    bottom: -20px;
    border-right: 15px solid #FF6B00;
  border-bottom: 20px solid transparent;
}
.benefit-tag::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    height: 100%;
    width: 12px;
    background-color: #7A3500;
    clip-path: polygon(0px 0px, 8.33% -6.05%, 100% 100%, 0px 100%)
}
.h-auto {
    height: auto;
}

.lp-footer-logo {
  padding: 50px 0;
}
.lp-footer-logo img {
	max-width: 400px;
	width: 100%;
}
.lp-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.footer-socials {
  gap: 8px;
}
.footer-socials a {
  color: #999499;
  font-size: 20px;
}
.footer-socials a:hover {
  color: #FF6600;
}

.vertical_fix_box {
    position: fixed;
    right: -94px;
    top: 50%;
    padding: 10px 0px;
    text-align: center;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    transition: all 0.3s ease 0s;
}
.vertical_fix_box.show {
  display: block;
}

.vertical_fix_box a {
  transform: rotate(-90deg);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0px 0px 8px #888;
  background: #FF6600;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  padding: 12px 24px;
}


.explore-box {
  height: 100%;
}
.explore-box .blog-box-content .blog-box-icon{
  margin-bottom: 10px;
}
.explore-box .blog-box-content .blog-box-icon .service-icon {
  max-width: 70px;
}
.explore-box .blog-box-content ul li {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.explore-box .blog-box-content ul li:before {
	content: "\e182";
    font-family: "Phosphor" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
    font-variant-ligatures: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  color: rgb(34, 197, 94);
}
.explore-box .blog-box {
  height: 100%;
}

.explore-box .blog-box.shadow {
	box-shadow: 0px 0px 5px #eee;
}

header#masthead {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

header#masthead.is-sticky {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}




@media only screen and (max-width: 1199px) {
	.digital-experties h1, .digital-experties .h1 {
      font-size: 36px;
    }
    .digital-experties p {
      font-size: 16px;
      line-height: normal;
    }
}

@media only screen and (max-width: 991px) {
    .key-benefit .form {
        margin-top: 0px;
    }
    .lp-section h2{
        font-size: 36px;
        line-height: 100%;
    }
    .grow-card p {
       font-size: 12px;
       line-height: 140%;
    }
    .grow-bottom {
        top: -30px;
    }
    .expect-card h2 {
        /*font-size: 64px !important;*/
    }
    .expect-card-animated-box h2 {
        height: 64px;
    }
   
    
    
    
    .expect-card.expect-trigger-one {
        margin: 0;
    }
    
    .expect-card {
        padding: 0;
        /*min-height: 50vh;*/
    }
    
    .expect-card.expect-trigger-four {
        padding: 0;
        /*min-height: 100vh;*/
    }
    
    .expect-card.expect-card-animated-box {
        min-height: auto;
    }
    
    .expect-card-animated-box.second-text-active h2 span:first-child {
        margin-top: -64px;
    }
    
    .expect-card-animated-box.third-text-active h2 span:first-child {
        margin-top: -128px;
    }
    
    .expect-card-animated-box.fourth-text-active h2 span:first-child {
        margin-top: -192px;
    }   
    
    .digital-experties h1, .digital-experties .h1 {
      font-size: 30px;
    }
    .digital-experties p {
      font-size: 14px;
      line-height: normal;
    }
    
}
@media only screen and (max-width: 767px) {
     
    .expect-card-animated-box.second-text-active h2 span:first-child {
        margin-top: -42px;
    }
    
    .expect-card-animated-box.third-text-active h2 span:first-child {
        margin-top: -84px;
    }
    
    .expect-card-animated-box.fourth-text-active h2 span:first-child {
        margin-top: -126px;
    }    
    .expect-card-animated-box p {
        height: 25px;
    }
    .expect-card-animated-box p span {
        height: 25px;
    }
    .lp-accordion .lp-card, .lp-growth .lp-card {
        padding: 40px 15px;
    }
    .expect-card-animated-box.second-text-active p span:first-child {
        margin-top: -25px;
    }
    .expect-card-animated-box.third-text-active p span:first-child {
        margin-top: -50px;
    }
    .expect-card-animated-box.fourth-text-active p span:first-child {
        margin-top: -75px;
    }
    .lp-section h1 , .lp-section .h1 {
        font-size: 36px;
    }
    .lp-section h2{
        font-size: 28px;
        line-height: 100%;
    }
    .lp-section p{
        font-size: 18px;
        line-height: 24px;
    }
    .expect-card-animated-box h2 {
        height: 42px;
    }
    .digital-experties {
        padding: 24px;
    }
    .lp-brands-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .expect-card-animated-box-outer-child > .row h2 {
        /*max-width: 300px;
        display: block;
        margin: 0 auto;
        line-height: normal;
        padding: 0 0 20px 0 !important;*/
    }
    .faq-num {
        width: 50px;
        min-width: 50px;
        height: 30px;
        border-radius: 16px;
    }
    .text-26 {
        font-size: 18px !important;
    }
    .digital-experties p {
        font-size: 16px;
    }
    
    .expect-card h2 {
       /* font-size: 42px !important;*/
    }
    .lp-faq-box-header .collaps {
        padding: 15px;
    }
    .lp-faq-box-content {
        padding: 0px 15px 15px 15px;
    }
    .lp-faq-box {
        border-radius: 10px;
    }
    .testimonial-user {
        padding: 12px 16px;
    }
    .testimonial-user h3 , .testimonial-user p {
        font-size: 16px;
    }
    .user-review {
        padding: 20px;
    }
    
	.mobile-ticker {
        overflow: hidden;
        position: relative;
	}

      .mobile-ticker .ticker-track {
        display: flex;
        flex-wrap: nowrap;
        will-change: transform;
      }

      .mobile-ticker .col-6 {
        flex: 0 0 auto;
        width: 75%;
        padding-right: 20px;
        display: flex;
        gap: 10px;
      }
      .mobile-ticker .text-16 {
      	font-size: 14px !important;
      }
   .key-benefit .mobile-ticker .icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }
    
    .lp-section.lp-home .container .row > div {
      text-align: center;
    }
    
    .lp-section.lp-cta {
      background: linear-gradient(90deg, #F60 0%, #A02D8B 100%) !important;
    }
    .lp-section.lp-cta .container .row > div {
    	text-align: center;
    }
    .lp-cta button {
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    
    .normal-expect-card {
    	height: 47vh;
    }
    .expect-card-animated-box-outer-child {
	  /*min-height: 30vh;*/
    }
    .expect-card, .expect-card.expect-trigger-four {
        min-height: 10vh;
     }
     .expect-card-animated-box-outer {
      	top: 25%;
     }
     
     .lp-brands-cards, .digital-experties .wrap-inner{
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        will-change: transform;
      }

      .lp-brands-cards .img-card, .digital-experties .d-block {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
      }

      .lp-brands-cards img {
        max-height: 40px;
        width: auto;
        object-fit: contain;
      }
      
       .digital-experties .d-block {
          display: block !important;
        }
      .digital-experties h1, .digital-experties .h1 {
          font-size: 26px;
          display: inline-block;
      }
     .digital-experties p {
        font-size: 14px;
        padding-left: 0px !important;
     }
     
     .vertical_fix_box {
      display: none;
      position: fixed;
      right: 0;
      top: auto;
      padding: 10px 0px;
      -moz-transform: none;
      -webkit-transform: none;
      transform: none;
      bottom: 0;
      left: 0;
      background-color: #fff;
    }
    .vertical_fix_box a {
      transform: none;
      letter-spacing: 0;
      font-size: 14px;
    }
    
    .our-vision-wrap {position: relative;}
    .our-vision-wrap::before {
      content: "";
      background: rgba(0,0,0,0.5);
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      top: 0;
    }

    
}



@media (max-width: 480px) {
	.key-benefit .mobile-ticker .icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
    .mobile-ticker .col-6 {
    	padding-right:0;
    }
    
    .grow-card {
    	width: 150px;
  		height: 150px;
        margin-top: 20px !important;
        margin-bottom: 16px !important;
    }
    .grow-icon {
  		width: 50px;
  		height: 50px;
  	}
    .grow-icon img {
      max-width: 22px;
    }
    .lines-animation-inner {
        min-width: 226px;
    }
    .lp-section p {
        font-size: 15px;
        line-height: 20px;
     }
    .grow-top {
      top: -16px;
    }
    .grow-bottom {
        top: -16px;
	}
    
     .digital-experties {
        padding: 20px 16px;
      }
    .lp-section h1, .lp-section .h1 {
        font-size: 34px;
    }
    .digital-experties .wrap-inner h1, .digital-experties .wrap-inner .h1 {
      font-size: 24px;
    }
    .digital-experties .wrap-inner p {
      font-size: 12px;
      line-height: normal;
    }
    .digital-experties .wrap-inner {
      gap: 15px;
    }
    .digital-experties .wrap-inner .d-block {
      flex: auto;
    }
    .lp-testimonial .center-copy {
    	text-align: center;
    }
    .lp-faq-box-header .text-26 {
      font-size: 16px !important;
    }
}


.wpcf7-response-output {
  display: none;
}


/* SECTION WRAPPER */
.success-stories {
    padding: 100px 20px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,102,0,0.4) 100%);
}

.success-stories .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* SECTION HEADER */
.success-stories .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-stories .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-stories .section-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* FILTER BUTTONS */
.success-stories .filter-buttons {
    text-align: center;
    margin-bottom: 60px;
}

.success-stories .filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(187, 187, 187, 0.5);
    background: transparent;
    /*! color: #fff; */
    font-size: 14px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
}

.success-stories .filter-btn:hover {
    background: rgba(255,255,255,0.15);
}

.success-stories .filter-btn.active {
    background: #F60;
    color: #fff;
    font-weight: 600;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.projects-grid .project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-grid .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CARD HEADER */
.projects-grid .card-header {
    padding: 30px;
    background: #F60;
    color: #fff;
}

.projects-grid .badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 15px;
}

.projects-grid .card-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.projects-grid .card-header .subtitle {
    font-size: 14px;
    opacity: 0.9;
}

/* STATS GRID */
.projects-grid .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px;
}

.projects-grid .stat-box {
    background: #f4f5fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.projects-grid .stat-box h4 {
    font-size: 24px;
    color: #F60;
    margin-bottom: 5px;
}

.projects-grid .stat-box p {
    font-size: 13px;
    color: #666;
}

/* DESCRIPTION */
.projects-grid .description {
    padding: 0 25px 20px 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* FOOTER */
.projects-grid .card-footer {
    margin-top: auto;
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-grid .duration {
    font-size: 13px;
    color: #777;
}

.projects-grid .btn {
    padding: 8px 18px;
    border-radius: 50px;
    background: #F60;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.projects-grid .btn:hover {
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .success-stories .section-header h2 {
        font-size: 30px;
    }
    .success-stories {
  		padding: 70px 0;
  	}
}