@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --primary-color: #20759a;
  --secondary-color: #f0f5f7;
  --tertiary-color: #f1f5e3;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-inter: Inter, sans-serif;
  --font-poppins: Poppins, sans-serif;
}

/* Base styles and global variables */
body {
  font-family: var(--font-inter);
  color: var(--black-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--white-color);
  font-weight: 400;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
}

.text-black {
  color: var(--black-color);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-white {
  background-color: var(--white-color);
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.header-container {
  background-color: #ffffff;
  position: sticky;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1200px) {
  .header-container {
    padding: 16px 0;
  }
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #000000;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
body.es_wrapper .navbar-nav .nav-link, body.fr_wrapper .navbar-nav .nav-link, body.de_wrapper .navbar-nav .nav-link {
  font-size: 12px;
}

.navbar-nav .nav-link:hover {
  color: #666666;
}

.dropdown-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
}

.dropdown-toggle:hover {
  background-color: #ffffff;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #20759a;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: 8px;
  box-shadow: 0 -8px 0 #20759a, 0 8px 0 #20759a;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

@media (max-width: 1199px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 15px;
    background-color: #f0f5f7;
    z-index: 1000;
  }
  .navbar-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 10px 0;
    color: #20759a;
    font-size: 1rem;
    width: 100%;
  }
}
.flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

#chat-widget-container {
  bottom: -10px !important;
}

.global-go-up-button {
  background-color: #20759a;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  z-index: 100;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 10px 30px rgba(1, 28, 42, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.global-go-up-button:hover {
  transform: translateY(-2px);
}
.global-go-up-button:active {
  transform: translateY(0);
}
.global-go-up-button:focus-visible {
  outline: 3px solid rgba(253, 83, 47, 0.5);
  outline-offset: 3px;
}
@media (max-width: 575px) {
  .global-go-up-button {
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

.global-go-up-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-go-up-button::after {
  display: block;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(/assets/images/png/arrow-right.png);
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .global-go-up-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

/* FOR GOOGLE TRANSLATE CSS START HERE */
body {
  top: 0 !important;
}

body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-tooltip {
  display: none !important;
}

font,
.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-combo,
.skiptranslate {
  display: none !important;
}

#teams-dropdown-menu span.icon .fa {
  display: inline-block;
  color: #000000;
}

#teams-dropdown-menu span.icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

#teams-dropdown-menu span.icon i {
  transition: transform 0.2s ease;
  transform-origin: center;
}

.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}

#teams-dropdown-menu ul li {
  text-transform: capitalize;
}

#teams-dropdown-menu {
  border-radius: 10px;
  position: relative;
  background-color: #ffffff;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  margin-bottom: 0px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#teams-dropdown-menu * {
  cursor: pointer;
}

#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000000;
}

#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(10, 10, 10, 0.0509803922), 0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}

img.img-fluid.flg {
  margin-right: 10px;
}

#teams-dropdown-menu ul.active {
  display: block;
  animation: slidedown 0.2s;
  top: 50px;
}

#teams-dropdown-menu ul.active ~ span.icon i {
  transform: rotate(180deg);
}

@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: flex;
  margin-left: 0;
  float: none;
}

#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}

#teams-dropdown-menu span.icon:before {
  display: none;
  content: none;
}

@media screen and (max-width: 1199px) {
  #teams-dropdown-menu {
    height: 32px;
    position: relative !important;
    cursor: pointer !important;
    width: 60px !important;
    display: flex !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000000;
    margin-right: 10px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
  .header-main #teams-dropdown-menu {
    margin-left: auto !important;
  }
  .header.sticky header nav.menu.open ul {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  #teams-dropdown-menu .flag-text {
    margin-right: 0;
  }
}
/* FOR GOOGLE TRANSLATE CSS END'S HERE */
/* TABLE CSS START HERE */
/* TABLE CSS START HERE */
table tr th {
  border: 1px solid #20759a !important;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
  background-color: #20759a !important;
}
@media (min-width: 1024px) {
  table tr th {
    padding: 16px !important;
    font-size: 24px;
  }
}
table tr td {
  font-weight: 400;
  text-align: center;
  border: 1px solid #a7a7a7;
}
@media (min-width: 1024px) {
  table tr td {
    padding: 16px !important;
  }
}

/* TABLE CSS END HERE */
/* fade-in-scroll CSS START HERE */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-in-scroll CSS END HERE */
/* section-container CSS START HERE */
.section-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  scroll-margin-top: 80px;
}
@media (min-width: 1200px) {
  .section-container {
    scroll-margin-top: 106px;
  }
}

#pricingplans {
  scroll-margin-top: 80px;
}
@media (min-width: 1200px) {
  #pricingplans {
    scroll-margin-top: 106px;
  }
}

/* section-container CSS END HERE */
/* font-weight CSS START HERE */
.font-normal {
  font-weight: 400;
}

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

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

/* font-weight CSS END HERE */
/* font-size CSS START HERE */
.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

/* font-size CSS END HERE */
/* background-color CSS START HERE */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--white-color);
}

/* background-color CSS START HERE */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn.btn-primary {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color) !important;
  color: var(--white-color);
}
.btn.btn-primary:hover {
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: transparent !important;
}
.btn.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}
.btn.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.title-divider {
  width: 100%;
  height: 4px;
  max-width: 96px;
  background-color: #20759a;
  margin: 0 auto;
}

.bg-primary-light-20 {
  background-color: #f1f5f7;
}

.welcome-img {
  width: 100%;
  height: 242px;
  overflow: hidden;
}
.welcome-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SIGN IN | SIGN UP*/
.apply {
  background-color: transparent;
  border: none;
  color: #20759a;
  transition: color 0.3s ease;
  font-size: 1rem;
  width: 100%;
}
.apply:hover {
  color: #2995c4;
}

.sign-up-disclaimer {
  margin-top: 2rem;
  background-color: #e5f7ff;
  padding: 1rem;
  border-radius: 8px;
  color: #000000;
}

.auth-container {
  padding: 1rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .auth-container {
    width: 80%;
  }
}

.sign-in-container {
  min-height: calc(100dvh - 80px);
}
@media (max-width: 1200px) {
  .sign-in-container {
    min-height: calc(100dvh - 106px);
  }
}

.auth-hero {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url("/assets/images/webp/sign-up-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1440px) {
  .auth-hero {
    background-position: top right;
  }
}
.auth-hero.sign-in-hero {
  background-image: url("/assets/images/webp/sign-in-hero.webp");
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .form-control {
  padding-right: 3rem;
}
.password-input-wrapper .password-toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-input-wrapper .password-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.password-input-wrapper .password-toggle-btn:focus {
  outline: none;
  color: #20759a;
}
.password-input-wrapper .password-toggle-btn i {
  font-size: 1.1rem;
  color: #20759a;
}

.sign-in {
  color: #20759a;
}
.sign-in:hover {
  text-decoration: underline;
  color: #2995c4;
}

/* banner */
.banner {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/assets/images/webp/default.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .banner {
    height: 192px;
  }
}
.banner.faq-bg {
  height: 301px;
  background-image: url("/assets/images/webp/faq.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner.faq-bg > * {
  position: relative;
  z-index: 1;
}
.banner.faq-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .banner.faq-bg {
    background-position: center 90%;
  }
}

.wp-logo {
  display: none;
}
@media (min-width: 768px) {
  .wp-logo {
    display: block;
  }
  body.de_wrapper .wp-logo {
    display: none;
  }
}

.wp-logo-mobile {
  display: block;
}
@media (min-width: 768px) {
  .wp-logo-mobile {
    display: none;
  }
  body.de_wrapper .wp-logo-mobile {
    display: block;
  }
}

/* hover-primary */
.hover-primary {
  color: #20759a !important;
  text-decoration: underline !important;
}

/* end hover-primary */
/* footer */
footer .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(27, 37, 52, 0.12);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-color: var(--primary-color);
  --bs-accordion-active-color: var(--primary-color);
  --bs-accordion-btn-focus-box-shadow: none;
}
footer .accordion .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(27, 37, 52, 0.12);
  border-radius: 16px;
  overflow: hidden;
}
footer .accordion .accordion-item + .accordion-item {
  margin-top: 12px;
}
footer .accordion .accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 16px;
  border-radius: 0;
  border: 0;
}
footer .accordion .accordion-button:hover {
  background-color: rgba(32, 117, 154, 0.06);
}
footer .accordion .accordion-button::after {
  filter: none;
}
footer .accordion .accordion-button:focus {
  box-shadow: none;
}
footer .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom: 1px solid rgba(27, 37, 52, 0.12);
  border-radius: 16px 16px 0 0;
}
footer .accordion .accordion-button.collapsed {
  border-radius: 16px;
}
footer .accordion .accordion-body {
  padding: 12px 16px 16px;
  border-radius: 0 0 16px 16px;
}
footer .accordion .accordion-body ul {
  list-style: none;
  margin-bottom: 0;
}
footer .accordion .accordion-body ul li {
  margin-bottom: 0.75rem;
}
footer .accordion .accordion-body ul li:last-child {
  margin-bottom: 0;
}
footer .accordion .accordion-body ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: capitalize;
}
footer .accordion .accordion-body ul li a:hover {
  text-decoration: underline;
  color: #20759a;
}
footer .accordion .accordion-body ul li p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: capitalize;
}
footer .accordion .accordion-body ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* end footer */
.main-wrapper.hero {
  background: #eff6ff;
  background: linear-gradient(180deg, rgb(239, 246, 255) 0%, rgb(255, 255, 255) 100%);
  min-height: min(100dvh - 66px, 760px);
}
@media (min-width: 1200px) {
  .main-wrapper.hero {
    min-height: min(100dvh - 98px, 750px);
  }
}
.main-wrapper.hero .hero-asset {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 713px;
  margin: 0 auto;
}
.main-wrapper.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
body:not(.en_wrapper) .main-wrapper.hero .hero-stats {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  body:not(.en_wrapper) .main-wrapper.hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  body:not(.en_wrapper) .main-wrapper.hero .hero-stats p {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  body.en_wrapper .main-wrapper.hero .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

#features .feature-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
#features .feature-grid-container .feature-grid-item {
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}
#features .feature-grid-container .feature-grid-item.camera:hover {
  background-color: #fff6f6;
}
#features .feature-grid-container .feature-grid-item.tool:hover {
  background-color: #fffaf3;
}
#features .feature-grid-container .feature-grid-item.mobile:hover {
  background-color: #f6faff;
}
#features .feature-grid-container .feature-grid-item.cap:hover {
  background-color: #fdfbff;
}
#features .feature-grid-container .feature-grid-item.bubble-chat:hover {
  background-color: #f8fffa;
}
#features .feature-grid-container .feature-grid-item.infinite:hover {
  background-color: #f5f7ff;
}
@media (min-width: 768px) {
  #features .feature-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  #features .feature-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

#services {
  background-color: #f8fafb;
}
#services .card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}
#services .first-card-wrapper {
  position: relative;
  padding: 20px;
}
#services .first-card-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  right: -10px;
  bottom: 30px;
  background: #eff0f1;
  border-radius: 20px;
  z-index: 0;
  transform: rotate(2deg);
}
#services .card-blue {
  transform: rotate(-5deg);
  position: relative;
  z-index: 1;
}
#services .card-blue {
  background: linear-gradient(135deg, #20759a 0%, #1e5f7e 100%);
  color: white;
}
#services .card-white {
  background: white;
  color: #333;
}
#services .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}
#services .card-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}
#services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#services .feature-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
}
#services .feature-list li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
}
#services .card-blue .feature-list li::before {
  color: #a8dadc;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card.active, .pricing-card:hover {
  border: 2px solid #2b7fff;
  transform: translateY(-5px);
}
.pricing-card.active .pricing-cta {
  background-color: #000000;
  color: #ffffff;
}
.pricing-card.active .pricing-cta:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}
.pricing-card .most-popular {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 8px 16px;
  transform: translate(-50%, -50%);
  background-color: #20759a;
  color: #ffffff;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
}
.pricing-card .price-name {
  color: #4a5565;
}
.pricing-card .feature-list {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.pricing-card .feature-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #000000;
}
.pricing-card .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00a63e;
  font-weight: normal;
}
.pricing-card .pricing-cta {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  width: 100%;
  padding: 12px 24px;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
}
.pricing-card .pricing-cta:hover {
  background-color: #fcfcfc;
  color: #000000;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 100%;
}
@media (min-width: 1024px) {
  .form-container {
    padding: 40px;
  }
}

.form-control-underline {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 12px;
  font-size: 16px;
  color: #666;
  width: 100%;
}

.form-control-underline:focus-visible,
.form-control-underline:focus {
  outline: none;
}

.form-control,
.form-control:focus {
  background-color: #f5f5f5;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #34521b;
}

.form-control-underline::-moz-placeholder, .form-control::-moz-placeholder {
  color: #34521b;
}

.form-control-underline::placeholder,
.form-control::placeholder {
  color: #34521b;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.3);
  background-color: #f5f5f5;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .rounded-lg-5 {
    border-radius: 24px !important;
  }
}

/*  POLICY PAGE CSS START HERE */
.policy-content {
  position: relative;
  /* Custom to this site */
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .policy-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.policy-content .terms-content {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
.policy-content .terms-content span {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
@media (max-width: 375px) {
  .policy-content .terms-content {
    font-size: 14px;
  }
}
.policy-content .terms-content h1,
.policy-content .terms-content h2 {
  color: #20759a;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 50px 0 15px 0;
}
@media (max-width: 1199px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 40px 0 15px 0;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 30px 0 10px 0;
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }
}
.policy-content .terms-content h6 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: rgba(27, 37, 52, 0.65);
  line-height: 1.3;
}
.policy-content .terms-content b {
  font-size: 18px;
  line-height: 1.3;
  color: #20759a;
}
@media (max-width: 575px) {
  .policy-content .terms-content b {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content b {
    font-size: 15px;
  }
}
.policy-content .terms-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #20759a;
  margin-bottom: 15px;
}
.policy-content .terms-content p.version {
  font-size: 14px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.policy-content .terms-content a {
  color: #20759a;
  transition: 0.3s all;
  font-weight: 500;
}
.policy-content .terms-content a:hover {
  color: #20759a;
  transition: 0.3s all;
}
.policy-content .print {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  right: 0;
  padding: 20px 14px;
  writing-mode: vertical-rl;
  color: #fff;
  background: #20759a;
  box-shadow: 0px 4px 60px rgba(30, 92, 255, 0.2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: 0.3s all;
  border-radius: 0px 12px 12px 0px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  float: right;
  top: 140px;
  z-index: 2;
}
@media (max-width: 1399px) {
  .policy-content .print {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .policy-content .print {
    writing-mode: unset;
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 0;
    transition: 0.3s all;
  }
}
@media (max-width: 575px) {
  .policy-content .print {
    padding: 8px;
  }
}
.policy-content .print img {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .policy-content .print img {
    padding: 0;
    transform: rotate(90deg);
  }
}

.mb-self h2 {
  margin-bottom: 10px;
}

/*  POLICY PAGE CSS END'S HERE */
.faq-accordion .accordion-item {
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  color: #20759a;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 24px;
  background-color: #ffffff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #20759a;
  background-color: #ffffff;
  box-shadow: none;
}
.faq-accordion .accordion-button:hover {
  background-color: #fafafa;
}
.faq-accordion .accordion-button:focus {
  border-color: #cfcfcf;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  color: #20759a;
  font-size: 20px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
.faq-accordion .accordion-body {
  color: #595959;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 24px 20px 24px;
}
.faq-accordion .accordion-collapse {
  border: none;
}/*# sourceMappingURL=main.css.map */