body {
    font-family: "TASA Explorer", sans-serif;
    font-style: normal;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* --------------------------
   PAGE PRELOAD FADE-IN EFFECT
--------------------------- */
body.is-preload *,
body.is-preload :after,
body.is-preload :before {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

body.is-preload * {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

body:not(.is-preload) * {
    opacity: 1;
    pointer-events: auto;
}

.container {
    box-sizing: border-box;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --top-green: #45E588;
    --top-green-new: #1EBA68;
    --active-menu: #057260;
    --nav-menu: #004D40;
    --dark-green: #00151A;
    --darker-green: #004B49;
    --paragraph-text: #8A8A8A;
    --h-color: #02241E;
    --risk-text: #3E4F46;
    --zero-text: #034B3F;
    --text-12: 0.75rem;
    --text-14: 0.875rem;
    --text-15: 0.938rem;
    --text-16: 1rem;
    --text-18: 1.125rem;
    --text-20: 1.25rem;
    --text-22: 1.375rem;
    --text-24: 1.5rem;
    --text-25: 1.563rem;
    --text-26: 1.625rem;
    --text-28: 1.75rem;
    --text-30: 1.875rem;
    --text-32: 2rem;
    --text-34: 2.125rem;
    --text-36: 2.25rem;
    --text-38: 2.375rem;
    --text-40: 2.5rem;
    --text-42: 2.625rem;
    --text-44: 2.75rem;
    --text-46: 2.875rem;
    --text-48: 3rem;
    --text-50: 3.125rem;
    --text-52: 3.25rem;
    --text-54: 3.375rem;
    --text-60: 3.75rem;
    --text-80: 5rem;
}

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

.black {
    color: var(--black);
}

.darker-green {
    color: var(--darker-green);
}

.top-green {
    color: var(--top-green);
}

.top-green-new {
    color: var(--top-green-new);
}

.nav-menu {
    color: var(--nav-menu);
}

.active-menu {
    color: var(--active-menu);
}

.dark-green {
    color: var(--dark-green);
}

.paragraph-text {
    color: var(--paragraph-text);
}

.h-color {
    color: var(--h-color);
}

.risk-text {
    color: var(--risk-text);
}

.zero-text {
    color: var(--zero-text);
}

/*font sizes*/
.text-12 {
    font-size: var(--text-12);
}

.text-14 {
    font-size: var(--text-14);
}

.text-15 {
    font-size: var(--text-15);
}

.text-16 {
    font-size: var(--text-16);
}

.text-20 {
    font-size: var(--text-20);
}

.text-25 {
    font-size: var(--text-25);
}

.text-30 {
    font-size: var(--text-30);
}

.text-40 {
    font-size: var(--text-40);
}

.text-50 {
    font-size: var(--text-50);
}

.text-60 {
    font-size: var(--text-60);
}

.text-80 {
    font-size: var(--text-80);
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extrabold {
    font-weight: 800;
}

.italic {
    font-style: italic;
}

.lh-100 {
    line-height: 100%;
}

.lh-120 {
    line-height: 120%;
}

.lh-130 {
    line-height: 130%;
}

.lh-150 {
    line-height: 150%;
}

.lh-180 {
    line-height: 180%;
}

/*spacinng*/
.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px;
}

.space-y-2> :not(:last-child) {
    margin: 0px !important;
    margin-bottom: 10px !important;
}

.space-y-3> :not(:last-child) {
    margin: 0px !important;
    margin-bottom: 15px !important;
}

.space-y-4> :not(:last-child) {
    margin: 0px !important;
    margin-bottom: 2rem !important;
}

.top-header {
    position: sticky;
    top: 0px;
    z-index: 9999;
    background-color: #F2F8F7;
    padding: 1rem 0rem;
}

.nav-parent .navbar {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 0.50rem 0.25rem;
}

.nav-parent .navbar-nav .nav-link.active {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.nav-parent .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1.563rem;
    padding-right: 1.563rem;
}

.nav-parent .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.nav-parent .navbar-expand-lg .navbar-nav {
    margin-right: 15rem;
}

.nav-parent .navbar .navbar-brand img {
    padding-left: 1rem;
}

/* --- Custom Hamburger Icon --- */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 35px;
    width: 45px;
    cursor: pointer;
}

.custom-toggler .toggler-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--active-menu);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* When active (turn into X) */
.custom-toggler.active .toggler-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.custom-toggler.active .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active .toggler-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Remove default bootstrap icon background */
.navbar-toggler:focus {
    box-shadow: none;
}

.get-in-touch {
    background-color: var(--darker-green);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.313rem 0.625rem 0.313rem 0.75rem;
    box-shadow: inset 0px 2px 0px #FFFFFF66, 0px 10px 10px #1BA85633;
}

.get-in-touch img {
    margin-left: 2rem;
}

.get-in-touch {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-in-touch:hover {
    box-shadow: none !important;
    transform: scale(0.96);
}

.get-in-touch .rotating-arrow {
    transition: transform 0.5s;
}

.get-in-touch:hover .rotating-arrow {
    transform: rotate(360deg);
}

.pioneer-research-content {
    padding: 3rem 0rem 2rem 0rem;
}

.pioneer-research-content h1 {
    width: 70rem;
}

.pioneer-research-content p {
    width: 50rem;
    padding-top: 2rem;
}

.finome-overall-parent-content {
    position: relative;
}

.finome-overall-parent .finome-child1 {
    width: 30%;
}

.finome-overall-parent .finome-child2 {
    width: 50%;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finome-overall-parent .finome-child3 {
    width: 30%;
}

.finome-child-content p {
    background-color: var(--white);
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    border: 8px solid rgba(5, 114, 96, 0.12);
    position: absolute;
}

.finome-overall-parent-content-bg {
    position: absolute;
    z-index: -1;
    top: 3.5rem;
    right: 0px;
    left: 0px;
    margin: 0px auto;
    display: table;
}

.finome-child-content p:nth-child(1) {
    padding: 0.6rem 1.5rem;
}

.finome-child-content p:nth-child(2) {
    padding: 0.8rem;
    border-radius: 50px;
}

.finome-child-content p:nth-child(3) {
    padding: 0.6rem 1.5rem;
}

.finome-child-content p:nth-child(4) {
    padding: 0.8rem;
    border-radius: 50px;
}

.finome-child-content p:nth-child(5) {
    padding: 0.6rem 1.5rem;
}

.finome-child1 p:nth-child(1) {
    top: 1.6rem;
    left: 6rem;
}

.finome-child1 p:nth-child(2) {
    top: 5.8rem;
    left: 11rem;
}

.finome-child1 p:nth-child(3) {
    bottom: 11rem;
    left: 3rem;
}

.finome-child1 p:nth-child(4) {
    bottom: 6rem;
    left: 15rem;
}

.finome-child1 p:nth-child(5) {
    bottom: 2rem;
    left: 5rem;
}

.finome-child3 p:nth-child(1) {
    top: 1.6rem;
    right: 6rem;
}

.finome-child3 p:nth-child(2) {
    top: 5.8rem;
    right: 14rem;
}

.finome-child3 p:nth-child(3) {
    bottom: 11rem;
    right: 3rem;
}

.finome-child3 p:nth-child(4) {
    bottom: 6rem;
    right: 11rem;
}

.finome-child3 p:nth-child(5) {
    bottom: 2rem;
    right: 5rem;
}

/* .finome-a
{
    background-color: #F2F8F7;
    border: 15px solid rgba(5, 114, 96, 0.12);
    border-radius: 30px;
    width: 545px;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.finome-a {
    position: relative;
    width: 545px;
    height: 255px;
    background: #F2F8F7;
    border-radius: 30px;
    box-shadow: inset 0 0 0 15px rgba(5, 114, 96, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SVG overlay */
.finome-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* shared properties */
.border-line {
    fill: none;
    stroke: var(--top-green);
    stroke-dasharray: 0.18 0.82;
    stroke-linecap: round;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* first (top) line */
.line-1 {
    stroke-width: 10;
    animation-name: borderRunLine1;
    filter: drop-shadow(0 0 6px rgba(31, 202, 164, 0.9));
}

/* second (bottom) line follows */
.line-2 {
    stroke-width: 10;
    opacity: 0.4;
    /* animation-delay: 3s; */
    animation-name: borderRunLine2;
    filter: drop-shadow(0 0 6px rgba(31, 202, 164, 0.9));
}

/* animations */
@keyframes borderRunLine1 {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes borderRunLine2 {
    from {
        stroke-dashoffset: 0.5;
    }

    to {
        stroke-dashoffset: -0.5;
    }
}

.finome-content-bg1 {
    position: absolute;
    left: 1.3rem;
    right: 0px;
    margin: 0px auto;
    display: table;
    top: 8rem;
    width: 980px;
}

.get-in-touch-dark-green {
    color: var(--white);
    background: transparent linear-gradient(180deg, #00706D 0%, #004B49 100%) 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 3px 0px #FFFFFF66, 0px 10px 10px #004D4033;
}

.get-buttons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 30rem;
    height: 20.5rem;
    margin: 3rem auto 0px;
    z-index: 1;
    position: relative;
}

/* .get-buttons .get-in-touch:not(:last-child) {
    margin-right: 1.5rem;
} */

.get-buttons .get-in-touch {
    padding: 0.500rem 0.625rem 0.500rem 1.5rem;
}

.pioneer-research {
    position: relative;
}

.our-mission {
    background-color: #F2FBF9;
    padding: 5rem 0rem;
    overflow: hidden;

}

.our-overall-parent {
    position: relative;
    padding-bottom: 0rem;
}

.our-overall-parent::before {
    content: '';
    position: absolute;
    right: 0rem;
    left: 0rem;
    width: 2px;
    height: 65px;
    margin: 0px auto;
    display: table;
    bottom: -9rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.circuit-lr img.circuit-left {
    position: absolute;
    left: -17rem;
    top: -1rem;
}

.circuit-lr img.circuit-right {
    position: absolute;
    right: -17rem;
    top: -1rem;
}

.our-content-bg1 {
    margin: -7rem auto 0px;
    display: table;
}

.half-globe {
    position: absolute;
    bottom: 5rem;
    z-index: -1;
}

.mission-content {
    width: 60rem;
    /* position: absolute;
    top: 5rem;
    right: 0rem;
    left: 0rem; */
    margin: 0px auto;
}

.mission-content h2 {
    padding-bottom: 1.5rem;
}

.our-content-bg1 picture img {
    width: 700px;
}

.small-circle-child {
    background-color: var(--white);
    box-shadow: 0px 1px 3px #d7d6d629;
    border: 6px solid rgba(5, 114, 96, 0.12);
    border-radius: 50px;
    padding: 0.9rem 1rem;
    position: absolute;
}

.small-circle1 {
    left: 26.5rem;
    bottom: 13rem;
}

.small-circle2 {
    left: 35rem;
    bottom: 17rem;
}

.small-circle3 {
    left: 35.5rem;
    bottom: 7rem;
}

.small-circle4 {
    margin: 0px auto;
    display: table;
    right: 0rem;
    left: 0rem;
    bottom: -2rem;
}

.small-circle5 {
    right: 37rem;
    bottom: 6rem;
}

.small-circle6 {
    right: 28rem;
    bottom: 10rem;
}

.small-circle7 {
    right: 30rem;
    bottom: 19rem;
}

.innovative-infinite {
    position: relative;
    margin-bottom: 3rem;
    padding-top: 5rem;
}

.innovative-infinite::before {
    content: '';
    position: absolute;
    bottom: 6rem;
    left: 0rem;
    right: 0rem;
    width: 100%;
    height: 580px;
    background-color: var(--white);
    z-index: -1;
}

.innovative-infinite-content {
    margin-bottom: 4rem;
    position: relative;
}

.innovative-infinite-content::before {
    content: '';
    position: absolute;
    right: 0rem;
    left: 0rem;
    width: 2px;
    height: 65px;
    margin: 0px auto;
    display: table;
    top: -5rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.innovative-infinite-content::after {
    content: '';
    position: absolute;
    right: 0rem;
    left: 0rem;
    width: 2px;
    height: 65px;
    margin: 0px auto;
    display: table;
    bottom: -7rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.innovative-infinite-content h2 {
    padding-bottom: 1.5rem;
}

.innovative-infinite-content h2 span {
    display: block;
}

.innovative-infinite-content p {
    width: 45rem;
    margin: 0px auto;
}

.data-turning {
    background-color: #F2FBF9;
}

.data-text-parent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.data-text {
    width: 85%;
}

.data-text h2 {
    padding-bottom: 1rem;
}

.data-text h3 {
    padding-bottom: 1rem;
}

.data-text p {
    padding-bottom: 1.5rem;
}

.data-buttons {
    display: flex;
    align-items: flex-start;
}

.data-buttons .get-in-touch {
    padding: 0.500rem 0.625rem 0.500rem 1.5rem;
}

.data-buttons .get-in-touch:not(:last-child) {
    margin-right: 2rem;
}

.data-image {
    position: relative;
}

.data-image::before {
    content: '';
    position: absolute;
    left: 7.5rem;
    width: 2px;
    height: 90px;
    bottom: -5.6rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.policy-pedia {
    padding-top: 8rem;
}

.policy-pedia-content {
    margin-bottom: 3rem;
}

.policy-pedia-content h2 {
    padding-bottom: 1rem;
}

.policy-pedia-content p:not(:last-child) {
    padding-bottom: 1.5rem;
}

.policy-pedia-content p:last-child {
    width: 60rem;
    margin: 0px auto;
}

.policy-pedia-cards {
    display: flex;
    position: relative;
    /* margin-bottom: 18rem; */
}

.policy-pedia-child1 {
    width: 30%;
}

.policy-pedia-child2 {
    width: 40%;
    position: relative;
}

.policy-pedia-child2::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    width: 2px;
    height: 70px;
    background-color: rgba(5, 114, 96, 0.3);
    z-index: -1;
}

.policy-pedia-child2::after {
    content: '';
    position: absolute;
    bottom: -22rem;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    width: 2px;
    height: 430px;
    background-color: rgba(5, 114, 96, 0.3);
    z-index: -1;
}

.policy-pedia-child3 {
    width: 30%;
}

.reserve-parent {
    width: 386px;
    height: 380px;
    overflow: hidden;
    position: relative;
    margin: 5rem auto 0px;
    border-radius: 50%;
}

.reserve-parent img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.reserve-content {
    width: 340px;
    height: 340px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 1.3rem;
    left: 1.3rem;
    z-index: 1;
}

.reserve-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.reserve-icon img {
    position: inherit;
    top: inherit;
    left: inherit;
}

/* Rotate reserve gradient continuously */
.reserve-gradient {
    animation: reserveRotate 7s linear infinite;
    transform-origin: center center;
}

/* Keyframes for full rotation */
@keyframes reserveRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.policy-pedia-leftimg {
    position: absolute;
    top: 8rem;
    left: 8rem;
    z-index: -1;
}

.policy-pedia-rightimg {
    position: absolute;
    top: 8rem;
    right: 8rem;
    z-index: -1;
}

.policy-box {
    width: 330px;
    background-color: var(--white);
    border-radius: 20px;
    border: 8px solid rgba(5, 114, 96, 0.12);
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.policy-play {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
}

.policy-box-lefttop {
    margin-top: 1rem;
}

.policy-box-leftbottom {
    flex-direction: column;
    align-items: center;
    margin: 7rem 0rem 0rem 4rem;
}

.policy-box-righttop {
    margin: 0rem 0rem 0rem 7rem;
}

.policy-box-rightbottom {
    margin: 8rem 0rem 0rem 4rem;
    flex-direction: column;
    align-items: center;
}

.get-buttons-policy {
    width: 35rem;
    height: 8rem;
    padding-left: 0rem;
}

/* .get-buttons-policy .get-in-touch:last-child {
    margin-right: 2.8rem;
} */

.get-buttons-policy .get-in-touch:not(:last-child) {
    margin-right: 0rem;
}

.ai-assisted {
    position: relative;
    background-color: #F2FBF9;
    padding: 2rem 0rem;
}

/* .ai-assisted::before {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 0rem;
    right: 0rem;
    width: 100%;
    height: 580px;
    background-color: var(--white);
    z-index: -1;
} */

.ai-overall-parent {
    position: relative;
}

.ai-overall-parent::after {
    content: '';
    position: absolute;
    bottom: -8rem;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    width: 2px;
    height: 97px;
    background-color: rgba(5, 114, 96, 0.3);
}

.ai-image {
    position: absolute;
    top: 0rem;
    left: 0rem;
    right: 0rem;
    width: 100%;
}

.ai-image img {
    width: 100%;
}

.ai-inner-parent {
    padding: 1rem;
    width: 100%;
    display: flex;
}

.ai-inner-child1 {
    width: 75%;
}

.ai-inner-child2 {
    width: 35%;
}

.ai-assisted-content {
    width: 725px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0px 0px 10px #0000001A;
    border-radius: 20px;
    padding: 7rem 4rem 7.5rem 4rem;
    position: relative;
}

.ai-assisted-text h2 {
    padding-bottom: 1.5rem;
}

.ai-assisted-text h3 {
    padding-bottom: 2rem;
    width: 80%;
}

.ai-assisted-text p {
    padding-bottom: 1.5rem;
    width: 90%;
}

.ai-assisted-text .data-buttons {
    margin-top: 2rem;
    /* justify-content: center; */
}

.ai-hours {
    position: absolute;
    top: 11rem;
    right: -7rem;
}

.ai-hours .ai-hours-child1:not(:last-child) {
    margin-bottom: 1.5rem;
}

.ai-hours-child1 {
    background-color: var(--white);
    box-shadow: 0px 5px 10px #0000001A;
    border-radius: 20px;
    padding: 1.5rem;
    width: 230px;
}

.ai-right-overall {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.ai-right-content {
    background-color: var(--white);
    border-radius: 20px;
    border: 8px solid rgba(5, 114, 96, 0.12);
    position: relative;
    height: 165px;
    overflow: hidden;
}

.ai-right-content-inner {
    position: absolute;
    top: 0rem;
    right: 0rem;
}

.ai-right-content-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 3.5rem 0rem 3rem;
    height: 100%;
    box-shadow: 0px 5px 10px #0000001A;
    z-index: 1;
    position: relative;
}

.ai-right-content-image p {
    padding-right: 4.5rem;
}

.building-tech-content p {
    width: 60rem;
}

.risk-overall-parent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 6rem;
}

.risk-overall-parent::before {
    content: '';
    position: absolute;
    bottom: -3rem;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    width: 2px;
    height: 650px;
    background-color: rgba(5, 114, 96, 0.3);
    z-index: -1;
}

.risk-overall-parent::after {
    content: '';
    position: absolute;
    bottom: 18.1rem;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    width: 545px;
    height: 2px;
    background-color: rgba(5, 114, 96, 0.3);
    z-index: -1;
}

.risk-box1 {
    width: 595px;
    height: 280px;
    background-color: var(--white);
    border-radius: 20px;
    border: 8px solid rgba(5, 114, 96, 0.12);
    display: flex;
    box-shadow: 0px 5px 10px #0000001A;
    overflow: hidden;
}

.risk-box1-left {
    width: 55%;
    padding: 3rem 0rem 0rem 2.5rem;
}

.risk-box1-left h3 {
    padding-bottom: 1.5rem;
}

.risk-box1-right {
    width: 45%;
}

.risk-box1-right {
    position: relative;
}

.risk-box1-right-content {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    border: 8px solid rgba(5, 114, 96, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.building-tech-content {
    margin-bottom: 5rem;
    position: relative;
}

.building-tech-content::before {
    content: '';
    position: absolute;
    right: 0rem;
    left: 0rem;
    width: 0px;
    height: 65px;
    margin: 0px auto;
    display: table;
    bottom: -7rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.building-tech-content::after {
    content: '';
    position: absolute;
    right: 0rem;
    left: 0rem;
    width: 0px;
    height: 65px;
    margin: 0px auto;
    display: table;
    bottom: -7rem;
    background-color: rgba(5, 114, 96, 0.3);
}

.building-tech {
    position: relative;
    padding-top: 7rem;
}

.building-tech::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0rem;
    right: 0rem;
    width: 100%;
    height: 450px;
    background-color: var(--white);
    z-index: -1;
}

.about-content h2 {
    padding-bottom: 1rem;
}

.about-content p:nth-child(2) {
    width: 75rem;
    margin: 0px auto;
}

.about-content p:nth-child(3) {
    width: 50rem;
    margin: 0px auto;
}

.about-content p:not(:last-child) {
    padding-bottom: 1rem;
}

.about-us {
    background-color: #F2FBF9;
    padding: 3rem 0rem;
}

.about-overall-parent {
    position: relative;
    margin-bottom: 31rem;
}

.about-image {
    position: absolute;
    right: 0rem;
    left: 0rem;
    margin: 0px auto;
    display: table;
    bottom: -20rem;
}

.builtin-parent {
    display: flex;
}

.builtin-child1 {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

.builtin-image {
    width: 127px;
    height: 127px;
    background-color: var(--white);
    border-radius: 50%;
    border: 12px solid rgba(148, 194, 187, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0px 5px 10px #0000001A;
}

.builtin-child1 h3 {
    padding: 2rem 0rem 1rem 0rem;
}

.builtin-child1 p {
    padding: 0rem 3rem;
    text-align: center;
}

.builtin-child0 {}

.builtin-child2 {
    left: 21rem;
    bottom: -29rem;
}

.builtin-child3 {
    right: 21rem;
    bottom: -30rem;
}

.builtin-child4 {
    right: 0rem;
}

.years-parent {
    position: relative;
    padding: 3.5rem 3rem 0rem 3rem;
}

.years-image {
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: -1;
    width: 100%;
}

.years-image img {
    width: 100%;
}

.years-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.years-content p span {
    display: block;
}

.years-parent p:nth-child(3) {
    padding-top: 1.5rem;
}

.zero-parent {
    margin-top: 5rem;
}

.ready-bg {
    box-shadow: 0px 5px 10px #0000001A;
    background: transparent;
    border: 12px solid rgba(148, 194, 187, 0.45);
    border-radius: 30px;
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.ready-image {
    position: absolute;
    top: 0rem;
    left: 0rem;
    z-index: -1;
    width: 100%;
}

.ready-image img {
    width: 100%;
}

.ready-content {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ready-content h2 {
    padding-bottom: 1.5rem;
}

.ready-content p {
    padding-bottom: 3.5rem;
    width: 52rem;
    margin: 0px auto;
    text-align: center;
}

.ready-buttons {
    display: flex;
}

.ready-buttons .get-in-touch {
    padding: 0.500rem 0.625rem 0.500rem 1.5rem;
}

.ready-buttons .get-in-touch:not(:last-child) {
    margin-right: 1.5rem;
}

.get-in-touch-ready {
    color: var(--black);
    background-color: var(--white);
    box-shadow: inset 0px 3px 0px #FFFFFF66, 0px 10px 10px #1BA85633;
}

.bot-footer {
    padding-top: 4rem;
    position: relative;
}

.bot-footer:before {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 0rem;
    right: 0rem;
    width: 97%;
    margin: 0px auto;
    height: 700px;
    background-color: rgba(210, 232, 227, 0.4);
    border-radius: 30px;
    z-index: -2;
}

.footer-logo p {
    padding-top: 1rem;
}

.footer-links h3,
.contact-links h3 {
    padding-bottom: 1rem;
}

.list-unstyled li a {
    text-decoration: none;
}

.footer-links {
    margin: 0px auto;
    display: table;
}

.footer-links-last {
    float: right;
}

.social-links a:not(:last-child) {
    margin-right: 1rem;
}

.contact-links-parent {
    display: flex;
    justify-content: flex-end;
}

.footer-bottom {
    margin-top: 1rem;
    border-top: 2px solid rgba(5, 114, 96, 0.4);
    padding: 2rem 0rem 3rem;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 32px;
    z-index: 9999;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(5, 114, 96, 0.16);
    border-radius: 50%;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop svg {
    display: block;
    width: 40px;
    height: 40px;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

#backToTop:active svg circle,
#backToTop:focus svg circle {
    fill: #044C44;
    /* Slightly darker green for feedback */
}

.automation-parent {
    padding: 5rem 3rem 3rem 3rem;
    background-color: var(--white);
    border-radius: 40px;
    border: 10px solid #009376;
    box-shadow: 0px 0px 10px #0000001A;
}

.automation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.analy-left {
    background-color: rgba(210, 230, 226, 0.7);
    border-radius: 50px;
    width: 60%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.analy-right {
    width: 40%;
    height: 60px;
    background-color: rgba(210, 230, 226, 0.4);
    border-radius: 50px;
}

.automation-content-middle .analy-left,
.automation-content-middle .analy-right {
    width: 50%;
}

.ask-parent {
    position: relative;
    overflow: hidden;
    padding: 0.8rem;
    background-color: var(--darker-green);
    border-radius: 50px;
}

.ask-image {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
}

.ask-image img {
    width: 100%;
}

.ask-content {
    background-color: var(--white);
    box-shadow: 0px 0px 10px #0000001A;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    z-index: 2;
    position: relative;
}

.ask-me-icon {
    background-color: var(--darker-green);
    border-radius: 50%;
    padding: 0.5rem 0.6rem;
}

.ask-image-gradient {
    animation: askGradientMove 4s ease-in-out infinite;
}

/* Left → Right → Left loop */
@keyframes askGradientMove {
    0% {
        transform: translateX(-35%);
    }

    50% {
        transform: translateX(35%);
    }

    100% {
        transform: translateX(-35%);
    }
}

.finome-overall-parent {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.finome-overall-parent video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    transform: scale(1.012);
}

.video-mobile {
    display: none;
}

.assisted-bg-mobile-tree {
    display: none;
}

.policy-box-middle-bottom {
    margin: -2rem auto 0px;
}

/* breakpoints */
@media screen and (max-width: 1680px) {
    .container {
        max-width: 1500px;
    }

    .get-buttons {
        height: 19rem;
    }

    .get-buttons-policy {
        height: 8rem;
    }

    .small-circle1 {
        left: 23rem;
        bottom: 13rem;
    }

    .small-circle2 {
        left: 32rem;
        bottom: 16rem;
    }

    .small-circle3 {
        left: 34rem;
        bottom: 6rem;
    }

    .small-circle5 {
        right: 33rem;
        bottom: 7rem;
    }

    .small-circle6 {
        right: 24rem;
        bottom: 11rem;
    }

    .small-circle7 {
        right: 27rem;
        bottom: 19rem;
    }

    .innovative-infinite::before {
        bottom: 4rem;
        height: 620px;
    }

    .policy-pedia-child2::after {
        bottom: -22rem;
        height: 430px;
    }

    .ai-assisted-content {
        padding: 5rem 4rem 6rem 4rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
    }

    .builtin-child2 {
        bottom: -31rem;
    }

    .builtin-child3 {
        bottom: -32rem;
    }

    .ready-content {
        height: 490px;
    }

    #backToTop {
        bottom: 23px;
    }

    .finome-content-bg1 {
        width: 918px;
        top: 7rem;
    }

    .our-content-bg1 {
        margin: -9rem auto 0px;
    }

    .data-image::before {
        left: 7rem;
    }

}

@media screen and (max-width: 1600px) {
    .container {
        max-width: 1450px;
    }

    .get-buttons {
        height: 17rem;
    }

    .small-circle1 {
        left: 21rem;
        bottom: 14rem;
    }

    .small-circle2 {
        left: 30rem;
        bottom: 17rem;
    }

    .small-circle3 {
        left: 30rem;
        bottom: 8rem;
    }

    .small-circle7 {
        right: 25.5rem;
        bottom: 18rem;
    }

    .small-circle5 {
        bottom: 6rem;
    }

    .small-circle6 {
        right: 23rem;
        bottom: 11rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
    }

    .risk-box1 {
        height: 270px;
    }

    .risk-box1-left {
        padding: 2.5rem 0rem 0rem 2.5rem;
    }

    .risk-overall-parent::after {
        bottom: 17.5rem;
    }

    .builtin-child3 {
        bottom: -31rem;
    }

    .ready-content {
        height: 474px;
    }

    .half-globe {
        bottom: 5rem;
    }

    .ai-assisted-content {
        padding: 4rem 4rem 5.5rem 4rem;
    }

    .ai-hours {
        top: 9rem;
    }

    .finome-content-bg1 {
        width: 890px;
        top: 6rem;
        left: 1.1rem;
    }

    .our-content-bg1 {
        margin: -10rem auto 0px;
    }

    .data-image::before {
        left: 6.7rem;
    }

    .finome-overall-parent video {
        transform: scale(1.013);
    }

    .mission-content {
        margin: -3rem auto 0rem;
    }

    .circuit-lr img.circuit-left {
        left: -11rem;
        width: 420px;
        top: 1rem;
    }

    .circuit-lr img.circuit-right {
        right: -11rem;
        width: 420px;
        top: 1rem;
    }

    .get-buttons-policy {
        height: 8rem;
    }
}

@media screen and (max-width: 1540px) {
    :root {
        --text-20: 1.188rem;
        /*19px*/
        --text-60: 3.5rem;
        /*56px*/
        --text-25: 1.5rem;
        /*24px*/
        --text-40: 2.375rem;
        /*38px*/
        --text-30: 1.75rem;
        /*28px*/
        --text-50: 3rem;
        /*48px*/
    }

    .container {
        max-width: 1400px;
    }

    .get-buttons {
        height: 16rem;
    }

    .get-buttons-policy {
        height: 8rem;
    }

    .get-buttons .get-in-touch,
    .ready-buttons .get-in-touch {
        padding: 0.6rem 0.625rem 0.500rem 1.5rem;
    }

    .small-circle1 {
        left: 20rem;
        bottom: 13rem;
    }

    .small-circle2 {
        left: 28.5rem;
        bottom: 17rem;
    }

    .small-circle3 {
        left: 29rem;
        bottom: 7rem;
    }

    .small-circle7 {
        right: 24rem;
        bottom: 18rem;
    }

    .small-circle5 {
        bottom: 6rem;
        right: 31rem;
    }

    .small-circle6 {
        right: 22rem;
        bottom: 10rem;
    }

    .analy-left,
    .analy-right {
        height: 55px;
    }

    .innovative-infinite::before {
        height: 585px;
    }

    .ai-assisted-content {
        padding: 4rem 4rem 5rem 4rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
    }

    .ready-content {
        height: 455px;
    }

    #backToTop svg {
        width: 35px;
        height: 35px;
    }

    .ai-hours {
        top: 8rem;
    }

    .finome-content-bg1 {
        width: 855px;
        top: 5.5rem;
        left: 1.1rem;
    }

    .data-image::before {
        left: 6.5rem;
    }

    .ai-right-content {
        height: 155px;
    }

    .ask-image {
        height: 100%;
    }

    .ask-image img {
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 1440px) {
    .container {
        max-width: 1350px;
    }

    .nav-parent .navbar-expand-lg .navbar-nav {
        margin-right: 8rem;
    }

    .half-globe {
        bottom: 8rem;
    }

    .small-circle1 {
        bottom: 15rem;
        left: 18rem;
    }

    .small-circle2 {
        left: 26.5rem;
        bottom: 19rem;
    }

    .small-circle3 {
        left: 28rem;
        bottom: 7rem;
    }

    .small-circle5 {
        bottom: 6rem;
        right: 29rem;
    }

    .small-circle7 {
        right: 22rem;
        bottom: 20rem;
    }

    .small-circle6 {
        right: 19rem;
        bottom: 12rem;
    }

    .data-buttons .get-in-touch {
        padding: 0.600rem 0.625rem 0.500rem 1.5rem;
    }

    .data-text {
        width: 90%;
    }

    .ai-assisted-content {
        padding: 4rem 4rem 5rem 3rem;
    }

    .get-buttons-policy {
        width: 33rem;
        height: 7rem;
    }

    .reserve-parent {
        width: 350px;
        height: 345px;
        margin: 7rem auto 0px;
    }

    .reserve-content {
        width: 305px;
        height: 305px;
    }

    .reserve-icon img {
        width: 190px;
    }

    .policy-pedia-child2::before {
        height: 102px;
    }

    .policy-pedia-child2::after {
        bottom: -21rem;
        height: 416px;
    }

    .policy-box-righttop {
        margin: 0rem 0rem 0rem 6rem;
    }

    .ai-assisted-text h2,
    .ai-assisted-text h3 {
        padding-bottom: 1rem;
    }

    .ai-assisted-text p {
        padding-bottom: 1.4rem;
    }

    .ai-hours {
        top: 7rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
    }

    .ready-content {
        height: 440px;
    }

    #backToTop {
        bottom: 27px;
        right: 15px;
    }

    .builtin-child1-0 {
        left: -2rem;
    }

    .builtin-child4 {
        right: -2rem;
    }

    .ai-assisted-content {
        width: 665px;
    }

    .finome-content-bg1 {
        width: 825px;
        top: 5.3rem;
        left: 1rem;
    }

    .our-content-bg1 {
        margin: -12rem auto 0px;
    }

    .data-image::before {
        left: 6.3rem;
    }

    .ai-right-content {
        height: 150px;
    }

    .finome-overall-parent video {
        transform: scale(1.0133);
    }

    .ask-image {
        height: 100%;
    }

    .ask-image img {
        height: 100%;
        object-fit: cover;
    }

    .mission-content {
        margin: 0rem auto 0rem;
        width: 55rem;
    }

    .our-mission {
        padding: 3rem 0rem;
    }

    .circuit-lr img.circuit-left {
        left: -10rem;
        width: 345px;
        top: 2rem;
    }

    .circuit-lr img.circuit-right {
        right: -10rem;
        width: 345px;
        top: 2rem;
    }
}

@media screen and (max-width: 1399px) {
    :root {
        --text-20: 1.063rem;
        /*17px*/
        --text-60: 2.875rem;
        /*46px*/
        --text-25: 1.313rem;
        /*21px*/
        --text-40: 2.125rem;
        /*34px rem */
        --text-30: 1.563rem;
        /*25px rem */
        --text-50: 2.5rem;
        /*40px rem */
        --text-80: 4.125rem;
        /*66px rem */
    }

    .container {
        max-width: 1300px;
    }

    .nav-parent .navbar .navbar-brand img {
        width: 160px;
    }

    .get-in-touch img {
        margin-left: 1.5rem;
    }

    .pioneer-research-content h1 {
        width: 52rem;
    }

    .pioneer-research-content {
        padding: 3rem 0rem 2rem 0rem;
    }

    .pioneer-research-content p {
        width: 45rem;
        padding-top: 1.5rem;
    }

    .get-buttons {
        width: 27rem;
        margin: 1.5rem auto 0px;
    }

    .our-content-bg1 img {
        width: 780px;
    }

    .finome-content-bg1 {
        top: 4.8rem;
        left: 1rem;
        width: 795px;
    }

    .mission-content {
        width: 55rem;
        top: 4.5rem;
    }

    .our-content-bg1 picture img {
        width: 600px;
    }

    .half-globe {
        bottom: 5rem;
    }

    .small-circle1 {
        bottom: 11rem;
        left: 19.5rem;
    }

    .small-circle2 {
        left: 26.5rem;
        bottom: 16rem;
    }

    .small-circle3 {
        bottom: 6rem;
    }

    .small-circle7 {
        right: 23rem;
        bottom: 17rem;
    }

    .small-circle5 {
        bottom: 5rem;
        right: 29rem;
    }

    .small-circle6 {
        right: 20.5rem;
        bottom: 10rem;
    }

    .our-overall-parent {
        margin-bottom: 0rem;
    }

    .our-overall-parent::before {
        height: 75px;
        bottom: 1rem;
        width: 0px;
    }

    .innovative-infinite-content {
        margin-bottom: 3rem;
    }

    .get-buttons-policy {
        height: 7rem;
    }

    .automation-parent {
        border: 10px solid #009376;
        padding: 4rem 3.5rem 3rem 3.5rem;
    }

    .policy-pedia {
        padding-top: 7rem;
    }

    .analy-left,
    .analy-right {
        height: 50px;
    }

    .automation-content {
        margin-bottom: 1.3rem;
    }

    .ask-parent {
        padding: 0.6rem;
    }

    .ask-content {
        padding: 0.3rem 0.5rem 0.3rem 1.5rem;
    }

    .ask-me-icon {
        padding: 0.4rem 0.6rem;
    }

    .data-text {
        width: 90%;
    }

    .innovative-infinite::before {
        height: 500px;
    }

    .policy-pedia-content p:not(:last-child) {
        padding-bottom: 1rem;
    }

    .reserve-parent {
        width: 311px;
        height: 311px;
    }

    .reserve-content {
        width: 277px;
        height: 277px;
        top: 1rem;
        left: 1rem;
    }

    .policy-box {
        width: 300px;
    }

    .policy-box img:nth-child(2) {
        width: 140px;
    }

    .policy-box-lefttop {
        margin: 2rem 0rem 0rem 4rem;
    }

    .policy-box-leftbottom {
        margin: 8rem 0rem 0rem 5rem;
    }

    .policy-box-righttop {
        margin: 1rem 0rem 0rem 2rem;
    }

    .policy-box-rightbottom {
        margin: 7.5rem 0rem 0rem 0rem;
    }

    .reserve-icon img {
        width: 170px;
    }

    .data-image::before {
        left: 6rem;
    }

    .policy-pedia-child2::after {
        bottom: -17.5rem;
        height: 357px;
    }

    .risk-overall-parent {
        margin-bottom: 5rem;
    }

    .ai-assisted-content {
        width: 630px;
        height: auto;
        padding: 4rem 4rem 6rem 4rem;
    }

    .ai-hours-child1 {
        width: 200px;
    }

    .ai-right-content {
        height: 145px;
    }

    .ai-right-content-image {
        padding: 0rem 3.5rem 0rem 2rem;
    }

    .ai-right-content-image img {
        width: 70px;
    }

    .risk-box1 {
        width: 500px;
        height: 240px;
    }

    .risk-box1-left {
        padding: 1.6rem 0rem 0rem 2.5rem;
    }

    .risk-box1-right-content {
        width: 80px;
        height: 80px;
    }

    .risk-box1-right-content img {
        width: 30px;
    }

    .risk-overall-parent::before {
        height: 560px;
        bottom: -2rem;
    }

    .risk-overall-parent::after {
        bottom: 15.6rem;
    }

    .builtin-child1 h3 {
        padding: 1rem 0rem 0.5rem 0rem;
    }

    .ready-bg {
        margin-top: 3rem;
    }

    .ready-content {
        height: 425px;
    }

    .builtin-child2 {
        bottom: -30rem;
    }

    .builtin-child3 {
        bottom: -30rem;
    }

    .get-buttons-policy {
        width: 30rem;
    }

    /* .get-buttons-policy .get-in-touch:last-child {
        margin-right: 2.8rem;
    } */

    .finome-overall-parent video {
        transform: scale(1.014);
    }

    .circuit-lr img.circuit-left {
        top: 1rem;
    }

    .circuit-lr img.circuit-right {
        top: 1rem;
    }
}

@media only screen and (max-width: 1280px) {
    :root {
        --text-20: 0.938rem;
        /*15px*/
        --text-60: 2.375rem;
        /*38px*/
        --text-25: 1.188rem;
        /*19px*/
        --text-40: 1.875rem;
        /*30px*/
        --text-30: 1.375rem;
        /*22px*/
        --text-50: 2.125rem;
        /*34px*/
        --text-80: 3.5rem;
        /*56px*/
    }

    .container {
        max-width: 1250px;
    }

    .nav-parent .navbar .navbar-brand img {
        width: 140px;
        padding-left: 0.5rem;
    }

    .get-in-touch {
        padding: 0.4rem 0.625rem 0.313rem 0.75rem;
    }

    .mission-content {
        top: 4rem;
    }

    .half-globe {
        bottom: 7rem;
    }

    .small-circle1 {
        bottom: 12rem;
        left: 18rem;
    }

    .small-circle2 {
        left: 25rem;
        bottom: 17rem;
    }

    .small-circle3 {
        bottom: 5.5rem;
        left: 27rem;
    }

    .small-circle7 {
        right: 22rem;
        bottom: 18rem;
    }

    .small-circle5 {
        bottom: 5rem;
        right: 28rem;
    }

    .small-circle6 {
        right: 19rem;
    }

    .innovative-infinite-content p {
        width: 35rem;
    }

    .data-image::before {
        left: 5.6rem;
    }

    .get-buttons-policy {
        width: 28rem;
    }

    /* .get-buttons-policy .get-in-touch:last-child {
        margin-right: 2.2rem;
    } */

    .ai-assisted-buttons .get-in-touch:not(:last-child) {
        margin-right: 1rem;
    }

    .ai-image img {
        width: auto;
    }

    .ai-assisted-content {
        width: 560px;
        padding: 4.5rem 4rem 6.4rem 4rem;
    }

    .ai-hours-child1 {
        width: 180px;
        padding: 1.2rem;
    }

    .ai-right-content {
        height: 135px;
    }

    .ai-right-content-image {
        padding: 0rem 3.5rem 0rem 1.6rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
    }

    .innovative-infinite-content p {
        width: 42rem;
    }

    .risk-box1-left h3 {
        padding-bottom: 1rem;
    }

    .risk-box1 {
        width: 480px;
        height: 210px;
    }

    .building-tech::before {
        height: 350px;
    }

    .risk-overall-parent::before {
        height: 495px;
        bottom: -2rem;
    }

    .risk-overall-parent::after {
        bottom: 13.6rem;
    }

    .builtin-child2 {
        bottom: -28rem;
        left: 18rem;
    }

    .builtin-child3 {
        bottom: -28rem;
        right: 18rem;
    }

    .zero-parent {
        margin-top: 3rem;
    }

    .ready-bg {
        margin-top: 0rem;
    }

    .ready-content {
        height: 405px;
    }

    .bot-footer:before {
        width: 98%;
    }

    .social-links a:not(:last-child) {
        margin-right: 0.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 0rem 2.5rem;
    }

    .finome-content-bg1 {
        top: 4.6rem;
        left: 1rem;
        width: 767px;
    }

    .finome-overall-parent video {
        transform: scale(1.015);
    }

    .circuit-lr img.circuit-left {
        top: 1rem;
        left: -6rem;
        width: 260px;
    }

    .circuit-lr img.circuit-right {
        top: 1rem;
        right: -6rem;
        width: 260px;
    }
}

@media only screen and (max-width: 1199px) {
    :root {
        --text-20: 0.938rem;
        /*15px rem*/
        --text-60: 2.125rem;
        /*34px*/
        --text-25: 1.063rem;
        /*17px*/
        --text-40: 1.75rem;
        /*28px*/
        --text-30: 1.25rem;
        /*20px*/
        --text-50: 1.875rem;
        /*30px*/
        --text-80: 3.125rem;
        /*50px*/
    }

    .container {
        max-width: 100%;
    }

    .nav-parent .navbar .navbar-brand img {
        width: 130px;
        padding-left: 0.3rem;
    }

    .nav-parent .navbar {
        padding: 0.50rem 0rem;
    }

    .pioneer-research-content h1 {
        width: 45rem;
    }

    .pioneer-research-content p {
        width: 35rem;
    }

    .pioneer-research-content {
        padding: 2rem 0rem 2rem 0rem;
    }

    .get-buttons {
        width: 25rem;
        height: 14rem;
    }

    .finome-content-bg1 {
        top: 4rem;
        width: 735px;
        left: 0.9rem;
    }

    .mission-content {
        width: 38rem;
        margin: 0rem auto 0rem;
    }

    .circuit-lr img.circuit-left {
        left: -1rem;
        width: 260px;
        top: 1rem;
    }

    .circuit-lr img.circuit-right {
        right: -1rem;
        width: 260px;
        top: 1rem;
    }

    .our-content-bg1 picture img {
        width: 570px;
    }

    .half-globe {
        bottom: 7rem;
    }

    .small-circle1 {
        left: 17rem;
        bottom: 13rem;
    }

    .small-circle2 {
        left: 24.5rem;
        bottom: 18rem;
    }

    .small-circle3 {
        left: 25rem;
    }

    .small-circle7 {
        right: 20.5rem;
        bottom: 17rem;
    }

    .small-circle6 {
        right: 17.5rem;
        bottom: 11rem;
    }

    .small-circle5 {
        right: 26rem;
    }

    .our-overall-parent {
        padding-bottom: 0rem;
    }

    .our-overall-parent::before {
        height: 55px;
        bottom: 0rem;
    }

    .innovative-infinite-content p {
        width: 30rem;
    }

    .analy-left,
    .analy-right {
        height: 45px;
    }

    .automation-content {
        margin-bottom: 1.1rem;
    }

    .innovative-infinite::before {
        height: 440px;
    }

    .reserve-parent {
        width: 280px;
        height: 280px;
    }

    .reserve-content {
        width: 247px;
        height: 245px;
    }

    .reserve-icon img {
        width: 150px;
    }

    .policy-pedia-leftimg img,
    .policy-pedia-rightimg img {
        width: 430px;
    }

    .policy-box-leftbottom {
        margin: 6rem 0rem 0rem 5rem;
    }

    .policy-box-rightbottom {
        margin: 6.5rem 0rem 0rem 0rem;
    }

    .policy-box-righttop {
        margin: 1rem 0rem 0rem 0.5rem;
    }

    .policy-pedia-child2::after {
        bottom: -17.5rem;
        height: 365px;
    }

    .get-buttons-policy {
        width: 28rem;
    }

    /* .get-buttons-policy .get-in-touch:last-child {
        margin-right: 2rem;
    } */

    .data-text {
        width: 100%;
    }

    .ai-assisted-content {
        padding: 4rem 4rem 5.8rem 4rem;
    }

    .ai-overall-parent {
        margin-bottom: 2rem;
    }

    .builtin-child1-0 {
        left: 0rem;
    }

    .builtin-child4 {
        right: 0rem;
    }

    .builtin-image img {
        width: 45px;
    }

    .ready-content {
        height: 385px;
    }

    .ready-content p {
        width: 34rem;
    }

    .bot-footer:before {
        width: 100%;
    }

    .social-links a img {
        width: 30px;
    }

    .footer-bottom {
        padding: 1.2rem 0rem 2.3rem;
    }

    #backToTop svg {
        width: 30px;
        height: 30px;
    }

    #backToTop {
        bottom: 25px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .get-buttons-policy {
        height: 7rem;
    }

    .ai-overall-parent::after {
        bottom: -8rem;
        height: 65px;
    }
}

@media only screen and (max-width: 1025px) and (min-width: 992px) {
    :root {
        --text-20: 0.875rem;
        /*14px rem*/
        --text-60: 2rem;
        /*32px*/
        --text-25: 0.938rem;
        /*15px rem*/
        --text-40: 1.5rem;
        /*24px*/
        --text-30: 1.125rem;
        /*18px rem*/
        --text-50: 1.625rem;
        /*26px rem*/
        --text-80: 2.875rem;
        /*46px rem*/
    }

    .nav-parent .navbar-expand-lg .navbar-nav {
        margin-right: 3rem;
    }

    .nav-parent .navbar .navbar-brand img,
    .footer-logo img {
        width: 120px;
    }

    .pioneer-research-content h1 {
        width: 40rem;
    }

    .finome-content-bg1 {
        top: 6rem;
        width: 624px;
        left: 0.8rem;
    }

    .our-content-bg1 img {
        width: 700px;
    }

    .half-globe {
        bottom: 10rem;
    }

    .small-circle1 {
        left: 11.5rem;
        bottom: 15rem;
    }

    .small-circle3 {
        left: 19rem;
        bottom: 6rem;
    }

    .small-circle2 {
        left: 19rem;
        bottom: 19rem;
    }

    .small-circle7 {
        right: 15.5rem;
        bottom: 17rem;
    }

    .small-circle6 {
        right: 12.5rem;
        bottom: 10rem;
    }

    .small-circle5 {
        right: 20rem;
        bottom: 5rem;
    }

    .automation-parent {
        border: 10px solid #009376;
        padding: 4rem 3rem 3rem 3rem;
    }

    .data-image::before {
        left: 4.6rem;
        height: 100px;
        bottom: -6.3rem;
    }

    .ai-overall-parent {
        margin-bottom: 0rem;
    }

    .innovative-infinite {
        margin-bottom: 4rem;
    }

    .reserve-parent {
        width: 230px;
        height: 230px;
    }

    .reserve-content {
        width: 197px;
        height: 197px;
    }

    .reserve-icon img {
        width: 120px;
    }

    .policy-pedia-leftimg img,
    .policy-pedia-rightimg img {
        width: 335px;
    }

    .policy-box img:nth-child(2) {
        width: 110px;
    }

    .policy-box {
        width: 265px;
    }

    .policy-box-leftbottom {
        margin: 5rem 0rem 0rem 3rem;
    }

    .policy-box-rightbottom {
        margin: 6rem 0rem 0rem 0rem;
    }

    .ai-assisted-content {
        padding: 2.4rem 3.5rem 2.8rem 2.5rem;
        width: 475px;
    }

    .ai-assisted-buttons .get-in-touch:not(:last-child) {
        margin-right: 1rem;
    }

    .ai-hours-child1 {
        width: 165px;
        padding: 1rem;
    }

    .ai-hours .ai-hours-child1:not(:last-child) {
        margin-bottom: 1rem;
    }

    .ai-hours {
        top: 5rem;
    }

    .ai-right-content-inner img {
        width: 200px;
    }

    .ai-right-content-image {
        padding: 0rem 3rem 0rem 1.6rem;
    }

    .ai-right-content-image p {
        padding-right: 2.5rem;
    }

    .ai-right-content {
        height: 110px;
    }

    .ai-right-content-image img {
        width: 50px;
    }

    .risk-box1 {
        width: 450px;
        height: 180px;
    }

    .risk-box1-left {
        padding: 1.4rem 0rem 0rem 2rem;
    }

    .risk-overall-parent::before {
        height: 425px;
        bottom: -2rem;
    }

    .risk-overall-parent::after {
        bottom: 11.8rem;
        width: 480px;
    }

    .risk-overall-parent {
        margin-bottom: 4rem;
    }

    .builtin-image {
        width: 110px;
        height: 110px;
    }

    .about-image {
        bottom: -12rem;
    }

    .builtin-image img {
        width: 35px;
    }

    .builtin-child2 {
        bottom: -21rem;
        left: 13rem;
    }

    .builtin-child3 {
        bottom: -20rem;
        right: 14rem;
    }

    .about-overall-parent {
        margin-bottom: 21rem;
    }

    .ready-bg {
        margin-top: 5rem;
    }

    .ready-content {
        height: 330px;
    }

    .mission-content {
        top: 4rem;
    }

    .policy-pedia-child2::after {
        bottom: -17.5rem;
        height: 355px;
    }

    .circuit-lr img.circuit-left {
        left: -1rem;
        width: 210px;
        top: 2rem;
    }

    .circuit-lr img.circuit-right {
        right: -1rem;
        width: 210px;
        top: 2rem;
    }

    .about-content p:nth-child(2) {
        width: 50rem;

    }

    .ai-overall-parent::after {
        bottom: -6rem;
        height: 65px;
    }

    .building-tech {
        padding-top: 5rem;
    }
}

@media only screen and (max-width: 991px) {
    :root {
        --text-20: 0.875rem;
        /*14px rem*/
        --text-60: 1.875rem;
        /*30px rem*/
        --text-25: 0.875rem;
        /*14px rem*/
        --text-40: 1.375rem;
        /*22px rem*/
        --text-30: 1rem;
        /*16px rem*/
        --text-50: 1.5rem;
        /*24px rem*/
        --text-80: 2.5rem;
        /*40px rem*/
    }

    .nav-parent .navbar {
        border-radius: 30px;
    }

    .pioneer-research-content p {
        padding-top: 1rem;
    }

    .pioneer-research-content {
        padding: 1.5rem 0rem 1rem 0rem
    }

    .pioneer-research-content h1 {
        width: 35rem;
    }

    .finome-content-bg1 {
        top: 3.5rem;
        width: 460px;
        left: 0.5rem;
    }

    .get-buttons {
        width: 23rem;
    }

    /* .get-buttons .get-in-touch:not(:last-child) {
        margin-right: 1rem;
    } */

    .our-content-bg1 img {
        width: 540px;
    }

    .our-content-bg1 {
        margin: -2rem auto 0px;
    }

    .mission-content {
        top: 2rem;
        width: 25rem;
        margin: 0rem auto 0rem;
    }

    .our-content-bg1 picture img {
        width: 420px;
    }

    .small-circle-child img {
        width: 15px;
    }

    .small-circle-child {
        padding: 0.4rem 0.7rem;
    }

    .small-circle1 {
        left: 8.5rem;
        bottom: 9rem;
    }

    .small-circle2 {
        left: 14rem;
        bottom: 12rem;
    }

    .small-circle3 {
        left: 16rem;
        bottom: 2.5rem;
    }

    .small-circle5 {
        right: 15rem;
        bottom: 4rem;
    }

    .small-circle6 {
        right: 9.5rem;
        bottom: 8rem;
    }

    .small-circle7 {
        right: 11.5rem;
        bottom: 13rem;
    }

    .our-overall-parent::before {
        height: 55px;
    }

    .circuit-lr img.circuit-left {
        left: -1rem;
        width: 180px;
        top: 3rem;
    }

    .circuit-lr img.circuit-right {
        right: -1rem;
        width: 180px;
        top: 3rem;
    }

    .innovative-infinite-content {
        margin-bottom: 0rem;
    }

    .automation-parent {
        border: 8px solid #009376;
        padding: 2rem 1.5rem 2rem 1.5rem;
    }

    .analy-left,
    .analy-right {
        height: 40px;
    }

    .analy-left img {
        width: 15px;
    }

    .automation-content {
        gap: 0.5rem;
    }

    .analy-left p {
        width: 70%;
    }

    .ask-me-icon img {
        width: 12px;
    }

    .ask-me-icon {
        padding: 0.2rem 0.6rem;
    }

    .ask-parent {
        padding: 0.5rem 0.6rem;
    }

    .data-text {
        width: 100%;
    }

    .data-text h2,
    .data-text h3,
    .data-text p {
        padding-bottom: 0.5rem;
    }

    .data-buttons .get-in-touch:not(:last-child) {
        margin-right: 0.5rem;
    }

    .data-buttons .get-in-touch {
        padding: 0.600rem 0.625rem 0.500rem 1rem;
        line-height: 17px;
    }

    .data-buttons .get-in-touch img {
        margin-left: 1rem;
    }

    .innovative-infinite::before {
        height: 355px;
    }

    .policy-box img:nth-child(2) {
        width: 80px;
    }

    .policy-pedia-content p:last-child {
        width: 35rem;
    }

    .policy-box {
        width: 220px;
        padding: 0.7rem;
    }

    .policy-play a img {
        width: 25px;
    }

    .policy-box-lefttop {
        margin: 0rem 0rem 0rem 0rem;
    }

    .policy-box-leftbottom {
        margin: 4rem 0rem 0rem 0rem;
    }

    .policy-box-righttop {
        margin: 0rem 0rem 0rem 0rem;
    }

    .policy-box-rightbottom {
        margin: 3rem 0rem 0rem 0rem;
    }

    .reserve-parent {
        width: 200px;
        height: 200px;
        margin: 2rem auto 0px;
    }

    .reserve-content {
        width: 167px;
        height: 167px;
    }

    .reserve-icon img {
        width: 100px;
    }

    .policy-pedia-leftimg img,
    .policy-pedia-rightimg img {
        width: 200px;
    }

    .policy-pedia-leftimg {
        top: 5rem;
        left: 7rem;
    }

    .policy-pedia-rightimg {
        top: 5rem;
        right: 7rem;
    }

    .innovative-infinite {
        margin-bottom: 6rem;
    }

    .policy-pedia-child2::before {
        height: 60px;
        top: -1.3rem;
    }

    .get-buttons {
        width: 24rem;
        height: 9rem;
    }

    .get-buttons-policy {
        width: 27rem;
        height: 7rem;
    }

    .policy-pedia-child2::after {
        bottom: -13.5rem;
        height: 268px;
    }

    .data-image::before {
        left: 3.4rem;
        height: 80px;
        bottom: -5rem;
    }

    .ai-assisted-content {
        padding: 1.5rem 3.5rem 2rem 1.5rem;
        width: 375px;
    }

    .ai-assisted-text .data-buttons {
        margin-top: 0.5rem;
    }

    .ai-hours-child1 {
        width: 150px;
        padding: 0.7rem;
    }

    .ai-hours .ai-hours-child1:not(:last-child) {
        margin-bottom: 1rem;
    }

    .ai-hours {
        top: 2rem;
        right: -4rem;
    }

    .ai-right-content-inner img {
        width: 150px;
    }

    .ai-right-content {
        height: 90px;
        border: 6px solid rgba(5, 114, 96, 0.12);
    }

    .ai-right-content-image img {
        width: 40px;
        padding-left: 5px;
    }

    .ai-right-content-image {
        padding: 0rem 2rem 0rem 1.5rem;
    }

    .ai-right-content-image p {
        padding-right: 0.2rem;
    }

    .ai-image,
    .ai-image img {
        height: 100%;
    }

    .ai-assisted::before {
        height: 420px;
    }

    .ai-overall-parent {
        margin-bottom: 0rem;
    }

    .ai-overall-parent::after {
        bottom: -6rem;
        height: 65px;
    }

    .building-tech {
        padding-top: 5rem;
    }

    .building-tech-content {
        padding-bottom: 3rem;
    }

    .risk-box1 {
        width: 340px;
        height: 185px;
    }

    .risk-box1-left {
        padding: 1rem 0rem 0rem 1rem;
    }

    .risk-box1-left h3 {
        padding-bottom: 0.5rem;
    }

    .risk-overall-parent::before {
        height: 445px;
        bottom: -2rem;
    }

    .innovative-infinite-content h2 {
        padding-bottom: 1rem;
    }

    .risk-overall-parent::after {
        bottom: 12rem;
        width: 500px;
    }

    .risk-overall-parent {
        margin-bottom: 4rem;
    }

    .about-content p:nth-child(2) {
        width: 40rem;
    }

    .builtin-image {
        width: 100px;
        height: 100px;
        border: 9px solid rgba(148, 194, 187, 0.45);
    }

    .builtin-child1 p {
        padding: 0rem 1rem;
    }

    .about-image {
        bottom: -13rem;
    }

    .builtin-child2 {
        bottom: -21rem;
        left: 10rem;
    }

    .builtin-child3 {
        bottom: -20rem;
        right: 10rem;
    }

    .about-overall-parent {
        margin-bottom: 20rem;
    }

    .years-parent {
        padding: 1.5rem 1.5rem 0rem 1.5rem;
    }

    .years-parent p:nth-child(3) {
        padding-top: 0.5rem;
    }

    .ready-bg {
        margin-top: 3rem;
        border: 8px solid rgba(148, 194, 187, 0.45);
    }

    .ready-content {
        height: 245px;
    }

    .ready-content p {
        padding-bottom: 2rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo img,
    .nav-parent .navbar .navbar-brand img {
        width: 120px;
    }

    .bot-footer {
        padding-top: 2rem;
    }

    .footer-logo p {
        padding-top: 0.5rem;
    }

    .footer-links {
        margin-left: 0rem;
    }

    .contact-links-parent {
        justify-content: flex-start;
    }

    .custom-toggler {
        background: var(--top-green);
        height: 40px;
        width: 40px;
        border-radius: 50%;
        padding: 14px 9px;
        box-shadow: inset 0px 2px 0px #FFFFFF66, 0px 5px 5px #1BA85659;
    }

    .custom-toggler .toggler-line {
        background-color: var(--white);
    }

    .custom-toggler.active .toggler-line:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .custom-toggler.active .toggler-line:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .nav-parent .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.5rem;
    }

    .about-content p:nth-child(3) {
        width: 35rem;
    }
}

@media (min-width: 800px) and (max-width: 991px) {
    .finome-content-bg1 {
        top: 3.2rem;
        width: 485px;
        left: 0.6rem;
    }

    .small-circle1 {
        left: 6.5rem;
    }

    .small-circle2 {
        left: 15rem;
        bottom: 10rem;
    }

    .small-circle3 {
        bottom: 4rem;
    }

    .small-circle7 {
        right: 13rem;
        bottom: 15.5rem;
    }

    .small-circle6 {
        right: 9rem;
    }

    .small-circle5 {
        right: 15rem;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --text-20: 0.938rem;
        /*15px rem*/
        --text-60: 1.875rem;
        /*30px rem*/
        --text-25: 1.25rem;
        /*20px rem*/
        --text-40: 1.375rem;
        /*22px rem*/
        --text-30: 1rem;
        /*16px rem*/
        --text-50: 1.5rem;
        /*24px rem*/
        --text-80: 2.5rem;
        /*40px rem*/
    }

    .nav-parent .navbar-expand-lg .navbar-nav {
        margin-right: 0rem;
    }

    .get-buttons,
    .mission-content,
    .pioneer-research-content h1,
    .pioneer-research-content p,
    .finome-content-bg1,
    .innovative-infinite-content p,
    .policy-pedia-content p:last-child,
    .about-content p:nth-child(2),
    .about-content p:nth-child(3),
    .ready-content p,
    .ai-assisted-text h3,
    .ai-assisted-text p {
        width: 100%;
    }

    .get-buttons {
        height: 12rem;
    }

    .custom-toggler {
        background: var(--top-green);
        height: 40px;
        width: 40px;
        border-radius: 50%;
        padding: 14px 9px;
        box-shadow: inset 0px 2px 0px #FFFFFF66, 0px 5px 5px #1BA85659;
    }

    .custom-toggler .toggler-line {
        background-color: var(--white);
    }

    .custom-toggler.active .toggler-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .custom-toggler.active .toggler-line:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .nav-parent .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.5rem;
    }

    .get-in-touch img {
        margin-left: 0.5rem;
    }

    .get-buttons .get-in-touch,
    .ready-buttons .get-in-touch {
        padding: 0.6rem 0.625rem 0.500rem 0.7rem;
    }

    .get-buttons .get-in-touch:not(:last-child) {
        margin-right: 0rem;
        line-height: 16px;
        text-align: center;
    }

    .finome-content-bg1 {
        top: 12.5rem;
        left: 0.7rem;
        width: 90%;
    }

    .our-content-bg1 {
        margin: 3rem auto 0px;
    }

    .our-content-bg1 img {
        width: 435px;
        height: auto;
        object-fit: cover;
    }

    .mission-content h2 {
        padding-bottom: 1rem;
    }

    .pioneer-research .container .row:last-child .col-12 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .half-globe {
        bottom: 2rem;
    }

    .small-circle-child {
        padding: 0.3rem 0.6rem;
    }

    .small-circle1 {
        left: 1.5rem;
        bottom: 1.5rem;
    }

    .small-circle6 {
        right: 1.5rem;
        bottom: 1rem;
    }

    .small-circle3 {
        left: 6rem;
        bottom: 2rem;
    }

    .small-circle5 {
        right: 6rem;
        bottom: 2.5rem;
    }

    .small-circle2 {
        left: 5rem;
        bottom: 7rem;
    }

    .small-circle7 {
        right: 5rem;
        bottom: 7rem;
    }

    .mission-content {
        top: 1rem;
        margin: 0rem auto 0rem;
    }

    .innovative-infinite .container .row:last-child .col-lg-5 {
        order: 2;
    }

    .innovative-infinite-content {
        margin-bottom: 1rem;
    }

    .automation-parent {
        padding: 1rem 1rem 1rem 1rem;
    }

    .analy-left p {
        font-size: 10px;
    }

    .analy-left {
        width: 80%;
    }

    .analy-right {
        width: 20%;
    }

    .analy-left,
    .analy-right {
        height: 30px;
    }

    .automation-content-middle .analy-right {
        width: 35%;
    }

    .automation-content-middle .analy-left {
        width: 65%;
    }

    .automation-content {
        margin-bottom: 0.7rem;
    }

    .ask-content p {
        font-size: 12px;
    }

    .ask-me-icon img {
        width: 10px;
    }

    .ask-me-icon {
        padding: 0rem 0.45rem;
    }

    .ask-parent {
        padding: 0.4rem 0.5rem;
    }

    .ask-image {
        height: 100%;
    }

    .ask-image img {
        height: 100%;
        object-fit: cover;
    }

    .data-image::before {
        display: none;
    }

    .policy-pedia {
        padding-top: 4rem;
    }

    .data-text-parent {
        position: relative;
        padding: 3rem 0rem 4rem 0rem;
    }

    .data-text-parent::before {
        content: '';
        position: absolute;
        left: 0rem;
        right: 0rem;
        margin: 0px auto;
        width: 2px;
        height: 70px;
        bottom: -4.3rem;
        background-color: rgba(5, 114, 96, 0.3);
    }

    .data-text h2,
    .data-text h3,
    .data-text p {
        padding-bottom: 1rem;
    }

    .data-text h3 {
        font-size: 20px;
    }

    .data-buttons {
        margin-top: 1rem;
        justify-content: center;
    }

    .data-buttons .get-in-touch:not(:last-child) {
        margin-right: 1.5rem;
    }

    .get-buttons-policy .get-in-touch:last-child {
        margin-right: 0rem;
    }

    .innovative-infinite::before {
        height: 650px;
        bottom: 0rem;
    }

    .policy-pedia-content p:nth-child(2) {
        font-size: 20px;
    }

    .policy-pedia-content p:last-child {
        line-height: 150%;
        color: var(--active-menu);
    }

    .policy-pedia-child1,
    .policy-pedia-child2,
    .policy-pedia-child3 {
        width: 100%;
    }

    .policy-pedia-cards {
        flex-direction: column;
    }

    .policy-box-leftbottom,
    .policy-box-rightbottom {
        margin: 0rem 0rem 0rem 0rem;
    }

    .policy-box {
        width: 100%;
        padding: 0.5rem 0.5rem 2.5rem 0.5rem;
    }

    .policy-box img:nth-child(2) {
        width: auto;
    }

    .policy-box-lefttop,
    .policy-box-righttop,
    .policy-box-middle-bottom {
        display: flex;
        flex-direction: column-reverse;
    }

    .policy-box-middle-bottom {
        width: 50%;
        margin-top: 1rem;
    }

    .policy-box-middle-bottom p {
        padding-bottom: 1rem;
    }

    .policy-play a img {
        width: auto;
    }

    .policy-play {
        bottom: 0.5rem;
        left: inherit;
        right: 0.5rem;
    }

    .policy-pedia-child1,
    .policy-pedia-child3 {
        display: flex;
    }

    .policy-box-lefttop,
    .policy-box-righttop {
        margin-right: 10px;
    }

    .policy-box-rightbottom,
    .policy-box-leftbottom {
        text-align: center;
    }

    .policy-box-rightbottom p,
    .policy-box-leftbottom p {
        padding-bottom: 1rem;
    }

    .reserve-parent {
        width: 167px;
        height: 167px;
        margin: 2.5rem auto 2.5rem;
    }

    .reserve-content {
        width: 143px;
        height: 143px;
        top: 0.7rem;
        left: 0.8rem;
    }

    .policy-pedia-leftimg img,
    .policy-pedia-rightimg img {
        width: auto;
    }

    .policy-pedia-leftimg {
        top: 5rem;
        left: 0rem;
        right: 0rem;
        margin: 0px auto;
        display: table;
    }

    .policy-pedia-rightimg {
        top: inherit;
        bottom: 5rem;
        right: 0rem;
        left: 0rem;
        margin: 0px auto;
        display: table;
    }

    .get-buttons,
    .data-buttons {
        gap: 0.5rem;
    }

    .get-buttons-policy {
        gap: 1.5rem;
    }

    .get-buttons .get-in-touch,
    .data-buttons .get-in-touch {
        width: auto;
        font-size: 14px;
        justify-content: space-between;
    }

    .get-buttons-policy .get-in-touch,
    .ai-assisted-buttons .get-in-touch {
        font-size: 12px;
    }

    .ai-assisted-buttons .get-in-touch {
        line-height: 15px;
        width: auto;
    }

    .ai-assisted-buttons .get-in-touch img {
        padding-left: 10px;
    }

    .data-buttons .get-in-touch:not(:last-child) {
        margin-right: 0rem;
    }

    .policy-pedia-child2::before {
        display: none;
    }

    .get-buttons-policy {
        padding-left: 0rem;
        padding-top: 2rem;
        height: 8rem;
    }

    .policy-pedia-child2::after {
        bottom: -40rem;
        height: 500px;
    }

    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }

    .ai-image,
    .ai-image img {
        height: auto;
    }

    .ai-inner-parent {
        display: flex;
        flex-direction: column;
        padding: 0.8rem;
    }

    .ai-inner-child1,
    .ai-inner-child2 {
        width: 100%;
    }

    .ai-assisted-content {
        padding: 2.5rem 1rem 5rem 1rem;
        width: 100%;
        margin-bottom: 5rem;
    }

    .ai-assisted-text {
        text-align: center;
    }

    .ai-assisted-text p {
        color: var(--active-menu);
    }

    .ai-hours {
        position: absolute;
        top: inherit;
        bottom: -2.5rem;
        right: 0.8rem;
        left: 0.8rem;
        display: flex;
    }

    .ai-hours-child1 {
        width: auto;
        padding: 0.5rem;
    }

    .ai-hours .ai-hours-child1:not(:last-child) {
        margin-bottom: 0rem;
        margin-right: 0.7rem;
    }

    .ai-hours-child1 h3 {
        font-size: 20px;
        padding-bottom: 0.4rem;
    }

    .ai-hours-child1 p {
        font-size: 12px;
    }

    .data-buttons .get-in-touch img {
        margin-left: 0rem;
    }

    .ai-right-content {
        height: 100px;
        margin-bottom: 1rem;
    }

    .ai-right-content-image {
        padding: 0rem 2rem 0rem 1rem;
    }

    .ai-overall-parent::after {
        bottom: -5.2rem;
        height: 50px;
    }

    .ai-assisted::before {
        height: 570px;
        bottom: 2rem;
    }

    .assisted-bg-mobile-tree {
        display: block;
        position: absolute;
        top: 23rem;
        left: 0rem;
        right: 0rem;
        margin: 0px auto;
    }

    .ai-overall-parent {
        margin-bottom: 3rem;
        margin-top: 1rem;
    }

    .building-tech {
        padding-top: 3rem;
    }

    .building-tech-content p {
        font-size: 20px;
    }

    .risk-box1 {
        width: 100%;
        height: auto;
    }

    .risk-box1-left {
        padding: 1.5rem 0.5rem 1rem 1.5rem;
    }

    .risk-overall-parent {
        gap: 1rem;
    }

    .risk-box1-right-inner {
        height: 100%;
    }

    .risk-box1-right-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .risk-overall-parent::after {
        display: none;
    }

    .risk-overall-parent::before {
        height: 60px;
        bottom: -4rem;
    }

    .about-content p:nth-child(2) {
        font-size: 20px;
    }

    .about-content p:last-child {
        color: var(--active-menu);
    }

    .builtin-parent {
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .builtin-child1 {
        position: inherit;
        width: 50%;
        margin-bottom: 1.5rem;
    }

    .builtin-image {
        width: 70px;
        height: 70px;
        border: 7px solid rgba(148, 194, 187, 0.45);
        padding: 1rem;
    }

    .builtin-image img {
        width: auto;
    }

    .builtin-child1 p {
        padding: 0rem 0rem;
    }

    .about-image {
        bottom: 22rem;
    }

    .about-overall-parent {
        margin-bottom: 0rem;
    }

    .years-parent {
        padding: 2rem 1.5rem 0rem 1.5rem;
        height: 195px;
    }

    .years-content p {
        font-size: 25px;
    }

    .years-parent p:nth-child(3) {
        padding-top: 01rem;
    }

    .ready-content {
        height: auto;
        text-align: center;
        padding: 3rem 1.5rem 3rem 1.5rem;
    }

    .ready-buttons {
        flex-direction: column;
    }

    .ready-buttons .get-in-touch:not(:last-child) {
        margin-right: 0rem;
        margin-bottom: 1rem;
    }

    .footer-logo {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .contact-links-parent {
        justify-content: center;
    }

    .contact-links {
        text-align: center;
    }

    .bot-footer:before {
        width: 100%;
        height: 650px;
        border-radius: 0px;
        bottom: 0rem;
    }

    .footer-bottom {
        padding: 1.2rem 0rem 1.2rem;
    }

    #backToTop {
        bottom: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .nav-parent .navbar .navbar-brand img {
        width: 100px;
    }

    .ai-image picture img {
        width: 100%;
    }

    .our-overall-parent::before {
        height: 55px;
    }

    .circuit-lr {
        display: none;
    }

    .data-text-parent .data-text {
        text-align: center;
    }
}

@media (min-width: 375px) and (max-width: 400px) {
    .ai-overall-parent {
        margin-bottom: 9rem;
    }

    .ai-overall-parent::after {
        bottom: -7.2rem;
    }

    .ai-right-content-image p {
        padding-right: 1.5rem;
    }

    .mission-content {
        padding: 0rem 1rem;
    }

    .ai-right-content {
        height: 120px;
        margin-bottom: 1.2rem;
    }

    .ai-overall-parent::after {
        bottom: -5rem;
    }

    .ai-overall-parent {
        margin-bottom: 3rem;
    }

    .policy-pedia-leftimg {
        top: 6rem;
    }

    .policy-pedia-rightimg {
        bottom: 6rem;
    }

    .policy-pedia-child2::after {
        bottom: -40.5rem;
    }

    .assisted-bg-mobile-tree {
        top: 21rem;
    }
}

@media (min-width: 390px) and (max-width: 400px) {
    .policy-pedia-child2::after {
        bottom: -42rem;
    }

    .ai-right-content {
        height: 130px;
    }

    .ai-overall-parent::after {
        bottom: -5.7rem;
    }

    .ai-overall-parent {
        margin-bottom: 4rem;
    }

    .builtin-parent {
        margin-top: 4rem;
    }

    .about-image {
        bottom: 21rem;
    }
}

@media (min-width: 400px) and (max-width: 425px) {
    .custom-toggler.active .toggler-line:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .finome-content-bg1 {
        left: 0.9rem;
    }

    .mission-content {
        padding: 0rem 1rem;
    }

    .small-circle2 {
        left: 6rem;
    }

    .small-circle1 {
        bottom: 2.5rem;
    }

    .small-circle3 {
        bottom: 3rem;
    }

    .small-circle7 {
        right: 6rem;
    }

    .small-circle5 {
        right: 7rem;
    }

    .small-circle6 {
        right: 3.5rem;
    }

    .policy-pedia-child2::after {
        bottom: -43.5rem;
    }

    .assisted-bg-mobile-tree {
        top: 18rem;
    }

    .ai-right-content {
        height: 150px;
        margin-bottom: 2rem;
    }

    .ai-right-content-inner {
        height: 100%;
    }

    .ai-right-content-inner img {
        height: 100%;
        object-fit: cover;
    }

    .ai-right-content-image p {
        padding-right: 4rem;
    }

    .ai-overall-parent::after {
        bottom: -2.6rem;
    }

    .about-image {
        bottom: 21rem;
    }

    .policy-pedia-leftimg {
        top: 7rem;
    }

    .policy-pedia-rightimg {
        bottom: 7rem;
    }
}

@media (min-width: 412px) and (max-width: 425px) {
    .ai-overall-parent::after {
        bottom: -2.2rem;
    }
}

@media (min-width: 414px) and (max-width: 425px) {
    .ai-overall-parent::after {
        bottom: -2.6rem;
    }
}

@media (min-width: 430px) and (max-width: 450px) {
    .finome-content-bg1 {
        left: 1.7rem;
    }

    .mission-content {
        padding: 0rem 1.5rem;
    }

    .small-circle2 {
        left: 6rem;
    }

    .small-circle1 {
        bottom: 2.5rem;
        left: 2rem;
    }

    .small-circle3 {
        bottom: 3rem;
    }

    .small-circle7 {
        right: 6rem;
    }

    .small-circle5 {
        right: 7rem;
        bottom: 3rem;
    }

    .small-circle6 {
        right: 3.5rem;
    }

    .policy-pedia-leftimg {
        top: 7rem;
    }

    .policy-pedia-rightimg {
        bottom: 7rem;
    }

    .policy-pedia-child2::after {
        bottom: -44rem;
    }

    .ai-right-content {
        height: 140px;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }

    .assisted-bg-mobile-tree {
        top: 19rem;
    }

    .ai-overall-parent::after {
        bottom: -6.5rem;
    }

    .ai-overall-parent {
        margin-bottom: 9rem;
    }

    .builtin-parent {
        margin-top: 3rem;
    }

    .about-image {
        bottom: 20rem;
    }

    .years-parent {
        padding: 3rem 1.5rem 0rem 1.5rem;
        height: 225px;
    }
}

@media (min-width: 750px) and (max-width: 767px) {
    .video-desktop {
        display: block;
    }

    .video-mobile {
        display: none;
    }

    .finome-content-bg1 {
        top: -0.5rem;
        left: 0rem;
        width: 100%;
        text-align: center;
    }

    .get-buttons {
        height: 5rem;
    }

    .mission-content {
        top: 4rem;
        padding: 0rem 7rem;
    }

    .our-content-bg1 img {
        width: 497px;
        height: 500px;
        object-fit: contain;
    }

    .half-globe {
        bottom: 7rem;
        left: 0rem;
        right: 0rem;
        margin: 0px auto;
        display: table;
    }

    .small-circle2 {
        left: 15rem;
        bottom: 10rem;
    }

    .small-circle3 {
        left: 17rem;
        bottom: 3rem;
    }

    .small-circle1 {
        left: 10.5rem;
        bottom: 3.5rem;
    }

    .small-circle7 {
        right: 14rem;
        bottom: 11rem;
    }

    .small-circle5 {
        right: 16rem;
        bottom: 3.5rem;
    }

    .small-circle6 {
        right: 10.5rem;
        bottom: 4rem;
    }

    .policy-pedia-leftimg {
        top: 16rem;
    }

    .policy-pedia-rightimg {
        bottom: 16rem;
    }

    .ai-hours {
        right: 4.8rem;
        left: 4.8rem;
    }

    .policy-pedia-child2::after {
        bottom: -35rem;
    }

    .ai-overall-parent::after {
        bottom: -5.2rem;
    }

    .risk-box1 {
        width: 48%;
    }

    .about-image {
        bottom: 16rem;
    }

    .years-parent {
        padding: 3rem 1.5rem 0rem 1.5rem;
        height: 225px;
    }
}

/* Scroll Animation Styles */
.scroll-animate-box {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translate3d(0, 0, 0);
}

/* Directions */
.scroll-animate-up {
    transform: translateY(60px);
}

.scroll-animate-left {
    transform: translateX(-60px);
}

.scroll-animate-right {
    transform: translateX(60px);
}

.scroll-animate-box.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* .data-buttons {
    justify-content: center;
} */

@media only screen and (max-width: 767px) {
    .data_getcta {
        width: auto !important;
        gap: 10px;
    }
}
