:root {}

* {
    padding: 0;
    margin: 0;
}

.d-none {
    display: none !important;
}

.text-blue {
    color: #3772ff !important;
}

.text-blue1 {
    color: #7082c5 !important;
}

.text-blue2 {
    color: #2e96ab !important;
}

.text-blue3 {
    color: #4e68ac !important;
}

.text-orange {
    color: #ee8f38 !important;
}

.text-green {
    color: #33b971 !important;
}

.text-green1 {
    color: #52ad32 !important;
}

.text-green2 {
    color: #3d9f85 !important;
}

.text-green3 {
    color: #32ad63 !important;
}

.text-green4 {
    color: #808f6d !important;
}

.text-white {
    color: #fff !important;
}

.text-black {
    color: rgba(0, 0, 0, .85) !important;
}

.text-red {
    color: #ff2c2c !important;
}

.text-grey1 {
    color: #955858 !important;
}

.text-grey2 {
    color: #ab7a7a !important;
}

.b-600 {
    font-weight: 600 !important;
}

.b-700 {
    font-weight: 700 !important;
}

.text-center {
    text-align: center;
}

.title-h1 {
    font-size: 64px;
    line-height: 1;
}

.title-h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2 !important;
    color: #383838;
}

.title-h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4 !important;
    color: rgba(0, 0, 0, .85);
}

.title-h5 {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

.title-h6 {
    font-size: 16px !important;
    line-height: 1.3 !important;
}


/* Highlight */
.highlight-container{
    background: #131f2f;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.highlight-heading{
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    line-height: 36px;
}

.highlight-sub-container{
    position: relative;
}

.highlight-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 115%;
    margin-top: 50px;
}

.highlight-body{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.highlight-img{
    width: 100%;
    height: 100%;
    max-height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.highlight-animation-01{
    animation: move1 10s infinite linear alternate;
}

.highlight-animation-02{
    animation: move2 10s infinite linear alternate;
    transform: translate(-10%);
}

.highlight-animation-03{
    animation: move1 10s infinite linear alternate;
}

@keyframes move1{
    100% {
        transform: translate(-10%);
    }
}

@keyframes move2{
    100% {
        transform: translate(0%);
    }
}

.gradient-title-h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -.04em;
    background: linear-gradient(91.57deg, #3772ff 1.16%, #3bcb75 99.68%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.text-blue-gradient {
    background: linear-gradient(89.87deg, #2579e7 8.89%, #32ad63 94.48%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.blue-gradient1 {
    background: linear-gradient(90.05deg, #2579e7 4.2%, #32ad63 107.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

section .container1 {
    max-width: 1320px;
    margin: 0 auto;
}

.btn-blue-2 {
    padding: 1rem 4rem;
    background: #2579e7;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fcfcfd;
    text-decoration: none;
    transition: all .3s ease-out;
}

.btn-blue-2:hover {
    background-color: #274db2 !important;
    color: #fff !important;
}

.btn-blue-3 {
    background: #3772ff;
    border-radius: 58px;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    width: fit-content;
    line-height: 1;
    padding: 1.1rem 2rem;
}

.submit-btn1 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    color: rgba(0, 0, 0, .72);
    padding: 1rem 2rem;
    border-radius: 52px;
    border: 1px solid rgba(4, 4, 4, .33) !important;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.submit-btn1:hover {
    color: #fff;
}

.btn-14 {
    border: none;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.btn-14:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px;
    background: linear-gradient(178deg, #41a392 4.33%, #3a9477 89.1%);
    transition: all .3s ease;
}

.btn-14:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.btn-14:active {
    top: 2px;
}

.banner-2col-section {
    height: calc(100vh - 70px);
}

.banner-2col-section .banner-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    margin-bottom: 3rem;
    padding-top: 3%;
    padding-left: 5%;
    padding-right: 5%;
}

.banner-2col-section .col-left {}

.banner-2col-section .col-right {
    text-align: center;
}

.banner-2col-section .col-right .home-dashboard {
    width: 100% !important;
}

.banner-2col-section .title-h1 {
    font-weight: 700;
    font-size: 112px;
    line-height: 1.21;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0;
}

.banner-2col-section .btn-blue-2 {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    display: flex;
    width: fit-content;
    margin-bottom: 5rem;
    flex-direction: column;
}

.banner-2col-section .title-h1 .h1-grad {
    font-size: 70px;
    line-height: 1.21;
    background: linear-gradient(90.05deg, #2579e7 4.2%, #32ad63 107.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: table-caption;
}

.banner-2col-section .desc {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 3rem;
}

.banner-2col-section .bottom-full-width {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.banner-2col-section .bottom-full-width .bulding-element {
    width: 100% !important;
}

.banner-2col-section .bottom-full-width .building-1 {
    width: 20vw !important;
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-2col-section .bottom-full-width .building-2 {
    position: inherit;
    right: 0;
    bottom: 0;
    display: flex;
}

.banner-2col-section .bottom-full-width .building-01 {
    position: inherit;
    left: 0;
    bottom: 0;
    display: flex;
}

.banner-2col-section .bottom-full-width .building-01 .icon-invoice {
    position: inherit;
    left: 5%;
    top: 10%;
    animation: bounce2 2s linear infinite;
    animation-direction: alternate;
}

.banner-2col-section .bottom-full-width .building-02 {
    position: inherit;
    right: 0;
    bottom: 0;
    display: flex;
}

.banner-2col-section .bottom-full-width .building-02 .icon-flash {
    position: inherit;
    right: 39%;
    top: 20%;
    animation: bounce1 2s linear infinite;
    animation-direction: alternate;
}

@keyframes bounce1 {
    0% {
        top: 15%;
    }

    100% {
        top: 20%;
    }
}

@keyframes bounce2 {
    0% {
        top: 5%;
    }

    100% {
        top: 10%;
    }
}

.banner-2col-section .bottom-full-width .moving-box {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.banner-2col-section .row-number-count {}

.banner-2col-section .row-number-count .items {
    display: flex;
    gap: 6rem;
    justify-content: center;
}

.banner-2col-section .row-number-count .items .item {
    height: 56px !important;
    width: auto;
}

.banner-2col-section .flight {
    position: absolute;
    width: 21vw;
    z-index: 99;
    top: 30%;
    left: 60%;
    transform: translate(50%, 50%) rotate(0deg);
    animation: left-right 8s ease-in-out;
}

.banner-2col-section .flight .flight-img {
    width: 100% !important;
}

.banner-2col-section .flight .booked {
    position: inherit;
    width: 37% !important;
    right: 8%;
    animation: scale 10s;
    top: -15%;
}

@keyframes left-right {
    0% {
        top: -10%;
        left: -40%;
        transform: translate(50%, 50%) rotate(10deg);
    }

    80% {
        top: 30%;
        left: 60%;
        transform: translate(50%, 50%) rotate(0deg);
    }
}

@keyframes scale {
    0% {
        transform: scale(0);
    }

    65% {
        transform: scale(0);
    }

    70% {
        transform: scale(1);
    }
}

.index-banner-section {
    position: relative;
}

.index-banner-section .title-h1 {
    margin-bottom: 1.5rem;
    margin-top: 5rem;
}

.index-banner-section .items {
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
    gap: 1rem;
}

.index-banner-section .items .item {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.index-banner-section .items .border {
    width: 1px;
    height: 27px;
    background-color: #000;
}

.index-banner-section .title-h5 {
    margin-bottom: 2.5rem;
}

.index-banner-section .title-h6 {
    margin-bottom: 0rem !important;
}

.index-banner-section .demo-button {
    padding-bottom: 2.5rem;
}

.index-banner-section .left-building {
    position: absolute;
    bottom: 0;
    width: 22vw !important;
}

.index-banner-section .right-building {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22vw !important;
}

.php-client-section {
    text-align: center;
    padding: 7rem 0px 7rem 0rem;
}

.php-client-section .title-row {}

.php-client-section .title-h2 {
    margin-bottom: 1rem;
}

.ticker {
    display: flex;
}

.ticker_items {
    display: flex;
    margin-top: 20px;
    animation: ticker 20s infinite linear;
    gap: 1rem;
}

.ticker:hover .ticker_items {
    animation-play-state: paused;
}

.ticker_item {
    width: 170px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker_item:nth-last-child(1) {
    margin-right: .5rem;
}

.ticker_item img {
    width: 80%;
    height: auto;
}

@-moz-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@-o-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

.scale-travel-section {
    padding-bottom: 5rem;
}

.scale-travel-section .container1 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.scale-travel-section .btn-group {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 16rem;
    gap: 1rem;
}

.scale-travel-section .btn-group .btn-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: #2579e7;
    border-radius: 58px;
    padding: 1.1rem 1rem;
    text-decoration: none;
    transition: all .3s ease-out;
}

.scale-travel-section .btn-group .btn-link:hover {
    background-color: #274db2 !important;
    color: #fff !important;
}

.scale-travel-section .title-h2 {
    margin-bottom: 2rem;
}

.scale-travel-section .left .p-last {
    margin-bottom: 3rem !important;
}

.tab-section {
    margin-bottom: 7rem;
}

.tab-section .tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-section .tab button {
    background-color: inherit;
    border: none;
    border: 1px solid #adadad;
    outline: none;
    cursor: pointer;
    transition: .3s;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    padding: 12px 38px;
    background: #fff;
    border-radius: .5rem !important;
}

.tab-section .tab button:hover {
    background-color: rgba(0, 0, 0, .03);
}

.tab-section .tab button.active {
    background: #6b539d;
    border: 1px solid #6a539d;
    color: #fff;
}

.tab-section .tabcontent_01 {
    display: none;
    padding: 2rem 3rem;
    border-top: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    background: linear-gradient(246.27deg, #e7f0fc -1.58%, #f3f1f7 103%);
    border-radius: 16px;
    position: relative;
}

.tab-section .topright {
    cursor: pointer;
    font-size: 28px;
    position: absolute;
    right: -13px;
    top: -16px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, .15);
    border-radius: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-section .topright:hover {
    color: red;
}

.tab-section .tabcontent_btn1 .item {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.tab-section .tabcontent_btn1 .item .col1:first-child {
    padding: 5rem 0rem;
}

.tab-section .tabcontent_btn1 .item .col1:last-child {}

.tab-section .tabcontent_btn1 .fa-img {
    width: 100% !important;
    border-radius: 1rem;
}

.tab-section .title-h5 {
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    color: #000;
    margin-bottom: 2rem;
}

.tab-section .link {
    background: #fff;
    border: 1px solid #000;
    border-radius: 58px;
    padding: .8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    color: #000;
    display: flex;
    justify-content: center;
    width: max-content;
}

.tab-section .card-bg2 {
    background: #fff8f2 !important;
}

.tab-section .card-bg3 {
    background: #f0f2fd !important;
}

.tab-section .card-bg4 {
    background: #ebfffa !important;
}

.tab-section .card-bg5 {
    background: #eaeffc !important;
}

.tab-section .tab .tablinks_01:nth-child(1).active {
    background: #6b539d;
    border: 1px solid #6a539d;
}

.tab-section .tab .tablinks_01:nth-child(2).active {
    background: #ab703b;
    border: 1px solid #ab703b;
}

.tab-section .tab .tablinks_01:nth-child(3).active {
    background: #536197;
    border: 1px solid #536197;
}

.tab-section .tab .tablinks_01:nth-child(4).active {
    background: #31856e;
    border: 1px solid #31856e;
}

.tab-section .tab .tablinks_01:nth-child(5).active {
    background: #4e68ac;
    border: 1px solid #4e68ac;
}

.tab-section .tabcontent_02 {
    display: none;
    padding: 2rem 3rem;
    border-top: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    background: linear-gradient(246.27deg, #e7f0fc -1.58%, #f3f1f7 103%);
    border-radius: 16px;
    position: relative;
}

.tab-section-2 .tab .tablinks_01:nth-child(1).active {
    background: #978853;
    border: 1px solid #978853;
}

.tab-section-2 .tab .tablinks_01:nth-child(2).active {
    background: #3e699f;
    border: 1px solid #3e699f;
}

.tab-section-2 .tab .tablinks_01:nth-child(3).active {
    background: #bc8083;
    border: 1px solid #bc8083;
}

.tab-section-2 .tab .tablinks_01:nth-child(4).active {
    background: #576362;
    border: 1px solid #576362;
}

.corporate-payments-section {}

.corporate-payments-section .title-h2 {
    margin-bottom: 3rem;
}

.epic-card-section {
    margin-bottom: 2rem;
}

.epic-card-section .row1 {
    background: #e0e7f1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 1rem;
    padding: 0rem 3rem;
    align-items: center;
    gap: 3rem;
}

.epic-card-section .container1 .card-img {
    width: 100% !important;
}

.epic-card-section p {}

.epic-card-section .title-h2 {
    margin-bottom: 2rem;
}

.epic-card-section .p-last {
    padding-bottom: 3rem !important;
}

.prepaid-card-section {}

.prepaid-card-section .row1 {
    background: #f1ede0;
    padding: 4rem 3rem;
}

.prepaid-card-section .left {}

.prepaid-card-section .right {}

.testi-section2 {
    padding-bottom: 5rem;
}

.testi-section2 .testi-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    background: #e8eaef;
    border-radius: 24px;
    padding: 3rem 10%;
}

.testi-section2 .bittu-img {
    width: 100%;
}

.testi-section2 p {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #000;
}

.testi-section2 .name {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 3rem;
}

.integrations-section {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.integrations-section .container1 {
    max-width: 1320px;
    margin: 0 auto;
}

.integrations-section .arc-bg {
    position: absolute;
    z-index: -9;
    top: -5%;
    width: 100% !important;
    left: 0;
}

.integrations-section .integrations-container {
    text-align: center;
}

.integrations-section .round-logos {
    width: 70% !important;
    margin-top: 2%;
    margin: 0 auto;
}

.integrations-section .desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    color: rgba(0, 0, 0, .65);
    margin-top: 1rem;
}

.integrations-section .integrations-row {
    margin-bottom: 3rem;
}

.globally-compliant-section {
    padding-bottom: 7rem;
}

.globally-compliant-section .items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.globally-compliant-section .item-img {
    height: 5rem !important;
}

.globally-compliant-section .title-h2 {
    margin-bottom: 3rem;
}

.why-happay-section {
    background: radial-gradient(110.46% 110.46% at 55.38% -25.56%, #5576a2 0%, rgba(53, 106, 176, 0) 100%), #182a42;
    color: #fff;
    position: relative;
    padding: 7rem 0px;
    overflow: hidden;
}

.why-happay-section br {
    display: none;
}

.why-happay-section .item-col .bar {
    display: none;
}

.why-happay-section .item-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.why-happay-section .item-title {
    background: linear-gradient(180deg, #81f7b1 0%, #2579e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 500;
    font-size: 72px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.why-happay-section .item-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}

.why-happay-section .left-building {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30vw !important;
}

.why-happay-section .title-h2 {
    margin-bottom: 4rem;
}

.why-happay-section .item-title .sub {
    font-size: 2rem;
}

.why-happay-section .items:nth-child(-n + 3) {
    border-bottom: 1px solid #5d6f97;
}

.why-happay-section .items:nth-child(3n + 1) {
    border-right: 1px solid #5d6f97;
}

.why-happay-section .items:nth-child(3n) {
    border-left: 1px solid #5d6f97;
}

.why-happay-section .items:nth-child(n + 7) {
    border-top: 1px solid #5d6f97;
}

.why-happay-section .items {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resources-section {
    padding-top: 7rem;
    text-align: center;
}

.resources-section .title-h2 {
    margin-bottom: 3rem;
}

.resources-section .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0% 10%;
}

.resources-section .item {
    background: #fff;
    background: #eaecf2;
    box-shadow: 0px 15px 30px rgba(37, 121, 231, .15);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding-bottom: 3rem;
    overflow: hidden;
    justify-content: space-between;
}

.resources-section .item .item-img {
    width: 100% !important;
    height: auto !important;
}

.resources-section .item .item-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #000;
    padding: 0 2rem;
}

.resources-section .item .item-link {
    padding: .5rem 2rem;
    text-decoration: none;
    background: #3772ff;
    border-radius: 6px;
    color: #fff;
}

.transforming-section {
    height: 100vh;
    overflow: hidden;
}

.transforming-section .title-h2 {
    margin-bottom: 3rem;
}

.transforming-section .transforming-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.transforming-section .col-left {
    background-color: #232d44;
    position: relative;
}

.transforming-section .col-left .dash-e1 {
    width: 80% !important;
    position: absolute;
    right: 0;
    bottom: 0;
}

.transforming-section .col-left .building-e1 {
    width: 80% !important;
    position: absolute;
    right: 0;
    bottom: 0;
}

.transforming-section .col-left .light-waves {
    position: absolute;
    right: 0;
    bottom: 0;
    animation: celebration 5s forwards infinite;
}

@keyframes celebration {
    0% {
        bottom: 0%;
    }

    100% {
        bottom: 150%;
    }
}

.transforming-section .col-left .light-waves img:nth-child(1) {
    top: 100px;
    position: relative;
}

.transforming-section .col-left .light-waves img:nth-child(2) {
    top: 50px;
    position: relative;
}

.transforming-section .col-left .light-waves img:nth-child(3) {
    top: 100px;
    position: relative;
}

.transforming-section .col-left .light-waves img:nth-child(4) {
    top: -50px;
    position: relative;
}

.transforming-section .col-left .light-waves img:nth-child(5) {
    top: 120px;
    position: relative;
}

.transforming-section .col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10% 25% 11% 10%;
}

.logo-strip-section {
    padding: 10rem 0px 5rem;
    overflow: hidden;
}

.logo-strip-section .logo-strip-row {
    position: relative;
}

.logo-strip-section .logo-strip-row .strip1 {
    display: flex;
    animation: slide-to-left 3s infinite linear alternate;
    gap: 1%;
    margin-bottom: 1rem;
}

.logo-strip-section .logo-strip-row .strip1 img {
    width: 80% !important;
}

@keyframes slide-to-left {
    100% {
        transform: translate(-50%);
    }
}

.logo-strip-section .logo-strip-row .strip2 {
    display: flex;
    animation: slide-to-right 3s infinite linear alternate;
    transform: translate(-50%);
    position: relative;
    gap: 1%;
}

.logo-strip-section .logo-strip-row .strip2 img {
    width: 80% !important;
}

@keyframes slide-to-right {
    100% {
        transform: translate(0%);
    }
}

.logo-strip-section .happay-logo-blue {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    width: 180px !important;
    padding: 1rem;
    border-radius: 10%;
    background: #fff;
}

.investing-section {
    text-align: center;
    padding-bottom: 8rem;
}

.investing-section .title-h2 {
    margin-bottom: 3rem;
}

.investing-section .row1 {
    padding: 0% 20%;
}

.making-old-section {
    height: 100vh;
    overflow: hidden;
    background-image: url("https://cdn-jklip.nitrocdn.com/safSuIdqgDlBkQZOuiEFYetySutVuoYj/assets/images/optimized/rev-b906f8a/happay.com/wp-content/uploads/2023/04/bg-blue.svg");
    background-size: cover;
    padding-top: 5rem;
}

.making-old-section.nitro-lazy {
    background-image: none !important;
}

.making-old-section .title-h2 {
    margin-bottom: 3rem;
}

.making-old-section .container1 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.making-old-section .row1 {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: 4rem;
    padding: 1rem 5rem;
}

.making-old-section .col1 .logo-circle {
    width: 100% !important;
}

.making-old-section .dash-border {
    position: absolute;
    bottom: -12%;
    width: 100%;
}

.customers-first {
    overflow: hidden;
    padding: 7rem 0rem;
}

.customers-first .title-h2 {
    margin-bottom: 3rem;
}

.customers-first .row1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.customers-first .col2 .customers-img {
    width: 100% !important;
}

.leader-travel-section {
    background-image: url("https://cdn-jklip.nitrocdn.com/safSuIdqgDlBkQZOuiEFYetySutVuoYj/assets/images/optimized/rev-b906f8a/happay.com/wp-content/uploads/2023/04/bg-blue5.svg");
    background-size: cover;
    overflow: hidden;
    position: relative;
    padding: 7rem 0rem;
    text-align: center;
}

.leader-travel-section.nitro-lazy {
    background-image: none !important;
}

.leader-travel-section .title-h2 {
    margin-bottom: 3rem;
}

.leader-travel-section .stage-img {
    width: 70% !important;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%) !important;
}

.leader-travel-section .container1 {
    z-index: 9;
    position: inherit;
    padding-bottom: 15%;
}

.leader-travel-section .leader-in-row {
    margin-bottom: 5%;
    padding: 0% 15%;
}

.leader-travel-section .stage-icons {
    display: flex;
    gap: 70px;
    justify-content: center;
}

.leader-travel-section .stage-icons img {
    width: 73px !important;
}

.leader-travel-section .stage-icons img:nth-child(1),
.leader-travel-section .stage-icons img:nth-child(4) {
    position: relative;
    top: 40px;
}

.award-section {
    overflow: hidden;
    padding: 7rem 0%;
    background: #131f2f;
    color: #fff;
    position: relative;
}

.award-section .title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.award-section .award-container-fluid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 115%;
    padding-bottom: 7%;
}

.award-section .award-trip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.award-section .item {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    width: -webkit-fill-available;
    padding: 1rem 2rem;
    border-radius: 1rem;
    gap: .5rem;
}

.award-section .item .item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
}

.award-section .item .item-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255, 255, 255, .75);
}

.award-trip1 .item:nth-child(1) {
    background-image: url("https://cdn-jklip.nitrocdn.com/safSuIdqgDlBkQZOuiEFYetySutVuoYj/assets/images/optimized/rev-b906f8a/happay.com/wp-content/uploads/2023/04/card-bg1.webp");
}

.award-trip1 .item:nth-child(1).nitro-lazy {
    background-image: none !important;
}

.award-trip1 .item:nth-child(2) {
    background: radial-gradient(96.64% 457.93% at 96.64% 4.27%, rgba(171, 173, 50, .2) 0%, rgba(50, 173, 99, .2) 100%), #1b2c42;
}

.award-trip1 .item:nth-child(3) {
    background: radial-gradient(88.41% 228.97% at 98.32% 11.59%, rgba(233, 95, 0, .33) 0%, rgba(50, 81, 162, .33) 100%), #1b2c42;
}

.award-trip1 .item:nth-child(4) {
    background: radial-gradient(96.64% 457.93% at 96.64% 4.27%, rgba(171, 173, 50, .2) 0%, rgba(50, 173, 99, .2) 100%), #1b2c42;
}

.award-trip2 .item:nth-child(1) {
    background: radial-gradient(100% 100% at 50.16% 0%, rgba(56, 107, 238, .57) 0%, rgba(44, 13, 112, .57) 100%), #1b2c42;
}

.award-trip2 .item:nth-child(2) {
    background: radial-gradient(109.45% 222.9% at 97.2% -9.45%, rgba(145, 50, 162, .57) 0%, rgba(255, 73, 44, .1482) 100%), #1b2c42;
}

.award-trip2 .item:nth-child(3) {
    background: radial-gradient(110.06% 420.77% at 92.02% -14.02%, rgba(238, 143, 56, .57) 0%, rgba(64, 19, 99, .57) 100%), #1b2c42;
}

.award-trip2 .item:nth-child(4) {
    background: radial-gradient(109.45% 222.9% at 97.2% -9.45%, rgba(145, 50, 162, .57) 0%, rgba(255, 73, 44, .1482) 100%), #1b2c42;
}

.award-trip3 .item:nth-child(1) {
    background: radial-gradient(100% 185.83% at 89.22% 0%, rgba(192, 171, 58, .31) 0%, rgba(35, 32, 150, .0868) 100%), #1b2c42;
}

.award-trip3 .item:nth-child(2) {
    background: #1b2c42;
}

.award-trip3 .item:nth-child(3) {
    background: radial-gradient(100% 185.83% at 89.22% 0%, rgba(192, 171, 58, .31) 0%, rgba(35, 32, 150, .0868) 100%), #1b2c42;
}

.award-trip3 .item:nth-child(4) {
    background: radial-gradient(100% 185.83% at 89.22% 0%, rgba(192, 171, 58, .31) 0%, rgba(35, 32, 150, .0868) 100%), #1b2c42;
}

.award-section .award-trip1 {
    animation: move1 10s infinite linear alternate;
}

.award-section .award-trip2 {
    animation: move2 10s infinite linear alternate;
    transform: translate(-10%);
}

.award-section .award-trip3 {
    animation: move1 10s infinite linear alternate;
}

@keyframes move1 {
    100% {
        transform: translate(-10%);
    }
}

@keyframes move2 {
    100% {
        transform: translate(0%);
    }
}

@keyframes move3 {
    100% {
        transform: translate(-10%);
    }
}

.award-section .stage-img {
    width: 90% !important;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%);
}

.confetti {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
    top: 0;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 30px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}

.confetti-piece:nth-child(1) {
    left: 7%;
    -webkit-transform: rotate(-40deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 182ms;
    -webkit-animation-duration: 1116ms;
}

.confetti-piece:nth-child(2) {
    left: 14%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 161ms;
    -webkit-animation-duration: 1076ms;
}

.confetti-piece:nth-child(3) {
    left: 21%;
    -webkit-transform: rotate(-51deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 481ms;
    -webkit-animation-duration: 1103ms;
}

.confetti-piece:nth-child(4) {
    left: 28%;
    -webkit-transform: rotate(61deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 334ms;
    -webkit-animation-duration: 708ms;
}

.confetti-piece:nth-child(5) {
    left: 35%;
    -webkit-transform: rotate(-52deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 302ms;
    -webkit-animation-duration: 776ms;
}

.confetti-piece:nth-child(6) {
    left: 42%;
    -webkit-transform: rotate(38deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 180ms;
    -webkit-animation-duration: 1168ms;
}

.confetti-piece:nth-child(7) {
    left: 49%;
    -webkit-transform: rotate(11deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 395ms;
    -webkit-animation-duration: 1200ms;
}

.confetti-piece:nth-child(8) {
    left: 56%;
    -webkit-transform: rotate(49deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 14ms;
    -webkit-animation-duration: 887ms;
}

.confetti-piece:nth-child(9) {
    left: 63%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 149ms;
    -webkit-animation-duration: 805ms;
}

.confetti-piece:nth-child(10) {
    left: 70%;
    -webkit-transform: rotate(10deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 351ms;
    -webkit-animation-duration: 1059ms;
}

.confetti-piece:nth-child(11) {
    left: 77%;
    -webkit-transform: rotate(4deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 307ms;
    -webkit-animation-duration: 1132ms;
}

.confetti-piece:nth-child(12) {
    left: 84%;
    -webkit-transform: rotate(42deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 464ms;
    -webkit-animation-duration: 776ms;
}

.confetti-piece:nth-child(13) {
    left: 91%;
    -webkit-transform: rotate(-72deg);
    -webkit-animation: makeItRain 1000ms infinite ease-out;
    -webkit-animation-delay: 429ms;
    -webkit-animation-duration: 818ms;
}

.confetti-piece:nth-child(odd) {
    background: #7431e8;
}

.confetti-piece:nth-child(even) {
    z-index: 1;
}

.confetti-piece:nth-child(4n) {
    width: 5px;
    height: 12px;
    -webkit-animation-duration: 2000ms;
}

.confetti-piece:nth-child(3n) {
    width: 3px;
    height: 10px;
    -webkit-animation-duration: 2500ms;
    -webkit-animation-delay: 1000ms;
}

.confetti-piece:nth-child(4n-7) {
    background: red;
}

@-webkit-keyframes makeItRain {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(350px);
    }
}

.testimonial-section {}

.testimonial-section .gradient-title-h2 {
    background: linear-gradient(90deg, #ee8f38 -3.14%, #db4055 100%);
    -webkit-background-clip: text;
}

.footer-section1 {
    height: calc(100vh - 0px);
    background: radial-gradient(100.24% 100.24% at 50.25% 9.14%, rgba(50, 173, 99, .68) 0%, rgba(208, 221, 192, 0) 100%), #3f608b;
}

.footer-section1 .container1 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section1 .title-h2 {
    color: #fff !important;
}

.footer-section1 .myform .input-grp {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

.footer-section1 .myform .input-grp input {
    width: 100%;
}

.footer-section1 .form-control-email {
    border-radius: 8px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: rgba(0, 0, 0, .65);
    padding: .8rem;
    width: 30%;
    height: 48px;
    display: none;
}

.footer-section1 .btn-blue {
    padding: 16px 24px;
    background: #2579e7;
    border-radius: 8px !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 15rem;
}

.footer-section1 .right-element1 {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: run1 linear infinite;
    animation-duration: 30s;
}

.footer-section1 .right-element2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
}

.footer-section1 .left-building {
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-section1 .left-half-circle {
    position: absolute;
    bottom: 0;
    left: 10%;
    animation: run2 linear infinite;
    animation-duration: 30s;
}

@keyframes run1 {
    0% {
        right: 0;
    }

    50% {
        right: 50%;
    }

    100% {
        right: 0;
    }
}

@keyframes run2 {
    0% {
        left: 0;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 0;
    }
}

@media only screen and (min-width: 3000px) {}

@media only screen and (min-width: 2000px) {
    .banner-2col-section .banner-row {
        padding-top: 16%;
    }
}

@media only screen and (max-width: 1750px) {
    .banner-2col-section .banner-row {
        padding-top: 4%;
    }
}

@media only screen and (max-width: 1512px) {
    .banner-2col-section .banner-row {
        padding-top: 5%;
    }
}

@media only screen and (max-width: 1470px) {
    section .container1 {
        padding: 0 3vw;
    }

    .banner-2col-section .banner-row {
        padding-top: 4%;
    }
}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1360px) {
    section .container1 {
        padding-left: 7%;
        padding-right: 7%;
    }

    .why-happay-section .item-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1285px) {
    .banner-html-section .dashboard-col {
        margin-top: 0%;
    }

    .banner-html-section .banner-title {
        margin-top: 4%;
    }
}

@media only screen and (min-width: 1060px) and (max-width: 1269px) {
    #header-outer[data-lhe="animated_underline"] #top nav>ul>li>a {}

    .header-schedule-demo a:first-child {
        display: none !important;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1059px) {
    #header-outer[data-lhe="animated_underline"] #top nav>ul>li>a {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .header-schedule-demo a:first-child {
        display: none !important;
    }
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1150px) {}

@media only screen and (max-width: 1100px) {}

@media only screen and (max-width: 1050px) {}

@media only screen and (max-width: 999px) {
    .container1 {
        margin: 0 1rem !important;
    }

    .banner-2col-section .banner-row {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .banner-2col-section .title-h1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .banner-2col-section .btn-blue-2 {
        width: 100%;
    }

    .banner-2col-section {
        height: auto;
    }

    .banner-2col-section .bottom-full-width .building-01 {
        width: 25vw !important;
    }

    .banner-2col-section .bottom-full-width .building-02 {
        width: 25vw !important;
    }

    .banner-2col-section .flight {
        display: none;
    }

    .banner-2col-section .bottom-full-width {
        display: none;
    }

    .index-banner-section .left-building {}

    .index-banner-section .right-building {}

    .scale-travel-section .container1 {
        display: flex;
        text-align: center;
    }

    .scale-travel-section .container1 .right {
        display: none;
    }

    .scale-travel-section .btn-group {
        width: 100%;
    }

    .tab-section .tab {
        display: none;
    }

    .tab-section .tabcontent_01 {
        display: block !important;
    }

    .tab-section .topright {
        display: none !important;
    }

    .tab-section .tabcontent_01 .item {
        display: flex;
        flex-direction: column-reverse;
        gap: 0rem;
    }

    .tab-section .tabcontent_01 .item .col1:first-child {
        padding: 2rem 0rem;
    }

    .tab-section .container1 {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }

    .tab-section .tabcontent_02 {
        display: block !important;
    }

    .tab-section .tabcontent_02 .item {
        display: flex;
        flex-direction: column-reverse;
        gap: 0rem;
    }

    .tab-section .tabcontent_02 .item .col1:first-child {
        padding: 2rem 0rem;
    }

    .epic-card-section .row1 {
        display: flex;
        flex-direction: column-reverse;
        padding: 2rem;
    }

    .testi-section2 .testi-row {
        gap: 1rem;
    }

    .globally-compliant-section .item-img {
        height: 3rem !important;
    }

    .globally-compliant-section .items {
        gap: 3rem;
        overflow-x: auto;
    }

    .why-happay-section .item-col {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .why-happay-section .items {
        border: 1px solid #5d6f97 !important;
    }

    .resources-section .items {
        display: flex;
        flex-direction: column;
    }

    .integrations-section .round-logos {
        width: 100% !important;
    }

    .about-banner-section .banner-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-banner-section {
        height: auto;
        padding: 20% 0%;
        text-align: center;
    }

    .about-banner-section .col-right {
        display: none;
    }

    .about-banner-section::before {
        display: none;
    }

    .about-banner-section .col-left {
        padding-right: 0;
    }

    .transforming-section .transforming-row {
        grid-template-columns: 1fr;
        height: auto;
    }

    .transforming-section .col-right {
        padding: 0% 10%;
    }

    .transforming-section .col-left {
        display: none;
    }

    .transforming-section {
        height: auto;
    }

    .making-old-section {
        height: auto;
    }

    .making-old-section .dash-border {
        display: none;
    }
}

@media only screen and (max-width: 950px) {}

@media only screen and (max-width: 900px) {}

@media only screen and (max-width: 850px) {}

@media only screen and (max-width: 750px) {
    section .container1 {
        padding-left: 0%;
        padding-right: 0%;
    }

    .index-banner-section .items {
        display: flex;
        flex-direction: column;
    }

    .index-banner-section .items .border {
        display: none;
    }

    .index-banner-section .items {
        margin-bottom: 1rem;
    }

    .index-banner-section .flight {
        display: none;
    }

    .testi-section2 .testi-row {
        display: flex;
        flex-direction: column;
    }

    .php-client-section {
        padding-bottom: 4rem;
    }
}

@media only screen and (max-width: 690px) {

    .title-h1 {
        font-size: 28px !important;
    }

    .banner-2col-section .title-h1 .h1-grad {
        font-size: 48px;
    }

    .banner-2col-section .desc {
        margin-bottom: 2rem;
    }

    .banner-2col-section .desc br {
        display: none;
    }

    .banner-2col-section .btn-blue-2 {
        margin-bottom: 2rem;
    }

    .banner-2col-section .row-number-count .items {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .banner-2col-section .row-number-count .items .item {
        height: 80px !important;
    }

    .footer-section1 .myform .input-grp {
        display: flex;
        flex-direction: column;
    }

    .footer-section1 .btn-blue {
        width: 100%;
    }

    .footer-section1 .right-element2 {
        width: 30vw !important;
    }

    .footer-section1 .left-building {
        width: 30vw !important;
    }

    .footer-section1 .left-half-circle {
        width: 10vw !important;
    }

    .footer-section1 .right-element1 {
        width: 10vw !important;
    }

    .owl-theme[data-desktop-cols] .owl-nav.disabled+.owl-dots {
        display: none;
    }

    .testimonial-section .testi-icon {
        width: 4rem !important;
    }

    .footer-section1 {
        height: auto !important;
        padding-top: 15%;
        padding-bottom: 20%;
    }

    .banner-2col-section .row-number-count .items {
        display: none;
    }

    .php-client-section {
        padding: 2rem 0px 7rem 0rem;
    }
}

@media only screen and (max-width: 600px) {
    .index-banner-section .title-h1 {
        font-size: 32px !important;
        font-weight: 700 !important;
    }

    .testi-section2 p {
        font-size: 18px;
        line-height: 1.3;
    }

    .tab-section .title-h5 {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }

    .testi-section2 .name {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .highlight-body{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 500px) {}

@media only screen and (max-width: 440px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 375px) {}