:root {
    --theme-primary: #000000;
    --theme-primary-light: rgb(136, 136, 136);
    --theme-secondary: #2b75e2;
    --theme-secondary-light: rgb(145, 213, 245);
    --theme-blue: #2559A6;
    --theme-black: #1A1818;
    --theme-gray: #3E5468;
    --theme-green: #2E934D;
    --theme-red: #D53732;
    --theme-yellow: #FB8B0A;
    --theme-light-red: #F6E4E7;
    --theme-light-green: #EEF5E3;
    --theme-light-blue: #EEF0F9;
    --theme-light-orange: #FFF5EA;
    --theme-light-cyan: #E9F5F3;
    --theme-light-gray: #8E8E8E;
    --theme-text-red: #9E0C4D;
    --theme-text-green: #8ABB38;
    --theme-text-blue: #3A6FB6;
    --theme-text-orange: #fb8b0a;
    --theme-text-cyan: #57bcb5;
    --theme-text-dark-orange: #D53732;
    --shadow-blue: 0px 0px 20px #3A6FB680;
    --shadow-green: 0px 0px 20px #57A87080;
    --shadow-red: 0px 0px 20px #DD5F5B80;
    --shadow-cyan: 0px 0px 20px #57BCB580;
    --shadow-orange: 0px 0px 20px #FBA23B80;
    --shadow-light-orange: 0px 0px 20px #FB8B0A80
}

img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out
}

img:not(.lazy) {
    opacity: 1
}

:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1.25s
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(15%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

[data-animation] {
    opacity: 0;
    -webkit-animation-timing-function: var(--animation-timing-function);
    animation-timing-function: var(--animation-timing-function);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: var(--animation-duration);
    animation-duration: var(--animation-duration);
    will-change: transform, opacity
}

.animations-disabled, .animations-disabled [data-animation] {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

.slideInLeft {
    -webkit-animation-name: slideInleft;
    animation-name: slideInleft
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

.zoomReverseIn {
    -webkit-animation-name: zoomReverseIn;
    animation-name: zoomReverseIn
}

.flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

.flipOutY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-direction: reverse
}

.heading::selection {
    background: transparent
}

.thumbnail-container, .thumbnail_container {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.thumbnail {
    margin: 0;
    display: block;
    padding: 0;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    background: 0 0
}

.thumbnail img {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background-color: #2b3a4a;
    border-radius: 10px
}

.cookie_popup {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background-color: rgb(30 31 31 / 80%);
    padding: 20px;
    border-radius: 10px;
    z-index: 99999;
    width: 475px;
    filter: drop-shadow(2px 4px 6px black)
}

.cookie_popup .cookie_content p {
    color: #fff;
    line-height: 150%
}

.cookie_popup .cookie_btns a {
    padding: 10px 20px
}

.stickyInnerSecImg {
    position: sticky;
    top: 130px
}

.theme-bg-blue {
    background-color: var(--theme-blue)
}

.theme-text-light-blue {
    color: var(--theme-light-blue)
}

.theme-bg-light-blue {
    background-color: var(--theme-light-blue)
}

.theme-light-red {
    background-color: var(--theme-light-red)
}

.theme-light-green {
    background-color: var(--theme-light-green)
}

.theme-light-blue {
    background-color: var(--theme-light-blue)
}

.theme-light-orange {
    background-color: var(--theme-light-orange)
}

.theme-dark-orange {
    background-color: var(--theme-light-orange)
}

.theme-light-cyan {
    background-color: var(--theme-light-cyan)
}

.theme-text-red {
    color: var(--theme-text-red)
}

.theme-text-red2 {
    color: var(--theme-red)
}

.theme-text-green {
    color: var(--theme-text-green)
}

.theme-text-green2 {
    color: var(--theme-text-green)
}

.theme-text-blue {
    color: var(--theme-text-blue)
}

.theme-text-orange {
    color: var(--theme-text-orange)
}

.theme-text-dark-orange {
    color: var(--theme-text-dark-orange)
}

.theme-text-cyan {
    color: var(--theme-text-cyan)
}

.shadow-blue {
    box-shadow: var(--shadow-blue)
}

.shadow-green {
    box-shadow: var(--shadow-green)
}

.shadow-red {
    box-shadow: var(--shadow-red)
}

.shadow-cyan {
    box-shadow: var(--shadow-cyan)
}

.shadow-orange {
    box-shadow: var(--shadow-orange)
}

body {
    font-family: "Poppins", sans-serif !important
}

a {
    text-decoration: none;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

p {
    color: var(--theme-gray);
    font-weight: 400
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-black)
}

.section-padding {
    padding: 50px 0
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 2vw 0
    }
}

@media (max-width: 479px) {
    .cookie_popup {
        left: 0;
        padding: 15px;
        width: 95%;
        margin: 0 auto;
        right: 0
    }

    .cookie_popup p {
        font-size: 14px
    }
}

.container {
    position: relative;
    z-index: 1
}

.heading {
    font-size: 14px;
    color: var(--theme-blue);
    font-weight: 600;
    padding: 10px 30px;
    background-color: var(--theme-light-blue);
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px
}

.title {
    color: var(--theme-black);
    font-weight: 600
}

.p_sec {
    font-size: 18px
}

.p_list {
    font-size: 16px
}

.blue-box-shadow {
    box-shadow: 0px 0px 20px #3A6FB680
}

.green-box-shadow {
    box-shadow: 0px 0px 20px #57A87080
}

.red-box-shadow {
    box-shadow: 0px 0px 20px #DD5F5B80
}

.yellow-box-shadow {
    box-shadow: 0px 0px 20px #FBA23B80
}

@media (min-width: 1024px) {
    .title {
        font-size: 2.0vw;
        max-width: 85%;
        margin: 0 auto 20px
    }
}

@media (max-width: 1366px) {
    .heading {
        font-size: 13px;
        color: var(--theme-blue);
        font-weight: 600;
        padding: 8px 20px
    }

    .p_sec {
        font-size: 16px
    }

    .p_list {
        font-size: 14px
    }
}

@media (max-width: 1024px) {
    .p_sec {
        font-size: 15px
    }

    .p_list {
        font-size: 13px
    }
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--theme-black);
    --bs-btn-border-color: var(--theme-black);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--theme-black);
    --bs-btn-hover-border-color: var(--theme-black);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--theme-black);
    --bs-btn-active-border-color: var(--theme-black);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--theme-black);
    --bs-btn-disabled-border-color: var(--theme-black)
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6c757d;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d
}

.btn {
    padding: 6px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -mos-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all
}

.btn-primary {
    color: var(--theme-black);
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-primary:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    bottom: 0;
    background-color: var(--theme-black);
    z-index: -1
}

.btn-primary:hover:after {
    height: 100%
}

.btn-primary:hover {
    color: #ffffff;
    background-color: transparent
}

.btn-primary svg {
    margin-left: 10px
}

.btn-primary:hover svg circle {
    fill: #ffffff
}

.btn-primary:hover svg path {
    fill: #1a1818
}

.btn-secondary {
    color: #ffffff;
    background-color: var(--theme-black);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-secondary:after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: 0;
    left: 0;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    bottom: 0;
    background-color: #ffffff;
    z-index: -1
}

.btn-secondary:hover:after {
    height: 100%
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--theme-black)
}

.btn-secondary svg {
    margin-left: 10px
}

.btn-secondary:hover svg circle {
    fill: #1a1818
}

.btn-secondary:hover svg path {
    fill: #ffffff
}

@media (max-width: 1366px) {
    .btn {
        font-size: 14px
    }
}

.btnText {
    font-size: 14px;
    color: var(--theme-black);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    position: relative
}

.btnText:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    left: 0;
    bottom: -2px;
    background-color: var(--theme-black)
}

.btnText:hover:before {
    width: 100%
}

@media (max-width: 1199px) {
    .btnText:before {
        width: 100%
    }
}

label {
    font-size: 14px;
    color: var(--theme-gray)
}

.form-control::placeholder {
    color: var(--theme-gray);
    opacity: 0.25
}

.form-group {
    margin-bottom: 20px
}

.form-control {
    border: 0;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px
}

.form-control:focus {
    box-shadow: none
}

.form-label {
    font-size: 14px;
    color: var(--theme-gray);
    margin-bottom: 5px
}

textarea {
    resize: none
}

@media (max-width: 767px) {
    .form-label {
        font-size: 13px;
        font-weight: 500
    }
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 35px
}

.owl-carousel .owl-dots .owl-dot span {
    height: 8px;
    width: 8px;
    border-radius: 100px;
    background-color: var(--theme-black);
    opacity: 0.25;
    display: inline-block;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -mos-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all
}

.owl-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
    width: 30px
}

.owl-carousel .owl-dots .owl-dot + .owl-dot {
    margin-left: 8px
}

.main-loader {
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    background-color: rgb(255 255 255 / 90%);
    flex-direction: column;
    top: 0
}

.main-loader.loader__up {
    visibility: hidden;
    opacity: 0;
    transition: var(--transition_05s);
    -webkit-transition: var(--transition_05s);
    -moz-transition: var(--transition_05s);
    -ms-transition: var(--transition_05s)
}

.main-loader .loader-gif img {
    max-width: 100px
}

.menu-hovered {
    position: relative
}

.menu-hovered:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -mos-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all;
    z-index: 9
}

header .navbar {
    padding: 0;
    box-shadow: 0px 6px 6px #0000000F
}

header .navbar .collapse {
    justify-content: center
}

header .navbar .collapse .dropdown {
    position: static
}

header .navbar .nav-link a {
    color: var(--theme-black)
}

header .navbar.navbar-expand-lg .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-black);
    padding: 35px 25px
}

header .header-logo, header .header-btns {
    padding: 28px 0;
    display: inline-block
}

header .navbar .nav-link img {
    width: 12px;
    height: 8px
}

.dropdown-toggle::after {
    content: none
}

header .navbar.navbar-expand-lg .nav-item:hover .nav-link, header .navbar.navbar-expand-lg .nav-item:hover .nav-link a {
    color: var(--theme-blue)
}

header .navbar .nav-item .dropdown-menu .subMenuTitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-black);
    margin-bottom: 5px
}

header .navbar .nav-item .dropdown-menu .menu-icon svg {
    fill: var(--theme-black);
    opacity: 0.75;
    margin-top: -5px;
    width: 18px;
    height: 18px
}

header .navbar.navbar-expand-lg .nav-item:hover .nav-link .menu-icon svg {
    fill: var(--theme-blue)
}

header .navbar .nav-item .dropdown-menu .subMenuTitle + p {
    font-size: 12px;
    color: #5a5a5a;
    margin: 0
}

.navbar-nav .dropdown-menu {
    clear: both
}

.dropdown-menu a.btn-text {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--theme-blue)
}

.dropdown-menu a.btn-text svg {
    margin-left: 5px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    fill: var(--theme-blue)
}

.dropdown-menu a.btn-text:hover {
    color: var(--theme-gray)
}

.dropdown-menu .dropdown-menu-inner a.btn-text:hover svg {
    transform: rotate(45deg);
    fill: var(--theme-gray) !important
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto
    }
}

.dropdown-menu a {
    text-decoration: none;
    color: #000000
}

.dropdown-menu a .d-flex {
    transition: all 0.5s
}

.menu-overlay {
    z-index: -1;
    background-color: #08080899;
    width: 100%;
    height: 100vh;
    display: none;
    position: absolute;
    inset: 0%
}

.dropdown .dropdown-menu {
    background-color: transparent
}

.dropdown-menu-inner {
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 10px
}

.dropdown-menu[data-bs-popper] {
    top: auto
}

@media only screen and (min-width: 992px) {
    .dropdown-menu {
        width: 1000px;
        margin: 0 auto
    }

    .dropdown:hover .dropdown-menu {
        display: block
    }

    header .navbar .collapse .nav-item.dropdown .nav-link {
        position: relative
    }

    header .navbar .collapse .nav-item.dropdown .nav-link .sub_menu_active_line {
        position: absolute;
        bottom: -2px;
        left: 0;
        height: 5px;
        width: 0;
        background-color: var(--theme-blue);
        transition: 0.3s ease-in-out all;
        -webkit-transition: 0.3s ease-in-out all;
        -mos-transition: 0.3s ease-in-out all;
        -ms-transition: 0.3s ease-in-out all;
        background-color: var(--theme-blue)
    }

    header .navbar .collapse .nav-item.dropdown:hover .nav-link .sub_menu_active_line {
        width: 100%
    }

    .dropdown-menu.show {
        display: flex
    }
}

header .header-btns {
    display: flex;
    justify-content: end
}

header .header-btns img {
    display: none
}

.nav-link:focus-visible {
    box-shadow: none
}

@media (max-width: 1600px) {
    header .header-logo, header .header-btns {
        padding: 10px 0 !important
    }

    .main-nav a.has-subnav-link, .main-nav a.subnav-link {
        padding: 20px 10px !important
    }

    .main-nav > .has-subnav > .has-subnav-link:after {
        top: 29px !important
    }

    .header-logo img {
        max-width: 150px
    }
}

@media (max-width: 1200px) {
    .dropdown-menu {
        width: calc(100% - 80px)
    }

    header .header-logo img {
        max-width: 100%
    }

    header .navbar.navbar-expand-lg .nav-link {
        padding: 30px 10px;
        font-size: 16px
    }

    header .header-logo, header .header-btns {
        padding: 25px 0 20px
    }

    header .header-logo {
        max-width: 160px
    }
}

@media (max-width: 991px) {
    header .header-btns a.btn {
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 9px
    }

    header .header-btns img {
        display: block;
        max-width: 100%;
        transition: 0.3s ease-in-out all;
        -webkit-transition: 0.3s ease-in-out all;
        -mos-transition: 0.3s ease-in-out all;
        -ms-transition: 0.3s ease-in-out all
    }

    header .header-btns .btn {
        background-color: #ffffff;
        border-color: var(--theme-black)
    }

    header .header-btns .btn.demoBtn {
        border: 0;
        padding: 0;
        overflow: visible;
        width: 50px
    }

    header .header-btns .btn.demoBtn:active {
        background-color: transparent !important
    }

    header .header-btns .btn.demoBtn:hover img {
        filter: invert(0)
    }

    header .header-btns .btn.demoBtn:after {
        content: none
    }

    header .header-btns .btn:hover:after {
        background-color: var(--theme-black)
    }

    header .header-btns .btn:hover img {
        filter: invert(85%)
    }

    header .header-btns span {
        display: none
    }

    header .header-logo, header .header-btns {
        padding: 20px 0
    }

    header .navbar.navbar-expand-lg .nav-link {
        padding: 15px 0
    }

    header .navbar-nav .nav-item + .nav-item {
        border-top: 1px solid var(--theme-gray)
    }

    header .navbar-nav .nav-item .dropdown-toggle {
        padding: 15px
    }

    header .navbar .nav-link img {
        margin: 0
    }

    header .navbar .nav-item .dropdown-menu .subMenuTitle + p {
        display: none
    }

    .dropdown-menu a.btn-text {
        color: var(--theme-light-gray);
        font-size: 12px
    }

    header .navbar .collapse:after {
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        content: "";
        width: calc(100% + 100px);
        height: 100vh;
        z-index: -1;
        left: -50px;
        transition: 0.3s ease-in-out all;
        -webkit-transition: 0.3s ease-in-out all;
        -mos-transition: 0.3s ease-in-out all;
        -ms-transition: 0.3s ease-in-out all;
        opacity: 0
    }

    header .navbar .collapse.show:after {
        opacity: 1
    }

    header .navbar .navbar-nav {
        padding-bottom: 5px
    }

    .dropdown-menu {
        width: 100%
    }

    .dropdown-menu-inner {
        max-height: 175px;
        overflow: auto
    }

    .dropdown-menu-inner .sub_menu_items {
        padding: 10px 0 !important
    }
}

@media (max-width: 767px) {
    header .navbar .container-lg {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    a.header-logo {
        display: flex;
        height: 80px
    }
}

@media (max-width: 575px) {
    header .navbar .container-lg {
        padding-left: 15px !important;
        padding-right: 15px !important
    }
}

.dropdown-menu .dropdown-menu-inner a:hover .subMenuTitle {
    color: var(--theme-blue)
}

.dropdown-menu .dropdown-menu-inner a:hover svg {
    fill: var(--theme-blue) !important
}

.navbar-toggler {
    border: 0;
    border: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #000000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

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

.navbar-toggler .icon-bar {
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 1px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.3s ease-in-out
}

.navbar-toggler .icon-bar + .icon-bar {
    margin-top: 4px
}

.navbar-toggler .icon-bar:nth-of-type(2) {
    top: 1px
}

.navbar-toggler .icon-bar:nth-of-type(3) {
    top: 2px
}

.navbar-toggler.active .icon-bar:nth-of-type(1) {
    top: 7px;
    transform: rotate(45deg)
}

.navbar-toggler.active .icon-bar:nth-of-type(2) {
    background-color: transparent
}

.navbar-toggler.active .icon-bar:nth-of-type(3) {
    top: -7px;
    transform: rotate(-45deg)
}

.banner {
    margin-top: 100px;
    text-align: center;
    background-image: url("../images/banner-bg.webp");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-bottom: 45px;
    padding-top: 60px
}

.banner .banner-content p {
    margin: 0 auto 35px;
    font-size: 18px
}

.banner .banner-content .banner-title {
    font-weight: 600;
    line-height: 125%
}

.banner .banner-content .btn span {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: #ffffff;
    margin-left: 10px;
    display: flex;
    float: right;
    line-height: 20px;
    align-items: center;
    margin-top: 2px;
    justify-content: center;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.banner .banner-content .btn span img {
    padding-left: 2px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.banner .banner-content .btn:hover span {
    background-color: var(--theme-black)
}

.banner .banner-content .btn:hover span img {
    filter: invert(100%)
}

.banner-images {
    display: flex;
    justify-content: center;
    margin-top: 40px
}

.banner-images .banner-main-image .bannerOverlay {
    position: relative;
    border-radius: 25px
}

.banner-images .banner-main-image {
    filter: drop-shadow(0 0 23px rgba(26, 24, 24, 0.2))
}

.banner-left-images, .banner-right-images {
    width: 335px;
    position: relative
}

.banner-images .banner-left-images img, .banner-images .banner-right-images img {
    display: block
}

.banner-images .banner-left-images .banner-left-bottom-images {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    padding-right: 30px;
    margin-top: -20px
}

.banner-images .banner-left-images .banner-top-images {
    display: flex;
    justify-content: end
}

.banner-counts {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.banner-counts .banner-counts-list .list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: #ffffff;
    margin: 0 auto 20px
}

.banner-counts .banner-counts-list .list-count {
    font-weight: 600;
    color: var(--theme-black);
    line-height: 100%;
    display: flex;
    justify-content: center
}

.banner-counts .banner-counts-list .list-count .counter {
    min-width: 75px;
    font-size: 56px
}

.banner-counts .banner-counts-list .list-count span {
    font-size: 24px;
    margin-left: 5px
}

.banner-counts .banner-counts-list .list-label {
    color: var(--theme-gray);
    line-height: 135%;
    font-size: 18px
}

@media (max-width: 1600px) {
    .banner {
        padding-top: 0
    }
}

@media (max-width: 1366px) {
    .banner {
        margin-top: 85px
    }

    .banner .banner-content p {
        font-size: 14px
    }

    .banner-counts .banner-counts-list .list-label {
        font-size: 16px
    }

    .banner-counts .banner-counts-list .list-count .counter {
        min-width: 65px;
        font-size: 46px
    }
}

@media (min-width: 1025px) {
    .banner .banner-content p {
        max-width: 52.08vw
    }
}

@media (min-width: 478px) {
    .banner-images {
        margin-top: 3.125vw
    }

    .banner-left-images, .banner-right-images {
        margin-top: -9.11vw
    }

    .banner-images .banner-left-images .banner-left-bottom-images {
        padding-right: 1.5625vw
    }

    .banner-images .banner-right-images .banner-right-bottom-images {
        padding-left: 1.5625vw
    }

    .banner-images .banner-left-images .banner-left-bottom-images img + img {
        margin-top: 5.46875vw
    }

    .banner-images .banner-right-images .banner-right-bottom-images img + img {
        margin-top: 7.8125vw
    }

    .banner .banner-content p {
        margin: 0 auto 1.82vw
    }

    .banner .banner-content .banner-title {
        font-size: 40px;
        max-width: 60%;
        margin: 0 auto 15px
    }

    .banner-images .banner-main-image img {
        max-width: 50.46vw
    }

    .banner-images .banner-left-images .l-img-1, .banner-images .banner-right-images .r-img-2 {
        width: 10.41vw
    }

    .banner-images .banner-left-images .l-img-2 {
        width: 5.20vw
    }

    .banner-images .banner-left-images .l-img-3, .banner-images .banner-right-images .r-img-1 {
        width: 3.43vw
    }

    .banner-images .banner-right-images .r-img-3 {
        width: 6.09vw
    }

    .banner-images .banner-left-images .banner-top-images img {
        margin-right: 7.08vw
    }

    .banner-images .banner-right-images .banner-top-images img {
        margin-left: 11.97vw
    }

    .banner-counts {
        margin-top: 3vw
    }

    .banner-counts .banner-counts-list .list-count {
        font-size: 3.75vw
    }

    .banner-counts .banner-counts-list {
        margin: 0 3.25vw
    }
}

@media (max-width: 1024px) {
    .banner .banner-content p {
        max-width: 60%
    }

    .banner-counts .banner-counts-list .list-icon {
        width: 45px;
        height: 45px
    }

    .banner-counts .banner-counts-list .list-count span {
        font-size: 18px;
        margin-left: 5px
    }

    .banner-counts .banner-counts-list .list-label {
        font-size: 14px;
        margin-top: 5px;
        line-height: 125%
    }
}

@media (max-width: 767px) {
    .banner {
        margin-top: 110px
    }
}

@media (max-width: 475px) {
    .banner-left-images, .banner-right-images {
        display: none
    }

    .banner-counts .banner-counts-list .list-icon {
        width: 55px;
        height: 55px
    }

    .banner-counts {
        flex-wrap: wrap;
        margin-top: 50px
    }

    .banner-counts .banner-counts-list .list-count {
        font-size: 36px
    }

    .banner-counts .banner-counts-list {
        width: 50%;
        margin-bottom: 25px
    }

    .banner {
        padding-bottom: 25px
    }

    .banner {
        margin-top: 85px
    }
}

@media (min-width: 478px) {
    .image-list-section .content-list, .image-list-section .sec-img {
        margin-top: 5vw
    }

    .image-list-section .content-list .list-title {
        font-size: 1.25vw
    }

    .image-list-section .content-list .list-item + .list-item {
        margin-top: 45px
    }
}

.image-list-section .content-list .list-item .list-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-right: 25px
}

.image-list-section .content-list .list-title {
    color: var(--theme-black);
    font-weight: 600;
    margin-bottom: 10px
}

.image-list-section .content-list .list-item + .list-item {
    margin-top: 20px
}

.image-list-section .btn {
    margin-left: 85px;
    margin-top: 40px
}

.image-list-section .sec-img img {
    max-width: 100%
}

@media (max-width: 1024px) {
    .image-list-section .content-list .list-item .list-img {
        min-width: 50px;
        height: 50px;
        margin-right: 15px
    }

    .image-list-section .content-list .list-title {
        font-size: 16px;
        margin-bottom: 2px
    }

    .image-list-section .btn {
        margin-left: 65px;
        margin-top: 20px
    }
}

@media (max-width: 991px) {
    .image-list-section .sec-img {
        max-width: 70%;
        margin: 25px auto 0
    }

    .image-list-section .content-list {
        display: flex;
        flex-wrap: wrap
    }

    .image-list-section .content-list .list-item {
        width: 50%;
        padding-right: 25px
    }

    .image-list-section .content-list .list-item + .list-item {
        margin: 0
    }

    .image-list-section .list-btn {
        display: flex;
        justify-content: center;
        margin: 20px 0 0
    }

    .image-list-section .list-btn .btn {
        margin: 0
    }
}

@media (max-width: 767px) {
    .image-list-section .sec-img {
        max-width: 100%
    }

    .image-list-section .content-list .list-item {
        width: 100%;
        padding-right: 0;
        margin-top: 20px
    }
}

.solutionSec {
    background-image: url(../images/solutions-page/solution-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

@media (min-width: 768px) {
    .solutionSec .content-list {
        padding-right: 50px
    }
}

@media (max-width: 991px) {
    .solutionSec .content-list .list-item:last-child {
        width: 100%
    }
}

.SliderSec .owl-carousel {
    margin-top: 50px
}

.SliderSec .owl-carousel .item {
    padding: 20px 1.30vw;
    border-radius: 2.08vw;
    position: relative;
    width: 100%;
    height: 26.04vw;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: end
}

.SliderSec .owl-carousel .gov-public {
    background-position: center
}

.SliderSec .owl-carousel .hospitality {
    background-position: center right -80px
}

.SliderSec .owl-carousel .it-industry {
    background-position: center left -35px
}

.SliderSec .owl-carousel .banking-finance {
    background-position: center
}

.SliderSec .owl-carousel .manufacturing {
    background-position: center right
}

.SliderSec .owl-carousel .healthcare {
    background-position: center left -35px
}

.SliderSec .owl-carousel .item:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0
}

.SliderSec .owl-carousel .item.item1:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #AC3D62 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item2:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #56A168 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item3:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #E47D69 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item4:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFB463 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item5:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #df4f43 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item6:after {
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #466bb3 100%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item.item7:after {
    background: transparent linear-gradient(180deg, #00000000 35%, #96D3CF 85%) 0% 0% no-repeat padding-box
}

.SliderSec .owl-carousel .item .slideContent {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: #ffffff
}

.SliderSec .owl-carousel .item .slideContent .slideTitle {
    color: var(--theme-black);
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 6px 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto 10px;
    line-height: 125%
}

.SliderSec .owl-carousel .item .slideContent p {
    color: #ffffff;
    font-size: 14px;
    margin: 0 5px
}

@media (max-width: 1024px) {
    .SliderSec .owl-carousel .item {
        background-position: center;
        height: 350px;
        border-radius: 25px
    }

    .SliderSec .owl-carousel .item .slideContent p {
        height: 65px;
        display: flex;
        align-items: center
    }
}

.onBoarding {
    background-color: #F7F7F8
}

.onBoarding .owl-carousel {
    margin-top: 50px
}

.onBoarding .onBoardingSlider .item {
    padding: 20px;
    border-radius: 2.08vw;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden
}

.onBoarding .onBoardingSlider .step1 {
    background-color: #E2E6F4
}

.onBoarding .onBoardingSlider .step2 {
    background-color: #EEF5E3
}

.onBoarding .onBoardingSlider .step3 {
    background-color: #FAE3DA
}

.onBoarding .onBoardingSlider .step4 {
    background-color: #D8EEEC
}

.onBoarding .onBoardingSlider .stepsCount {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-black)
}

.onBoarding .onBoardingSlider .stepImg {
    max-width: 175px;
    margin: 20px auto
}

.onBoarding .onBoardingSlider .stepTitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 125%;
    height: 55px;
    margin: 30px 0 10px
}

.onBoarding .onBoardingSlider ul {
    padding-left: 20px;
    gap: 6px;
    display: flex;
    flex-direction: column
}

.onBoarding .onBoardingSlider ul li {
    font-size: 14px;
    color: var(--theme-gray)
}

@media (max-width: 1366px) {
    .onBoarding .onBoardingSlider .stepImg {
        max-width: 125px
    }

    .onBoarding .onBoardingSlider .item {
        height: 425px
    }

    .onBoarding .onBoardingSlider .stepTitle {
        font-size: 18px;
        height: 45px
    }

    .onBoarding .onBoardingSlider ul {
        gap: 4px
    }

    .onBoarding .onBoardingSlider ul li {
        font-size: 13px
    }
}

@media (max-width: 1024px) {
    .onBoarding .onBoardingSlider .item {
        border-radius: 25px
    }
}

@media (max-width: 767px) {
    .onBoarding .onBoardingSlider .stepTitle {
        font-size: 16px
    }

    .onBoarding .onBoardingSlider .item {
        height: 475px
    }
}

@media (max-width: 475px) {
    .onBoarding .onBoardingSlider .stepTitle {
        font-size: 18px;
        display: flex;
        align-items: center
    }

    .onBoarding .onBoardingSlider .item {
        height: auto
    }

    .onBoarding .onBoardingSlider .stepImg {
        max-width: 250px;
        width: 100%
    }
}

.clientSection .clientSlider {
    margin-top: 60px
}

.clientSection .item {
    background-color: #F6F6F6;
    border-radius: 15px;
    width: 235px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center
}

.clientSection .clientSlider .item img {
    max-width: 165px;
    filter: grayscale(100%);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.clientSection .clientSlider .item:hover img {
    filter: grayscale(0)
}

@media (max-width: 1024px) {
    .clientSection .item {
        height: 115px
    }

    .clientSection .item img {
        max-width: 140px
    }
}

@media (max-width: 767px) {
    .clientSection .clientSlider {
        margin-top: 20px
    }

    .clientSection .item {
        max-width: 100%;
        height: 100px;
        padding: 15px 20px
    }
}

.testimonial {
    background-image: url("../images/cayman-home-page/testimonial-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

@media (min-width: 1025px) {
    .testimonial p {
        max-width: 52.08vw;
        margin: 0 auto
    }
}

.testimonialSlider {
    margin-top: 55px
}

.testimonialSlider .item {
    padding: 35px;
    height: 465px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 40px
}

.testimonialSlider .item .test_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px
}

.testimonialSlider .item .quoteImg {
    max-width: 24px;
    float: left
}

.testimonialSlider .item p {
    font-size: 16px;
    color: var(--theme-gray);
    margin-bottom: 20px;
    position: relative;
    height: 235px
}

.testimonialSlider .item .testi_profile img {
    border-radius: 50%;
    max-width: 50px;
    margin: 0 auto;
    max-height: 50px
}

.testimonialSlider .item .testi_profile .profile_name {
    font-size: 18px;
    color: var(--theme-black);
    font-weight: 600;
    margin-top: 10px
}

.testimonialSlider .item .testi_profile .profile_desg {
    font-size: 14px;
    color: var(--theme-gray)
}

@media (max-width: 1366px) {
    .testimonialSlider .item .test_title {
        font-size: 18px
    }

    .testimonialSlider .item p {
        font-size: 15px
    }

    .testimonialSlider .item .testi_profile .profile_desg {
        font-size: 13px
    }
}

@media (max-width: 1199px) {
    .testimonialSlider .item {
        height: 480px
    }
}

@media (max-width: 1024px) {
    .testimonialSlider .item {
        height: 450px
    }

    .testimonialSlider .item p {
        font-size: 14px
    }
}

@media (max-width: 991px) {
    .testimonialSlider {
        margin-top: 25px
    }

    .testimonialSlider .item {
        height: auto
    }

    .testimonialSlider .item p {
        height: 190px
    }
}

@media (max-width: 767px) {
    .testimonialSlider .item {
        padding: 15px
    }

    .testimonialSlider .item p {
        height: 115px
    }
}

@media (max-width: 475px) {
    .testimonialSlider .item {
        padding: 15px
    }

    .testimonialSlider .item p {
        height: 175px
    }
}

@media (max-width: 320px) {
    .testimonialSlider .item p {
        height: 235px
    }
}

.blogSlider {
    margin-top: 50px
}

.blogSlider .item .blogImg {
    margin-bottom: 10px
}

.blogSlider .item .blogImg img {
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 6 / 4
}

.blogSlider .item .blog-content {
    height: 150px
}

.blogSlider .item .blog-content .blogTag {
    color: var(--theme-blue);
    font-size: 14px;
    text-decoration: none
}

.blogSlider .item .blog-content .blogViews {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 15px;
    background-color: #ECECEC;
    color: #3E5468
}

.blogSlider .item .blog-content .blogTitle {
    font-size: 24px;
    line-height: 115%;
    font-weight: 600;
    color: var(--theme-black);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    margin-bottom: 10px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600
}

.blogSlider .item .blog-content .blogTitle:hover {
    color: var(--theme-blue)
}

.blogDate {
    font-size: 14px;
    color: var(--theme-gray);
    margin-top: 5px;
    display: flex
}

.btnText {
    margin-top: 5px
}

@media (max-width: 1440px) {
    .blogSlider .item .blog-content .blogTitle {
        font-size: 22px
    }
}

@media (max-width: 1366px) {
    .blogSlider .item .blog-content .blogTitle {
        font-size: 20px
    }
}

@media (max-width: 1024px) {
    .blogSlider .item .blog-content .blogTitle {
        font-size: 20px
    }
}

.connectSec {
    background-color: #dbffea;
    margin-top: 80px;
    position: relative;
    padding: 50px 0 80px;
    z-index: 2
}

.connectSec .connnectImg {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)
}

.connectSec .connectContent {
    position: relative;
    z-index: 1
}

.connectSec .connectContent .p_sec {
    color: var(--theme-black)
}

.connectSec .connnectForm {
    background-color: #a4ebc2;
    border-radius: 50px;
    padding: 50px 60px;
    max-width: 575px;
    margin-top: -100px;
    margin-left: auto;
    position: relative;
    z-index: 1
}

.connnectForm .form-group label {
    margin-bottom: 5px
}

.connectSec .connnectForm .connnectFormTitle {
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: 600
}

.connectSec .connnectForm .btn {
    min-width: 220px;
    padding: 12px 20px
}

.connectSec .connectContent .p_sec {
    max-width: 480px;
    margin: 0 auto
}

.connectSec .connnectImgSec .connectContent .heading {
    color: #1A1818
}

@media (max-width: 1366px) {
    .connectSec .connnectForm {
        padding: 50px 40px
    }

    .connectSec .connnectImg {
        max-width: 35%
    }
}

@media (max-width: 1024px) {
    .connectSec {
        margin-top: 0
    }

    .connectSec .connnectImg {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translate(0, 0)
    }

    .connectSec .connnectImg {
        max-width: 300px
    }

    .connectSec .connectContent .p_sec, .connectSec .connnectForm {
        max-width: 80%
    }

    .connectSec .connnectForm {
        margin: 50px auto 0;
        padding: 30px 40px
    }

    .connectSec .connnectForm .connnectFormTitle, .connectSec .connnectForm .google-captach {
        text-align: center;
        margin: 0 auto
    }

    .connectSec .connnectForm .connnectFormTitle {
        text-align: left;
        margin-bottom: 20px
    }

    .form-btn {
        display: inline-block;
        text-align: center;
        margin: 0 auto;
        width: 100%
    }

    .connectSec .connnectForm .form-btn {
        text-align: left
    }
}

@media (max-width: 991px) {
    .connectSec {
        padding: 50px 0
    }

    .connectSec .connnectForm {
        margin: 35px auto 0
    }
}

@media (max-width: 767px) {
    .connectSec .connectContent .p_sec, .connectSec .connnectForm {
        max-width: 100%
    }

    .connectSec .connnectForm {
        padding: 20px;
        border-radius: 20px
    }
}

footer.section-padding {
    background-color: var(--theme-black);
    color: #ffffff;
    padding-bottom: 0
}

footer .get-a-demo {
    text-align: center
}

footer .get-a-demo .demoTitle {
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 20px;
    font-size: 30px
}

footer .get-a-demo .p_sec {
    max-width: 850px;
    color: #ffffff;
    margin: 0 auto
}

footer .get-a-demo .btn {
    border-color: #ffffff;
    margin: 50px auto;
    padding: 10px 15px 10px 28px;
    border: 1px solid
}

footer .footerLinkTitle {
    font-size: 18px;
    margin-bottom: 10px
}

footer .f-link {
    font-size: 14px;
    color: var(--theme-light-gray);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

footer a.f-link:hover {
    color: #ffffff
}

footer .footerList {
    margin-bottom: 0
}

footer .footerList li {
    line-height: 30px;
    list-style: none
}

footer .contactDetails .contactSec {
    display: flex
}

footer .contactDetails .contactSec + .contactSec {
    margin-top: 15px
}

footer .contactDetails .contactImg {
    max-width: 27px;
    margin-right: 15px;
    border-radius: 50%;
    display: inline-block
}

footer .contactDetails .contactImg img {
    max-width: 100%;
    min-width: 25px
}

footer .contactDetails a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500
}

footer .contactDetails a:hover {
    color: var(--theme-light-gray)
}

footer .appDownloadBtn .DownloadBtn {
    display: flex
}

footer .appDownloadBtn a + a {
    margin-top: 10px
}

footer .footerBottom {
    margin-top: 40px
}

footer .footerBottom .social-list, footer .footerBottom .footerBottomLinks {
    display: flex
}

footer .footerBottom .social-list {
    margin: 0
}

footer .footerBottom .social-list li {
    list-style: none;
    width: 20px
}

footer .footerBottom .social-list li img {
    max-width: 100%;
    filter: invert(100%);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

footer .footerBottom .social-list li:hover img {
    filter: invert(50%)
}

footer .footerBottom .footerBottomLinks {
    justify-content: end
}

footer .footerBottom .social-list li + li, footer .footerBottom .footerBottomLinks li + li {
    margin-left: 20px
}

footer .footerBottom .footerBottomLinks li {
    list-style: none
}

footer .copyright {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #707070;
    text-align: center
}

footer .footerAppAddrs {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #707070
}

footer .footerAppAddrs .contactDetails {
    display: flex
}

footer .footerAppAddrs .contactDetails .contactSec:hover .f-link {
    color: #ffffff
}

footer .footerAppAddrs .contactDetails .contactSec + .contactSec {
    margin-top: 0;
    margin-left: 30px
}

footer .footerAppAddrs .contactDetails .contactSec p {
    color: #ffffff;
    margin: 5px 0 0;
    font-size: 12px;
    padding-right: 15%
}

@media (min-width: 478px) {
    footer .get-a-demo .demoTitle {
        font-size: 3.50vw
    }
}

@media (max-width: 1024px) {
    footer .footerLinkTitle {
        font-size: 16px;
        margin-bottom: 10px
    }

    footer .get-a-demo .btn {
        margin: 20px auto 50px
    }

    footer .f-link {
        font-size: 13px
    }

    footer .contactDetails a {
        font-size: 14px
    }

    footer .footerList li {
        line-height: 27px
    }

    footer .footerBottom .social-list li {
        width: 17px
    }

    footer .footerBottom .social-list li + li, footer .footerBottom .footerBottomLinks li + li {
        margin-left: 10px
    }

    footer .footerBottom .footerBottomLinks .footer .f-link {
        font-size: 12px
    }

    footer .appDownloadBtn .qrImg {
        max-width: 100px
    }

    footer .get-a-demo .btn {
        padding: 8px 15px 8px 20px
    }
}

@media (max-width: 991px) {
    footer .footerList {
        margin-bottom: 30px
    }

    footer .appDownloadBtn a + a {
        margin-left: 0;
        margin-top: 20px
    }

    footer .footerBottom .social-list {
        margin: 20px 0
    }

    footer .footerAppAddrs .contactDetails .contactSec p {
        padding: 0
    }

    footer .footerBottom .social-list li + li, footer .footerBottom .footerBottomLinks li + li {
        margin-left: 20px
    }

    footer .footerBottom .social-list, footer .footerBottom .footerBottomLinks {
        justify-content: center
    }

    footer .appDownloadBtn .DownloadBtn img {
        max-width: 80%
    }

    footer .appDownloadBtn .qrImg {
        width: 90px
    }
}

@media (max-width: 767px) {
    footer .appDownloadBtn {
        margin-bottom: 35px
    }

    footer .contactDetails .contactImg {
        max-width: 25px;
        margin-right: 10px
    }

    footer .contactDetails {
        max-width: 160px;
        margin: 0 auto 30px
    }

    footer .contactDetails a {
        font-size: 12px
    }

    footer .footerBottom .social-list li + li, footer .footerBottom .footerBottomLinks li + li {
        margin-left: 30px
    }

    footer .footerAppAddrs .footerLinkTitle {
        text-align: center
    }

    footer .appDownloadBtn .DownloadBtn {
        align-items: center;
        justify-content: center
    }
}

@media (max-width: 575px) {
    footer .footerLinkTitle, footer .footerList {
        text-align: center
    }

    footer .contactEmail {
        text-align: center;
        margin-bottom: 0
    }

    footer .footerAppAddrs .contactDetails {
        max-width: 100%;
        margin: 0
    }

    footer .footerAppAddrs .contactDetails .contactSec + .contactSec {
        margin-left: 5px
    }

    footer .footerBottomLinks .f-link {
        font-size: 12px
    }

    footer .footerBottom .social-list li + li, footer .footerBottom .footerBottomLinks li + li {
        margin-left: 15px
    }
}

.clientSection .softwareBadgeSlider {
    margin-top: 30px
}

.clientSection .softwareBadgeSlider .item {
    width: auto;
    padding: 10px
}

.clientSection .softwareBadgeSlider .item img {
    width: 110px !important
}

.clientSection .softwareBadgeSlider .owl-stage {
    margin: 0 auto
}

.softwareBadgeSlider .owl-dots {
    display: none
}

@media (max-width: 1024px) {
    .clientSection .softwareBadgeSlider .item img {
        width: 90px !important
    }

    .clientSection .softwareBadgeSlider .item {
        height: 115px !important
    }
}

@media (max-width: 991px) {
    .banner-main-image, .banner-left-images .banner-top-images img, .banner-left-images .banner-left-bottom-images img, .banner-right-images .banner-top-images img, .banner-right-images .banner-right-bottom-images img {
        transform: translateX(0px) translateY(0px) !important
    }

    .banner-images .banner-left-images .banner-top-images {
        justify-content: center
    }
}

@media (max-width: 575px) {
    .g-recaptcha {
        transform: scale(0.83);
        transform-origin: left
    }
}

.form-control.is-invalid, .was-validated .form-control:invalid, .form-control.is-valid, .was-validated .form-control:valid {
    background-image: none
}

.recaptcha-invalid-feedback {
    display: block;
    text-align: left;
    width: 100%;
    font-size: .875em;
    color: var(--bs-form-invalid-color)
}

.onBoarding .onBoardingSlider ul li::marker {
    color: #000000
}

.SliderSec .owl-carousel .item .slideContent p {
    height: 70px
}

@media (max-width: 1440px) {
    .SliderSec .owl-carousel .item .slideContent .slideTitle {
        font-size: 14px
    }

    .SliderSec .owl-carousel .item .slideContent p {
        font-size: 14px;
        margin: 0
    }
}

@media (max-width: 1024px) {
    .SliderSec .owl-carousel .item .slideContent .slideTitle {
        font-size: 12px
    }

    .SliderSec .owl-carousel .item .slideContent p {
        font-size: 13px;
        margin: 0
    }
}

@media (max-width: 991px) {
    .banner-counts .banner-counts-list .list-count .counter {
        min-width: 40px;
        font-size: 30px
    }

    .banner .banner-content p {
        max-width: 70%
    }
}

@media (max-width: 576px) {
    .banner .banner-content p {
        max-width: 100%
    }
}

@media (max-width: 767px) {
    .solutionSec .heading {
        background-color: #f1f2f8 !important
    }

    .onBoarding .heading {
        background-color: #F7F7F8 !important
    }

    .testimonial .heading {
        background-color: #eef5e3 !important
    }

    .banner-images .banner-main-image .playBtn img {
        max-width: 50px
    }

    .banner-images .banner-main-image .bannerOverlay:before {
        border-radius: 10px
    }

    .banner-images .banner-main-image img {
        max-width: 100%
    }

    .banner-images .banner-left-images img, .banner-images .banner-right-images img {
        max-width: 100px
    }

    .banner-images .banner-left-images .banner-left-bottom-images img {
        max-width: 60%
    }
}

.main-nav-wrap:before, .main-nav-wrap:after {
    content: "";
    display: table
}

.main-nav-wrap:after {
    clear: both
}

@-webkit-keyframes fly-in--up {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fly-in--up {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.is-hidden {
    position: absolute;
    opacity: 0;
    transform: translateX(140%)
}

.main-nav-wrap {
    overflow: hidden;
    width: 100%
}

.main-nav-trigger.active {
    background-color: #1A1818
}

.main-nav, .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.js .main-nav {
    display: none
}

.main-nav {
    background-color: #1A1818;
    border-radius: 5px;
    filter: drop-shadow(0 0 6px 1px black);
    color: #fff;
    position: relative
}

.main-nav:before {
    border: 10px solid transparent;
    border-bottom-color: #e6e6e6;
    content: "";
    margin: auto;
    position: absolute;
    right: 10px;
    bottom: 100%;
    height: 0;
    width: 0;
    transform: translateY(100%)
}

.main-nav.active:before {
    -webkit-animation: fly-in--up 0.26s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
    animation: fly-in--up 0.26s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards
}

.main-nav a {
    display: inline-block;
    padding: 40px 10px;
    margin: 0 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500
}

.main-nav a.mobile-link {
    display: none
}

.main-dropdown {
    font-size: 14px
}

.moves-in > li:not(.subnav-promo) > a {
    transform: translateX(-100%);
    position: absolute;
    opacity: 0
}

.nav-in {
    -webkit-animation: fly-in--up 0.15s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation: fly-in--up 0.15s cubic-bezier(0.165, 0.84, 0.44, 1) forwards
}

.nav-out {
    animation: fly-in--up 0.15s cubic-bezier(0.165, 0.84, 0.44, 1) reverse
}

.subnav, .subnav a {
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.subnav a {
    transform: translateX(0)
}

.has-subnav-link {
    transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative
}

.has-subnav-link:after {
    content: "";
    display: inline-block;
    float: right;
    font-family: "Ionicons"
}

.go-back {
    color: #C6DABF
}

.subnav-promo {
    background-color: #167d5f;
    border-top: 1px solid #147055;
    padding-top: 14px
}

.promo-img {
    display: block;
    margin: auto
}

.promo-body {
    padding: 0
}

.promo-body a {
    display: inline-block;
    padding: 0
}

@media (min-width: 990px) {
    .main-nav-wrap {
        overflow: visible
    }

    .main-nav-trigger {
        display: none
    }

    .js .main-nav {
        display: flex;
        /*justify-content: space-evenly*/
    }

    .main-nav {
        background-color: transparent
    }

    .main-nav:before {
        content: none
    }

    .main-nav > li {
        float: left;
        width: auto;
    }

    .main-nav > li > a {
        color: #1A1818;
        text-align: center
    }

    .main-nav > .has-subnav > .has-subnav-link:after {
        content: "";
        float: none;
        font-size: 75%;
        height: 11px;
        width: 11px;
        position: absolute;
        top: 47px;
        right: -15px;
        border-style: solid;
        border-width: 2px 2px 0 0;
        transform: rotate(135deg)
    }

    .main-dropdown {
        border: none;
        color: #fff;
        display: table;
        opacity: 0;
        position: absolute;
        right: 0;
        left: 0;
        visibility: hidden;
        background-color: #FFFFFF;
        box-shadow: 0px 0px 20px #C4D5D5D4;
        border-radius: 40px;
        width: 1258px;
        padding: 25px 40px 25px 40px !important;
        margin-left: -50%
    }

    .main-dropdown > li {
        display: table-cell;
        vertical-align: top
    }

    .hover > .has-subnav-link {
        background-color: transparent;
        color: var(--theme-blue)
    }

    .hover .main-dropdown {
        opacity: 1;
        visibility: visible
    }

    .nav-col {
        border-right: 1px solid #167d5f;
        margin: 12px 0;
        padding: 12px 24px;
        width: 21%
    }

    .nav-col .has-subnav + .has-subnav {
        margin-top: 24px
    }

    .subnav-header {
        font-weight: 700;
        border-bottom: 1px solid;
        margin-bottom: 6px
    }

    .subnav-header:after {
        content: none
    }

    .subnav a {
        padding: 3px 0;
        vertical-align: top
    }

    .go-back, .view-all {
        display: none !important
    }

    .main-dropdown.subnav {
        margin-left: -50%
    }

    .subnav-promo {
        border: none;
        background: #1A1818;
        border-radius: 20px;
        padding: 26px 36px 35px 36px
    }

    .subnav-promo .subnav-promo-header {
        text-align: left;
        font-weight: 600;
        font-size: 36px;
        line-height: 125%;
        letter-spacing: 0px;
        color: #FFFFFF;
        margin: 0 0 15px 0
    }

    .subnav-promo .subnav-promo-link {
        text-align: left;
        font-weight: 600;
        font-size: 12px;
        line-height: 125%;
        margin: 0;
        letter-spacing: 0px;
        color: #FFFFFF;
        text-transform: uppercase;
        position: relative;
        padding: 3px 0 !important
    }

    .subnav-promo .subnav-promo-link:before {
        position: absolute;
        content: "";
        height: 2px;
        bottom: -2px;
        width: 0;
        background-color: #ffffff;
        transition: 0.3s ease-in-out all;
        -webkit-transition: 0.3s ease-in-out all;
        -mos-transition: 0.3s ease-in-out all;
        -ms-transition: 0.3s ease-in-out all
    }

    .subnav-promo .subnav-promo-link:hover:before {
        width: 100%
    }

    .subnav-promo {
        position: relative
    }

    .main-dropdown .has-subnav {
    }

    .main-dropdown.subnav.mega-menu-title {
        text-align: left;
        letter-spacing: 0px;
        color: #1A1818;
        font-weight: 600;
        font-size: 36px;
        line-height: 125%;
        margin: 0 0 20px 0
    }

    .main-nav {
    }

    .megamenu-wrap .megamenu-wrap-inner .subnav-promo {
        display: flex;
        margin: -60px 0 0 0
    }

    .main-nav .has-subnav-link {
    }

    .main-nav .subnav-title .menu-list-item {
        display: flex;
        align-items: flex-start
    }

    .main-nav .subnav-title .menu-list-item .menu-icon {
        display: inline-flex;
        width: 20px;
        margin: 0 15px 0 0
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-title {
        letter-spacing: 0px;
        color: #1A1818;
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        margin: 0 0 10px 0
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-description {
        text-align: left;
        letter-spacing: 0px;
        color: #3E5468;
        font-size: 14px;
        line-height: 125%;
        margin: 0;
        max-width: 90%
    }

    .main-dropdown .mega-menu-title {
        text-align: left;
        font-size: 36px;
        line-height: 110%;
        font-weight: 600;
        letter-spacing: 0px;
        color: #1A1818;
        margin: 0 0 20px 0
    }

    .main-nav .has-subnav .has-subnav-link {
    }

    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .subnav-title {
        text-decoration: none;
        background: #EEF3F3;
        border-radius: 20px;
        padding: 18px 20px;
        border: none;
        margin: 0 0 10px 0
    }

    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .subnav-header {
        text-align: left;
        font-size: 36px;
        line-height: 110%;
        font-weight: 600;
        letter-spacing: 0px;
        color: #1A1818;
        margin: 0 0 20px 0;
        background: transparent;
        border: 0;
        padding: 0;
        display: inline-flex;
        pointer-events: none
    }

    .main-nav .more-links .subnav-sub-title {
        text-align: left;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0px;
        color: #1A1818;
        margin: 15px 0px 0px 0 !important;
        text-transform: uppercase;
        background-color: transparent !important;
        display: inline-flex;
        align-items: center;
        padding: 0 !important
    }

    .main-nav .has-subnav .more-links .subnav-sub-title img {
        margin-left: 10px
    }
}

.megamenu-wrap .megamenu-wrap-inner {
    display: flex;
    align-items: flex-start
}

.subnav-promo .subnav-promo-description {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0 0 100px 0;
    max-width: 90%
}

.menu-list-scrollable {
    height: 420px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 10px 0 0px
}

.menu-list-scrollable::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 5px
}

.menu-list-scrollable::-webkit-scrollbar-track {
    background-color: #EEF3F3;
    border-radius: 5px
}

.menu-list-scrollable::-webkit-scrollbar-thumb {
    background-color: #1A1818;
    border-radius: 5px
}

@media (max-width: 991px) {
    .megamenu-wrap .go-back {
        display: none
    }

    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .more-links .has-subnav-link {
        background: transparent;
        margin: 15px 0
    }
}

.main-nav .subnav-title .menu-list-item .menu-details {
    min-height: 90px
}

.inner-banner-section {
    display: block;
    width: 100%;
    padding: 100px 0 0px 0;
    position: relative;
    z-index: 1
}

@media (max-width: 1366px) {
    .inner-banner-section {
        padding: 95px 0 0px 0
    }
}

.inner-banner-section.products-listing .inner-banner-caption {
    max-width: 1190px
}

.inner-banner-section::before {
    content: '';
    position: absolute;
    background-image: url(../images/inner-banner-bg.webp);
    background-repeat: no-repeat;
    background-position: top -250px center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1
}

.inner-banner-section.products-listing {
    background: transparent linear-gradient(180deg, #FAE3DA 0%, #FFFFFF 40%) 0% 0% no-repeat padding-box
}

.inner-banner-section.products-listing.details-page {
    background: transparent linear-gradient(180deg, #FAE3DA 0%, #FFFFFF 40%) 0% 0% no-repeat padding-box
}

.solution-details-section.sub-details.product {
    background: #FAE3DA 0% 0% no-repeat padding-box
}

.solution-details-section.sub-details.product:before {
    content: '';
    position: absolute;
    background-image: url(../images/orange2-patch.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 200%;
    height: 80%;
    width: 100%
}

.inner-banner-section.products-listing::before, .inner-banner-section.products-listing.details-page::before {
    content: '';
    position: absolute;
    background-image: url(../images/product-page/product-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 80%;
    width: 100%;
    z-index: -1
}

.inner-banner-section.details-page {
    background: transparent linear-gradient(180deg, #CBD5ED 0%, #FFFFFF 50%) 0% 0% no-repeat padding-box
}

.inner-banner-section.details-page::before {
    content: '';
    position: absolute;
    background-image: url(../images/blue-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    z-index: -1
}

.inner-banner-section::after {
    content: '';
    position: absolute;
    background-image: url(../images/banner-pattern.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    top: -162px;
    left: 0;
    right: 0;
    width: 1042px;
    height: 1042px;
    z-index: -1;
    margin: 0 auto
}

.inner-banner-section.details-page.sub-details-page::before {
    height: calc(100% - 100px)
}

.inner-banner-section .inner-banner-caption {
    text-align: center;
    margin: 0 auto
}

.inner-banner-caption .banner-inner .banner-title {
    justify-content: center;
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 72px;
    font-weight: 600;
    line-height: 120%;
    display: flex;
    margin: 0px 0 40px 0
}

.inner-banner-caption .banner-inner .banner-main-title {
    justify-content: center;
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    display: flex;
    margin: 0px auto 10px auto;
    max-width: 85%
}

.inner-banner-caption .banner-inner .banner-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 135%;
    text-align: center;
    letter-spacing: 0px;
    color: #3E5468;
    padding: 0 35px;
    margin-bottom: 0
}

.inner-banner-caption .banner-inner .banner-description + .banner-description {
    margin-top: 25px
}

.inner-banner-caption .banner-inner {
    margin: 0 0 70px 0
}

.inner-banner-caption .banner-inner-btn {
    margin: 0 0 15px 0
}

.breadcumb-section .breadcum-arrow {
    display: inline-flex;
    margin: 0 20px 0 0
}

.inner-banner-section.tax-banner .inner-banner-caption .banner-inner .banner-main-title {
    font-size: 40px
}

.breadcumb-section {
    display: flex;
    align-items: center;
    padding: 35px 0 35px 0
}

.breadcumb-section .breadcrumb {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.breadcumb-section .breadcrumb-item a {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 12px;
    font-weight: 500
}

.breadcumb-section .breadcrumb-item a:hover, a.active {
    color: #2559A6
}

.breadcumb-section .breadcrumb-item {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 12px;
    font-weight: 600
}

.breadcumb-section .breadcrumb-item + .breadcrumb-item {
    position: relative;
    padding-left: 25px
}

.breadcumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #1A1818;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    padding: 0
}

.banner-group-image-section {
    display: flex;
    justify-content: center
}

.banner-group-image-section img {
    max-width: 100%
}

.banner-group-image-section .breadcum-group {
    max-width: 100%
}

.banner-listing-items {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.banner-listing-items .item-list {
    background: #D6DEF1;
    border-radius: 50px;
    margin: 0 0 10px 0;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 10px 60px
}

.banner-listing-items .item-list .list-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0px;
    color: #1A1818;
    display: inline-block;
    text-align: center;
    max-width: 100%
}

.banner-listing-items .item-list::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(0, -50%);
    background-color: #1A1818;
    width: 10px;
    height: 10px;
    border-radius: 100%
}

.inner-banner-section.products-listing .banner-listing-items {
    max-width: 100%;
    margin-bottom: 40px
}

.inner-banner-section.products-listing .banner-listing-items .item-list .list-title {
    max-width: 90%
}

.inner-banner-section.products-listing .banner-listing-items .item-list {
    background: #FCECE6;
    border-radius: 50px
}

.solution-page {
    background: transparent linear-gradient(180deg, #D8EEEC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.inner-banner-section.details-page .banner-group-image-section {
    margin-bottom: -15vw;
    position: relative;
    z-index: 1
}

.inner-banner-section.details-page .inner-banner-caption {
    max-width: 1060px;
    text-align: center;
    margin: 0 auto 70px
}

.solution-details-section {
    display: block;
    width: 100%;
    padding: 0;
    position: relative
}

.solution-details-section {
    position: relative;
    background: #D6DFF5 0% 0% no-repeat padding-box
}

.solution-details-section .solution-inner-section {
    padding: calc(13vw + 75px) 0 75px 0;
    position: relative
}

.solution-details-section .solution-inner-section:after {
    content: '';
    position: absolute;
    background-image: url(../images/solutions-page/solution-details-pattern.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    top: -162px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto
}

.solution-details-section::before {
    content: '';
    position: absolute;
    background-image: url(../images/blue-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 100%;
    width: 100%
}

.solution-details-section::after {
    content: '';
    position: absolute;
    background-image: url(../images/inner-page-shape.svg);
    background-repeat: no-repeat;
    background-position: top -200px center;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0.5
}

.solution-details-section.product::before {
    background: #FAE3DA 0% 0% no-repeat padding-box
}

.solution-listing .solution-ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.solution-listing .solution-ul .solution-ul-li {
    margin: 0 15px 15px 0;
    max-width: 380px;
    min-height: 100%;
    display: flex
}

.solution-listing .solution-ul .solution-ul-li .solution-ul-li-item {
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    opacity: 1;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 30px;
    height: 100%
}

.solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0 auto 10px auto;
    text-align: center;
    max-width: 90%;
    display: block
}

.solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
    text-align: center;
    letter-spacing: 0px;
    color: #3E5468
}

.features-section {
    padding: 75px 0 75px 0
}

.heading-section .heading {
    margin: 0 0 26px 0
}

.heading-section {
    margin: 0 0 60px 0
}

.heading-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 auto 20px auto;
    text-align: center;
    letter-spacing: 0px;
    color: #1A1818;
    max-width: 1000px
}

.heading-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    margin: 0;
    text-align: center;
    letter-spacing: 0px;
    color: #3E5468;
    max-width: 80%;
    margin: 0 auto
}

.image-section img {
    width: 100%;
    max-width: 100%
}

.features-listing-wrap .features-item-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: sticky;
    top: 0;
    z-index: 2
}

.features-listing-wrap .features-item-list .features-item .features-item-box {
    border-radius: 24px;
    padding: 30px;
    display: flex
}

.features-listing-wrap .features-item-list .features-item .features-item-box a {
    border: 0
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 1) .features-item-box {
    background: #dee9f6
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 2) .features-item-box {
    background: #eaf4ed
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 3) .features-item-box {
    background: #f9e5e5
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 4) .features-item-box {
    background: #ffefdc
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 5) .features-item-box {
    background: #dcf1f0
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 6) .features-item-box {
    background: #fce5ef
}

.features-listing-wrap .features-item-list .features-item:nth-child(7n + 7) .features-item-box {
    background: #f3f8ea
}

.features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #3A6FB680;
    border-radius: 100%;
    margin: 0 40px 0 0
}

.features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon img {
    max-width: 100%
}

.features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0 0 15px 0
}

.features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #3E5468;
    margin: 0 0 20px 0;
    text-align: left
}

.features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .btn {
    font-size: 12px;
    padding: 7px 14px
}

.features-listing-wrap .features-item-list .features-item + .features-item {
    margin: 15px 0 0 0
}

.features-listing-wrap::-webkit-scrollbar {
    display: none
}

.banner-listing-items.sub-details {
    max-width: 80%;
    margin-bottom: 60px
}

.banner-listing-items.sub-details .item-list .list-title {
    max-width: 100%
}

.banner-listing-items.sub-details .item-list {
    min-height: 80px;
    width: 100%;
    border-radius: 40px
}

.banner-listing-items.sub-details .item-list::after {
    content: '';
    position: absolute;
    left: 35px;
    background-color: #1A1818;
    width: 10px;
    height: 10px;
    border-radius: 100%
}

.solution-details-section.sub-details .banner-main-title {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    margin: 0px auto 20px auto;
    max-width: 70%;
    text-align: center
}

.solution-details-section.sub-details .banner-inner .banner-description {
    letter-spacing: 0px;
    color: #3E5468;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 0px auto 20px auto;
    max-width: 72%
}

.solution-details-section.sub-details .banner-listing-items {
    max-width: 75%;
    margin-bottom: 60px
}

.solution-details-section.sub-details .banner-listing-items .item-list::after {
    display: none
}

.solution-details-section.sub-details .banner-listing-items .item-list {
    background-color: rgba(255, 255, 255, 0.5);
    min-height: 60px;
    min-width: 100%
}

.solution-details-section.sub-details .banner-listing-items .rounded-section {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 150px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 40px;
    margin: 0 0 30px 0
}

.banner-listing-items .banner-sub-title {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0px auto 25px auto;
    text-align: center
}

.solution-details-section.sub-details .banner-listing-items .rounded-section .banner-description {
    max-width: 80%;
    margin: 0 auto;
    text-align: center
}

.max-w-100 {
    max-width: 100% !important
}

.solution-details-section.sub-details .banner-listing-items.sub-items {
    margin-bottom: 0
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list {
    min-height: auto;
    padding: 0
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title {
    font-size: 14px;
    color: #3E5468
}

.solution-details-section.sub-details .banner-listing-items.sub-items ul li .item-list {
    position: relative
}

.solution-details-section.sub-details .banner-listing-items.sub-items ul li .item-list::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1A1818;
    width: 6px;
    height: 6px;
    border-radius: 100%
}

.solution-details-section.sub-details .banner-listing-items.sub-items ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.solution-details-section.sub-details .banner-listing-items.sub-items ul li {
    display: inline-flex;
    margin: 0 10px 10px 10px
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title {
    min-width: 100%;
    margin: 0
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title a {
    color: #3E5468;
    font-weight: 600;
    padding: 10px 24px 10px 34px;
    display: inline-block
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title a:hover {
    color: #1A1818
}

.features-section .features-listing-details .heading-description {
    margin-bottom: 60px
}

.features-section .features-listing-details .heading-section {
    margin-bottom: 0
}

.features-section.sub-details {
    padding: 135px 0 75px 0
}

.solution-details-section.product .banner-listing-items.sub-items {
    max-width: 100%;
    position: relative;
    z-index: 1
}

.solution-details-section.product .banner-listing-items.sub-items ul li {
    margin: 5px 5px 5px 5px
}

.solution-details-section.product .banner-listing-items.sub-items ul li .item-list {
    padding: 0
}

.subnav-promo .subnav-promo-link:hover {
    text-decoration: none
}

.testimonial.inner-testimonial {
    background-image: none
}

.testimonial.inner-testimonial .testimonialSlider .item {
    background-image: url(../images/cayman-home-page/testimonial-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

@media (min-width: 1200px) {
    .zig-zag-section .container {
        max-width: 1000px
    }
}

@media (min-width: 1441px) {
    .zig-zag-section .container {
        max-width: 1200px
    }
}

.zig-zag-section .btn {
    border: 0
}

.zig-zag-section {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 0 20px 0;
    position: relative
}

.zig-zag-section .zig-zag-inner {
    padding: 70px;
    background: transparent linear-gradient(126deg, #DAE3F6 0%, #CBD5ED 100%) 0% 0% no-repeat padding-box;
    border-radius: 60px
}

.zig-zag-section .zig-zag-inner.express {
    background: transparent linear-gradient(224deg, #D5E9D5 0%, #CEE0CE 100%) 0% 0% no-repeat padding-box
}

.zig-zag-section .zig-zag-inner.express .details-section .details-items .image-wrap {
    box-shadow: var(--shadow-green)
}

.zig-zag-section .zig-zag-inner.payment {
    background: transparent linear-gradient(130deg, #FBDBD0 0%, #F5CDBF 100%) 0% 0% no-repeat padding-box
}

.zig-zag-section .zig-zag-inner.payment .details-section .details-items .image-wrap {
    box-shadow: var(--shadow-orange)
}

.zig-zag-section .zig-zag-inner.onboarding {
    background: transparent linear-gradient(228deg, #FFEBD4 0%, #FFE2C0 100%) 0% 0% no-repeat padding-box
}

.zig-zag-section .zig-zag-inner.onboarding .details-section .details-items .image-wrap {
    box-shadow: var(--shadow-light-orange)
}

.zig-zag-section .zig-zag-inner.onboarding .details-section .details-items .image-wrap img {
    width: 25px !important
}

.zig-zag-section .zig-zag-inner.intranet {
    background: transparent linear-gradient(127deg, #E3F6F5 0%, #D8EEEC 100%) 0% 0% no-repeat padding-box
}

.zig-zag-section .zig-zag-inner.intranet .details-section .details-items .image-wrap {
    box-shadow: var(--shadow-cyan)
}

.zig-zag-section .zig-zag-inner.outsourcing {
    background: transparent linear-gradient(220deg, #FEDAE1 0%, #F8D6DD 100%) 0% 0% no-repeat padding-box
}

.zig-zag-section .zig-zag-inner.outsourcing .details-section .details-items .image-wrap {
    box-shadow: var(--shadow-red)
}

.zig-zag-section .details-section .details-items .image-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #3A6FB680;
    border-radius: 100%;
    margin: 0 0 30px 0
}

.zig-zag-section .details-section .details-items .image-wrap img {
    max-width: 100%
}

.zig-zag-section .details-section .details-items .details-title {
    text-align: left;
    font-size: 48px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0 0 15px 0
}

.zig-zag-section .details-section .details-items .details-description {
    text-align: left;
    letter-spacing: 0px;
    color: #3E5468;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 0px 75px 0;
    max-width: 80%
}

.zig-zag-section .image-section img {
    width: 100%;
    max-width: 650px
}

.zig-zag-section .image-section {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.zig-zag-section:nth-of-type(odd) .zig-zag-inner .row > div:first-child {
    order: 2
}

.zig-zag-section:nth-of-type(odd) .zig-zag-inner .image-section {
    justify-content: flex-start
}

Footer .appDownloadBtn {
    margin-top: 40px
}

footer .appDownloadBtn .DownloadBtn .qrImg {
    width: 110px;
    height: 110px;
    margin-right: 35px
}

@media (max-width: 1600px) {
    .main-nav > .has-subnav > .has-subnav-link:after {
        top: 27px !important;
        height: 10px;
        width: 10px;
        right: -12px !important
    }

    .banner-listing-items.sub-details .item-list::after {
        top: 35px
    }

    .main-dropdown .mega-menu-title {
        font-size: 24px
    }

    .main-dropdown {
        width: 1000px
    }

    .subnav-promo .subnav-promo-header {
        font-size: 20px
    }

    .subnav-promo {
        padding: 25px 25px 25px 25px
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-title {
        font-size: 17px
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-description {
        max-width: 100%
    }

    .main-nav .subnav-title .menu-list-item .menu-details {
        min-height: 100px
    }

    .main-dropdown .mega-menu-title {
        margin: 0 0 10px 0
    }

    .main-dropdown.subnav {
        margin-left: -30%
    }

    footer .appDownloadBtn .DownloadBtn .qrImg {
        width: 80px;
        height: 80px;
        margin-right: 25px
    }

    footer .appDownloadBtn .DownloadBtn a img {
        max-width: 75%
    }

    .zig-zag-section .zig-zag-inner {
        padding: 50px
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 42px
    }

    .inner-banner-caption .banner-inner .banner-title {
        font-size: 58px;
        margin: 0px 0 20px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 36px;
        max-width: 70%
    }

    .inner-banner-section.tax-banner .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 32px
    }

    .inner-banner-caption .banner-inner .banner-description {
        font-size: 16px
    }

    .inner-banner-section.details-page .inner-banner-caption {
        margin: 0 auto 60px
    }

    .features-section {
        padding: 75px 0 75px 0
    }

    .heading-description {
        font-size: 16px
    }

    .solution-details-section.sub-details .banner-inner .banner-description {
        font-size: 16px
    }

    .solution-details-section.sub-details .banner-listing-items .i6em-list .list-title {
        font-size: 14px
    }

    .banner-listing-items.sub-details .item-list .list-title {
        font-size: 14px
    }

    .banner-listing-items .banner-sub-title {
        font-size: 22px;
        margin: 0px auto 15px auto
    }

    .solution-details-section.sub-details .banner-main-title {
        font-size: 36px
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section {
        margin: 0 0 20px 0
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section .banner-description {
        max-width: 85%
    }

    .inner-banner-caption .banner-inner .banner-description {
        max-width: 80%;
        margin: 0 auto
    }

    .inner-banner-section {
        padding: 60px 0 0px 0 !important
    }

    .inner-banner-section.connect-with-us-page {
        padding: 100px 0 0px 0 !important
    }
}

@media (max-width: 1440px) {
    .inner-banner-caption .banner-inner {
        margin: 0 0 40px 0
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-description {
        max-width: 100%
    }

    .breadcumb-section {
        padding: 25px 0 25px 0
    }

    .inner-banner-caption .banner-inner .banner-title {
        font-size: 48px
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 32px;
        max-width: 60%
    }

    .inner-banner-section.tax-banner .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 30px
    }

    .inner-banner-section::after {
        width: 900px
    }

    .solution-details-section .solution-inner-section {
        padding: calc(15vw + 65px) 0 110px 0
    }

    .heading-title {
        max-width: 75%
    }

    .heading-description {
        max-width: 70%
    }

    .megamenu-wrap .megamenu-wrap-inner {
        align-items: center
    }

    .subnav-promo .subnav-promo-description {
        margin: 0 0 80px 0;
        max-width: 100%
    }

    .banner-listing-items .item-list .list-title {
        font-size: 16px;
        max-width: 75%
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 38px
    }

    .zig-zag-section .image-section img {
        max-width: 525px
    }

    .zig-zag-section .details-section .details-items .details-description {
        max-width: 100%
    }
}

@media (max-width: 1366px) {
    header .header-logo img {
        max-width: 150px
    }

    .main-nav a {
        font-size: 16px;
        padding: 30px 24px
    }

    .main-dropdown {
        margin-left: -40%
    }

    .main-nav > .has-subnav > .has-subnav-link:after {
        right: -10px;
        top: 25px !important;
        width: 10px;
        height: 10px
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 36px
    }

    .hover .main-dropdown {
        transform: translateY(5px)
    }

    .inner-banner-caption .banner-inner .banner-title {
        font-size: 40px;
        margin: 0px 0 15px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 30px;
        max-width: 60%
    }

    .solution-details-section.sub-details .banner-main-title {
        font-size: 30px
    }

    .inner-banner-section.products-listing .banner-listing-items .item-list .list-title {
        max-width: 85%
    }

    .heading-description {
        max-width: 100%
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-description {
        font-size: 14px
    }
}

@media (max-width: 1299px) {
    .main-dropdown.subnav {
        margin-left: -40%
    }
}

@media (max-width: 1199px) {
    .hover .main-dropdown {
        transform: translateY(15px)
    }

    .main-dropdown.subnav {
        margin-left: -50%;
        display: inline-block
    }

    .main-dropdown.subnav .menu-list-scrollable {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden
    }

    .menu-list-scrollable::-webkit-scrollbar {
        width: 7px
    }

    .main-nav > li > a {
        padding: 12px 15px;
        font-size: 16px
    }

    .main-nav > .has-subnav > .has-subnav-link:after {
        right: -7px;
        top: 20px
    }

    .menu-list-scrollable {
        height: 350px
    }

    .main-nav .subnav-title .menu-list-item .menu-details {
        min-height: 70px
    }

    .megamenu-wrap .megamenu-wrap-inner .subnav-promo {
        display: none
    }

    .main-nav .has-subnav .more-links .subnav-sub-title {
        margin: 10px 0px 0px 0 !important;
        padding: 0 15px
    }

    .subnav-promo .subnav-promo-description {
        margin: 0 0 25px 0;
        max-width: 100%
    }

    .menu-list-scrollable {
        height: 100%
    }

    .inner-banner-section {
        padding: 85px 0 0px 0
    }

    .inner-banner-caption .banner-inner .banner-title {
        font-size: 42px;
        margin: 0px 0 20px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 24px
    }

    .inner-banner-section.tax-banner .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 22px
    }

    .inner-banner-caption .banner-inner {
        margin: 0 0 25px 0
    }

    .inner-banner-caption .banner-inner .banner-description {
        font-size: 15px
    }

    .inner-banner-section .inner-banner-caption {
        max-width: 100%
    }

    .inner-banner-section::after {
        width: 100%;
        height: 100%
    }

    .solution-details-section .solution-inner-section {
        padding: calc(24vw + 60px) 0 60px 0
    }

    .solution-details-section.sub-details .solution-inner-section {
        padding: calc(10vw + 60px) 0 60px 0
    }

    .features-section {
        padding: 80px 0 80px 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-title {
        font-size: 20px;
        margin: 0 0 10px 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-description {
        font-size: 14px;
        margin: 0 0 10px 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin: 0 20px 0 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .btn {
        padding: 5px 12px
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box {
        padding: 20px
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-title {
        font-size: 22px
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-description {
        font-size: 14px
    }

    .features-section .features-listing-details .heading-description {
        margin-bottom: 30px
    }

    .solution-details-section.sub-details .banner-listing-items .item-list .list-title {
        font-size: 14px;
        text-align: center
    }

    .banner-listing-items .item-list .list-title {
        max-width: 100%
    }

    .banner-listing-items.sub-details .item-list .list-title {
        font-size: 14px;
        max-width: 100%
    }

    .features-section.sub-details {
        padding: 80px 0 70px 0
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section {
        padding: 25px;
        margin: 0 0 0px 0
    }

    .solution-details-section.sub-details .banner-main-title {
        font-size: 24px;
        margin: 0px auto 10px auto
    }

    .inner-testimonial .testimonialSlider {
        margin: 25px 0 0
    }

    .heading-title {
        font-size: 42px
    }
}

@media (max-width: 1024px) {
    .inner-banner-section::before {
        background-position: top 0 center !important;
        top: 0
    }

    .main-dropdown {
        width: 920px
    }

    .zig-zag-section .details-section .details-items .image-wrap {
        width: 40px;
        height: 40px;
        margin: 0 0 20px 0
    }

    .zig-zag-section .details-section .details-items .image-wrap img {
        max-width: 40%
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 26px
    }

    .zig-zag-section .details-section .details-items .details-description {
        margin: 0 0px 40px 0;
        max-width: 100%
    }
}

@media (max-width: 991px) {
    .main-dropdown.subnav .menu-list-scrollable {
        max-height: 300px;
        padding-right: 10px
    }

    .main-nav a.mobile-link {
        display: block
    }

    .subnav-promo {
        display: none
    }

    .main-nav-wrap .main-nav {
        background: #EEF3F3;
        border-radius: 11px;
        margin: 10px 0 15px
    }

    .main-nav-wrap .main-nav > li > a {
        letter-spacing: 0px;
        color: #1A1818;
        font-size: 18px;
        line-height: 110%;
        font-weight: 500;
        margin: 0;
        width: 100%;
        padding: 15px !important
    }

    .main-nav-wrap .main-nav > li > a.has-subnav-link {
        right: 0px !important;
        margin: 0
    }

    .main-nav > .has-subnav > .has-subnav-link:after {
        content: "" !important;
        float: none;
        font-size: 75%;
        background-image: url(../images/home/icon-arrow-down.svg);
        background-repeat: no-repeat;
        background-position: center;
        height: 35px;
        width: 35px;
        position: absolute;
        right: 3px !important;
        top: 8px !important;
        transform: rotate(-90deg);
        background-color: transparent;
        border-radius: 50%
    }

    .main-dropdown {
        width: 100%;
        overflow-x: hidden
    }

    .main-dropdown.subnav {
        margin-left: 0;
        max-height: calc(100vh - 200px);
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
        padding: 15px
    }

    .main-dropdown.subnav .go-back {
        position: relative;
        width: 100px
    }

    .main-dropdown.subnav .go-back:after {
        content: "";
        background-image: url(../images/right-arrow.svg);
        background-repeat: no-repeat;
        height: 25px;
        width: 25px;
        position: absolute;
        left: 5px;
        top: 9px;
        transform: rotate(180deg)
    }

    .main-dropdown.subnav .go-back .ion-arrow-left-c {
        display: none
    }

    .main-dropdown.subnav .go-back a {
        padding: 10px 10px 10px 40px !important;
        color: #1a1818;
        margin: 0 10px 0 0
    }

    .has-subnav .subnav-header {
        letter-spacing: 0px !important;
        color: #1A1818 !important;
        font-size: 22px !important;
        line-height: 110% !important;
        font-weight: 600 !important;
        margin-right: 10px !important
    }

    li.has-subnav:hover .mobile-link, li.has-subnav:hover a {
        color: #1A1818
    }

    .has-subnav .subnav-header {
        display: none
    }

    li.has-subnav {
        position: relative
    }

    .main-nav-wrap .main-nav > li > a.has-subnav-link {
        right: 0px !important;
        top: 0;
        color: transparent;
        width: 50px;
        position: absolute;
        color: transparent !important
    }

    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .subnav-title {
        text-decoration: none;
        background: #ffffff;
        border-radius: 11px;
        padding: 18px 20px;
        border: none;
        margin: 0;
        letter-spacing: 0px;
        color: #1A1818;
        font-size: 16px;
        line-height: 110%;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%
    }

    .menu-list-scrollable {
        padding: 0
    }

    .main-nav .subnav-title .menu-list-item {
        display: flex;
        align-items: flex-start;
        min-height: auto
    }

    .main-nav .subnav-title .menu-list-item .menu-details {
        min-height: 50px
    }

    .main-nav .subnav-title .menu-list-item .menu-icon {
        display: inline-flex;
        width: 20px;
        margin: 0 15px 0 0
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-title {
        letter-spacing: 0px;
        color: #1A1818;
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        margin: 0 0 10px 0
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-description {
        text-align: left;
        letter-spacing: 0px;
        color: #3E5468;
        font-size: 14px;
        line-height: 115%;
        margin: 0;
        display: none
    }

    .main-dropdown .mega-menu-title {
        text-align: left;
        font-size: 36px;
        line-height: 110%;
        font-weight: 600;
        letter-spacing: 0px;
        color: #1A1818;
        margin: 0 0 20px 0
    }

    .has-subnav-link.subnav-header::after {
        display: none
    }

    .menu-list-scrollable {
        height: auto
    }

    .main-nav .has-subnav .more-links .subnav-sub-title img {
        margin-left: 10px
    }

    .main-nav .has-subnav .more-links .subnav-sub-title {
        font-size: 14px
    }

    .subnav-promo {
        border: none;
        background: #1A1818;
        border-radius: 11px;
        padding: 20px
    }

    .subnav-promo .subnav-promo-header {
        text-align: left;
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        letter-spacing: 0px;
        color: #FFFFFF;
        margin: 0 0 10px 0
    }

    .subnav-promo .subnav-promo-description {
        text-align: left;
        font-weight: 500;
        font-size: 16px;
        line-height: 145%;
        letter-spacing: 0px;
        color: #FFFFFF;
        margin: 0 0 25px 0;
        max-width: 100%
    }

    .subnav-promo .subnav-promo-link {
        text-align: left;
        font-weight: 600;
        font-size: 12px;
        line-height: 125%;
        margin: 0;
        letter-spacing: 0px;
        color: #FFFFFF;
        text-transform: uppercase
    }

    .more-links {
        padding-right: calc(var(--bs-gutter-x) * .5)
    }

    .inner-banner-caption .banner-inner .banner-title {
        font-size: 32px;
        margin: 0px 0 15px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 22px
    }

    .inner-banner-section::after {
        height: 100%
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 24px
    }

    .zig-zag-section .zig-zag-inner {
        padding: 35px
    }

    .zig-zag-section .image-section img {
        max-width: 100%
    }

    .inner-banner-caption .banner-inner .banner-description {
        padding: 0 15px
    }

    .solution-listing .solution-ul .solution-ul-li {
        max-width: 325px
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item {
        padding: 20px
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-title {
        font-size: 20px
    }

    .features-section {
        padding: 60px 0 60px 0
    }

    .heading-title {
        font-size: 24px;
        max-width: 80%
    }

    .heading-description {
        font-size: 15px
    }

    .heading-section {
        margin: 0 0 40px 0
    }

    .heading-section .heading {
        margin: 0 0 20px 0
    }

    .features-inner-section .image-section {
        text-align: center
    }

    .features-inner-section .image-section img {
        max-width: 70%;
        margin: 0 auto;
        text-align: center
    }

    .image-section {
        text-align: center
    }

    .image-section img {
        max-width: 70%;
        margin: 0 auto;
        text-align: center
    }

    .solution-details-section.sub-details .banner-main-title {
        max-width: 60%
    }

    .banner-listing-items.sub-details {
        max-width: 100%;
        margin-bottom: 40px
    }

    .solution-details-section.sub-details .banner-inner .banner-description {
        max-width: 100%
    }

    .solution-details-section.sub-details .banner-listing-items {
        margin-bottom: 20px;
        max-width: 90%
    }

    .features-section.sub-details {
        padding: 60px 0 60px 0
    }

    .solution-details-section.sub-details .banner-inner .banner-description {
        font-size: 14px
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section .banner-description {
        max-width: 90%;
        font-size: 14px
    }

    .solution-details-section.product .banner-listing-items.sub-items ul li .item-list {
        margin: 0
    }

    .features-listing-wrap .features-item-list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center
    }

    .features-listing-wrap .features-item-list .features-item {
        width: calc(50% - 30px)
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-description {
        min-height: 80px
    }

    .features-listing-wrap .features-item-list .features-item + .features-item {
        margin: 0
    }
}

@media (max-width: 767px) {
    .inner-banner-section.details-page {
        background: transparent linear-gradient(180deg, #CBD5ED 0%, #FFFFFF 0%) 0% 0% no-repeat padding-box
    }

    .inner-banner-section::after {
        background-size: contain
    }

    .inner-banner-section.products-listing .banner-listing-items .item-list .list-title {
        max-width: 100%
    }

    .banner-listing-items .item-list {
        padding: 15px 20px;
        border-radius: 20px !important;
        text-align: center
    }

    .banner-listing-items .item-list .list-title {
        text-align: center
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-title {
        font-size: 16px
    }

    .main-nav .subnav-title .menu-list-item .menu-details {
        min-height: auto
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-description {
        display: none
    }

    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .subnav-title {
        width: 100%
    }

    .main-nav .subnav-title .menu-list-item .menu-details .menu-title {
        margin: 0
    }

    .main-dropdown.subnav {
        max-height: 485px
    }

    footer .appDownloadBtn a + a {
        margin-left: 0;
        margin-top: 10px
    }

    .zig-zag-section:nth-of-type(odd) .zig-zag-inner .image-section {
        justify-content: center
    }

    .zig-zag-section:nth-of-type(odd) .zig-zag-inner .row > div:first-child {
        order: 1
    }

    .zig-zag-section:nth-of-type(even) .zig-zag-inner .row > div:first-child {
        order: 2
    }

    .zig-zag-section .details-section .details-items .details-description {
        margin: 0 0px 15px 0
    }

    .zig-zag-section .details-section .details-items .image-wrap {
        width: 30px;
        height: 30px;
        margin: 0 0 10px 0
    }

    .zig-zag-section .details-section .details-items .details-title {
        font-size: 20px
    }

    .zig-zag-section .details-section .details-items .details-description {
        font-size: 14px
    }

    .zig-zag-section .zig-zag-inner {
        padding: 30px
    }

    .zig-zag-section .details-section .details-items .details-title {
        margin: 0 0 10px 0
    }

    .btn {
        font-size: 12px
    }

    footer .appDownloadBtn .DownloadBtn a img {
        max-width: 100%
    }

    footer .appDownloadBtn .DownloadBtn .qrImg {
        width: 90px;
        height: 90px;
        margin-right: 15px
    }

    .inner-banner-caption .banner-inner .banner-title {
        margin: 0px 0 10px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 20px
    }

    .inner-banner-caption .banner-inner .banner-description {
        font-size: 14px;
        max-width: 100%
    }

    .inner-banner-section.details-page .inner-banner-caption {
        margin: 0 auto 40px;
        max-width: 100%
    }

    .banner-listing-items .item-list .list-title {
        font-size: 13px
    }

    .banner-listing-items .item-list {
        min-width: 100%;
        justify-content: center
    }

    .solution-details-section .solution-inner-section {
        padding: calc(24vw + 40px) 0 40px 0
    }

    .solution-listing .solution-ul .solution-ul-li {
        max-width: 47%
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-title {
        font-size: 18px;
        max-width: 65%
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item {
        padding: 15px
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-description {
        font-size: 13px
    }

    .features-section {
        padding: 50px 0 50px 0
    }

    .heading-title {
        font-size: 26px;
        margin: 0 auto 15px auto
    }

    .heading-section {
        margin: 0 0 25px 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0 15px 0 0
    }

    .banner-listing-items .item-list::after {
        content: none !important
    }

    .features-section .features-listing-details .heading-description {
        margin-bottom: 15px
    }

    .solution-details-section.sub-details .banner-main-title {
        max-width: 100%
    }

    .solution-details-section.sub-details .banner-main-title {
        font-size: 20px
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section {
        padding: 15px;
        border-radius: 25px
    }

    .solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title {
        font-size: 14px
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        max-width: 100%
    }

    .breadcumb-section {
        display: none
    }

    .features-listing-wrap .features-item-list {
        gap: 0;
        flex-direction: column
    }

    .features-listing-wrap .features-item-list .features-item {
        width: 100%
    }

    .features-listing-wrap .features-item-list .features-item + .features-item {
        margin-top: 25px
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-description {
        min-height: auto
    }

    .hrhubNumbers .numberContent p {
        font-size: 14px
    }

    .details-items {
        padding: 15px 15px 0
    }
}

@media (max-width: 576px) {
    .zig-zag-section .details-section .details-items .image-wrap svg {
        max-width: 50%
    }

    .inner-banner-caption .banner-inner .banner-title {
        margin: 0px 0 10px 0;
        font-size: 30px
    }

    .inner-banner-caption .banner-inner .banner-main-title {
    }

    .inner-banner-caption .banner-inner .banner-description {
        line-height: 140%
    }

    .inner-banner-caption .banner-inner .banner-description {
        padding: 0 15px;
        margin-bottom: 10px
    }

    .breadcumb-section {
        padding: 10px 0 10px 0
    }

    .zig-zag-section .zig-zag-inner {
        padding: 30px 20px;
        border-radius: 30px
    }

    header .header-logo img {
        max-width: 120px
    }

    a.header-logo {
        height: 60px
    }

    header .header-logo, header .header-btns {
        padding: 0px 0
    }

    header .header-logo {
        max-width: max-content
    }

    .heading-title {
        max-width: 100%
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section {
        border-radius: 24px;
        max-width: 100%
    }

    .main-nav .subnav-title .menu-list-item {
        min-height: auto
    }

    .banner-listing-items .gap {
        width: 100%
    }
}

@media (max-width: 479px) {
    .zig-zag-section .details-section .details-items .details-title {
        font-size: 18px;
        margin: 0 0 5px 0
    }

    .inner-banner-caption .banner-inner .banner-main-title {
        font-size: 24px
    }

    .breadcumb-section .breadcrumb-item {
        font-size: 12px
    }

    .breadcumb-section .breadcrumb-item a {
        font-size: 12px
    }

    .banner-listing-items .item-list::after {
        left: 25px
    }

    .banner-listing-items .item-list .list-title {
        font-size: 14px;
        text-align: center
    }

    .inner-banner-section.details-page .inner-banner-caption {
        margin: 0 auto 30px
    }

    .solution-details-section .solution-inner-section {
        padding: calc(24vw + 30px) 0 30px 0
    }

    .solution-listing .solution-ul .solution-ul-li {
        max-width: 100%;
        margin: 0 0 15px 0
    }

    .heading-title {
        font-size: 20px
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-details .menu-description {
        font-size: 14px
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        margin: 0 10px 0 0
    }

    .features-listing-wrap .features-item-list .features-item .features-item-box .menu-icon img {
        max-width: 50%
    }

    .features-section {
        padding: 40px 0 40px 0
    }

    .solution-details-section.sub-details .banner-listing-items .rounded-section .banner-description {
        max-width: 100%;
        font-size: 14px
    }

    .solution-details-section.sub-details .banner-main-title {
        font-size: 16px
    }

    .banner-listing-items .banner-sub-title {
        font-size: 18px;
        margin: 0px auto 10px auto
    }

    .breadcumb-section .breadcrumb-item + .breadcrumb-item {
        padding-left: 18px
    }

    .breadcumb-section .breadcrumb-item + .breadcrumb-item::before {
        left: 7px
    }
}

@media (max-width: 379px) {
    .banner-listing-items .col-6.gap {
        flex: 0 0 auto;
        width: 100%
    }

    .solution-listing .solution-ul .solution-ul-li .solution-ul-li-item .solution-title {
        max-width: 100%
    }

    .banner-listing-items .item-list {
        min-height: auto
    }

    .banner-listing-items .item-list .list-title {
        max-width: 100%
    }
}

.product-listing-section {
    display: block;
    width: 100%;
    padding: 100px 0 100px 0;
    position: relative
}

.product-accordion-wrapper {
    margin: 0 auto;
    max-width: 1170px
}

.product-accordion-wrapper .btn {
    border: 0
}

.product-accordion-wrapper .cards {
    padding: 15px;
    display: flex;
    flex-flow: row wrap
}

.product-accordion-wrapper .card {
    margin: 15px;
    width: calc((100% / 3) - 30px);
    border: none
}

.product-accordion-wrapper .card:hover .card__inner {
}

.product-accordion-wrapper .card__inner {
    width: 100%;
    position: relative;
    cursor: pointer;
    text-align: left;
    background: transparent linear-gradient(134deg, #D5E9D5 0%, #C2E5C2 100%) 0% 0% no-repeat padding-box;
    padding: 20px 30px;
    border-radius: 20px
}

.product-accordion-wrapper .card.card.is-collapsed .curveBoxR, .product-accordion-wrapper .card.card.is-collapsed .curveBoxL {
    opacity: 0
}

.product-accordion-wrapper .card .curveBoxR, .product-accordion-wrapper .card .curveBoxL {
    bottom: 0;
    height: 40px;
    width: 40px;
    display: inline-block;
    position: absolute;
    z-index: -1
}

.product-accordion-wrapper .card .curveBoxR {
    right: -40px
}

.product-accordion-wrapper .card .curveBoxL {
    left: -40px
}

.product-accordion-wrapper .card .curveBoxR:before, .product-accordion-wrapper .card .curveBoxL:before {
    position: absolute;
    content: "";
    height: 60px;
    width: 50px;
    border-radius: 135px;
    background-color: #ffffff;
    top: -20px
}

.product-accordion-wrapper .card .curveBoxR:before {
    left: 0
}

.product-accordion-wrapper .card .curveBoxL:before {
    right: 0
}

.product-accordion-wrapper .card.is-expanded > .curveBoxR, .product-accordion-wrapper .card.is-expanded > .curveBoxL {
    opacity: 1
}

.product-accordion-wrapper .menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px #3A6FB680;
    border-radius: 100%;
    margin: 0 0 15px 0
}

.product-accordion-wrapper .menu-details .menu-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0;
    min-height: 50px;
    max-width: 80%;
    display: flex;
    align-items: center
}

.product-accordion-wrapper .menu-icon img {
    max-width: 100%
}

.product-accordion-wrapper .card__inner .box-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    transition: all 0.3s ease-in-out
}

.product-accordion-wrapper .card__inner:after {
}

.product-accordion-wrapper .card__inner .fa {
    width: 100%;
    margin-top: 0.25em
}

.product-accordion-wrapper .card__expander {
    width: 100%;
    position: relative
}

.product-accordion-wrapper .card__expander .fa {
    font-size: 0.75em;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer
}

.product-accordion-wrapper .card__expander .fa:hover {
    opacity: 0.9
}

.product-accordion-wrapper .card.is-collapsed .card__inner:after {
    content: "";
    opacity: 0
}

.product-accordion-wrapper .card.is-collapsed .card__expander {
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0
}

.product-accordion-wrapper .card.is-expanded .card__expander {
    max-height: 1000px;
    min-height: 200px;
    overflow: visible;
    opacity: 1;
    z-index: 1;
    padding: 50px;
    border-radius: 50px
}

.product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-details-title {
    text-align: left;
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0 0 25px 0
}

.product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-description {
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #3E5468;
    margin: 0 0 20px 0
}

.product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-list {
    margin: 0 0 50px 0;
    padding: 0 0 0 15px
}

.product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-list li {
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #3E5468
}

.product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-list li + li {
    margin: 10px 0 0 0
}

.product-accordion-wrapper .card.is-expanded:hover .card__inner {
}

.product-accordion-wrapper .card.is-inactive .card__inner {
    pointer-events: none;
    opacity: 0.5
}

.product-accordion-wrapper .card.is-inactive:hover .card__inner {
    background-color: #949fb0
}

.product-accordion-wrapper .card.is-expanded .card__inner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 20px 30px 50px 30px
}

.product-accordion-wrapper .card.is-expanded .card__inner .box-btn {
    top: 15px;
    transform: translateY(10px)
}

.product-accordion-wrapper .card.bg_blue .card__inner {
    background: transparent linear-gradient(130deg, #DAE3F6 0%, #C7D4F5 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_blue .card__inner, .product-accordion-wrapper .card.is-expanded.bg_blue .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_blue .curveBoxL {
    background: #DAE3F6
}

.product-accordion-wrapper .card.bg_green .card__inner {
    background: transparent linear-gradient(134deg, #D5E9D5 0%, #C2E5C2 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_green .card__inner, .product-accordion-wrapper .card.is-expanded.bg_green .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_green .curveBoxL {
    background: #D5E9D5
}

.product-accordion-wrapper .card.bg_red .card__inner {
    background: transparent linear-gradient(134deg, #FBDBD0 0%, #FFC8B5 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_red .card__inner, .product-accordion-wrapper .card.is-expanded.bg_red .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_red .curveBoxL {
    background: #FBDBD0
}

.product-accordion-wrapper .card.bg_orange .card__inner {
    background: transparent linear-gradient(130deg, #FFEBD4 0%, #FFE2C0 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_orange .card__inner, .product-accordion-wrapper .card.is-expanded.bg_orange .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_orange .curveBoxL {
    background: #FFEBD4
}

.product-accordion-wrapper .card.bg_pink .card__inner {
    background: transparent linear-gradient(134deg, #FEDAE1 0%, #F8D6DD 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_pink .card__inner, .product-accordion-wrapper .card.is-expanded.bg_pink .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_pink .curveBoxL {
    background: #FEDAE1
}

.product-accordion-wrapper .card.bg_cyan .card__inner {
    background: transparent linear-gradient(134deg, #E3F6F5 0%, #D8EEEC 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.is-expanded.bg_cyan .card__inner, .product-accordion-wrapper .card.is-expanded.bg_cyan .curveBoxR, .product-accordion-wrapper .card.is-expanded.bg_cyan .curveBoxL {
    background: #E3F6F5
}

.product-accordion-wrapper .card:nth-child(3n + 1) .card__expander {
    border-top-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -ms-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0
}

.product-accordion-wrapper .card:nth-child(3n + 3) .card__expander {
    border-top-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    -ms-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0
}

.product-accordion-wrapper .card:nth-child(3n + 1) .curveBoxL {
    display: none
}

.product-accordion-wrapper .card:nth-child(3n + 3) .curveBoxR {
    display: none
}

.product-accordion-wrapper .card.bg_blue .card__expander {
    background: transparent linear-gradient(170deg, #DAE3F6 0%, #C7D4F5 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_green .card__expander {
    background: transparent linear-gradient(175deg, #D5E9D5 0%, #C2E5C2 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_red .card__expander {
    background: transparent linear-gradient(185deg, #FBDBD0 0%, #FFC8B5 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_orange .card__expander {
    background: transparent linear-gradient(160deg, #FFEBD4 0%, #FFE2C0 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_pink .card__expander {
    background: transparent linear-gradient(194deg, #FEDAE1 0%, #F8D6DD 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_cyan .card__expander {
    background: transparent linear-gradient(194deg, #E3F6F5 0%, #D8EEEC 100%) 0% 0% no-repeat padding-box
}

.product-accordion-wrapper .card.bg_blue .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #3A6FB64D
}

.product-accordion-wrapper .card.bg_green .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #2E934D4D
}

.product-accordion-wrapper .card.bg_red .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #D537324D
}

.product-accordion-wrapper .card.bg_orange .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #FB8B0A4D
}

.product-accordion-wrapper .card.bg_pink .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #9E0C4D4D
}

.product-accordion-wrapper .card.bg_cyan .card__inner .menu-icon {
    box-shadow: 0px 0px 20px #57BCB54D
}

@media screen and (min-width: 992px) {
    .product-accordion-wrapper .card:nth-of-type(3n+2) .card__expander {
        margin-left: calc(-100% - 30px)
    }

    .product-accordion-wrapper .card:nth-of-type(3n+3) .card__expander {
        margin-left: calc(-200% - 60px)
    }

    .product-accordion-wrapper .card:nth-of-type(3n+4) {
        clear: left
    }

    .product-accordion-wrapper .card__expander {
        width: calc(300% + 60px)
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .product-accordion-wrapper .card:nth-of-type(2n+2) .card__expander {
        margin-left: calc(-100% - 30px)
    }

    .product-accordion-wrapper .card:nth-of-type(2n+3) {
        clear: left
    }

    .product-accordion-wrapper .card__expander {
        width: calc(200% + 30px)
    }
}

@media screen and (max-width: 1199px) {
    .product-accordion-wrapper .menu-details .menu-title {
        min-height: 80px
    }
}

@media screen and (max-width: 1024px) {
    .product-listing-section {
        padding: 50px 0
    }

    .product-accordion-wrapper .menu-details .menu-title {
        font-size: 20px;
        line-height: 125%
    }
}

@media screen and (max-width: 991px) {
    .product-accordion-wrapper .card {
        width: calc((100% / 2) - 30px)
    }

    .product-accordion-wrapper .card.is-expanded .card__expander {
        border-radius: 25px
    }

    .product-accordion-wrapper .card:nth-child(2n + 1) .card__expander {
        border-top-left-radius: 0;
        -webkit-border-top-left-radius: 0;
        -ms-border-top-left-radius: 0;
        -moz-border-top-left-radius: 0
    }

    .product-accordion-wrapper .card:nth-child(2n + 2) .card__expander {
        border-top-right-radius: 0;
        -webkit-border-top-right-radius: 0;
        -ms-border-top-right-radius: 0;
        -moz-border-top-right-radius: 0
    }

    .product-accordion-wrapper .card:nth-child(2n + 1) .curveBoxL {
        display: none
    }

    .product-accordion-wrapper .card:nth-child(2n + 2) .curveBoxR {
        display: none
    }

    .product-accordion-wrapper .card:nth-child(3n + 3) .card__expander {
        border-radius: 25px;
        border-top-right-radius: 0;
        -webkit-border-top-right-radius: 0;
        -ms-border-top-right-radius: 0;
        -moz-border-top-right-radius: 0
    }

    .product-accordion-wrapper .card:nth-child(2n + 2) .card__expander {
        border-radius: 25px
    }
}

@media screen and (max-width: 767px) {
    .product-accordion-wrapper .menu-details .menu-title {
        min-height: auto
    }

    .product-accordion-wrapper .card {
        width: 100%;
        margin: 0 0 15px 0
    }

    .product-accordion-wrapper .cards {
        padding: 0
    }

    .product-accordion-wrapper .card .curveBoxR, .product-accordion-wrapper .card .curveBoxL {
        display: none
    }

    .product-accordion-wrapper .card .card__expander {
        border-radius: 0 0 25px 25px !important
    }

    .product-accordion-wrapper .card.is-expanded .card__inner {
        padding: 20px 30px 0 30px
    }

    .product-accordion-wrapper .card.is-expanded .card__expander {
        padding: 25px
    }

    .product-accordion-wrapper .card.is-expanded .card__expander .card-section .card-details .card-details-title {
        font-size: 24px
    }

    .image-section img {
        max-width: 100%
    }
}

.industriesPage_list {
    position: relative;
    z-index: 1
}

.industriesPage_list .industriesBox {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 60px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    padding: 70px;
    color: #ffffff;
    overflow: hidden;
    margin: 0 10px 30px
}

.industriesPage_list .industriesBox:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat
}

.industriesPage_list .industriesBox:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.125);
    z-index: -1
}

.industriesPage_list .industriesBox.gradient1:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #7C9ACF 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient2:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #B5D17E 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient3:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #FFB463 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient4:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #96D3CF 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient5:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #6D87C3 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient6:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #7CB385 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient7:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #E47D69 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox.gradient8:before {
    background: transparent linear-gradient(180deg, #00000000 35%, #7C9ACF 85%) 0% 0% no-repeat padding-box
}

.industriesPage_list .industriesBox .indsBoxTitle {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    line-height: 110%;
    position: relative;
    margin-bottom: 25px
}

.industriesPage_list .industriesBox .indsBoxDesc {
    color: #ffffff;
    font-size: 16px;
    line-height: 150%;
    position: relative
}

.industriesPage_list .industriesBox .btn {
    margin-top: 60px;
    border: 0
}

.industriesPage_list .industriesBox.induslistMargin {
    margin-top: 50%
}

.inner-banner-section.industries_page {
    background: transparent linear-gradient(180deg, #E4F5C3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.inner-banner-section.industries_page:before {
    content: '';
    position: absolute;
    background-image: url(../images/green-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: -1
}

.solution-details-section.industries_detail.sub-details:before {
    content: '';
    position: absolute;
    background-image: url(../images/industries-page/indus-detail-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 100%;
    width: 100%
}

.industries_detail {
    background: #E4F5C3 0% 0% no-repeat padding-box
}

.solution-details-section.industries_detail::after {
    z-index: 0
}

.otherLinks .otherLinkstitle {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0px auto 25px auto;
    text-align: center
}

.otherLinks {
    margin-top: 100px
}

.otherLinks .otherLinksList {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.otherLinks .otherLinksList li {
    margin: 5px 5px 5px 5px;
    display: inline-flex
}

.otherLinks .otherLinksList li .item-list {
    position: relative;
    background-color: #EEF0F9;
    border-radius: 30px;
    margin: 0 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.otherLinks .otherLinksList li .item-list .list-title {
    margin: 0;
    line-height: 100%
}

.otherLinks .otherLinksList li .item-list .list-title a {
    font-weight: 600;
    padding: 10px 24px 10px 34px;
    display: inline-block
}

.otherLinks .otherLinksList li .item-list a {
    color: #3E5468;
    font-size: 14px;
    font-weight: 500
}

.otherLinks .otherLinksList li .item-list a:hover {
    color: #000000
}

.otherLinks .otherLinksList li .item-list:before {
    content: '';
    position: absolute;
    top: 19px;
    left: 15px;
    background-color: #1A1818;
    width: 6px;
    height: 6px;
    border-radius: 100%
}

@media (max-width: 1440px) {
    .industriesPage_list .industriesBox {
        padding: 50px;
        min-height: 600px
    }

    .industriesPage_list .industriesBox .indsBoxTitle {
        font-size: 40px
    }
}

@media (max-width: 1199px) {
    .industriesPage_list .industriesBox {
        padding: 30px;
        min-height: 550px;
        border-radius: 40px
    }

    .industriesPage_list .industriesBox:before {
        background-size: 100%;
        background-position: bottom
    }

    .industriesPage_list .industriesBox .indsBoxTitle {
        font-size: 36px
    }

    .industriesPage_list .industriesBox .btn {
        margin-top: 30px
    }
}

@media (max-width: 991px) {
    .industriesPage_list .industriesBox.induslistMargin {
        margin-top: 0
    }

    .industriesPage_list .industriesBox {
        padding: 30px;
        min-height: 400px
    }
}

@media (max-width: 767px) {
    .industriesPage_list .industriesBox .btn {
        margin-top: 15px
    }
}

@media (max-width: 379px) {
    .industriesPage_list .industriesBox .indsBoxTitle {
        font-size: 30px
    }
}

.inner-banner-section.blog_page {
    background: transparent linear-gradient(180deg, #FFE2C0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    background-position: top center
}

.inner-banner-section.blog_page::before {
    background-image: url(../images/orange-patch.webp)
}

.inner-banner-section.blog_page .inner-banner-caption .banner-inner {
    margin: 0 0 50px 0
}

.blogContent .blogCarousel .blogLatestBox {
    border-radius: 40px;
    overflow: hidden;
    position: relative
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.25)
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
    color: #ffffff;
    font-size: 48px;
    line-height: 110%;
    max-width: 80%;
    margin-bottom: 25px;
    font-weight: 600
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags {
    width: 100%
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li, .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
    font-size: 14px;
    padding: 5px 15px;
    color: #ffffff;
    background-color: rgb(26 24 24 / 60%);
    border-radius: 15px;
    list-style: none
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
    background-color: transparent;
    padding: 0
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a:hover {
    color: #a3c8fb
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li + li {
    margin-left: 10px
}

.blogContent .blogCarousel .owl-nav {
    display: none
}

@media (max-width: 1440px) {
    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
        font-size: 40px
    }

    .inner-banner-section.blog_page .inner-banner-caption .banner-inner {
        margin: 0 0 35px 0
    }
}

@media (max-width: 1199px) {
    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
        font-size: 30px;
        max-width: 80%;
        margin-bottom: 15px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent {
        padding: 25px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li, .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
        font-size: 13px;
        padding: 5px 8px
    }
}

@media (max-width: 991px) {
    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
        font-size: 24px;
        max-width: 90%;
        margin-bottom: 15px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li, .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
        font-size: 12px
    }
}

@media (max-width: 767px) {
    .blogContent .blogCarousel .blogLatestBox {
        border-radius: 20px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent {
        padding: 20px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .btn {
        padding: 5px 15px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
        margin-bottom: 0
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle {
        font-size: 18px;
        width: 100%
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul {
        flex-wrap: wrap
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li, .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
        padding: 3px 10px;
        font-size: 10px;
        margin-bottom: 3px
    }

    .blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogtags ul li a {
        padding: 0
    }
}

.blogListing {
    padding-bottom: 50px
}

.blogListing .nav {
    justify-content: center
}

.blogListing .nav.nav-tabs {
    border: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    justify-content: start
}

.blogListing .nav.nav-tabs::-webkit-scrollbar-thumb {
    background-color: #e0e0e0
}

.blogListing .nav-item .nav-link {
    color: var(--theme-black);
    padding: 0;
    font-size: 14px;
    min-width: auto;
    border: none !important;
    text-align: center;
    font-weight: 600;
    position: relative;
    background-color: #EEF0F9;
    border-radius: 20px;
    padding: 8px 20px;
    display: inline-block;
    white-space: nowrap
}

.blogListing .nav-item + .nav-item {
    margin: 0 0 0 10px
}

.blogListing .nav-item .nav-link::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #3067ff;
    left: 0;
    bottom: -5px;
    opacity: 0;
    border-radius: 11px
}

.blogListing .nav-item .nav-link.active, .blogListing .nav-item .nav-link:hover {
    color: #ffffff;
    background-color: var(--theme-black)
}

@media (min-width: 1199px) {
    .blogListing .pListmenuMobile {
        display: none
    }
}

.blog-card {
    margin-bottom: 50px
}

.blog-card .blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
    border-radius: 20px 20px 0 0
}

.blog-card .blog-card-img-wrap .card-img {
    position: relative;
    overflow: hidden;
    transition: .5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 6/4
}

.blog-card .blog-card-img-wrap .card-img img {
    transition: .5s ease-out;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 6/4;
    width: 100%
}

.blog-card .card-content {
    padding-top: 10px
}

.blog-card .card-content .blog-meta {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.blog-card .card-content .blog-meta .category {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px
}

.blog-card .card-content .blog-meta .category a {
    color: var(--theme-blue)
}

.blog-card .card-content .blog-meta .blog-comment {
    position: relative;
    padding: 5px 12px;
    line-height: 1;
    font-size: 14px;
    background-color: #ECECEC;
    border-radius: 20px
}

.blog-card .card-content .blogTitle {
    min-height: 120px;
    margin-bottom: 25px
}

.blog-card .card-content .blogTitle h4 {
    margin-bottom: 10px;
    font-size: 24px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600
}

.blog-card .card-content .blogTitle h4 a {
    color: var(--theme-black)
}

.blog-card .card-content .blogTitle h4 a:hover {
    color: var(--theme-blue)
}

.blog-card .card-content .date {
    font-size: 14px;
    color: var(--theme-gray)
}

.blog-card .card-content .blog-meta .blog-comment span {
    color: #3E5468
}

@media (max-width: 1440px) {
    .blog-card .card-content .blogTitle h4 {
        font-size: 22px
    }
}

@media (max-width: 1366px) {
    .blog-card .card-content .blogTitle {
        min-height: 100px
    }

    .blog-card .card-content .blogTitle h4 {
        font-size: 20px
    }
}

@media (max-width: 767px) {
    .blog-card .card-content .blogTitle {
        min-height: auto;
        margin-bottom: 15px
    }

    .blog-card {
        margin-bottom: 20px
    }
}

.inner-banner-section.blog_page.blogDetail_page::before {
    background-size: contain
}

.inner-banner-section.blog_page.blogDetail_page {
    background: transparent linear-gradient(180deg, #FFE2C0 0%, #FFFFFF 15%) 0% 0% no-repeat padding-box
}

.blogDetail .blogDetailTitle {
    font-size: 48px;
    color: var(--theme-black);
    line-height: 110%;
    margin: 25px 0 0;
    font-weight: 600
}

.blogDetail .blogDetailTags {
    display: flex;
    margin: 50px 0 20px;
    flex-wrap: wrap;
}

.blogDetail .blogDetailTags li {
    list-style: none;
    margin-bottom: 10px;
}

.blogDetail .blogDetailTags li + li {
    margin-left: 10px
}

.blogDetail .blogDetailTags li span, .blogDetail .blogDetailTags li a {
    font-size: 14px;
    padding: 5px 15px;
    color: var(--theme-black);
    background-color: rgb(255 255 255 / 40%);
    border-radius: 15px;
    list-style: none
}

.blogDetail .blogDetailTags li:first-child {
    border-right: 1px solid #1a1818;
    padding-right: 10px;
    margin-right: 0
}

.blogDetail .blogImage img {
    border-radius: 25px;
    max-width: 100%;
    margin-bottom: 50px
}

.cms h1, .cms h2, .cms h3, .cms h4, .cms h5, .cms h6 {
    color: var(--theme-black);
    font-weight: 600;
    margin-top: 50px
}

.cms h2 {
    font-size: 34px
}

.cms h3 {
    font-size: 28px
}

.cms p {
    color: var(--theme-gray);
    font-size: 18px;
    line-height: 150%
}

.cms img {
    max-width: 100%;
    border-radius: 20px
}

.cms a {
    color: var(--theme-blue);
    font-weight: 500
}

.blogDetail_right {
    margin-top: 35px
}

.blogDetail_right .categorySec {
    margin-bottom: 45px;
    display: flex;
    justify-content: end
}

.blogDetail_right .categorySec .categorySecTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-black);
    margin-bottom: 10px
}

.blogDetail_right .categorySec .categorySecList li {
    list-style: none;
    margin-bottom: 8px
}

.blogDetail_right .categorySec .categorySecList li a {
    position: relative;
    padding: 10px 15px 10px 35px;
    font-size: 14px;
    color: var(--theme-gray);
    background-color: var(--theme-light-blue);
    border-radius: 20px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    border: 1px solid transparent;
    display: inline-block
}

.blogDetail_right .categorySec .categorySecList li a:hover {
    background-color: white;
    border-color: var(--theme-blue)
}

.blogDetail_right .categorySec .categorySecList li a:before {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--theme-black);
    left: 18px;
    top: 17px
}

.blogDetail_right .categorySec .categorySecList li a span {
    margin-left: 20px;
    font-weight: 600
}

.blogDetail_right .blackBox {
    background-color: var(--theme-black);
    padding: 25px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    max-width: 315px
}

.blogDetail_right .blackBox .btn {
    font-size: 14px;
    border: 1px solid #ffffff
}

.blogDetail_right .blackBox.write-to-us {
    background-image: url(../images/logo-shape-1.png)
}

.blogDetail_right .blackBox.write-to-us .blackBoxTitle {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 125%;
    font-weight: 600;
    padding-right: 10%
}

.blogDetail_right .blackBox.socialShare {
    background-image: url(../images/logo-shape-2.png);
    margin-top: 20px
}

.blogDetail_right .blackBox.socialShare .blackBoxTitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 15px;
    padding-right: 10%
}

.blogDetail_right .blackBox.socialShare .blackBoxSubTitle {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 125%;
    font-weight: 500
}

.blogDetail_right .blackBox.socialShare ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.blogDetail_right .blackBox.socialShare ul li {
    list-style: none
}

.blogDetail_right .blackBox.socialShare ul li a {
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.blogDetail_right .blackBox.socialShare ul li a:hover {
    opacity: 0.65
}

@media (max-width: 1440px) {
    .cms h1, .cms h2, .cms h3, .cms h4, .cms h5, .cms h6 {
        color: var(--theme-black);
        font-weight: 600;
        margin-top: 35px
    }

    .blogDetail .blogDetailTitle {
        font-size: 40px
    }

    .blogDetail_right .blackBox.write-to-us .blackBoxTitle {
        font-size: 34px
    }

    .blogDetail_right .categorySec .categorySecList li a {
        padding: 8px 15px 8px 35px
    }

    .blogDetail_right .categorySec {
        margin-bottom: 25px
    }

    .cms p {
        font-size: 16px
    }
}

@media (max-width: 1024px) {
    .blogDetail .blogDetailTitle {
        font-size: 32px;
        margin: 0
    }

    .blogDetail .blogDetailTags {
        margin: 30px 0 15px;
        flex-wrap: wrap
    }

    .blogDetail .blogDetailTags li {
        margin-right: 10px;
        margin-bottom: 15px
    }

    .blogDetail .blogDetailTags li + li {
        margin-left: 0
    }

    .blogDetail .blogDetailTags li:first-child {
        border-right: 1px solid #1a1818;
        padding-right: 5px;
        margin-right: 5px
    }

    .cms h2 {
        font-size: 32px
    }

    .cms h3 {
        font-size: 24px
    }

    .cms p {
        color: var(--theme-gray);
        font-size: 16px;
        line-height: 150%
    }
}

@media (max-width: 991px) {
    .blogDetail_right .categorySec .categorySecList li {
        display: inline-block
    }

    .blogDetail_right .categorySec .categorySecList li:first-child {
        width: 100%
    }

    .blogDetail_right .blackBox.write-to-us .blackBoxTitle, .blogDetail_right .blackBox.socialShare .blackBoxTitle {
        padding: 0
    }

    .blogDetail_right .blackBoxSec {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        gap: 15px
    }

    .blogDetail_right .blackBox {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-around;
        width: 100%;
        max-width: 100%
    }

    .blogDetail_right .blackBox.socialShare {
        margin-top: 0
    }

    .cms img {
        border-radius: 10px
    }

    table {
        caption-side: bottom;
        border-collapse: collapse;
        width: 100%
    }
}

@media (max-width: 767px) {
    .blogDetail .blogDetailTitle {
        margin-top: 25px
    }

    .blogDetail_right .blackBox.write-to-us .blackBoxTitle {
        font-size: 28px
    }

    .blogDetail_right .blackBox.socialShare .blackBoxSubTitle {
        font-size: 16px;
        margin-bottom: 25px
    }

    .blogDetail_right .blackBox .btn {
        font-size: 13px
    }
}

@media (max-width: 575px) {
    .blogDetail_right .blackBoxSec {
        flex-direction: column;
        margin-bottom: 0
    }

    .blogDetail_right.write_for_us_blog_right_sec {
        align-items: center !important
    }

    .blogDetail_right .blackBox.write-to-us .blackBoxTitle, .blogDetail_right .blackBox.socialShare .blackBoxTitle {
        padding: 0
    }

    .blogDetail_right .categorySec .categorySecList li a {
        font-size: 12px
    }

    .blogDetail_right .categorySec .categorySecList li a:before {
        top: 15px
    }

    .blogSlider .item .blog-content .blogTag {
        font-size: 12px
    }

    .blogSlider .item .blog-content .blogViews {
        font-size: 10px;
        padding: 5px 10px
    }

    .blogSlider .item .blog-content .blogTitle {
        font-size: 14px
    }

    .blogDate {
        font-size: 12px
    }

    .btnText {
        font-size: 12px
    }
}

@media (max-width: 320px) {
    .date-box .wrapper table.table-condensed {
        transform: scale(0.94);
        transform-origin: left
    }
}

.solution-details-section.sub-details .banner-listing-items.sub-items .item-list .list-title .sub_details_other_links {
    font-weight: 600;
    padding: 10px 24px 10px 34px;
    display: inline-block
}

.banner-description-bottom .banner-description {
    letter-spacing: 0px;
    color: #3E5468;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin: 0px auto 20px auto;
    max-width: 72%;
    text-align: center
}

.aboutUs-page {
    background: transparent linear-gradient(180deg, #F9E5E5 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.inner-banner-section.aboutUs-page::before {
    content: '';
    position: absolute;
    background-image: url(../images/patch_redBg.webp);
    background-repeat: no-repeat;
    background-position: top -300px center;
    background-size: contain;
    height: 100%;
    width: 100%;
    z-index: -1
}

.aboutUs-page .abtUs-MainImg img {
    border-radius: 20px;
    max-width: 100%;
    width: 100%
}

.aboutUs-page .abtUs-count {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
    max-width: 100%
}

.aboutUs-page .abtUs-count .countBox {
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center
}

.aboutUs-page .abtUs-count .countBox .countBoxIcon {
    background-color: #ffffff;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.aboutUs-page .abtUs-count .countBox .countBoxIcon img {
    max-width: 24px
}

.aboutUs-page .abtUs-count .countBox.theme-light-red .countBoxIcon {
    box-shadow: 0px 0px 20px #9E0C4D33
}

.aboutUs-page .abtUs-count .countBox.theme-light-green .countBoxIcon {
    box-shadow: 0px 0px 20px #8ABB3833
}

.aboutUs-page .abtUs-count .countBox.theme-light-blue .countBoxIcon {
    box-shadow: 0px 0px 20px #3A6FB633
}

.aboutUs-page .abtUs-count .countBox .countBoxContent {
    margin-left: 25px
}

.aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
    font-size: 36px;
    font-weight: 600
}

.aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxSubTitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: #1A1818
}

.abtUs-multiBox {
    margin: 100px 0 125px
}

.abtUs-multiBox .abtUs-multiBox-slider .item {
    margin-top: 35px
}

.abtUs-multiBox .abtUs-multiBoxitem {
    min-height: 280px;
    padding: 0 30px 40px 30px;
    text-align: center;
    border-radius: 20px
}

.abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
    font-size: 24px;
    color: var(--theme-black);
    margin-bottom: 20px;
    font-weight: 600
}

.abtUs-multiBox .abtUs-multiBoxitem p {
    font-size: 16px;
    line-height: 150%;
    margin: 0;
    min-height: 90px;
    color: #1A1818
}

.abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxIcon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #ffffff;
    margin: 0 auto;
    position: relative;
    top: -33px
}

.abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxIcon img {
    max-width: 24px
}

.workingProcess {
    padding: 85px 0;
    background-image: url(../images/workingProcessBg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.workingProcess .heading-title {
    font-size: 48px
}

.workingProcess .workingProcessSlider {
    position: relative
}

.workingProcess .workingProcessSlider:before {
    position: absolute;
    content: "";
    height: 5px;
    width: 75%;
    border-bottom: 2px dashed #c7cdeb;
    opacity: 0.5;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 70px
}

.workingProcessSlider .workingProcessItem {
    text-align: center
}

.workingProcessSlider .workingProcessItem .workingProcessCircle {
    max-width: 168px;
    margin: 0 auto;
    position: relative
}

.workingProcessSlider .workingProcessItem .workingProcessCircle img {
    max-width: 100%
}

.workingProcessSlider .workingProcessItem .workingProcessCircle span {
    position: absolute;
    top: 35%;
    transform: translate(0, -35%);
    font-size: 46px;
    font-weight: 600;
    left: 0;
    right: 0
}

.workingProcessSlider .workingProcessItem .workingProcessContent .contentTitle {
    font-size: 30px;
    font-weight: 600
}

.workingProcessSlider .workingProcessItem .workingProcessContent p {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-black);
    max-width: 90%;
    margin: 0 auto
}

.hrhubNumbers {
    padding: 125px 0
}

.hrhubNumbers .numberBox {
    padding: 30px;
    border-radius: 20px;
    background-color: #FCF1F1
}

.hrhubNumbers .numberBox .numberBoxImg img {
    border-radius: 15px;
    width: 100%;
    margin-bottom: 30px
}

.hrhubNumbers .numberBox .numberBoxContent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.hrhubNumbers .numberBox .numberBoxContent .numberBoxInner {
    width: calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px #9E0C4D1A;
    padding: 10px 20px
}

.hrhubNumbers .numberBox .numberBoxContent .numberBoxInner .numberBoxCount {
    font-size: 36px;
    font-weight: 600;
    color: var(--theme-text-red)
}

.hrhubNumbers .numberBox .numberBoxContent .numberBoxInner .numberBoxTitle {
    font-size: 18px;
    font-weight: 500;
    color: #1A1818
}

.hrhubNumbers .numberContent {
    padding-left: 35px;
    background-image: url(../images/about-us/secBg.webp);
    background-repeat: no-repeat;
    background-position: center
}

.hrhubNumbers .numberContent .heading-section {
    margin: 0 0 50px 0
}

.hrhubNumbers .numberContent .heading-section .heading {
    background-color: #FCF1F1;
    color: var(--theme-text-red);
    text-align: left
}

.hrhubNumbers .heading-title {
    font-size: 48px;
    text-align: left
}

.hrhubNumbers .numberContent p {
    font-size: 18px
}

.hrhubNumbers .numberContent p + p {
    margin-bottom: 0
}

.milestone {
    margin-bottom: 100px
}

.milestone .heading-title {
    font-size: 36px;
    text-align: left
}

.milestone .heading-section {
    position: sticky;
    top: 130px
}

.milestone .milestoneList .milestoneBox {
    padding: 25px 30px;
    border-radius: 20px;
    margin: 0 0 50px 45px
}

.milestone .milestoneList .milestoneBoxMargin {
    margin-top: 50%
}

.milestone .milestoneList .milestoneBox.theme-light-blue {
    border-right: 5px solid var(--theme-text-blue)
}

.milestone .milestoneList .milestoneBox.theme-light-green {
    border-right: 5px solid var(--theme-text-green)
}

.milestone .milestoneList .milestoneBox.theme-light-orange {
    border-right: 5px solid var(--theme-text-orange)
}

.milestone .milestoneList .milestoneBox.theme-dark-orange {
    border-right: 5px solid var(--theme-text-dark-orange)
}

.milestone .milestoneList .milestoneBox.theme-light-red {
    border-right: 5px solid var(--theme-text-red)
}

.milestone .milestoneList .milestoneBox.theme-light-cyan {
    border-right: 5px solid var(--theme-text-cyan)
}

.milestone .milestoneList .milestoneBox .milestoneDate {
    font-size: 22px;
    opacity: 0.5
}

.milestone .milestoneList .milestoneBox .milestoneTitle {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 110%
}

.milestone .milestoneList .milestoneBox p {
    color: var(--theme-gray);
    font-size: 14px
}

@media (max-width: 1440px) {
    .workingProcess .heading-title {
        max-width: 70%
    }

    .hrhubNumbers .heading-title {
        max-width: 100%
    }

    .abtUs-multiBox {
        margin: 70px 0 100px
    }
}

@media (max-width: 1366px) {
    .aboutUs-page .abtUs-count {
        gap: 25px
    }

    .aboutUs-page .abtUs-count .countBox {
        padding: 13px 25px
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
        font-size: 32px
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxSubTitle {
        font-size: 18px
    }

    .abtUs-multiBox .abtUs-multiBoxitem {
        padding: 0 20px 30px 20px;
        min-height: 238px
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        font-size: 20px;
        margin-bottom: 15px
    }

    .abtUs-multiBox .abtUs-multiBoxitem p {
        font-size: 15px
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxIcon {
        margin: 0 auto -10px
    }

    .workingProcess .heading-section {
        margin: 0 0 30px 0
    }

    .workingProcessSlider .workingProcessItem .workingProcessContent p {
        max-width: 100%;
        font-size: 15px
    }

    .workingProcessSlider .workingProcessItem .workingProcessContent .contentTitle {
        font-size: 24px
    }

    .workingProcessSlider .workingProcessItem .workingProcessCircle {
        max-width: 150px;
        margin: 0 auto;
        position: relative
    }

    .workingProcessSlider .workingProcessItem .workingProcessCircle span {
        font-size: 40px
    }

    .workingProcess .workingProcessSlider:before {
        top: 60px
    }

    .workingProcess .heading-title, .hrhubNumbers .heading-title {
        font-size: 42px
    }

    .hrhubNumbers {
        padding: 75px 0
    }

    .hrhubNumbers .numberContent p {
        font-size: 16px;
        line-height: 160%
    }

    .hrhubNumbers .numberBox .numberBoxContent .numberBoxInner .numberBoxTitle {
        font-size: 17px
    }

    .milestone {
        margin-bottom: 75px
    }
}

@media (max-width: 1024px) {
    .abtUs-MainImg {
        max-width: 600px;
        margin: 0 auto 0
    }

    .aboutUs-page .abtUs-count .countBox {
        width: 33.33%
    }

    .aboutUs-page .abtUs-count {
        max-width: 100%;
        margin: 25px auto;
        gap: 20px;
        flex-direction: row
    }

    .aboutUs-page .abtUs-count .countBox .countBoxIcon {
        min-width: 50px;
        height: 50px
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxSubTitle {
        line-height: 150%
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent {
        margin-left: 15px
    }

    .abtUs-multiBox {
        margin: 40px 0
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        padding: 0 20px;
        line-height: 125%
    }

    .workingProcessSlider .workingProcessItem .workingProcessContent p {
        max-width: 90%
    }

    .workingProcess .workingProcessSlider:before {
        content: none
    }

    .workingProcess {
        padding: 75px 0
    }

    .workingProcess .heading-title, .hrhubNumbers .heading-title {
        font-size: 36px
    }

    .hrhubNumbers .numberContent {
        padding-left: 0
    }

    .hrhubNumbers .numberContent .heading-section {
        margin: 0 0 20px 0
    }

    .hrhubNumbers .numberContent p {
        font-size: 15px
    }

    .milestone {
        margin-bottom: 50px
    }

    .milestone .heading-title {
        font-size: 26px
    }

    .milestone .milestoneList .milestoneBox {
        padding: 20px 25px;
        border-radius: 20px;
        margin: 0 0 40px 35px
    }

    .milestone .milestoneList .milestoneBoxMargin {
        margin-top: 25%
    }

    .milestone .milestoneList .milestoneBox .milestoneTitle {
        font-size: 22px
    }
}

@media (max-width: 991px) {
    .aboutUs-page .abtUs-count {
        max-width: 600px;
        flex-wrap: wrap;
        justify-content: center
    }

    .aboutUs-page .abtUs-count .countBox {
        padding: 10px 20px;
        width: calc(50% - 15px)
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
        font-size: 30px
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxSubTitle {
        font-size: 14px
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        padding: 0 35px
    }

    .workingProcess .heading-title {
        max-width: 100%
    }

    .hrhubNumbers .numberContent {
        margin-bottom: 30px
    }

    .hrhubNumbers {
        padding: 50px 0
    }

    .hrhubNumbers .numberBox {
        padding: 20px
    }

    .hrhubNumbers .numberBox .numberBoxImg img {
        margin-bottom: 20px
    }

    .hrhubNumbers .numberBox .numberBoxContent {
        gap: 20px
    }

    .milestone .heading-section {
        position: relative;
        top: 0
    }

    .milestone .heading-section, .milestone .heading-title {
        text-align: center
    }

    .milestoneList {
        max-width: 85%;
        margin: 0 auto
    }

    .milestone .milestoneList .milestoneBox {
        margin: 0 15px 30px
    }

    .milestone .milestoneList .milestoneBoxMargin {
        margin-top: 25%
    }

    .workingProcess .heading-title, .hrhubNumbers .heading-title {
        font-size: 26px
    }

    .abtUs-multiBox .abtUs-multiBoxitem {
        min-height: 190px
    }

    .abtUs-multiBox .abtUs-multiBoxitem p {
        min-height: 60px
    }
}

@media (max-width: 767px) {
    .milestoneList {
        max-width: 100%
    }

    .milestone .milestoneList .milestoneBox .milestoneTitle {
        font-size: 20px
    }

    .hrhubNumbers .numberBox .numberBoxContent .numberBoxInner {
        width: 100%
    }

    .workingProcess .heading-title, .hrhubNumbers .heading-title {
        font-size: 24px
    }

    .hrhubNumbers .numberBox .numberBoxContent .numberBoxInner .numberBoxCount {
        font-size: 26px
    }

    .aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
        font-size: 26px
    }
}

@media (max-width: 575px) {
    .inner-banner-section.aboutUs-page::before {
        content: '';
        position: absolute;
        background-image: url(../images/patch_redBg.webp);
        background-repeat: no-repeat;
        background-position: top 50px center;
        background-size: contain;
        height: 100%;
        width: 100%;
        z-index: -1;
        top: 0
    }

    .aboutUs-page .abtUs-count .countBox {
        width: 80%
    }

    .abtUs-multiBox .abtUs-multiBoxitem {
        padding: 0 15px 30px 15px
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        padding: 0
    }

    .abtUs-multiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        font-size: 20px
    }

    .workingProcess {
        padding: 50px 0
    }

    .milestone .milestoneList .milestoneBoxMargin {
        margin-top: 0
    }
}

.whyHrhub {
    background: transparent linear-gradient(180deg, #FFF5EA 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.whyHrhub.inner-banner-section.aboutUs-page::before {
    background-image: url(../images/why_hrhub/patch-whyhrhub.webp);
    background-position: top -75px center;
    height: 26.041vw
}

.whyHrhub.aboutUs-page .abtUs-count {
    gap: 20px
}

.whyHrhub.aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
    font-size: 24px
}

.whyHrhub.aboutUs-page .abtUs-count .countBox {
    padding: 25px 30px
}

.whyHrhub.aboutUs-page .abtUs-count .countBox .countBoxContent {
    margin: 0
}

.whyHrhub.aboutUs-page .abtUs-count .countBox .countBoxContent p {
    font-size: 14px;
    color: var(--theme-gray);
    margin: 0 5% 0 0
}

.whyhrhub-accordian .accordion .accordion-item {
    border-radius: 15px;
    overflow: hidden;
    border: 0
}

.whyhrhub-accordian .accordion .accordion-item + .accordion-item {
    margin-top: 30px
}

.whyhrhub-accordian .accordion .accordion-button {
    padding: 25px 60px 25px 25px;
    position: relative;
    font-size: 24px;
    font-weight: 600
}

.whyhrhub-accordian .accordion .accordion-body {
    padding: 0 30px 10px 30px
}

.whyhrhub-accordian .accordion .accordion-body ul {
    margin-top: 30px;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.whyhrhub-accordian .accordion .accordion-body ul li {
    font-size: 18px;
    width: calc(50% - 10px);
    font-weight: 500
}

.whyhrhub-accordian .accordion .accordion-button[aria-expanded="true"] {
    pointer-events: none
}

.whyhrhub-accordian .accordion .accordion-button::after {
    content: none
}

.whyhrhub-accordian .accordion .accordion-button span {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(1) {
    background-color: var(--theme-light-blue)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(1) .accordion-button {
    background-color: var(--theme-light-blue);
    color: var(--theme-text-blue);
    box-shadow: none
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(1) .accordion-body ul li {
    color: var(--theme-text-blue)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(2) {
    background-color: var(--theme-light-orange)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(2) .accordion-button {
    background-color: var(--theme-light-orange);
    color: var(--theme-text-dark-orange);
    box-shadow: none
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(2) .accordion-body ul li {
    color: var(--theme-text-dark-orange)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(3) {
    background-color: var(--theme-light-green)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(3) .accordion-button {
    background-color: var(--theme-light-green);
    color: var(--theme-text-green);
    box-shadow: none
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(3) .accordion-body ul li {
    color: var(--theme-text-green)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(4) {
    background-color: var(--theme-light-red)
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(4) .accordion-button {
    background-color: var(--theme-light-red);
    color: var(--theme-text-red);
    box-shadow: none
}

.whyhrhub-accordian .accordion .accordion-item:nth-child(4) .accordion-body ul li {
    color: var(--theme-text-red)
}

.powerofhrhub {
    padding: 100px 0
}

.powerofhrhub .heading-section {
    text-align: center;
    max-width: 85%;
    margin: 0 auto 75px
}

.powerofhrhub .heading-title {
    max-width: 100%
}

.powerofhrhub .powerofhrhubImg img {
    max-width: 100%
}

.powerofhrhub .powerofhrhubList {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.powerofhrhub .powerofhrhubItem {
    display: flex
}

.powerofhrhub .powerofhrhubItem .powerofhrhubIcon {
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

.powerofhrhub .powerofhrhubItem .powerofhrhubContent {
    margin: 0 25px
}

.powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    color: #1A1818
}

.powerofhrhub .powerofhrhubItem p {
    font-size: 16px;
    color: var(--theme-gray)
}

.whyhrhubmultiBox {
    padding: 85px 0;
    background-color: #F7F7F8
}

.whyhrhubmultiBox .heading-title {
    max-width: 100%
}

.whyhrhubmultiBox .abtUs-multiBoxitem {
    padding: 30px 25px
}

.whyhrhubmultiBox .abtUs-multiBoxitem .abtUs-multiBoxIcon {
    top: 0;
    margin-bottom: 30px;
    background-color: #ffffff;
    border: 0
}

.whyhrhubmultiBox .abtUs-multiBoxitem p {
    height: 165px
}

.whyhrhubproduct .numberBox {
    background-color: var(--theme-light-orange)
}

.whyhrhubproduct .numberContent .heading-section .heading {
    background-color: var(--theme-light-orange);
    color: var(--theme-red)
}

.whyhrhubproduct .numberBox .numberBoxContent .numberBoxInner .numberBoxCount {
    color: var(--theme-red)
}

.whyhrhubproduct .numberContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ctaSection {
    padding: 75px 0 100px;
    background-color: #F7F7F8;
    position: relative;
    z-index: 1
}

.ctaSection .image-section {
    text-align: center
}

.ctaSection .image-section img {
    max-width: auto;
    width: auto
}

.ctaSection .heading-description {
    font-weight: 400;
    margin-bottom: 50px
}

.ctaSection .btn {
    padding: 10px 15px 10px 28px
}

.ctaSection .heading-title {
    font-size: 48px
}

@media (max-width: 1366px) {
    .whyHrhub.aboutUs-page .abtUs-count .countBox {
        padding: 15px 30px
    }

    .whyHrhub.aboutUs-page .abtUs-count {
        gap: 15px
    }

    .whyHrhub.aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
        font-size: 22px
    }

    .powerofhrhub .powerofhrhubItem .powerofhrhubContent {
        margin: 0 0 0 25px
    }

    .powerofhrhub .powerofhrhubList {
        gap: 25px
    }

    .powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
        font-size: 22px;
        margin-bottom: 5px
    }

    .powerofhrhub .powerofhrhubItem p {
        font-size: 13px
    }

    .powerofhrhub .powerofhrhubImg img {
        max-width: 95%
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem {
        padding: 20px 15px;
        min-height: 365px
    }

    .ctaSection .btn {
        padding: 8px 15px 8px 20px
    }

    .ctaSection .heading-title {
        font-size: 42px
    }

    .whyhrhub-accordian .accordion .accordion-button {
        padding: 20px 60px 20px 20px;
        font-size: 22px
    }

    .whyhrhub-accordian .accordion .accordion-item + .accordion-item {
        margin-top: 20px
    }

    .whyhrhub-accordian .accordion .accordion-body ul {
        margin-top: 5px
    }
}

@media (max-width: 1024px) {
    .powerofhrhubImg {
        position: sticky;
        top: 100px
    }

    .whyHrhub.aboutUs-page .abtUs-count .countBox .countBoxContent .countBoxTitle {
        font-size: 20px;
        line-height: 115%;
        margin-bottom: 10px
    }

    .whyHrhub.aboutUs-page .abtUs-count {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0
    }

    .whyHrhub.aboutUs-page .abtUs-count .countBox {
        width: calc(50% - 15px)
    }

    .whyHrhub.aboutUs-page .abtUs-count .countBox {
        padding: 15px 20px
    }

    .ctaSection .heading-title {
        font-size: 34px;
        max-width: 100%
    }

    .whyhrhub-accordian .accordion .accordion-body {
        font-size: 14px
    }

    .whyhrhub-accordian .accordion .accordion-button {
        padding: 15px 60px 15px 20px;
        font-size: 18px
    }

    .whyhrhub-accordian .accordion .accordion-item + .accordion-item {
        margin-top: 15px
    }

    .whyhrhub-accordian .accordion .accordion-body ul {
        margin-top: 15px;
        gap: 15px
    }

    .whyhrhub-accordian .accordion .accordion-body ul li {
        font-size: 16px
    }

    .ctaSection {
        padding: 50px 0 50px 0 !important
    }
}

@media (max-width: 991px) {
    .powerofhrhub .heading-section {
        max-width: 100%;
        margin: 0 auto
    }

    .powerofhrhubImg {
        max-width: 300px;
        margin: 50px auto
    }

    .powerofhrhub .powerofhrhubImg img {
        max-width: 100%;
        margin-left: 50px
    }

    .whyhrhub-accordian {
        margin-top: 30px
    }

    .whyHrhub.aboutUs-page .abtUs-MainImg {
        max-width: 300px;
        margin: 0 auto 0
    }

    .whyHrhub.aboutUs-page .abtUs-count {
        max-width: 100%;
        margin: 35px 0 0
    }

    .powerofhrhub .powerofhrhubList {
        max-width: 550px;
        margin: 0 auto
    }

    .powerofhrhub {
        padding: 75px 0
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem p {
        height: 140px
    }

    .ctaSection .heading-section {
        margin: 0
    }

    .ctaSection .heading-description {
        margin-bottom: 20px
    }

    .whyhrhub-accordian .accordion .accordion-item {
        border-radius: 10px
    }

    .whyhrhub-accordian .accordion .accordion-button span {
        right: 15px;
        width: 22px;
        height: 22px
    }

    .whyhrhub-accordian .accordion .accordion-button span svg {
        width: 10px;
        height: 7px
    }

    .ctaSection .heading-title {
        font-size: 24px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem p {
        height: 100px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem {
        min-height: 300px
    }
}

@media (max-width: 575px) {
    .whyHrhub.aboutUs-page .abtUs-count .countBox {
        width: 100%
    }

    .powerofhrhub {
        padding: 50px 0
    }

    .powerofhrhub .powerofhrhubImg img {
        margin-left: 15px
    }

    .powerofhrhubImg {
        max-width: 250px;
        margin: 50px auto
    }

    .powerofhrhub .powerofhrhubItem .powerofhrhubIcon {
        min-width: 50px;
        height: 50px
    }

    .powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
        font-size: 20px;
        margin-bottom: 5px;
        line-height: 125%
    }

    .powerofhrhub .powerofhrhubItem .powerofhrhubContent {
        margin: 0 0 0 15px
    }

    .whyhrhubmultiBox {
        padding: 50px 0
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem {
        margin: 0 20px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        font-size: 22px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle br {
        display: none
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem .abtUs-multiBoxIcon {
        margin-bottom: 15px
    }

    .whyhrhub-accordian .accordion .accordion-body ul li {
        width: 100%
    }

    .whyhrhub-accordian .accordion .accordion-body {
        padding: 0 20px 10px 20px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem {
        min-height: 275px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem p {
        height: 180px
    }
}

@media (max-width: 320px) {
    .abtUs-multiBox .abtUs-multiBoxitem p {
        font-size: 12px
    }
}

.teamBlue {
    background-color: #E2E6F4
}

.teamOrange {
    background-color: #FAE3DA
}

.teamGreen {
    background-color: #EEF5E3
}

.teamCyan {
    background-color: #D8EEEC
}

.ourTeam-page {
    background: transparent linear-gradient(180deg, #EEF0F9 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.ourTeam-page:before {
    background-image: url(../images/our-team/ourTeam_bg.webp);
    background-position: top -200px center
}

.ourTeam_listing {
    position: relative;
    z-index: 1;
    padding: 70px 0 70px
}

.ourTeam_listing .ourTeamBox {
    text-align: center;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.ourTeam_listing .ourTeamBox .ourTeamContent {
    padding: 30px 15px;
    background-color: #F6F6F6;
    border-radius: 0 0 20px 20px
}

.ourTeam_listing .ourTeamBox .ourTeamImg {
    border-radius: 50% 50% 0 0
}

.ourTeam_listing .ourTeamBox .ourTeamImg img {
    max-width: 100%;
    padding: 50px 25px 0 25px;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -mos-filter: grayscale(1);
    -ms-filter: grayscale(1);
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.ourTeam_listing .ourTeamBox:hover .ourTeamImg img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -mos-filter: grayscale(0);
    -ms-filter: grayscale(0)
}

.ourTeam_listing .ourTeamBox .ourTeamName {
    font-size: 24px;
    font-weight: 600
}

.ourTeam_listing .ourTeamBox .ourTeamDeg {
    color: var(--theme-black)
}

@media (max-width: 1366px) {
    .ourTeam_listing .ourTeamBox .ourTeamName {
        font-size: 20px
    }
}

@media (max-width: 1024px) {
    .ourTeam-page .inner-banner-caption .banner-inner .banner-description {
        max-width: 100%
    }

    .ourTeam_listing {
        padding: 30px 0
    }
}

@media (max-width: 575px) {
    .ourTeam_listing .ourTeamBox {
        max-width: 85%;
        margin: 0 auto 30px
    }
}

.faq-page {
    position: relative
}

.faq-page::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 45.84vw;
    background: transparent linear-gradient(180deg, #D8EEEC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    top: 0;
    left: 0
}

.faq-page .inner-banner-section:before {
    background-image: url(../images/faq-bg.webp);
    background-position: top center;
    top: 0;
    height: 31.25vw
}

.faq-section {
    position: relative;
    z-index: 1;
    padding-bottom: 50px
}

.faq-section .faq-categories {
    margin-bottom: 30px
}

.faq-section .faq-categories ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

.faq-section .faq-categories ul li {
    list-style: none;
    flex: 1 0 0%
}

.faq-section .faq-categories ul li a {
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.faq-section .faq-categories ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -ms-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px
}

.faq-section .accordion-item {
    border: 0;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden
}

.faq-section .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.faq-section .accordion .accordion-button {
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-size: 24px;
    font-weight: 500;
    padding: 30px 70px 30px 30px;
    color: var(--theme-gray);
    box-shadow: none;
    position: relative;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.faq-section .accordion .accordion-button:after {
    content: none
}

.faq-section .accordion .accordion-button span {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--theme-gray);
    display: flex;
    align-items: center;
    justify-content: center
}

.faq-section .accordion .accordion-button span svg {
    fill: #ffffff;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

.faq-section .accordion .accordion-button[aria-expanded="true"] {
    border-radius: 0
}

.faq-section .accordion .accordion-button[aria-expanded="true"] svg {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.faq-section .accordion .accordion-button[aria-expanded="true"] span {
    background-color: #ffffff
}

.faq-section .accordion .accordion-body {
    font-size: 18px;
    padding: 0px 30px 30px 50px;
    border-radius: 0 0 20px 20px;
    font-weight: 400;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all
}

#generalQues .accordion-button {
    background-color: #EEF5E3
}

#generalQues .accordion .accordion-button[aria-expanded="true"], #generalQues .accordion .accordion-body, #generalQues .accordion .accordion-collapse.show .accordion-body {
    background-color: #56A168;
    color: #ffffff
}

#generalQues .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #56A168
}

#solutionsQues .accordion-button {
    background-color: #EEF0F9
}

#solutionsQues .accordion .accordion-button[aria-expanded="true"], #solutionsQues .accordion .accordion-body, #solutionsQues .accordion .accordion-collapse.show .accordion-body {
    background-color: #3A6FB6;
    color: #ffffff;
    margin-top: -1px
}

#solutionsQues .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #3A6FB6
}

#industriesQues .accordion-button {
    background-color: #FAE3DA
}

#industriesQues .accordion .accordion-button[aria-expanded="true"], #industriesQues .accordion .accordion-body, #industriesQues .accordion .accordion-collapse.show .accordion-body {
    background-color: #D53732;
    color: #ffffff
}

#industriesQues .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #D53732
}

#productsQues .accordion-button {
    background-color: #D8EEEC
}

#productsQues .accordion .accordion-button[aria-expanded="true"], #productsQues .accordion .accordion-body, #productsQues .accordion .accordion-collapse.show .accordion-body {
    background-color: var(--theme-text-cyan);
    color: #ffffff
}

#productsQues .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #57BCB5
}

@media (max-width: 1366px) {
    .faq-section .accordion-item {
        border-radius: 15px
    }

    .faq-section .accordion .accordion-body {
        border-radius: 0 0 15px 15px;
        font-size: 16px
    }

    .faq-section .faq-categories ul li a {
        font-size: 22px;
        padding: 20px 0
    }

    .faq-section .accordion .accordion-button {
        font-size: 20px;
        padding: 20px 60px 20px 20px
    }

    .faq-section .accordion .accordion-body {
        padding: 0px 20px 20px 40px
    }

    .faq-section .accordion .accordion-button span svg {
        width: 13px;
        height: 7px
    }

    .faq-section .accordion .accordion-button span {
        width: 25px;
        height: 25px;
        top: 20px;
        right: 20px
    }
}

@media (max-width: 1024px) {
    .faq-section .faq-categories ul li a {
        font-size: 20px;
        border-radius: 10px
    }

    .faq-section .accordion .accordion-body {
        font-size: 14px
    }

    .faq-page::before, .faq-page .inner-banner-section:before {
        height: 500px
    }
}

@media (max-width: 991px) {
    .faq-section .faq-categories ul {
        gap: 20px
    }

    .faq-section .faq-categories ul li a {
        font-size: 18px
    }

    .faq-section .accordion-item {
        border-radius: 10px
    }

    .faq-section .accordion .accordion-button {
        font-size: 16px;
        padding: 15px 60px 15px 15px
    }

    .faq-section .accordion .accordion-button span {
        width: 18px;
        height: 18px;
        top: 15px;
        right: 15px
    }

    .faq-section .accordion .accordion-button span svg {
        width: 10px;
        height: 4px
    }

    .faq-section .accordion .accordion-body {
        font-size: 14px
    }

    .faq-section .accordion .accordion-body {
        padding: 0px 20px 20px 30px
    }

    .faq-section .faq-categories {
        margin-bottom: 20px
    }
}

@media (max-width: 767px) {
    .faq-section .faq-categories ul {
        gap: 15px
    }

    .faq-section .faq-categories ul li a {
        padding: 10px 0;
        font-size: 16px
    }

    .faq-section .accordion .accordion-button {
        font-size: 15px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px
    }

    .faq-section .accordion .accordion-body {
        font-size: 13px
    }
}

@media (max-width: 575px) {
    .faq-section .faq-categories ul {
        gap: 10px
    }

    .faq-section .faq-categories ul li a {
        font-size: 14px
    }
}

@media (max-width: 345px) {
    .faq-section .faq-categories ul li a {
        font-size: 12px
    }
}

.inner-banner-section.contact-page-inner {
    margin-bottom: -88px;
    padding-bottom: 100px
}

.inner-banner-section.contact-page-inner::before {
    height: 100%
}

@media (min-width: 1200px) {
    .contact-map-dir .container {
        max-width: 1170px
    }
}

.contact-map-dir {
    margin: 0px;
    position: relative;
}

.contact-map-dir:before {
    position: absolute;
    content: "";
    background-image: url(../images/contactMap-bg.svg);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat
}

.contact-map-dir .add_country {
    background: #FFFFFF;
    border-radius: 20px;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    position: relative;
    z-index: 1
}

.add_country .country-details .flagImg {
    margin: -60px auto 20px;
    display: flex;
    border: 5px solid #e9f5f3;
    border-radius: 100%
}

.add_country .country-details .country-title {
    text-align: center;
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    letter-spacing: 0px;
    color: #3E5468;
    margin-bottom: 20px
}

.add_country .country-details .country-desc {
    text-align: center;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: 0px;
    color: #3E5468;
    margin: 0 auto 30px;
}

.add_country .country-details .country-desc.caymanAddress {
    max-width: 65%
}

.contact-map-dir .country-map {
    width: 100%
}

.contact-map-dir .country-map iframe {
    width: 100%;
    height: 310px;
    border-radius: 15px
}

@media (max-width: 1599px) {
    .inner-banner-section.contact-page-inner {
        padding-bottom: 50px
    }

    .inner-banner-section.contact-page-inner .inner-banner-caption {
        margin: 0 auto 0px
    }
}

@media (max-width: 1366px) {
    .contact-map-dir:before {
        background-size: 95%
    }
}

@media (max-width: 1024px) {
    .inner-banner-section.contact-page-inner {
        padding-bottom: 100px;
        margin-bottom: 0 !important
    }

    .contact-map-dir {
        padding: 100px 0 75px
    }

    .add_country .country-details .country-desc {
        max-width: 95%
    }
}

@media (max-width: 991px) {
    .contact-map-dir:before {
        background-position: top 20px center
    }

    .add_country .country-details .country-desc {
        max-width: 100%;
        font-size: 14px
    }

    .add_country .country-details .country-desc.caymanAddress {
        max-width: 70%
    }
}

@media (max-width: 767px) {
    .contact-map-dir:before {
        content: none
    }

    .contact-map-dir .add_country {
        margin-bottom: 70px
    }
}

@media (max-width: 575px) {
    .contact-map-dir .add_country {
        padding: 20px
    }
}

.contact-inner-data-removal .contact-form-inner {
    background-color: #F3F3F3;
    border-radius: 50px;
    padding: 40px 45px
}

.contact-inner-data-removal .contact-form-inner .contact-field label {
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: left;
    letter-spacing: 0px;
    color: #3E5468
}

.contact-form-inner .contact-field .form-control {
    height: 40px
}

.contact-form-inner .contact-field textarea {
    height: 100px !important
}

.contact-inner-data-removal {
    padding: 20px 0 100px 0
}

.inner-banner-section.data-removal-page::before {
    height: 0%
}

@media (max-width: 1599px) {
    .contact-inner-data-removal {
        padding: 0px 0 90px 0
    }
}

@media (max-width: 1199px) {
    .contact-inner-data-removal {
        padding: 0px 0 60px 0
    }
}

@media (max-width: 767px) {
    .contact-inner-data-removal .contact-form-inner {
        border-radius: 20px;
        padding: 30px
    }

    .contact-form-inner .contact-field .form-control {
        font-size: 12px
    }
}

@media (max-width: 576px) {
    .contact-inner-data-removal .contact-form-inner {
        border-radius: 11px;
        padding: 20px
    }
}

.bookDemoBannerDesc {
    max-width: 750px;
    margin: 0 auto
}

.calCdetailsBanner {
    background: transparent linear-gradient(180deg, #D8EEEC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.calculatorSec {
    background-color: #d1ebe9;
    border: 1px solid #61BEB8;
    border-radius: 20px;
    padding: 20px;
    max-width: 1050px;
    margin: 0 auto
}

.calculatorSec .calculator_counter {
    padding: 15px;
    border-radius: 16px;
    background-color: #ffffff
}

.calculatorSec .calculator_counter .range_slider_box {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    min-height: 150px
}

.calculatorSec .calculator_counter .range_slider_box .invest-title-total input, .investRate input {
    height: 45px;
    background-color: #F7F7F7;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    font-size: 18px;
    color: #3E5468;
    margin: 10px 0
}

.calculatorSec .calculator_counter .range_slider_box .calc-scheme-period-title .calCSlidertitle, .calculatorSec .calculator_counter .range_slider_box .rate-of-interest .calCSlidertitle {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 600;
    text-align: left
}

.calculatorSec .calculator_counter .range_slider_box .calc-scheme-period-title, .calculatorSec .calculator_counter .range_slider_box .rate-of-interest {
    text-align: left
}

.calc_total_data_table, .ppfCalcChart {
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 15px;
    min-height: 350px
}

.calc_total_data_table .ctdt_box {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.calc_total_data_table .ctdt_box + .ctdt_box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E6E6E6
}

.calc_total_data_table .ctdt_box .ctdt_title, .calc_total_data_table .ctdt_box .ctdt_amount {
    color: #3E5468;
    font-size: 18px
}

.ppfCalculator .calculatorSec .year-invest .range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: 0;
    border-radius: 15px;
    height: 6px;
    background: #d1ebe9
}

.ppfCalculator .calculatorSec .year-invest .range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: #61BEB8;
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out
}

.ppfCalculator .calculatorSec .year-invest .range-input::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #61BEB8;
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out
}

.ppfCalculator .calculatorSec .year-invest .range-input::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px #d1ebe9
}

.ppfCalculator .calculatorSec .year-invest .range-input:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px #d1ebe9
}

.ppfCalculator .calculatorSec .year-invest .range-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px #d1ebe9
}

.ppfCalculator .calculatorSec .year-invest .range {
    display: flex;
    align-items: center;
    margin: 10px 0
}

.main_calculator_content_section {
    padding: 50px 0
}

.calCcontent_sec .calCLinksWrap {
    padding: 0 30px 0 0;
    position: sticky;
    top: 125px
}

.calCLinksWrap .otherCalcList {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 15px
}

.calCLinksWrap .otherCalcList .CalcListHeading .CalcListTitle {
    color: var(--theme-text-cyan);
    font-size: 24px;
    font-weight: 600
}

.calCLinksWrap .otherCalcList .CalcListHeading {
    position: relative;
    margin-bottom: 30px
}

.calCLinksWrap .otherCalcList .CalcListHeading::after {
    content: '';
    left: 0;
    position: absolute;
    bottom: -5px;
    height: 4px;
    width: 80px;
    border-radius: 4px;
    background-color: #57BCB5
}

.otherCalcList .calcList .calcListItem h5 {
    margin: 0
}

.otherCalcList .calcList .calcListItem span {
    margin: 0 15px 0 0
}

.otherCalcList .calcList .calcListItem a.active h5 {
    color: #57bcb5
}

.otherCalcList .calcList {
    padding: 0;
    margin: 0
}

.otherCalcList .calcList .calcListItem {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.otherCalcList .calcList .calcListItem + .calcListItem {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #D9D9D9
}

.otherCalcList .calcList .calcListItem a {
    font-size: 16px;
    color: #808080;
    transition: 0.4s ease-in-out all
}

.otherCalcList .calcList .calcListItem a h5 {
    font-size: 14px;
    color: #808080;
    transition: 0.4s ease-in-out all
}

.otherCalcList .calcList.sec80List .calcListItem + .calcListItem {
    margin-top: 5px;
    padding-top: 5px
}

.otherCalcList .calcList .calcListItem svg {
    fill: #3E5468;
    opacity: 0
}

.otherCalcList .calcList .calcListItem.active svg {
    opacity: 1
}

.otherCalcList .calcList .calcListItem a:hover {
    color: #3E5468;
    transition: 0.4s ease-in-out all
}

.otherCalcList .calcList .calcListItem a.active {
    color: #3E5468
}

.calCContentWrap h4 {
    font-size: 36px;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 20px !important
}

.calCContentWrap p {
    font-size: 18px;
    color: #3E5468
}

.calCContentWrap .calCcontentHighlighter {
    font-size: 24px;
    color: #1A1A1A;
    font-weight: 600;
    margin: 10px 0 20px
}

.table-responsive {
    border: 1px solid #BBE3E1;
    border-radius: 20px;
    margin-bottom: 20px
}

.table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    overflow: hidden;
    margin: 0
}

.table thead tr th {
    border: 0;
    background-color: #DFF2F1;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid #BBE3E1;
    padding: 8px 15px
}

.table thead tr th:last-child {
    border: 0
}

.table tbody tr td {
    border: 0;
    border-right: 1px solid #BBE3E1;
    border-top: 1px solid #BBE3E1 !important;
    padding: 8px 15px
}

.table tbody tr td:last-child {
    border: 0
}

.table tbody {
    background-color: #F2F9F9
}

.table tbody td {
    background-color: #EAF6F6;
    font-size: 15px;
    color: #3E5468;
    text-align: center
}

.calCContentWrap .table.text-left thead tr th {
    text-align: left;
    vertical-align: middle;
    color: #1A1A1A;
    background-color: #E7F5F4
}

.calCContentWrap .table.text-left tbody td {
    text-align: left;
    vertical-align: top;
    background-color: #EAF6F6
}

.calCContentWrap a {
    color: #2559A6;
    font-weight: 600
}

.calCContentWrap a:hover {
    color: #57bcb5
}

.main_calculator_content_section.taxPages {
    padding: 50px 0;
    position: relative;
    z-index: 1
}

.calCContentWrap ul {
    padding-left: 20px;
    list-style-type: disc
}

.calCFAQSection.faq-section #generalQues .accordion-button {
    background-color: #F7F7F7;
    color: #1A1A1A
}

.calCFAQSection.faq-section .accordion .accordion-body {
    padding: 0px 30px 30px 30px
}

.calCFAQSection.faq-section #generalQues .accordion .accordion-button[aria-expanded="true"], .calCFAQSection.faq-section #generalQues .accordion .accordion-body, .calCFAQSection.faq-section #generalQues .accordion .accordion-collapse.show .accordion-body {
    background-color: #F2F9F9;
    color: #57BCB5
}

.calCFAQSection.faq-section .accordion .accordion-button[aria-expanded="true"] span {
    background-color: #57BCB5
}

.calCFAQSection.faq-section #generalQues .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #ffffff
}

.calCContentWrap li::marker {
    color: var(--theme-gray)
}

.calCContentWrap ol li::marker, .calCContentWrap ul li::marker {
    color: var(--theme-gray)
}

.inner-banner-section.calCdetailsBanner.tax-banner::before {
    background-position: top -425px center
}

@media (max-width: 1600px) {
    .calCContentWrap p {
        font-size: 16px
    }
}

@media (max-width: 1366px) {
    .calCContentWrap h4 {
        font-size: 24px
    }

    .clacContentTable.responsiveScrollTable table.table {
        min-width: 800px
    }

    .otherCalcList .calcList {
        max-height: 490px;
        overflow: auto
    }
}

@media (max-width: 1199px) {
    .calCContentWrap p {
        font-size: 15px
    }

    .calCContentWrap h4 {
        font-size: 20px
    }

    .calCcontent_sec .calCLinksWrap {
        padding: 0
    }
}

@media (max-width: 991px) {
    .calCContentWrap p {
        font-size: 14px
    }

    .main_calculator_content_section .calCcontent_sec .helpFulResources {
        display: none
    }

    .calc_total_data_table {
        margin-bottom: 15px
    }

    .calc_total_data_table, .ppfCalcChart {
        min-height: auto
    }
}

@media (max-width: 767px) {
    .calCLinksWrap {
        display: none
    }

    .table tbody td {
        font-size: 14px
    }
}

.calculater-page .item {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    height: calc(100% - 30px)
}

.item.bg_purple {
    background: #EEF0F9
}

.item.bg_yellow {
    background: #EEF5E3
}

.item.bg_red {
    background: #FCF1F1
}

.item.bg_green {
    background: #E9F5F3
}

.item.bg_orange {
    background: #FFF5EA
}

.item.bg_violet {
    background: #EEF0F9
}

.item-shadow.bg_purple {
    box-shadow: 0px 0px 20px #3A6FB680
}

.item-shadow.bg_yellow {
    box-shadow: 0px 0px 20px #2E934D80
}

.item-shadow.bg_red {
    box-shadow: 0px 0px 20px #9E0C4D80
}

.item-shadow.bg_green {
    box-shadow: 0px 0px 20px #57BCB580
}

.item-shadow.bg_orange {
    box-shadow: 0px 0px 20px #D5373280
}

.item-shadow.bg_violet {
    box-shadow: 0px 0px 20px #3A6FB680
}

.calculater-page .item.bg_purple .item-title {
    color: #3A6FB6
}

.calculater-page .item.bg_yellow .item-title {
    color: #2E934D
}

.calculater-page .item.bg_red .item-title {
    color: #9E0C4D
}

.calculater-page .item.bg_green .item-title {
    color: #57BCB5
}

.calculater-page .item.bg_orange .item-title {
    color: #D53732
}

.calculater-page .item.bg_violet .item-title {
    color: #3A6FB6
}

.calculater-page .item .image-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #ffffff;
    border-radius: 100%;
    margin: 0 0 20px 0
}

.calculater-page .item .item-title {
    text-align: left;
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 15px;
    color: #3A6FB6
}

.calculater-page .item .item-des {
    text-align: left;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    letter-spacing: 0px;
    margin-bottom: 0px;
    color: #3E5468;
    max-width: 90%
}

.inner-banner-section.calculater-page {
    padding-bottom: 100px
}

.hover-effect .item:hover .item-title {
    color: #1a1818
}

@media (max-width: 1599px) {
    .inner-banner-section.calculater-page {
        padding-bottom: 60px
    }
}

@media (max-width: 1366px) {
    .calculater-page .item .item-title {
        font-size: 22px
    }
}

@media (max-width: 1199px) {
    .calculater-page .item .item-title {
        font-size: 20px
    }

    .calculater-page .item .image-section {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0 0 10px 0
    }

    .calculater-page .item .image-section svg {
        max-width: 40%
    }

    .calculater-page .item .item-title {
        margin-bottom: 10px
    }

    .calculater-page .item .item-des {
        font-size: 14px
    }

    .calculater-page .item {
        margin-bottom: 25px;
        height: calc(100% - 25px)
    }

    .inner-banner-section.calculater-page {
        padding-bottom: 40px
    }
}

@media (max-width: 991px) {
    .calculater-page .item .item-title {
        font-size: 18px
    }
}

@media (max-width: 767px) {
    .inner-banner-section.calculater-page {
        padding-bottom: 30px
    }
}

@media (max-width: 576px) {
    .calculater-page .item .item-des {
        max-width: 100%
    }

    .calculater-page .item {
        margin-bottom: 15px;
        height: calc(100% - 15px)
    }
}

.hover-effect .item {
    position: relative;
    overflow: hidden
}

.hover-effect .item::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.hover-effect .item:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.contact-form-inner {
    padding-left: 30px
}

.connectContent .date-box .wrapper {
    background-color: transparent;
    border-radius: 6px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.today.day {
    position: relative
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th {
    color: #3E5468;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s ease-in-out;
    font-family: "Poppins", sans-serif
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.dow {
    cursor: default !important;
    padding: 30px 10px 15px 10px
}

td.today.day::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: #3a6fb6;
    border-radius: 100%;
    bottom: 7px;
    margin: 0 auto;
    left: 0;
    right: 0
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.datepicker-switch:hover {
    background-color: transparent !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.next, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.prev, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.next, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.prev, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.next, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.prev {
    position: relative;
    z-index: 1;
    transition: .3s ease-in-out;
    color: transparent
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.next::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.prev::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.next::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.prev::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.next::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.prev::before {
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 50px;
    top: 12px;
    z-index: -1;
    color: #3a6fb6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.next::before {
    right: 10px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.prev::before {
    left: 10px
}

.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 0 !important;
    border-radius: 4px !important;
    min-height: 37px !important;
    padding: 8px 10px !important
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444 !important;
    line-height: 145% !important;
    padding: 0 !important;
    font-size: 14px
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.datepicker-switch, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.datepicker-switch, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.datepicker-switch {
    text-align: center;
    color: #2c3e50
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.new.day, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.old.day {
    opacity: 0 !important;
    pointer-events: none
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.disabled.day, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td span.disabled.month {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: .3
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td span.month, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td span.year {
    display: block;
    cursor: pointer;
    width: 30%;
    float: left;
    margin: 3px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td {
    padding: 0 0 15px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.next::before {
    right: 10px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.prev::before {
    left: 10px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td {
    cursor: default
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td .month.focused, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td .year.focused {
    background-color: #fff;
    color: #000;
    border-radius: 10px
}

.bookDemoSocial {
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #c1c1c1
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed tfoot th.clear, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed tfoot th.today, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed tfoot th.clear, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed tfoot th.today {
    display: block;
    position: absolute;
    font-size: 12px;
    opacity: .5;
    top: -20px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed tfoot th.clear, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed tfoot th.clear {
    right: 0
}

.contact-social {
    display: flex;
    justify-content: start;
    padding: 0
}

.contact-social li {
    list-style: none;
    text-align: center
}

.contact-social li a {
    color: var(--text-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: .3s ease-in-out
}

.contact-social li a i {
    font-size: 19px
}

.contact-social li + li {
    margin-left: 20px
}

.gst_calc_radios .gst_exclusive_radio, .gst_calc_radios .gst_inclusive_radio {
    box-shadow: 0px 0px 10px #0000001A;
    justify-content: center !important;
    padding: 20px 35px !important;
    margin-bottom: 20px;
    border-radius: 10px !important
}

.gst_calc_radios .gst-radio-title {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 500 !important;
    line-height: 150%;
    letter-spacing: 0px
}

.gst_total_amo_data {
    padding: 15px;
    border: 1px solid #E6E6E6;
    border-radius: 10px
}

.gst_total_amo_data .gtad_title {
    font-size: 18px;
    color: #3E5468
}

.gst_amo_name_box {
    border-top: 1px solid #E6E6E6;
    margin-top: 10px;
    padding-top: 10px
}

.form-check-input:checked {
    background-color: #57BCB5;
    border-color: #57BCB5
}

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

.gst_calc_radios .form-check-input[type=radio] {
    border-radius: 50%;
    width: 17px;
    height: 17px;
    border: 2px solid #EDEDED;
    background-color: #F7F7F7;
    background-image: none;
    cursor: pointer
}

.gst_calc_radios .form-check-input:checked {
    background-color: #57BCB54D;
    border: 2px solid #57BCB5
}

.inner-banner-section.writeForUsPage {
    background: transparent linear-gradient(180deg, #CBD5ED 0%, #FFFFFF 50%) 0% 0% no-repeat padding-box
}

.whyWriteForHrhub .powerofhrhubImg {
    max-width: 90%
}

.inner-banner-section.writeForUsPage::before {
    content: '';
    position: absolute;
    background-image: url(../images/blue-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 80%;
    width: 100%;
    z-index: -1
}

.faq-section.writeForUsFaqs .heading-section .heading-title {
    max-width: 100%
}

.writeUs_details_table {
    padding: 50px 0 100px 0
}

.writeUs_details_table .questionsSec {
    background-color: #FBFBFF;
    border: 1px solid #E2E6F4;
    border-radius: 20px;
    overflow: hidden
}

.questionsSec .question {
    color: #1A1A1A;
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    margin: 0;
    padding: 30px;
    width: 100%
}

.questionsSec .answer {
    color: #3E5468 !important;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: left;
    margin: 0;
    padding: 30px;
    width: 100%
}

.questionsSec .row_line + .row_line {
    border-top: 1px solid #E2E6F4
}

.questionsSec .question-col {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #EEF0F9;
    border-right: 3px solid #CBD6E5
}

.questionsSec .answer-col {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FBFBFF
}

.abtUs-multiBox.writeUsMultiBox .abtUs-multiBoxitem {
    min-height: 300px
}

.powerofhrhub.guest-post-page .powerofhrhubList {
    gap: 48px
}

.powerofhrhub.guest-post-page .powerofhrhubImg img {
    max-width: 75%
}

.guest-post-page.submit-pitch {
    padding: 50px 0 50px 0
}

.guest-post-page.submit-pitch .heading-section {
    padding: 0 100px 0 0;
    text-align: left
}

.guest-post-page.submit-pitch .heading-section .heading-title {
    text-align: left;
    margin-left: 0
}

.guest-post-page.submit-pitch .heading-section p, .guest-post-page.submit-pitch .heading-section ul li {
    font-size: 18px;
    line-height: 140%;
    color: #3E5468;
    margin: 0 0 20px 0
}

.guest-post-page.submit-pitch .heading-section a {
    font-weight: 600;
    color: #3A6FB6
}

.guest-post-page.submit-pitch .heading-section a:hover {
    color: #1A1A1A
}

.guest-post-page.submit-pitch .heading-section ul {
    margin: 0;
    padding-left: 20px
}

.guest-post-page.abtUs-multiBox .abtUs-multiBoxitem p {
    height: 100px;
    color: #1A1818
}

.guest-post-page.abtUs-multiBox .abtUs-multiBoxitem p {
    color: #1A1818
}

.guest-post-page.powerofhrhub .powerofhrhubItem p {
    font-size: 16px
}

.heading-section p {
    font-size: 18px;
    color: #3E5468;
    line-height: 130%
}

.abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
    font-size: 16px;
    color: #1A1818;
    min-height: 230px
}

.abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

.multi_step_form {
    padding: 50px 0
}

.multi_step_form #container {
    padding: 40px;
    border-radius: 50px
}

.multi_step_form #container #multi-step-form {
    padding: 15px 15px 0
}

.multi_step_form #container .step-container {
    position: relative
}

.multi_step_form #container .step-container .step-circle {
    background-color: #fff;
    height: 50px;
    width: 50px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3E5468;
    position: relative;
    z-index: 1
}

.multi_step_form #container .step-container .step-circle.active {
    box-shadow: var(--shadow-orange);
    color: #D53732
}

.multi_step_form #container .step-container .step_bg_line {
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    border: 1px dashed #3E546880;
    top: 23px
}

.multi_step_form .heading-section .multistep_form_content {
    font-size: 24px;
    font-weight: 500
}

.multi_step_form .heading-section {
    background-image: url(../images/multi-step-content-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.guest-post-page .heading-title {
    max-width: 100%
}

.powerofhrhubImg img {
    max-width: 100%;
    width: 100%
}

.multi_step_form #container #multi-step-form .btn {
    font-size: 18px;
    font-weight: 500
}

.abtUs-multiBox.guest-post-page .abtUs-multiBoxitem p {
    min-height: 110px
}

@media (max-width: 1599px) {
    .powerofhrhub.guest-post-page .powerofhrhubList {
        gap: 35px
    }
}

@media (max-width: 1440px) {
    .guest-post-page.powerofhrhub {
        padding: 80px 0 50px 0
    }

    .guest-post-page .heading-title {
        font-size: 40px
    }

    .heading-section p {
        font-size: 16px
    }

    .multi_step_form .heading-section .multistep_form_content {
        font-size: 18px;
        font-weight: 500
    }

    .powerofhrhub.guest-post-page .powerofhrhubList {
        gap: 25px
    }

    .powerofhrhub.guest-post-page .powerofhrhubItem .powerofhrhubTitle {
        font-size: 20px
    }

    .guest-post-page.powerofhrhub .powerofhrhubItem p {
        font-size: 16px
    }

    .powerofhrhub.guest-post-page .powerofhrhubItem .powerofhrhubIcon {
        min-width: 55px;
        height: 55px
    }

    .guest-post-page.whyhrhubmultiBox .abtUs-multiBoxitem {
        min-height: 300px
    }

    .guest-post-page.abtUs-multiBox.writeUsMultiBox .abtUs-multiBoxitem {
        min-height: 260px
    }

    .guest-post-page.writeUs_details_table {
        padding: 50px 0 80px 0
    }

    .guest-post-page.submit-pitch .heading-section p, .guest-post-page.submit-pitch .heading-section ul li {
        font-size: 16px
    }
}

@media (max-width: 1366px) {
    .guest-post-page .heading-title {
        font-size: 36px
    }

    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
        min-height: 260px
    }

    .abtUs-multiBox.guest-post-page .abtUs-multiBoxitem p {
        min-height: 150px
    }
}

@media (max-width: 1299px) {
    .guest-post-page.submit-pitch .heading-section p, .guest-post-page.submit-pitch .heading-section ul li {
        font-size: 14px
    }

    .guest-post-page.powerofhrhub .powerofhrhubItem p {
        font-size: 14px
    }

    .guest-post-page.abtUs-multiBox .abtUs-multiBoxitem p {
        font-size: 14px
    }
}

@media (max-width: 1199px) {
    .abtUs-multiBox.writeUsMultiBox .abtUs-multiBoxitem {
        min-height: 240px
    }

    .powerofhrhub.guest-post-page .powerofhrhubImg img {
        max-width: 100%
    }

    .guest-post-page.submit-pitch .heading-section {
        padding: 0 20px 0 0
    }

    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
        min-height: 180px
    }

    .abtUs-multiBox.guest-post-page .abtUs-multiBoxitem p {
        min-height: 110px
    }
}

@media (max-width: 1024px) {
    .guest-post-page .heading-title {
        font-size: 28px
    }

    .guest-post-page.submit-pitch .heading-section .heading-title {
        font-size: 28px
    }
}

@media (max-width: 991px) {
    .powerofhrhub.guest-post-page .powerofhrhubList {
        max-width: 100%
    }

    .guest-post-page.powerofhrhub {
        padding: 50px 0 0px 0
    }

    .powerofhrhub.guest-post-page .powerofhrhubImg img {
        max-width: 100%;
        margin: 0 auto
    }

    .guest-post-page.submit-pitch .powerofhrhubImg {
        max-width: 100%;
        width: 300px;
        margin: 0px auto 20px auto;
        text-align: center
    }

    .guest-post-page.submit-pitch .heading-section ul li {
        margin: 0 0 10px 0
    }

    .guest-post-page.submit-pitch .heading-section ul li:last-child {
        margin-bottom: 0
    }

    .guest-post-page.abtUs-multiBox.writeUsMultiBox .abtUs-multiBoxitem {
        min-height: 225px
    }

    .questionsSec .question {
        padding: 15px 20px;
        font-size: 14px
    }

    .questionsSec .answer {
        padding: 15px 20px;
        font-size: 14px
    }

    .guest-post-page.whyhrhubmultiBox .abtUs-multiBoxitem {
        min-height: 225px
    }

    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
        min-height: 150px
    }

    .abtUs-multiBox.guest-post-page .abtUs-multiBoxitem p {
        min-height: 80px
    }
}

@media (max-width: 767px) {
    .abtUs-multiBox.writeUsMultiBox .abtUs-multiBoxitem {
        min-height: 200px
    }

    .abtUs-multiBox-slider.writeForUsMultiBoxSlider .abtUs-multiBoxitem {
        min-height: 350px
    }

    .heading-section p {
        font-size: 14px
    }

    .guest-post-page.writeUs_details_table {
        padding: 50px 0 50px 0
    }

    .whyhrhubmultiBox {
        padding: 50px 0
    }

    .guest-post-page.what-happens {
        padding: 30px 0 50px 0
    }

    .guest-post-page .heading-title {
        font-size: 24px
    }

    .guest-post-page.submit-pitch .heading-section .heading-title {
        font-size: 24px
    }

    .powerofhrhub.guest-post-page .powerofhrhubItem .powerofhrhubIcon {
        min-width: 40px;
        height: 40px
    }

    .powerofhrhub.guest-post-page .powerofhrhubItem .powerofhrhubIcon svg {
        max-width: 40%
    }

    .powerofhrhub.guest-post-page .powerofhrhubItem .powerofhrhubTitle {
        font-size: 18px
    }
}

@media (max-width: 576px) {
    .guest-post-page.submit-pitch {
        padding: 50px 0 0px 0
    }

    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem .abtUs-multiBoxTitle {
        height: 40px
    }

    .abtUs-multiBox-slider.writeForUsMultiBoxSlider .abtUs-multiBoxitem {
        min-height: 300px
    }

    .abtUs-multiBox.guest-post-page .abtUs-multiBoxitem {
        min-height: 120px
    }
}

@media (max-width: 479px) {
    .gst_calc_radios .gst_exclusive_radio, .gst_calc_radios .gst_inclusive_radio {
        padding: 15px 15px !important
    }
}

@media (max-width: 320px) {
    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
        min-height: 200px
    }

    .abtUs-multiBox.guest-post-page .abtUs-multiBoxitem p {
        min-height: 100px;
        font-size: 12px
    }
}

.inner-banner-section.policy-section::before {
    background-image: url(../images/terms-and-policy/privacy-policy-bg.png)
}

.policy-section {
    background: transparent linear-gradient(180deg, #FFE2C0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.policy-data-section {
    padding: 50px 0
}

.policy-data-section .inner-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #CCCCCC
}

.policy-data-section h4 {
    font-size: 36px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 30px 0
}

.policy-data-section h5 {
    font-size: 24px;
    font-weight: 500;
    color: #FB8B0A;
    margin: 0 0 20px 0
}

.policy-data-section p {
    font-size: 18px;
    font-weight: 400;
    color: #3E5468;
    margin-bottom: 30px
}

.policy-data-section .main-ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0
}

.policy-data-section .main-ul li:last-child p {
    margin-bottom: 0
}

.policy-data-section .terms_sub_listing li {
    margin-bottom: 25px
}

.policy-data-section .terms_sub_listing li:last-child {
    margin-bottom: 0px
}

.policy-data-section .terms_sub_listing {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px
}

.policy-data-section .terms_sub_listing li {
    position: relative
}

.policy-data-section .terms_sub_listing li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -20px;
    background-color: #3E5468;
    height: 6px;
    width: 6px;
    border-radius: 100%
}

.policy-data-section .inner-section:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none
}

.policy-data-section .secondary-text {
    color: #FB8B0A;
    font-weight: 600
}

.policy-data-section .text-secondary {
    color: #3E5468;
    font-weight: 600
}

.policy-data-section a {
    color: #FB8B0A
}

.policy-data-section a:hover {
    color: #3E5468
}

@media (max-width: 1600px) {
    .main-nav .has-subnav .main-dropdown.subnav .has-subnav .subnav-title {
        padding: 12px 15px
    }
}

@media (max-width: 1599px) {
    .policy-data-section h4 {
        font-size: 34px;
        margin: 0 0 20px 0
    }
}

@media (max-width: 1366px) {
    .policy-data-section h4 {
        font-size: 30px
    }

    .policy-data-section {
        padding: 80px 0 50px 0
    }

    .policy-data-section .inner-section {
        margin-bottom: 30px;
        padding-bottom: 30px
    }

    .policy-data-section h5 {
        font-size: 22px
    }

    .policy-data-section p {
        margin-bottom: 20px;
        font-size: 16px
    }

    .policy-data-section .terms_sub_listing li:last-child p {
        margin-bottom: 0
    }
}

@media (max-width: 1199px) {
    .policy-data-section h4 {
        font-size: 24px
    }

    .policy-data-section h5 {
        font-size: 18px
    }
}

@media (max-width: 991px) {
    .policy-data-section h4 {
        font-size: 22px;
        margin: 0 0 15px 0
    }

    .policy-data-section .inner-section {
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .policy-data-section .terms_sub_listing li {
        margin-bottom: 15px
    }

    .policy-data-section h5 {
        margin: 0 0 15px 0
    }
}

@media (max-width: 767px) {
    .policy-data-section p {
        font-size: 14px;
        margin-bottom: 15px
    }

    .policy-data-section {
        padding: 50px 0 50px 0
    }

    .policy-data-section .terms_sub_listing li::before {
        top: 8px
    }
}

@media (max-width: 479px) {
    .policy-data-section .terms_sub_listing {
        padding-left: 15px;
        margin-bottom: 15px
    }

    .policy-data-section .terms_sub_listing li::before {
        left: -15px
    }

    .policy-data-section {
        padding: 30px 0 30px 0
    }
}

.step textarea {
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px
}

.step textarea:focus-visible {
    outline: 0
}

.error-section-banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.error-section-banner .banner-description {
    font-size: 1.5rem
}

.error-section-banner::before {
    top: 0
}

.error-section-banner .banner-group-image-section {
    padding: 50px 0 50px 0;
    flex-direction: column
}

.inner-banner-section.thank-you-page .inner-banner-caption {
    padding: 100px 0
}

.inner-banner-section.thank-you-page .inner-banner-caption .banner-main-title {
    font-size: 72px
}

@media (max-width: 1599px) {
    .inner-banner-section.thank-you-page .inner-banner-caption {
        padding: 60px 0
    }

    .inner-banner-section.thank-you-page .inner-banner-caption .banner-inner {
        margin: 0 0 30px 0
    }

    .inner-banner-section.thank-you-page .inner-banner-caption .banner-main-title {
        font-size: 62px
    }
}

@media (max-width: 1366px) {
    .error-section-banner .banner-description {
        font-size: 1.25rem
    }
}

@media (max-width: 1199px) {
    .inner-banner-section.thank-you-page .inner-banner-caption .banner-main-title {
        font-size: 58px
    }

    .error-section-banner {
        height: 70vh
    }
}

@media (max-width: 991px) {
    .error-section-banner .banner-group-image-section {
        padding: 20px 0 50px 0;
        flex-direction: column
    }
}

@media (max-width: 767px) {
    .error-section-banner {
        height: 100%
    }

    .error-section-banner .banner-description {
        font-size: 1rem
    }

    .inner-banner-section.thank-you-page .inner-banner-caption {
        padding: 30px 0 50px 0
    }

    .inner-banner-section.thank-you-page .inner-banner-caption .banner-main-title {
        font-size: 48px
    }
}

@media (max-width: 576px) {
    .error-section-banner .banner-group-image-section {
        padding: 0px 0 50px 0;
        flex-direction: column
    }

    .inner-banner-section.thank-you-page .inner-banner-caption {
        padding: 0px 0 40px 0
    }

    .inner-banner-section.thank-you-page .inner-banner-caption .banner-main-title {
        font-size: 40px
    }
}

.houseRent.house-new-section .house-rent-form #msform fieldset label {
    color: #212529;
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin: 0 0 5px 0;
    text-align: left;
    letter-spacing: 0
}

.houseRent.house-new-section .house-rent-form #msform fieldset .form-control {
    border: 0;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px
}

.houseRent.houseRentForm.house-new-section {
    margin-top: 80px;
    position: relative;
    padding: 80px 0 80px;
    z-index: 2;
    background: none;
    background-color: #FFEEDB
}

.houseRent.house-new-section .house-rent-form #msform fieldset .connnectFormTitle {
    margin-bottom: 35px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1818;
    text-align: left
}

.houseRent.houseRentForm.house-new-section .connectContent .p_sec {
    max-width: 100%;
    margin: 0 0 30px 0;
    font-size: 14px
}

.houseRent.houseRentForm.house-new-section .banner-listing-items .item-list {
    background: #fff5ea
}

.houseRent.houseRentForm.house-new-section .banner-listing-items .item-list .list-title {
    font-size: 14px;
    font-weight: 500;
    text-align: center
}

.houseRent.houseRentForm.house-new-section .banner-listing-items .item-list {
    background: #fff5ea;
    padding: 10px 20px 10px 35px
}

.houseRent.house-new-section .house-rent-content {
    position: relative;
    border-radius: 25px
}

.houseRent.house-new-section .house-rent-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: -webkit-gradient(linear, left bottom, right top, color-stop(-5%, #1325e8), to(#8f10b7));
    background-image: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border-radius: 25px;
    z-index: -1
}

.houseRent.house-new-section .house-rent-content li {
    color: #383838;
    font-size: 18px;
    font-weight: 600
}

.houseRent.house-new-section .house-rent-content li + li {
    margin-top: 10px
}

.houseRent.house-new-section .house-rent-form {
    min-height: 400px;
    max-height: auto
}

.houseRent.house-new-section .house-rent-form #msform {
    text-align: center;
    position: relative
}

.houseRent.house-new-section .house-rent-form #msform fieldset {
    background: #fff;
    border: 0 none;
    border-radius: 8px;
    width: 80%;
    margin: 0 10%;
    position: relative;
    background-color: #FFF5EA;
    border-radius: 50px;
    padding: 50px 60px
}

.houseRent.house-new-section .house-rent-form #msform fieldset:not(:first-of-type) {
    display: none
}

.houseRent.house-new-section .house-rent-form #msform .action-button {
    width: 100px;
    background: #2098ce;
    font-weight: 700;
    color: #fff;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    text-align: center;
    display: inline-block
}

.houseRent.house-new-section .house-rent-form #msform .action-button-previous {
    width: 100px;
    background: #acbed0;
    font-weight: 700;
    color: #fff;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    text-align: center
}

.houseRent.house-new-section .house-rent-form #msform input, .houseRent.house-new-section .house-rent-form #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #2c3e50;
    font-size: 13px
}

.houseRent.house-new-section .house-rent-form #msform input:focus, .houseRent.house-new-section .house-rent-form #msform textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #2098ce;
    outline-width: 0;
    transition: All .5s ease-in;
    -webkit-transition: All .5s ease-in;
    -moz-transition: All .5s ease-in;
    -o-transition: All .5s ease-in
}

.houseRent.house-new-section .house-rent-form #msform .action-button:focus, .houseRent.house-new-section .house-rent-form #msform .action-button:hover {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2098ce;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2098ce
}

.houseRent.house-new-section .house-rent-form #msform .action-button-previous:focus, .houseRent.house-new-section .house-rent-form #msform .action-button-previous:hover {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #acbed0;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #acbed0
}

.houseRent.house-new-section .house-rent-form .fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 700
}

.houseRent.house-new-section .house-rent-form .fs-subtitle {
    font-weight: 400;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px
}

.houseRent.house-new-section .house-rent-form #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step
}

.houseRent.house-new-section .house-rent-form #progressbar li {
    list-style-type: none;
    color: #666;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px
}

.houseRent.house-new-section .house-rent-form #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #fff;
    border-radius: 25px;
    margin: 0 auto 10px auto
}

.houseRent.house-new-section .house-rent-form #progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1
}

.houseRent.house-new-section .house-rent-form #progressbar li:first-child:after {
    content: none
}

.houseRent.house-new-section .house-rent-form #progressbar li.active:after, .houseRent.house-new-section .house-rent-form #progressbar li.active:before {
    background: #2098ce;
    color: #fff
}

.houseRent.houseRentForm {
    padding: 50px 0 75px;
    background: linear-gradient(0deg, #d2deff 0, rgba(201, 215, 255, .0) 100%)
}

.houseRent .house-rent-receipt {
    padding: 75px 0
}

.houseRent .connectContent .title {
    font-size: 36px
}

.houseRent .connnectImgSec {
    position: relative
}

.houseRent .connnectImgSec .connnectImg {
    max-width: 500px;
    width: 100%;
    left: 0;
    right: 0
}

.houseRent .house-rent-receipt .receipt-content {
    border: none;
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px
}

.houseRent .house-rent-receipt .receipt-content .receipt-title {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize
}

.houseRent .house-rent-receipt .receipt-content .receipt-footer {
    border-top: 1px solid #ddd
}

.houseRent .house-rent-receipt .receipt-content .receipt-footer a {
    text-decoration: none;
    border-bottom: 1px solid #828282;
    line-height: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #2559A6;
    margin: 0 !important;
    text-transform: capitalize;
    background-color: transparent !important;
    display: inline-flex;
    align-items: center;
    padding: 0 !important
}

.houseRent .house-rent-receipt .receipt-content .receipt-footer a:hover {
    color: #1a1818
}

.houseRent .house-rent-receipt .receipt-content .receipt-footer span {
    font-size: 16px;
    color: #fff
}

.houseRent .house-rent-receipt .receipt-content.receipt-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #1A1818;
    margin: 0 0 15px 0;
    text-transform: capitalize
}

.house-rent-receiptTitle {
    text-align: center
}

.house-rent-receiptTitle {
    letter-spacing: 0px;
    color: #1A1818;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0px auto 25px auto;
    text-align: center
}

.house-rent-receiptTitle p {
    font-size: 14px;
    color: #3E5468
}

.houseRent .house-rent-receipt .receipt-content p {
    font-size: 14px
}

.houseRent.houseRentForm.house-new-section .banner-listing-items .item-list::after {
    left: 20px
}

.houseRent.houseRentForm.house-new-section .connectContent title {
    font-size: 2.2vw
}

.houseRent.houseRentForm.house-new-section .banner-listing-items .item-list::after {
    display: none
}

.houseRent.house-new-section .house-rent-form .previous {
    text-transform: capitalize
}

.houseRent.house-new-section .house-rent-form .next {
    text-transform: capitalize
}

@media (max-width: 1366px) {
    .houseRent.houseRentForm.house-new-section .banner-listing-items .item-list {
        padding: 10px 15px 10px 15px
    }
}

@media (max-width: 1299px) {
    .houseRent.house-new-section .house-rent-form #msform fieldset {
        border-radius: 30px;
        padding: 40px 35px
    }
}

@media (max-width: 1024px) {
    .houseRent.houseRentForm.house-new-section {
        padding: 60px 0 60px;
        margin-top: 60px
    }

    .houseRent .house-rent-receipt .receipt-content {
        max-width: 80%
    }

    .houseRent .house-rent-receipt {
        padding: 50px 0
    }
}

@media (max-width: 991px) {
    .houseRent.houseRentForm.house-new-section {
        padding: 30px 0 60px;
        margin-top: 30px
    }

    .houseRent .house-rent-receipt .receipt-content {
        max-width: 90%
    }
}

@media (max-width: 767px) {
    .houseRent .house-rent-receipt {
        padding: 40px 0
    }

    .houseRent.house-new-section .house-rent-form #msform fieldset {
        width: 100%;
        margin: 0 auto
    }

    .houseRent.house-new-section .house-rent-form #msform fieldset .connnectFormTitle {
        margin-bottom: 20px;
        font-size: 20px
    }

    .houseRent.house-new-section .house-rent-form {
        min-height: auto
    }
}

@media (max-width: 576px) {
    .houseRent.house-new-section .house-rent-form #msform fieldset {
        border-radius: 20px;
        padding: 20px
    }

    .houseRent.house-new-section .house-rent-form #msform fieldset .connnectFormTitle {
        font-size: 18px
    }

    .houseRent.houseRentForm.house-new-section {
        padding: 30px 0 40px
    }

    .houseRent .house-rent-receipt {
        padding: 30px 0
    }

    .house-rent-receiptTitle {
        margin: 0px auto 10px auto
    }
}

@media (max-width: 379px) {
    .houseRent.houseRentForm.house-new-section .banner-listing-items .item-list {
        padding: 10px 15px 10px 40px
    }
}

th.prev.disabled, th.next.disabled {
    opacity: 0.3;
    pointer-events: none
}

.footerBottom .social-list a svg {
    fill: #ffffff;
    transition: 0.3s ease-in-out all
}

.footerBottom .social-list a svg:hover {
    filter: invert(50%)
}

.siteMap-page:before {
    content: none
}

.siteMap-page {
    background-color: transparent linear-gradient(180deg, #D8EEEC 60%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.siteMapMain {
    position: relative;
    z-index: 1
}

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

.siteMapMain .white-box {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 50px;
    margin-bottom: 50px
}

.white-box h4, .white-box h4 a {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--theme-text-cyan);
    transition: 0.3s ease-in-out all
}

.white-box h4 a:hover {
    color: #40aba3
}

.siteMapMain .white-box .site-listing-sub, .siteMapMain .white-box ul.site-main-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.siteMapMain .white-box ul.site-main-listing {
    justify-content: space-between
}

.siteMapMain .white-box ul.site-main-listing li {
    margin: 0;
    position: relative;
    width: calc(20% - 30px);
    text-align: center
}

.siteMapMain .white-box ul.site-main-listing li a {
    display: block;
    border-radius: 30px;
    border: 1px dashed rgba(var(--title-color-opc), .2)
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 {
    width: calc(33.33% - 30px)
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 .site-sub-list-title, .siteMapMain .white-box ul.site-main-listing li a, .white-box.xml_sitemap_link ul li a {
    font-weight: 500;
    padding: 10px 20px;
    transition: .4s ease-in-out;
    font-size: 16px;
    background-color: #F2F9F9;
    border-radius: 5px;
    border: 1px solid #C6E8E5;
    color: var(--theme-gray);
    text-align: center
}

.siteMapMain .white-box ul.site-main-listing li a:hover, .white-box.xml_sitemap_link ul li a:hover {
    background-color: #C6E8E5
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 .site-sub-list-title {
    text-align: left;
    display: block;
    margin-bottom: 15px
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 .site-sub-list-title:hover {
    background-color: #C6E8E5
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 li a:hover, .siteMapMain .white-box ul.site-main-listing li:hover a {
    color: var(--primary-color1) !important;
    transition: .4s ease-in-out
}

.siteMapMain .white-box ul.site-main-listing li ul.site-sub-listing li {
    background-color: #fff !important
}

.siteMapMain .white-box ul.site-main-listing li ul.site-sub-listing li a {
    color: #000 !important;
    font-size: 14px !important
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 li a {
    font-weight: 500;
    border-radius: 10px;
    transition: .4s ease-in-out;
    color: var(--theme-gray);
    font-size: 14px !important;
    border: 0;
    margin: 0;
    padding: 0;
    display: inline-block
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 li {
    padding: 0;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 li a::before {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    height: 6px;
    width: 6px;
    background-color: var(--theme-text-cyan);
    border-radius: 100px;
    transition: 0.3s ease-in-out all;
    top: -2px
}

.siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 li a:hover::before {
    width: 12px
}

.white-box.xml_sitemap_link ul li a {
    display: inline-block;
    border-radius: 30px;
    border: 1px dashed rgba(var(--title-color-opc), .2)
}

.siteMapMain .white-box ul.calPages.site-main-listing {
    gap: 20px
}

.siteMapMain .white-box ul.calPages.site-main-listing li a {
    padding: 10px 5px !important
}

.siteMapMain .white-box ul.site-main-listing li.calculatorClass {
    width: calc(40% - 20px)
}

@media (max-width: 1366px) {
    .siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 .site-sub-list-title, .siteMapMain .white-box ul.site-main-listing li a, .white-box.xml_sitemap_link ul li a {
        font-size: 14px
    }

    .siteMapMain .white-box ul.site-main-listing.calPages li {
        width: calc(33.33% - 15px)
    }

    .siteMapMain .white-box ul.calPages.site-main-listing {
        gap: 15px
    }

    .siteMapMain .white-box ul.site-main-listing {
        justify-content: start
    }
}

@media (max-width: 991px) {
    .siteMapMain .white-box ul.site-main-listing {
        gap: 20px
    }

    .siteMapMain .white-box ul.site-main-listing li {
        width: calc(25% - 20px)
    }

    .siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 {
        width: calc(50% - 30px)
    }

    .siteMapMain .white-box ul.site-main-listing.calPages li {
        width: calc(50% - 15px)
    }

    .siteMapMain .white-box {
        border-bottom: 1px solid #cccccc;
        padding-bottom: 25px;
        margin-bottom: 25px
    }

    .white-box h4, .white-box h4 a {
        margin-bottom: 10px;
        font-size: 26px
    }
}

@media (max-width: 767px) {
    .siteMapMain .white-box ul.site-main-listing {
        gap: 15px
    }

    .siteMapMain .white-box ul.site-main-listing li {
        width: calc(50% - 15px)
    }
}

@media (max-width: 575px) {
    .siteMapMain .white-box .site-listing-sub ul.site-main-listing-2 {
        width: 100%
    }

    .siteMapMain .white-box ul.site-main-listing.calPages li {
        width: 100%
    }

    .siteMapMain .white-box ul.site-main-listing li {
        width: calc(50% - 8px)
    }
}

.fd_year_month_select .select2-selection.select2-selection--single, .rd_year_month_select .select2-selection.select2-selection--single, .compound_int_year_month_select .select2-selection.select2-selection--single, .it_fy_select .select2-selection.select2-selection--single, .it_age_select .select2-selection.select2-selection--single, .proucts-listing-for-mobile .select2-selection.select2-selection--single {
    text-align: justify !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -ms-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important
}

.select2-dropdown.select2-dropdown--below {
    border: 0 !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -ms-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    padding: 10px !important
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eaeaea !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    -ms-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
    height: 37px !important;
    border-radius: 6px !important
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: 0 !important
}

.select2-results__option {
    padding: 5px 10px !important;
    margin: 5px !important
}

.select2-results__option.select2-results__option--highlighted {
    background-color: #e5e5e5 !important;
    border-radius: 4px !important;
    color: #3e5468 !important
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #b9b9b9 !important;
    color: #ffffff !important;
    border-radius: 4px !important
}

.select2-dropdown {
    z-index: 2 !important
}

.calculatorSec.incomeTaxCalcSec .calculator_counter .range_slider_box {
    min-height: 100px
}

.ssyTermYearsNote.year-invest.range_slider_box div + div {
    border-top: 1px solid #E6E6E6;
    margin-top: 15px;
    padding-top: 15px
}

.accordion-it-option .accordion-item .accordion-body input {
    border: 1px solid #E6E6E6;
    width: 30%
}

.accordion-it-option .accordion-item .accordion-button:focus {
    box-shadow: none
}

.calCFAQSection.faq-section.incomeTaxFormFaqs .accordion-item {
    border-radius: 10px
}

.calCFAQSection.faq-section.incomeTaxFormFaqs .accordion .accordion-button {
    font-size: 18px;
    padding: 15px 70px 15px 15px
}

.calCFAQSection.faq-section.incomeTaxFormFaqs .accordion .accordion-button span {
    top: 12px;
    height: 25px;
    width: 25px
}

.range_slider_box .oldRegime, .range_slider_box .newRegime {
    font-size: 20px
}

.calc_total_data_table.income_tax_total_data .range_slider_box {
    min-height: auto !important
}

.calc_total_data_table.income_tax_total_data, .incomeTaxFormFaqs.calc_total_data_table {
    min-height: 220px
}

.accordion-it-option .accordion-item .accordion-body.it_acc_body .it_acc_body_content .it_acc_body_content_title {
    color: #000000;
    font-size: 16px
}

.accordion-it-option .accordion-item .accordion-body.it_acc_body .it_acc_body_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

@media (max-width: 767px) {
    .calc_total_data_table .ctdt_box .ctdt_title, .calc_total_data_table .ctdt_box .ctdt_amount, .gst_total_amo_data .gtad_title {
        font-size: 14px
    }

    .calculatorSec, .calculatorSec .calculator_counter, .calculatorSec .calculator_counter .range_slider_box {
        padding: 10px
    }

    .calculatorSec .calculator_counter .range_slider_box .calc-scheme-period-title .calCSlidertitle, .calculatorSec .calculator_counter .range_slider_box .rate-of-interest .calCSlidertitle {
        font-size: 14px
    }

    .calCFAQSection.faq-section .accordion .accordion-body.it_acc_body {
        padding: 0px 15px 20px 15px
    }

    .accordion-it-option .accordion-item .accordion-body.it_acc_body .it_acc_body_content {
        flex-direction: column;
        align-items: start
    }

    .accordion-it-option .accordion-item .accordion-body.it_acc_body .it_acc_body_content .it_acc_body_content_title {
        margin-bottom: 5px;
        font-size: 14px;
        text-align: left
    }

    .accordion-it-option .accordion-item .accordion-body.it_acc_body .it_acc_body_content input {
        width: 100%
    }

    .gst_calc_radios .gst_exclusive_radio, .gst_calc_radios .gst_inclusive_radio {
        width: 75%;
        margin: 0 auto;
        justify-content: center
    }
}

.main-header .header-contact {
    text-align: right
}

.main-header .header-contact .hc_title {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--theme-gray);
    text-transform: uppercase
}

.main-header .header-contact .hc_email {
    display: flex;
    align-items: center;
    justify-content: end
}

.main-header .header-contact .hc_email a {
    color: var(--theme-gray);
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -mos-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all
}

.main-header .header-contact .hc_email a:hover {
    color: var(--theme-primary-light)
}

.main-header .header-contact .hc_email a + a {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid
}

@media (max-width: 767px) {
    .main-header .header-contact {
        text-align: center
    }

    .main-header .header-contact .hc_title, .main-header .header-contact a {
        font-size: 13px
    }

    .main-header .header-contact .hc_email {
        margin-left: -10px
    }
}

.connect-with-us-page {
    display: block;
    width: 100%;
    padding: 150px 0 0px 0;
    position: relative;
    z-index: 2
}

.inner-banner-section.connect-with-us-page {
    background: transparent linear-gradient(180deg, #FAE3DA 0%, #FFFFFF 40%) 0% 0% no-repeat padding-box
}

.inner-banner-section.connect-with-us-page:before {
    content: '';
    position: absolute;
    background-image: url(../images/product-page/product-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 80%;
    width: 100%;
    top: 0;
    z-index: -1
}

.inner-banner-section.connect-with-us-page::after {
    content: '';
    position: absolute;
    background-image: url(../images/banner-pattern.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    top: -162px;
    left: 0;
    right: 0;
    width: 1042px;
    height: 1042px;
    z-index: -1;
    margin: 0 auto
}

.connect-with-us-page .banner-listing-items {
    max-width: 100%
}

.connect-with-us-page .banner-listing-items .item-list {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: rgba(0, 0, 0, 0.10) 0px 2px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.10) 0px 2px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.10) 0px 2px 8px;
    -ms-box-shadow: rgba(0, 0, 0, 0.10) 0px 2px 8px
}

.connect-with-us-page .connect-with-us-form .btn {
    min-width: 150px
}

.connect-with-us-page .connect-with-us-form {
    margin-bottom: -6vw
}

.newGuidePageFormSection {
    position: relative;
    background: transparent linear-gradient(180deg, #CBD5ED 0%, #FFFFFF 50%) 0% 0% no-repeat padding-box;
    z-index: 1;
    padding: calc(5vw + 125px) 0 75px 0
}

.newGuidePageFormSection:before {
    content: '';
    position: absolute;
    background-image: url(../../images/solutions-page/solution-detail-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0
}

.newGuidePageFormSection .powerofhrhubItem .powerofhrhubIcon {
    background-color: #ffffff
}

.newGuidePageFormSection .powerofhrhubItem .powerofhrhubIcon span {
    font-size: 24px;
    font-weight: 600
}

.newGuidePageFormSection .powerofhrhubItem p {
    font-size: 16px
}

.newGuidePageFormSection .guideForm {
    position: relative;
    margin-bottom: 75px
}

.newGuidePageFormSection .guideForm .guideForm-area {
    max-width: 100%;
    padding: 25px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -ms-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    background-color: #ffffff
}

.newGuidePageFormSection .guideForm .guideForm-area .primary-btn1 {
    min-width: 200px;
    border-radius: 25px;
    justify-content: center;
    font-weight: 600;
    font-size: 17px
}

.newGuidePageFormSection .guideForm label {
    font-size: 16px
}

.newGuidePageFormSection .powerofhrhubImg {
    position: sticky;
    top: 120px
}

.connect-with-us-formSec {
    background: transparent linear-gradient(180deg, #FAE3DA 0%, #FFFFFF 40%) 0% 0% no-repeat padding-box
}

.connect-with-us-footer {
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px;
    -ms-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px
}

.connect-with-us-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0
}

.connect-with-us-footer .footer-bottom .footer-bottom-right ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    line-height: 1;
    margin: 0;
    padding: 0
}

.connect-with-us-footer .footer-bottom .footer-bottom-right ul li {
    list-style: none
}

.connect-with-us-footer .footer-bottom .footer-bottom-right ul li a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.3px;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -mos-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    border-bottom: 1px solid transparent;
    color: var(--theme-gray)
}

.mobileApp-section {
    position: relative
}

.mobileApp-section::before {
    position: absolute;
    content: "";
    background-image: url(../images/landing-page/mobile-app.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    top: 0
}

.mobileApp-section .mobileApp-content {
    position: relative;
    z-index: 1
}

.mobileApp-section .mobileApp-content .appDownloadBtn {
    display: flex;
    align-items: center
}

.appDownloadBtn .app-qr {
    text-align: center;
    color: #ffffff;
    display: inline-block
}

.appDownloadBtn .app-qr img {
    max-width: 95px;
    border: 2px solid #cccccc;
    border-radius: 5px
}

.appDownloadBtn .app-qr .scan-qr {
    font-size: 14px;
    color: var(--theme-gray);
    font-weight: 500;
    margin-top: 5px
}

@media (max-width: 1366px) {
    .inner-banner-section.connect-with-us-page .banner-listing-items .item-list {
        padding: 10px 50px
    }

    .inner-banner-section.connect-with-us-page .banner-listing-items .item-list .list-title {
        font-size: 14px
    }
}

@media (max-width: 1199px) {
    .inner-banner-section.connect-with-us-page::after {
        width: 100%
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubImg img {
        max-width: 100%
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubItem .powerofhrhubTitle {
        font-size: 16px
    }

    .newGuidePageFormSection .powerofhrhubItem p {
        font-size: 14px
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubItem {
        min-height: 75px
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubItem .powerofhrhubIcon {
        min-width: 50px;
        height: 50px
    }

    .newGuidePageFormSection .powerofhrhubItem .powerofhrhubIcon span {
        font-size: 22px
    }
}

@media (max-width: 991px) {
    .inner-banner-section.connect-with-us-page .banner-listing-items .item-list {
        padding: 10px 40px
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubImg {
        max-width: 100%;
        margin: 0 auto 50px
    }

    .powerofhrhub.connect-with-us-formSec .powerofhrhubImg img {
        margin: 0
    }

    .newGuidePageFormSection.connect-with-us-formSec {
        padding: calc(0vw + 100px) 0 35px 0
    }

    .mobileApp-section::before {
        opacity: 0.05
    }

    .mobileApp-content .title {
        font-size: 22px;
        margin-bottom: 20px
    }

    .mobileApp-section .mobileApp-content {
        text-align: center
    }

    .mobileApp-section.workingProcess {
        padding: 35px 0
    }

    .mobile_app_page_Sec.mobileApp-section .mobileApp-content .appDownloadBtn {
        flex-direction: row;
        justify-content: center
    }

    .mobile_app_page_Sec.mobileApp-section .mobileApp-content .appDownloadBtn .appIcons {
        margin-top: 0;
        margin-bottom: 10px
    }

    .connect-with-us-footer .footer-bottom p {
        font-size: 14px
    }

    .connect-with-us-footer .footer-bottom .footer-bottom-right ul {
        justify-content: space-evenly;
        gap: 20px
    }
}

@media (max-width: 767px) {
    .connect-with-us-page {
        padding: 100px 0 0 0
    }

    .main-header .header-contact {
        padding: 5px 0
    }

    .main-header .header-contact .hc_email {
        flex-direction: column;
        margin-left: 0
    }

    .main-header .header-contact .hc_email a + a {
        margin-left: 0;
        padding-left: 0;
        border-left: 0
    }

    .connect-with-us-footer .footer-bottom {
        flex-direction: column
    }

    .connect-with-us-footer .footer-bottom .copyright-area p {
        font-size: 13px
    }

    .connect-with-us-footer .footer-bottom .footer-bottom-right {
        margin-top: 10px
    }

    .connect-with-us-footer .footer-bottom .footer-bottom-right ul li a {
        font-size: 14px
    }

    .mobile_app_page_Sec.mobileApp-section .mobileApp-content .appDownloadBtn {
        flex-direction: column
    }

    .mobile_app_page_Sec.mobileApp-section .mobileApp-content .appDownloadBtn .appIcons {
        margin-top: 10px;
        margin-bottom: 0
    }

    .mobileApp-section .mobileApp-content .appDownloadBtn {
        flex-direction: column
    }

    .mobileApp-section .mobileApp-content .appDownloadBtn .app-qr {
        margin-bottom: 10px
    }
}

@media (max-width: 379px) {
    .mobileApp-section .mobileApp-content .appDownloadBtn .appIcons img {
        max-width: 90%
    }
}

.blogDetail_right.write_for_us_blog_right_sec {
    position: sticky;
    top: 125px;
    display: flex;
    flex-direction: column;
    align-items: end
}

.cms ol li::marker, .cms ul li::marker {
    color: var(--theme-gray);
    font-weight: 500
}

.cms blockquote {
    padding: 25px 35px;
    border-radius: 8px;
    font-style: italic;
    border-left: 5px solid #1A1818;
    min-height: 80px;
    flex-direction: column;
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: #FFF5EA;
    text-align: left;
    letter-spacing: 0px;
    color: #1a181899;
    font-size: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    line-height: 150%;
    font-weight: 600
}

.cms blockquote small {
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    margin-top: 10px
}

.cms ol {
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: var(--theme-gray);
    margin-bottom: 15px
}

.cms img {
    max-width: 100% !important;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    display: block
}

.cms ol[type='i'] {
    color: #3e5468;
    font-size: 18px
}

.cms ul {
    padding: 0 0 0 35px;
    margin: 0 0 15px;
    list-style: disc
}

.cms ul li {
    color: #3E5468;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0px;
    margin-bottom: 10px
}

.cms ul li:last-child {
    margin-bottom: 0px
}

.cms .table tr td p, .cms .table tr td {
    text-align: left;
    background-color: #EAF6F6;
    font-size: 16px;
    color: #3E5468;
    vertical-align: middle;
    margin-bottom: 0
}

.cms .table tr th p, .cms .table tr th {
    text-align: left;
    color: #000;
    font-weight: 600;
    vertical-align: middle;
    margin-bottom: 0
}

.cms .table tr td, .cms .table tr th {
    padding: 10px 20px
}

.cms a {
    color: #2559A6;
    font-weight: 500
}

.cms a:hover {
    color: #1A1818
}

.cms b, .cms strong {
    font-weight: 600
}

.cms .max500Img {
    max-width: 500px !important
}

.blogDetail .blogImage {
    position: relative;
    aspect-ratio: 6 / 4.20;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 25px
}

.blogDetail .blogImage img {
    border-radius: 25px;
    max-width: 100%
}

@media (max-width: 1600px) {
    .cms blockquote, .cms ol, .cms ul li, .cms ol[type='i'] {
        font-size: 16px
    }

    .cms .table tr td p, .cms .table tr td {
        font-size: 14px
    }

    .blogDetail_right.write_for_us_blog_right_sec {
        top: 100px
    }
}

@media (max-width: 1366px) {
    .cms .table {
        min-width: 800px
    }

    .cms blockquote {
        padding: 25px 25px
    }
}

@media (max-width: 767px) {
    .cms h1 {
        font-size: 36px
    }

    .cms h2 {
        font-size: 30px
    }

    .cms h3 {
        font-size: 28px
    }

    .cms h4 {
        font-size: 26px
    }

    .cms h5 {
        font-size: 24px
    }

    .cms h6 {
        font-size: 22px
    }
}

.inner-banner-section.connect-with-us-page.mobile_app_landing_main {
    background: transparent linear-gradient(180deg, #CBD5ED 0%, #FFFFFF 50%) 0% 0% no-repeat padding-box
}

.inner-banner-section.connect-with-us-page.mobile_app_landing_main:before {
    height: 100%;
    background-image: url(../images/blue-patch.png)
}

.mobile_app_landing_main .banner_img_content_section {
    margin: 40px 0
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_img img {
    max-width: 100%
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content {
    text-align: left;
    padding: 50px 0 0 25px
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title {
    text-align: left
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title span {
    color: #ff7859
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .appDownloadBtn {
    display: flex;
    align-items: center
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .appDownloadBtn .app-qr img {
    max-width: 135px
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .mob_app_banner_rating {
    display: flex;
    align-items: center
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .mob_app_banner_rating .rating_count {
    font-size: 28px;
    font-weight: 600;
    color: #3E5468
}

.mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .mob_app_banner_rating .rating_content {
    font-size: 20px;
    color: #3e5468bf;
    font-weight: 600
}

.abtUs-multiBox.mobileAppMultiBox {
    margin: 75px 0
}

.abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
    padding: 30px;
    min-height: 305px
}

.abtUs-multiBox.mobileAppMultiBox .item {
    margin-top: 0
}

.abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxTitle {
    padding: 0 20px
}

.mobileAppStepsSection {
    padding: 75px 0 calc(15.5vw + 75px) 0;
    background: #D6DFF5 0% 0% no-repeat padding-box
}

.mobileAppStepsSection .stepsSection {
    position: relative;
    z-index: 2
}

.mobileAppStepsSection:before {
    content: '';
    position: absolute;
    background-image: url(../images/blue-patch.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0
}

.mobileAppStepsSection .stepsSection {
    position: relative;
    padding: 0 50px 0;
    background-color: #2559a6;
    border-radius: 25px
}

.mobileAppStepsSection .stepsSection:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 600px;
    background-image: url(../images/mobile-app-landing/stepBoxbg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    opacity: 0.15;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 25px
}

.mobileAppStepsSection .stepsSection .heading-title {
    position: relative;
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    padding: 75px 0;
    margin: 0;
    z-index: 1
}

.mobileAppStepsSection .stepsBox {
    background-color: #f8f8f8;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    -ms-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: -15.5vw;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.mobileAppStepsSection .stepsBox .stepsBoxContent {
    padding: 25px 35px
}

.mobileAppStepsSection .stepsBox .stepsTitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 125%;
    max-width: 80%;
    margin: 0 auto 10px
}

.mobileAppStepsSection .stepsBox p {
    font-size: 14px;
    margin: 0 auto;
    max-width: 85%
}

.mobileAppStepsSection .stepsBox .stepsBoxImg {
    position: relative;
    padding: 0 25px
}

.mobileAppStepsSection .stepsBox .stepsBoxImg:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 100%;
    top: -20px;
    background-image: url(../images/mobile-app-landing/stepsBoxImgBg.webp);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    left: 0;
    margin: 0 auto;
    opacity: 0.5;
    right: 0
}

.mobileAppStepsSection .stepsBox.step2 .stepsBoxImg:before {
    bottom: -20px;
    top: auto;
    background-image: url(../images/mobile-app-landing/stepsBoxImgBg.webp);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    left: 0;
    margin: 0 auto;
    opacity: 0.5;
    right: 0;
    transform: scaleY(-1)
}

.mobileAppStepsSection .stepsBox:hover img {
    transform: scale(1.05)
}

.mobileAppStepsSection .stepsBox img {
    position: relative;
    max-width: 400px;
    width: 90%;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -mos-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all
}

.abtUs-multiBox.mobileAppTestimonialsBox {
    margin: 50px 0
}

.abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem {
    background-color: #eef5e3;
    padding: 20px
}

.abtUs-multiBox.mobileAppTestimonialsBox .abtUs-multiBoxitem {
    min-height: 350px
}

.abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars {
    text-align: left;
    margin-bottom: 15px
}

.abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
    min-height: 220px
}

.abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_clients {
    text-align: left;
    display: flex;
    align-items: center
}

.abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_clients .testi_ratings_clients_name {
    font-size: 16px;
    font-weight: 600
}

.testi_ratings_clients_profile {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #ababab;
    display: inline-flex;
    margin-right: 10px
}

.mobile_app_page_Sec .mobileApp-content .title {
    font-size: 48px
}

@media (max-width: 1366px) {
    .mobileAppStepsSection .stepsBox .stepsTitle {
        max-width: 90%
    }

    .mobileAppStepsSection .stepsBox p {
        max-width: 100%
    }

    .abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
        min-height: 330px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 260px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_clients .testi_ratings_clients_name {
        font-size: 14px
    }
}

@media (max-width: 1199px) {
    .mobileAppStepsSection .stepsSection .heading-title {
        font-size: 42px
    }

    .mobile_app_landing_main .banner-inner .banner-description {
        max-width: 100%
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content {
        padding: 0
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title {
        font-size: 34px
    }

    .mobileAppStepsSection .stepsBox .stepsBoxContent {
        padding: 25px 20px
    }

    .mobileAppStepsSection .stepsBox .stepsTitle {
        font-size: 18px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .abtUs-multiBoxitem {
        min-height: 310px
    }

    .mobileAppStepsSection .stepsBox .stepsTitle {
        max-width: 80%
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .mob_app_banner_rating .rating_content {
        font-size: 16px
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_img img {
        max-width: 90%
    }

    .mobileApp-section .mobileApp-content p {
        font-size: 14px
    }

    .mobileAppStepsSection .stepsSection .heading-title {
        padding: 50px 0
    }

    .mobile_app_page_Sec .mobileApp-content .title {
        font-size: 42px
    }

    .abtUs-multiBox .abtUs-multiBoxitem p {
        font-size: 14px
    }

    .inner-banner-section.connect-with-us-page.mobile_app_landing_main .inner-banner-caption {
        padding-top: 20px
    }

    .whyhrhubmultiBox .abtUs-multiBoxitem p {
        height: 140px;
        font-size: 14px
    }

    .abtUs-multiBox.writeForUsMultiBox .abtUs-multiBoxitem p {
        font-size: 14px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 200px
    }

    .abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
        min-height: 280px
    }
}

@media (max-width: 991px) {
    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .appDownloadBtn .app-qr img {
        max-width: 110px
    }

    .inner-banner-caption .banner-inner .banner-description {
        font-size: 14px
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content {
        padding: 0
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title {
        max-width: 100%;
        font-size: 26px
    }

    .mobileAppStepsSection .stepsSection {
        max-width: 80%;
        margin: 0 auto
    }

    .mobileAppStepsSection .stepsBox {
        margin: 0 auto 35px
    }

    .mobileAppStepsSection .stepsSection:before {
        width: 100%
    }

    .stepsBox.step2 {
        display: none
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 175px
    }

    .mobileAppStepsSection .stepsSection .heading-title {
        font-size: 32px
    }

    .mobileAppStepsSection .stepsBox .stepsTitle {
        font-size: 24px
    }

    .mobileAppStepsSection {
        padding: 75px 0
    }

    .abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
        min-height: 250px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 150px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .abtUs-multiBoxitem {
        min-height: 280px
    }

    .abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
        min-height: 230px
    }
}

@media (max-width: 767px) {
    .mobile_app_page_Sec .mobileApp-content .title, .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title, .mobileAppMultiBox .heading-title, .mobileAppTestimonialsBox .heading-title {
        font-size: 30px
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .heading-title {
        text-align: center
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .appDownloadBtn {
        justify-content: center
    }

    .mobile_app_landing_main .banner_img_content_section .mobile_app_banner_content .mob_app_banner_rating {
        justify-content: center
    }

    .mobileAppStepsSection .stepsSection {
        padding: 0 20px 0
    }

    .mobileAppStepsSection .stepsSection .heading-title {
        font-size: 30px;
        padding: 35px 0
    }

    .mobileAppStepsSection .stepsBox .stepsBoxContent {
        padding: 25px 25px
    }

    .mobileAppStepsSection .stepsBox .stepsBoxImg {
        padding: 0 0
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .abtUs-multiBoxitem {
        min-height: 270px
    }

    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 140px
    }

    .abtUs-multiBox.mobileAppMultiBox {
        margin: 50px 0
    }

    .mobileAppStepsSection .stepsSection {
        max-width: 100%;
        margin: 0 auto
    }

    .mobileAppStepsSection .stepsBox .stepsTitle {
        font-size: 20px
    }

    .mobile_app_landing_main .inner-banner-caption .banner-inner .banner-title br {
        display: none
    }

    .main-header .header-contact .hc_title, .main-header .header-contact .hc_email {
        align-items: end;
        text-align: right
    }
}

@media (max-width: 576px) {
    .inner-banner-section.connect-with-us-page.mobile_app_landing_main .inner-banner-caption {
        padding-top: 0px
    }
}

@media (max-width: 320px) {
    .abtUs-multiBox.mobileAppTestimonialsBox .mobileAppTestimonialsSlider .abtUs-multiBoxitem .testi_ratings_stars p {
        min-height: 200px
    }

    .abtUs-multiBox.mobileAppMultiBox .abtUs-multiBoxitem {
        min-height: 280px
    }
}

@media (min-width: 991px) {
    .stepsBox.stepBoxForMobile {
        display: none
    }
}

.contact-inner-data-removal.connect_with_us_inner_form {
    position: relative;
    padding: 0
}

.loader-spin.connect_with_us {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 11;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    border-radius: 25px
}

.loader-spin.connect_with_us .w-loader_inner {
    width: 6rem;
    height: 6rem;
    position: relative
}

.loader-spin.connect_with_us .w-loader_inner .double-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-radius: 100%;
    background-color: #336bba;
    opacity: 0.4;
    -webkit-animation: double-pulse 1.5s infinite ease-out;
    animation: double-pulse 1.5s infinite ease-out
}

.loader-spin.connect_with_us .w-loader_inner .double-pulse:nth-of-type(2) {
    -webkit-animation-delay: -450ms;
    animation-delay: -450ms
}

@keyframes double-pulse {
    0% {
        transform: scale(0)
    }
    100% {
        transform: scale(1);
        opacity: 0
    }
}

#otp_section .otp-field .otp-box {
    margin: 5px 0 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

#otp_section .otp-field .otp-box .otp_timer_minute {
    color: red;
    font-size: 14px
}

#otp_section .otp-field .otp-box .resend_otp_badge {
    background-color: rgb(0 0 0 / 50%);
    padding: 5px 7px;
    border-radius: 5px;
    color: #fff;
    line-height: 100%;
    font-size: 14px;
    transition: 0.3s ease-in-out all
}

#otp_section .otp-field .otp-box .resend_otp_badge:hover {
    background-color: rgb(0 0 0 / 90%)
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle a {
    color: #ffffff
}

.blogContent .blogCarousel .blogLatestBox .blogLatestBoxContent .blogLatestBoxTitle a:hover {
    color: #eef0f9
}

@media (max-width: 1699px) {
    .cms p {
        font-size: 16px
    }

    .cms h1, .blogDetail .blogDetailTitle {
        font-size: 36px
    }

    .cms h2 {
        font-size: 32px
    }

    .cms h3 {
        font-size: 26px
    }

    .cms h4 {
        font-size: 24px
    }

    .cms h5 {
        font-size: 22px
    }

    .cms h6 {
        font-size: 20px
    }

    .blogDetail .blogDetailTags {
        margin: 30px 0 30px
    }

    .blogDetail_right .categorySec .categorySecTitle {
        font-size: 22px
    }

    .blogDetail_right .blackBox.write-to-us .blackBoxTitle {
        font-size: 24px
    }

    .blogDetail_right .blackBox.socialShare .blackBoxSubTitle {
        font-size: 16px;
        margin-bottom: 25px
    }
}

@media (max-width: 1599px) {
    .cms h1, .cms h2, .cms h3, .cms h4, .cms h5, .cms h6 {
        margin-top: 30px
    }
}

@media (max-width: 1366px) {
    .cms h1, .blogDetail .blogDetailTitle {
        font-size: 30px
    }

    .cms h2 {
        font-size: 26px
    }

    .cms h3 {
        font-size: 24px
    }

    .cms h4 {
        font-size: 22px
    }

    .cms h5 {
        font-size: 20px
    }

    .cms h6 {
        font-size: 18px
    }
}

@media (max-width: 991px) {
    .cms h1, .blogDetail .blogDetailTitle {
        font-size: 26px
    }

    .cms p {
        font-size: 14px
    }

    .cms h2 {
        font-size: 24px
    }

    .cms h3 {
        font-size: 22px
    }

    .cms h4 {
        font-size: 20px
    }

    .cms h5 {
        font-size: 18px
    }

    .cms h6 {
        font-size: 16px
    }

    .cms h1, .cms h2, .cms h3, .cms h4, .cms h5, .cms h6 {
        margin-top: 25px
    }

    .cms blockquote, .cms ol, .cms ul li, .cms ol[type='i'] {
        font-size: 14px
    }
}

@media (max-width: 576px) {
    .cms h1, .blogDetail .blogDetailTitle {
        font-size: 24px
    }

    .cms h2 {
        font-size: 22px
    }

    .cms h3 {
        font-size: 20px
    }

    .cms h4 {
        font-size: 18px
    }
}

.inner-banner-section.scheduleDemoPage {
    background: transparent linear-gradient(180deg, #EEF0F9 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box
}

.inner-banner-section.scheduleDemoPage::before {
    content: none
}

.inner-banner-section.scheduleDemoPage .bookDemoBannerCaption .banner-main-title {
    max-width: 60%
}

.connectSec.schedule_demo_section {
    background-color: #ffffff
}

.connectContent .date-box {
    border-radius: 15px;
    position: relative;
    z-index: 1;
    max-width: 400px;
    background-color: #fff;
    margin: 30px auto;
    border: 1px solid #cad8ff
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline thead tr:nth-child(2) {
    background-color: #3a6fb6;
    border-radius: 30px 30px !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline thead tr:nth-child(2) th.datepicker-switch {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.75px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline thead tr:nth-child(2) th:first-child {
    border-radius: 30px 0px 0px 30px !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline thead tr:nth-child(2) th:nth-child(2) {
    border-radius: 0px 0px 0px 0px !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline thead tr:nth-child(2) th:last-child {
    border-radius: 0px 30px 30px 0px !important
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th {
    padding: 15px 10px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day {
    min-width: 50px;
    height: 50px;
    padding: 0 !important;
    position: relative;
    transition: 0.4s ease-in-out all;
    color: #999999;
    font-size: 16px
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: transparent;
    left: 0;
    z-index: -1;
    top: 50%;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -50%);
    transition: 0.4s ease-in-out all
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day:hover {
    color: #ffffff
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day:hover::after {
    background-color: #3a6fb6
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day.active {
    color: #ffffff
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day.active::after {
    background-color: #3a6fb6
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.prev::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.prev::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.prev::before {
    content: "\F284";
    font-family: bootstrap-icons
}

.date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th.next::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th.next::before, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th.next::before {
    content: "\F285";
    font-family: bootstrap-icons
}

.connectSec.schedule_demo_section .connnectForm {
    background-color: #e9f0fa;
    padding: 40px;
    margin-top: 0
}

.connectSec.schedule_demo_section .connnectForm label {
    margin: 0 0 8px 0
}

@media (max-width: 1199px) {
    .connectSec.schedule_demo_section .connnectForm {
        max-width: 70%
    }

    .bookDemoBannerCaption .banner-inner {
        margin: 0
    }

    .inner-banner-section .inner-banner-caption.bookDemoBannerCaption {
        margin: 0 auto 50px
    }

    .inner-banner-section {
        padding: 85px 0 0px 0 !important
    }
}

@media (max-width: 991px) {
    .connectSec.schedule_demo_section .connnectForm {
        border-radius: 30px;
        padding: 30px;
        max-width: 100%
    }
}

@media (max-width: 767px) {
    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th {
        font-size: 12px
    }

    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day {
        height: 40px;
        min-width: 40px
    }

    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day::after {
        height: 35px;
        width: 35px
    }

    .connectSec.schedule_demo_section .connnectForm {
        border-radius: 10px;
        padding: 15px
    }

    .date-box .wrapper table.table-condensed {
        margin: 0 auto
    }

    .inner-banner-section.scheduleDemoPage .bookDemoBannerCaption .banner-main-title {
        max-width: 100%
    }
}

@media (max-width: 320px) {
    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed td, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th {
        font-size: 12px
    }

    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-months table.table-condensed th, .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-years table.table-condensed th {
        padding: 15px 5px
    }

    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day {
        height: 30px;
        min-width: 30px
    }

    .date-box .wrapper #datepicker-container .datepicker.datepicker-inline .datepicker-days table.table-condensed td.day::after {
        height: 25px;
        width: 25px
    }

    td.today.day::before {
        bottom: 4px
    }
}

.main-nav .has-subnav.active .has-subnav-link {
    background-color: transparent;
    color: var(--theme-blue)
}

.main-nav li:hover a, .main-nav li.active a {
    background-color: transparent;
    color: var(--theme-blue)
}

.blackBox.socialShare ul li a svg {
    fill: #ffffff
}

.banner-inner .main_banner_pill_heading {
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #D53732;
    font-size: 14px;
    height: 30px;
    display: flex;
    width: 200px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-weight: 600;
    text-transform: uppercase
}

.whyhrhub-accordian .accordion .accordion-body p {
    font-size: 14px;
    color: #3E5468
}

.ctaSection .btn span {
    font-size: 18px
}

.whyhrhub-accordian .accordion .accordion-button[aria-expanded="true"] svg {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.card.is-expanded .box-btn img {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.navbar-toggler.mob-menu-is-open .icon-bar {
    display: none
}

.navbar-toggler .icon-bar .close-mob-menu {
    display: none
}

.navbar-toggler.mob-menu-is-open .close-mob-menu {
    display: block;
    margin-bottom: 3px
}

.subnav-promo-link {
    color: #FFFFFF !important
}

@media (max-width: 767px) {
    .multi_step_form #container {
        padding: 20px;
        border-radius: 20px
    }

    .multi_step_form #container .step-container .step-circle {
        height: 35px;
        width: 35px;
        font-size: 18px
    }

    .multi_step_form #container .step-container .step_bg_line {
        top: 16px
    }
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("../images/arrow-down.png");
    background-size: auto;
    background-position: 60%;
    background-repeat: no-repeat;
    right: 5px !important
}

.footerList .f-link.active, .footerBottomLinks .f-link.active {
    color: #ffffff
}

.form-control {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    font-size: 16px
}

.has-subnav.responsive-menu-close {
    display: none
}

@media (max-width: 1024px) {
    [data-animation] {
        opacity: 1 !important
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: landscape) {
    .main-dropdown .subnav-header {
        display: none !important
    }

    .has-subnav.responsive-menu-close {
        display: block
    }

    .main-dropdown.subnav {
        display: flex;
        flex-direction: column
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: portrait) {
    .main-dropdown .subnav-header {
        display: none !important
    }

    .main-dropdown.subnav {
        display: flex;
        flex-direction: column
    }

    .has-subnav.responsive-menu-close {
        display: block
    }
}

.tax-declaration-highlight {
    padding: 15px;
    background-color: rgb(234 246 246 / 50%);
    border-radius: 11px;
    margin: 0 0 20px 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px
}

.tax-declaration-highlight ul li::marker {
    color: #57bcb5
}

.kanban-board {
    padding-bottom: 50px
}

.kanban-board .kanban-column {
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffff
}

.kanban-board .kanban-column-title {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    position: sticky;
    top: 115px
}

.kanban-board .backlog-column .kanban-column-title {
    background: transparent linear-gradient(150deg, #fff6f2 0%, #F5CDBF 100%) 0% 0% no-repeat padding-box
}

.kanban-board .underConfig-column .kanban-column-title {
    background: transparent linear-gradient(150deg, #e3eaf7 0%, #cbd9fc 100%) 0% 0% no-repeat padding-box
}

.kanban-board .new-column .kanban-column-title {
    background: transparent linear-gradient(150deg, #f0f7f0 0%, #CEE0CE 100%) 0% 0% no-repeat padding-box
}

.kanban-board .kanban-column .kanban-list {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px
}

.kanban-board .kanban-column .kanban-list + .kanban-list {
    margin-top: 15px
}

.kanban-board .kanban-column .kanban-list .kanban-list-title {
    font-size: 16px
}

.kanban-board .kanban-column .kanban-list ul {
    margin: 0
}

.kanban-board .kanban-column .kanban-list ul li {
    font-size: 13px
}

.kanban-board .kanban-column .kanban-list ul li + li {
    margin-top: 5px
}

@media (max-width: 1600px) {
    .kanban-board .kanban-column-title {
        top: 75px
    }
}

@media (max-width: 1366px) {
    .kanban-board .kanban-column-title {
        font-size: 18px
    }
}

@media (max-width: 1024px) {
    .kanban-board .kanban-column {
        padding: 15px
    }

    .kanban-board .kanban-column .kanban-list {
        padding: 15px
    }
}

@media (max-width: 991px) {
    .kanban-board .kanban-column-title {
        top: 65px;
        padding: 10px 20px
    }

    .kanban-board .kanban-column {
        padding: 10px
    }

    .kanban-board .kanban-column .kanban-list {
        padding: 10px
    }

    .kanban-board .kanban-column-title {
        font-size: 15px
    }

    .kanban-board .kanban-column .kanban-list .kanban-list-title {
        font-size: 15px
    }

    .kanban-board .kanban-column .kanban-list ul {
        padding-left: 18px
    }

    .kanban-board .kanban-column .kanban-list .kanban-list-title {
        font-size: 14px
    }

    .kanban-board .kanban-column .kanban-list ul li {
        font-size: 12px
    }
}

@media (max-width: 767px) {
    .underConfig-column {
        margin: 25px 0
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .inner-banner-section.kanban-board-page.writeForUsPage::before {
        height: 100%
    }

    .kanban-board .kanban-column-title {
        position: relative;
        top: 0
    }
}

@media (max-width: 479px) {
    .cms .max500Img {
        max-width: 100% !important
    }
}

.excel_download {
    background-color: #34a853;
    color: #ffffff !important;
    border: none;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500 !important;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    position: relative
}

.excel_download:hover {
    background-color: #1e5d3d
}

.excel_download span i {
    color: #ffffff
}

.excel_download + .excel_download {
    margin: 0 0 0 10px
}

@media (max-width: 767px) {
    .excel_download {
        padding: 4px 8px;
        font-size: 12px
    }
}

@media (max-width: 379px) {
    .excel_download {
        font-size: 10px
    }
}

.excel_download .excel_sheet_download img {
    width: 20px;
    display: inline-block
}

.excel_download .excel_sheet_download {
    display: inline-block;
    margin: 0 5px 0px 0
}

@media (max-width: 479px) {
    .excel_download {
        margin: 0 0 5px 0
    }
}

.xeroBannerImg {
    max-width: 800px
}

.xero-intergation-steps {
    margin: 100px 0 0;
    padding: 100px 0 50px
}

.xero-intergation-steps.powerofhrhub .heading-title {
    margin-bottom: 75px
}

.xero-intergation-steps.powerofhrhub .heading-title p {
    font-size: 18px;
    line-height: 150%;
    max-width: 80%;
    margin: 20px auto 0
}

.xero-intergation-steps.powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
    font-size: 30px;
    margin-bottom: 20px
}

.xero-intergation-steps.powerofhrhub .powerofhrhubItem p {
    font-size: 18px
}

.xero-integration-page.inner-banner-section.details-page .inner-banner-caption {
    margin-top: 50px
}

.xero-intergation-steps .powerofhrhubItem .powerofhrhubIcon span {
    font-size: 24px;
    font-weight: 600
}

.xero-intergation-steps .xero_img {
    max-width: 100%
}

.xero-intergation-steps img.xero_img.newAppImg {
    max-width: 85%
}

.xero-intergation-steps .xero_img + .xero_img {
    margin-top: 25px
}

.xero-intergation-steps .powerofhrhubItem .powerofhrhubContent + .powerofhrhubContent {
    margin-top: 20px
}

.xero-intergation-steps .powerofhrhubItem .powerofhrhubContent .xerolisting li {
    font-size: 16px;
    margin-bottom: 8px
}

.XeroSection + .XeroSection {
    margin-top: 70px
}

.XeroSection .moreDetails {
    font-size: 20px;
    text-align: center;
    max-width: 60%;
    margin: 0 auto
}

@media (max-width: 1366px) {
    .xero-intergation-steps {
        margin: 50px 0;
        padding: 50px 0 50px
    }
}

@media (max-width: 1024px) {
    .xero-intergation-steps {
        margin: 0;
        padding: 50px 0 50px
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem p {
        font-size: 16px
    }

    .xero-intergation-steps .powerofhrhubItem .powerofhrhubContent .xerolisting li {
        font-size: 14px;
        margin-bottom: 8px
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
        font-size: 28px;
        margin-bottom: 10px
    }

    .xero-intergation-steps.powerofhrhub .heading-title {
        margin-bottom: 75px;
        font-size: 38px
    }

    .XeroSection .moreDetails {
        max-width: 100%;
        font-size: 18px
    }

    .XeroSection + .XeroSection {
        margin-top: 35px
    }
}

@media (max-width: 991px) {
    .xero-intergation-steps.powerofhrhub .heading-title {
        margin-bottom: 25px
    }

    .xeroBannerImg {
        max-width: 500px
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubList {
        max-width: 100%
    }

    .xero-intergation-steps.powerofhrhub .heading-title p {
        max-width: 100%
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
        font-size: 26px;
        margin-bottom: 10px
    }

    .xero-intergation-steps .xero_img {
        max-width: 60% !important;
        margin-bottom: 30px
    }
}

@media (max-width: 767px) {
    .xero-intergation-steps.powerofhrhub .heading-title {
        font-size: 28px
    }

    .xero-integration-page.inner-banner-section.details-page .inner-banner-caption {
        margin-top: 0px
    }

    .xeroBannerImg {
        max-width: 100%
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem .powerofhrhubTitle {
        font-size: 24px
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem p {
        font-size: 16px
    }

    .XeroSection .moreDetails {
        max-width: 100%
    }

    .xero-intergation-steps .powerofhrhubItem .powerofhrhubIcon span {
        font-size: 20px;
        font-weight: 600
    }

    .xero-intergation-steps .xero_img {
        max-width: 85%
    }

    .xero-intergation-steps.powerofhrhub .powerofhrhubItem .powerofhrhubIcon {
        min-width: 40px;
        height: 40px;
        margin-top: -5px
    }

    .xero-intergation-steps.powerofhrhub .heading-title p, .xero-intergation-steps.powerofhrhub .powerofhrhubItem p, .XeroSection .moreDetails {
        font-size: 14px
    }
}

.quickbook-integration-step .XeroSection.last_step_inte .powerofhrhubContent {
    max-width: 800px;
}

.xero-intergation-steps.quickbook-integration-step img.xero_img.newAppImg {
    max-width: 100%;
}

.quickbook-integration-step .XeroSection + .XeroSection {
    margin-top: 40px;
}

.xero-intergation-steps .powerofhrhubItem .powerofhrhubContent .xerolisting li b {
    color: var(--theme-gray);
}

.quickbook-integration-step .XeroSection .moreDetails {
    max-width: 80%;
}

.policy_update {
    padding: 10px 30px 10px 20px;
    background-color: #d8eeec;
    border-left: 5px solid #57bcb5;
}

.calculatorSec .cal_mobile_title {
    display: none;
    font-size: 16px;
    padding: 5px;
}

.small-text {
    font-size: 0.70rem;
}

@media (max-width: 991px) {
    .calculatorsDetailsPage .inner-banner-section .inner-banner-caption {
        display: flex;
        flex-direction: column-reverse;
    }

    .calculatorsDetailsPage .inner-banner-section .inner-banner-caption {
        text-align: left;
    }

    .calculatorsDetailsPage .inner-banner-caption .banner-inner .banner-description {
        font-size: 14px;
        max-width: 100%;
        padding: 0;
        text-align: left;
    }

    .calculatorsDetailsPage .inner-banner-caption .banner-inner {
        margin: 35px 0 0 0;
    }

    .calculatorsDetailsPage .main_calculator_content_section {
        padding: 35px 0 50px;
    }
}

@media (max-width: 767px) {
    .calculatorSec .cal_mobile_title {
        display: block;
    }
}

.investRate {
    width: 85px;
}

.cursor-default {
    cursor: default !important;
}

a.cursor-default:hover {
    color: inherit !important;
}

.softwareBadgeSlider.owl-carousel .owl-item:has(.special-item) {
    width: 350px !important;
}

/* New Inner pages Faqs CSS Starts */
.InnerPageFaqSection {
    padding: 75px 0 0;
    max-width: 1000px;
    margin: 0 auto;
}

.InnerPageFaqSection .heading-title {
    margin: 0 auto 30px auto;
}

.InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-body {
    padding: 0px 30px 30px 30px;
}

.InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-button {
    font-size: 22px;
}

.InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-button[aria-expanded="true"] span {
    background-color: #ffffff !important;
}

/* Green FAQs Layout */
.InnerPageFaqSection.faq-section .faq-queAns.greenfaqs .accordion .accordion-button span {
    background-color: #8abb38 !important;
}

.InnerPageFaqSection.faq-section .faq-queAns.greenfaqs .accordion .accordion-button[aria-expanded="true"] span {
    background-color: #ffffff !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion-item {
    border: 1px solid #8abb38;
}

.faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion-button {
    background-color: transparent !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion .accordion-button[aria-expanded="true"], .faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion .accordion-body, .faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion .accordion-collapse.show .accordion-body {
    background-color: #eaf4ed !important;
    color: inherit !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.greenfaqs .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #8abb38 !important;
}

/* Red FAQs Layout */
.InnerPageFaqSection.faq-section .faq-queAns.redfaqs .accordion .accordion-button span {
    background-color: #f2b59e !important;
}

.InnerPageFaqSection.faq-section .faq-queAns.redfaqs .accordion .accordion-button[aria-expanded="true"] span {
    background-color: #ffffff !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion-item {
    border: 1px solid #f2b59e;
}

.faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion-button {
    background-color: transparent !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion .accordion-button[aria-expanded="true"], .faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion .accordion-body, .faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion .accordion-collapse.show .accordion-body {
    background-color: #fae3da !important;
    color: inherit !important;
}

.faq-section.InnerPageFaqSection .faq-queAns.redfaqs .accordion .accordion-button[aria-expanded="true"] svg {
    fill: #f2b59e !important;
}

@media (max-width: 1366px) {
    .InnerPageFaqSection .heading-title {
        font-size: 40px;
    }

    .InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-body {
        padding: 0px 20px 20px 20px;
    }

    .InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-button {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-body {
        padding: 0px 15px 15px 15px;
    }

    .InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-button {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .InnerPageFaqSection .heading-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .InnerPageFaqSection.faq-section .faq-queAns .accordion .accordion-button {
        font-size: 16px;
    }
}

/* New Inner pages Faqs CSS Ends */ /* Footer badges added CSS Start */
.footer-badges-section {
    margin-top: 30px;
}

.footer-badges-section .rating-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    color: #ffffff;
}

.bestHRsoftware {
    margin-top: 10px;
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .footer-badges-section .expert-review-box svg {
        max-width: 140px;
    }

    .footer-badges-section .rating-text {
        font-size: 20px;
    }

    .review-count {
        position: relative;
        top: -4px
    }

    .bestHRsoftware {
        margin-left: 40px;
        margin-top: 5px;
    }

    .bestHRsoftware svg {
        max-width: 130px;
    }
}

@media (max-width: 991px) {
    .bestHRsoftware {
        margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .footer-badges-section .expert-review-box {
        max-width: 230px;
        margin: 0 auto;
    }

    .bestHRsoftware {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

/* Footer badges added CSS End */
.blogDetail_page .contactUsBannerImg {
    height: auto !important;
}

/* Lazy Load CSS Start */
img:not(.lazy) {
    height: 100%;
}

.stepImg img,
.clientSlider img,
.testimonialSlider .item .quoteImg,
.contactImg img,
.box-btn img,
.blogCarousel.owl-carousel .owl-item img {
    height: auto;
}

.banner {
    position: relative;
    background-image: none !important
}

img.mainBannerbg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

/* Lazy Load CSS End */

/* Industries Listing pages S*/
.indusListingImg, .mobileApp-sectionImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.mobileApp-sectionImg {
    z-index: 0;
}

.mobileApp-section::before {
    content: none;
}

.contactUsBannerImg {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
}

.inner-banner-section.products-listing::before,
.inner-banner-section.products-listing.details-page::before,
.inner-banner-section.solution-page::before,
.inner-banner-section.details-page::before,
.inner-banner-section.industries_page:before,
.inner-banner-section.blog_page::before,
.ourTeam-page:before,
.faq-page .inner-banner-section:before,
.inner-banner-section.writeForUsPage::before,
.inner-banner-section.connect-with-us-page.mobile_app_landing_main:before {
    content: none;
}

@media (max-width: 1600px) {
    .inner-banner-section.contact-page-inner {
        margin-bottom: -25px;
    }
}

@media (max-width: 991px) {
    .mobileApp-sectionImg {
        display: none;
    }
}

/* Industries Listing pages E*/

.footer-ana-strip {
    background: #00dabc;
    border-top: 1px solid rgba(9, 26, 46, 0.13);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    margin-bottom: 35px;
}

.ana-strip-avatar {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.ana-strip-img {
    width: 54px;
    height: 54px;
    border-radius: 22%;
    border: 2px solid rgba(9, 26, 46, 0.28);
    box-shadow: 0 0 14px rgba(9, 26, 46, 0.18), 0 4px 14px rgba(9, 26, 46, 0.22);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}

.ana-strip-img img {
    width: 100%;
    height: 108%;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin-top: -4px;
}

.ana-strip-pulse {
    position: absolute;
    bottom: -1px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #ffb600;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.70);
}

.ana-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 50px;
    background: #091a2e;
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(9, 26, 46, 0.28);
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.ana-strip-btn:hover {
    background: #0d2341;
    color: #00dabc;
    box-shadow: 0 6px 22px rgba(9, 26, 46, 0.38);
    transform: translateY(-1px);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-language-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-language-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.footer-language-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.footer-language-item.active {
    color: #ffffff;
    background: #00ad95;
}

.footer-language-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

/* Mobile */
@media (max-width: 991.98px) {
    .footer-bottom-right {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
        margin-top: 16px;
    }

    .footerBottomLinks {
        justify-content: center;
    }
}

