:root {
    --font-poppins: "Poppins", sans-serif;
    --clr-222: #222222;
    --clr-444: #444444;
    --clr-666: #666666;
}

body {
    position: relative;
    background: #f6f7fb;
    font-family: var(--font-poppins);
    color: var(--clr-222);
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-bottom: 0;
}

ul {
    margin-bottom: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: white;
    transition: 0.6s ease;
}

button,
textarea,
input {
    border: 0;
    outline: none;
    background: transparent;
    transition: 00.6s ease;
}

textarea {
    resize: none;
}

.flex {
    display: flex;
}

.item-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdT-100 {
    padding-top: 100px;
}

.pdB-100 {
    padding-bottom: 100px;
}

img {
    width: auto;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navBar .container {
    position: relative;
}

.right-actions a {
    color: #222;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.right-actions {
    gap: 40px;
}

.nav-items {
    gap: 40px;
}

.right-actions a:hover {
    color: #4e3b97;
}

.right-actions .contact-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background: #4e3b97;
    border-radius: 30px;
    min-height: 38px;
    width: 108px;
    color: #fff;
}

.layouter {
    max-width: 1160px;
    margin-inline: auto;
}

.right-actions .contact-btn:hover {
    background: #222;
    color: #fff;
}

.navBar {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    background: #f6f7fb;
    transition: 0.2s ease;
}

.navBar .inner-area {
    justify-content: space-between;
    transition: 0.2s ease;
    padding: 2px 0;
    padding: 21px 10px;
}

.hero-section {
    margin-top: 96px;
}

.hero-section {
    padding-inline: 10px;
}

.hero-section .inner-area {
    background: url(../assets/images/header-bg.jpg) no-repeat center / cover,
        linear-gradient(180deg, rgba(63, 30, 125, 1) 0%, rgba(118, 33, 131, 1) 100%);
    border-radius: 30px;
    min-height: 587px;
    max-width: 1320px;
    margin-inline: auto;
}

.hero-heading {
    font-weight: 400;
    font-size: 50px;
    line-height: 72px;
    margin-bottom: 10px;
}

.hero-heading span {
    color: #bd76ed;
    font-weight: 600;
}

.hero-sub-heading {
    font-weight: 300;
    font-size: 28px;
    line-height: 37px;
}

.hero-section .inner-box {
    padding: 60px 85px;
    color: #fff;
    align-items: center;
    display: flex;
    gap: 57px;
}

.hero-section .img-area img {
    border: 2px solid #ffffff;
    border-radius: 15px;
}

.cta-grp {
    margin-top: 28px;
    justify-content: flex-start;
    gap: 16px;
}

.cta-grp button {
    border-radius: 40px;
    gap: 16px;
    background: #ffffff;
    padding: 7px 11px;
    width: 238px;
    font-weight: 500;
    font-size: 16px;
    justify-content: flex-end;
}

.cta-grp button:hover .incx {
    transform: rotate(45deg);
}

.cta-grp button .incx {
    border-radius: 50%;
    --sz: 46px;
    width: var(--sz);
    height: var(--sz);
    background: #222222;
    transition: 0.6s ease;
}

.hero-section .cta-grp img {
    transition: 0.6s ease;
}

.hero-section .cta-grp button:first-of-type:hover .incx {
    background: #fff;
}

.hero-section .cta-grp button:first-of-type:hover .incx img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(1251%) hue-rotate(330deg) brightness(95%) contrast(73%);
}

.cta-grp button:last-of-type {
    width: 211px;
    background: #bd76ed;
    color: #fff;
}

.cta-grp button:last-of-type .incx {
    background: #fff;
}

.cta-grp button:last-of-type .incx img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(9%) saturate(6%) hue-rotate(345deg) brightness(93%) contrast(101%);
}

.cta-grp button:first-of-type:hover {
    background: #222;
    color: #fff;
}

.cta-grp button:last-of-type:hover {
    background: #4e3b97;
}

.about-section .cc-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-section .img-box {
    position: relative;
    width: fit-content;
}

.about-section .iconx {
    border-radius: 50%;
    --sz: 120px;
    width: var(--sz);
    height: var(--sz);
    background: #4e3b97;
    border: 5px solid #fafafa;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-section .iconx::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../assets/images/nureos_electron.svg) no-repeat center / cover;
    height: 63px;
    height: 63px;
    width: 68px;
}

.sec-heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 10px;
}

.sec-para {
    color: #666666;
}

.about-section .sec-para {
    font-size: 18px;
    line-height: 25px;
}

.sec-big-heading {
    font-size: 24px;
    line-height: 25px;
    max-width: 1020px;
    margin-inline: auto;
}

.solution-section {
    background: #1a1a1a;
    color: #ffffffcc;
}

.sl-item {
    background: linear-gradient(0deg,
            rgba(220, 211, 255, 0.035) 0%,
            rgba(220, 211, 255, 0.005) 140.15%);
    backdrop-filter: blur(50px);
    padding: 40px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.sol-listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    color: #fff;
}

.sl-item:first-child {
    grid-column: span 2;
    background: url(../assets/images/gradien-bg.jpg) no-repeat center / cover;
    color: #000000;
}

.sl-item:first-child .desc {
    color: #222222;
}

.sl-item .title {
    font-weight:700;
    font-size: 24px;
    margin-bottom: 4px;
}

.sl-item .desc {
    font-size: 16px;
    line-height: 23px;
    max-width: 458px;
}

.sl-item .incx {
    margin-left: 10px;
    width: fit-content;
    margin-bottom: 20px;
}

.software-sol-listing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.software-item {
    background: #dcd3ff33;
    border: 1px solid #dddddd33;
    padding: 20px 30px 30px;
    border-radius: 30px;
    backdrop-filter: blur(40px);
    transition: 0.6s ease;
    cursor: default;
}

.software-item:hover {
    background: #4e3b97;
    color: #fff;
}

.software-item .title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 4px;
}

.software-item .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    transition: 0.6s ease;
    color: #666666;
}

.software-item .incx {
    background: #c9bcff33;
    border-radius: 50%;
    --sz: 60px;
    margin-bottom: 21px;
    width: var(--sz);
    height: var(--sz);
    display: flex;
    justify-content: center;
    transition: 0.6s ease;
    align-items: center;
}

.software-item:hover .incx {
    background: #fff;
}

.software-item:hover .desc {
    color: #ffffffcc;
}

.help-section,
.software-section {
    position: relative;
}

.help-section::before,
.software-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background: url(../assets/images/grains.png) repeat center;
    opacity: 6%;
    pointer-events: none;
}

.content-row .info {
    max-width: calc(100% - 555px);
}

.sm-heading {
    font-weight: 500;
    font-size: 20px;
    color: #666666;
    line-height: 30px;
    margin-bottom: 4px;
}

.product-section .sec-para {
    font-size: 18px;
    line-height: 25px;
}

.product-section {
    padding-inline: 15px;
}

.content-row {
    display: flex;
    gap: 30px;
}

.product-section .img-box img {
    max-width: 555px;
    width: 100%;
}

.product-section .right-col .img-box {
    margin-top: -41px;
}

.product-section .right-col .info {
    padding-top: 62px;
    padding-left: 30px;
}

.product-section .right-col .sec-heading {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-section .img-box {
    width: calc(50% - 15px);
}

.product-section .listing {
    margin-bottom: 12px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-section .listing li {
    font-size: 18px;
    line-height: 25px;
    position: relative;
}

.product-section .listing li::before {
    content: "";
    position: absolute;
    --sz: 30px;
    width: var(--sz);
    height: var(--sz);
    background: url(../assets/images/circular-tick.svg) no-repeat center / cover;
    left: -40px;
}

.product-section .listing li {
    color: #666;
}

.product-section .listing strong {
    color: #222;
}

.app-btn-grp {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.app-btn-grp a {
    background: #ffffff;
    box-shadow: 0px 2px 10px 0px #0000001a;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78px;
    border-radius: 80px;
    gap: 10px;
    outline: 3px solid transparent;
    outline-offset: 3px;
}

.app-btn-grp a:hover {
    outline-color: #bd76ed;
}

.app-btn-grp a h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #666666;
    margin-bottom: 0;
}

.app-btn-grp a h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    margin-bottom: 0;
}

.help-section .layouter {
    max-width: 970px;
}

.help-row {
    display: flex;
    gap: 60px;
}

.form-col {
    max-width: 526px;
    width: 100%;
}

.help-row .sec-heading {
    font-size: 30px;
    line-height: 38px;
}

.form-col .cta-grp {
    margin-top: 8px;
}

.help-row {
    position: relative;
    z-index: 1;
}

.help-row button[type="submit"] {
    box-shadow: 0px 10px 20px 0px #00000026;
}

.label {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 4px;
    display: block;
}

.input-field {
    background: #ffffff;
    border: 1px solid #dddddd;
    min-height: 48px;
    border-radius: 14px;
    padding-inline: 18px;
    width: 100%;
    font-size: 14px;
    transition: 0.6s ease;
}

.input-field::placeholder {
    color: #999999;
}

.input-block {
    margin-bottom: 14px;
}

.text-areafield {
    display: flex;
    min-height: 110px;
    padding-block: 10px;
}

.input-field:hover,
.input-field:focus {
    border-color: #bd76ed;
}

.map-col .sec-para {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 10px;
}

.map-col a {
    font-size: 16px;
    color: #222222;
}

.map-col a:hover {
    color: #4e3b97;
}

.map-col ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-col ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-col ul li .incx::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.map-col li .incx {
    --sz: 30px;
    border-radius: 50%;
    width: var(--sz);
    height: var(--sz);
    border: 1px solid #4e3b97;
    position: relative;
    display: block;
}


.map-col ul li .incx.mail:before {
    background: url(../assets/images/mail.svg) no-repeat center / cover;
    width: 12px;
    height: 9.6px;
}

.map-col ul li .incx.address:before {
    background: url(../assets/images/location-pin.svg) no-repeat center / cover;
    width: 13px;
    height: 16px;
}

.map-col ul li .incx.address {
    align-self: flex-start;
    transform: translateY(-2px);
}

.map-col {
    background: #ffffffcc;
    border: 1px solid #dddddd33;
    backdrop-filter: blur(40px);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
}

.map-box {
    position: relative;
    margin: 18px -30px -30px;
    height: 228px;
}

.map-box .inner-box {
    position: absolute;
    inset: 0;
}

.map-box iframe {
    width: 100%;
    height: 1090%;
}

a.open-map {
    box-shadow: 0px 2px 10px 0px #0000001a;
    font-weight: 500;
    font-size: 10px;
    position: absolute;
    background: #ffffff;
    right: 20px;
    bottom: 20px;
    min-height: 26px;
    width: 126px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

a.open-map:hover {
    background: #4e3b97;
    color: #fff;
}

.cta-section .inner-area {
    border-radius: 40px;
    background: url(../assets/images/cta.jpg) no-repeat center / cover;
    color: #fff;
    padding: 60px;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cta-section p {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 20px;
    max-width: 899px;
    margin-inline: auto;
}

.cta-section .action-btn {
    width: 260px;
    height: 52px;
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    margin-inline: auto;
    background: #fff;
    line-height: 1;
}

.cta-section .action-btn:hover {
    background: #4e3b97;
    color: #fff;
}

footer {
    background: #222222;
    color: #fff;
}

footer .layouter {
    max-width: 1126px;
    padding-block: 60px 48px;
    display: flex;
}

.ft-left .logo img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(323deg) brightness(101%) contrast(104%);
    width: 141px;
}

.ft-left {
    width: 100%;
    max-width: 447px;
    display: flex;
}

.ft-left .logo a {
    margin-bottom: 20px;
    justify-content: flex-start;
}

.ft-heading {
    font-weight: 300;
    font-size: 19px;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.ft-heading span {
    font-weight: 700;
    display: block;
    color: #bd76ed;
}

.ft-para {
    font-weight: 300;
    font-size: 16px;
    color: #fafafacc;
}

.link-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 23px;
    display: block;
}

.ft-mid {
    margin-left: 60px;
    gap: 65px;
    display: flex;
}

.ft-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-links a {
    font-size: 16px;
    color: #fafafacc;
}

.ft-links a:hover {
    color: #bd76ed;
}

.ft-socials {
    margin-left: auto;
}

.social-listing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.social-listing a {
    --sz: 30px;
    border-radius: 50%;
    width: var(--sz);
    height: var(--sz);
    background: #ffffff1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #ffffffb2;
}

.social-listing a:hover {
    background: #bd76ed;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #222;
    font-weight: 500;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: -20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
    background: url(../assets/images/chevron.svg) no-repeat center / cover;
    width: 10px;
    height: 5px;
}

.select2-container--open .select2-dropdown {
    min-width: 70px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: #fff;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: #4e3b97;
}

.select2-container--default .select2-results>.select2-results__options {
    padding: 3px 0;
}

.select2-results__option {
    font-size: 13px;
    border-radius: 5px;
    margin: 0 3px;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    color: #fff;
    background: #bd76ed;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4e3b97;
    color: white;
}

.select2-container--open .select2-dropdown--above {
    border-radius: 7px;
    border: 1px solid #ddd;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 7px;
    border: 1px solid #ddd;
}

.phone-fld .select2-container {
    position: relative;
}

.phone-fld .select2-container::after {
    position: absolute;
    content: "";
    background: #999999;
    width: 1px;
    height: 28px;
    right: -22px;
    top: 0;
}

.phone-fld .tel-input {
    padding-left: 28px;
    max-width: 176px;
}

.help-block {
    color: red;
    font-size: 13px;
}

.navBar.nav-scrolled {
    box-shadow: 0 0 10px #00000030;
}

.software-section .layouter {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {
    .hero-heading {
        line-height: 64px;
    }

    .hero-section .right-col {
        max-width: 389px;
        width: 100%;
    }

    .hero-section .img-area img,
    .hero-section .img-area {
        width: 100%;
    }

    .cta-section {
        padding-inline: 15px;
    }

    footer .layouter {
        padding-inline: 10px;
        gap: 30px 65px;
        flex-wrap: wrap;
    }

    .ft-mid,
    .ft-socials {
        margin-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .hero-section .inner-box {
        flex-direction: column;
    }

    .hero-section .left-col {
        text-align: center;
    }

    .hero-section .cta-grp {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-section .right-col .img-box {
        margin-top: 0;
    }

    .about-section .cc-row {
        flex-direction: column;
        text-align: center;
    }

    .help-row,
    .content-row {
        flex-direction: column;
        max-width: 720px;
        margin-inline: auto;
    }

    .form-col {
        max-width: 100%;
    }

    .product-section .img-box {
        margin-inline: auto;
        width: 70%;
    }

    .app-btn-grp {
        justify-content: center;
    }

    .product-row .left-col {
        margin-bottom: 45px;
    }

    .content-row .info {
        max-width: 100%;
    }

    .product-section .right-col .info {
        padding-top: 22px;
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .pdT-100 {
        padding-top: 70px;
    }

    .pdB-100 {
        padding-bottom: 70px;
    }

    .hero-heading {
        line-height: 55px;
        font-size: 40px;
    }

    .hero-sub-heading {
        font-size: 22px;
        line-height: 35px;
    }

    .content-row {
        text-align: center;
    }

    .product-section .listing {
        max-width: 540px;
        margin-inline: auto;
        text-align: left;
    }

    .help-section .layouter {
        padding: 0 10px;
    }

    .app-btn-grp {
        text-align: left;
    }

    .overlay {
        position: fixed;
        left: 0;
        background: #000;
        width: 100%;
        height: 100vh;
        z-index: 3;
        transition: all 0.2s linear;
        top: 70px;
        opacity: 0;
        pointer-events: none;
    }

    .overlay.open {
        opacity: 0.7;
        pointer-events: auto;
    }

    body.menu-active {
        overflow: hidden;
    }

    .help-row {
        max-width: 540px;
    }

    .right-actions {
        position: fixed;
        right: -250px;
        flex-direction: column;
        width: 250px;
        z-index: 4;
        top: 70px;
        background: #f6f7fb;
        transition: all 0.2s linear;
        height: calc(100dvh - 70px);
        justify-content: flex-start;
        padding-top: 20px;
        gap: 20px;
    }

    .phone-fld .tel-input {
        max-width: 186px;
    }

    .right-actions.active {
        right: 0;
    }

    .nav-items {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 23px;
    }

    .hamburger span {
        display: block;
        height: 3px;
        background: #444;
        width: 100%;
        border-radius: 20px;
        transition: 0.2s;
    }

    .navBar .inner-area {
        padding: 15px 10px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }

    .about-section .img-box img {
        width: 100%;
    }

    .about-section .iconx {
        --sz: 106px;
    }

    .sec-heading {
        font-size: 32px;
    }

    .about-section .sec-para {
        font-size: 16px;
    }

    .sec-big-heading {
        font-size: 18px;
    }

    .sec-big-heading br {
        display: none;
    }

    .software-sol-listing,
    .sol-listing {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .sl-item:first-child {
        grid-column: span 1;
    }

    .cta-section h2 {
        line-height: normal;
        font-size: 33px;
    }

    .cta-section p {
        font-size: 16px;
        line-height: normal;
    }
}

@media screen and (max-width: 575px) {
    .phone-fld .tel-input {
        max-width: calc(100% - 3px);
        width: 130%;
    }

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

    .contact-form .row>* {
        padding: 0;
    }
}

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

    .cta-section h2,
    .hero-heading {
        line-height: normal;
        font-size: 24px;
    }

    .about-section .iconx {
        --sz: calc(20vw);
    }

    .about-section .iconx::after {
        height: 11vw;
        width: 11vw;
    }

    .pdT-100 {
        padding-top: 50px;
    }

    .pdB-100 {
        padding-bottom: 50px;
    }

    .help-row .sec-heading,
    .sec-heading {
        font-size: 24px;
        line-height: normal;
    }

    .map-col .sec-para,
    .about-section .sec-para {
        font-size: 14px;
        line-height: normal;
    }

    .hero-section .inner-box {
        padding: 40px 35px;
        gap: 50px;
    }

    .sec-big-heading {
        font-size: 14px;
        line-height: normal;
    }

    .help-row {
        gap: 40px;
    }

    .sl-item {
        padding: 25px;
        border-radius: 25px;
    }

    .map-col li .incx {
        --sz: 27px;
    }

    .help-row .cta-grp button:last-of-type {
        width: 161px;
    }

    .sl-item img {
        max-width: 35px;
    }

    .map-col a {
        font-size: 14px;
    }

    .software-item .title,
    .sl-item .title {
        font-size: 20px;
    }

    .cta-section p,
    .software-item .desc,
    .sl-item .desc {
        font-size: 14px;
    }

    .software-item .incx {
        --sz: 50px;
        margin-bottom: 21px;
    }

    .software-item .incx img {
        max-width: 27px;
    }

    .software-item {
        padding: 20px 25px 25px;
    }

    .hero-sub-heading {
        font-size: 16px;
        line-height: normal;
    }

    .cta-grp button .incx {
        --sz: 32px;
    }

    .cta-grp button .incx img {
        max-width: 13px;
    }

    .cta-grp button {
        gap: 13px;
        padding: 5px;
        width: 188px;
        font-size: 13px;
    }

    .cta-grp button:last-of-type {
        width: 151px;
    }

    .hero-section .inner-area {
        border-radius: 22px;
    }

    .hero-section .img-area {
        max-width: 100%;
        margin-inline: auto;
    }

    .hero-section .img-area img {
        width: 100%;
        height: 100%;
    }

    .product-section .img-box {
        width: 100%;
    }

    .product-section .sec-para {
        font-size: 14px;
        line-height: normal;
    }

    .product-section .right-col .info {
        padding: 0;
    }

    .product-section .right-col .sec-heading {
        font-size: 22px;
    }

    .product-section .listing li {
        font-size: 14px;
        line-height: normal;
    }

    .product-section .listing li::before {
        --sz: 25px;
        left: -31px;
    }

    .product-section .listing {
        padding-left: 31px;
    }

    .app-btn-grp {
        flex-wrap: wrap;
    }

    .app-btn-grp a {
        width: 210px;
        min-height: 65px;
    }

    .app-btn-grp a h6 {
        font-size: 14px;
        line-height: 1.1;
    }

    .app-btn-grp a h5 {
        font-size: 16px;
        line-height: normal;
    }

    .app-btn-grp a img {
        max-width: 30px;
    }

    a.open-map {
        font-size: 10px;
        right: 20px;
        bottom: 20px;
        min-height: 26px;
        width: 126px;
    }

    .cta-section .inner-area {
        border-radius: 30px;
        padding: 30px;
    }

    .cta-section .action-btn {
        width: 210px;
        height: 44px;
        font-size: 14px;
        line-height: normal;
    }

    .product-row .left-col {
        margin-bottom: 40px;
    }

    footer .layouter {
        padding-block: 40px;
    }

    .ft-left .logo img {
        width: 121px;
    }

    .ft-heading {
        font-size: 16px;
    }

    .ft-para {
        font-size: 13px;
    }

    .sm-heading {
        font-size: 17px;
        line-height: normal;
    }

    .link-title {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: normal;
    }

    .ft-links a {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
    }
}

/* Reduce movement for fades */
[data-aos="fade-up"] {
    transform: translateY(25px);
}

[data-aos="fade-down"] {
    transform: translateY(-25px);
}

[data-aos="fade-left"] {
    transform: translateX(-25px);
}

[data-aos="fade-right"] {
    transform: translateX(25px);
}

.frm-alert .inner {
    display: flex;
    background: transparent;
    border-radius: 6px;
    border-left: 4px solid transparent;
    padding: 10px;
    margin-bottom: 11px;
}

.frm-alert.success .inner {
    background: #c9f6cd;
    border-color: #00ba00;
}

.frm-alert.failed .inner {
    background: #f7cacd;
    border-color: #ff4040;
}

.frm-alert .close-btn {
    margin-left: auto;
    align-self: flex-start;
    font-size: 12px;
    color: #505050;
    transform: translateY(3px);
}

.frm-alert .close-btn:hover {
    color: #121212;
}

.astrick {
    color: red;
}

.cms-page-section {
    margin-top: 82px;
}

.cms-heading {
    font-weight: 600;
    font-size: 42px;
}

.cms-page-section .layouter {
    padding: 10px;
}

.cms-date {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.cms-banner {
    background: url(../assets/images/header-bg.jpg) no-repeat center / cover,
        linear-gradient(180deg, rgba(63, 30, 125, 1) 0%, rgba(118, 33, 131, 1) 100%);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: auto;
    border-radius: 18px;
    padding: 50px 30px;
    color: #fff;
}

.cms-content-box {
    padding: 10px;
    margin-top: 20px;
}

.cms-content-box h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 9px;
}

.cms-content-box p {
    font-size: 15px;
    margin-bottom: 9px;
    color: #444;

}

.cms-content-box h3 {
    margin-bottom: 9px;
    font-size: 18px;
    font-weight: 600;
}

.cms-content-box a {
    color: #4e3b97;
}

.cms-content-box a:hover {
    color: #121212;
}

.cms-item {
    margin-bottom: 20px;
}

.cms-content-box ul {
    padding-left: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cms-content-box ul li {
    color: #444;
    position: relative;
    font-size: 15px;

}

.cms-content-box ul li::before {
    position: absolute;
    content: '';
    --sz: 5px;
    width: var(--sz);
    height: var(--sz);
    border-radius: 50%;
    background: #444;
    left: -13px;
    top: 8px;
}

.cms-content-box ul li strong {
    font-weight: 600;
}


@media screen and (max-width:480px) {
    .frm-alert .inner {
        font-size: 14px;
    }

    .cms-heading {
        font-size: 32px;
    }

    .cms-banner {
        min-height: 170px;
        border-radius: 15px;
    }

    .cms-content-box h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .cms-content-box h3 {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .cms-date {
        font-size: 13px;
    }
}

@media screen and (max-width:420px) {
    .cms-heading {
        font-size: 27px;
    }

    .cms-banner {
        min-height: fit-content;
        border-radius: 15px;
    }
}