@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');
@import url('https://fonts.cdnfonts.com/css/porter-sans-block');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*** floating bars CSS ***/
.hovertext {
    position: relative;
  }
  
  .hovertext:before {
    content: attr(data-hover);
    visibility: hidden;
    opacity: 0;
    width: 100px;
    background-color: #fdfdfd;
    color: #03045e;
    text-align: center;
    border-radius: 5px;
    padding: 3px 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    z-index: 1;
    left: 80%;
    top: 10%;
  }
  
  .hovertext:hover:before {
    opacity: 1;
    visibility: visible;
  }
  .service-float {
    position: fixed;
    top: 80%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
  }
  
  .service-float2 {
    display: flex;
    justify-content: start;
  
  }
  
  .service-float img {
    border: 1px solid #09B451;
    padding: 8px;
    background-color: #fff;
  }
  
  .service-float img:hover {
    background-color: #09B451;
    cursor: pointer;
  }
  
 nav{
    height: 6.5rem;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    z-index: 9;
    position: fixed;
    margin-top:-7%;
}

/*Styling logo*/
.logo{
    padding:1vh 1vw;
    text-align: center;
    margin-left: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo h5{
    color: #09B451;
font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none; 
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 10px;
}

.nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw;
    margin-left: -30px;
    color: var(--gray3, rgba(64, 64, 64, 0.80));
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 48px;
}
.nav-links li a:hover {
    color: #389EEA;
}
.nav-links li {
    position: relative;
}
.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #389EEA;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
    width: 80%;
}

.dropdown-toggle li a{
    margin-left: 0 !important;
    text-align: left !important;
}
/*Styling Buttons*/
.login-button{
    color: #1D4D5F;
    text-align: center;
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    border: none;
    background-color: transparent;

}
.login-button:hover {
    color: #131418;
    transition: all ease-in-out 350ms;
}
.register-button{
    border-radius: 5px;
background: rgba(29, 77, 95, 0.92);
border: none;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
color: #fff;
padding: 8px 20px;
transition: all 0.5s;
}
.register-button:hover{
    border-radius: 5px;
background: #03045e;
color: #fff;
transition: all 0.5s;
}
.register-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .register-button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -10px;
    transition: 0.5s;
  }
  
  .register-button:hover span {
    padding-right: 20px;
  }
  
  .register-button:hover span:after {
    opacity: 1;
    right: 0;
  }
/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #d2d2d2;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
    color: #000 !important;
}
.nav-buttons{
    display: flex;
    margin-left: 60px;
}
/*Stying for small screens*/
@media screen and (max-width: 800px){
  nav{
    margin-top:-21%;
}
    .nav-buttons{
        margin-left:0;
    }
    .main-container  nav{
        height: auto;
        position: fixed;
        z-index: 3;
    }
    .landing-row{
        padding-top: 50px;
    }
  #dropdownMenuButton1{
    color: #fff;
  }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 46%;
        transform: translate(-5%, -50%);
        z-index: 99;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        margin-left: 0;
        z-index: 9;
    }
    
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
    .fade:not(.show) {
        opacity: 1 !important;
    }
    .nav-links li a{
        color: #fff !important;
    }
    .login-button{
        color: #ffff;
    }
}
.nav-buttons li a{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
.nav-buttons li a:hover{
    border: none !important;
}
.tel-number i{
    background-color: #389EEA;
    color: #fff;
    padding: 5px;
    border-radius: 20px;
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

.icube-banner{
    /* background-image: url(../image/banner.gif); */
    background-image: url(../image/banner.png);
    width: 100%;
    background-size:contain;
    background-repeat: no-repeat;
    /* height: 611px; */
    height: 611px;
    margin-top: 6.99%;
}
@media (max-width:801px) {
    .icube-banner{
        margin-top: 20.99%;
        background-size: cover;
    }

}
.typewrite{
    color: #FFF;
}
.typewrite:hover{
    color: #fff;
}
.icube-banner h1 {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    text-decoration: none;
}
.icube-banner a{
    text-decoration: none;
}

.waviy {
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    font-size: 50px;
  }
  .waviy span {
    color: #FFF;
    font-family: 'Poppins';
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    position: relative;
    display: inline-block;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));
    
  }
  @keyframes waviy {
    0%,40%,100% {
      transform: translateY(0)
    }
    20% {
      transform: translateY(-20px)
    }
  }


  /* marquee div container */
.marqee-row {
    margin-top: -40px !important;
}
.marquee {
  font-style: normal;
  font-weight: 600;
  height: 40px;
  background: rgba(255, 255, 255, 0.43);
}


.marquee li {
  list-style-type: none;
  color: #FFF;
  text-align: center;
  font-family: 'Euclid Circular A', sans-serif;
  font-size: 22px;
  margin-top: -13px;
}

/* Marquee styles */
.marquee {
  --gap: 0rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  width: 100%;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: fit-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 20s linear infinite;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
.marquee--fit-content {
  max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }

  to {
    transform: translateX(0);
  }
}

/* Other page demo styles */
.marquee__content>* {
  flex: 0 0 auto;
  color: #1f1f1f;
  font-size: 26px;
  font-weight: 600;
  margin: 2px;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  text-align: center;
}

.about-container h4{
    color: #09B451;
font-family:'Poppins';
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.about-container h5{
    color: #393939;
font-family: 'Poppins';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 225% */
}
.industries-box h6{
    color: #4A4A4A;
font-family: 'Poppins';
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.industries-box p{
    color: #4A4A4A;
font-family: 'Poppins';
font-size: 14px;
font-style: normal;
font-weight: 500;
padding-top: 15px;
}
.industries-subbox {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.institute-box h6{
    color: #4A4A4A;
font-family: 'Poppins';
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.institute-box p{
    color: #4A4A4A;
font-family: 'Poppins';
font-size: 14px;
font-style: normal;
font-weight: 500;
padding-top: 15px;
}
.institute-subbox {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.industries-box button{
    border: none;
    background-color: #09B451;
    color: #fff;
    padding: 12px 20px;
    width: 70%;
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.institute-box button{
    border: none;
    background-color: #09B451;
    color: #fff;
    padding: 12px 20px;
    width: 70%;
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.demo-btn{
    display: flex;
    justify-content: end;
    text-decoration: none;
}
@media (max-width:800px) {
    .institute-box button{
        width: 100%;
    }
    .industries-box button{
        width: 100%;
    }
}

.highlight{
    text-align: center;
}
.highlight h5{
    color: #09B451;
font-family: 'Poppins';
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.highlight h6{
    color: #515151;
text-align: center;
font-family: 'Poppins';
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 180% */
}
.carousel-control-prev-icon{
    background-image: url(../image/left.png) !important;
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30%;
}
.carousel-control-next-icon{
    background-image: url(../image/right.png) !important;
    width: 60px;
    height: 60px;
    position: absolute;
    right: -30%;
}
.analytics-container{
    background-image: url(../image/analytics.png) !important;
    width: 100%;
    height: 500px;
}
.carousel-caption h5{
    color: #FFF;
font-family: 'Poppins';
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.carousel-caption{
    padding-bottom: 12.25rem !important;
}
.analytics-column p{
    color: #FFF;
font-family: 'Euclid Circular A', sans-serif;
font-size: 22.306px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.analytics-column h6{
    color: #FFF;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
}
.analytics-column {
    text-align: center;
    border-radius: 6.692px;
    background: rgba(113, 111, 111, 0.58);
    padding: 10px;
    margin: 10px 0;
    height: 175.4px;
}
.analytics-column:hover{
    background-color: #09B451;
    color: #fff;
    cursor: pointer;
}
.analytics-inner-container{
    padding-top: 6.5%;
}
.analytics-container h5{
    color: #09B451;
    text-align: center;
    font-family: 'Raleway';
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 16.25px */
    letter-spacing: 0.91px;
}
.analytics-container h4{
    color: #FFF6F6;
    text-align: center;
    font-family: 'Raleway';
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    letter-spacing: -0.8px;
}
@media (max-width:992px) {
    .analytics-container{
        width: 100%;
        height: auto;
    }
  
}
@media (max-width:700px) {
    .carousel-control-prev-icon{
        left: -10%;
    }
    .carousel-control-next-icon{
        right: -10%;
    }
}
.support-container{
    background-image: url(../image/support.gif);
    width: 100%;
    height: 511px;
}
.support-img img{
    width: 100%;
    height: auto;
    position: relative;
    margin-top: -15%;
}
.support-content h4{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 37px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: capitalize;
}
.support-content h6{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}
.support-row{
    justify-content: space-between;
}
.support-container{
    margin-top: 10%;
}
@media (max-width:992px) {
    .support-container{
        width: 100%;
        height: auto;
    }
    .support-img img{
        margin-top: 10px;
    }
    .support-container{
        margin-top: 0;
    }
}
footer{
    background-color: #000;
}
.footer-column h5{
    color: var(--besic-app-ffffff, #FFF);
    font-family: 'Euclid Circular A', sans-serif;
font-size: 34px;
font-style: normal;
font-weight: 500;
line-height: 50.432px; /* 148.328% */
}
.footer-column button{
    border-radius: 4px;
background: var(--besic-app-ffffff, #FFF);
padding: 10.667px 27px;
color: #000;
border: none;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 155%; /* 24.8px */
letter-spacing: 0.32px;
}
.footer-column button:hover{
    background-color: #09B451;
    color: #fff;
    transition: all 0.5s;
}
@media(max-width:560px){
    .footer-column h5{
font-size: 20px;
}
.footer-column button{
padding: 10.667px 20px;
}
.important-images img{
    margin:5px 0;
}
}
.footer-column  span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .footer-column  span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -10px;
    transition: 0.5s;
  }
  
  .footer-column:hover span {
    padding-right: 20px;
  }
  
  .footer-column:hover span:after {
    opacity: 1;
    right: 0;
  }



.footer-column{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.important-images{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-content p{
    color: #FFF;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 36px;
letter-spacing: 0.32px;
}
@media (max-width:992px) {
    .important-images{
        display: block;
        text-align: center;
    }
    .important-images img{
        margin: 0 10px;
    }
}

.gtco-testimonials {
    position: relative;
    margin-top: 30px;
  }
  .gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-theme .owl-nav [class*=owl-] {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .owl-prev img{
    width: 30px;
    height: 30px;
  }
  .owl-next img{
    width: 30px;
    height: 30px;
  }
  .gtco-testimonials .owl-dots {
   display: none;
  }
  
  .gtco-testimonials .active {
    opacity: 0.2;
    transition: all 0.3s;
  }
  .gtco-testimonials .center {
    opacity: 1;
  }

  @media (max-width: 767px) {
    .gtco-testimonials {
      margin-top: 20px;
    }
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    outline: 0;
  }
  .owl-carousel button.owl-dot {
    outline: 0;
  }

  
  .test-box {
    display: flex;
    border-radius: 20px;
    background: #FAFAFA;
    padding: 20px;
    margin: 0 10px;
    text-align:left;
  }
  .test-box img{
   width: 150px;
  }
  .test-box p{
    color: #202020;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
  }
  .test-box h5{
    color: #202020;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
  }
  .test-box h6{
    color: #808080;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
  }
.testimonial-box h5{
    color: #09B451;
font-family: 'Poppins';
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-align: center;
}
.testimonial-box h6{
    color: #000;
font-family: 'Poppins';
font-size: 21px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-align: center;
}

/*** scroll to top css ***/

.backToTopBtn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1;
    font-size: 14px;
    font-family: 'Euclid Circular A', sans-serif;
    border: none;
    background-color: #09B451;
    color: #fff;
    padding: 7px 20px;
    transition: 0.5s;
    cursor: pointer;
  }
  .backToTopBtn i{
    font-size: 20px;
    background-color: #fff;
    color: #09B451;
    border-radius: 100%;
    padding:3px 4px;
  }
  .backToTopBtn:not(:hover) {
    background: #09B451;
  }
  .backToTopBtn:hover {
    background: #ffffff;
    color: #09B451;
  }
  .backToTopBtn.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .backToTopBtn:not(.active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  
  /** login form CSS **/

  .login-container{
    background: rgba(9, 180, 81, 0.10);
    padding-top: 7%;
  }

  .img-logobox{
    display: flex;
    align-items: center;
  }
  .img-logobox h5{
    color: #09B451;
font-family: 'Euclid Circular A', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
  }
  .logo-outer-column{
    background-color: #fff;
    padding: 20px;
  }
  .login-column h6{
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Euclid Circular A', sans-serif;
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: normal;
  }
  .login-column p{
    color: #444150;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
  }
  .login-column a{
    color: #09B451;
    font-weight: 500;
  }
  .login-column{
    padding: 30px 50px;
  }
  @media(max-width:768px){
    .login-column{
      padding: 30px 20px;
    }
  }
  .field-icon {
    float: right;
    padding-right: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    opacity: 0.6;
    cursor: pointer;
  }
  .forgot-password a{
    padding-top: 5px;
    font-size: 14x;
    font-family: 'Euclid Circular A', sans-serif;
 text-decoration: none;
 font-weight: 500;
 display: flex;
 justify-content: end;
  }
  .login-column button{
    width: 100%;
    padding: 10px 10px;
    border: none;
    background-color: #09B451;
    color: #fff;
    color: var(--ffffff, #FFF);
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
border-radius: 5px;
  }
  .login-column label{
    color: #444150;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
  }
  .login-column input::placeholder{
    color: #444150;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
  }
  
    .refresh-icon{
    width: 100%;
    padding: 10px 10px;
    border: none;
    background-color: #09B451 !important;
    color: #fff;
    color: var(--ffffff, #FFF);
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
border-radius: 5px;
  }

  .middle-line h2 {
    width: 100%; 
    text-align: center; 
    border-bottom: 1px solid #09B451; 
    line-height: 0.1em;
    margin: 10px 0 20px; 
    font-size: 14px;
    color: #000000;
 } 
 
 .middle-line span { 
     background:#fff; 
     padding:0 10px; 
 }
 .phone-loginbox h3{
    color: rgba(0, 0, 0, 0.85);
    font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
 }
 .phone-loginbox button{
    font-size: 13px;
 }
 .phone-loginbox a{
    text-decoration: none;
    font-size: 13px;
 }
 .login-rightbox{
    text-align: center;
 }
 .login-rightbox h5{
    color: rgba(0, 0, 0, 0.85);
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
 }
 .login-rightbox p{
    color: #525252;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 40px; /* 266.667% */
 }
 .form-check-label{
    font-size: 12px !important;
 }
 .radio-btn {
    display: flex;
 }

 /*** prcing CSS ***/
 .pricing-box{
    border-radius: 11.35px;
    background: #09B451;
    box-shadow: 0px 3.78px 94.62px 0px rgba(0, 0, 0, 0.15);
    color: #fff;
    padding: 20px 30px;
    max-width: 700px;
 }
 .pricing-container{
    padding-top: 120px;
 }
 .pricing-box h6{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
 }
 .pricing-box h4{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 37.848px;
font-style: normal;
font-weight: 500;
line-height: 128.023%;
 }
 .pricing-box small{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
 }
 .pricing-line{
 border: 2px solid #fff;
    margin-top: -7px;
 }
 .pricing-box p{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 23px; /* 250% */
 }
 .price-featurebox h5{
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 15.139px;
font-style: normal;
font-weight: 500;
line-height: 128.023%; /* 19.382px */
letter-spacing: 0.606px;
 }
 .price-featurebox li{
    list-style: none;
    color: #FFF;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 128.023%; /* 16.643px */
margin: 20px 0;
 }
 .price-featurebox ul{
    margin: 0;
    padding: 0;
 }
.pricing-box button{
    width: 100%;
    height: 40px;
    border-radius: 7px;
background: #FFF;
box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.10);
color: #09B451;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 128.023%; /* 15.363px */
border: none;
}

.wrapperAlert {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 7px;
    border: thin solid #ddd;   
    text-align: center;        
  }
  
  .topHalf {
    width: 100%;
    color: white;
    overflow: hidden;
    min-height: 250px;
    position: relative;
    padding: 40px 0;
    background: rgb(0,0,0);
    background: -webkit-linear-gradient(45deg, #09B451, #5eed9a);
  }
  
  .topHalf p {
    margin-bottom: 30px;
    color: #0E0E0E;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 53.293px; /* 242.239% */
letter-spacing: 1.1px;
text-transform: capitalize;
  }
 .topHalf svg {
    fill: #fff;
  }
  .topHalf h1 {
    color: #FFF;
    text-align: center;
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 53.293px; /* 133.333% */
    letter-spacing: 1.998px;
  }
          
  /* Original Author of Bubbles Animation -- https://codepen.io/Lewitje/pen/BNNJjo */
  .bg-bubbles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;            
    z-index: 1;
  }
  
 .bg-bubbles li{
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);/* fade(green, 75%);*/
    bottom: -160px;
  
    -webkit-animation: square 20s infinite;
    animation:         square 20s infinite;
  
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }
 .bg-bubbles li:nth-child(1){
    left: 10%;
  }		
 .bg-bubbles li:nth-child(2){
    left: 20%;
  
    width: 80px;
    height: 80px;
  
    animation-delay: 2s;
    animation-duration: 17s;
  }		
 .bg-bubbles li:nth-child(3){
    left: 25%;
    animation-delay: 4s;
  }		
 .bg-bubbles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
  
    animation-duration: 22s;
  
    background-color: rgba(white, 0.3); /* fade(white, 25%); */
  }		
 .bg-bubbles li:nth-child(5){
    left: 70%;
  }		
 .bg-bubbles li:nth-child(6){
    left: 80%;
    width: 120px;
    height: 120px;
  
    animation-delay: 3s;
    background-color: rgba(white, 0.2); /* fade(white, 20%); */
  }		
 .bg-bubbles li:nth-child(7){
    left: 32%;
    width: 160px;
    height: 160px;
  
    animation-delay: 7s;
  }		
 .bg-bubbles li:nth-child(8){
    left: 55%;
    width: 20px;
    height: 20px;
  
    animation-delay: 15s;
    animation-duration: 40s;
  }		
 .bg-bubbles li:nth-child(9){
    left: 25%;
    width: 10px;
    height: 10px;
  
    animation-delay: 2s;
    animation-duration: 40s;
    background-color: rgba(white, 0.3); /*fade(white, 30%);*/
  }		
 .bg-bubbles li:nth-child(10){
    left: 90%;
    width: 160px;
    height: 160px;
  
    animation-delay: 11s;
  }
  
  @-webkit-keyframes square {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-500px) rotate(600deg); }
  }
  @keyframes square {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-500px) rotate(600deg); }
  }
  
  .bottomHalf {
    align-items: center;
    padding: 35px;
    background-color: #fff;
  }
  .bottomHalf p {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  .btn-continue{
    background-color: #09B451;
    color: #fff;
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
  }
  .btn-continue:hover{
    color: #fff;
  }
  .payment-donebox{
    background-color: transparent !important;
    border: none !important;
  }

  /** detail form CSS **/
  .detail-form-container{
    background: #FDFEFF;
    padding-top: 8%;
  }
  .detail-outer-column{
    border-radius: 10px;
    border: 1px solid #E1E1E6;
    background: #FFF;
  }

  .detail-form-column button{
    width: 100%;
    padding: 15px;
    border: none;
    background-color: #09B451;
    color: #fff;
    color: var(--ffffff, #FFF);
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
border-radius: 4px;
  }
  .detail-form-column label{
    color: #444150;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
  }
  .detail-form-column input::placeholder{
    color: #444150;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
  }
  .detail-form-column{
    padding: 20px;
  }
  .detail-form-column i{
    color: #09B451;
  }
  .pending-iconbox i{
    color: #9d9d9d;
  }
  .detail-form-column small{
    font-family: 'Euclid Circular A', sans-serif;
    font-size: 14px;
    font-weight: 500;
  }
  .pending-iconbox small{
    color: var(--base-gray-200, #8D8D99);
  }

  /*** my queries CSS ***/
  section {
    position: fixed;
    width: 250px;
    height: 100%;
    background: #FFF;
    box-shadow: 0px 10px 60px 0px rgba(226, 236, 249, 0.50);
    transition: .5s;
    overflow: hidden;
    z-index: 9;
    margin-top: 6%;
}

section.active {
    width: 250px;
}

/* section:hover {
    width: 300px;
} */

section ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 ;
}

section ul li {
    list-style: none;
    width: 100%;
    position: relative;

}
section li{
    margin: 20px 0;
}
section sup{
    background-color: #09B451;
    padding: 0 4px;
    color: #fff;
    border-radius: 20px;
}
section ul li a:hover {
    color: #09B451;
}

section ul li:hover a::before {
    background: rgba(9, 180, 81, 0.08);
    width: 100%;
}

section ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0C0C0D;
    transition: .2s;
    font-family: 'Euclid Circular A', sans-serif;
}

section ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: .2s;
}

section ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

section ul li a .title {
    position: relative;
    font-size: 15px;
}

section ul li a .icon * {
    font-size: 1.1em;
}

section ul li a.toggle {
    border-bottom: 3px solid var(--bg-primary);
}

.toggle {
    cursor: pointer;
}

section .active{
    background: rgba(9, 180, 81, 0.08);
}

section .active span{
    color: #09B451;
    font-weight: 600;
}
.home-main-content{
    margin-left: 250px;
    padding-top: 7%;
}
header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding:10px 60px;
   border-bottom: 1px solid #E8E8E8;
background: #FFF;
z-index: 99;
width: 100%;
position: fixed;
}
header h3{
    color: #09B451;
font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.nav-menu h4{
    color: #000;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.98px;
text-transform: uppercase;
}
.nav-menu i{
    border-radius: 10px;
background: rgba(235, 235, 235, 0.40);
padding: 5px 10px;
}
.nav-menu span{
    color: #09B451;
}
.toggle{
    display: none;
}
@media (max-width: 768px) {
  section {
    width: 60px;
    margin-top: 23%;
}
    .home-main-content{
        margin-left:0;
        padding-top: 23%;
    }
    header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 10px 60px 0px rgba(226, 236, 249, 0.50);
        color: #000;
    }

    header a {
        color: #000;
    }
    .toggle{
    display: block;
}
    section {
        left: -60px;
    }
.header h3{
    padding-left: 0;
}
    section.active {
        left: 0;
        width: 100%;
    }

    section ul li a.toggle {
        display: none;
    }
}
.dash-box{
    border-radius: 6px;
border: 2px solid #ECEEF6;
background: #FFF;
padding: 20px;
margin: 10px 0;
cursor: pointer;
}
.dash-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-heading h6{
    color: #343434;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.75px;
}
.dash-heading span{
    border-radius: 50px;
    background: rgba(35, 193, 10, 0.15);
    color: #0B8A00;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.14px;
padding: 3px 8px;
}
.dash-content h4{
    color: #232323;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.28px;
}
.dash-box a{
    text-decoration: none;
    color: #949494;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.14px;
}
.post-query button{
    border: none;
    background-color: transparent;
    color: #000;
    font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
padding-top: 45px;
}
.post-dashbox{
    height: 153.6px;
}

.pagination {
  display: inline-block;
}
.pagination a {
  text-decoration: none;
  color: #000;
  float: left;
  padding: 4px 12px;
}
.pagination1 a.active {
  background-color: #09B451;
  color: #FFF;
}
.pagination1 a:hover:not(.active) {
  background-color: #DDD;
}
.pagination2 a.active {
  background-color: #09B451;
  color: #FFF;
  border-radius: 5px;
}
.pagination2 a:hover:not(.active) {
  background-color: #DDD;
  border-radius: 5px;
}
.pagination3 a {
  transition: background-color 0.3s;
}
.pagination4 a:not(.active) {
  border: 1px solid #DDD;
}
.pagination4 a.active {
  border: 1px solid #09B451;
}
.pagination5 a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination5 a:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination6 a {
  margin: 0 4px;
}
.pagination7 a {
  font-size: 18px;
}
.center {
  text-align: center;
}
.pagination ul.breadcrumb {
  list-style-type: none;
  background-color: #EEE;
  padding: 8px 16px;
}
.pagination ul.breadcrumb li {
  display: inline-block;
}
.pagination ul.breadcrumb li+li:before {
  padding: 8px;
  color: #000;
  content: "/\00A0";
}
.pagination ul.breadcrumb li a {
  color: #09B451;
}
.table-paignation-box{
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
@media (max-width:768px) {
  .table-paignation-box{
    display: block;
    padding: 10px;
  }
}
/*** post query ***/
.request-query-header{
    padding: 10px 1rem !important;
}
.request-query-header h1{
    color: #000;
    font-family: 'Euclid Circular A' !important;
font-size: 16px !important;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 125% */
letter-spacing: 0.64px;
}
.post-query-body label{
    color: #272727;
font-family: 'Poppins';
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.72px;
}
.post-query-body small{
    color: #5F5F5F;
font-family: 'Poppins';
font-size: 9px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.42px;
}
.post-query-body input{
    border-radius: 3px;
border: 1px solid #E1E3E6;
background: #FFF;
}
.post-query-body input::placeholder{
    color: #929292;
font-family: 'Poppins';
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.6px;
}
.post-query-body textarea::placeholder{
    color: #929292;
font-family: 'Poppins';
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.6px;
}
.post-query-body i{
    color: #000;
}
.post-query-body select{
  color: #929292;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.6px;
height: 37.6px;
}
#note-text{
    color: #B71919;
font-family:'Poppins';
font-size: 8px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.48px;
}
.draft-btn{
    background-color: #fff;
    border: 1px solid #09B451;
    color: #09B451;
    border-radius: 4px;
    padding: 5px 10px;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.12px;
}
.draft-btn i{
    color: #09B451;
}
.draft-btn:hover{
    background-color: #09B451;
    color: #fff;
    transition: all ease-out 0.2s;
}
.draft-btn:hover i{
    color: #fff;
}
.post-query-footer{
    display: flex;
    justify-content: space-between;
}
.post-btn{
    background-color: #09B451;
    color: #fff;
    font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.12px;
padding: 5px 20px;
border: none;
border-radius: 4px;
}
.confirm-text p{
    color: #09B451;
text-align: center;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.24px;
}
.table{
    border: 1px solid #DDD;
}
.table {
    width: 100%;
    overflow-x:scroll;
  }
  

.table th{
    color: var(--grey-grey-50, #6B7280);
    font-family: 'Inter';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 153.846% */
    padding: 13px 10px !important;
    border-bottom: 1px solid #E5E5E5;
    white-space: nowrap; 
}
.table td{
    color: #2F2F2F;
font-family: 'Inter';
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 153.846% */
padding: 15px 10px !important;
white-space: nowrap; 
}
.hide-rowline{
  white-space: normal !important;
}
.table td button{
  margin: 1px 0;
  white-space: nowrap; 
}
.table i{
  cursor: pointer;
}
.outer-table-border{
    border: 1px solid #ddd;
    overflow-x:auto;
    width: 100%;
    background-color: #fff;
}
.desc-ellipse{
  display: block;
  width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.outer-table-border h4{
    color: var(--grey-grey-90, #111827);
font-family: 'Poppins';
font-size: 16px;
font-style: normal;
font-weight: 600;
padding:1px 20px;
padding-top: 10px;
}
.view-btn{
    background-color: #09B451;
    color: #FFF;
font-family: 'Inter';
font-size: 11px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 166.667% */
border-radius: 20px;
border: none;
padding: 1px 10px;
}
.edit-btn{
    color: #6D6D6D;
font-family: 'Poppins';
font-size: 11px;
font-style: normal;
font-weight: 500;
line-height: 12px; /* 109.091% */
letter-spacing: 1px;
}
.edit-btn{
    border-radius: 20px;
border: 1px solid #C4C4C4;
background: #FFF;
width: 60px;
height: 25px;
}
.attach-btn{
    background-color: #09B451;
    color: #FFF;
font-family: 'Euclid Circular A', sans-serif;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 181.818% */
padding: 2px 10px;
border: none;
border-radius: 2px;
}
.attach-btn i{
    padding: 0 2px;
}
.chat-btn{
    background-color: #09B451;
    color: #FFF;
font-family: 'Euclid Circular A', sans-serif;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 181.818% */
padding: 2px 5px;
border: none;
border-radius: 2px;
}
.chat-btn i{
    padding: 0 2px;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: 1px solid #ddd;
}
.new-filter input::placeholder {
    color: #B1B1B1;
    font-family: 'Poppins';
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    padding-left: 10px;
    padding-top: -10px;
  }
  .new-filter {
    display: flex;
    justify-content: space-between;
    padding: 1px 18px;
    padding-bottom: 10px;
  }
  .new-filter button {
    border: none;
    padding: 5px 25px;
    border-radius: 8px;
    border: 1px solid var(--grey-grey-20, #e5e7eb);
    background: var(--grey-grey-0, #fff);
    border-radius: 3px;
    color: var(--grey-grey-90, #111827);
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .new-filter select{
    width: 200px;
    height: 33px;
    color: #727272;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 181.818% */
  }
  .new-filter label{
    color: #000;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
  }
  .input-filterbox {
    display: flex;
  }
  .new-filter input.search {
    width: 200px;
    border: 1px solid #dedede;
    display: block;
    padding: 5px 30px;
    border-radius: 5px;
    background: transparent url("../image/Search.svg") no-repeat 13px;
  }
  .new-filter input {
    height: 33px;
  }
  .new-filter h5 {
    padding-top: 4px;
  }
  @media (max-width: 1000px) {
    .new-filter {
      display: block;
    }
    .new-filter button {
      margin-top: 10px;
    }
  }
  @media (max-width: 530px) {
    
    .input-filterbox input {
      margin: 10px 0;
    }
  }
  .input-filterbox input[type] {
    font-size: 14px;
  }
  .hidden_row{
    display: none;
  }
  .bi-chevron-down{
    cursor: pointer;
  }
  .hide-rowline p{
    margin-bottom: 0 !important;
    padding:0 30px;
  }

 /* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip);
  font-family: Helvetica, sans-serif;
  text-align: center;
  width: 170px;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */ 
/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}


  /*** switch CSS ***/
  .switch-box input {
    display : none;
  }
  .switch-box label {
    position: relative;
    cursor: pointer;
    display :block;
    width: 42px;
    height: 19px;
    background: #cccccc;
    border-radius: 50px;
    transition: 300ms linear;
  }
  
  .switch-box label:before {
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    transition: left 300ms linear;
  }
  
  .switch-box input:checked + label {
    background: #09B451;
  }
  
  .switch-box input:checked + label:before {
    left: 23px;
  }

  /*** profile CSS ***/
  .profile-info{
    display: flex;
    align-items: center;
  }
  .profile-info h4{
    color: #000;
    font-family: 'Poppins';
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1px
  }
  .profile-info h6{
    color: #5B5B5B;
  font-family: 'Poppins';
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 1px
  }
  .profile-edit-btn button{
    border-radius: 20px;
  border: 1px solid #C4C4C4;
  background: #FFF;
  padding: 7px 10px;
  color: #6D6D6D;
  font-family: 'Poppins';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 92.308% */
  letter-spacing: 1px;
  }
  .profile-box{
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
  border: 1px solid #E0E0E0;
  background: #FFF;
  padding: 15px 20px;
  }
  .profile-heading{
    color: #000;
  font-family: 'Poppins';
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 60% */
  letter-spacing: 1px;
  }
  .profile-info h5{
    color: #000;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 60% */
  letter-spacing: 1px;
  }
  
  .profile-form h5{
    color: #7A7A7A;
  font-family: 'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 85.714% */
  letter-spacing: 1px;
  }
  .profile-form h6{
    color: #000;
  font-family: 'Poppins';
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 75% */
  letter-spacing: 1px;
  }
  
  .profile-form{
    margin: 25px 0;
  }
  
  /*** transaction CSS ***/
  .table-column {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 4px;
  }
  table{
    width: 100%;
  }
 .table-column th,
  td {
    text-align: left;
    padding: 8px;
  }

  #table_detail th {
    color: var(--grey-grey-50, #6b7280);
    font-family: 'Inter';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 153.846% */
    border-top: 1px solid var(--grey-grey-20, #e5e7eb);
    border-bottom: 1px solid var(--grey-grey-20, #e5e7eb);
    padding: 20px 10px;
  }
  #table_detail td {
    color: #2F2F2F;
    font-family: 'Inter';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 153.846% */
    border-top: 1px solid var(--grey-grey-20, #e5e7eb);
    padding: 20px 10px;
  }
  .table-column h5 {
    color: var(--grey-grey-90, #111827);
    text-align: left;
    font-family: "Poppins";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .row-disable{
    background-color: rgb(228, 228, 228);
  }
  .row-disable button{
    background-color: rgb(228, 228, 228);
    border: 1px solid rgb(138, 138, 138);
    color: rgb(138, 138, 138);
  }
  .input-selectbox select{
    width: 200px;
    color: #B1B1B1;
font-family: 'Poppins';
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 181.818% */
  }
  .new-filter label{
    color: #000;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
padding-bottom: 10px;
  }

  /*** contact CSS ***/
  .contact-container {
    text-align: center;
    font-family: 'Inter', sans-serif;
  }
  
  .contact-container h5 {
    font-weight: 600;
    font-size: 40px;
    line-height: 54px;
  }
  
  .contact-container p {
    font-size: 18px;
    line-height: 24px;
    color: #717171;
  }
  
  .contact-row {
    background: #FFFFFF;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
  }
  
  .contact-info {
    background-color: #09B451;
    color: #fff;
    border-radius: 10px;
    padding: 40px;
  }
  
  .contact-info h5 {
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
  }
  
  .contact-info p {
    font-size: 12px;
    color: #fff;
  }
  
  .contact-info li {
    list-style: none;
    font-size: 12px;
    margin: 40px 0;
  }
  
  .contact-info a {
    text-decoration: none;
    color: #fff;
  }
  
  .contact-info h6 {
    font-size: 28px;
    line-height: 42px;
  }
  
  .note-info {
    margin: 20px 0;
  }
  
 .social-iconsbox i{
    background-color: #000;
    color: #fff;
    padding: 7px 9px;
    border-radius: 100%;
    cursor: pointer;
 }
  
 .social-iconsbox i:hover{
     background-color: #fff;
     color: #09B451;
 }
  .contact-column {
    padding: 20px;
  }
  
  .contact-form {
    font-family: 'Inter', sans-serif;
  }
  
  .contact-form form {
    display: flex;
    justify-content: space-evenly;
  }
  
  .contact-form label{
    color: #8D8D8D;
font-family: 'Poppins';
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 166.667% */
  }
  .contact-form input::placeholder{
    color: #8D8D8D;
font-family: 'Poppins';
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 142.857% */
  }
  .contact-form input {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #8D8D8D;
  }
  
  .text-area1 {
    display: flex;
    justify-content: center;
  }
  
  .text-area1 textarea {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #8D8D8D;
  }
  
  .contact-btn {
    display: flex;
    justify-content: flex-end;
    margin-right: 35px;
  }
  
  .contact-btn button {
    background-color: #09B451;
    font-family: 'Poppins';
    color: #fff;
    text-decoration: none;
    font-size:13px;
    padding: 12px 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-weight: 500;
    border:none;
  }
  
  .contact-btn a:hover {
    color: #fff;
  }
  
  .contact-img {
    display: flex;
    justify-content: flex-end;
    margin-right: 35px;
  }
  
  .contact-img img {
    transform: rotate(-29.75deg);
  }
  
  .contact-circleimg {
    position: absolute;
    margin-left: 17rem;
    margin-top: -10rem;
  }
  
  @media (max-width:560px) {
    .contact-form form {
      display: block;
    }
  
    .text-area1 {
      display: block;
    }
  
    .contact-circleimg {
      display: none;
    }
  }
  .contact-main-container{
    margin-top: 6.99%;
  }
  .terms-page h4{
  color: #000;
  font-family: 'Euclid Circular A', sans-serif;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 31px;
}
.terms-page p{
  color: #000;
  font-family: 'Euclid Circular A', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 31px;
}
.terms-page b{
  font-weight: 500;
}

/*** about us CSS ***/
.about-banner-section{
    text-align: center;
}
.about-banner-section img{
    width: 100%;
    height: auto;
}
.about-banner-section h5{
    color: var(--Black, #14142B);
    font-family: 'Euclid Circular A', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 48px */
letter-spacing: 1px;
}
.about-banner-section p{
    color: #646464;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 50px; /* 294.118% */
letter-spacing: 1px;
}
.how-it-workrow h6{
    color: #FFF;
font-family: 'Euclid Circular A', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 3.2px;
}
.how-it-workrow p{
    color: #FFF;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 36px; /* 180% */
}
.how-it-workrow{
    background-color: #09B451;
    text-align: center;
}
.gif-box{
    text-align: center;
    background: #FFF;
box-shadow: 4px 4px 4px 4px rgba(201, 201, 201, 0.25);
padding: 20px 10px;
margin: 10px 0;
height:386px;
}
.gif-box img{
    width: 200px;
    height: 130px;
}
.gif-box h5{
    color: #000;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 266.667% */
}
.gif-box h6{
    color: #000;
text-align: center;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 178.571% */
}
.gif-left-column{
    background: rgba(13, 200, 92, 0.13);
    padding: 30px;
}
.gif-right-column{
    background: rgba(0, 245, 104, 0.37);
    padding: 30px;
}
.gif-left-column h3{
    color: var(--Gray-1, #333);
    font-family: 'Poppins';
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 60px;
}
.gif-right-column h3{
    color: var(--Gray-1, #333);
    font-family: 'Poppins';
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 60px;
}
@media (max-width:900px) {
    .gif-left-column h3{
        padding-left: 0;
    }
    .gif-right-column h3{
        padding-left: 0;
    }
}
/*** faq CSS ***/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #4f4f4f;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #4f4f4f;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
.faq-list p a{
  display: inline-flex !important;
  padding: 0 !important;
}
.section-bg {
  background-color: #f3f5fa;
 padding: 20px;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #09B451;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.step-number{
  display: flex;
  align-items: center;
}
.fa-circle-check{
  color: #09B451;
  font-size: 20px;
}
.step-number h6{
  color: var(--base-gray-400, #323238);
  font-family: 'Euclid Circular A', sans-serif;
font-size: 13px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 28.419px */
}




/* chat CSS */
.side-msgbox{
display: flex;
align-items: center;
}
.msg-text h5{
color: #62AFE7;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
letter-spacing: 0.42px;
}
.msg-text span{
font-size: 10px;
}
.msg-text h6{
color: #4B4B4B;
font-family: 'Euclid Circular A', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 500;
margin-bottom: 0 !important;
}
.msg-text small{
color: #878787;
font-family: 'Euclid Circular A', sans-serif;
font-size: 10px;
font-style: normal;
font-weight: 500;
}
.left-msg-column{
background-color: #fff;
}
.received-text{
width: auto;
border-radius: 3px;
background: #D7FFE8;
padding: 5px;
}
.received-text p{
margin-bottom: 0 !important;
color: #878787;
font-family: 'Euclid Circular A', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 166.667% */
width: 250px;
}
.received-chat{
display: flex;
align-items: center;
justify-content: end;
margin-top: 10px;
}
.sent-chat{
display: flex;
align-items: center;
justify-content: start;
margin-top: 10px;
}
.sent-text{
border-radius: 3px;
background: #F8F8F8;
padding: 5px;
width: auto;
}
.sent-text p{
margin-bottom: 0 !important;
color: #878787;
font-family: 'Euclid Circular A', sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 166.667% */
width: 250px;
}
.right-chat-column{
background: #FFF;
border-left: 1px solid #E5E5E5;
}
.message-row{
background: #FFF;
box-shadow: 0px 2px 30px 1px rgba(224, 224, 224, 0.25);
}
.type-msg-box{
display: flex;
align-items: center;
}
.type-msg-box button{
border-radius: 2px;
background: #09B451;
color: #FFF;
padding: 6px 20px;
border: none;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.type-msg-box input::placeholder{
color: #BEBEBE;
font-family: 'Euclid Circular A', sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 400;
}
.type-msg-box input{
border-radius: 2px;
border: 1px solid #eaeaea;
background: #FFF;
}
.text-chat-section {
overflow-y: auto;
height: 360px;
}
.left-msg-column{
overflow-y: auto;
height: 360px;
}

.text-chat-section::-webkit-scrollbar {
display: none;
}

.text-chat-section {
-ms-overflow-style: none;
scrollbar-width: none; 
}
.left-msg-column::-webkit-scrollbar {
display: none;
}

.left-msg-column {
-ms-overflow-style: none;
scrollbar-width: none; 
}

.message-seacrhbox{
width: 100%;
background: #FFF;
box-shadow: 0px 4px 30px 1px rgba(224, 224, 224, 0.25);
padding: 10px 0;
}

.search-box{
width: fit-content;
height: fit-content;
position: relative;
}
.input-search{
height: 50px;
width: 50px;
border-style: none;
padding: 10px;
font-size: 18px;
letter-spacing: 2px;
outline: none;
border-radius: 25px;
transition: all .5s ease-in-out;
background-color: #09B451;
padding-right: 40px;
color:#000000;
}
.input-search::placeholder{
color: #AAA;
font-family: 'Euclid Circular A', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 185.714% */
}
.btn-search{
width: 50px;
height: 50px;
border-style: none;
font-size: 20px;
font-weight: bold;
outline: none;
cursor: pointer;
border-radius: 50%;
position: absolute;
right: 0px;
color:#fff;
background-color:#09B451;
pointer-events: painted;  
}
.btn-search:focus ~ .input-search{
width: 300px;
border-radius: 0px;
background-color: transparent;
border-bottom:1px solid rgba(255,255,255,.5);
transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search:focus{
width: 300px;
border-radius: 0px;
background-color: transparent;
border-bottom:1px solid rgba(255,255,255,.5);
transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
#resend_button{
    background:transparent !important;
    color:#32ABDE !important;
}
