/* web fotn */
@import url('https://fonts.googleapis.com/css2?family=Ysabeau:ital,wght@0,1..1000;1,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --primary-dark: #A2C617;
    --secondary-dark: #12304C;
    --light-secondary: #35507C;
    --light-cyan: #71D8E1;
    --light-grey: #687889;
    --light-grey-300: #e7eaed;
    --light-grey-200: #B3B3B3;
    --light-grey-100: #f6f6f6;
    --violet-700: #7918B5;
    --blue-900: #4C6184;
    --error: red;
    --white: #fff;
    --black: #000;
}

body {
    margin: 0;
    padding: 0;
    transition: 0.5s;
    font-family: "Public Sans", sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    font-family: "Ysabeau", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 39px;
    font-weight: 800;
    line-height: 45px;
}

h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

li {
    list-style: none;
}

a {
    color: var(--bs-link-color);
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--bs-link-hover-color);
}

a,
button {
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

button,
button:focus {
    outline: none;
    border: none;
    cursor: pointer;
}

.form-control:focus,
.form-check-input:focus {
    outline: 0;
    box-shadow: none;
}

input,
select,
textarea {
    font-size: 16px;
    line-height: 37px;
}

textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
}

input:hover,
input:active,
input:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: inherit;
}

select:hover,
select:active,
select:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /*For FireFox*/
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--primary-dark) !important;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.error p {
    margin: 5px 0px;
    font-size: 12px;
}

.error {
    padding: 15px;
    background: #ff000014;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid #ff000033;
    color: var(--error);
    font-size: 12px;
}

.success {
    padding: 15px;
    background: #e6ffe6;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid #bce0bc;
    color: green;
    font-size: 12px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

img {
    max-width: 100%;
    height: auto;
}

.flex-box {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
}

.custom-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

.lg-main-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

h2.verticle-heading {
    font-size: 100px;
    color: #ffffff0a;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    height: 0px;
    left: -360px;
    transform: rotate(270deg) translate(0, -50%);
    bottom: 0;
}

nav.navbar .custom-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.mobile-contact-list {
    display: none;
}

.owl-dots {
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #D3D3D3;
    display: inline-flex;
    position: relative;
    margin-right: 16px;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: var(--primary-dark);
    position: relative;
}

.owl-dots .owl-dot.active span::before {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--primary-dark);
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* global solid button */
.global-light-button, 
.global-border-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 4px;
    line-height: 28px;
    color: var(--white);
    position: relative;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    box-shadow: 1px 6px 11px 0px #A2C6175C;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    background-color: var(--primary-dark);
}

.global-light-button:hover,
.global-border-button:hover {
    color: var(--white);
}

.global-light-button img,
.global-dark-button img,
.global-border-button img {
    margin-left: 5px;
}

.global-light-button span,
.global-dark-button span,
.global-border-button span {
    position: relative;
    z-index: 2;
}

.global-dark-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 4px;
    line-height: 28px;
    color: var(--white);
    position: relative;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 1px 6px 11px 0px #A2C6175C;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    background-color: var(--secondary-dark);
}

.global-dark-button:hover {
    color: var(--white);
}

.global-light-button::after,
.global-dark-button::after,
.global-border-button::after {
    content: '';
    left: -100%;
    width: 100%;
    position: absolute;
    height: 100%;
    background: #000;
    transition: all 0.4s ease-in-out;
}

.global-light-button:hover::after,
.global-dark-button:hover::after,
.global-border-button:hover::after {
    left: 0px;
}

.global-border-button {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}


/* global solid button */
.global-header.side-by-side {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.global-headercntn {
    display: flex;
    align-items: center;
}

.bg-light-green-btn {
    background-color: var(--primary-dark);
    color: var(--white);
    transition: all 0.3s ease-in-out;
    line-height: 59px;
    padding-top: 0;
    padding-bottom: 0;
}

.bg-light-green-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.cyan-light {
    color: var(--primary-dark);
}

.partner-item.slick-slide img {
    margin: 0 a;
}

.extra-space {
    padding: 0px 150px;
}

nav.navbar a.nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 17.58px;
    color: var(--dark-green-800);
    padding-top: 0px;
    padding-bottom: 0px;
    transform: all 0.4s ease-in-out;
}

nav.navbar a.nav-link:hover {
    color: var(--dark-green);
    transform: all 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown-menu {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
    padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
    padding: 10px 19px;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #ffffff;
    top: -20px;
    left: 24px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    right: 0px;
}

.only_mobile_view {
    display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: auto;
    right: -12px;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 1px;
    position: absolute;
    background: #000000;
    border-radius: 2px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
    border-bottom: 2px solid #000;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    right: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.top-navbar ul.navbar-nav li.menu-item a {
    position: relative;
}

.top-navbar ul.navbar-nav li.menu-item a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: calc(0% - 12px);
    bottom: -4px;
    border-bottom: 1px solid;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.top-navbar ul.navbar-nav li.menu-item a:hover::before {
    opacity: 1;
    visibility: visible;
    width: calc(100% - 12px);
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

nav.top-navbar {
    background-color: transparent;
    padding: 16px 0px;
    position: fixed;
    z-index: 99;
    position: -webkit-sticky;
    transition: all 0.3s ease-in-out;
    top: 0;
    width: 100%;
}

.top-navbar ul.navbar-nav li.current-menu-item a {
    color: var(--primary-dark);
    font-weight: 600;
}

nav.top-navbar::before {
    background: var(--primary-dark);
    height: 1px;
    position: absolute;
    content: '';
    top: 0px;
    left: 0;
    z-index: 1;
    width: 50%;
}

nav.top-navbar::after {
    background: #71D8E1;
    height: 1px;
    position: absolute;
    content: '';
    right: 0;
    top: 0px;
    z-index: 1;
    width: 50%;
}

.top-navbar.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 9999;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 1px 17px 1px #e5e5e5;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav.top-navbar li.nav-item {
    padding: 0px 6px;
}

.top-navbar ul.navbar-nav,
.top-navbar .menu-primary-menu-container, .top-navbar .menu-primary-menu-for-german-container {
    margin-left: auto;
}
.dropdown-toggle::after {
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    border-top: .0em solid !important;
    vertical-align: 0em;
    transition: all 0.4s ease-in-out;
}

.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}

li.nav-item.dropdown:hover .dropdown-toggle {
    color: var(--dark-green);
}

li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 30px;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
    box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
    transition: all 0.4s ease-in-out;
}

.dropdown-menu {
    border: none;
}

.hero-languages {
    display: flex;
    align-items: center;
    gap: 11px;
}

.select-languages select.form-select {
    border: none;
    padding-left: 0;
    padding-right: 27px;
    background-color: transparent;
}

.select-languages ul li.wpml-ls-item.wpml-ls-current-language {
    position: relative;
    opacity: 1;
    transform: translate(0px, 0px);
}

.select-languages ul li.wpml-ls-item {
    position: absolute;
    opacity: 0;
    left: 0;
    transform: translate(0px, 23px);
}

.select-languages ul:hover li.wpml-ls-item {
    transform: translate(0px, 23px);
    opacity: 1;
}

.select-languages ul:hover li.wpml-ls-item.wpml-ls-current-language {
    transform: translate(0px, 0px);
    opacity: 1;
}

.select-languages ul li.wpml-ls-item a {
    color: var(--secondary-dark);
}

.select-languages ul {
    position: relative;
    padding-right: 12px;
}

.select-languages ul::before {
    position: absolute;
    right: 3px;
    top: 7px;
    content: "\f107";
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 15px;
    color: var(--secondary-dark);
}

/* navbar end */
/* hero banner start */
.hero-banner {
    background: url('../images/home-hero-bg.webp')no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px 0px;
}

.hero-inner-banner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: end;
}

.inner-page-banner .hero-inner-banner {
    align-items: flex-end;
}
.page-template-contact-us .inner-page-banner .content-box {
    margin-bottom: 10%;
}
.hero-inner-banner .content-box {
    max-width: calc(100% - 700px);
    width: 100%;
    padding-bottom: 70px;
}

.hero-inner-banner .image-box {
    flex: 1;
}

.hero-inner-banner .content-box h1 {
    margin: 30px 0px;
    color: var(--secondary-dark);
}

.hero-inner-banner .content-box h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-dark);
    position: relative;
    padding-left: 50px;
}

.hero-inner-banner .content-box h6::after {
    position: absolute;
    content: '';
    width: 43px;
    background-color: var(--primary-dark);
    height: 1px;
    left: 0px;
    top: 8px;
}

.hero-inner-banner .content-box p {
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    padding: 7px 14px;
    color: var(--light-secondary);
    border-left: 1px solid;
}

.hero-inner-banner .content-box .hero-buttons {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 15px; */
}

/* hero banner end */
/* why choose us start */
.why-choose-us {
    padding: 100px 0px 80px;
    position: relative;
    overflow-x: hidden;
}

.why-choose-us h2.verticle-heading {
    color: #12304c0d;
    left: auto;
    right: -250px;
}

.why-choose-us .content-list-item {
    display: flex;
    margin: 20px 0px;
    gap: 20px;
    padding: 15px 20px;
    border-left: 1px solid transparent;
    cursor: auto;
}

.why-choose-us .content-list-item:hover {
    border-color: var(--primary-dark);
}

.why-choose-us .content-list-item h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.why-choose-us .content-list-item:hover h4 {
    color: var(--primary-dark);
}

.why-choose-us .content-list-item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin-top: 8px;
    letter-spacing: 0%;
    color: var(--light-grey);
}

a.content-list-item .choose-icon-round img {
    width: 40px;
}

a.content-list-item .choose-icon-round {
    position: relative;
}

a.content-list-item .choose-icon-round::after {
    content: '';
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -1px;
    height: 28px;
    width: 28px;
    background-color: var(--light-grey-300);
}

.why-choose-us .content-list {
    padding-top: 30px;
    position: relative;
    margin-top: 30px;
}

.why-choose-btns {
    padding-left: 25px;
}

.why-choose-us .image-box img {
    width: 100%;
}

.why-choose-us .content-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-us .content-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70px;
    width: 123px;
    height: 3px;
    background-color: var(--primary-dark);
}

.why-choose-us .content-list-item span img {
    width: 18px;
    transition: all 0.3s ease-in-out;
}

.why-choose-us .content-list-item:hover span img {
    transform: rotate(45deg);
}

.why-choose-us .image-box {
    position: relative;
}

.why-choose-us .image-box::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    background-color: #eaefd7;
    height: 118px;
    width: 107px;
    z-index: -2;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: calc(100% - 70%);
    z-index: -6;
    background: var(--light-grey-100);
}

/* why choose us end */
/* our services start */
/* .our-services .lg-main-container {
  margin: inherit;
  margin-left: auto;
  max-width: calc(100% - 18% + 10px);
} */
.our-services {
    padding: 100px 0px;
    background: url('../images/services-bg.jpg')no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

.our-services .lg-main-container {
    margin-left: auto;
    margin-right: -1%;
    max-width: calc(100vw / 2 - -33vw);
}

.our-services .our-service-item img.services-thumb {
    aspect-ratio: 2 / 2;
}

.our-service-item span.aroww-icons img {
    width: auto;
}

.our-service-item {
    position: relative;
    padding-bottom: 50px;
}

.our-service-item a.service-info {
    display: inline-block;
    background: #ffffff;
    width: calc(100% - 50px);
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.our-service-item a.service-info:hover {
    background-color: #f6fcdb;
    cursor: auto;
}
.our-service-item a.service-info.newServiceLink:hover {
    cursor: pointer !important;
}
h2.global-heading.two-side-brder {
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    max-width: max-content;
    width: 100%;
}

.white-clr {
    color: var(--white);
}

h2.global-heading.two-side-brder::before {
    content: '';
    display: block;
    width: 52px;
    max-width: 100%;
    background: var(--primary-dark);
    position: absolute;
    left: 110%;
    transform: translate(0%, 0);
    bottom: 19px;
    height: 3px;
}

h2.global-heading.two-side-brder::after {
    content: '';
    display: block;
    width: 52px;
    max-width: 100%;
    background: var(--primary-dark);
    position: absolute;
    right: 110%;
    transform: translate(0%, 0);
    bottom: 19px;
    height: 3px;
}

.our-service-item a.service-info h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    color: var(--primary-dark);
    position: relative;
    padding-top: 10px;
}

.our-service-item a.service-info h6::before {
    content: '';
    position: absolute;
    width: 78px;
    height: 2px;
    background-color: var(--violet-700);
    left: 0;
    top: 0;
}

.our-service-item a.service-info h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.our-service-item a.service-info p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--light-grey);
}

.our-service-item a.service-info:hover span.aroww-icons {
    right: 10px;
}

.our-service-item a.service-info span.aroww-icons {
    position: absolute;
    right: 20px;
    transition: all 0.3s ease-in-out;
}

.our-service-slider .owl-nav {
    margin-top: 60px;
    position: relative;
    max-width: 1200px;
}

.our-service-slider button i {
    height: 48px;
    width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.our-service-slider button i:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.our-service-slider button {
    margin-right: 20px;
}

.our-service-slider .owl-nav::after {
    content: '';
    width: calc(100% - 55%);
    background: var(--primary-dark);
    height: 1px;
    position: absolute;
    top: 50%;
}

.our-service-slider .owl-nav::before {
    content: '';
    width: calc(100% - 50%);
    background: #6C6C6C;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0px;
}

/* our services end */
/* get in touch start */
.get-in-touch {
    background: url('../images/get-in-touch.png')no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0px;
    position: relative;
    overflow-x: hidden;
}

.get-in-touch h2.verticle-heading {
    left: auto;
    right: -180px;
    color: #ededed;
}

.get-in-touch .get-in-touch-left h2 {
    position: relative;
    padding-bottom: 25px;
}
.get-in-touch-left a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 4px;
    line-height: 28px;
    color: var(--white);
    position: relative;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 1px 6px 11px 0px #A2C6175C;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
    background-color: var(--primary-dark);
}

.get-in-touch .get-in-touch-left h2::before {
    content: '';
    left: -100%;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: var(--primary-dark);
    position: absolute;
    transform: scaleX(1.5);

    display: none;
}

.get-in-touch-left p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--secondary-dark);
    margin: 20px 0px;
}

.get-in-touch-left ul.follow-media {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.get-in-touch-left ul.follow-media li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--light-secondary);
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.get-in-touch-left ul.follow-media li a i {
    background: #eff2e4;
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-dark);
    transition: all 0.3s ease-in-out;
}

.get-in-touch-left ul.follow-media li a i:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.follow-us-on h4 {
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 22px;
    line-height: 39px;
    text-transform: capitalize;
    margin-top: 33px;
}

.get-touch-form {
    padding-left: 65px;
}

.get-touch-form p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--light-secondary);
    margin: 15px 0px;
    max-width: 90%;
}

.get-touch-form .form-floating p {
    width: 100%;
    max-width: 100%;
}

.get-touch-form .form-control {
    border: none;
    border-bottom: 1px solid #001E2B80;
    border-radius: 0px;
    padding-left: 0px;
    background-color: transparent;
}

.get-touch-form form .form-floating span.form-icon {
    position: absolute;
    right: 0;
    top: 15px;
}

.form-floating .form-control,
.form-floating .form-control-plaintext {
    padding: 1.3rem 1rem 1rem 0;
}

.get-touch-form form .form-floating {
    position: relative;
}

.form-floating label {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 0rem -1rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.get-touch-form textarea.form-control {
    min-height: 140px;
    resize: none;
}

.get-touch-form .form-floating>label {
    padding-left: 0;
}

.get-touch-form .form-check label {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
}

.get-touch-form .form-check label a {
    color: var(--light-secondary);
    text-decoration: underline;
}

.get-touch-form .form-check {
    margin: 20px 0px;
    padding-left: 0px;
}

.get-touch-form .form-check a {
    color: var(--light-secondary);
    text-decoration: underline;
}

.get-touch-form input[type="checkbox"] {
    accent-color: var(--light-secondary) !important;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    margin-right: 4px;
}

.get-touch-form form {
    background: url('../images/map-outline.png')no-repeat;
    background-position: center;
    background-size: contain;
}

span.wpcf7-list-item.first.last {
    margin-left: 0px;
    margin-right: 5px;
}

/* get in touch end */
/* consult works start */
.consult-works {
    padding: 80px 0px;
    position: relative;
    overflow-x: hidden;
}

.consult-works::after {
    content: '';
    height: 450px;
    width: 450px;
    position: absolute;
    right: -100px;
    top: 40px;
    background-color: #dde6f64a;
    z-index: -1;
    border-radius: 50%;
}

.consult-works .consult-up-box {
    max-width: 635px;
}

.consult-works .consult-up-box p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--light-secondary);
    margin: 20px 0px;
    max-width: 620px;
}

/* success story start */
.success-story {
    background: url('../images/success-story-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0px;
    color: var(--white);
}

.success-story .success-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.consult-down-box {
    margin-top: -190px;
    position: relative;
}

.consult-down-box .consult-single-works h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    color: var(--secondary-dark);
    margin-top: 15px;
}

.consult-down-box .consult-single-works p {
    font-size: 15px;
    line-height: 22px;
    color: var(--light-grey);
    margin-top: 8px;
}


.consult-down-box .consult-single-works:nth-child(3) {
    position: absolute;
    top: 50px;
    right: 0;
    max-width: 273px;
    padding: 0;
}

.consult-down-box .consult-single-works:nth-child(2) {
    position: relative;
    right: -40px;
    max-width: 273px;
    padding: 0;
    margin-top: -170px;
}

.consult-down-box .consult-works-items {
    display: flex;
    margin-top: -97px;
    max-width: 85%;
    margin-left: auto;
}

.consult-down-box .consult-single-works {
    max-width: 33%;
    padding: 0px 30px;
}

.consult-down-box .consult-single-works span.number-icon {
    position: absolute;
    top: 0;
    right: 15px;
    font-weight: 900;
    font-size: 227.95px;
    line-height: 176.95px;
    color: #f6f5f6;
    z-index: -1;
}

span.number-icon img {
    display: none;
}

.consult-down-box .consult-single-works {
    position: relative;
}

/* success story end */
/* overview start */
.overview-outer {
    padding: 70px 0px 30px;
    text-align: center;
}

.overview-item h6 {
    font-family: Ysabeau;
    font-weight: 700;
    font-size: 18px;
    line-height: 19.8px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 18px;
}

.overview-outer .overview-item {
    padding: 30px 12px;
    margin: 10px 0px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.overview-outer .overview-item:hover {
    border-color: #71D8E1;
    box-shadow: 1px 1px 20px 0px #71d8e133;
}

.success-story .success-content h2 {
    font-weight: 800;
    font-size: 90px;
    line-height: 32px;
    text-align: right;
    color: #ffffff14;
}

.success-story .success-content .succe-info {
    max-width: 426px;
    margin-left: auto;
    margin-top: 57px;
}

.success-story .success-content .succe-info h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    text-align: right;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.success-story .success-content .succe-info p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 30px;
}

.success-story .success-content .succe-info h4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    height: 2px;
    content: '';
}

.success-story .success-content .global-light-button {
    background: transparent;
    box-shadow: none;
    border: 1px solid #fff;
}

.success-story h2.success-heading {
    position: relative;
    margin-bottom: 50px;
}

.success-story h2.success-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 52px;
    height: 3px;
    background-color: var(--primary-dark);
}

/* overview end */

/* latest blog start */
.latest-blog .blog-top-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.latest-blog-item .content-box h6 {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--light-grey-200);
}

.latest-blog-item .content-box h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.latest-blog-item .content-box p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--light-grey);
}

.latest-blog-item .content-box {
    display: flex;
    flex-direction: column;
    gap: 8px 15px;
    padding: 20px 0px;
}

.latest-blog-item .content-box a {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--secondary-dark);
    transition: all 0.3s ease-in-out;
}

.latest-blog-item .content-box a:hover {
    color: var(--primary-dark);
}

.latest-blog-item .content-box a img {
    margin-left: 6px;
}

.latest-blog {
    padding: 35px 0px 0px;
    position: relative;
}

.latest-blog .blog-top-heading h2 {
    position: relative;
}

.latest-blog .blog-top-heading h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 52px;
    height: 3px;
    background-color: var(--primary-dark);
}

.blog-dwn-curv {
    margin-top: 50px;
}

/* latest blog end */
/* our client say satrt */
.our-client-say {
    padding: 80px 0px;
}

.client-say-item img {
    width: auto !important;
}

.client-say-item {
    padding: 20px;
    box-shadow: 1px 1px 18px 0px #f0f0f0;
    border-radius: 15px;
    margin: 20px 0px;
}

.client-profile {
    display: flex;
    justify-content: space-between;
}

.client-profile .left-part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-say-item .profile-ratinf {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F9BF00;
}

.client-say-item .profile-ratinf img {
    margin-left: auto;
}

.client-say-item .client-profile h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-dark);
    line-height: 28px;
    text-transform: capitalize;
}

.client-say-item .client-profile p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #ADA8A8;
}

.client-say-item .client-info h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.client-say-item .client-info p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--light-grey);
}

.client-say-item .client-info {
    margin: 20px 0px;
}

/* our client say end */


/* footer start */
footer.footer {
    background: url('../images/footer-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0px 0px;
    color: var(--white);
}

footer.footer .footer-inner-box {
    display: flex;
    gap: 9px 30px;
    flex-wrap: wrap;
}

footer.footer .footer-inner-box .footer-item {
    max-width: calc(25% - 32px);
    width: 100%;
}
footer.footer .footer-inner-box .footer-item.quick-link {
    max-width: calc(25% - 0px);
}
footer.footer .footer-inner-box .footer-item a img {
    max-width: 173px;
    object-fit: contain;
}
footer.footer .footer-inner-box h5.ftr-heading {
    font-family: Ysabeau;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

footer.footer a {
    color: var(--white);
}

.footer-item.quick-link ul li {
    display: inline-flex;
    width: 49%;
    padding-right: 10px;
}

.footer-item.quick-link li a:hover,
.footer-item.get-touch-ftr li a:hover {
    color: var(--primary-dark);
}

footer.footer .ftr-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
}

footer.footer .footer-inner-box .footer-item:first-child p {
    margin: 15px 0px;
}

.ftr-social li a {
    display: inline-flex;
    height: 30px;
    width: 30px;
    background: #213f5b;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.ftr-social li a:hover {
    color: var(--white);
    background-color: var(--primary-dark);
}

.ftr-social li a:hover i {
    color: var(--white);
}

.ftr-social li a i {
    color: var(--primary-dark);
}

.newsletter-ftr form input,
.newsletter-ftr form button {
    width: 100%;
}

.newsletter-ftr form input.form-cntrol {
    background: transparent;
    border: 1px solid var(--white);
    height: 50px;
    padding: 10px 16px;
    border-radius: 5px;
    color: var(--white);
}

.footer-item.get-touch-ftr ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0px;
    position: relative;
}

.footer-item.get-touch-ftr ul li span:last-child {
    display: flex;
    flex-direction: column;
}

.newsletter-ftr form button.subs-btn.btn {
    width: 100%;
    margin-top: 20px;
    background: var(--primary-dark);
    color: var(--white);
    height: 50px;
    transition: all 0.3s ease-in-out;
}

.newsletter-ftr form button.subs-btn.btn:hover {
    background-color: var(--blue-900) !important;
}

footer.footer .footer-inner-box h5.ftr-heading::after {
    width: 39px;
    height: 2px;
    background: var(--primary-dark);
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
}

.ftr-copyright {
    border-top: 1px solid #ffffff1c;
    padding: 20px 0px;
    margin-top: 70px;
}

.ftr-copyright .lg-main-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.ftr-copyright .lg-main-container ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 10px;
}

.ftr-copyright .lg-main-container ul li a {
    display: inline-block;
    border-left: 1px solid #fff;
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
}

.ftr-copyright .lg-main-container ul li a:hover {
    color: var(--primary-dark);
}

.ftr-copyright .lg-main-container ul li:first-child a {
    display: inline-block;
    border-left: 0px;
    padding-left: 0px;
}

.ftr-copyright .lg-main-container ul li {
    line-height: 15px;
}

/* footer end */

/* about us page */
.inner-page-banner {
    background: url('../images/inner-page-sticky-bg.jpg')no-repeat;
    background-position: center;
    background-size: cover;
}

.about-us-outer .image-box span.countSection {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 12px;
    bottom: 10px;
    background-image: linear-gradient(89deg, #c8d2a5, #cde082);
    height: 190px;
    width: 190px;
    border-radius: 50%;
}

.about-us-outer .image-box span.countarea {
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    text-align: center;
    color: #12304C;
}

.about-us-outer .image-box span.count-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.about-us-outer {
    padding: 80px 0px;
}

.about-us-outer .image-box {
    position: relative;
}

.about-us-outer .content-box {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    height: 100%;
    justify-content: center;
}

.about-us-outer .content-box p {
    color: var(--light-grey);
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;

}

h2.right-add-shape {
    position: relative;
    max-width: max-content;
}

h2.right-add-shape::before {
    width: 52px;
    height: 3px;
    background: var(--primary-dark);
    content: '';
    left: 0%;
    position: absolute;
    top: 50px;
    display: none;
}
.our-mission-outer h2.right-add-shape::before {
    display: none;
}
.modal {
    z-index: 99999 !important;
}

.modal iframe#youtubeVideo {
    width: 100%;
    height: 280px;
}

.modal-body {
    padding: 10px !important;
}
.btn-close {
    position: absolute;
    top: -5px;
    right: -5px;
    line-height: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #a2c617;
    font-size: 10px;
    width: 18px;
    opacity: 100%;
    color: white !important;
    font-weight: 600;
}

button.playIconblink {
    margin-left: 15px;
    width: 70px;
    height: 70px;
    border: 1px solid #a2c617;
    border-radius: 50%;
    line-height: 47px;
    color: #a2c617;
    background-color: #ff000000;
    font-size: 22px;
}

/* our mission */
.our-mission-outer {
    background: url('../images/services-bg.jpg')no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0px;
    color: var(--white);
}

.our-mission-outer .content-box {
    display: flex;
    flex-direction: column;
    margin-right: 50px;
    justify-content: left;
    height: 100%;
    gap: 5px;
    text-align: left;
}

.our-mission-outer .content-box p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: left;
}

.img-part.dropdown-toggle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 3px 3px 11px #00000017;
}

.our-mission-outer .content-box h2.right-add-shape {
    color: var(--primary-dark);
}

/* about us page */
/* project management start */
.inner-page-banner .image-box img {
    max-height: 500px;
    object-fit: contain;
}
.inner-page-banner .image-box {
    text-align: right;
    display: flex;
    align-items: end;
    justify-content: center;
}

.inner-page-banner .hero-buttons {
    margin-top: 20px !important;
}

.inner-page-banner p {
    border-left: 0px !important;
    position: relative;
    padding-top: 0px !important;
}

.hero-inner-banner .content-box p::before {
    content: '';
    left: 0px;
    top: 4px;
    width: 2px;
    /*height: 64px;*/
    height: 55px;
    background: var(--primary-dark);
    position: absolute;
}

.hero-banner.inner-page-banner.about-sticky .hero-inner-banner .content-box p:last-child::before {
    display: none;
}

.hero-inner-banner .content-box p:last-child::before {
    display: none;
}

.inner-page-banner .content-box {
    padding-bottom: 80px;
}

.can-expert {
    padding: 80px 0px;
}

.can-expert .lg-main-container {
    max-width: 1100px;
}

.can-expert .expert-header {
    max-width: 900px;
    margin: 0px auto 50px;
    text-align: center;
}

.can-expert .expert-header p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--light-secondary);
    margin-top: 20px;
}

.can-expert .can-expert-item {
    padding: 0px 70px;
    position: relative;
    display: flex;
    margin: 40px 0px;
}

.can-expert .can-expert-item .content-box,
.can-expert .can-expert-item .image-box {
    width: 50%;
    position: relative;
}

.can-expert .can-expert-item .image-box {
    text-align: center;
}

.can-expert .can-expert-item .content-box h6 {
    font-weight: 800;
    font-size: 100px;
    line-height: 72px;
    position: absolute;
    text-transform: uppercase;
    color: #f1f1f1;
    z-index: -1;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.can-expert .can-expert-item .content-box h4 {
    font-weight: 800;
    font-size: 26px;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.can-expert .can-expert-item .content-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--light-secondary);
    text-transform: capitalize;
}

.can-expert .can-expert-item .content-box {
    padding-left: 70px;
    padding-top: 15px;
    padding-right: 35px;
}

.can-expert .can-expert-item span.number-counter {
    background: var(--secondary-dark);
    display: inline-flex;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0%);
}

.can-expert .can-expert-item:nth-child(even) {
    flex-direction: row-reverse;
}

.can-expert .can-expert-item:nth-child(even) .content-box h6 {
    left: initial;
    right: 0px;
}

.can-expert .can-expert-outer {
    position: relative;
}

.can-expert .can-expert-outer::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    height: calc(100% - 40px);
    width: 1px;
    background: #12304C4D;
}

/* collaboration start */
.collaboration-rethought {
    padding: 100px 0px;
    background: url('../images/project-management/collaborate-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: var(--white);
}

.collaboration-rethought .lg-main-container {
    max-width: 948px;
}

.collaboration-rethought p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

/* industry experties */
.industry-ex-item h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 19.8px;
    text-align: center;
    margin-top: 15px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.industry-experience {
    padding: 90px 0px;
    text-align: center;
}

.industry-experience .industry-ex-item {
    border: 1px solid #DDDDDD;
    padding: 27px 20px;
    height: 100%;
}

/* project management end */
/* latest blog listing start */
.blog-listing-outer .blog-heading {
    text-align: center;
    margin-bottom: 40px;
}

.blog-listing-outer .blog-heading p {
    color: #35507C;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    margin-top: 12px;
}

.blog-listing-outer .blog-list-item .blog-list-thumb img {
    aspect-ratio: 3 / 2;
}

.blog-list-item .sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0px 10px;
}

.blog-list-item .sub-head span {
    color: #7F9B12;
    background: #f6f9e8;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.blog-list-item p {
    color: var(--light-grey-200);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin: 10px 0px;
}

.blog-list-item h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.blog-list-item a.read-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: right;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.blog-list-item a.read-button img {
    margin-left: 5px;
}

.blog-listing-outer .blog-list-item {
    margin-bottom: 30px;
}

.blog-listing-outer {
    padding: 100px 0px;
}

.blog-list-pagination .pagination {
    gap: 11px;
}

.blog-list-pagination .page-link {
    border: 1px solid var(--primary-dark);
    border-radius: 50% ! IMPORTANT;
    border-radius: 50% ! IMPORTANT;
    height: 50px;
    width: 50px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.blog-list-pagination .page-item.active .page-link {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* latest podcast */
.podcast-outer {
    padding: 80px 0px;
    background-color: var(--light-grey-100);
}

.podcast-outer h2 {
    text-align: center;
    margin-bottom: 35px;
}

.blog-list-item .podcast-video video {
    width: 100%;
    height: 256px;
    object-fit: fill;
}

.podcast-outer .blog-list-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.podcast-outer .blog-list-item .poscast-info {
    padding: 15px 20px 20px 20px;
}

.podcast-outer .blog-list-item .sub-head span {
    border-radius: 40px;
}

.podcast-outer .sub-head p {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* latest blog listing end */
/* blog details start */
.blog-details-big-thumb {
    padding: 110px 0px 100px;
}

.blog-details-infor {
    margin-top: -120px;
    z-index: 999;
}

.blog-details-infor .lg-main-container {
    background: var(--white);
    position: relative;
    padding: 40px;
    box-shadow: 1px 1px 11px 0px #ebebeb;
}

.blog-details-big-thumb h1 {
    font-weight: 800;
    font-size: 45px;
    line-height: 44px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.blog-details-big-thumb .blog-details-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0px;
}

.blog-details-big-thumb .blog-details-header ul {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8A8A8A;
}

.blog-details-big-thumb .blog-details-header ul.blog-share li:not(:first-child) a {
    background-color: var(--secondary-dark);
    padding: 10px 10px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-details-big-thumb .blog-details-header ul.blog-share li:first-child a {
    border: 1px solid #00000033;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    color: #656565;
    font-weight: 400;
    font-size: 14px;
    line-height: 8px;
}

.blog-details-infor h6 {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--light-secondary);
}

.blog-details-infor .blog-content-box {
    margin: 20px 0px;
}

.blog-details-infor .blog-content-box p,
.blog-details-infor .blog-content-box p a {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin-top: 6px;
    color: var(--light-grey);
}

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

.blog-details-infor .blog-content-box h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--secondary-dark);
    text-align: left !important;
}

.blog-details-infor .blog-content-box ol {
    padding-left: 18px;
}

.blog-details-infor .blog-content-box ol li {
    list-style: auto;
    margin: 6px 0px;
}

.blog-details-infor .blog-content-box ol li a {
    color: var(--primary-dark);
}

.blog-details-infor .blog-content-box h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-dark);
    line-height: 100%;
    margin-bottom: 10px;
}

.blog-details-big-thumb .blog-details-header ul.date-details li img,
.blog-details-big-thumb .blog-details-header ul.date-details li i {
    margin-right: 6px;
    font-size: 6px;
}

.blog-details-big-thumb .blog-details-header ul li {
    display: inline-flex;
    align-items: center;
}

/* blog details end */

/* micro consultancy start */
.pareto-principle {
    padding: 80px 0px;
    text-align: center;
}

.pareto-principle p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    margin-top: 25px;
    color: var(--light-secondary);
}

.consulting-process .content-list::after {
    display: none;
}

.consulting-process .content-list {
    padding-top: 0px;
    position: relative;
    margin-top: 0px;
}

.consulting-process .image-box {
    max-width: calc(100% - 35px);
}

.consulting-process .content-list::before {
    position: absolute;
    content: '';
    top: 90px;
    left: 50px;
    border-left: 1px dashed #a1a1a1;
    width: 1px;
    z-index: -1;
    height: calc(100% - 26%);
}

.consulting-process.project-procesdure-inner .content-list::before {
    height: calc(100% - 18%);
}

.project-procesdure-inner .content-list-item {
    position: relative;
}

.project-procesdure-inner .content-list-item::before {
    content: "\f107";
    position: absolute;
    left: 41px;
    bottom: -13px;
    height: 9px;
    width: 10px;
    font: normal normal normal 14px / 1 FontAwesome;
    color: var(--light-grey);
    font-size: 20px;
}

.project-procesdure-inner .content-list-item:last-child::before {
    display: none;
}

.consulting-process .content-list-item .choose-icon-round img {
    width: 73px;
    height: 73px;
    object-fit: contain;
    padding: 20px;
    /* border-radius: 50%; */
    /* border: 1px dashed #a1a1a1; */
}

.consulting-process .content-info {
    flex: 1;
}

.consulting-process .content-list-item .choose-icon-round {
    background: #fff;
    padding: 15px;
    box-shadow: 1px 1px 10px 0px #e4e4e4;
    border-radius: 50%;
    position: relative;
}

.consulting-process .content-list-item .choose-icon-round::after {
    content: '';
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #a1a1a1;
}

.consulting-process .content-list-item {
    align-items: flex-start;
    padding: 15px 0px;
}

.consulting-process .content-list-item:hover {
    border-color: transparent;
}

.micro-con-service .lg-main-container {
    margin: auto;
}

.micro-con-service img.services-thumb {
    width: 100%;
}

.micro-con-service a.service-info {
    position: relative;
    margin-top: -100px;
    min-height: 280px;
}

.customer-benefit .overview-item h6 {
    margin-top: 0;
    margin-bottom: 16px;
}

.build-item {
    margin: 24px 0px;
    height: calc(100% - 25px);
    border-radius: 10px;
    padding: 31px;
    background-color: #F4F4F480;
}

.build-item h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: var(--secondary-dark);
    margin: 15px 0px 8px;
}

.build-item p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--light-grey);
}

.building-block {
    padding: 80px 0px;
}

.our-offers .offer-heading {
    margin-bottom: 70px;
    text-align: center;
}

.our-offers .offer-heading p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--light-secondary);
}

.our-offers h2.global-heading.two-side-brder {
    margin-bottom: 15px;
}

.offer-item {
    border: 1px solid #DEDEDE;
    padding: 20px;
    border-radius: 10px;
    max-width: 25%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    transform: scale(1.04);
    background: #fff;
    position: relative;
    box-shadow: 1px 1px 13px 0px #d7d7d7;
    transition: all 0.3s ease-in-out;
}

.offer-item:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    position: relative;
    z-index: 2;
    transform: scale(1.08);
}

.offer-item span.popular-tag {
    background: var(--secondary-dark);
    color: #fff;
    position: absolute;
    right: 0;
    transform: rotate(45deg) translate(40px, -6px);
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    top: -8px;
    width: 130px;
    transition: all 0.3s ease-in-out;
}

.offer-item:hover span.popular-tag {
    background: white;
    color: #7918B5;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.offer-item h3 {
    font-weight: 700;
    font-size: 27px;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.offer-item p.short-des {
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--light-secondary);
    margin: 20px 0px;
}

.offer-item span.offer-price {
    font-weight: 700;
    font-size: 31px;
    line-height: 120%;
    color: var(--primary-dark);
    vertical-align: middle;
    text-transform: capitalize;
}

.offer-item li {
    font-weight: 400;
    font-size: 14px;
    line-height: 17.5px;
    color: var(--light-grey);
    margin: 20px 0px;
    padding-left: 35px;
    position: relative;
}

.offer-item li::after {
    position: absolute;
    content: "\f058";
    left: 0;
    top: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 20px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    height: 20px;
    width: 20px;
    color: var(--secondary-dark);
}

.offer-item ul {
    margin: 20px 0px;
    padding: 15px 0px;
    border-top: 1px solid #E5E5E5;
    position: relative;
}

.offer-item ul::after {
    content: '';
    left: 10px;
    top: 20px;
    border-left: 1px dashed #a1a1a1;
    position: absolute;
    width: 1px;
    height: calc(100% - 37px);
    z-index: -5;
}

.offer-item a.global-light-button {
    color: var(--secondary-dark);
}

.offer-item .offer-btn {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid #a1a1a1;
    padding-top: 25px;
}

.our-offers {
    padding: 50px 0px;
}

.offer-item:hover h3,
.offer-item:hover p,
.offer-item:hover span,
.offer-item:hover li,
.offer-item:hover li::after {
    color: var(--white);
}

.offer-item a.global-light-button img {
    filter: invert(1);
}

.offer-item:hover a.global-light-button img {
    filter: brightness(100);
}

.micro-con-service .our-service-item {
    padding-bottom: 0;
    margin-bottom: 20px;
}

.new-old-topic {
    padding: 40px 0px 60px;
}

.new-old-table table.table {
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.new-old-table table.table thead tr {
    background: var(--secondary-dark);
    color: var(--white);
}

.new-old-table table.table thead tr th:first-child {
    background-color: var(--primary-dark);
}

.new-old-table table.table th,
.new-old-table table.table td {
    height: 75px;
    vertical-align: middle;
    padding: 10px 24px;
}

.new-old-table .table>tbody tr th:first-child {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: #FFFFFF1A;
}

.new-old-table .table>tbody tr td:first-child {
    background-color: #F5F5F5;
}

.new-old-table .table>tbody tr td:nth-child(2) {
    background: #F5F5F5;
}

/* micro consultancy end */

/* ubuntu start */
.ubuntu-outer {
    padding: 80px 0px;
}

.ubuntu-outer h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--secondary-dark);
    margin-bottom: 25px;
}

.ubuntu-outer p {
    color: var(--light-grey);
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin: 20px 0px;
}

.ubuntu-outer .shape-content-box {
    text-align: center;
}

.ubuntu-outer .shape-content-box img {
    margin-top: 40px;
    padding-bottom: 40px;
}

.do-you-start-outer {
    padding-top: 50px;
}

.power-crowd {
    background: url('../images/ubuntu/power-croud-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
}

.core-element-ubuntu .core-element-head h2 {
    margin-bottom: 15px;
}

.core-element-ubuntu .core-element-head {
    margin-bottom: 60px;
    text-align: center;
}

.core-element-ubuntu .core-element-head p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    color: var(--light-grey);
}

.ubuntu-philosophies .philoshopy-head {
    text-align: center;
    margin-bottom: 40px;
}

.ubuntu-philosophies .philoshopy-head h2.global-heading {
    color: #12304C;
    margin-bottom: 15px;
}

.ubuntu-philosophies .philoshopy-head p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    color: var(--light-grey);
}

.pareto-principle.ubuntu-better-work-top {
    padding-bottom: 40px;
}

.ubuntu-better-work-top .lg-main-container {
    max-width: 900px;
}

.ubuntu-big-thumbnail-main h4 {
    font-weight: 800;
    font-size: 26px;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.ubuntu-big-thumbnail-main .blog-content-box p {
    margin-top: 14px;
}

.ubuntu-big-thumbnail-main .blog-content-box p strong {
    color: var(--secondary-dark);
}

.ubuntu-big-thumbnail-main .ubuntu-company-head,
.ubuntu-big-thumbnail-main .what-is-ubuntu {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.rpa-sticky .content-box p::before {
    height: 100%;
}

.ubuntu-big-thumbnail-main h2,
.ubuntu-big-thumbnail-main h4 {
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.ubuntu-big-thumbnail-main p,
.ubuntu-big-thumbnail-main p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    color: var(--light-grey);
}

/* ubuntu start */
/* ai automation start */
.automation-service .lg-main-container {
    margin: auto;
}

.automation-service .our-service-item img {
    width: 100%;
}

.automation-service a.service-info span {
    font-weight: 600;
    color: var(--secondary-dark);
}

.ubuntu-philosophies .table>thead tr th:first-child {
    white-space: nowrap;
}

.ubuntu-philosophies {
    padding-bottom: 0;
}

.ubuntu-philosophies img.philoshopi-curve {
    margin-top: 70px;
}

.automation-feature-list .content-list::after {
    display: none;
}

.automation-feature-list .image-box {
    padding: 100px 0px;
}

.automation-feature-list .content-list {
    padding: 0px;
    margin: 0;
}

.automation-feature-list .content-box {
    align-items: flex-start;
    gap: 20px;
}

.automation-feature-list .content-list::before {
    display: none;
}

.automation-feature-list .content-list-item:not(:last-child) {
    border-bottom: 1px dashed #a1a1a1;
}

.automation-feature-list::before {
    height: 50%;
}

.automation-feature-list .content-list-item {
    margin: 0px;
}

.why-choose-us.automation-feature-list {
    padding: 0 0 80px 0;
}

.automation-feature-list .image-box::after {
    top: 40px;
}

.automation-service a.service-info {
    position: relative;
    margin-top: -90px;
}

.our-partnes {
    padding: 80px 0px;
    background: #F1F1F1;
}

.our-partnes .partner-item {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 100%;
    box-shadow: 1px 1px 12px 4px #eaeaea;
}

/* ai automation end */

/* privacy policy start */
.privacy-policy-modal .modal-content {
    padding: 30px;
    text-align: center;
}

.privacy-policy-modal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    z-index: 1;
    padding: 0px;
    width: 25px;
    background: transparent;
}

.privacy-policy-modal .btn-close img {
    width: 25px;
    height: 25px;
}

.privacy-policy-modal .modal-content p {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    text-align: center;
    color: var(--light-grey);
    margin: 15px 0px;
}

.privacy-policy-modal .modal-content h1 {
    color: var(--secondary-dark);
    text-transform: capitalize;
    font-size: 30px;
    line-height: normal;
}

.privacy-policy-modal .modal-content h3 {
    font-size: 22px;
    line-height: normal;
    font-weight: 700;
}

.privacy-policy-modal .modal-buttons a {
    min-width: 215px;
    margin: 0px 10px;
}

/* privacy policy end */
/* success story start */
.success-story-page-main {
    padding: 80px 0px;
}

.success-story-page-main h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-dark);
}

.succes-story-outer .content-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.succes-story-outer .content-box h3 {
    font-weight: 800;
    font-size: 26px;
    line-height: 48px;
    margin: 20px 0px;
    color: var(--secondary-dark);
    text-transform: capitalize;
}

.succes-story-outer .content-box p {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    color: var(--light-grey);
}

.succes-story-outer .content-box h6 {
    font-weight: 600;
    color: var(--secondary-dark);
    font-size: 17px;
    line-height: 26px;
}

.succes-story-outer .row:nth-child(even) {
    flex-direction: row-reverse;
    margin: 80px 0px;
}

.succes-story-outer .row:nth-child(even) .image-box {
    text-align: right;
}

.succes-story-outer .content-box span:has(img) {
    background: #fff;
    padding: 15px;
    box-shadow: 1px 1px 10px 0px #e4e4e4;
    border-radius: 50%;
    display: inline-flex;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
}

.succes-story-outer .content-box span img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 10px;
    border-radius: 50%;
    border: 1px dashed #12304C99;
}

/* success story end */

/* sign up start */
.sign-up-outer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
}

.sign-up-form {
    flex: 0 0 auto;
    width: 45.66666667%;
    padding: 35px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-up-form form {
    margin-top: 30px;
}

.sign-up-form .form-group:has(.error-message) input {
    border-color: #ff000094;
}

.sign-up-thumb {
    background: url('../images/sign-up-bg.png')no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 54.33333333%;
    padding: 1.5rem;
    max-height: 100dvh;
    position: sticky;
    right: 0;
    top: 0;
}

.sign-up-form .form-box {
    max-width: 100%;
    margin: 35px 0px;
}

.sign-up-form .heading-part {
    display: flex;
    flex-wrap: wrap;
    /* gap: 15px; */
    justify-content: space-between;
    align-items: center;
}

.form-control {
    height: 57px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

.sign-up-form .form-box h2,
.sign-up-form .form-box h6 {
    text-align: center;
    margin: 4px 0;
}

.sign-up-form .form-box h2 span {
    color: var(--primary-dark);
    text-transform: uppercase;
}

.sign-up-form .form-box h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #7D899E;
}

.sign-up-form .form-box h6 a {
    color: #7D899E;
    font-weight: 400;
    font-size: 16px;
}

.heading-part p {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    text-align: right;
    color: #7D899E;
}

.sign-up-form .form-group {
    margin-bottom: 13px;
    position: relative;
}

span.eye-password {
    position: absolute;
    top: 49px;
    right: 15px;
    cursor: pointer;
    color: #A8A8A8;
}

span.eye-password i.fa-regular.fa-eye {
    display: none;
}

span.eye-password i.fa-regular.fa-eye-slash {
    display: block;
}

.sign-up-form .form-group span.fa {
    position: absolute;
    top: 52px;
    right: 14px;
    color: #A8A8A8;
    cursor: pointer;
}

.heading-part p a {
    color: var(--primary-dark);
}

input[type="Password"] {
    padding-right: 40px;
}

.sign-up-form label {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 12px;
    text-transform: capitalize;
    color: #333333;

}

.form-control::placeholder {
    color: #ADADAE;
}

label.form-check-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--light-secondary);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.sign-up-outer .form-group.form-check {
    margin: 30px 0px;
}

.sign-up-form .form-box button.btn {
    background-color: var(--primary-dark);
    color: var(--white);
    width: 100%;
    height: 59px;
    transition: all 0.3s ease-in-out;
}

.sign-up-form form button.btn:hover {
    background: #000;
}

.continue-with {
    margin: 40px 0px;
    text-align: center;
}

.continue-with h5 {
    max-width: max-content;
    margin: auto;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 14.5px;
    text-align: center;
    text-transform: capitalize;
    color: #212121;
}

.continue-with h5::after {
    content: '';
    right: -100%;
    border-top: 1px solid #DBDBDB80;
    position: absolute;
    width: 93%;
    height: 2px;
    top: 7px;
}

.continue-with h5::before {
    content: '';
    left: -100%;
    border-top: 1px solid #DBDBDB80;
    position: absolute;
    width: 93%;
    height: 2px;
    top: 7px;
}

.sign-login-button {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

.sign-login-button a {
    max-width: 49%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #212121;
    border: 1px solid #DBDBDB80;
    height: 55px;
    border-radius: 5px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.sign-login-button a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.sign-login-button a span img {
    margin-right: 5px;
}

/* sign up start */
/* robotics automation start */
.robotics-automation {
    padding: 80px 0px;
    text-align: center;
}

.robotics-automation .robo-auto-item {
    max-width: 20%;
    padding: 0px 15px;
    margin: 20px 0px;
    position: relative;
    width: 100%;
}

.robotics-automation h2 {
    margin-bottom: 30px;
}

.robo-auto-item-icon {
    width: 147px;
    height: 147px;
    background: #fff;
    border-radius: 50%;
    margin: 0px auto 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 11px 0px #dcdcdc;
}

.robo-auto-item-icon span {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
}

.robotics-automation .robo-auto-item h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 27px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    color: var(--secondary-dark);
    padding-bottom: 10px;
}

.robotics-automation .custom-row .robo-auto-item:not(:last-child)::after {
    background: url(https://berias.twebexponent.in/html/assets/images/rpa/robo-auto-after.png);
    height: 27px;
    content: '';
    width: 100%;
    position: absolute;
    right: -60%;
    top: 60px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.robotics-automation .robo-auto-item h3::after {
    content: '';
    width: 22px;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
}

.robotics-automation .robo-auto-item ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robotics-automation .robo-auto-item ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    color: var(--light-grey);
    margin: auto;
    display: inline-block;
    margin: 7px 0px;
}

.robotics-automation .robo-auto-item ul li::before {
    content: '';
    height: 5px;
    width: 5px;
    background-color: var(--light-grey);
    position: absolute;
    left: -11px;
    top: 9px;
    border-radius: 50%;
}

/* digital transformation start */
.digital-transformation-main {
    background: url('../images/services-bg.jpg')no-repeat;
    background-size: cover;
    text-align: center;
    background-position: center;
    padding: 80px 0px;
    color: var(--white);
}

.digital-transformation-main .digi-tran-heading {
    max-width: 1100px;
    margin: 0px auto 50px;
}

.digital-transformation-main p {
    font-weight: 300;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
}

.digital-transformation-main .digi-tran-heading h2 {
    margin-bottom: 15px;
}

.digi-trans-item {
    background: linear-gradient(216.54deg, rgba(255, 255, 255, 0.33) 0.06%, rgba(255, 255, 255, 0.05) 100%);
    padding: 47px 50px;
    border: 1px solid;
    border-radius: 6px;
    border-image-source: linear-gradient(217.33deg, rgba(255, 255, 255, 0.12) -1.17%, rgba(255, 255, 255, 0.3) 99.3%);
    height: calc(100% - 10px);
}

.circle-wrap {
    width: 150px;
    height: 150px;
    background: #e4e9f126;
    border-radius: 50%;
    margin: 0px auto;
}

.digi-trans-item p {
    margin-top: 30px;
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill-1,
.circle-wrap .circle .fill-2 {
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 50%;
}

.circle-wrap .circle .mask {
    clip: rect(0px, 150px, 150px, 75px);
}

.circle-wrap .inside-circle {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    line-height: 120px;
    text-align: center;
    margin-top: 13px;
    margin-left: 13px;
    color: white;
    background-color: #3f5872;
    position: absolute;
    z-index: 1;
    font-weight: 700;
    font-size: 2em;
}

/* color animation */
.mask .fill-1 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: #fff;
}

.mask.full-1,
.circle .fill-1 {
    animation: fill-1 ease-in-out 3s;
    transform: rotate(140deg);
}

@keyframes fill-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(140deg);
    }
}

/* 2nd bar */
.mask .fill-2 {
    clip: rect(0px, 75px, 150px, 0px);
    background-color: #fff;
}

.mask.full-2,
.circle .fill-2 {
    animation: fill-2 ease-in-out 3s;
    transform: rotate(95deg);
}

@keyframes fill-2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(95deg);
    }
}

/* fast conversion */
.fast-conversion {
    padding: 80px 0px 15px;
}

.fast-conversion .content-box {
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    align-items: flex-start;
}

.fast-conversion .content-box p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: var(--light-grey);
}

.fast-conversion img.fast-con-curve {
    margin-top: 60px;
}

/* robotics workforce */
.robotics-workforce {
    padding: 80px 0px;
    text-align: center;
}

.robotics-workforce h2 {
    margin-bottom: 40px;
}

.owl-carousel .owl-item .robo-work-item img {
    width: auto;
    margin: auto;
}

.robo-work-item h4 {
    font-weight: 700;
    margin-top: 20px;
    font-size: 18px;
    line-height: 19.8px;
    text-align: center;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.robo-work-item {
    border: 1px solid #DDDDDD;
    padding: 26px 20px;
    width: 96%;
    margin: auto;
    background-color: var(--white);
}

.robot-workSlider .owl-nav {
    position: absolute;
    width: 100%;
    justify-content: space-between;
    display: flex;
    z-index: -6;
    top: 41%;
}

.robot-workSlider .owl-nav button.owl-prev {
    position: relative;
    left: -20px;
}

.robot-workSlider .owl-nav button.owl-next {
    position: relative;
    right: -20px;
}

/* robotics automation end */

/* mini header */
.mini-top-navbar {
    padding: 20px 0px;
    box-shadow: 2px 1px 17px 1px #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffff;
}

.mini-top-navbar .custom-row {
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.mini-top-navbar .user-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mini-top-navbar .user-part {
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: right;
}

.mini-footer {
    text-align: center;
    padding: 20px 0px;
    box-shadow: -2px -8px 8px 1px #f3f3f3;
    background-color: white;
}

.mini-top-navbar .user-part h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #4B4B4B;
}

.mini-top-navbar .user-part h6 {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #656565;
    margin-top: 5px;
}

.user-info {
    border: 1px solid #F0F0F0;
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.update-bell-icon span {
    position: absolute;
    background: red;
    color: var(--white);
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1px;
    top: -1px;
    right: -8px;
}

.user-info .dropdown ul.dropdown-menu {
    border: none;
    box-shadow: 0px 1px 4px 0px #c9c9c9;
}

.user-info .dropdown ul.dropdown-menu {
    width: 295px;
    padding: 8px;
    overflow-y: auto;
    max-height: 300px;
}

.user-info h5.notification-user {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}

.user-info p.notification-msg {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 18px;
}

.user-info span.notification-time {
    font-size: 12px;
    color: #919aa3;
}

.user-info .media img {
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 5px 10px 0 rgba(43, 43, 43, .2);
    box-shadow: 0 5px 10px 0 rgba(43, 43, 43, .2);
    width: 40px;
    margin-right: 10px;
}

.user-info .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 9px 0px;
}

.user-info ul li:not(:first-child) {
    border-top: 1px solid #dedede;
}


/* mini header end */


/* micro consulting basic info start  */
.max-800-container {
    max-width: 800px;
    width: 100%;
    margin: auto;
    background: #fff;
}

.max-1065-container {
    max-width: 1065px;
    width: 100%;
    margin: auto;
    background: #fff;
}

.max-1300-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    background: #fff;
}

.expert-advice {
    padding: 80px 0px;
}

.shadox-box {
    box-shadow: 2px 1px 17px 1px #e5e5e5;
}

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

.light-watermark-bg {
    background: url('../images/light-watermark-bg.png')no-repeat;
    background-position: center;
    background-size: cover;
}

.expert-advice-box {
    max-width: 700px;
    margin: auto;
    padding: 70px 30px 40px;
}

.top-inner-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.top-inner-process-header h2 {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.top-inner-process-header p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    text-transform: capitalize;
    color: #7D899E;
    max-width: 428px;
    margin: auto;
}

.micro-process form .form-group {
    margin: 7px 0px;
}

.micro-process form .form-group.double-btn {
    margin-top: 30px ! IMPORTANT;
}

.form-heading h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.micro-process button.btn.bg-light-green-btn {
    height: 59px;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
}

form .form-select {
    height: 57px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
}

form .form-select:focus {
    border-color: #ced4da;
}

.multiple-check-box,
.multiple-radio-box {
    display: flex;
    align-items: center;
    gap: 6px 20px;
    flex-wrap: wrap;
}

.multiple-radio-box .form-check {
    padding-left: 0px;
}

textarea.form-control {
    min-height: 123px;
    resize: none;
    padding: 11px;
}

.micro-process label.form-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: #333333;
    margin-bottom: 10px;
    width: 100%;
}

.form-group.double-btn button.bg-light-green-btn.left-small {
    max-width: 60px;
}

.form-group.double-btn button.bg-light-green-btn {
    flex: 1;
}

.form-group.double-btn {
    display: flex;
    gap: 20px;
}

.choose-category .form-group {
    text-align: center;
}

.choose-category label.btn.btn-outline-primary {
    background: #EFF3F699;
    height: 96px;
    width: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0px auto 8px;
    border: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--blue-900) !important;
}

.btn-check:checked+.btn img,
.btn.active img,
.btn.show img,
.btn:first-child:active img,
:not(.btn-check)+.btn:active img {
    filter: brightness(100);
}

.choose-category label.form-label {
    margin-bottom: 0px;
}

.consulting-consaltant .expert-advice-box {
    max-width: 1000px;
}

.consultant-item {
    border: 1px solid #00000012;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0px;
    height: calc(100% - 5px);
}

.consultant-item .top-bio {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.consultant-item .top-bio .image-box {
    width: 89px;
}

.consultant-item .top-bio h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.consultant-item .top-bio h6 {
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #7D899E;
    margin: 6px 0px;
}

.consultant-item .top-bio li {
    margin: 4px 0px;
}

.consultant-item .top-bio ul li {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #31353B;
}

.consultant-item .top-bio ul li img {
    margin-right: 10px;
}

.consultant-item .top-bio ul li a {
    color: #31353B;
}

.consultant-buttons {
    display: flex;
    gap: 5px;
    margin-top: 15px;
    border-top: 1px solid #00000012;
    padding-top: 15px;
}

.consultant-item {
    border: 1px solid #00000012;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0px;
}

.consultant-buttons a {
    font-size: 13px;
    padding: 4px 4px;
    flex: 1;
}

.content-bio-details .content-bio-details {
    padding: 30px;
}

.content-bio-details .top-bio-thumb {
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.content-bio-details {
    padding: 30px;
}

.content-bio-details .bottom-bio-cntn p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-transform: capitalize;
    color: #7D899E;
}

.content-bio-details .bottom-bio-cntn h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 48px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.content-bio-details .top-bio-thumb h6 {
    font-family: Public Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #7D899E;
    margin: 5px 0px;
}

.content-bio-details .top-bio-thumb ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.content-bio-details .top-bio-thumb ul li,
.content-bio-details .top-bio-thumb ul li a {
    color: #31353B;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
}

.content-bio-details .top-bio-thumb ul li img {
    margin-right: 6px;
}

.content-bio-details .top-bio-thumb h2 {
    margin: 18px 0px 12px;
}

.content-bio-details .top-bio-thumb h6 span {
    color: #31353B;
}

a.click-to-left-button {
    background: #fff;
    position: relative;
    left: -50px;
    color: #000;
    height: 34px;
    width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #E4E3E3;
    box-shadow: 2px 1px 17px 1px #e5e5e5;
}

.choose-price-inner {
    max-width: 1100px;
    margin: auto;
}

.choose-price-inner h2 {
    margin-bottom: 70px;
    text-align: center;
}

.choose-price-inner {
    padding-bottom: 60px;
}

.consulting-payment .payment-details {
    max-width: calc(55% - 22px);
    padding: 30px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
}

.consulting-payment .payment-details h3 {
    font-weight: 800;
    font-size: 28px;
    line-height: 48px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--secondary-dark);
}

.consulting-payment .content-box {
    max-width: 45%;
    padding: 30px;
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--secondary-dark);
}

.consulting-payment .custom-row {
    gap: 20px;
    align-items: flex-start;
}

.consulting-payment .payment-cards {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    text-align: center;
}

.consulting-payment .form-group {
    margin: 10px 0px;
}

.consulting-payment .payment-cards .form-group {
    border: 1px solid #E6E7E8;
    padding: 15px 9px;
    border-radius: 15px;
    flex: 1;
}

.consulting-payment .form-group label.form-label {
    margin-bottom: 0px;
    font-family: Ysabeau;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--black);
    margin-top: 5px;
    width: 100%;
}

.consulting-payment .payment-cards label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.consulting-payment .payment-cards input[type="radio"] {
    display: none;
}

.consulting-payment .payment-cards .form-group:has(input[type="radio"]:checked) {
    border-color: var(--primary-dark) !important;
}

.consulting-payment button.bg-light-green-btn {
    width: 174px;
    height: 59px;
    font-family: Public Sans;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
}

.consulting-payment .content-box .top-heading-part {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.consulting-payment .content-box .top-heading-part h3 {
    font-weight: 700;
    font-size: 27px;
    line-height: 120%;
    vertical-align: middle;
    text-transform: capitalize;

}

.consulting-payment .content-box h6 {
    margin: 20px 0px;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    text-transform: capitalize;
}

.consulting-payment .content-box ul {
    border-top: 1px solid #FFFFFF3B;
}

.consulting-payment .content-box ul li {
    margin: 17px 0px;
    position: relative;
    padding-left: 22px;
}

.consulting-payment .content-box ul li::before {
    content: '';
    height: 14px;
    width: 14px;
    position: absolute;
    left: 0;
    top: 6px;
    background: url('../images/round-cyan-round.png')no-repeat;
    background-size: contain;
    background-position: top left;
}

/* micro consulting basic info end  */

/* automation process */
.automation-part {
    padding: 35px;
    background-color: var(--white);
}

.automation-part .top-head-part {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.automation-part p {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    text-transform: capitalize;
    color: #7D899E;
}

.automation-part .top-head-part h2 {
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.automation-part .top-sub-head h4 {
    font-weight: 800;
    font-size: 22px;
    line-height: 48px;
    text-transform: capitalize;
}

.automation-part .top-sub-head {
    margin-top: 14px;
}

.process-data {
    margin-top: 50px;
    overflow-x: auto;
}

.process-data tbody tr td:first-child {
    width: 350px;
    border-radius: 12px 0 0 12px;
}

.process-data tbody tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.table-head-left {
    display: flex;
    gap: 7px;
}

.table-head-left {
    display: flex;
    gap: 7px;
    border-right: 1px solid #00000033;
    padding-right: 30px;
    margin-right: 40px;
}

.process-data table.table {
    vertical-align: middle;
}

.process-data table.table tr,
.process-data table.table td,
.process-data table.table th {
    border: none;
    padding: 16px 5px;
}

.process-data tbody tr td {
    background: #F8F9FA;
}

.process-data table.table tr {
    margin: 10px 0;
    padding: 10px 0;
}

.process-data table.table tr:nth-child(even) td {
    background: #ffffff;
}

.botom-title {
    text-align: center;
    margin-top: 80px;
}

.botom-title a {
    text-decoration: underline;
    cursor: pointer;
}

.botom-title a:hover {
    color: var(--secondary-dark);
}

.process-next-button {
    text-align: right;
    margin-top: 30px;
}

.process-next-button a {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    height: 59px;
    width: 136px;
}

.process-data table.table th {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    color: #333333;
}

.language-part-process select {
    border: none;
}

.submission-modal .submission-logo {
    margin-bottom: 25px;
    width: 145px;
}

.process-next-button.multiple-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-next-button .left-small {
    width: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-data input[type="radio"] {
    height: 19px;
    width: 19px;
}

.process-data input[type="radio"]:hover {
    cursor: pointer;
}

/* comment area start */
.single-post .comments-area {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 90px;
    background: var(--white);
    position: relative;
    padding: 40px;
    box-shadow: 1px 1px 11px 0px #ebebeb;
    margin-top: 30px;
}

.single-post .comment-form p {
    margin: 10px 0px;
}

.single-post .comment-form input,
.single-post .comment-form textarea {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
}

.single-post input.submit {
    background: var(--primary-dark);
    border: none;
    color: #fff;
    height: 50px;
    border-radius: 8px;
}

.single-post h3.comment-reply-title {
    font-weight: 800;
    line-height: 44px;
    text-transform: capitalize;
}

.blog-details-infor footer.entry-footer a {
    color: var(--primary-dark);
    font-weight: 500;
}

.single-post nav.navigation.post-navigation .nav-links {
    max-width: 1240px;
    margin: auto;
}

.single-post nav.navigation.post-navigation .nav-links a {
    color: var(--primary-dark);
}

p.logged-in-as a {
    color: var(--primary-dark);
}

/* comment area end */

/* cicle percentage */
.digi-trans-item .progressbar-content {
    top: 1rem;
    right: 5vw;
    z-index: 2;
    width: 100%;
}

.submission-id {
    margin-top: 20px;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
}

.digi-trans-item .progressbar-content p {
    color: white;
    font-size: 1.5vw;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    position: absolute;
}

.digi-trans-item .progressbar {
    display: inline-block;
    width: auto;
}

.digi-trans-item .circle {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    text-align: center;
    color: white;
}

.digi-trans-item .circle:after {
    width: 120px;
    height: 120px;
    content: "";
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
}

.digi-trans-item .circle canvas {
    vertical-align: middle;
    border-radius: 50%;
}

.digi-trans-item .circle span.percentage-number {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -31px 0 0 -90px;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 31px;
    display: flex;
    justify-content: center;
}

.digi-trans-item .circle strong i {
    font-style: normal;
    font-size: 0.6em;
    font-weight: normal;
}

.digi-trans-item .circle span {
    display: block;
    color: white;
    margin-top: 12px;
}

/* cicle percentage end */

/* image field start */
#picture__input {
    display: none;
}

.additional-form-conultant .picture {
    width: 197px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border: 1px solid #ced4da;
    cursor: pointer;
    font-family: sans-serif;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    outline: none;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    margin-top: 4px;
}

.additional-form-conultant span.picture__image,
.additional-form-conultant span.picture__image img {
    width: 100%;
    text-align: center;
    max-width: max-content;
}

.additional-form-conultant .picture:hover {
    color: #777;
    background: #ccc;
}

.additional-form-conultant .select2-container .select2-search--inline .select2-search__field {
    min-height: 35px;
}

.additional-form-conultant .picture:active {
    border-color: turquoise;
    color: turquoise;
    background: #eee;
}

.additional-form-conultant .picture:focus {
    color: #777;
    background: #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.additional-form-conultant .picture__img {
    max-width: 100%;
}

/* image field end */

.multiple-check-box .form-check {
    width: 48% !important;
}

.multiple-radio-box .form-check {
    width: 48% !important;
}

.airesponse {
    font-size: 13px;
    line-height: 18px;
    color: #646464;
    font-weight: 500;
}

span.CardField-number.CardField-child {
    padding: 10px;
    border: 1px solid #EAE7E7;
    border-radius: 4px;
    width: 100%;
}

/* #payment-form iframe {
    height: 100% !important;
}

.CardField-input-wrapper {
    padding: 10px !important;
    border: 1px solid #999999 !important;
    width: 92% !important;
    border-radius: 4px !important;
}

#payment-form iframe input {
    padding: 10px !important;
    border: 1px solid #999999 !important;
    width: 92% !important;
    border-radius: 4px !important;
} */


/* #card-element {
    border: 1px solid #ccc;
    padding: 12px 16px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 10px;
}

#card-element.StripeElement--focus {
    border-color: #007bff;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

#card-element.StripeElement--invalid {
    border-color: #dc3545;
} */

#card-errors {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 8px;
}
.stripe-input {
    border: 1px solid #ccc;
    padding: 12px 14px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease;
}

.StripeElement--focus {
    border-color: #007bff;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

.StripeElement--invalid {
    border-color: #dc3545;
}

.tab-buttons.custom-tab-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.custom-tab-buttons button.tab-btn {
    padding: 0px 25px;
    line-height: 40px;
    width: 100%;
    border-radius: 4px;
}

.custom-tab-buttons button.tab-btn.active {
    background-color: #a2c617;
}
.get-touch-form .form-check span {
    display: inline-flex;
    width: max-content;
    align-items: baseline;
    margin-right: 8px;
}
.get-touch-form .form-check p span.wpcf7-list-item.first.last {
    white-space: nowrap;
    position: relative;
    left: 24px;
}
.get-touch-form .form-check p span.wpcf7-not-valid-tip {
    position: absolute;
    top: -19px;
}
.get-touch-form .form-check span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.form-check-input{
    border: 0px;
    background-color: transparent;
}

/* privacy policy start */
section.common-page-content {
    padding: 80px 0px;
}
.common-page-content p {
    padding: 6px 0px;
}
.common-page-content a{
    color: var(--primary-dark);
}
.common-page-content p:has(strong) {
    margin-top: 10px;
    margin-bottom: -5px;
}
/* privacy policy end */

div#userDropdownMenu {
    margin-top: 20px;
    border: 1px solid #ededed;
    border-radius: 0px;
    margin-left: -85px;
}

.scheduleaCall {
    text-align: center;
    width: 100%t;
    align-items: center;
    padding: 50px;
    /* box-shadow: 3px 3px 7px #00000033; */
    height: auto;
}

.containerWrap {
    /* height: 78vh;
    display: flex;
    align-items: center; */
    /* justify-content: center; */
}



.our-philosophy-outer {
    padding: 50px 0px;
    text-align: center;
    background-color: #f6f6f6;
}
.our-philosophy-outer p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    margin-top: 25px;
    color: var(--light-secondary);
}
.about-us-outer .content-box ul {
    padding-left: 20px;
}
.about-us-outer .content-box ul li {
    color: var(--light-grey);
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    list-style: outside;
    margin-bottom: 12px;
}
.about-us-outer .content-box ul li:last-child {
    margin-bottom: 0;
}
.our-mission-outer {
    padding: 50px 0px;
    text-align: center;
    background-color: #f6f6f6;
}
.our-mission-outer p {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    margin-top: 25px;
}
.our-mission-outer .content-box ul {
    padding-left: 20px;
}
.our-mission-outer .content-box ul li {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    list-style: outside;
    margin-bottom: 12px;
}
.our-mission-outer .content-box ul li:last-child {
    margin-bottom: 0;
}
.our-mission-outer .content-box.text-left p, .our-mission-outer .content-box.text-left ul li {
    text-align: left;
}
.our-philosophy-outer.white-bkg {
    background-color: transparent;
}

ol.comment-list {
    padding: 0px;
    margin: 20px 0;
}

.comment-author.vcard {
    margin-bottom: 10px;
}

.comment-metadata {
    margin-bottom: 5px;
}

em.comment-awaiting-moderation {
    margin-bottom: 10px;
}

#post-3758 section.common-page-content {
    overflow: hidden;
}

@media screen and (max-width: 990px) {
    .consulting-payment .custom-row {
        display:  block !important;
    }
    .consulting-payment .content-box {
        max-width: 100%;
    }
    .consulting-payment .payment-details {
        max-width: calc(100% - 0px);
    }
}

.blog-content-box form {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 90px;
    background: var(--white);
    position: relative;
    padding: 40px;
    box-shadow: 1px 1px 11px 0px #ebebeb;
    margin-top: 30px;
}

/* .blog-content-box form.wpcf7-form.init input {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
} */
 
.blog-content-box form input {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.blog-content-box form input[type="checkbox"] {
    width: auto !important;
}

.blog-content-box form textarea {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #A2C617 !important;
    border: none !important;
    color: #fff !important;
    height: 50px !important;
    border-radius: 8px !important;
    width: 100% !important;
    margin-top: 30px !important;
}

div#page-lock {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 999999;
}
div#page-lock img {
    width: 50px;
    height: 50px;
}

.create-an-account a {
    color: #a2c617 !important;
    font-weight: 500 !important;
}

/* .blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
} 

.blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.blog-content-box form.wpcf7-form.init input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
} */



.blog-content-box form input[type="submit"] {
    width: 100%;
    margin: 5px 0px;
    border: none;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
} 

.aiResponseArea {
    width: 60%;
    text-align: center;
    margin: 66px auto;
    padding: 75px 95px 95px 95px;
    box-shadow: 0px 0px 55px #0000000f;
    border-radius: 10px;
    background-color: white;
}

h1.h1-1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 32px;
}

.thankyou-div-1 {
    background-color: #F2F7DF;
    padding: 52px 32px;
    border-top: 1.5px solid #87A611;
    border-radius: 10px;
    margin-bottom: 32px;
    position: relative;
}

.thankyou-div-1 p a {
    color: #87A611;
}

.thankyou-div-1 p + p {
    margin-top: 20px;
}

.thankyou-div-1 img.email-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
}

.mail-heading a {
    color: #87A611;
}

.thankyou-h-1 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 800;
    color: #12304C;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.thankyou-h-1 span {
    color: #87A611;
}

.thankyou-h-2 {
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
    color: #12304C;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.thankyou-div-2 p {
    font-size: 16px;
    line-height: 29px;
    color: #687889;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.thankyou-div-2 p + p {
    margin-bottom: 42px;
}

.not-found-p {
    font-size: 40px;
    line-height: normal;
}

img.bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ai-generated-div {
    margin-top: 20px;
    padding: 20px;
    background-color: #9ebf1f24;
    border: 1px solid #98ba15;
    border-radius: 10px;
}

.ai-generated-div h3.h1-1 {
    margin-bottom: 10px;
}

.ai-generated-div a.global-light-button {
    margin-top: 20px;
}

.beforeaiResponse a {
    color: #87A611;
}

.beforeaiResponse.div-001 h6 {
    font-size: 22px;
    line-height: 34px;
    font-weight: 600;
    color: #12304C;
    margin-bottom: 10px;
    text-transform: capitalize;
    margin-top: 10px;
}

.aiResponseArea .global-light-button {
    padding: 10px 46px;
}

.aiResponseArea img.submission-logo {
    margin-bottom: 22px;
}

.hero-buttons a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.hero-buttons button {
    margin-left: 10px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .aiResponseArea {
        width: 85%;
        padding: 70px;
    }
}

@media (max-width: 880px) {
    .aiResponseArea {
        width: 100%;
        padding: 70px;
    }
}

@media (max-width: 770px) {
    .aiResponseArea {
        padding: 30px;
    }
    .thankyou-h-1 {
        font-size: 28px;
        line-height: 38px;
    }
    .thankyou-h-2 {
        font-size: 21px;
        line-height: 30px;
    }
    .thankyou-div-1 {
        padding: 52px 18px;
        margin-bottom: 25px;
    }
}

@media (max-width: 550px) {

}

@media (max-width: 480px) {

}
.text-right {
    text-align: right;
}
.forgot_password {
	color: var(--primary-dark);
	font-weight: 500;
}