:root {
  --color-primary: #160052;
  --color-pale-blue: #D3E9F5;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-purple: #ECE6FA;
  --color-brand-blue: #26A1FB;
  --color-brand-bg-blue: #EBF2F5;
  --color-light-blue: #40E4FF;
  --color-dimmed: #655D7A;

  --fontfamilybody: 'Manrope';

  --fontsize8xl: 80px;
  --fontsize5xl: 56px;
  --fontsize4xl: 48px;
  --fontsize3xl: 40px;
  --fontsize2xl: 32px;
  --fontsizexl: 24px;
  --fontsizelg: 20px;
  --fontsizemd: 18px;
  --fontsizesm: 16px;
  --fontsizexs: 14px;

  --fontline-height9xl: 88px;
  --fontline-height7xl: 72px;
  --fontline-height4xl: 48px;
  --fontline-height3xl: 40px;
  --fontline-height2xl: 36px;
  --fontline-heightxl: 32px;
  --fontline-heightlg: 28px;
  --fontline-heightmd: 24px;

  --fontletter-spacingminus-md: -1px;

  font-size: 14px;
}

body {
  font-family: 'Manrope' !important;
  line-height: var(--fontline-heightmd) !important;
  background-color: var(--color-pale-blue) !important;
}

a {
  text-decoration: none !important;
  font-size: 1rem !important;
}

.section {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}

.custom-container {
  max-width: 100%;
  width: 90%;
}

.accordion-button:not(.collapsed){
  color: var(--color-white) !important;
}

.custom-input {
  display: block;
  width: 100%;
  background: var(--color-brand-bg-blue);
  padding: 20px 16px 20px 20px;
  border-radius: 4px;
  border: none;
  margin-bottom: 20px;
  height: 60px;
}

.custom-input:focus,
.custom-textarea:focus {
  outline: none;
}

.custom-textarea {
  display: block;
  width: 100%;
  background: var(--color-brand-bg-blue);
  padding: 20px 16px 20px 20px;
  border-radius: 4px;
  border: none;
  margin-bottom: 20px;
}

.rounded-top-left-8 { border-top-left-radius: 8px; }
.rounded-top-right-8 { border-top-right-radius: 8px; }
.rounded-bottom-left-8 { border-bottom-left-radius: 8px; }
.rounded-bottom-right-8 { border-bottom-right-radius: 8px; }

.cookie-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 20px;
  text-align: center;
  z-index: 9999;
}

/* -------------------------------------------------------- */
/* BUTTONS */
.custom-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 20px 14px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 3.2px;
  font-weight: 700;
  font-size: 18px !important;
  line-height: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.dark-button {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.light-button {
  background-color: transparent;
  color: var(--color-primary);
}

.custom-button:has(.custom-icon) {
  padding-right: 48px; /* 16px + 20px + 12px */
}

.custom-button:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transition: all 0.3s ease;
}

.custom-button:has(.custom-icon):hover {
  padding-right: 20px;
  padding-left: 48px;
}

.custom-button:has(.custom-icon):hover .custom-icon {
  left: 16px;
  filter: none;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
}

.close-button.white {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

/* Custom switch */
.switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 32px;
  margin: 0px 16px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 5px var(--color-white);
}

input:checked + .slider:before {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* END BUTTONS */
/* -------------------------------------------------------- */
/* TYPOGRAPHY */
.color-primary { color: var(--color-primary); }
.color-secondary { color: var(--color-pale-blue) !important; }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.color-brand-blue { color: var(--color-brand-blue) !important; }
.color-light-blue { color: var(--color-light-blue) !important; }
.color-pale-blue { color: var(--color-pale-blue) !important; }
.color-dimmed { color: var(--color-dimmed) !important; }
.color-surface-secondary { color: var(--color-brand-bg-blue) !important; }

.headings-h1-hero {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsize8xl);
  font-weight: 700;
  line-height: var(--fontline-height9xl);
  letter-spacing: var(--fontletter-spacingminus-md);
}

.headings-h2 {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsize5xl);
  font-weight: 700;
  line-height: var(--fontline-height7xl);
}

.headings-h4 {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsize3xl);
  font-weight: 700;
  line-height: var(--fontline-height4xl);
}

.headings-izstop {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexl);
  font-weight: 700;
  line-height: var(--fontline-height3xl);
}

.headings-h6 {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexl);
  font-weight: 700;
  line-height: var(--fontline-heightxl);
}

.headings-h5 {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsize2xl);
  font-weight: 700;
  line-height: var(--fontline-height3xl);
}

.paragraphs-feature {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexl);
  font-weight: 400;
  line-height: var(--fontline-height3xl);
}

.paragraph-main {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizelg);
  font-weight: 500;
  line-height: var(--fontline-heightxl);
}

.paragraphs-upper-large {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizesm);
  font-weight: 700;
  line-height: var(--fontline-heightlg);
  letter-spacing: 1px;
}

.paragraphs-upper-small {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexs);
  font-weight: 700;
  line-height: var(--fontline-heightlg);
  letter-spacing: 1px;
}

.paragraphs-content {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizelg);
  font-weight: 400;
  line-height: var(--fontline-height2xl);
}

.paragraphs-content-bold {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizelg);
  font-weight: 600;
  line-height: var(--fontline-height2xl);
}

.paragraphs-description {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizemd);
  font-weight: 400;
  line-height: var(--fontline-heightxl);
}

.paragraphs-small {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizesm);
  font-weight: 400;
  line-height: var(--fontline-heightlg);
}

.paragraphs-tiny {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexs);
  font-weight: 400;
  line-height: var(--fontline-heightmd);
}

.custom-card-title {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsize4xl);
  font-weight: 700;
  line-height: var(--fontline-height7xl);
  letter-spacing: -1px;
}

.card-list-title {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizemd);
  font-weight: 700;
  line-height: var(--fontline-heightxl);
}

.input-label {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizemd);
  font-weight: 600;
  line-height: var(--fontline-heightxl);
  margin-bottom: 10px;
  color: var(--color-primary);
}

/* END TYPOGRAPHY */
/* -------------------------------------------------------- */
/* ICONS */
.custom-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute !important;
  left: calc(100% - (20px + 16px));
  transition: all 0.3s cubic-bezier(.23,1.1,.61,1.19);
}

.right-arrow {
  background-image: url("/assets/icons/arrow-right.svg");
}

.right-arrow.white {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

.pen {
  background-image: url("/assets/icons/pen.svg");
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

.lock {
  background-image: url("/assets/icons/lock.svg");
}

.cookie {
  background-image: url("/assets/icons/cookie.svg");
}

.dropdown {
  background-image: url("/assets/icons/dropdown.svg");
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

.custom-icon.yessir {
  background-image: url("/assets/icons/yessir.svg");
}
/* END ICONS */
/* -------------------------------------------------------- */
/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 500;
  color: var(--color-white);
}

.header-container {
  width: 100%;
  background-color: transparent;
  z-index: 500;
}

.header-buttons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 500;
}

header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
}

header .logo img {
  width: 220px;
  height: auto;
  display: block;
}

header ul.main-nav {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
}

header ul.main-nav > li {
  font-family: var(--fontfamilybody);
  font-size: 16px;
  font-weight: 700;
  line-height: var(--fontline-heightxl);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin: 0px 16px;
}

header ul.main-nav > li a {
  font-size: 16px !important;
}

header ul.main-nav a {
  color: inherit;
}

.header-dropdown-button {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  border: none;
  background-color: transparent;
  color: inherit;
  padding-right: 30px;

  font-family: var(--fontfamilybody);
  font-size: 16px;
  font-weight: 700;
  line-height: var(--fontline-heightxl);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.header-dropdown-button .custom-icon {
  height: 12px;
  width: 12px;
  left: calc(100% - 20px);
}

.dropdown-menu {
  padding: 0px !important;
}

.dropdown-item {
  color: var(--color-primary) !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--color-light-blue) !important;
}

.dropdown-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  background-color: var(--color-purple);
  padding: 8px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item-title {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizesm);
  font-weight: 700;
  line-height: var(--fontline-heightlg);
  text-transform: initial;
}

.dropdown-item-text {
  font-family: var(--fontfamilybody);
  font-size: var(--fontsizexs);
  font-weight: 400;
  line-height: var(--fontline-heightmd);
  text-transform: initial;
  padding: 0px !important;
}

.custom-header-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 48px 14px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 3.2px;
  font-weight: 700;
  font-size: 18px !important;
  line-height: 24px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hamburger */
.mobile-hamburger,
.close-hamburger {
  padding: 14px;
  border-radius: 3.2px;
  cursor: pointer;
}

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

.close-hamburger {
  background-color: #FFFFFF1F;
}

.hamburger-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.mobile-hamburger img,
.close-hamburger img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

.hamburger-content {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, var(--color-primary) 60%, var(--color-light-blue) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
}

.hamburger-content.active {
  left: 0%;
}

.hamburger-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
}

.hamburger-nav > li {
  width: 100%;
  padding: 25px 0px;
  border-bottom: 1px solid #FFFFFF1F
}

.hamburger-nav li button,
.hamburger-nav li a {
  border: none;
  background: transparent;
  color: var(--color-white);
  font-family: var(--fontfamilybody);
  font-size: 18px !important;
  font-weight: 600;
  line-height: var(--fontline-heightxl);
}

.hamburger-dropdown-menu {
  margin-top: 20px;
}

.hamburger-dropdown-menu li {
  margin-bottom: 20px;
}

.hamburger-dropdown-menu .dropdown-item {
  color: var(--color-white) !important;
}

.hamburger-dropdown-menu .dropdown-item .dropdown-item-icon {
  background-color: #2C156B;
}


.hamburger-dropdown-menu .dropdown-item .dropdown-item-icon img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
}

.hamburger-nav .accordion-button.collapsed .custom-icon.dropdown {
  transform: rotate(-90deg);
}

/* End Header */
/* -------------------------------------------------------- */
/* Section banner */
.section-banner {
  position: relative;
}

.banner-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 100px 0px;
  z-index: 120;
  min-height: 100vh;
}

.graphs-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 200;
  pointer-events: none;
}

.graphs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.graphs-content {
  width: 100%;
  height: 100vh;
  position: relative;
  max-width: 1600px;
}

.graphs-box {
  position: absolute;
}

.graphs-large-box {
  height: 300px;
  width: 600px;
  z-index: 201;
}

.graphs-mid-box {
  height: 300px;
  width: 300px;
}

.graphs-small-box {
  /* height: 115px; */
  height: 100px;
  width: 300px;
  z-index: 202;
}

.graphs-box img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  /* object-fit: contain; */
}

.graphs-one {
  left: 0%;
  top: 34%;
}

.graphs-two {
  left: 17%;
  top: 48%;
}

.graphs-three {
  right: 18%;
  top: 40%;
}

.graphs-four {
  right: 0%;
  top: 28%;
}

.graphs-five {
  left: 7%;
  top: 26%;
}

.graphs-six {
  left: 50%;
  top: 35%;
  transform: translateX(-50%);
}

.graphs-seven {
  right: 7%;
  top: 22%;
}

/* End Section banner */
/* -------------------------------------------------------- */
/* End Section background */
.section-background {
  background:
    linear-gradient(to bottom right, var(--color-primary) 33%, var(--color-light-blue) 66%, transparent),
    linear-gradient(to bottom left, var(--color-pale-blue), transparent 33%),
    linear-gradient(to top right, var(--color-pale-blue), transparent 33%),
    linear-gradient(to top left, var(--color-pale-blue), transparent 33%);
  background-blend-mode: screen;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

/* End Section background */
/* -------------------------------------------------------- */
/* Section target */
.first-target-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}

.first-target-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.first-target-content {
  position: absolute;
  width: 100%;
  height: 100vh;
  max-width: 1700px;
}

.first-target-box {
  position: absolute;
}

.target-large-box {
  /* background-color: red; */
  height: 320px;
  width: 630px;
}

.target-mid-box {
  /* background-color: green; */
  height: 320px;
  width: 320px;
}

.target-small-box {
  /* background-color: blue; */
  height: 115px;
  width: 300px;
}

.first-target-one {
  left: 0%;
  top: 9%;
}

.first-target-two {
  left: 17%;
  top: 23%;
}

.first-target-three {
  right: 17%;
  top: 17%;
}

.first-target-four {
  right: 0%;
  top: 5%;
}

.first-target-five {
  left: 7%;
  top: 5%;
}

.first-target-six {
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.first-target-seven {
  right: 7%;
  top: 0%;
}

/* End Section graphs */
/* -------------------------------------------------------- */
/* Section stats */
.section-stats {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: linear-gradient(to bottom, transparent, var(--color-pale-blue) 50%);
  overflow: hidden;
}

.section-stats .container {
  position: relative;
  padding: 0px;;
}

.stats-container {
  background-color: var(--color-brand-bg-blue);
  border: 8px solid var(--color-white);
  border-top: 40px solid var(--color-white);
  border-radius: 5px;
  transform: perspective(2000px) rotatex(60deg);
  position: relative;
}

.stats-container::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 20%;
  height: 24px;
  width: 60%;
  background-color: var(--color-brand-bg-blue);
  z-index: 100;
}

.stats-container .stats-content,
.stats-container-absolute .stats-box {
  opacity: 0;
}

.stats-container-absolute {
  padding: 30px 8px 8px 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.stats-container-absolute .stats-text {
  opacity: 0;
  transform: translateY(-50px);
}

.stats-container-mobile {
  max-width: 450px;
  width: 90%;
  background-color: var(--color-brand-bg-blue);
  border: 8px solid var(--color-white);
  border-radius: 10px;
  position: relative;
  margin: 3rem 0;
}

.stats-large-box {
  height: 300px;
  width: 600px;
  max-width: 100%
}

.stats-mid-box {
  height: 300px;
  width: 300px;
  max-width: 100%
}

.stats-mini-box {
  height: 120px;
  width: 300px;
  max-width: 100%;
}

.stats-container-mobile::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  z-index: 100;
  height: 20px;
  width: 150px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.stats-content {
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stats-text {
  padding: 80px 40px
}

.stats-box img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* End Section stats */
/* -------------------------------------------------------- */
/* Section finances */
.section-finances {
  background-color: var(--color-pale-blue);
  display: flex;
  justify-content: center;
  align-items: center;

  height: auto;
  min-height: auto;
  padding-bottom: 240px;
}

.finance-top-content {
  margin-bottom: 120px;
}

.finance-icon {
  text-align: center;
  margin-bottom: 40px;
}

.finance-icon img {
  width: 60px;
  max-width: 100%;
  height: 60px;
}
/* End Section finances */
/* -------------------------------------------------------- */
/* Section tools */
.section-tools {
  background-color: #0e0133;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 120px 0px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.section-tools-content {
  margin-bottom: 10rem;
}

.section-tools .container {
  position: relative;
  z-index: 10;
}
/* End Section tools */
/* -------------------------------------------------------- */
/* Section products */
.section-products {
  background-color: #0e0133;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 100px 0px;
  position: relative;
}

.blur-background {
  transform: translate(0%, -33%);
  position: absolute;
  width: 50%;
  height: 150%;
  right: 0px;
  top: 0px;
  background: var(--color-brand-blue);
  opacity: 0.4;
  filter: blur(273.5px);
  z-index: 9;
  pointer-events: none;
}

.section-products .container {
  position: relative;
  z-index: 10;
}
/* End Section products */
/* -------------------------------------------------------- */
/* Section integrations */
.section-integrations {
  background-color: #0e0133;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 100px 0px 200px 0px;
}
/* End Section integrations */
/* -------------------------------------------------------- */
/* Section api */
.section-api {
  background-color: #0e0133;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 100px 0px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
/* End Section api */
/* -------------------------------------------------------- */
/* Section pricing */
.section-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 0px 50px;
  background:
    linear-gradient(to bottom , var(--color-pale-blue) 70%, transparent),
    linear-gradient(to right, var(--color-primary), var(--color-light-blue));
  background-blend-mode: screen;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 75px;
}

.slides-container {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-wrap: nowrap;
}

.slide {
  margin: 0 15px 30px;
  max-width: 100%;
}

.pricing-card {
  padding: 24px;
  border: none !important;
  width: 300px !important;
  max-width: 100%;
  /* height: 100% !important; */
}

/* .pricing-card:has(.show-more.active) {
  height: 100% !important;
} */

.pricing-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 3px;
  background-color: var(--color-purple);
  padding: 12px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card-date {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  color: var(--color-dimmed);
}

.pricing-month,
.pricing-year {
  display: none;
}

.pricing-month.show,
.pricing-year.show {
  display: block;
}

.card-list-style {
  list-style: none;
  padding-left: 0px;
}

.card-list-style li {
  display: flex;
}

.card-list-style .custom-icon {
  position: relative !important;
  left: unset;
  top: 4px;
  min-width: 20px;
  margin-right: 5px;
}

.show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  color: var(--color-primary);
  width: 100%;
  padding: 0px;
  margin: 15px 0px;
}

.show-more .custom-icon.dropdown {
  filter: none !important;
}

.card-list-style .show-more .custom-icon {
  margin-right: 0px;
}

.card-list-style .show-more.active .custom-icon {
  transform: rotate(180deg);
}

.show-more-content {
  display: none;
  height: 0px;
  transition: all 0.3s ease;
}

.show-more-content.show {
  display: block;
  height: 100%;
  transition: all 0.3s ease;
}

/* End Section pricing */
/* -------------------------------------------------------- */
/* Footer */
footer {
  background-color: var(--color-pale-blue);
  padding: 112px 80px 0px;
  background: linear-gradient(to right, var(--color-primary), var(--color-light-blue));
}

footer .logo img {
  width: 250px;
  height: auto;
  display: block;
  margin-bottom: 80px;
}

footer .social-container {
  margin-bottom: 80px;
}

footer .social-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social-icon:not(:last-child) {
  margin-right: 8px;
}

footer .footer-bottom {
  text-align: center;
  margin-top: 61px;
}

footer .terms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
  color: var(--color-white);
}

/* End Section pricing */
/* -------------------------------------------------------- */
/* Section signin */
.section-signin {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--color-primary) 33%, var(--color-light-blue));
}

/* End Section signin */
/* -------------------------------------------------------- */
/* Media querys */

/* LG */
@media screen and (min-width: 992px) {
  .section-banner {
    margin-top: -98px;
  }

  .custom-header-button:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transition: all 0.3s ease;
  }

  .custom-header-button:has(.custom-icon):hover .custom-icon.lock {
    background-image: url("/assets/icons/lock-open.svg");
  }

  .custom-header-button:has(.custom-icon):hover .custom-icon.pen {
    left: calc(100% - (20px + 21px));
    filter: none;
  }

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

/* LG */
@media screen and (max-width: 991px) {
  :root {
    --fontsize8xl: 40px;
    --fontsize5xl: 32px;
    --fontsize4xl: 30px;
    --fontsize3xl: 28px;
    --fontsize2xl: 24px;
    --fontsizexl: 20px;
    --fontsizelg: 18px;
    --fontsizemd: 16px;
    --fontsizesm: 14px;
    --fontsizexs: 12px;

    --fontline-height9xl: 48px;
    --fontline-height7xl: 40px;
    --fontline-height4xl: 32px;
    --fontline-height2xl: 28px;
    --fontline-heightxl: 28px;
    --fontline-heightlg: 24px;
    --fontline-heightmd: 20px;

    /* --fontletter-spacingminus-md: -1px;  */
  }

  header {
    position: fixed;
  }

  .custom-header-button {
    flex-direction: column-reverse;
    border: none;
    border-left: 1px solid #FFFFFF14;
    background-color: transparent;
    padding: 8px 13px;
    color: var(--color-white);
    font-size: 11px !important;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.2px;
  }

  .custom-header-button > .custom-icon {
    width: 16px;
    height: 16px;
    position: relative !important;
    left: unset;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
  }

  .custom-button {
    padding: 10px 16px 10px 16px;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
  }

  .section-banner {
    background: linear-gradient(to bottom right, var(--color-primary) 33%, var(--color-light-blue) 66%, transparent), linear-gradient(to bottom left, var(--color-pale-blue), transparent 33%), linear-gradient(to top right, var(--color-pale-blue), transparent 33%), linear-gradient(to top left, var(--color-pale-blue), transparent 33%);
    background-blend-mode: screen;
  }

  .section-background {
    background: none !important;
  }

  .section-stats {
    background: linear-gradient(to bottom, var(--color-pale-blue), var(--color-pale-blue));
  }
}

/* MD */
@media screen and (max-width: 768px) {
  header .logo img {
    width: 200px;
  }

  footer .logo img {
    margin-bottom: 56px;
  }

  footer .social-container {
    margin-bottom: 63px;
  }

  footer .social-icon {
    background-color: #ffffff22;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(275deg) brightness(105%) contrast(102%);
  }

  footer .footer-bottom {
    margin-top: 0px;
  }

  footer .terms-container {
    margin-bottom: 87px;
    color: var(--color-white);
  }
}

/* SM */
@media screen and (max-width: 576px) {
  :root {
    /* --fontsize8xl: 40px; */
    /* --fontsize5xl: 32px; */
    /* --fontsize4xl: 30px; */
    /* --fontsize3xl: 28px; */
    --fontsize2xl: 22px;
    /* --fontsizexl: 20px; */
    /* --fontsizelg: 18px; */
    /* --fontsizemd: 16px; */
    /* --fontsizesm: 14px; */
    /* --fontsizexs: 12px; */

    /* --fontline-height9xl: 48px;
    --fontline-height7xl: 40px;
    --fontline-height4xl: 32px;
    --fontline-height2xl: 28px;
    --fontline-heightxl: 28px;
    --fontline-heightlg: 24px;
    --fontline-heightmd: 20px; */

    /* --fontletter-spacingminus-md: -1px;  */
  }

  header .logo img {
    width: 130px;
  }

  .custom-header-button {
    font-weight: 700;
    font-size: 10px !important;
  }
}
/* End Media querys */