/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
button, .cta-btn {
    cursor: pointer;
}

@font-face {
    font-family: 'SafetyMedium'; /* Name the font family */
    src: url('../fonts/SafetyMedium.otf') format('opentype'); /* Path to the .otf file */
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Graphik";
    src: url("../fonts/graphik_family/Graphik-Regular-Trial.otf") format("opentype");
    font-display: swap
}
  
@font-face {
    font-family: "Graphik Compact";
    src: url("../fonts/graphik/graphik_font/GraphikCompact-Regular-Trial.otf") format("opentype");
    font-display: swap
}

[class^="fa-"], /* Matches classes that start with "fa-" */
[class*=" fa-"] /* Matches classes containing " fa-" (in case of multiple classes) */ {
    font-family: 'FontAwesome', sans-serif;
    font-style: normal;
}

.graphik-font {
    font-family: Graphik, Arial, Helvetica, sans-serif;
}

.graphik-cmpt-font {
    font-family: Graphik Compact, Arial, Helvetica, sans-serif;
}

body {
    font-family: Graphik, Arial, Helvetica, sans-serif;
    /* font-family: '__PRIMARY_FONT_e530d6', '__PRIMARY_FONT_Fallback_e530d6'; */
    line-height: 1.6;
    letter-spacing: .18px;
    color: #333;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: center;
    height: 80px;
}
.logo-wrapper-section {
    display: flex;
    align-items: center;
}
.header-wrapper-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-sanesquare-logo {
    height: 48px;
    margin-top: 10px;
    margin-left: 20px;
    width: auto;
}

 /* Logo container */
.logo-container {
    margin-top: 16px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    transform: scale(1); /* Default scale */
}

header.scrolled .logo-container { 
    margin-top: 0px;
    transform: scale(.8);
    transform-origin: left;
}

/* Icon styling */
.logo-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
}

/* Text styling */
.logo-text {
    font-family: 'SafetyMedium', sans-serif;
    margin-top: 6px;
    font-size: 1.6em;
    color: #047ad0;
    font-weight: 600;
    letter-spacing: 2px;
}

header .logo img {
    height: 40px;
}

.nav-items {
  display: flex;
  align-items: center;
}

.nav-items.hidden {
  display: none;
}


.nav-items a {
    margin-right: 20px;
    text-decoration: none;
    letter-spacing: .2px;
    font-size: 16px;
    color: #626262;
    font-weight: 500;
}
.nav-items a:hover, .nav-items a:active {
    color: #1d1d1d;
}

.demo-btn {
  display: none;
  padding: 8px 16px;
  background-color: #068be6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.3s ease;
  font-family: 'Graphik', sans-serif;
  letter-spacing: .2px;
}

.demo-btn-wrapper {
    display: none;
}

header.scrolled .demo-btn {
  display: inline-block;
}

header.scrolled .demo-btn-wrapper  {
    display: inline-block;
}

/* Hero Section Styling */
.orgApp-hero {
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}
.orgApp-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0; /* Start fully transparent */
    animation: fadeInBackground 3s ease-in 2s forwards; /* Fade-in after a 2-second delay */
    z-index: -1;
}
.orgApp-hero-container {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Hero Content Styling */
.hero-content {
    max-width: 700px;
    opacity: 0;
    animation: fadeInContent 1.5s ease-out forwards 0.5s;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #033c69;
    line-height: 1.32;
    font-weight: normal;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpText 1s ease-out forwards 1s;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpText 1s ease-out forwards 1.5s;
    line-height: 1.8;
}

.hero-content .btn-primary {
    display: inline-block;
    padding: 12px 20px;
    color: #FFF;
    background-color: #006ec4;
    border-radius: 5px;
    text-decoration: none;
    opacity: 0;
    margin-top: 24px;
    transform: translateY(10px);
    animation: slideUpText 1s ease-out forwards 2s;
    transition: background-color 0.3s ease, transform 0.3s ease;
    outline: none;
    box-shadow: none;
    border: 0;
    font-size: 1rem;
}

/* Hero Image Styling */
.hero-image {
    max-width: 700px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInImage 2s ease-out forwards 1s;
}

/* Button Hover Effects */
.hero-content .btn-primary:hover {
    background-color: #005ba1;
    transform: translateY(-5px);
}

/* Keyframe Animations */
@keyframes fadeInBackground {
    to {
        opacity: 1; /* Fully visible */
    }
}

@keyframes fadeInHero {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInImage {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/*-------------Easy to use ---------*/
.orgApp-easy-to-use {
    padding: 100px 0;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.orgApp-easy-to-use  h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: normal;
}
.orgApp-tab-group {
    width: 80%;
}
.orgApp-tab-wrapper {
    grid-template-columns: minmax(0, 1fr);
}
.orgApp-tab-group-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1pc;
}
.orgApp-tab-group-inner button.orgApp-tab-btn {
    font-size: 1.1rem;
    border: 1px solid transparent;
    letter-spacing: .04rem;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 10px 16px;
    background: #f7f7f7;
}
.orgApp-tab-group-inner button.active {
    color: #091e42;
    background-color: #deebff;
}

.orgApp-tab-content {
    display: none;
}
.orgApp-tab-content.active {
    display: block;
}
.orgApp-tab-content-para {
    margin-bottom: 40px;
}
.orgApp-tab-btn.active {
    color: #091e42;
    background-color: #deebff;
}

.orgApp-tab-panels{
    padding-top: 64px;
    padding-bottom: 0;
}
.orgApp-tab-inner-content {
    display: grid;
    max-width: 100%;
    box-sizing: border-box;
    /* grid-template-columns: repeat(12,minmax(0,1fr)); */
    gap: 2pc;
    align-items: stretch;
}
.orgApp-tab-inner-content >:first-of-type:not(style):not(:first-of-type:not(style)~*) {
    grid-column-start: 1;
    grid-column-end: 7;
    text-align: left;
}
#tab1 .orgApp-tab-inner-content >:first-of-type:not(style):not(:first-of-type:not(style)~*) {
    grid-column-start: 1;
    grid-column-end: 5;
}
.orgApp-tab-inner-content >:last-of-type:not(style):not(:last-of-type:not(style)~*) {
    grid-column-start: 7;
    grid-column-end: 12;
}
.orgApp-tab-content-wrapper {
    font-size: 1rem;
    letter-spacing: 0;
}
 .orgApp-tab-content-wrapper  p {
    margin-bottom: 1rem;
 }
.orgApp-tab-content-wrapper ul {
    list-style-type: none;
    padding-left: 20px;
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 0;

}
 .orgApp-tab-content-wrapper ul li p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.orgApp-tab-content-wrapper ul li p b {
    font-weight: 600;
    font-family: sans-serif;
}
.orgApp-tab-content-wrapper ul li::before {
    content: "";
    position: absolute;
    margin-left: -20px;
    width: 11px;
    height: 9px;
    background: url(data:image/svg+xml;base64,ICAgIDxzdmcKICAgICAgICBmaWxsPSJjdXJyZW50Q29sb3IiCiAgICAgICAgc3Ryb2tlPSJjdXJyZW50Q29sb3IiCiAgICAgICAgdmVyc2lvbj0iMS4yIgogICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICB2aWV3Qm94PSIwIDAgMzIgMzAiCiAgICAgICAgd2lkdGg9IjExIgogICAgICAgIGhlaWdodD0iOSIKICAgID4KICAgICAgICA8cGF0aCBkPSJtMS41IDE2LjRjMS44LTEuNyA0LjItMC4zIDQuMi0wLjNsNS42IDUuOSAxNS40LTE4LjdjMCAwIDEuNy0xLjIgMy41IDAuMSAxLjkgMS40IDAuOCAzLjYgMC44IDMuNmwtMTggMjJoLTJsLTkuMS04LjdjMCAwLTIuMS0yLjItMC40LTMuOXoiIC8+CiAgICA8L3N2Zz4=) 50% no-repeat;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 0;
    padding-left: 0;
    padding-top: 14px;
    padding-right: 0;
}

/*----------- product-highlights  ---------*/
.orgApp-highlights-section {
    background: #f7f7f7;
    padding: 40px 0;
}
.product-highlights {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.product-highlights .item {
    text-align: center;
    color: #3a4d66;
    font-family: Arial, sans-serif;
    width: 100%;
}

.product-highlights .item  .icon {
    font-size: 40px;
    color: #006ec4;
    margin-bottom: 16px;
}

.product-highlights .item .title {
    font-size: 1.2em;
    font-weight: bold;
    color: #2e3851;
    margin-bottom: 8px;
}

.product-highlights .item .description {
    font-size: 0.95em;
    line-height: 1.5;
}

.animated-bell-icon {
  animation: bellAnimation 1.5s ease-out forwards;
  transform-origin: center;
  opacity: 0; /* Initially invisible */
}

@keyframes bellAnimation {
  0% {
    transform: scale(0.5) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(20deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.animated-bell-icon.appear {
  animation-play-state: running;
}

.animated-calendar-icon {
  animation: bounceIn 1.5s ease-out forwards;
  transform-origin: center;
  opacity: 0; /* Initially invisible */
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.4) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.animated-calendar-icon.appear {
  animation-play-state: running;
}

.animated-balloon-icon {
  animation: balloonAnimation 1.5s ease-out forwards;
  transform-origin: center;
  opacity: 0; /* Initially invisible */
}

@keyframes balloonAnimation {
  0% {
    transform: scale(0.5) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.animated-balloon-icon.appear {
  animation-play-state: running;
}

/*-------------- Elementor -----------------------*/

.orgApp-elementor {
    padding: 100px 0;
    text-align: center;
    background: #f7f7f7;
}
.orgApp-elementor h2.elementor-heading-title {
    font-size: 2rem;
    color: #31335A;
    margin-bottom: 40px;
    font-weight: normal;
}
.orgApp-elementor-container {
    gap: 48px;
    display: flex;
    flex-direction: column;
    grid-template-columns: minmax(0, 1fr);
}
.orgApp-elementor-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.orgApp-elementor-row:nth-child(1n) .orgApp-elementor-widget-wrap {
    padding-left: 40px;
    padding-right: 16px;
}
.orgApp-elementor-row:nth-child(2n) .orgApp-elementor-widget-wrap {
    padding-left: 0;
    padding-right: 40px;
}
.orgApp-elementor-row:last-child {
    margin-bottom: 0;
}
.orgApp-elementor-column {
text-align: left;
   position: relative;
   flex: 1;
   max-width: 100%;
}
.orgApp-elementor-column.image-column {
    background: #ffff;
    box-shadow: 0 20px 50px 0 rgb(168 168 168 / 15%);
    border-radius: 12px;
    padding: 20px 10px;
}
.orgApp-elementor-column .orgApp-elementor-widget-wrap {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.orgApp-elementor-widget-wrap .elementor-widget-icon {
    margin-bottom: 16px;
}
.elementor-widget-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: 'Graphik Compact', sans-serif;
}
.elementor-icon {
    display: inline-block;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #818a91;
    font-size: 50px;
    text-align: center;
    box-shadow: none;
    text-decoration: none;
}

/*------------Mobile app-------------------*/
.orgApp-mobile-app  {
    padding: 100px 0;
    text-align: center;
    background: #FFF;
}
.orgApp-mobile-app  h2 {
    font-size: 2rem;
    color: #31335A;
    margin-bottom: 20px;
    font-weight: normal;
}
.orgApp-mobile-app p.sub-title {
    font-size: 1rem;
    letter-spacing: .2px;
    padding: 0px 40px;
    width: 100%;
}
.orgApp-mobile-app-container {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
}
.orgApp-mobile-app-container .orgApp-mobile-app-wrapper {
    display:flex; 
    gap:40px; 
    flex-direction: row;
    margin-top: 40px;
}

.orgApp-mobile-app-container ul {
    list-style-type: none;
    padding-left: 20px;
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 0;
}

.orgApp-mobile-app-container ul li p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.orgApp-mobile-app-container ul li::before {
    content: "";
    position: absolute;
    margin-left: -20px;
    width: 11px;
    height: 9px;
    background: url(data:image/svg+xml;base64,ICAgIDxzdmcKICAgICAgICBmaWxsPSJjdXJyZW50Q29sb3IiCiAgICAgICAgc3Ryb2tlPSJjdXJyZW50Q29sb3IiCiAgICAgICAgdmVyc2lvbj0iMS4yIgogICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICB2aWV3Qm94PSIwIDAgMzIgMzAiCiAgICAgICAgd2lkdGg9IjExIgogICAgICAgIGhlaWdodD0iOSIKICAgID4KICAgICAgICA8cGF0aCBkPSJtMS41IDE2LjRjMS44LTEuNyA0LjItMC4zIDQuMi0wLjNsNS42IDUuOSAxNS40LTE4LjdjMCAwIDEuNy0xLjIgMy41IDAuMSAxLjkgMS40IDAuOCAzLjYgMC44IDMuNmwtMTggMjJoLTJsLTkuMS04LjdjMCAwLTIuMS0yLjItMC40LTMuOXoiIC8+CiAgICA8L3N2Zz4=) 50% no-repeat;
    margin-bottom: 0;
    margin-right: 0;
    margin-top: 0;
    padding-left: 0;
    padding-top: 14px;
    padding-right: 0;
}

/*------------- FAQ ------------------------*/
.orgApp-faq {
    padding: 100px 0;
    text-align: center;
    background: #f7f7f7;
}

.orgApp-faq  h2 {
    font-size: 2rem;
    color: #31335A;
    margin-bottom: 20px;
    font-weight: normal;
}
.orgApp-faq-warpper {
    display: flex;
    flex-wrap: wrap;
}
.faq-img-container {
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}
.orgApp-faq  .subheading {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 20px;
}

.faq-container {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
}

.faq-item {
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item ul {
    padding-left: 20px;
    text-align: left;
}

.faq-question {
  color: #2c3e50;
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.open .faq-question {
    background-color: #e4f0ff;
}

.faq-question .arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 15px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer p {
    text-align: left;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(90deg);
}

/*----------cta section--------------*/
.orgapp-cta-contact {
      padding: 100px 0;
      text-align: center;
      opacity: 0;
      animation: fadeIn 1s forwards 1.5s;
      background: #fff;
}

.orgapp-cta-contact h2 {
    font-size: 2rem;
    color: #31335A;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-btn {
      background-color: #207dc5;
      color: white;
      padding: 20px;
      margin-top: 40px;
      font-size: 1em;
      border-radius: 8px;
      height: 67px;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: fadeIn 1s forwards 2.5s;
}
.orgapp-cta-btn-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 16px;
}
.cta-btn:hover {
  background-color: #004e8a;
  transform: translateY(-5px);
}
.cta-pdf-btn {
    border: 1px solid #006EC1;
    color: #006EC1;
    padding: 20px;
    height: 67px;
    background-color: #ffffff;
    margin-top: 40px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    cursor: pointer;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s forwards 2.5s;
}
.cta-pdf-btn:hover {
    border: none;
    background-color: #004e8a;
    color: #ffffff;
    transform: translateY(-5px);
  }
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*---------------------------------*/
@media only screen and (min-width:920px) {
    .orgApp-demo-version section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media only screen and (min-width:920px) and (max-width:1200px) {
    .hero-image {
        max-width: 500px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: .8rem;
    }
    .orgApp-section-wrapper, .orgApp-hero-container, .header-wrapper-section, .orgApp-tab-group {
        width: calc(100% - 120px);
    }
    .orgApp-mobile-app p.sub-title {
        padding: 0;
    }
    .orgApp-tab-inner-content  {
        display: flex;
    }
    .orgApp-mobile-app-container .orgApp-mobile-app-wrapper, .orgApp-tab-inner-content {
        flex-direction: column;
    }
    #tab1 .orgApp-tab-inner-content {
        flex-direction: row;
    }
    .orgApp-tab-inner-content >:last-of-type:not(style):not(:last-of-type:not(style)~*) {
        width: 75%;
    }
}
@media only screen and (min-width:1200px) {
    .orgApp-section-wrapper {
        width: 80%;
    }
}
@media only screen and (min-width:1200px) {
    .faq-container {
        max-width: 60%;
    }
}
@media only screen and (min-width:1024px) and (max-width: 1200px) {
    .header-sanesquare-logo {
        height: 40px;
        margin-left: 0;
    }
}
@media only screen and (max-width:1024px) {
    .header-sanesquare-logo {
        display: none;
    }
}


@media only screen and (min-width:650px) and (max-width:920px) {
    .orgApp-hero-container {
        flex-direction: column;
    }
    .hero-image {
        max-width: 75%;
    }
    .header-sanesquare-logo  {
        display: none;
    }
    .orgApp-section-wrapper, .orgApp-hero-container, .header-wrapper-section, .orgApp-tab-group {
        width: calc(100% - 80px);
    }
    .orgApp-highlights-section, .orgApp-hero, .orgApp-easy-to-use, .orgApp-elementor, .orgApp-mobile-app, .orgApp-faq, .orgapp-cta-contact {
        display: flex;
        justify-content: center;
    }
    .orgApp-tab-inner-content, .orgApp-mobile-app-container .orgApp-mobile-app-wrapper {
        display: flex;
        flex-direction: column;
    }
    .header-wrapper-section .nav-items a {
        font-size: 14px;
        margin-right: 16px;
    }
    .ssq-lp-navbar-lang-dropdown {
        margin-right: 32px;
    }
}
.orgApp-scroll-btn {
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none; /* Initially hidden for non-mobile views */
    min-width: 40px;
    height: 40px;
    box-shadow: 2px 1px 10px #0000002e;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
}
.orgApp-tab-title-mobile {
    display: none;
}
@media only screen and (max-width:650px) {
    header .nav-items .nav-item, .faq-img-container {
        display: none;
    }
    header .logo-text {
        font-size: large;
        letter-spacing: 1px;
    }
    .orgApp-hero-container {
        width: 100%;
    }
    .orgApp-hero {
        padding-top: 100px;
        padding-left: 0;
        padding-right: 0;
    }
    .orgApp-hero::after {
        background-size: initial;
        background-repeat: no-repeat;
        background-position: left bottom;
    }
    .orgApp-hero-container .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .orgApp-hero-container {
        display: flex;
        flex-direction: column;
        flex:1;
    }
    .orgApp-hero-container .hero-image {
        max-width: 320px;
    }
    .orgApp-hero-container .hero-content {
        padding: 0 30px;
    }
    .orgApp-tab-content-wrapper {
        grid-column-end: 11 !important;
    }
    .product-highlights {
        flex-direction: column;
        padding: 0 24px;
    }
    .orgApp-mobile-app-container .orgApp-mobile-app-wrapper {
        flex-direction: column;
        margin-top: 20px;
    }
    .orgApp-mobile-app-wrapper .image-container img {
        max-width: 100%;
    }
    .orgApp-elementor-row {
        flex-direction: column;
        margin-bottom: 0;
    }
    .orgApp-easy-to-use, .orgApp-elementor, .orgApp-mobile-app, .orgApp-faq, .orgapp-cta-contact {
        padding: 40px 24px;
    }
    .orgApp-easy-to-use h2, .orgApp-elementor h2.elementor-heading-title, .orgApp-mobile-app h2, .orgApp-faq h2, .orgapp-cta-contact h2 {
        font-size: 1.5rem;
    }
    .orgApp-easy-to-use-main-title{
        padding: 0 24px;
    }
    .orgApp-mobile-app p.sub-title {
        padding: 0;
    }
    .faq-container  {
        max-width: 100%;
        padding: 0;
    }
    .orgApp-elementor-row:nth-child(2) .orgApp-elementor-column:not(.image-column) .orgApp-elementor-widget-wrap {
        text-align: left;
    }
    .ssq-lp-navbar-lang-dropdown {
        margin-right: 0 !important;
    }
    .logo-container {
        transform: scale(1) !important;
    }
    .orgApp-elementor-row:nth-child(1n) .orgApp-elementor-widget-wrap,  .orgApp-elementor-row:nth-child(2n) .orgApp-elementor-widget-wrap {
        padding-left: 0px;
        padding-right: 0px;
    }
    .orgApp-elementor-column.image-column {
        order: 2;
    }
    .orgApp-easy-to-use {
        padding: 40px 0;
    }
    .orgApp-highlights-section {
        display: flex;
        justify-content: center;
    }
    .orgApp-tab-inner-content {
        display: flex;
        flex-direction: column;
    }
    .orgApp-tab-group-inner {
        flex-direction: row;
        max-height: 80vw;
        overflow-x: auto;
        flex-wrap: unset;
        justify-content: unset;
        gap: 0;
        scroll-behavior: smooth;
    }
    .orgApp-tab-group-inner button {
        min-width: 100%;
    }
    .orgApp-tab-group {
        width: 100%;
    }
    .orgApp-tab-group-inner button.orgApp-tab-btn {
        font-size: 14px;
        /* min-width: max-content; */
        background: transparent;
        border-bottom: 1px solid #ababab;
        border-radius: 0;
        padding: 12px 24px;
    }
    .orgApp-tab-group-inner button.orgApp-tab-btn.active {
        border-bottom: 2px solid #038be6;
        border-radius: 0;
        padding: 12px 24px;
    }
    .orgApp-tab-panels {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
    }
    .orgApp-tablist {
        display: flex;
        align-items: center;
        position: relative;
        gap: 12px;
        padding: 0 12px;
    }
    .orgApp-scroll-btn {
        display: flex;
    }
    .orgApp-scroll-btn:hover {
        background-color: #038be6;
        color: #fff;
    }
    .orgApp-tab-wrapper {
        overflow-x: auto;
        flex-grow: 1;
        display: flex;
    }
    .orgApp-scroll-btn:disabled {
        color: #c3c3c3;
        cursor: not-allowed;
    }
    .orgApp-tablist {
        display: none;
    }
    .orgApp-tab-title-mobile, .orgApp-tab-content {
        display: block;
    }
    .orgApp-tab-content h2 {
        text-align: left;
        border-bottom: 2px solid #006ec4;
        width: max-content;
        padding-bottom: 8px;
        margin-bottom: 24px;
        font-size: 1.4rem;
    }
    .orgapp-cta-btn-wrapper{
        flex-direction: column;
        gap: 0;
    }
    .cta-pdf-btn{
        margin-top: 16px;
    }
}

.ssq-lp-navbar-lang-dropdown {
    position: relative;
    display: inline-block;
    min-width: 50px;
    margin-right: 48px;
}

.ssq-lp-navbar-lang-dropdown-content {
    min-height: 35vh !important;
    min-width: 15vw !important;
    padding: 4vh 0;
}
.ssq-lp-navbar-lang-dropdown-content.show {
    display: flex;
}
.ssq-lp-navbar-lang-dropdown-wrapper {
    gap: 3vh;
}
.ssq-lp-navbar-lang-dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown-content-lang {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.button-tranparent-white-2 {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid transparent;
    display: flex;
    gap: 8px;
}

.show-lang {
  width: 100px;
  height: 200px;
  border-radius: 4px;
  padding: 1.5vh 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.dropdown-lang-des {
  font-family: Graphik;
  font-size: 12px;
  font-weight: 400;
  padding: 1vh 1vw;
  background-color: #eff1f3;
}
.dropdown-lang-horizontal-line {
  width: 100%;
  height: 1px;
  background-color: rgba(179, 181, 184, 0.173);
}
.dropdown-lang-a:hover {
  color: #207dc5;
}
.dropdown-lang-a {
  cursor: pointer;
  font-weight: 400;
  padding: 0 1vw;
  font-size: 16px;
  font-family: Graphik Compact;
  line-height: 2.2;
  text-decoration: none;
  color: #1d1f2a;
}

.iframe-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    animation-name: fadeIn;
    animation-duration: 0.5s;
}

.iframe-modal-content {
    position: relative;
    height: 100%;
    padding: 0;
    width: 100%;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add animation for modal content */

.iframe-modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.iframe-modal-close:hover,
.iframe-modal-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

#iframe-content {
    width: 100%;
    height: 100%;
    border: none;
}

.ssq-lp-get-quote {
    position: fixed;
    top: 40%;
    right: 0;
    writing-mode: vertical-rl;
    transform-origin: top;
    padding: 10px 15px;
    background-color: #207dc5;
    z-index: 3 !important;
    color: #fff;
    border: none;
    border-radius: 5px 0px 0px 5px;
    font-size: 14px;
    cursor: pointer;
}
.ssq-lp-get-quote:hover {
    background-color: #64a2e4;
}
.ssq-lp-header-placeholder {
    height: 60px;
}


/* ---------------- footer --------------  */


.ssq-lp-footer-section {
    height: max-content;
    display: flex;
    flex-direction: column;
}
.ssq-lp-ftr-join__button {
    font-weight: 500;
    color: #3f3f3f;
    font-size: 19px;
    width: 140px;
    border: 1px solid #a7b0b6;
    cursor: pointer;
    padding: 7px 12px;
}
.ssq-lp-ftr-join__button:hover {
    background-color: #a7b0b6;
}
.ssq-lp-ftr-t-btm {
    padding: 20px 0;
    background-color: #207dc5;
}
.ssq-lp-ftr-t-btm-l,
.ssq-lp-ftr-t-btm-r {
    flex: 1;
}
.ssq-lp-ftr-t-btm-l {
    border-right: 2px solid #2e5c8f;
}
.ssq-lp-ftr-t-btm-help {
    gap: 32px;
    padding: 3% 20px;
}
.ssq-lp-ftr-tb-help__text {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
.ssq-lp-ftr-tb-help__button {
    cursor: pointer;
    background-color: #207dc5;
    color: #ccc;
    justify-content: center;
    text-align: center;
    height: 36px;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid #ccc;
    padding: 2vh 1vw;
    min-width: 20%;
}
.ssq-lp-ftr-tb-help__button:hover {
    background-color: #cccccc2d;
    color: #fff;
}
.ssq-lp-ftr-bottom-section {
    display: grid;
    grid-template-rows: 3fr 1fr;
}
.ssq-lp-ftr-btm-t {
    width: 80%;
    display: grid;
    gap: 2vw;
    grid-template-columns: 3fr 6fr 3fr;
}
.ssq-lp-ftr-btm-t-wrapper {
    padding: 3% 0 5%;
    background-image: url(../img/footer_bg.webp);
    background-position: center;
}
.ssq-lp-ftr-logo {
    height: 60px;
}
.ssq-lp-ftr-btm-logo-img {
    height: 50px;
    width: auto;
}
.ssq-lp-ftr-logo-des-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}
.ssq-lp-ftr-link-res-wrapper {
    display: none;
}
.ssq-lp-ftr-link-wrapper {
    display: grid;
    gap: 4px;
    grid-template-columns: 3fr 3fr 2fr;
}
.ssq-lp-ftr-title-container {
    height: 60px;
}
.ssq-lp-ftr-link-container {
    gap: 2%;
    height: 80%;
}
.ssq-lp-ftr-link-container a {
    text-decoration: none;
}
.ssq-lp-ftr-link-container a:hover {
    color: #207dc5;
}
.ssq-lp-ftr-link-title-text {
    font-size: 16px;
    font-weight: 600;
}
.ssq-lp-ftr-link-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}
.ssq-lp-ftr-link-view-more {
    color: #336ca1;
    font-size: 14px;
    font-weight: 600;
}
.ssq-lp-ftr-contact-social-wrapper {
    padding-top: 1vh;
    gap: 2vh;
}
.ssq-lp-ftr-contact-social-icon-wrapper {
    width: 100%;
}
.ssq-lp-ftr-contact-text {
    font-size: 16px;
    font-weight: 400;
}
.ssq-lp-ftr-social-link {
    color: black;
    text-decoration: none;
    font-size: larger;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 5px;
    box-shadow: rgba(14, 30, 37, 0.12) 0 2px 4px 0,
        rgba(14, 30, 37, 0.32) 0 2px 16px 0;
    transition: 0.3s ease-in;
}
.ssq-lp-ftr-fb-icon:hover {
    background-color: #4267b2;
    color: white !important;
}
.ssq-lp-ftr-twitter-icon:hover {
    background-color: #1da1f2;
    color: white !important;
}
.ssq-lp-ftr-linkedin-icon:hover {
    background-color: #0077b5;
    color: white !important;
}
.ssq-lp-ftr-insta-icon:hover {
    background-image: url(../img/insta-icon_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white !important;
}
/* tech wrapper */
.ssq-lp-ftr-tech-wrapper {
    overflow: hidden;
    padding: 0 4vw;
    position: relative;
    z-index: -1;
}

.ssq-lp-ftr-tech-wrapper-inner {
    display: flex;
    position: absolute;
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.42, 0, 0.58, 1);
}

.ssq-lp-ftr-tech-wrapper-item {
    flex: 0 0 auto;
}

.ssq-lp-ftr-tech-wrapper img {
    width: 9vw;
    height: auto;
}

/* Footer Copy right section */
.ssq-lp-ftr-btm-b {
    display: grid;
    grid-template-rows: 2fr 1fr;
}
.ssq-lp-ftr-btm-b-content-r {
    gap: 1vw;
}
.ssq-lp-ftr-btm-b-a-link {
    transition: 0.3s ease-in;
    text-decoration: none;
    gap: 0.5vw;
}
.ssq-lp-ftr-btm-dot {
    color: #0fb8cd;
    font-size: 5px;
}
.ssq-lp-ftr-btm-a-text {
    color: white;
    font-size: small;
    font-weight: 400;
    text-decoration: underline !important;
}
.ssq-lp-ftr-btm-a-text:hover {
    color: #0fb8cd;
}
.ssq-lp-ftr-btm-b-content-r {
    justify-content: flex-end;
}
.ssq-lp-ftr-btm-b-content-wrapper {
    background-color: #000;
    padding: 0 8vw;
}
.ssq-lp-ftr-btm-b-content-cprt-text {
    font-size: 14px;
    gap: 5px;
    font-weight: 400;
    color: white;
}

/* for collpasive dropdowns in the footer */
.ssq-lp-ftr-collapsible {
    background-color: white;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.ssq-lp-ftr-collapsible:after {
    content: "\002B";
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.collpase-active:after {
    content: "\2212";
}

.ssq-lp-ftr-collpase-content {
    padding: 0 10px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
}
.ssq-lp-sidebar-logo-a {
    text-decoration: none;
    height: fit-content;
}

@media only screen and (min-width: 768px) and (max-width: 970px) {
    .ssq-lp-ftr-btm-t {
        display: flex;
        flex-direction: column;
    }
    .ssq-lp-ftr-contact-container {
        justify-content: flex-start !important;
    }
}
@media only screen and (max-width: 1111px) {
    .ssq-lp-footer-section {
      height: max-content !important;
    }
    .ssq-lp-ftr-bottom-section {
      grid-template-rows: 5fr 2fr;
    }
    .ssq-lp-ftr-btm-b {
      grid-template-rows: 3fr 2fr;
    }
  
    .ssq-lp-ftr-logo-des-text,
    .ssq-lp-ftr-link-text {
      font-size: 12px;
      line-height: 18px;
    }
    .ssq-lp-ftr-tb-help__text {
      font-size: 18px;
    }
    .ssq-lp-ftr-btm-logo-img {
      height: 40px;
      width: auto;
    }
    .ssq-lp-ftr-title-container {
      height: 50px;
    }
    .ssq-lp-ftr-contact-text {
      font-size: 14px;
    }
    .ssq-lp-ftr-social-link {
      width: 35px;
      font-size: 14px;
      height: 34px;
    }
}
  
@media only screen and (min-width: 768px) and (max-width: 970px) {
    .ssq-lp-ftr-btm-b {
        max-height: 150px;
    }
    .ssq-lp-ftr-bottom-section {
        grid-template-rows: 5fr 1fr;
    }
}
@media only screen and (max-width: 768px) {
    .ssq-lp-sidebar-ftr {
        display: flex;
    }
    .ssq-lp-sidebar-li-contact-btn {
        display: none !important;
    }
    .sidebar {
        width: 100%;
    }
    .ssq-lp-footer-section {
        display: flex;
        flex-direction: column;
    }
    .ssq-lp-ftr-bottom-section {
        grid-template-rows: 6fr 1fr !important;
    }
    .ssq-lp-ftr-t-btm {
        display: grid !important;
        grid-template-rows: 1fr 1fr !important;
        gap: 1px !important;
        background: none;
        padding: 40px 0;
    }
    .ssq-lp-ftr-btm-t {
        display: flex;
        flex-direction: column;
    }
    .ssq-lp-ftr-btm-b-content {
        flex-direction: column;
        gap: 8px;
    }
  
    .ssq-lp-ftr-btm-b-content-l,
    .ssq-lp-ftr-btm-b-content-r {
        justify-content: center;
    }
    .ssq-lp-ftr-logo {
        height: 40px;
    }
    .ssq-lp-ftr-t-btm-m {
        display: none;
    }
    .ssq-lp-ftr-link-wrapper {
        display: flex;
        flex-direction: column;
    }
    .ssq-lp-ftr-contact-container {
        justify-content: flex-start !important;
    }
    .ssq-lp-ftr-t-btm-l,
    .ssq-lp-ftr-t-btm-r {
        background-color: #207dc5;
        padding: 20px 0;
    }
    .ssq-lp-ftr-link-container {
        height: 100%;
        gap: 4px;
    }
  }
  @media only screen and (max-width: 600px) {
    .ssq-lp-ftr-collapsible {
        padding: 5px 0px !important;
    }
    .ssq-lp-search-modal-form-footer-links__button {
        font-size: 12px;
    }
    .ssq-lp-get-quote {
        padding: 9px 9px;
        font-size: 12px;
    }
  
    .ssq-lp-ftr-btm-b-content-wrapper {
        padding: 10px 5px;
    }
    .ssq-lp-ftr-btm-b-content {
        flex-wrap: wrap;
    }
    .ssq-lp-ftr-link-wrapper {
        display: none !important;
    }
    .ssq-lp-ftr-link-res-wrapper {
        display: contents;
    }
    .ssq-lp-ftr-bottom-section {
        display: flex !important;
        flex-direction: column !important;
    }
    .ssq-lp-ftr-tech-wrapper-item {
        width: 15%;
        height: auto;
        padding: 20px;
    }
    .ssq-lp-ftr-tech-wrapper img {
        width: 70%;
        height: auto;
    }
    .ssq-lp-ftr-title-container {
        height: max-content !important;
    }
    .ssq-lp-ftr-link-title-text {
        font-size: 14px;
    }
    .ssq-lp-ftr-contact-wrapper {
        padding-top: 16px;
    }
    .ssq-lp-ftr-link-container {
        height: 100%;
        gap: 8px;
        padding-top: 8px;
    }
    .ssq-lp-ftr-contact-text {
        font-size: 12px;
    }
    .ssq-lp-ftr-contact-container {
        padding: 5px 0px !important;
    }
}
  
@media only screen and (max-width: 650px) {
    .ssq-lp-ftr-tb-help__text {
        font-size: 14px !important;
    }
    .ssq-lp-ftr-btm-a-text {
        font-size: 12px;
    }
    .ssq-lp-ftr-tech-wrapper-item {
        width: 30vw;
        height: auto;
        padding: 20px;
    }
    .ssq-lp-ftr-tech-wrapper img {
        width: 100% !important;
        height: auto;
    }
    .demo-btn {
        position: fixed;
        bottom: 24px;
        left: 24px;
        z-index: 1;
        width: calc(100% - 48px);
        height: 48px;
        visibility: hidden;
        font-size: 16px;
    }
    .demo-btn-wrapper {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 96px;
        padding: 24px;
        background: #fff;
        z-index: 0;
        visibility: hidden;
        box-shadow: 0 -2px 7px #5f5f5f47;
    }
    .demo-btn.show-button {
        visibility: visible;
    }
}

/* ----- global------- */
.align-center {
    align-items: center;
}
.align-start {
    align-items: flex-start;
}
.place-center {
    place-content: center;
}
.padding-8 {
    padding: 0 8px;
}
.bottom-border {
    border-bottom: 1px solid #f1f1f1;
}
.padding-15 {
    padding: 0 15px;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-around {
    justify-content: space-around;
}
.justify-start {
    justify-content: flex-start;
}
.width-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.w-max-content {
    width: max-content;
}
  
.h-max-content {
    height: max-content;
}
.text-start {
    text-align: start;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.horizontal-line {
    width: 100%;
    height: 1px;
    background-color: #b2b2b2;
}
.bg-normal {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.button-transparent-noborder {
    cursor: pointer;
    background-color: transparent;
    border: none;
}
.button-tranparent-white-2 {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid transparent;
}
  
.icon-font-30 {
    font-size: 30px !important;
}
.icon-font-35 {
    font-size: 35px !important;
}
.right-arrow-overlap {
    position: relative;
    margin-left: -16% !important;
}
.gap-4 {
    gap: 4px;
}
.gap-8 {
    gap: 8px;
}
.gap-10 {
    gap: 10px;
}
.gap-16 {
    gap: 16px;
}
.gap-20 {
    gap: 20px;
}
.gap-24 {
    gap: 24px;
}
.gap-32 {
    gap: 32px;
}
.gap-40 {
    gap: 40px;
}
.gap-64 {
    gap: 64px;
}
.justify-around {
    justify-content: space-around;
}
.justify-around {
    justify-content: space-around;
}
.justify-between {
    justify-content: space-between;
}
.twitter_icon {
    color: #1da1f2;
    width: 16px;
    height: 13px;
}
.linkedin_icon {
    color: #0a66c2;
    height: 16px;
    width: 16px;
}