body::-webkit-scrollbar-thumb {
  background-color: rgb(0, 0, 0, 0.9);
  border: 1px solid #555555;
  border-radius: 30px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: transparent;
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #18aaca;
  border: 1px solid transparent;
  border-radius: 30px;
}

body {
  max-width: 3840px;
  margin: 0 auto;
}

/* Display Properties starts */
.d-block {
  display: block !important;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-inline-grid {
  display: inline-grid;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-contents {
  display: contents;
}

.d-table {
  display: table;
}

.d-inline-table {
  display: inline-table;
}

.d-table-caption {
  display: table-caption;
}

.d-table-cell {
  display: table-cell;
}

.d-table-column {
  display: table-column;
}

.d-table-column-group {
  display: table-column-group;
}

.d-table-footer-group {
  display: table-footer-group;
}

.d-table-header-group {
  display: table-header-group;
}

.d-table-row {
  display: table-row;
}

.d-table-row-group {
  display: table-row-group;
}

.d-flow-root {
  display: flow-root;
}

.d-revert {
  display: revert;
}

.d-list-item {
  display: list-item;
}

.justify-content-between {
  justify-content: space-between;
}

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

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

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

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

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-row-reverse {
  flex-direction: row-reverse;
}

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

.flex-direction-column-reverse {
  flex-direction: column-reverse;
}

/* display properties ends */

/* opacity */

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

/* cursor starts */

.pointer {
  cursor: pointer;
}

.not-allowed {
  cursor: not-allowed;
}

.cursor-none {
  cursor: none;
}

.no-drop {
  cursor: no-drop;
}

/* overflow starts */

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* cursor end */

/* margin */

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.ml-7 {
  margin-left: 7rem;
}

.ml-8 {
  margin-left: 8rem;
}

.ml-9 {
  margin-left: 9rem;
}

.ml-10 {
  margin-left: 10rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mr-10 {
  margin-right: 10rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.m-6 {
  margin: 6rem;
}

.m-7 {
  margin: 7rem;
}

.m-8 {
  margin: 8rem;
}

.m-9 {
  margin: 9rem;
}

.m-10 {
  margin: 10rem;
}

.m-auto {
  margin: auto;
}

/* margin ends */

/* padding */

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

.pl-9 {
  padding-left: 9rem;
}

.pl-10 {
  padding-left: 10rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pr-9 {
  padding-right: 9rem;
}

.pr-10 {
  padding-right: 10rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.p-5 {
  padding: 5rem;
}

.p-6 {
  padding: 6rem;
}

.p-7 {
  padding: 7rem;
}

.p-8 {
  padding: 8rem;
}

.p-9 {
  padding: 9rem;
}

.p-10 {
  padding: 10rem;
}

/* padding ends */
/* whitepsace starts*/

.white-space-pre-wrap {
  white-space: pre-wrap;
}

.white-space-no-wrap {
  white-space: nowrap;
}

.white-space-normal {
  white-space: normal;
}

/* whitespace ends */

/* font size starts */

.fs-8 {
  font-size: 8px;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

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

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-50 {
  font-size: 50px;
}

/* font size ends */

/* font weight starts */

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-bold {
  font-weight: bold;
}

.fw-bolder {
  font-weight: bolder;
}

/* font weight ends */

/* width starts */

.w-100 {
  width: 100%;
}

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

.w-fit-content {
  width: fit-content;
}

.w-0 {
  width: 0;
}

.w-10 {
  width: 10%;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-inheirt {
  width: inherit;
}

.w-auto {
  width: auto;
}

.w-initial {
  width: initial;
}

/* width ends */

/* height starts */

.h-100 {
  height: 100%;
}

.max-height-100 {
  max-height: 100%;
}

.h-fit-content {
  height: fit-content;
}

.h-0 {
  height: 0;
}

.h-10 {
  height: 10%;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-inheirt {
  height: inherit;
}

.h-auto {
  height: auto;
}

.h-initial {
  height: initial;
}

/* height ends */

/* content center starts */

.content-center {
  margin: 0 auto;
}

.vertical-align-middle {
  vertical-align: middle;
}

.vertical-align-baseline {
  vertical-align: baseline;
}

/* content center ends */

/* postion starts */

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.static {
  position: static;
}

.sticky {
  position: sticky;
}

/* position ends */

/* img starts */

.img-responsive {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

/* img ends */

/* text align starts */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

/* text align ends */

/* text transform start */

.text-capitalize {
  text-transform: capitalize;
}

/* text decoration starts */

.text-underline {
  text-decoration: underline;
}

.text-none {
  text-decoration: none;
}

/* text decoration ends */

/* colors starts */

.text-white {
  color: white;
}

.text-black {
  color: black;
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: black;
}

.appiness-text-color {
  color: #57bfff;
}

.appiness-bg-color {
  background-color: #00aecb;
}

/* colors ends */

/* container */
.home-container {
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  width: calc(100% - 160px);
  max-width: 1200px;
}
.container {
  margin-right: 0px;
  margin-left: auto;
  box-sizing: border-box;
  width: calc(100% - 80px);
  /* max-width: 1721px; */
  padding: 0 20px;
  box-shadow: -5px 0 5px -5px rgb(0 0 0 / 15%);
}

.footer-container {
  box-sizing: border-box;
  width: calc(100% - 80px);
  max-width: 1280px;
  padding: 0 80px;
  margin: 0 auto;
}

.hero-section-container {
  box-sizing: border-box;
  margin-right: auto;
  padding: 0px;
  margin-right: auto;
  margin-left: 80px;
  width: calc(100% - 80px);
  /* max-width: 1355px; */
  box-shadow: -5px 0 5px -5px rgb(0 0 0 / 15%);
}

.footer {
  margin-left: 76px;
}
/* @media screen and (min-width: 1661px) and (max-width: 1721px) {
  .container {
    width: calc(100% - 50px);
  }
} */
@media screen and (max-width: 767px) {
  .hero-section-container {
    width: 100%;
    margin: 0px !important;
  }

  .home-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 540px;
  }

  .container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 540px;
    margin: auto;
    box-shadow: none;
  }

  .footer-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 540px;
  }

  .footer {
    margin-left: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 100%;
  }

  .footer-container {
    width: 100%;
  }

  .footer {
    margin-left: 0px;
  }

  .hero-section-container {
    width: 100%;
    margin: 0px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1089px) {
  .footer-container {
    padding: 0;
  }
}

@media screen and (min-width: 1090px) and (max-width: 1199px) {}

@media screen and (min-width: 1200px) and (max-width: 1299px) {
  .container {
    padding: 0 30px;
  }
}

@media screen and (min-width: 1300px) and (max-width: 1440px) {
  .container {
    padding: 0 50px;
  }
}

@media screen and (min-width: 1441px) {
  /* .container{
        padding: 0 80px;
    } */
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {

  .container-fluid>.navbar-collapse,
  .container-fluid>.navbar-header,
  .container>.navbar-collapse,
  .container>.navbar-header {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 768px) {

  .main-navbar>.container .navbar-brand,
  .main-navbar>.container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron .h1,
.jumbotron h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron>hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-container {
    width: calc(100% - 80px);
  }
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 60px;
  padding-left: 60px;
}

.jumbotron .h1,
.jumbotron h1 {
  font-size: 63px;
}

.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.main-navbar:after,
.main-navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

/* container ends */

/* navbar */
.desktop-menu {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.main-navbar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  /* background-color: transparent; */
  background-color: #ffffffd4;
  z-index: 9999;
  /* box-shadow: 1px 0px 6px rgb(0 0 0 / 15%); */
  padding-right: 15px;
}

.menu-text {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02rem;
  color: #18aaca;
}

.menu-horizontal {
  position: relative;
  padding-left: 1.9em;
}

.menu-horizontal:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.8em;
  height: 0.16em;
  background: #00aecb;
  box-shadow: 0 0.4em 0 0 #00aecb, 0 0.8em 0 0#00aecb;
}

@media screen and (min-width: 993px) {
  #default-nav:hover .side-nav {
    width: 245px;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.mobile-side-nav {
  width: 245px !important;
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
  z-index: 9999 !important;
}

.side-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255);
  border: 1px solid #e4e5e9;
  backdrop-filter: blur(30px);
  z-index: 9999;
  opacity: 0;
  width: 0;
  transform: translate3d(-50px, 0, 0);
  /* ADDED - move x to 0 on hover */
  cursor: pointer;
  transition: 0.5s all ease-in-out;
}

.active-side-nav {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.appiness-logo {
  max-height: 200px;
  object-fit: contain;
  width: auto;
}

.smiley-logo {
  width: 45px;
  height: 15px;
}

.side-nav {
  overflow-y: auto;
}

.side-nav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: transparent;
}

.side-nav::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.side-nav::-webkit-scrollbar-thumb {
  background-color: #18aaca;
  border: 1px solid transparent;
  border-radius: 30px;
}

.right-side-form::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: transparent;
}

.right-side-form::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.right-side-form::-webkit-scrollbar-thumb {
  background-color: #18aaca;
  border: 1px solid transparent;
  border-radius: 30px;
}

/*sidebar accordion*/
.nav-accordion,
.nav-sub {
  transition: 0.4s ease all;
  display: block;
  padding: 10px 0;
  /* border-bottom: 1px solid #efefef; */
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 24px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-sub {
  max-width: 300px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.nav-accordion-btn {
  border: none;
  background: none;
  width: -webkit-fill-available;
  margin: 0px;
  /* border-bottom: 1px solid #efefef; */
  padding: 0;
}

.blue-border-navbar {
  display: block;
  border-bottom: 1px solid #18aaca;
  margin-block: 12px;
}

.nav-accordion-text {
  transition: 0.4s ease all;
  display: block;
  padding: 10px 0;
  border: none;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 24px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
}

.nav-accordion::before,
.nav-sub::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  background: transparent;
  border: 1px solid transparent;
}

.nav-sub:hover::before {
  animation: animate 1s linear forwards;
}

.nav-accordion:active::before,
.nav-sub:active::before {
  animation: animate 1s linear forwards;
}

@keyframes animate {
  0% {
    width: 0;
    height: 100%;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #18aaca;
    border-left-color: transparent;
  }

  50% {
    width: 100%;
    height: 100%;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #18aaca;
    border-left-color: transparent;
  }

  100% {
    width: 100%;
    height: 100%;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #18aaca;
    border-left-color: transparent;
  }
}

.nav-active,
.nav-accordion:hover,
.nav-sub:hover,
.nav-accordion-text:hover {
  transition: 0.5s ease all;
  color: #18aaca;
}

.nav-active,
.nav-accordion:active,
.nav-sub:active,
.nav-accordion-text:active {
  transition: 0.3s ease all;
  color: #18aaca;
}

.menu-div {
  position: relative;
  top: 38.5%;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid rgba(0, 0, 0, 0.5);
  margin: 0 8px;
  margin-top: 2px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.nav-accordion:hover .triangle-down {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  border-top: 0px solid rgba(0, 0, 0, 0.5);
  border-bottom: 9px solid rgba(24, 170, 202, 1);
}

.nav-accordion:active .triangle-down {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -ms-transition: -ms-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  border-top: 0px solid rgba(0, 0, 0, 0.5);
  border-bottom: 9px solid rgba(24, 170, 202, 1);
}

.nav-active>.triangle-down {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.panel {
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.1s ease-out;
  list-style: none;
  margin: 0px !important;
}

.nav-accordion:hover+.panel,
.panel:hover {
  max-height: 350px !important;
}

.nav-accordion:active+.panel,
.panel:active {
  max-height: 350px !important;
}

/* .nav-accordion:active + .panel, .panel:active{
    max-height: 200px !important;
} */
/* End side main-navbar css*/
/*Start mobile header*/
.mobile-fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: none;
}

.mob-header {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  height: 30px;
  box-sizing: content-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .mobile-fixed-menu {
    display: block;
  }

  .desktop-menu {
    display: none !important;
  }

  .appiness-logo-big {
    display: none !important;
  }

  .menu-horizontal {
    padding-top: 4px;
  }

  .side-nav {
    padding-top: 50px;
    padding-left: 14px;
    background-color: rgba(255, 255, 255, 0.95);
  }

  .form-open-btn {
    left: 0 !important;
    top: 40% !important;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    z-index: 9999 !important;
  }
  .form-open-btn-new {
    left: 0 !important;
    top: 80% !important;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    z-index: 1 !important;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .talk-to-us-h2 {
    margin: 60px auto 0 auto !important;
  }

  .right-side-form .talk-to-us-close-btn {
    top: 70px !important;
  }

  .main-navbar {
    padding-right: 0;
  }
  .main-navbar>.pl-1 {
    padding-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .innerflex-col a {
    font-size: 16px;
  }

  .subscribe-p {
    font-size: 18px;
  }
}

/*End moile header*/
/* footer css start*/
.footer {
  /* border-top: 1px solid #efefef; */
  background: #fff;
  /* margin-top: 20px */
  padding-bottom: 150px;
}

@media screen and (min-width: 1401px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  #footer-content {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    transition: 0.5s ease all;
  }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
  #footer-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    transition: 0.5s ease all;
  }

  .activated-heading {
    border-radius: 4px;
  }

  .footer-headings:hover {
    border-radius: 4px;
  }

  .footer-headings:active {
    border-radius: 4px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1235px) {
  .footer-sub-pages {
    min-height: 310px !important;
  }
}

@media screen and (max-width: 576px) {
  .footer-headings {
    font-size: 14px !important;
    border-bottom: 1px solid #8f8f8f;
  }

  .footer-headings:hover {
    border-radius: 4px;
  }

  .footer-headings:active {
    border-radius: 4px;
  }
}

@media screen and (max-width: 450px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 0px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 992px) {
  .main-navbar {
    box-shadow: none !important;
  }

  .footer-sub-pages {
    max-height: 600px;
    transition: max-height 0.15s ease-out;
    border-radius: 6px !important;
    margin-top: 2rem !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .footer-sub-heading-info {
    transition: 0.5s ease-in-out;
  }

  .fade-animation {
    max-height: 600px !important;
    transition: max-height 0.3s ease-in !important;
  }

  .footer-headings {
    border-bottom: 1px solid #8f8f8f;
  }

  .activated-heading {
    border-radius: 4px;
  }

  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 40px;
  }

  #footer-content {
    transition: 0.5s ease all;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
}

.footer-headings {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #8f8f8f;
  white-space: nowrap;
  background-color: transparent;
  padding: 10px 5px;
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}

.subscribe-newsletter {
  background: #1596ac;
  border-radius: 12px;
  padding: 20px 30px;
}

.footer-headings:hover {
  background-color: #18aaca;
  color: #fff;
}

.footer-headings:active {
  background-color: #18aaca;
  color: #fff;
}

.activated-heading {
  background-color: #18aaca;
  color: #fff;
}

.footer-sub-pages {
  min-height: 60px;
  max-height: 600px;
  transition: max-height 0.15s ease-out;
  border: solid 1px #18aaca;
  border-radius: 0px 4px 4px 4px;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-sub-heading-info ul {
  margin-top: 0;
  margin-bottom: 0rem;
  padding-left: 12px;
  transition: 0.5s ease all;
}

.footer-sub-heading {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #504f4f;
  text-decoration: none;
}

.footer-sub-heading-title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8f8f8f;
  white-space: nowrap;
}

.footer-sub-heading-title a {
  text-decoration: none;
  color: #8f8f8f;
}

.footer-sub-heading-title a:hover,
.footer-sub-heading-title a:active {
  text-decoration: none;
  color: #585353;
}

.technology-grid {
  gap: 60px !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
}

.consulting-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.subscribe-title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.subscribe-description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.sec-heading {
  text-align: left;
  margin: 15px 0 10px;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 400;
  color: #7e7e7e;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.footer-sub-sec-second {
  margin-bottom: 35px;
  margin-top: 10px;
}

.footer-sub-sec {
  margin-bottom: 20px;
  margin-top: 10px;
}

.footer-sub-sec-last {
  margin-top: 10px;
  margin-bottom: 7px;
}

.sub-sec-heading {
  color: #a3aab7 !important;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-decoration: none;
}

.sub-sec-heading-2 {
  color: #a3aab7 !important;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 22px;
  text-decoration: none;
}

.footer-list {
  list-style: none;
  padding-left: 3px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.footer-list li {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-list-item {
  color: #a3aab7 !important;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 15px;
  text-decoration: none;
}

.footer-dot {
  height: 5px;
  width: 5px;
  background-color: #bbb;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}

.footer-hr {
  border-top: solid 1px #1cadc8;
}

.footer-flex {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  padding: 60px 30px 30px;
}

.footer-inner-flex {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  column-gap: 50px;
}

.innerflex-col {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.innerflex-col a {
  color: #504f4f;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.footer-grid-colum-2 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer-col-i-link {
  text-decoration: none;
}

.employee-login {
  font-weight: 500;
  float: left;
  padding: 16px 25px;
  color: #fff;
  background-color: #1dadc8;
  border: none;
  font-size: 18px;
  width: 180px;
  font-weight: 400;
  letter-spacing: 0.03e;
}

.subscribe-p {
  font-size: 22px;
  color: #000;
  margin: 0px;
  letter-spacing: 0.03em;
  margin: 15px 0;
}

.footer-form-flex {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.footer-input {
  border: none;
  background: #ececec;
  padding: 14px 15px;
  border-radius: 0px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer-btn-subscribe {
  cursor: pointer;
  border: none;
  color: #fff;
  background: #1cadc8;
  padding: 12px 15px;
  border: 0;
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03e;
}

.footer-social-link {
  display: flex;
  flex-direction: row;
  column-gap: 7px;
}

.footer-dimond {
  height: 5px;
  width: 5px;
  background-color: #a3a3a3;
  transform: rotate(45deg);
  margin: 0px;
}

.footer-sec-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  margin-top: 100px;
  margin-bottom: 60px;
}

.footer-sec-3-p {
  margin: 0px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.footer-sec-3-flex-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
}

.color-cyan {
  color: #1cadc8;
}

.color-light-gray {
  color: #a3a3a3;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-flex {
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .footer-sec-3 {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .footer-sec-3-flex-box {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*talk to us form*/
.active-right-side-form {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.form-open-btn {
  cursor: pointer;
  border: none;
  z-index: 20;
  position: fixed;
  right: 0;
  top: 40%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center !important;
  background: #10b6d5;
  color: #fff;
  font-size: 11px;
  width: 35px;
  padding: 14px 7px;
}
.form-open-btn-new {
  cursor: pointer;
  border: none;
  z-index: 20;
  position: fixed;
  right: 0;
  top: 55%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center !important;
  color: #fff;
  font-size: 11px;
  width: 55px;
  height: 74px;
  animation-delay: 4s;
  animation-duration: 6.5s;
  color: #10b6d5;
  fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.appiverse {
  color: #10b6d5;
  text-decoration: none;
}
.appiverse:hover {
  text-decoration: underline;
}
.form-open-btn:hover,
.form-open-btn:active {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

.right-side-form .talk-to-us-close-btn {
  position: absolute;
  top: 27px;
  right: 25px;
  font-size: 20px;
  font-weight: 100;
  margin-left: 50px;
  text-decoration: none;
  color: #818181;
}

.talk-to-us-btn-p {
  margin-bottom: 0px;
}

.talk-to-us-sec-1 {
  padding: 30px 25px 0px !important;
}

.talk-to-us-sec-2 {
  padding: 0px 30px 30px 30px;
}

.talk-to-us-h2 {
  font-size: 40px;
  color: #1dadc9;
  font-weight: 500;
  padding-bottom: 8px;
  letter-spacing: 0.03em;
  margin: 20px auto 0 auto;
}

.talk-to-us-h3 {
  padding-bottom: 10px;
  font-size: 15px;
  color: #686a6a;
  font-weight: 100;
  letter-spacing: 0.03em;
  margin: 0;
  padding-left: 4px;
}

.talk-to-us-p {
  padding-bottom: 10px;
  font-size: 17px;
  color: #4cbbe9;
  font-weight: 100;
  margin: 0px;
}

.talk-to-us-label {
  display: inline-block;
  transition: all 0.2s ease;
  position: relative;
  left: 10px;
  top: -50px;
  font-size: 14px;
  color: #1dadc9;
  z-index: 10;
  background: #fff;
}

.talk-to-us-label-phone {
  display: inline-block;
  font-size: 14px;
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
  top: -50px;
  left: 10px;
  background: #fff;
  color: #1dadca;
}

.talk-to-us-form-group {
  position: relative;
  margin-bottom: 25px;
}

.talk-to-us-text {
  width: 100%;
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #000;
  background-color: transparent;
  border: solid 1px #cfcece;
  outline: none;
  z-index: 5;
  border-radius: 10px !important;
  padding: 10px;
  box-sizing: border-box;
}

.talk-to-us-text::placeholder {
  font-size: 16px;
  color: #686a6a;
}

.talk-to-us-text:focus~.talk-to-us-label,
.talk-to-us-text:valid~.talk-to-us-label,
.talk-to-us-text:not(:focus):not(:placeholder-shown):valid~.talk-to-us-label {
  top: -50px;
  font-size: 14px;
  color: #1dadc9;
  z-index: 10;
  background: #fff;
}

.talk-to-us-text:focus,
.talk-to-us-text:valid {
  border: solid 1px #b3d4db !important;
}

.iti {
  width: 100%;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  cursor: pointer;
}

.talk-to-us-btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.talk-to-us-submit {
  width: fit-content;
  border: none;
  padding: 10px 30px;
  background: #1cadc8;
  color: #fff;
  font-size: 17px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, 0.2);
  transition: box-shadow 0.16s ease;
}

.talk-to-us-cancel {
  width: fit-content;
  border: none;
  padding: 10px 30px;
  border: 1px solid #1cadc8;
  color: #1cadc8;
  background: transparent;
  font-size: 17px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, 0.2);
  transition: box-shadow 0.16s ease;
}

.talk-to-us-submit:hover {
  background: #15889c;
  box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, 0.2);
}

.talk-to-us-cancel:hover {
  box-shadow: -1px 6px 10px 0 rgba(120, 60, 20, 0.2);
}

/* .talk-to-us-submit:hover,
.raitalk-to-us-submit:focus {
  
} */
.back-top {
  position: fixed;
  top: 90%;
  right: 0;
  background: #1cadc8;
  padding: 8px 4px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  z-index: 999;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.5s ease all;
}

.back-top:hover,
.back-top:active {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

.back-top span {
  margin-top: 4px;
}

.inno-project-btn:hover,
.services-carousel-btn:hover {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

.inno-project-btn:active,
.services-carousel-btn:active {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

@keyframes back {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

.triangle-up {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  margin: 0 8px;
  margin-top: 2px;
  transition: 0.5s ease all;
  animation: back 2s infinite;
}

.hide-back-to-top {
  cursor: default;
  opacity: 0;
}

/* aos animation starts */
[data-aos="fade-up-custom"] {
  transform: translateY(20px);
}

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

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

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

@media screen and (max-width: 576px) {
  [data-aos="fade-left-custom"] {
    transform: translateX(3px);
  }

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

/* aos animation ends */

/* popup css starts */

/* Youtube Player */

.close {
  float: right;
  position: relative;
  right: 0px;
  cursor: pointer;
  width: 35px;
  height: 29px;
}

.close:hover {
  opacity: 1;
}

.close:before,
.close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 25px;
  width: 2px;
  background-color: #fff;
  z-index: 999;
}

.close:before {
  transform: rotate(45deg);
}

.close:after {
  transform: rotate(-45deg);
}

.youtube-video-popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgb(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  transition: 0.5s ease all;
}

.modal-dialog {
  -webkit-animation-name: fadeDownVideo;
  animation-name: fadeDownVideo;
  webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: 0.5s ease all;
  max-width: 70%;
  width: 100%;
  background: transparent;
  height: 600px;
  position: relative;
  margin: 0 auto;
  top: 3%;
}

.youtube-video-popup iframe {
  transition: 0.5s ease all;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding-top: 46px;
}

.youtube-video-popup iframe::before {
  padding-top: 56.25%;
}

@media screen and (max-width: 576px) {
  .modal-dialog {
    width: 90% !important;
    max-width: 100% !important;
    height: 250px !important;
    top: 25% !important;
  }
}

@-webkit-keyframes fadeDownVideo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeDownVideo {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeUpVideo {
  0% {
    opacity: 1;
    -webkit-transform: translateY();
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
}

@keyframes fadeUpVideo {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
}

.fadeUpVideo {
  -webkit-animation-name: fadeUpVideo !important;
  animation-name: fadeUpVideo !important;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.beroe-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  outline: 0;
  background-color: rgb(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  transition: 0.5s ease all;
}

@media screen and (min-width: 577px) {
  .register-modal {
    transition: 0.5s ease all;
    overflow: auto !important;
  }
}

.register-modal::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgb(0, 0, 0, 0.7);
}

.register-modal::-webkit-scrollbar {
  width: 5px;
  background-color: rgb(0, 0, 0, 0.7);
}

.register-modal::-webkit-scrollbar-thumb {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 30px;
}

.beroe-dialog {
  -webkit-animation-name: fadeDownVideo;
  animation-name: fadeDownVideo;
  webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  transition: 0.5s ease all;
  max-width: 540px;
  width: 100%;
  background: transparent;
  /* max-height: 650px; */
  /* overflow: auto; */
  position: relative;
  margin: 0 auto;
  top: 3%;
  background-color: #27282a;
  padding: 30px;
}

.beroe-dialog::-webkit-scrollbar {
  width: 0px !important;
}

.close-btn {
  float: right;
  position: relative;
  right: 0px;
  cursor: pointer;
  width: 35px;
  height: 20px;
}

.close-btn:hover {
  opacity: 1;
}

.close-btn:before,
.close-btn:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 25px;
  width: 2px;
  background-color: #fff;
  z-index: 999;
}

.close-btn:before {
  transform: rotate(45deg);
}

.close-btn:after {
  transform: rotate(-45deg);
}

#root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.footer-social-content-holder {
  position: relative;
}

.footer-social-content-holder a {
  text-decoration: none;
  color: #1596ac;
}

.subscribe-newsletter-form-flex {
  position: relative;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  width: 35%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 12px 10px 40px;
}

.newsleter-mailicon {
  color: #18aaca;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0;
  margin-top: 0;
  width: 12px;
  height: 11px;
  border-radius: 4px;
  border: solid 1px #18aaca;
}

.newsleter-mailicon:before {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 1px;
  width: 1px;
  height: 5px;
  border-radius: 4px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
  transform: rotate(-54deg);
}

.newsleter-mailicon:after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 1px;
  width: 1px;
  height: 5px;
  border-radius: 4px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: rotate(54deg);
  transform: rotate(54deg);
}

.newsleter-input-field {
  position: relative;
  width: 100%;
  border: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
  height: 100%;
}

input.newsleter-input-field:focus-visible,
input.newsleter-input-field:focus {
  outline: none !important;
  outline-offset: 0px !important;
  border: 0 !important;
  border-bottom: 1px solid #8f8f8f;
}

.newsletter-submit-btn {
  font-weight: 400;
  float: left;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  background-color: #1596ac;
  font-size: 18px;
  border: 0;
}

.newsletter-submit-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.social-content-employee-btn {
  font-weight: 400;
  float: left;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff !important;
  background-color: #1596ac;
  font-size: 18px;
  border: 0;
}

.social-content-employee-btn:hover {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

.mobile-btn {
  display: none;
}

.social-content-row-2,
.social-content-row-1 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: 0px;
  transition: 0.5s ease all;
}

.social-content-row-1 {
  justify-content: space-between;
}

.social-content-menu-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-content-menu-text {
  margin: 15px 0px;
  border-right: 2px solid #1cadc8;
  text-align: end;
}

.social-content-menu-text:nth-last-child(2) {
  border-right: 0px;
}

.social-content-menu-text a {
  font-size: 15px;
  font-weight: 400;
  color: #504f4f;
  line-height: 1;
  padding-inline: 8px;
  padding-block: 0px;
  margin: 4px 0;
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 1311px) {
  .social-content-row-1 {
    justify-content: center;
  }

  .for-careers {
    text-align: center;
  }
}

.social-content-row-1 {
  flex-wrap: wrap-reverse;
}

.social-content-title {
  font-size: 15px;
  font-weight: 400;
  color: #504f4f;
  line-height: 1;
  padding-inline: 0px;
  padding-block: 0px 8px;
  margin: 8px 0 12px;
  display: block;
}

.for-careers {
  margin: 0;
}

.social-content-double-2 {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-flow: column;
}

.social-content-copyright-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.footer-copyright-text {
  padding-right: 12px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin: 10px 2px 15px;
  text-align: end;
}

.footer-copyright-text:last-child {
  padding-right: 0px;
}

.footer-social-iconimg {
  width: 100%;
  max-width: 35px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin-right: 8px;
}

.footer-social-iconimg:hover {
  transition: 0.5s ease all;
  transform: scale(1.1);
}

.newsletter-submit-btn:hover {
  background-color: #0a7486;
  transition: all 0.4s ease-in-out;
}

.social-content-menu-text a:hover {
  transform: translatey(-2px);
  transition: all 0.4s ease-in-out;
}

.footer-social-content-holder a:hover {
  color: #074fa4;
  transition: 0.4s ease all;
}

.sec-learn-more:hover {
  margin-left: 12px;
  transition: 0.4s ease-in-out;
}

.sec-learn-more {
  transition: 0.4s ease-in-out;
}

@media only screen and (min-device-width: 1200px) and (max-device-width: 1350px) {}

@media only screen and (min-device-width: 1025px) and (max-device-width: 1199px) {}

@media only screen and (min-device-width: 992px) and (max-device-width: 1024px) {

  .social-content-employee-btn,
  .newsletter-submit-btn,
  .newsleter-input-field,
  .social-content-title {
    font-size: 14px;
  }

  .social-content-menu-text a {
    font-size: 14px;
    padding-inline: 8px;
    padding-block: 0px;
    margin: 4px 0;
  }

  .footer-copyright-text {
    padding-right: 8px;
    font-size: 14px;
    margin: 10px 2px 10px;
  }

  .footer-social-iconimg {
    max-width: 30px;
  }

  .social-content-title {
    padding-inline: 0;
    padding-block: 0 8px;
    margin: 5px 0 8px;
  }
}

@media only screen and (min-device-width: 769px) and (max-device-width: 991px) {

  .social-content-employee-btn,
  .newsletter-submit-btn,
  .newsleter-input-field,
  .social-content-title {
    font-size: 14px;
  }

  .social-content-menu-text a {
    font-size: 14px;
    padding-inline: 8px;
    padding-block: 0px;
    margin: 4px 0;
  }

  .footer-copyright-text {
    padding-right: 8px;
    font-size: 14px;
    margin: 10px 2px 10px;
    white-space: nowrap;
  }

  .footer-social-iconimg {
    max-width: 25px;
  }

  .social-content-title {
    padding-inline: 0;
    padding-block: 0 8px;
    margin: 5px 0 8px;
    white-space: nowrap;
  }

  .social-content-row-2 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-headings {
    font-size: 18px;
  }

  .social-content-double-1 {
    text-align: center;
  }
}

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

  /* .social-content-row-1 {
    flex-flow: column-reverse;
  } */
  .social-content-menu-holder {
    flex-wrap: wrap;
    flex-basis: 100%;
    justify-content: space-between;
  }

  .social-content-menu-text {
    text-align: center;
    /* flex-basis: 24%; */
  }

  .mobile-btn {
    display: block;
  }

  .desk-btn {
    display: none;
  }

  .social-content-menu-text:nth-last-child(7) {
    border-right: 0px;
  }

  .social-content-menu-text:nth-last-child(4) {
    border-right: 0px;
  }

  .social-content-row-2 {
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }

  .social-content-double-1 {
    text-align: center;
  }

  .social-content-employee-btn {
    padding: 10px 8px;
    font-size: 14px;
  }

  .footer-headings {
    font-size: 18px;
  }

  .footer-copyright-text {
    padding-right: 8px;
    font-size: 14px;
    line-height: 1.4;
    margin: 5px 0px 8px;
    text-align: center;
  }

  .social-content-menu-text a {
    font-size: 16px;
  }

  .social-content-title {
    font-size: 16px;
    padding-inline: 0;
    padding-block: 0 12px;
    margin: 0 auto;
    display: block;
  }

  .footer-social-iconimg {
    max-width: 30px;
    margin-right: 8px;
    margin-block: 8px;
  }

  .subscribe-newsletter-form-flex {
    height: auto;
    min-width: 230px;
    width: 100%;
    border-radius: 12px;
    padding: 6px 8px 8px 40px;
    margin-block: 15px 0px;
  }

  .newsleter-input-field {
    font-size: 14px;
  }

  .newsletter-submit-btn {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    border: 0;
  }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 550px) {
  .social-content-menu-text {
    text-align: center;
    flex-basis: 23%;
  }

  .subscribe-description,
  .social-content-title,
  .social-content-menu-text a {
    font-size: 14px;
  }

  .social-content-menu-text a {
    padding-inline: 4px;
    padding-block: 4px;
    margin: 4px 0;
  }

  .social-content-employee-btn {
    padding: 6px 6px;
    font-size: 14px;
    flex: 1;
  }

  .social-content-copyright-holder {
    justify-content: center;
    flex-flow: wrap;
  }

  .subscribe-newsletter {
    padding: 15px 15px;
  }

  .social-content-double-2 {
    padding-inline: 20px;
  }
}

@media only screen and (max-width: 375px) {
  .social-content-menu-text {
    flex-basis: 32%;
  }

  .social-content-menu-text:nth-last-child(5) {
    border-right: 2px solid #1cadc8;
  }

  /* .social-content-menu-text:nth-last-child(3),
  .social-content-menu-text:nth-last-child(6) {
    border-right: 0;
  } */
  .subscribe-newsletter-form-flex {
    height: auto;
    min-width: auto;
    width: 100%;
    border-radius: 12px;
    padding: 5px 5px 5px 25px;
    margin-block: 12px 0;
  }

  .newsleter-mailicon {
    left: 15px;
  }

  .newsleter-input-field {
    font-size: 12px;
  }

  .newsletter-submit-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .social-content-double-2 {
    padding-inline: 15px;
  }
}

/* custom home icon CSS start */
.custome-home-icon {
  background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat 0 bottom/4px 2px,
    linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right bottom/4px 2px;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
  border: 2px solid;
  border-top: 0;
  border-bottom: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.custome-home-icon::after,
.custome-home-icon::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}

.custome-home-icon::before {
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 4px;
  transform: rotate(45deg);
  top: -5px;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  left: 0;
}

.custome-home-icon::after {
  width: 8px;
  height: 10px;
  border: 2px solid;
  border-radius: 100px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  left: 3px;
  bottom: 0;
}

/* custom home icon CSS end */
/*breadcrumb css - start*/
.breadcrumb {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 6px;
  position: fixed;
  border-radius: 25px;
  z-index: 99;
  top: 12px;
  /* padding-left: 8px; */
  margin-right: 10px;
  width: fit-content;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.breadcrumb li {
  display: inline;
  font-size: 16px;
  font-display: optional;
  color: #56575a;
  font-weight: 300;
  padding: 16px 0px;
}
/* .breadcrumb li:last-child {
  background-color: #ECF9FC;
  padding-right: 6px;
} */
.breadcrumb li>span:last-child {
  background-color: #ECF9FC;
  padding: 16px 8px;
  border-radius: 25px;
}
.breadcrumb li:last-child::before {
  background-color: #ffffff;
}
.breadcrumb li a {
  transition: 0.5s ease all;
  color: #acacac;
  text-decoration: none;
}

.breadcrumb li a:hover {
  transition: 0.5s ease all;
  color: #4e4e4e;
  text-decoration: none;
}

.breadcrumb li+li:before {
  padding: 10px;
  color: #acacac;
  content: "/\00a0";
}

@media screen and (max-width: 991px) {
  .breadcrumb li {
    font-size: 12px !important;
  }

  .breadcrumb {
    top: 70px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .breadcrumb li {
    font-size: 16px !important;
  }
}

/*breadcrumb css - end*/
.second-sec-img-col {
  transition: 0.5s ease-in-out;
}

.second-sec-img-col:hover,
.second-sec-img-col:active {
  transition: 0.5s ease all;
  cursor: pointer;
  transform: scale(1.1);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: #4cbbe9;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

/*talk to us validation*/
.talk-to-us-form-error {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 9px;
  font-size: 12px;
  color: #e75353;
}

.contact-to-us-form-error-captcha {
  font-size: 12px;
  color: #e75353;
  position: absolute;
  bottom: -35px;
  left: 15px;
}

.talk-to-us-form-error-captcha {
  font-size: 12px;
  color: #e75353;
  margin-top: 0px;
  margin-left: 3px;
}

#talk-to-us-error-dec,
#talk-to-us-error-name,
#talk-to-us-error-company,
#talk-to-us-error-email,
#talk-to-us-error-phone,
#talk-to-us-error-location,
#talk-to-us-error-option,
#talk-to-us-error-captcha,
#form-captcha-2 {
  opacity: 0;
}

/*card images*/
.appiness-card-img,
.webfontend-img,
.consulting-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.g-recaptcha {
  transform: scale(0.8) !important;
  transform-origin: 0 0 !important;
}

.fade-animation {
  padding-top: 30px;
  padding-bottom: 30px;
  max-height: 600px;
  transition: max-height 0.3s ease-in;
}

.interlinking-url {
  background-image: linear-gradient(to right,
      #0c516b,
      #4188a1 50%,
      #19abca 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 0;
  position: relative;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.interlinking-url:before {
  content: "";
  background: #54b3d6;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.interlinking-url:hover {
  background-position: 0;
}

.interlinking-url:hover::before {
  width: 100%;
}

.text-bg-blue {
  width: -webkit-fill-available !important;
  padding-inline: 12px !important;
}

@media screen and (min-width: 991px) and (max-width: 1250px) {
  .text-bg-blue {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 991px) and (max-width: 1340px) {
  .home-container {
    width: calc(100% - 150px) !important;
  }
}

@media screen and (max-width: 767px) {
  .tab-h2 {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .tab-h2 {
    font-size: 28px !important;
    margin: 0 !important;
    line-height: 40px !important;
  }

  .hero-section-quotes {
    margin-bottom: 0 !important;
  }

  .main-navbar {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .social-content-menu-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 420px) {
  .social-content-menu-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .social-content-menu-text:nth-last-child(7) {
    border-right: 2px solid #1cadc8;
  }

  .social-content-menu-text:nth-last-child(8) {
    border-right: 0;
  }

  .social-content-menu-text:nth-last-child(6) {
    border-right: 0;
  }

  .social-content-employee-btn {
    margin-block: 20px;
  }

  .mobile-btn {
    display: block;
    margin-left: 50%;
    width: 100%;
  }
}

.emp-login-appiness {
  text-align: center;
  font-size: 18px;
  padding: 10px 18px;
  color: #fff;
  background: #18aaca;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin: 10px auto;
}

.emp-login-appiness:hover {
  box-shadow: 0 14px 15px #64dfff85;
  background-color: #0a7486;
  transition: all .4s ease-in-out;
  color: #fff;
}

.blue-icon,
.white-icon {
  width: auto;
}

.footer-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding-top: 40px;
  gap: 20px;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 40px;
    gap: 20px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 40px;
    gap: 20px;
  }

  .footer-container {
    padding: 0;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 40px;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 370px) {
  .footer-desktop {
    grid-template-columns: 1fr !important;
    gap: 4px;
  }
}

.footer-content-alignment {
  display: flex !important;
  padding-left: 20px
}

@media screen and (max-width: 420px) {
  .footer-desktop {
    gap: 4px;
  }

  .footer-content-alignment {
    padding-left: 12px;
  }
}

@media screen and (max-width: 1356px) {
  .footer-content-alignment {
    gap: 0 !important;
    justify-content: space-between;
  }
}
@media screen and (max-width: 550px) {
.custome-home-icon::before {
    top: -3px;
    width: 10px;
    height: 10px;
  }
  .custome-home-icon {
    width: 14px;
    height: 10px;
  }
  .custome-home-icon::after {
    width: 6px;
    height: 8px;
    left: 2px;
  }
  .breadcrumb {
    padding-left: 6px;
    row-gap: 0;
  }
  .breadcrumb li {
    padding:10px 0px 10px 4px;
  }
  .breadcrumb li+li:before {
    padding: 4px;
  }
  .breadcrumb li>span:last-child {
    padding: 10px 4px;
  }
}
@media screen and (min-width:279px)and (max-width: 550px) {
      .breadcrumb li {
        font-size: 11px !important;
    }
}
.inno-about-img {
  border-radius: 30px;
}
/* .breadcrumb.fixed {
  position: fixed;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
} */

.saha-overlay {
  z-index: -1 !important;
}
.vola-widget-button,.saha-float-button {
  z-index: 10 !important;
}
.vola-widget-button {
    position: fixed !important;
    top: 70% !important;
    bottom: 0 !important;
    right: 0px !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #54b3d6 !important;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.saha-float-input {
  z-index: 1 !important;
}
.saha-float-button {
    right: 0px !important;
    background: #54b3d6 !important;
    top: 80% !important;
    bottom: 0 !important;
    height: 40px;
    width: max-content !important;
}
@media screen and (max-width: 550px) {
  .vola-widget-button {
    position: fixed !important;
  }
  .saha-float-button {
    top: 80% !important;
   }
.form-open-btn-new {
    left: 0 !important;
    top: 60% !important;
}
}
 .image-float {
  display: inline-block; /* ensures transform works properly */
  animation: float 3s ease-in-out infinite;
  will-change: transform; /* smoother animation on GPU */
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* move up 10px at mid-point */
  }
}
@media screen and (max-width:991px){
   .back-top {
      top: 65% !important;
    }
   .vola-widget-button {
      top: 50% !important;
    }
}