/* fonts */

@font-face {
    font-family: 'medium';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'regular';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'condensed-medium';
    src: url('../fonts/Roboto_Condensed-Medium.ttf');
}

@font-face {
    font-family: 'condensed-regular';
    src: url('../fonts/Roboto_Condensed-Regular.ttf');
}

@font-face {
    font-family: 'semi-bold';
    src: url('../fonts/Roboto-SemiBold.ttf');
}

@font-face {
    font-family: 'condensed-semi-bold';
    src: url('../fonts/Roboto_Condensed-SemiBold.ttf');
}

@font-face {
    font-family: 'bold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'condensed-bold';
    src: url('../fonts/Roboto_Condensed-Bold.ttf');
}

.font-medium {
    font-family: 'medium';
}

.font-semi-bold {
    font-family: 'semi-bold';
}

.font-condensed-medium {
    font-family: 'condensed-medium';
}

.font-condensed-semi-bold {
    font-family: 'condensed-semi-bold';
}

.font-regular {
    font-family: 'regular';
}

.font-bold {
    font-family: 'bold';
}

.font-condensed-bold {
    font-family: 'condensed-bold';
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.light-gray-color {
    color: #ABABAB;
}

.medium-gray-color {
    color: #ABABAB;
}

.gray-color {
    color: #3B3B3B;
}

.black-color {
    color: #1A1A1A;
}

.text-light {
    color: #fff;
}

.light-bg {
    background: #fff;
}

.dark-bg {
    background: #121212;
}

body {
    line-height: 1.5;
        text-transform: none!important;
}

/*nav header*/
/* Hide on desktop */
.mobile-only {
    display: none;
}

.header__area-menubar-center-menu.custom-menu ul li a {
    font-size: 18px;
     margin: 30px 40px;
    /*padding: 30px 40px;*/
        font-family: 'regular';
        position:relative;
    text-transform: uppercase;
}
    .header__area-menubar-center-menu ul li a {
        padding: 0px 0px;
    }
/*    .btn-one.secondary-outline-button {*/
/*    font-size: 20px;*/
/*    font-family: 'medium';*/
/*    border: 2px solid;*/
/*    color: chartreuse;*/
/*}*/
/*#mobilemenu li a {*/
/*  color: #222;*/
/*  position: relative;*/
/*  padding: 10px 15px;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s ease;*/
/*}*/

/* Hover effect */
#mobilemenu li a::after {
    content: '';
    position: absolute;
    /*left: 10%;*/
        left: 0%;
    bottom: -15%;
    width: 0%;
    height: 3px;
    background-color: var(--primary-color-1);
    transition: width 0.3s ease;
}

/*#mobilemenu li a:hover::after {*/
/*    width: 80%;*/
/*}*/
#mobilemenu li a.active::after {
    width: 50%;
}
/* Active menu item */
#mobilemenu li a.active {
    color: var(--primary-color-1);
    font-family: 'semi-bold';
    /*font-weight: 600;*/
}

#mobilemenu li a.active::after {
    width: 100%;
}

.btn-one.secondary-outline-button {
    --r: 40px;
    /* radius */
    --b: 1px;
    /* border width */
    font-size: 20px;
    font-family: 'medium';
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 44px;*/
    margin: 0 auto;
    position: relative;
    z-index: 0;
    text-decoration: none;
    width: 207px;
}

/* check lined question for the detail of the below code */
.btn-one.secondary-outline-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border: var(--b) solid transparent;
    border-radius: var(--r);
    background: inherit;
    background-origin: border-box;
    background-clip: border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-mask-repeat: no-repeat;
}

/**/
/*.btn-one.secondary-outline-button:hover {*/
/*    color: #fff;*/
/*    -webkit-text-fill-color: #fff;*/
/*    -webkit-background-clip: border-box;*/
/*    background-clip: border-box;*/
/*}*/

.btn-one.secondary-outline-button.custom-outline-button:hover {
    /*box-shadow: 0 0 16px 0 #68B57B;*/
    box-shadow: 0 0 16px 0 #68b57b78;
}

/*nav headern close*/
.hero-banner {
    position: relative;
    /*background-image: url(../img/testimonial/testimonial-three.png);*/
    /*background: url(../images/HeroBaelsys.mp4);*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    min-height: 80vh;
    height: 90vh;
}

.hero-banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.btn-two.primary-filled-button:focus,
.btn-two.primary-filled-button:hover {
    color: var(--text-white) !important;
}

.btn-two.primary-button:focus,
.btn-two.primary-button:hover {
    color: var(--text-white) !important;
}

.btn-three.primary-without-border-button:focus,
.btn-three.primary-without-border-button:hover {
    color: var(--primary-color-1) !important;
}

.hero-content {
    position: absolute;
    top: -5px;
    left: 1%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-banner-inner-content {
    margin: auto 0;
    /*background: #000;*/
    /*  padding: 1em;*/
    /* width: 420px;*/
    /*height: 420px;*/
    /*border-radius: 50%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body {
    /*background: linear-gradient(300deg, #ce25254a 0%,*/
            /* pale blue */
    /*        #FFFFFF 50%,*/
            /* pale pink */
    /*        #0cb1d014 100%*/
            /* white */
    /*    );*/

}
.why-choose-us__three {
    background: none;
}
.light-bg-gradient {
    /*background: linear-gradient(72deg, #e4f4fb29 16.49%, #fbfbfb 84.49%);*/
    background: linear-gradient(153deg, #F5F5F5 0%, rgba(245, 245, 245, 0.00) 49.73%, #F5F5F5 100%);
}

.light-bg-gradient-second {
    background: linear-gradient(300deg, #ce252512 0%,
            /* pale blue */
            #FFFFFF 50%,
            /* pale pink */
            #ecf7f4 100%
            /* white */
        );
}

.light-bg-gradient-third {
    background: linear-gradient(106deg, #F5F5F5 0%, #FFF 100%);
    /*background: linear-gradient(300deg, #0cb1d017 0%,*/
            /* pale blue */
    /*        #FFFFFF 50%,*/
            /* pale pink */
    /*        #ce25251a 100%*/
            /* white */
    /*    );*/
}

.ellipse-shape-1 {
width: 160.32px;
height: 418.943px;
transform: rotate(22.057deg);
  border-radius: 467.902px;
border-radius: 418.943px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
position: absolute;
left: -94px;
top: -95px;
}
.ellipse-shape-2 {
 width: 260.129px;
height: 467.902px;
transform: rotate(21.14deg);
  border-radius: 467.902px;
background: linear-gradient(108deg, rgba(12, 177, 208, 0.50) 37.08%, rgba(227, 186, 10, 0.50) 76.54%);
mix-blend-mode: darken;
filter: blur(250px);
position:absolute;
    left: -72px;
    top: -94px;
}
.ellipse-shape-custom-2 {
 width: 260.129px;
height: 467.902px;
transform: rotate(21.14deg);
  border-radius: 467.902px;
background: linear-gradient(108deg, rgba(12, 177, 208, 0.50) 37.08%, rgba(227, 186, 10, 0.50) 76.54%);
mix-blend-mode: darken;
filter: blur(250px);
position:absolute;
    right: 10%;
    bottom: 34px;
}
.ellipse-shape-6 {
width: 196.447px;
height: 378.055px;
transform: rotate(23.633deg);
 border-radius: 378.055px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
mix-blend-mode: darken;
position:absolute;
    top: 50%;
}
.ellipse-shape-custom-6 {
width: 196.447px;
height: 378.055px;
transform: rotate(23.633deg);
 border-radius: 378.055px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
mix-blend-mode: darken;
position:absolute;
    top: 20%;
}

.ellipse-shape-5 {
    width: 508.936px;
height: 467.902px;
border-radius: 508.936px;
background: linear-gradient(108deg, rgba(12, 177, 208, 0.25) 37.08%, rgba(227, 186, 10, 0.25) 76.54%);
mix-blend-mode: darken;
filter: blur(250px);
position:absolute;
    right: 10%;
    top: 15%;
}
.ellipse-shape-custom-5 {
border-radius: 471.271px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
width: 166.526px;
height: 471.271px;
transform: rotate(33.786deg);
position: absolute;
    left: 7px;
    top: 0px;
}
.ellipse-shape-7 {
 border-radius: 378.055px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
width: 195.933px;
height: 378.055px;
transform: rotate(133.349deg);
position:absolute;
    right: 11%;
    top: -11%;
}
.ellipse-shape-7 {
 border-radius: 378.055px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
width: 195.933px;
height: 378.055px;
transform: rotate(133.349deg);
position:absolute;
    right: 10%;
    bottom: 30%;
}
.ellipse-shape-3{
    border-radius: 359.285px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
width: 158.4px;
height: 359.285px;
position: absolute;
left: -129.817px;
top: -93.564px;
}
.ellipse-shape-4{
border-radius: 1742px;
background: linear-gradient(108deg, rgba(12, 177, 208, 0.25) 37.08%, rgba(227, 186, 10, 0.25) 76.54%);
filter: blur(250px);
width: 263px;
height: 1742px;
transform: rotate(-90deg);
position: absolute;
left: 10%;
    bottom: -100%;
}
.ellipse-shape-custom-4{
    width: 148.279px;
height: 353.941px;
transform: rotate(-11.19deg);
position: absolute;
    right: 15px;
    bottom: 209.186px;
border-radius: 353.941px;
background: rgba(206, 37, 37, 0.50);
filter: blur(250px);
}
.ellipse-shape-horizontal-custom-4 {
    border-radius: 1742px;
    background: linear-gradient(108deg, rgba(12, 177, 208, 0.25) 37.08%, rgba(227, 186, 10, 0.25) 76.54%);
    filter: blur(200px);
    position: absolute;
    left: 71px;
    top: -43%;
    width: 212px;
    height: 1742px;
    transform: rotate(83deg);
}
.ellipse-shape-horizontal-top-custom-4 {
    border-radius: 1438px;
    background: linear-gradient(108deg, rgba(12, 177, 208, 0.25) 37.08%, rgba(227, 186, 10, 0.25) 76.54%);
    filter: blur(200px);
    position: absolute;
    right: 60%;
    top: -59%;
    width: 127px;
    height: 1438px;
    transform: rotate(-90deg);
}
.z-index-2{
    z-index:2;
}
.z-index-1{
    z-index:1;
}

/* Video section */
.services__three {
  padding: 0;
  margin: 0;
}

/*.statergy-video {*/
/*  position: relative;*/
/*  width: 80vw;*/
/*  height: 100vh;*/
/*  overflow: hidden;*/
/*  background: #000;*/
/*}*/

/* ✅ Base black layer */
/*.video-bg-shapes {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: #000;*/
/*  z-index: 1;*/
/*}*/

/* ✅ Add visible angled shapes */
/*.video-bg-shapes::before,*/
/*.video-bg-shapes::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  width: 15vw;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.95);*/
/*  z-index: 2;*/
/*}*/

/*.video-bg-shapes::before {*/
/*  left: 0;*/
/*  clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);*/
/*}*/

/*.video-bg-shapes::after {*/
/*  right: 0;*/
/*  clip-path: polygon(100% 0, 0 15%, 0 85%, 100% 100%);*/
/*}*/

/* 🎥 Transparent video layer (always above shapes) */
.statergy-video video {
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 50%;*/
  width: 80%;
  height: 100%;
  /*object-fit: contain; */
  /*transform: translate(-50%, -50%);*/
  /*z-index: 3;*/
  /*pointer-events: none;*/
}

.statergy-video {
    display: flex;
    align-items: center;
    justify-content: center;
}
.shape-bg-before {
      display: block;
    width: 9.95%;
    height: -webkit-fill-available;
    background: #000;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    box-sizing: border-box;
    transform: matrix(1, 0, 0, 1.43, 0, 0);
}
.shape-bg-after {
       display: block;
    width: 9.95%;
    height: -webkit-fill-available;
    background: #000;
    clip-path: polygon(0% 15%, 100% 0, 100% 100%, 0% 85%);
    box-sizing: border-box;
    transform: matrix(1.01, 0, 0, 1.43, 0, 0);
}

.about-text .services__three-title {
    margin-bottom: 36px;
}

.hero-section-headline {
    font-size: 40px;
    background: linear-gradient(90deg, #00b3e3, #2cb58f, #8bc543, #b0ba17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*background: -webkit-linear-gradient(to right, #0CB1D0, #E3BA0A);*/
    font-family: 'bold';
    line-height: 1;

}

.sub-section-padding {
    padding-bottom: 40px;
}
.section-padding {
    /*padding: 48px 0px;*/
    padding: 74px 0px;
}
.section-padding-2 {
  padding: 64px 0px;  
}
.application-btn-custom{
    padding-top:35px!important;
}
 .application-btn-custom-2{
    padding-top:64px!important; 
 }
.copyright__one.two .copyright__one-container-area
 {
    padding: 36px 0px 0px 0px;
}
.section-padding-custom {
    padding: 96px 0px;
}
.py-36{
    padding:36px 0px;
}
.pb-64{
    padding-bottom:64px;
}
.pb-96{
    padding-bottom:96px;
}
.pt-64{
    padding-top:64px;
}
.pb-36{
    padding-bottom:36px;
}
.pb-34{
    padding-bottom:34px;
}
.pt-34{
    padding-top:34px;
}
.pt-36{
    padding-top:36px;
}
.pt-48{
    padding-top:48px;
}
.pb-40{
    padding-bottom:40px;
}
.mb-14{
 margin-bottom: 14px !important;
}
.hero-banner-quots {
    padding: 1.5em 0em 0.5em 0em;
}

/*.subtitle-one.hero-tagline {*/
/*    color: #0CB1D0;*/
/*    border: 1px solid;*/
/*    border-radius: 8px;*/
/*    background:transparent;*/
/*     margin-bottom: 16px;*/
/*}*/
.tagline-box {
    border: 2px solid #0CB1D0;
    padding: 6px 18px;
    border-radius: 8px;
    display: inline-block;
    /*margin-bottom: 20px;*/
    min-width: 200px;
    animation: fadeIn 1s ease-in-out;
}

.custom-text {
    text-align: center;
}

.tagline-text {
    font-weight: bold;
    color: #0CB1D0;
    /*background: linear-gradient(90deg, #00b3e3, #2cb58f);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner__three-content .hero-text {
    margin-bottom: 24px;
    width: 100%;
    font-size: 20px;
    font-family: 'regular';
}

.btn-two.primary-filled-button {
    /*background: linear-gradient(90deg, #00b3e3, #2cb58f, #8bc543);*/
    /*background: linear-gradient(120deg, #0CB1D0, #E3BA0A);*/
    /*border: green;*/
    background: linear-gradient(113deg, #0CB1D0 -43.01%, #E3BA0A 166.02%);
    font-size: 24px;
    font-family: 'semi-bold';
    font-weight: 400;
    padding: 12px 48px;
    /*padding: 0.5em 1em;*/
    min-width: 226px;
    justify-content: center;
}

.why-choose-us__three-title p {
    margin-bottom: 16px;
}

.btn-two.primary-filled-button:hover {
    background: linear-gradient(113deg, #E3BA0A -43.01%, #0CB1D0 166.02%);
    color: #fff;
}

.btn-two:hover {
    background: linear-gradient(113deg, #E3BA0A -43.01%, #0CB1D0 166.02%);
    color: #fff;
}

/*.section-title {*/
/*    font-size: 45px;*/
/*}*/
.section-title {
    font-size: 64px;
    line-height: 1.2;
      padding-bottom: 0px;
    margin-bottom: 8px;
    color: #1A1A1A;
    font-family: 'semi-bold';
}
.dark-bg .section-title {
   color: #fff!important;
}
.application-buttons {
    padding-top: 12px;
}
.section-text {
    font-family: 'regular';
    font-size: 24px !important;
    line-height: 1.7;
    color: #3B3B3B !important;
}


.subtitle-one.custon-subtitle {
    background: transparent;
    border: 1px solid;
    border-radius: 8px;
    align-items: center;
    font-size: 14px;
    font-family: 'regular';
    line-height: 1.9;
    color: #3B3B3B;
}

.section-subtitle-second {
    /*font-size: 36px;*/
    margin-bottom: 16px;
    font-size: 48px;
}
.section-subtitle-custom-second {
    margin-bottom: 48px;
     font-size: 48px;
}
.contact-section-subtitle-second {
    margin-bottom: 16px;
    font-size: 36px;
}

.application-card {
    min-height: 180px;
    padding: 0.1em 0.5em;
}

.application-icon-hover.key-feture-icons {
    padding-bottom: 1em;
    min-height: 80px;
}

.inner-section-padding {
    padding: 48px 0px;
}

.services__four-single-service-icon.application-icon.icon-hover-group {
    padding-bottom: 0.2em;
}

.section-subtitle-light-second {
    font-size: 64px;
}

.section-subtitle-dark-second {
    font-size: 64px;
}

.blog__one-single-blog.custom-blog-container {
    padding: 0.8em;
    /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
}

.custom-blog-container .blog__one-single-blog-image {
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    height: auto;
}

.footer__five-widget-about-social ul li a i:hover {
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
}

.footer__five-widget-solution ul li a:hover {
    color: var(--primary-color-1);
    padding-left: 0px;
}

.footer-tagline:hover {
    color: var(--primary-color-1);
    border: 1px solid var(--primary-color-1);
}

.scroll-up::after {
    left: 0;
    top: 56px;
    font-size: 24px;
}

.scroll-up {
    right: 25px;
    bottom: 76px;
}

.section-text-second {
    font-size: 24px !important;
}

.btn-two.primary-button {
    font-family: 'semi-bold';
}

.btn-two.primary-button {
    background: #0CB1D0;
    padding: 12px 36px;
    /*display: inline-block;*/
  /*padding: .75rem 1.25rem;*/
  /*border-radius: 10rem;*/
  /*color: #fff;*/
  /*text-transform: uppercase;*/
  /*font-size: 1rem;*/
  /*letter-spacing: .15rem;*/
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-two.primary-button:hover {
    /*background-color: #028da8;*/
    /*color: var(--primary-color-1);*/
}

.btn-two.primary-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0CB1D0;
    border-radius: 10rem;
    z-index: -2;
  }
  .btn-two.primary-button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #028da8;
    transition: all .3s;
    border-radius: 10rem;
    z-index: -1;
  }
.btn-two.primary-button:hover {
    color: #fff;
}
  .btn-two.primary-button:hover:before {
      width: 100%;
    }
.icon-title.gray-color {
    font-size: 18px;
    font-family: 'regular';
    line-height: 1.4;
}

.application-icon {
    padding-bottom: 16px;
}

.btn-three.primary-without-border-button {
    font-family: 'medium';
    color: var(--primary-color-1);
    padding: 0.4em 0.6em;
}

/*.btn-three.primary-without-border-button:hover,*/
/*.btn-three.primary-without-border-button:active {*/
/*    border: 1.5px solid;*/
/*    border-radius: 40px;*/
/*    padding: 0.4em 0.6em;*/
/*}*/

.icon-sets-title {
    font-family: 'semi-bold';
    font-size: 24px;
    /*color: #1A1A1A;*/
}

.icon-sets-title.approach-title {
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 60%;
        margin-bottom: 0px;
}

.blog-heading.blog-title {
    font-size: 20px;
    font-family: 'bold';
}

.custom-blog-date {
    font-size: 12px;
    font-family: 'bold';
    padding-bottom: 1.5em;
}

.blog-tagline {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 0.65em 1em;
    width: 135px;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    bottom: -9%;
    left: 32%;
}

.blog-content {
    min-height: 100px;
}

.read-more-button {
    text-align: center;
    margin-top: 3em;
}

.hero-section-headline-one {
    font-size: 86px;
    font-family: 'bold';
    background: linear-gradient(109deg, #0CB1D0 -5.67%, #E3BA0A 105.22%);
    /*background: linear-gradient(90deg, #00b3e3, #2cb58f, #8bc543, #b0ba17);*/
    /*background: linear-gradient(60deg, #0CB1D0 40%, #E3BA0A 60%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text-three {
    font-size: 36px;
    line-height: 1.4;
}

.heading-footer {
    font-size: 24px;
    font-family: 'semi-bold';
}

.footer-text {
    font-size: 16px;
    font-family: 'regular';
    color: #1A1A1A;
}

.footer-tagline {
    font-size: 14px;
    font-family: 'regular';
    border: 1px solid #666666;
    color: #666666;
    border-radius: 8px;
    padding: 4px 16px;
    /*padding: 0.2em 0.4em;*/
    margin: 0.4em 0.4em;
    display: inline-grid;
}

#myVideo {
    object-fit: none;
}
.about__three-right-image-left-side {
    height: 100%;
}
.scrolling-image-container {
    /*height: 100vh;*/
    overflow: hidden;
    position: relative;
}

.about__three-right-image-left-side.scrolling-image-container {
    border-radius: 0px 0 0 0px;
    overflow: hidden;
    height: 500px;
}

.scrolling-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scrollDown 20s linear infinite;
}

.pricing-plan__one-title {
    margin-top: 50px;
}

.scrolling-image-wrapper img {
    display: block;
    width: 100%;
    margin-top: 1em;
    object-fit: cover;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.icon-hover-group {
    display: flex;
    align-items: center;
    position: relative;
}

/* Line is hidden initially */
.v-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #00b3e3 0%, #2cb58f 100%);
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Icon hover triggers line */
.icon-hover-group:hover .v-line {
    opacity: 1;
    transform: scaleY(1);
}

/* Icon push effect */
.application-icon-hover img {
    transition: transform 0.3s ease;
}

.icon-hover-group:hover .application-icon-hover img {
    transform: translateX(6px);
}

.btn-three.custom-three-button {
    font-size: 20px;
    font-family: 'medium';
    color: var(--primary-color-1);
    position: relative;
    padding: 12px 40px 12px 24px;
}

.btn-three.custom-three-button:hover {
    transform: translateX(-6px);
    /* move left */
}

.blog__one-single-blog.custom-blog-container:hover .btn-three.custom-three-button {
    transform: translateX(-6px);
}

.blog__one-single-blog.custom-blog-container:hover .btn-three.custom-three-button::after {
    content: "→";
    /* or use "➜" for bolder arrow */
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Show arrow on hover */
/* Arrow slides in on card hover */
.blog__one-single-blog.custom-blog-container:hover .btn-three.custom-three-button::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* Arrow (hidden initially) */
.btn-three.custom-three-button::after {
    content: "→";
    /* or use "➜" for bolder arrow */
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Show arrow on hover */
.btn-three.custom-three-button:hover::after {
    transform: translateY(-50%) translateX(0);
    /* slide in */
    opacity: 1;
}

.copyright__one-left {

    text-align: center;
}

.services__four-single-service.custom-card-dark-bg {
    margin: 1em;
    min-height: 300px;
    ;
    border-radius: 16px;
    background: var(--Grey-100, #1A1A1A);
}

.goals-heightlight-card-container .services__four-single-service.custom-card-dark-bg {
    min-height: 250px;
}

.section-text-second.text-light.custom-whats-sets-apart {
    font-size: 24px !important;
}

.section-text-1 {
    font-family: 'regular';
    font-size: 24px !important;
    line-height: 1.4;

}

.services__four-single-service-content .icon-sets-title {
    min-height: 60px;
        margin-bottom: 16px;
}

.icon-sets-title.goals-highlight-card-heading {
    min-height: 30px;
}

.services__four-single-service-content .icon-sets-title.why-product-icon-title {
    min-height: 30px;
}

.why-product-card {
    padding: 1.5em;
}

.why-product-card .application-icon-hover {
    padding-bottom: 1em;
}

.vertical-line {
    width: 2px;
    background: linear-gradient(to bottom, #28c76f, #fdd835);
    height: 100%;
    margin: auto;
}

.page-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.page-hero-section .why-choose-us__three-title p {
    padding-right: 2em;
}

.custom-padding-left {
    padding-left: 3em;
}

.custom-padding-right {
    padding-right: 3em;
}

.gradient-card {
    /*background: linear-gradient(135deg, #e0f7fa, #fffde7);*/
    border: 1.5px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(330deg, #0CB1D0, #E3BA0A) border-box;
    width: 100%;
    /* green to yellow gradient border */
    padding: 0.5px;
    /* thickness of the border */
    border-radius: 16px;
    /*background: linear-gradient(108deg, rgba(12, 177, 208, 0.16) 0%, rgba(227, 186, 10, 0.16) 98.48%), #FFF;*/
    /* keeps it tight */
}

.gradient-card .icon-sets-title {
    min-height: 30px;
}
.WhyChooseBaelsysDesign .gradient-card .icon-sets-title {
    min-height: 60px;
}
.card-content {
    background: linear-gradient(135deg, #e0f7fa, #fffde7);
    /* soft diagonal pastel */
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

}

/*.section-text-third {*/
/*    color: #1A1A1A!important;*/
/*}*/
.application-icon-hover {
    min-height: 70px;
}

.single-dark-bg-title {
    padding-bottom: 2em;
}

/*approach card*/
.aprroach-card-no-heading {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    position: relative;
    padding-bottom: 2em;
}

.aprroach-card-no-heading:before {
    position: absolute;
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    left: 13%;
    bottom: 12%;
    background: #3B3B3B;
}

.approach-card-list li {
    color: #F5F5F5 !important;
    font-size: 16px;
}

.services__four-single-service-content .approach-card-list {
    position: relative;
    padding-top: 0.3em;
}

.services__four-single-service-content .approach-card-list:before {
    position: absolute;
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    bottom: 5%;
    background: #3B3B3B;
}
/*.moving-dot.active {*/
/*  animation-timing-function: ease-in-out;*/
/*  filter: drop-shadow(0 0 8px #25C382);*/
/*}*/

.footer-tagline.primary-approach-tagline {
    color: var(--primary-color-1);
    border-color: var(--primary-color-1);
}

.approach-number {
    font-family: sans-serif;
    /*font-family: 'regular';*/
    font-size: 64px;
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 40%;
}

.approach-container {
    position: relative;
    width: 100%;
    /*max-width: 1400px;*/
    margin: auto;
    /*height: 300px;*/
}

.approach-cards {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    gap: 10;
    display: flex;
    justify-content: space-around;
    z-index: 2;
}

.services__four-single-service.custom-card-dark-bg.our-approach-cards {
    width: 300px;
    margin-top: 0px;
    margin-right: 0.9em;
}

.ready-to-pproach-text {
    text-align: center;
    background: linear-gradient(109deg, #0CB1D0 -5.67%, #E3BA0A 105.22%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 2.5em;
}

.readuy-to-approach-circle img {
    padding-right:0.3em;
    /*padding: 0.6em 0.6em;*/
    /*margin-right: 0.5em;*/
    /*border-radius: 50%;*/
    /*background: linear-gradient(109deg, #0CB1D0 -5.67%, #E3BA0A 105.22%);*/
}

svg {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1;
    pointer-events: none;
}

path {
    fill: none;
    stroke: #2e9e7a;
    stroke-width: 2;
    stroke-dasharray: 6, 8;
}

.moving-dot {
    fill: #2e9e7a;
    r: 8;
}

.static-dot {
    fill: #2e9e7a;
    r: 8;
}

.services__four-single-service-content ul {
    min-height: 200px;
}

@keyframes moveAlongPath1 {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes moveAlongPath2 {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes moveAlongPath3 {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

.approach-section#active .dot-path {
     animation: moveAlongPath1 2s ease forwards;
      offset-rotate: auto;
    offset-path: path("M 180 140 C 280 40, 370 40, 470 140");
}

.approach-section#active .dot-path2 {
    animation: moveAlongPath2 2s ease forwards;
      offset-rotate: auto;
    offset-path: path("M 470 140 C 570 40, 670 40, 770 140");
    animation-delay: 2s;
    animation-fill-mode: forwards;
     
}

.approach-section#active .dot-path3 {
    animation: moveAlongPath3 2s ease forwards;
       offset-rotate: auto;
    offset-path: path("M 770 140 C 870 40, 970 40, 1070 140");
    animation-delay: 4s;
    animation-fill-mode: forwards;
     
}


.pricing-plan__one .nav-pills .nav-link {
    margin-left: 0px;
    background: #cccccc52;
    font-size: 24px;
    padding: 12px 20px;
    width: 100%;

}

/* If it's the first tab, round only the left side */
.custom-tab li:first-child button.active {
    border-radius: 50px 0 0 50px;
}

/* If it's the last tab, round only the right side */
.custom-tab li:last-child button.active {
    border-radius: 0 50px 50px 0;
}

/* Wrapper with pill border */
.custom-tab {
    /*display: inline-flex;*/
    border: 1px solid #ABABAB;
    border-radius: 50px;
    overflow: hidden;
    background-color: #fff;
    list-style: none;
    margin: 0;
    gap: 0;
}

/* Remove default list styles */
.custom-tab li {
    margin: 0;
    padding: 0;
    width: 50%;
}

/* Buttons inside */
.custom-tab button {
    border: none;
    background: transparent;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active tab with gradient */
.pricing-plan__one .custom-tab.nav-pills .nav-link.active {
    color: var(--text-white);
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
    /*background: linear-gradient(90deg, #00b3e3, #2cb58f, #8bc543);*/
    width: 100%;
}

/* Remove Bootstrap focus styles */
.custom-tab button:focus {
    outline: none;
    box-shadow: none;
}

/* Tag buttons */
.filter-tag-btn {
    color: #3B3B3B;
    background: transparent;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 200px;
    border: 1px solid #3B3B3B;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'regular';
}

.filter-tag-btn:hover {
    background-color: #efefef;
    border: 2px solid #000;
}


.search-container {
    position: relative;
    display: inline-block;
    height: 40px;
}

.search {
    position: absolute;
    right: 0px;
    height: 40px;
    width: 0;
    padding: 0;
    opacity: 0;
    outline: none;
    font-size: 24px;
    transition: all 0.4s ease;
}


/* Expand to left on hover or focus */
.search:focus,
.search-container:hover .search {
    width: 400px;
    /* final size */
    padding: 0 15px 0 15px;
    opacity: 1;
}

.searchbutton {
    position: absolute;
    right: 0;
    top: 11px;
    width: 40px;
    height: 40px;
    /* background: white; */
    /* border: 1px solid #ccc; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    /* color: #555; */
    cursor: pointer;
}

.mglass {
    display: inline-block;
    transform: rotate(-45deg);
}

.search::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search::-ms-clear {
    display: none;
}

.search::-webkit-search-decoration {
    display: none;
}

.location-map.custom-location-map {
    margin: 0px;
}

.mobile-view-image {
    display: none;
}

.mobile-section-title {
    display: none;
}

#myVideo {
    display: block;
}

.desktop-view-image {
    display: block;
}

.mobile-view-image {
    display: none;
}

.tagline-search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 36px 0px;
}

/*.pricing-plan__one-title {*/
/*    margin-top: 50px;*/
/*}*/

/*.pricing-plan__one-title {*/
/*    margin-bottom: 40px;*/
/*}*/
.pricing-plan__one-title {
    /* margin-top: 50px; */
    margin: 50px 70px;
}
.contact-info {
    padding-bottom: 29px;
    color: #1A1A1A;
}

.contact-info h2 {
    font-size: 64px;
    /* font-weight: 700; */
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'regular';
    font-weight: 600;
}

.contact-info p {
    font-family: 'regular';
    font-size: 16px;
}

.location-map {
    filter: none;
}

.location-map.custom-location-map {
    margin: 0px;
    width: 100%;
    height: 367px;
}
.scrooling-image-parent {
    display: flex;
    width: 80%;
    height: auto;
    text-align:center;
}
.mail-hover-mobile {
    display:none;
}
.submit-contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
  .client-logo-title{
    position: relative;
        padding-bottom: 1em;
}
  .client-logo-title:after {
    content: '';
    position: absolute;
    /* height: 2px; */
    display: block;
     width: 320px;
    border: 1px solid;
    bottom: 41%;
    left: 38%;
}
.ellipse-shape-mobile-7 {
    display:none;
}
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 769px) {
    .mobile-logo-content {
        margin: auto auto;
        /* padding-bottom: 56px; */
    }
    #baelpro_product_section .custom-padding-left {
        padding-left: 0em!important;
    }
     #baelpro_product_section .custom-padding-right {
        padding-right: 0em!important;
    }
     #baelpro_product_section .section-padding-2  .custom-padding-left {
                padding-left: 0.8em !important;
    }
    #Scannist_product_section .custom-padding-right {
        padding-right: 0em!important;
    }
    #Scannist_product_section .custom-padding-left {
        padding-left: 0em!important;
    }
    .WhyChooseBaelsysDesign .custom-padding-left {
        padding-left: 0em!important;
    }
  
  .mobile-logo-content {
        margin: 5em auto!important;
        padding-right: 5em;
                padding-top: 5em;
        /* padding-bottom: 24px; */
    }
      .statergy-video video {
  /*transform: matrix(1, 0, 0, 1.5, 0, 0);*/
    height: 200px!important;
}
    .ellipse-shape-mobile-7 {
    display:block;
    border-radius: 378.055px;
    background: rgba(206, 37, 37, 0.50);
    filter: blur(250px);
    width: 195.933px;
    height: 378.055px;
    transform: rotate(133.349deg);
    position: absolute;
    right: 4%;
        bottom: -10%;
}
    .copyright__one-left p {
    font-size: 14px;
}
    .offering-page-client.pb-96 {
    padding-bottom: 48px;
}
   .ellipse-shape-custom-5 {
    background: rgb(206 37 37 / 27%);
    filter: blur(250px);
    width: 143.526px;
    height: 394.271px;
    transform: rotate(239deg);
    position: absolute;
    left: 7px;
    top: 25px;
}
 .mobile-custom-padding .custom-padding-right {
        padding-right: 0em;
    }
    .mobile-custom-padding .custom-padding-left {
        padding-left: 0em!important;
    }
    .client-logo-title {
    padding-bottom: 1.5em;
}
.btn-two.primary-filled-button {
    font-size: 20px!important;
}
    .section-text-three {
        padding: 0em 0em!important;
    }
       .client-logo-title:after {
     width: 185px;
        bottom: 48%;
        left: 25%;
}
    .header__area-menubar-left-logo a img {
    max-width: 124px;
}
.our-mission-section .ellipse-shape-1 {
    right: -16px;
    top: -95px;
}
.our-mission-section .ellipse-shape-custom-2 {
    display: none;
}
   .our-mission-section .ellipse-shape-7 {
        right: 30% !important;
        bottom: -24%;
            background: rgb(206 37 37 / 41%);
    }
   .goals-heightlight-card-container .section-text-1{
           margin-bottom: 8px;
}
    .dark-bg .section-title
 {
        margin-bottom: 16px;
    }
    .approach-section .single-dark-bg-title{
           margin-bottom: 24px; 
    }
    .section-subtitle-second {
        font-size: 24px!important;
        font-family: 'semi-bold';
    }
   .why-product-card .services__four-single-service-content .icon-sets-title {
    margin-bottom: 8px;
}
.application-icon-hover.key-feture-icons {
    min-height: 60px;
}
.application-btn-custom-2 {
        padding-top: 8px !important;
    }
 
.application-buttons.application-btn-custom-2 .ms-4 {
    margin-left: 0px !important;
}
        .section-custom-title::after {
        height: 2px!important;
    }
    .application-btn-custom {
    padding-top: 0px !important;
}
    .services__four-single-service-content .icon-sets-title.why-product-icon-title {
        min-height: 50px;
        margin-bottom: 8px;
    }
    .submit-contact{
    display: block;
    }
  .submit-contact #msgSubmit {
      padding-top:0.8em;
}
.why-choose-us__three-left.custom-padding-left.custom-padding-right.product-top-section {
    padding: 0px;
    padding-left: 0px !important;
}
  .next-gent-padding {
    padding-bottom: 12px!important;
}
.subtitle-one.custon-subtitle {
    font-size: 12px;
   padding: 4px 16px;
}
.container {
    padding: 0px 24px;
}
/*.header__area.three {*/
/*    padding: 10px 0px;*/
/*}*/
    .custom-text {
        text-align: left!important;
        margin-bottom: 8px;
        /* text-align: justify; */
    }
    .shape-bg-before{
    display: none;
}
.shape-bg-after {
    display: none;
}
.statergy-video video {
    width: 100%;
    height: 100%;
}
    .page-hero-section {
    min-height: 70vh;
}
.our-vision-text {
    padding-bottom: 13px;
}
.custom-padding-left.our-mission-left-padding {
    padding-left: 0px !important;
}
.goals-heightlight-card-container .services__four-single-service.custom-card-dark-bg {
    min-height: 200px;
    margin: 0px;
}
.custom-padding-top-mob {
    padding-top: 48px !important;
}
.ellipse-shape-2.about-top-ellipse-shape-2 {
    display: block;
}
    .ellipse-shape-2 {
    display: none;
}
    .ellipse-shape-7 {
    right: 30%!important;
    bottom: 30%;
}
    .services__four-single-service-content ul {
        min-height: 180px;
    }
.services__four-single-service-content .approach-card-list:before {
    bottom: 0%;
}
.gradient-card .icon-sets-title {
    min-height: 20px;
}
.gradient-card  .services__four-single-service-content p {
    margin-bottom: 8px;
}
.gradient-card {
    margin-bottom: 0.5em;
}
.horizontal-scroll.light-bg-gradient {
    background: none;
}
    .aprroach-card-no-heading {
        justify-content: left !important;
    }

    .search:focus,
    .search-container:hover .search {
        width: 100%;
    }

    .tagline-search-container {
        display: grid;
        justify-content: center;
    }

    .search-container {
        margin: 2em 0em;
    }

    .why-choose-us__three-title .insight-top-text {
        margin-bottom: 0px;
    }

    .why-choose-us__three-title.text-center {
        text-align: left !important;
    }

    /*#myVideo {*/
    /*    display: none;*/
    /*}*/

    /*.hero-banner {*/
    /*    background-color: black;*/
    /*    min-height: 45vh;*/
    /*    height: 45vh;*/
    /*}*/
.hero-banner {
    min-height: 90vh;
    /*height: 110vh;*/
}
#myVideo {
    object-fit: cover;
}
    .services__four-single-service.custom-card-dark-bg.our-approach-cards {
        width: 100%;
        margin: 0px;
    }
.section-padding-custom {
    padding: 48px 0px;
}
.single-dark-bg-title {
    padding-bottom: 0em;
}
.approach-number {
    width: 30%;
}
.icon-sets-title.approach-title {
    width: 70%;
    font-size: 24px !important;
}
    .section-title {
        font-size: 28px!important;
    }
.inner-section-padding {
    padding: 8px 0px;
}
    .icon-sets-title {
        font-size: 18px!important;
    }
    .services__four-single-service-content p {
        font-size: 16px !important;
    }
    .why-product-card {
    padding: 0.5em;
}
.about__three.section-padding.light-bg-gradient {
    background: none;
}
    .section-text {
        font-size: 20px !important;
    }

    .mobile-view-image {
        display: block;
        text-align: center;
        padding: 2em 1em;
    }

    .mobile-view-image img {
        width: 100% !important;
    }

    .desktop-view-image {
        display: none;
    }

    .section-subtitle-second {
        font-size: 28px;
    }

    .section-text-1 {
        font-size: 20px !important;
    }
.about-text .services__three-title {
    margin-bottom: 8px;
}
.why-choose-us__three-left.next-gen-ui-ux-section .section-subtitle-second {
        font-size: 24px;
          margin-bottom: 8px;
    }
   .why-choose-us__three-left.next-gen-ui-ux-section .section-text-second {
    font-size: 16px !important;
}
.why-choose-us__three-title p {
    margin-bottom: 8px;
}

.why-choose-us__three-left.next-gen-ui-ux-section  .application-buttons .primary-button {
        margin-bottom: 0em;
    }
   .section-subtitle-custom-second {
    margin-bottom: 0px;
    font-size: 24px;
}
.section-text-second {
    font-size: 16px !important;
}
.icon-title.gray-color {
    font-size: 16px;
}
.about__three.pt-64.scannist-application-section {
    padding-top: 24px;
}
.scannist-application-section .pt-36 {
    padding-top: 0px;
}
.scrooling-image-parent {
    width: 100%;
}
    .about__three.balpro-application-section {
    padding-top: 0px;
}
.about__three.balpro-application-section {
        padding-top: 0px;
        padding-bottom: 24px;
    }
    .application-card.Flexible-card {
    min-height: 130px;
}
    .hero-section-headline-one {
        font-size: 36px;
    }

    .section-text-three {
        font-size: 20px;
    }

    .pt-30 {
        padding-top: 15px;
    }
.banner__three-content .btn-two.primary-filled-button {
            font-size: 16px;
        min-width: 65%;
        padding: 8px 16px;
        line-height: 1;
        width: inherit;
    }
    .banner__three-content {
    padding-left: 1em;
}
     .tagline-box {
        margin-bottom: 0px;
        min-width: 150px;
        padding: 4px 8px;
    font-size: 12px;
    }
    .hero-banner-quots {
    padding: 0.75em 0em 0.25em 0em;
}
    
    .mean-container .mean-nav ul li a {
        border-top: 0 !important;
    }

    #mobilemenu li a.active::after {
        width: 30%;
    }

    #mobilemenu li a::after {
        left: 5%;
        bottom: 15%;
        height: 2px;
    }

    .mean-container a.meanmenu-reveal {
        color: #fff;
    }

    .mean-container .mean-nav {
        margin-top: 0px;
        /*height: 100vh;*/
    }
.section-text-second.text-light.custom-whats-sets-apart {
    font-size: 20px !important;
}
    .scannist-application-section  .about__three-content p {
        margin-bottom: 16px;
    }
    .dark-bg .section-subtitle-light-second {
    margin-bottom: 0.57em;
}
.dark-bg .whats-set-apart-card {
    padding-top: 16px;
}
.about__three-content p {
    margin-bottom: 0px;;
}
.services__four-single-service-content .icon-sets-title {
    min-height: 20px!important;
}
.section-text-three {
        padding: 0em 1em;;
    }
    .contact-section-subtitle-second {
    font-size: 28px;
}
.services__four-single-service.custom-card-dark-bg {
        min-height: 250px;
        margin: 0.5em 0em;
    }
    /*.header__area.three {*/
    /*    padding: 10px 30px;*/
    /*    background: rgba(245, 245, 245, 0.80);*/
    /*    backdrop-filter: blur(8px);*/
    /*    -webkit-backdrop-filter: blur(8px);*/
    /*}*/
    /*.header__area-menubar-left-logo a img {*/
    /*    display: none;*/
    /*}*/
    #mobilemenu li a:hover::after {
        width: 25%;
    }

    .btn-two,
    .btn-three {
        width: 100%;
        justify-content: center;
    }

    .mean-container .mean-nav ul {
        width: 100vw;
        height: 100vh!important;
        padding-top: 2em;
    }

    .mean-container .mean-nav {
        width: 100vw;
    }

    .header__area-menubar-right .responsive-menu .mean-bar {
        right: 15%;
        top: -15px;
        z-index: 999999999;
    }

    .aprroach-card-no-heading {
        justify-content: space-around;
    }

    .hero-section-headline {
        font-size: 20px;
        line-height: 20px;
    }

   

    .banner__three-content .hero-text {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .desktop-view-image {
        display: none;
    }

    .mobile-view-image {
        display: block;
    }
        .section-subtitle-second {
        padding-bottom: 0.2em!important;
    }
        .section-custom-title {
        margin-bottom: 1em!important;
    }
    
.section-padding-custom.section-padding-custom-mob {
    padding: 36px 0px;
}
.section-padding-2 {
    padding: 30px 0px;
}
.about__three {
  overflow: hidden;
}
.custom-padding-left {
        padding-left: 0.8em!important;
    }
    .application-content.who-will-benefit-card .gradient-card {
    margin-bottom: 0px;
}
.application-btn-custom-2 {
    padding-top: 40px !important;
}
.footer-logo-description {
    /*display: flex;*/
            padding-bottom: 1em;
}
.footer__five-widget-about a img {
    margin-bottom: 16px;
}
.footer-logo-description a {
    padding-right: 1.5em;
}
.footer__five-widget-about p {
    font-size: 16px;
    margin-bottom: 20px;
}
.footer__five-widget h4 {
    color: var(--text-heading-color);
    margin-bottom: 16px;
    font-size: 18px;
}
    .footer__five-widget {
        padding-bottom: 1.5em;
    }
    .copyright__one.two .copyright__one-container-area {
    padding: 16px 0px 0px 0px;
}
.footer__five-widget-solution ul li a {
    font-size: 16px;
}
.service-box.contact-service-box {
        position: relative;
    padding: 24px 24px 32px 24px;
    border-radius: 24px;
    font-size: 16px;
    border-radius: 24px;
    background: transparent;
    border-image: linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%) 1;
        min-height: 125px;
    margin: 0em;
    align-items: center;
}
.contact__two.backlightpink .custom-padding-right {
        padding-right: 0em;
    }
    .contact__two.backlightpink .custom-padding-left {
        padding-left: 0em!important;
    }
.contact-service-box .service-box-text {
    font-size: 16px;
    width: 100%;
}
.mail-hover-mobile {
    position: absolute;
    right: 30px;
    bottom: -8%;
        font-size: 12px;
    font-family: 'medium';
    position: absolute;
    padding: 8px 12px;
    background: var(--Gradient, linear-gradient(104deg, #0CB1D0 -42.46%, #E3BA0A 164.96%));
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: width 0.9s 
ease, background 0.9s 
ease;
    text-decoration: none;
    white-space: nowrap;
}
.mail-hover-mobile .mail-icon{
    padding-right:0.3em;
    font-size: 12px;
}
.mail-hover {
    display: none!important;
}
.contact-info h2 {
    font-size: 28px;
    
}
.ellipse-shape-horizontal-top-custom-4 {
    right: 100%;
    top: 0%;
    width: 127px;
    height: 868px;
}
.application-buttons .ps-4 {
    padding-left: 0px !important;
}
}

@media (max-width: 991px) {
    .header__area.three .header__area-menubar-right-box-btn {
        /*display: block;*/
    }
    .btn-one.secondary-outline-button {
    font-size: 14px;
        line-height: 1.4;
    padding: 8px 12px;
    width: 145px;
}
.mean-container .mean-nav {
    background: #000000f0;
}
    .custom-meanmenu-icon {
  width: 30px;
  height: auto;
  display: inline-block;
}
.mean-container a.meanmenu-reveal {
    width: 25px;
    height: auto;
    padding: 8px 8px 8px;
}

.meanmenu-reveal {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.meanmenu-reveal img {
  width: 28px !important;
  height: auto !important;
  display: inline-block !important;
  opacity: 1 !important;
}
/*    #mobilemenu {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*}*/
    #mobilemenu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* border-radius: 363px; */
        /*background: linear-gradient(306deg, #5c96a1 37.08%, #E3BA0A 76.54%);*/
        /* filter: blur(250px); */
        background: linear-gradient(to bottom, #d7f3e4 0%, #f7e3e6 100%);
        /* color: #000; */
    }
    .mean-container .mean-nav ul li a {
    width: 100%;
    color: #1A1A1A;
    padding: 12px 24px;
    font-family: 'semi-bold';
}
.meanmenu-reveal.meanclose i {
    color: #1a1a1a;
}
    .mobile-logo-content {
          margin: auto auto ;
        /*padding-bottom: 40px;*/
}
   #mobilemenu li.mobile-logo-content a::after{
       all:unset!important;
}

   .ellipse-shape-4.ellipse-mob-4{
        display:none;
    }
    .section-titile-center-to-left {
    text-align: left !important;
}
   
    .ellipse-shape-custom-4 {
    display: none;
}
       .ellipse-shape-7 {
    right: 20%;
}
    .header__area-menubar-right .responsive-menu .mean-bar {
        right: 7%;
        top: -15px;
        z-index: 999999999;
    }

    .header__area-menubar-right .responsive-menu .mean-bar {
        z-index: 99999;
    }

    .mean-container a.meanmenu-reveal {
        top: 17px;
        right: -43px !important;
    }

    .mean-container .mean-nav ul li {
        width: 72%;
    }

    .mean-container .mean-nav ul li a {
        border-top: 0 !important;
    }

    #mobilemenu li a.active::after {
      display:none;
    }
    #mobilemenu li a.active {
    font-weight: 700;
}

    #mobilemenu li a::after {
        left: 5%;
        bottom: 15%;
        height: 2px;
    }

    .mean-container a.meanmenu-reveal {
        color: #fff;
    }

    .mean-container .mean-nav {
        margin-top: 0px;
        /*height: 100vh;*/
    }

    /*.header__area-menubar-left-logo a img {*/
    /*    display: none;*/
    /*}*/
    #mobilemenu li a:hover::after {
        /*width: 25%;*/
        display:none;
    }

    .btn-two,
    .btn-three {
        width: 100%;
        justify-content: center;
    }

    .mean-container .mean-nav ul {
        width: 103vw;
        height: 100vh;
        padding-top: 2em;
    }

    .mean-container .mean-nav {
        width: 100vw;
    }

    .section-custom-title {
        position: relative;
        margin-bottom: 2em;
    }

    .section-custom-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -11px;
        /* gap from text */
        width: 100%;
        height: 3px;
background: linear-gradient(145deg, #0CB1D0 -1.96%, #E3BA0A 97.61%);
        border-radius: 2px;
    }

    .section-subtitle-second {
        font-size: 28px;
        padding-bottom: 0.4em;
    }

    .pt-60 {
        padding-top: 30px;
    }

    .icon-sets-title {
        font-size: 22px;
    }

    .services__four-single-service-content p {
        font-size: 18px;
    }

    .section-text-three {
        padding: 0em 2em;
        line-height: 1.6;
    }

    .desktop-section-title {
        display: none;
    }

    .mobile-section-title {
        display: block;
        /*margin-bottom: 1em;*/
    }

    .application-buttons .primary-button {
        margin-bottom: 1em;
    }

    .application-buttons.mt-5 {
        margin-top: 1.5em !important;
    }

    .section-title {
        font-size: 34px;
    }

    .icon-sets-title.approach-title {
        font-size: 24px;
    }

    .custom-text {
        text-align: justify;
    }

    .page-hero-section .why-choose-us__three-title p {
        padding-right: 0em;
    }

  .custom-padding-left {
        padding-left: 0.8em;
    }

    .custom-padding-right {
        padding-right: 0.8em;
    }
}

@media screen and (min-device-width: 481px) and (max-device-width: 768px) {

    /* STYLES HERE */
}

@media only screen and (max-device-width: 480px) {
    .mean-container .mean-nav ul {
        height: 85vh;
        
    }
  
       .header__area-menubar-right .responsive-menu .mean-bar {
        right: 10%;
    }

    .section-title.custom-section-title {
        font-size: 28px;
        text-align: left;
    }

    .section-padding {
        padding: 35px 0px;
    }

    .section-subtitle-second {
        padding-bottom: 0em;
    }

    .application-card {
        min-height: 160px;
    }
    .section-subtitle-light-second {
        font-size: 28px;
    }

    .section-subtitle-dark-second {
        font-size: 36px;
    }

    .blog__one-single-blog.custom-blog-container {
        padding: 1em;
    }

    .pricing-plan__one .nav-pills .nav-link {
        padding: 8px 36px;
        width: 100%;
        font-size: 14px;
    }
}
@media only screen and (max-device-width: 400px) {
         .client-logo-title:after
 {
        left: 20%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .header__area.three .header__area-menubar-right-box-btn {
        display: block;
    }
     .header__area-menubar-center-menu ul li a {
          margin: 20px 20px !important;
          /*padding: 20px 20px !important;*/
    }
}


/* Show only on mobile & tablet */
/*@media (max-width: 991px) {*/
/*  .mobile-only {*/
/*    display: block;*/
/*    text-align: center;*/
/*    margin-top: 15px;*/
/*  }*/
/*}*/