@charset "UTF-8";
.text-center {
  text-align: center;
}

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

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

@media (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
}
.basic-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 991px) {
  .basic-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.google-signin {
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
.google-signin .googleSignInButton__loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  width: 100%;
  background-color: #05d189;
  border-radius: 1em;
  overflow: hidden;
  z-index: 10;
  display: none;
}
.google-signin .googleSignInButton__loading-bar.active {
  display: block;
}
.google-signin .googleSignInButton__loading-bar::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3333333333), rgba(230, 230, 230, 0.891));
  animation: loading-animation 1.3s infinite;
  border-radius: 0 0 4px 4px;
}

@keyframes loading-animation {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes status-blink-fill {
  0%, 100% {
    fill: #4D7466;
  }
  50% {
    fill: #99B3AA;
  }
}
.z-index-2 {
  z-index: 2;
}

body.preload * {
  animation-duration: 0s !important;
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 19px 0;
  z-index: 99;
  transition: 300ms all;
  animation: smoothScroll;
}
header .menu-container .btns-wrapper {
  display: none;
}
@media (min-width: 768px) {
  header {
    padding: 18px 0 12px;
  }
}
header.fixed {
  border-bottom: 0.2px solid #212B36;
  background: #FFF;
  box-shadow: 0px 2px 12px 0px rgba(33, 43, 54, 0.1);
  z-index: 10;
}
@media (min-width: 991px) {
  header.fixed .menu-container .btns-wrapper {
    display: flex;
  }
}
header.fixed .container {
  align-items: center;
}
header.fixed .container .dropdown__main-link {
  color: #212B36;
}
header.fixed .container .dropdown:hover .dropdown__main-link {
  color: #02A169;
}
@media (min-width: 991px) {
  header.fixed .regulated-wrapper .regulated-line {
    color: white;
  }
  header.fixed .regulated-wrapper .btn {
    display: block;
  }
}
header .regulated-wrapper {
  padding-bottom: 1.5rem;
}
header a.logo {
  line-height: 1;
  width: 200px;
  margin-right: 0;
}
header .switchmarkets-logo {
  -o-object-fit: contain;
     object-fit: contain;
}
header .regulated-wrapper .btn {
  display: none;
}
@media (max-width: 1199px) {
  header .container {
    align-items: center;
  }
}
header .icon-bar {
  transition: all 0.2s;
  display: block;
  width: 24px;
  height: 3px;
  opacity: 1;
  background-color: white;
  transition: transform 250ms ease-in-out;
}
header .icon-bar.middle-bar {
  margin: 5px 0;
}
header .toggle-nav, header .navbar.sidebar {
  display: none;
}
@media (max-width: 1199px) {
  header {
    /**
     * Submenu
     -----------------------------*/
  }
  header .navbar.sidebar .ul-nav-wrapper {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(100% - 1rem);
    margin: 4.5rem auto 0.5rem;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  header .navbar.sidebar .ul-nav-wrapper::-webkit-scrollbar {
    display: none;
  }
  header .toggle-nav {
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: transparent;
    border: none;
    outline: none;
    z-index: 101;
    transition: transform 150ms ease-in-out;
  }
  header .toggle-nav.active {
    position: fixed;
    top: 25px;
    right: 7px;
  }
  header .toggle-nav.active .top-bar {
    transform: rotate(45deg);
    transform-origin: -2% 10%;
  }
  header .toggle-nav.active .middle-bar {
    opacity: 0;
  }
  header .toggle-nav.active .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 7% 90%;
  }
  header .toggle-nav.active .icon-bar {
    background-color: #212B36;
  }
  header .navbar.sidebar {
    display: block;
    position: fixed;
    top: 0;
    z-index: 15;
    width: 100%;
    min-height: 100vh;
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
    line-height: 2.5;
    right: -100%;
    transition: all 350ms ease-in-out;
  }
  header .navbar.sidebar li.navbar-nav__item a::after {
    display: none;
  }
  header .navbar.sidebar a {
    opacity: 1;
  }
  header .navbar.sidebar a:hover {
    color: #00F198;
  }
  header .navbar.sidebar .navbar-nav {
    transform: translateX(50px);
    opacity: 0;
    /*transition: all 250ms ease-in-out;
    transition-delay: 150ms;*/
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item {
    opacity: 0;
    transform: translateX(25%);
    /*transition-delay: .35s;
    transition: all 200ms ease-in-out;*/
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(1) {
    transition-delay: 20ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(2) {
    transition-delay: 40ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(3) {
    transition-delay: 80ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(4) {
    transition-delay: 120ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(5) {
    transition-delay: 140ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(6) {
    transition-delay: 160ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(7) {
    transition-delay: 180ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(8) {
    transition-delay: 200ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(9) {
    transition-delay: 220ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(10) {
    transition-delay: 240ms;
  }
  header .navbar.sidebar.active {
    right: 0;
    z-index: 100;
  }
  header .navbar.sidebar.active .navbar-nav {
    transform: translateX(0);
    opacity: 1;
    max-height: 90vh;
  }
  header .navbar.sidebar.active .navbar-nav__item {
    transform: translateX(0);
    opacity: 1;
  }
  header .navbar.sidebar ul.navbar-nav li.navbar-nav__item {
    display: block;
    margin-left: 0;
  }
  header .navbar.sidebar .btn {
    max-width: 400px;
    margin: 0 auto;
    width: calc(100% - 1rem);
    margin-bottom: 12px;
  }
  header .navbar.sidebar .btn:hover {
    color: #212B36;
  }
  header .accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
  }
  header .client-login {
    margin: 0 auto;
    max-width: 1000px;
    padding: 20px 0 12px 16px;
  }
  header .client-login a {
    color: #fff;
  }
  header .accordion .link {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    position: relative;
    font-weight: 500;
    padding: 1rem;
    color: #212B36;
    border-top: 0.5px solid rgba(33, 43, 54, 0.3);
  }
  header .accordion .link .icon {
    font-size: 0.85rem;
    line-height: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
  }
  header .accordion .link.open {
    color: #04d189;
  }
  header .accordion .link.open .icon {
    transform: rotate(0deg);
  }
  header .accordion li:last-child .link {
    border-bottom: 0;
    font-size: 1rem;
  }
  header ul.submenu {
    display: none;
    margin-top: 5px;
    margin-bottom: 1rem;
    padding: 0;
  }
  header ul.submenu .title {
    color: rgba(33, 43, 54, 0.4);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
    margin-top: 14px;
  }
  header ul.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    margin-bottom: 1.5rem;
    transition: all 0.25s ease;
  }
}
header .navbar-nav {
  list-style: none;
  position: relative;
  width: 100%;
  line-height: 1;
  margin: 0;
  max-height: 100%;
}
header .navbar-nav li.navbar-nav__item {
  display: inline-block;
}
header .navbar-nav li.navbar-nav__item a {
  position: relative;
  font-family: inherit;
  font-weight: 400;
  color: #212B36;
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
header .navbar-nav li.navbar-nav__item a:not(.btn)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  right: 0;
  background: #1991ff;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.25s linear;
  margin-right: 0;
  margin-bottom: -0.5rem;
}
header .navbar-nav li.navbar-nav__item a:not(.btn):hover::after {
  visibility: visible;
  transform: scaleX(1);
}
header .menu {
  display: none;
}
header .menu > ul > li.dropdown > ul {
  display: none;
  grid-template-columns: 2.25fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem 0;
  margin-top: 10px;
  position: absolute;
  z-index: 99;
  right: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  transform: translateY(0);
  transition: all 250ms ease-in-out;
}
header .menu > ul > li.dropdown > ul.company {
  grid-template-columns: 4fr 1fr 1fr;
}
header .menu > ul > li.dropdown > ul.active {
  pointer-events: all;
  transform: translateY(1rem);
  opacity: 1;
}
header .menu > ul > li.dropdown > ul.active::after {
  content: " ";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  background-image: linear-gradient(to right, #040c48 1%, #00589c 51%, #04d189);
}
header .menu {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  text-align: right;
}
header .menu .apply-after::after {
  content: " ";
  background: linear-gradient(to right, #040c48 1%, #00589c 51%, #04d189);
  position: absolute;
  bottom: -1px;
  height: 4px;
  width: 100%;
}
header .menu .logo {
  display: flex;
  height: 42px;
  margin-top: -7px;
}
header .menu > ul > li.dropdown:hover a {
  opacity: 1;
}
header .menu > ul > li.dropdown:hover > ul {
  display: grid;
  pointer-events: all;
  transform: translateY(28px);
  opacity: 1;
  visibility: visible;
  padding: 32px 38px;
  border-radius: 4px;
  border: 1px solid rgba(33, 43, 54, 0.2);
  background: #FFF;
}
header .menu > ul > li.dropdown:hover > ul a {
  color: #777;
  width: -moz-max-content;
  width: max-content;
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
}
header .menu > ul > li.dropdown:hover > ul a:hover {
  background: rgba(4, 209, 137, 0.1490196078);
  color: #212B36;
}
header .menu > ul > li.dropdown:hover > ul a.btn {
  color: black;
}
header .menu > ul > li.dropdown i {
  font-size: 10px;
  margin-left: 5px;
}
header .menu > ul > li.dropdown ul {
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
}
header .menu-container {
  margin: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  header .menu-container {
    height: 40px;
  }
}
header .menu img {
  max-width: 100%;
  height: auto;
}
header .menu > ul {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-grow: 1;
}
header .menu > ul > li {
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
}
@media (min-width: 1200px) {
  header .menu > ul > li {
    padding: 0.8rem 1rem 0.8rem 0.8rem;
  }
}
header .menu > ul > li:last-child {
  padding: 1rem 0 1rem 1rem;
}
header .menu > ul > li span {
  text-align: left;
}
header .menu > ul > li p {
  text-align: left;
}
header .menu > ul > li > a {
  position: relative;
  text-decoration: none;
  display: block;
  color: white;
  opacity: 1;
  font-family: inherit;
  font-weight: 500;
  transition: all 200ms ease-in-out;
}
header .menu > ul > li > a:hover {
  color: #04d189;
  opacity: 1;
}
header .menu > ul > li > ul > li:not(.align-items-start) {
  margin: 0;
  list-style: none;
  float: left;
  color: #212b36;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .menu > ul > li > ul > li:not(.align-items-start):first-child {
  padding-right: 40px;
  border-right: 1px solid rgba(33, 43, 54, 0.15);
  margin-right: 20px;
}
header .menu > ul > li > ul > li.align-items-start {
  color: #212b36;
  flex-direction: column;
}
header .menu > ul > li > ul > li a {
  color: #777;
  display: block;
  border-bottom: 1px solid #ccc;
}
header .menu > ul > li > ul > li a:hover:not(.btn) {
  color: #00a268;
}
header .menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
header .menu > ul > li > ul > li > ul > li {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
header .menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-size: 16px;
  transition: all 200ms ease-in-out;
}
header .menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
}
header .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
header .menu > ul > li > ul.normal-sub > li a {
  border: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  header .menu {
    display: none;
  }
}
header input[type=radio] {
  display: none;
}
header .menu > ul > li.dropdown:hover, header .menu > ul > li.dropdown.open {
  opacity: 1;
}

.dropdown:hover .dropdown__main-link::before {
  width: 100%;
}
.dropdown:hover .dropdown__main-link .dropdown__main-link__chevron {
  transform: rotate(-180deg);
}
.dropdown:hover .dropdown__main-link {
  color: #04D189;
}
.dropdown__main-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.dropdown__main-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #02A169;
  transition: width 0.3s ease-in-out;
}
.dropdown__main-link .dropdown__main-link__chevron {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.dropdown__hover-solution {
  height: 40px;
  position: absolute;
  width: 100%;
}
.dropdown__title {
  color: rgba(33, 43, 54, 0.6);
  margin-bottom: 14px !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.dropdown__item {
  color: #212B36;
  font-size: 16px;
  font-weight: 400;
}
.dropdown__icon {
  margin-right: 6px;
}

.nav-bar__btns .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}
.nav-bar__btns__client-login {
  color: #fff;
  position: relative;
}
.nav-bar__btns__client-login::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #02A169;
  transition: width 0.3s ease-in-out;
}
.nav-bar__btns__client-login:hover {
  color: #04D189;
}
.nav-bar__btns__client-login:hover::before {
  width: 100%;
}

.switchmarkets-logo {
  position: absolute;
  top: 5px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .switchmarkets-logo {
    top: -2px;
  }
}
@media (min-width: 1200px) {
  .switchmarkets-logo {
    top: 5px;
  }
}

.logo-white {
  opacity: 1;
  pointer-events: auto;
}

.nav-bar.fixed .logo-white {
  opacity: 0;
}
.nav-bar.fixed .logo-colored {
  opacity: 1;
}
.nav-bar.fixed .nav-bar__btns__client-login {
  color: #212b36;
}
.nav-bar.fixed .nav-bar__btns__client-login:hover {
  color: #02A169;
}
.nav-bar.fixed .icon-bar {
  background-color: #212B36;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  grid-gap: 0.5rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.grid-wrap {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 991px) {
  .form-grid.grid-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

select::-ms-expand {
  display: none;
}

label {
  margin-bottom: 4px;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=number],
input[type=date] {
  border-radius: 3px;
  border: solid 1px #c4cdd5;
  background-color: #ffffff;
  padding: 0.5rem;
  outline: none;
  width: 100%;
  height: 36px;
  font-size: 0.875rem;
}
input[type=text][readonly=true],
input[type=email][readonly=true],
input[type=number][readonly=true],
input[type=date][readonly=true] {
  background-color: #adadad;
  border-color: #666666;
  cursor: not-allowed;
}

input[type=checkbox] {
  height: 12px;
  width: 40px;
  margin-right: 8px;
  border-radius: 1px;
}
input[type=checkbox].agreement {
  margin-top: 3px;
}

label.radio-label {
  position: relative;
  cursor: pointer;
  margin-left: 12px;
}
label.radio-label [type=radio]:checked,
label.radio-label [type=radio]:not(:checked) {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  font-size: 0.875rem;
  display: inline-block;
  color: #666;
  left: -12px;
}
label.radio-label [type=radio]:checked::before,
label.radio-label [type=radio]:not(:checked)::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
label.radio-label [type=radio]:checked::after,
label.radio-label [type=radio]:not(:checked)::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #04d189;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
label.radio-label [type=radio]:not(:checked)::after {
  opacity: 0;
  transform: scale(0);
}
label.radio-label [type=radio]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.phone-select-wrapper {
  border: 1px solid #c4cdd5;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  border-radius: 3px;
}
.phone-select-wrapper input {
  background-color: white;
  border: none;
  border-radius: 0 3px 3px 0;
  width: 100%;
}
.phone-select-wrapper select {
  display: block;
  border: none;
  border-radius: 3px 0 0 3px;
  border-right: 1px solid #c4cdd5;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  padding-left: 5px;
  padding-right: 16px;
  font-size: 12px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath fill='%23637381' fill-rule='nonzero' d='M0 .017L5.483 5.5 10.966.017z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-position-x: 90%;
  background-size: 11px;
  cursor: pointer;
}

.select {
  margin-top: 4px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.select svg {
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
  width: 11px;
  height: 11px;
  stroke-width: 2px;
  stroke: #637381;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  fill: #637381;
}
.select select {
  -webkit-appearance: none;
  padding: 7px 40px 7px 12px;
  width: 100%;
  height: 36px;
  border: 1px solid #c4cdd5;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.select select option[value=""][disabled] {
  display: none;
}
.select select:focus {
  outline: none;
  border-color: #07f;
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.2);
}
.select select:hover + svg {
  stroke: #07f;
}
.select select:required:invalid {
  color: #5a667f;
}
.select option {
  color: #223254;
}

input:focus,
textarea:focus {
  outline: none;
  border: 1px solid #1991ff !important;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  opacity: 0.7;
  text-align: left;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
  opacity: 0;
  text-align: left;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus::-moz-placeholder,
input:focus::-moz-placeholder {
  opacity: 0;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus:-moz-placeholder,
input:focus:-moz-placeholder {
  opacity: 0;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  opacity: 0;
  text-align: left;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.agreement a {
  text-decoration: underline;
}

/* Popup */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
}
.overlay_hidden {
  display: none;
}
.overlay_active {
  transition: opacity 500ms;
  opacity: 1;
  z-index: 100;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.popup {
  margin: 1rem auto;
  border-radius: 5px;
  width: 90%;
  max-width: 385px;
  transition: all 0.5s ease-in-out;
  z-index: 99;
  background: #0F0F0F;
  color: #fff;
  padding: 40px 16px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  position: relative;
  overflow-y: scroll;
}
.popup.popup-light {
  background: #fff;
  color: #212b36;
  padding: 40px 24px;
  max-width: 750px;
}
@media (max-width: 414px) and (max-height: 736px) {
  .popup.popup-light {
    height: auto;
  }
}
@media (min-width: 768px) {
  .popup.popup-light {
    padding: 40px 60px;
  }
}
.popup::-webkit-scrollbar {
  display: none;
}
.popup a {
  color: inherit;
  text-decoration: underline;
  transition: all 200ms ease-in-out;
}
.popup a:hover {
  opacity: 0.8;
}
.popup .popup-form {
  max-width: 570px;
  margin: 0 auto;
  overflow: hidden auto;
  border-radius: 4px;
  color: white;
}
.popup .popup-form form {
  padding: 0.5rem 1rem 1.5rem 1rem;
  max-width: 524px;
  margin: 0 auto;
}
.popup .popup-form label, .popup .popup-form .label {
  color: white;
}
.popup .header {
  text-align: center;
}
.popup h2 {
  text-transform: capitalize;
}
.popup h3 {
  color: white;
  font-size: 1.5rem;
  font-family: inherit;
  margin-bottom: 1.5rem;
}
.popup h4 {
  font-size: 1.2rem;
}
.popup #step2 {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .popup #step2 {
    padding: 2rem 1rem;
  }
}
.popup .close {
  position: absolute;
  top: 8px;
  right: 0.5rem;
  transition: all 200ms;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .content {
  height: auto;
}
.popup .content p {
  font-weight: 300;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 95%;
    overflow: hidden auto;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
  }
  .popup::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
  .popup .popup-form .header {
    padding: 1.5rem 1.5rem 1rem 1rem;
  }
  .popup .popup-form .header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .popup h4 {
    font-size: 1rem;
  }
  .popup .terms {
    font-size: 0.75rem;
  }
}
@media (max-width: 414px) and (max-height: 736px) {
  .popup {
    height: 95%;
  }
}
.input-button-inside {
  display: grid;
  grid-template-columns: 1fr;
  background: none;
  padding: 0;
  border-radius: 3px;
  border: none;
  width: 100%;
  max-width: 400px;
}
.input-button-inside input {
  display: inline-block;
  height: 40px;
  border: none;
}
.input-button-inside input:focus {
  border: 1px solid #04d189 !important;
}
.input-button-inside input::-moz-placeholder {
  text-align: center;
}
.input-button-inside input::placeholder {
  text-align: center;
}
.input-button-inside .btn-green {
  margin-top: 8px;
}

.pop-up-top {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.pop-up-hero {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.pop-up-hero .pop-up-dots {
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.2;
}
.pop-up-hero .pop-up-speech {
  width: 300px;
  z-index: 2;
}
.pop-up-hero .pop-up-speech h2 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 44.75px;
  font-weight: 900;
  line-height: 44.75px;
  text-align: left;
}
.pop-up-hero .pop-up-speech img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pop-up-hero .pop-up-speech-bg {
  position: absolute;
  width: 300px;
  top: -47px;
  right: 17px;
}

#exit-popup .card-wrapper {
  color: #fff;
}
#exit-popup .card-wrapper .price-card {
  border: none;
}
#exit-popup .card-wrapper .price-card:hover {
  box-shadow: 0 0 24px -3px #04d189;
}
#exit-popup .card-wrapper .price-card .price--header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.12%, rgba(0, 0, 0, 0.4) 82.95%), linear-gradient(135deg, #040C48 1.44%, rgba(0, 88, 156, 0.85) 50.56%, #009F68 100%), linear-gradient(140deg, #2C7BFD 14.35%, #183F80 96.97%);
}

.social-signin {
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}
.social-signin .social-buttons-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 16px;
}
.social-signin .facebookButton {
  flex: 1 1 100%;
}
.social-signin .social-separator__text {
  color: inherit;
  padding: 0 10px;
  margin: 16px auto;
  display: inline;
  text-align: center;
}
.social-signin .social-separator__text::after, .social-signin .social-separator__text::before {
  content: "";
  position: absolute;
  bottom: 11px;
  width: calc(50% - 70px);
  height: 1px;
  background: currentColor;
}
.social-signin .social-separator__text::after {
  right: 0;
}
.social-signin .social-separator__text::before {
  left: 0;
}

* {
  padding: 0;
  margin: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  color: #212b36;
  overflow-x: hidden;
}
@media (max-width: 990px) {
  body.menu-open {
    overflow: hidden;
  }
}

input,
select,
textarea,
button,
input:-webkit-autofill::first-line {
  font-family: inherit;
}

.order-n1 {
  order: -1;
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2;
  }
}
@media (min-width: 991px) {
  .order-lg-2 {
    order: 2;
  }
}
#pageWrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow-x: hidden;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
#pageWrap::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.subheading {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: -1px;
}
@media (min-width: 460px) {
  h1,
  .h1 {
    font-size: 2.45rem;
  }
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.65rem;
    line-height: 1.4;
  }
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.4;
}
h2.has-icon,
.h2.has-icon {
  line-height: 1;
}

.h2-smaller {
  font-size: 1.132rem;
}
@media (min-width: 1024px) {
  .h2-smaller {
    font-size: 1.625rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead-text {
  font-size: 18px;
  line-height: 150%;
}

.overflow-hidden {
  overflow: hidden;
}

.btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  min-width: 98px;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 2px;
  will-change: background-color, color, background-image, border-color;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, background-image 0.25s ease-out, border-color 0.25s ease-out;
}
.btn .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}
.btn .icon.icon-spinner {
  height: 14px;
  width: 14px;
  display: inline-block;
  margin-left: 5px;
}
@media (min-width: 414px) {
  .btn {
    font-size: 0.875rem;
  }
}
.btn.btn-lg {
  padding: 10px 27px;
}
.btn.btn-xl {
  border-radius: 3px;
  padding: 0.5rem 0.7rem;
}
@media (min-width: 414px) {
  .btn.btn-xl {
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
  }
}
@media (min-width: 768px) {
  .btn.btn-xl {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }
}
.btn.btn-wide {
  min-width: 167px;
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-wide {
    width: auto;
    min-width: 240px;
  }
}
.btn.btn-ex-wide {
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-ex-wide {
    width: auto;
    min-width: 167px;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .btn.centered-mobile {
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .btn.centered {
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
}
.btn.btn-fluid {
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-fluid {
    width: auto;
    max-width: 320px;
  }
}
.btn.btn-border-green {
  border: 2px solid #009762;
  color: #212b36;
}
.btn.btn-border-green:hover:not(.active) {
  color: #02A169;
}
.btn.btn-border-green.active {
  border: solid 2px #02A169;
  background: #04d189;
}
.btn.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 15px;
  width: 100%;
  max-width: 200px;
}
.btn.btn-price {
  position: relative;
  z-index: 1;
  color: white;
  border-radius: 3px;
  background: linear-gradient(101deg, #040c48 1%, #1e67c5 52%, #1991ff 99%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem;
  margin-top: 1.2rem;
  overflow: hidden;
}
.btn.btn-price.btn-pro {
  background-image: linear-gradient(134deg, #040c48 0%, #00589c 18%, #04d189 100%);
}
.btn.btn-price::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 4px;
  transform: translateX(-100%);
  background: linear-gradient(95deg, #040c48 1%, #040c48 51%, #040c48);
  transition: all 250ms ease-in-out;
  will-change: transform, opacity;
  z-index: -1;
}
.btn.btn-price:hover::before {
  transform: translate(0);
  opacity: 1;
}
.btn.btn-dark-blue {
  background: #040c48;
}
.btn.btn-dark-blue:hover {
  background: #2f3774;
}
.btn.btn-green {
  color: #212b36;
  border: solid 2px #02A169;
  background-image: linear-gradient(179deg, #04d189 0%, #04d189 52%, #04d189 100%);
  z-index: 1;
}
.btn.btn-green::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #00f198 0%, #19ba80 52%, #007c50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-green:hover::before {
  opacity: 1;
}
.btn.btn-green-outline {
  color: #212b36;
  border: solid 2px #02A169;
  background: transparent;
  z-index: 1;
}
.btn.btn-green-outline::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(179deg, #00f198 0%, #19ba80 52%, #007c50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-green-outline:hover::before {
  opacity: 1;
}
.btn.btn-blue {
  color: #fff;
  border: solid 2px #1991ff;
  background: #1991ff;
  z-index: 1;
}
.btn.btn-blue::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(25, 145, 255);
  background: linear-gradient(180deg, rgb(25, 145, 255) 0%, rgb(26, 112, 191) 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-blue:hover::before {
  opacity: 1;
}
.btn.btn-white {
  color: #212b36;
  border: solid 1px #e4e4e4;
  background-color: #ffffff;
}
.btn.btn-white:hover {
  background-color: #e4e4e4;
}
.btn.btn-white.btn-border-green {
  border: 2px solid #009762;
}
.btn.btn-white.btn-border-green:hover {
  background: #04d189;
  color: white;
}
.btn.btn-blue-solid {
  color: #fff;
  border: none;
  background-image: linear-gradient(101deg, #040c48 1%, #1e67c5 52%, #1991ff 99%);
  z-index: 1;
}
.btn.btn-blue-solid::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(101deg, #1991ff 1%, #1e67c5 52%, #040c48 99%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-blue-solid:hover::before {
  opacity: 1;
}
.btn.btn-blue-outline {
  color: #1991ff;
  border: 2px solid #1991ff;
}
.btn.btn-blue-outline:hover {
  color: white;
  background-color: #212b36;
}
.btn.btn-blue-outline {
  color: #1991ff;
  border: 2px solid #1991ff;
}
.btn.btn-blue-outline:hover {
  background-color: #1991ff;
  color: white;
}
.btn.btn-white-outline {
  color: white;
  background-image: linear-gradient(179deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0) 100%);
  border: solid 2px white;
}
.btn.btn-white-outline::before {
  position: absolute;
  content: " ";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #ffffff 0%, #ffffff 52%, #e6e6e6 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-white-outline:hover {
  color: #212b36;
  z-index: 1;
}
.btn.btn-white-outline:hover::before {
  opacity: 1;
}
.btn.facebookButton, .btn.appleButton {
  display: flex;
  align-items: center;
  gap: 3px;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 1s linear infinite;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

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

.d-flex {
  display: flex;
}

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

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

@media (min-width: 768px) {
  .flex-md-column {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .flex-lg-column {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .flex-xl-column {
    flex-direction: column;
  }
}
.flex-row {
  flex-direction: row;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row;
  }
}
.flex-gap-8 {
  gap: 8px;
}

.flex-gap-16 {
  gap: 16px;
}

.flex-gap-20 {
  gap: 20px;
}

.flex-gap-24 {
  gap: 24px;
}

.flex-gap-32 {
  gap: 32px;
}

.flex-gap-40 {
  gap: 40px;
}

.ml-auto {
  margin-left: auto !important;
}

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

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

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

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

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

p {
  line-height: 1.4;
  margin: 0;
}

.text-small {
  font-size: 0.91rem;
  letter-spacing: 0;
}

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

.text-md {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-05 {
  margin-top: 0.5rem;
}

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

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

.mb-05 {
  margin-bottom: 0.5rem !important;
}

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

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

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

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

.mr-05 {
  margin-right: 0.5rem;
}

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

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

.ml-05 {
  margin-left: 0.5rem;
}

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

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

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

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

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

.mt-1_5 {
  margin-top: 1.5rem !important;
}

.mb-1_5 {
  margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0;
  }
}
.p-0 {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-2 {
  order: 2;
}

@media (min-width: 768px) {
  .order-md-n1 {
    order: -1;
  }
}
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.opacity {
  opacity: 0.5;
}

.icon {
  line-height: 0;
}

a .icon-arrow-down {
  color: #212b36;
  opacity: 0.15;
}

img {
  max-width: 100%;
}

.rounded {
  border-radius: 4px;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-1 {
    padding-right: 1rem;
  }
}
@media (min-width: 991px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pb-lg-3 {
    padding-bottom: 3rem;
  }
  .pb-lg-4 {
    padding-bottom: 4rem;
  }
  .pt-lg-4 {
    padding-top: 4rem;
  }
  .pt-lg-5 {
    padding-top: 5rem;
  }
  .pt-lg-6 {
    padding-top: 6rem;
  }
  .pb-lg-6 {
    padding-bottom: 6rem;
  }
  .pt-lg-7 {
    padding-top: 7rem;
  }
  .pb-lg-7 {
    padding-bottom: 7rem;
  }
  .pt-lg-8 {
    padding-top: 8rem;
  }
  .pb-lg-8 {
    padding-bottom: 8rem;
  }
  .pt-lg-10 {
    padding-top: 10rem;
  }
}
@media (min-width: 991px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .flex-lg-row {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex;
  }
}
.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #fbfbfb;
}

.bg-light-blue {
  background-color: #f0f8ff;
}

.bg-dark-blue {
  background-color: #040c48;
}

.bg-gray {
  background-color: #E9EEF3;
}

.bg-gradient-blue-green {
  background-image: linear-gradient(111deg, #040c48 1%, #00589c 51%, #04d189);
}

.text-blue {
  color: #1991ff;
}

.text-grey {
  color: #637381;
}

.text-green {
  color: #04d189;
}

.text-dark-blue {
  color: #00589c;
}

.text-dark-green {
  color: #02A169;
}

.text-light-grey {
  color: #949494;
}

.text-white {
  color: white;
}

.text-itallic {
  font-style: italic;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #1991ff;
}

.error-message {
  background: #fbeae5;
  border-radius: 3px;
  color: #bb0710 !important;
  border: 1px solid #de3617;
  text-align: left;
  padding: 0.5rem;
}

.success-message {
  background: rgb(234, 248, 243);
  border-radius: 3px;
  color: #00a268;
  border: 1px solid #00a268;
  text-align: left;
  padding: 0.5rem;
}

.link-underline-hover {
  border-bottom: 1px solid transparent;
  transition: all 150ms ease-in-out;
}
.link-underline-hover:hover {
  border-bottom: 1px solid #1991ff;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: center;
  grid-gap: 2rem;
}
.columns-grid.grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .columns-grid.grid-lg {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.columns-grid.sm-gap {
  grid-gap: 1rem;
}
.columns-grid.no-gap {
  grid-gap: 0;
}
@media (min-width: 991px) {
  .columns-grid.no-gap-lg {
    grid-gap: 0;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-start {
    justify-content: start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
}
@media (min-width: 991px) {
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-start {
    justify-content: start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
}
.animate-scroll {
  opacity: 0;
  transform: translateY(4em);
  transition: transform 1s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  will-change: transform, opacity;
}
.animate-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.border-right {
  border-right: 1px solid #979797;
}

.container {
  width: 100%;
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin-right: auto;
  margin-left: auto;
}
.container.container-md {
  max-width: 991px;
}
.container.container-sm {
  max-width: 768px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    min-width: 720px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}

.margin-auto {
  margin: auto;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.h-100vh {
  height: 100%;
  min-height: 100vh;
}

@media (min-width: 991px) {
  .w-lg-80 {
    width: 80%;
  }
  .h-lg-100vh {
    height: 100%;
    min-height: 100vh;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
}
.h-100 {
  height: 100%;
}

.video-player {
  border: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .switchmarkets-logo {
    max-width: 140px;
    height: auto;
  }
}
#internal-hero-content {
  padding-top: 8rem;
}
@media (min-width: 768px) {
  #internal-hero-content {
    padding-top: 9rem;
  }
}

.hero {
  height: 100%;
}

.hero.homepage header {
  position: relative;
  animation: smoothScrollDown 500ms forwards;
}
.hero.homepage header.fixed {
  position: fixed;
  animation: smoothScroll 500ms forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smoothScrollDown {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.cookie-consent {
  visibility: hidden;
  opacity: 0;
  padding: 4px;
  position: fixed;
  width: auto;
  left: 0;
  bottom: 100px;
  z-index: 9999;
  background: #040c48;
  color: #fff;
  border-radius: 0;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  .cookie-consent {
    padding: 16px;
    width: 345px;
    left: 15px;
    bottom: 15px;
  }
}
.cookie-consent.show {
  display: flex;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.cookie-consent__content {
  padding: 24px;
}
.cookie-consent__content__title {
  margin-top: 12px;
  font-weight: 500;
}
.cookie-consent__content__text {
  margin-top: 8px;
  font-size: 12px;
  margin-bottom: 0;
}
.cookie-consent__buttons {
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cookie-consent__buttons .btn-deny {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

input,
select {
  font-size: 0.8rem;
  font-weight: 400;
}

/*** iPhone and iOS Form Input Zoom Fixes ***/
/* Fix Input Zoom on devices older than iPhone 5: */
@media screen and (device-aspect-ratio: 2/3) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url] {
    font-size: 16px;
  }
}
/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url] {
    font-size: 0.8rem;
  }
}
/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375/667) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=tel],
  input[type=url] {
    font-size: 0.8rem;
  }
}
/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9/16) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=tel],
  input[type=url] {
    font-size: 0.8rem;
  }
}
.website-selector {
  background-color: #050639;
}
.website-selector .select select {
  background: transparent;
  color: #c4cdd5;
}

footer {
  padding-top: 3rem;
}
footer .twitter-icon {
  color: white;
}
footer .twitter-icon:hover {
  color: #1da1f2;
}
@media (min-width: 1200px) {
  footer .footer-offers {
    min-width: 150px;
  }
}
footer .facebook-icon {
  color: white;
}
footer .facebook-icon:hover {
  color: #4267b2;
}
footer .instagram-icon {
  color: white;
}
footer .instagram-icon:hover {
  color: #e1306c;
}
footer .logo {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  footer .logo {
    margin-bottom: 0;
  }
}
@media (max-width: 384px) {
  footer .btn-green {
    margin-bottom: 1rem;
  }
}
footer a {
  color: #bfbfbf;
  transition: all 200ms ease-in-out;
}
footer a:hover {
  color: white;
}
footer .columns-grid.grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  text-align: left;
  grid-template-rows: 1fr 1fr;
}
footer .footer-container-wrapper {
  flex-direction: column;
  text-align: center;
  padding-bottom: 3rem;
}
@media (min-width: 991px) {
  footer .footer-container-wrapper {
    flex-direction: row;
  }
}
footer .footer-container-wrapper .logo-wrapper {
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  footer .footer-container-wrapper .logo-wrapper {
    margin-right: 2rem;
  }
}
footer .footer-social {
  order: 8;
  max-width: 140px;
}
@media (min-width: 526px) {
  footer .footer-social {
    order: 7;
  }
}
footer .footer-tools {
  grid-row: auto;
  grid-column: 1/3;
  order: 7;
  gap: 10px;
}
@media (min-width: 526px) {
  footer .footer-tools {
    order: 8;
    grid-column: 1/5;
  }
}
@media (min-width: 768px) {
  footer .footer-tools {
    grid-column: 1/6;
  }
}
@media (min-width: 992px) {
  footer .footer-tools {
    grid-row: 2/3;
    grid-column: 1/8;
  }
}
footer .footer-tools-title {
  flex: 1 1 100%;
}
footer .footer-tools a {
  flex: 1 1 50%;
}
@media (min-width: 768px) {
  footer .footer-tools a {
    flex: 0 1 33%;
  }
}
@media (min-width: 992px) {
  footer .footer-tools a {
    flex: 1 1 25%;
  }
}
footer .base-footer {
  background-color: #01062d;
  padding: 1.5rem 0;
  color: white;
  font-size: 0.75rem;
}
footer .base-footer a {
  color: white;
  text-decoration: underline;
}
footer .base-footer a:hover {
  color: #1991ff;
}
footer .base-footer .footer-links {
  text-decoration: none;
}
@media (max-width: 767px) {
  footer .base-footer span:first-child {
    margin-bottom: 1rem;
  }
}

.bounce-animation {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.up-trade {
  color: #04d189 !important;
}

.down-trade {
  color: #e02b2b !important;
}

.grecaptcha-badge {
  opacity: 0;
}

.xmas-discount {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #2C2C2C;
}
@media (min-width: 992px) {
  .xmas-discount {
    font-size: 22px;
  }
}
.xmas-discount .strike {
  position: relative;
  width: 85px;
}
.xmas-discount .strike::after {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 85px;
  height: 6px;
  opacity: 0.7;
  background-color: #FF3225;
}

.institutional-active .strike {
  position: relative;
  width: 85px;
}
.institutional-active .strike::after {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 62px;
  height: 6px;
  opacity: 0.7;
  background-color: #FF3225;
}

/* Vimeo player */
.vimeo-player {
  position: relative;
  width: 100%;
}
.vimeo-player::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.vimeo-player__inner {
  position: absolute;
  inset: 0 0 0 0;
  cursor: pointer;
}
.vimeo-player__inner[data-placeholder]:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}
.vimeo-player__inner[data-placeholder]::after {
  content: "";
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 78 78'%3e%3ccircle cx='39' cy='39' r='38.5' stroke='white'/%3e%3cpath d='M51 39.5 32 50V29l19 10.5Z' fill='white'/%3e%3c/svg%3e") center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 2px solid #fff;
  border-radius: 50%;
  transform-origin: center;
  transition: all 0.25s ease;
}
.vimeo-player__inner img {
  max-width: unset;
}
.vimeo-player__inner iframe, .vimeo-player__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
}

.trustpilot-widget {
  position: relative;
  left: -30px;
}
.trustpilot-widget.centered {
  display: flex;
  justify-content: center;
}

.sm-image-bg {
  position: relative;
}
.sm-image-bg__image {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.sm-image-bg__pulse {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 209, 137, 0.4) 0%, rgba(4, 209, 137, 0) 70%);
  animation: pulse-gradient 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.sm-image-bg__pulse--1 {
  top: 38%;
  left: 34%;
  animation-delay: 0s;
}
.sm-image-bg__pulse--2 {
  top: 70%;
  left: 50%;
  animation-delay: 0.6s;
}
.sm-image-bg__pulse--3 {
  top: 92%;
  left: 62%;
  animation-delay: 1.2s;
}
.sm-image-bg__pulse--4 {
  top: 8%;
  left: 94%;
  animation-delay: 1.8s;
}
.sm-image-bg__pulse--5 {
  top: 57%;
  left: 97%;
  animation-delay: 2.4s;
}
.sm-image-bg__section-container {
  position: relative;
  z-index: 2;
}

@keyframes pulse-gradient {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.75;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.75;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
}
.sm-gradient-blue-bg {
  background: linear-gradient(308deg, rgba(0, 0, 0, 0.85) 74.64%, rgba(0, 0, 0, 0) 100%), linear-gradient(135deg, #040C48 18.67%, rgba(0, 88, 156, 0.85) 61.25%, #04D189 96.66%);
}

.three-easy-steps-section {
  padding: 96px 0;
  position: relative;
}
@media (min-width: 992px) {
  .three-easy-steps-section {
    padding: 160px 0;
  }
}
.three-easy-steps-section .three-easy-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps {
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps__title {
    text-align: center;
  }
}
.three-easy-steps-section .three-easy-steps__subtitle {
  font-size: 18px;
  color: #212B36;
  margin-top: 8px;
  font-weight: 400;
}
.three-easy-steps-section .three-easy-steps__subtext {
  color: #656C74;
  margin-left: auto;
  margin-right: auto;
}
.three-easy-steps-section .three-easy-steps__card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card {
    max-width: 250px;
    padding: 0 10px 0 20px;
  }
}
.three-easy-steps-section .three-easy-steps__card__number {
  margin-bottom: 16px;
  margin-left: -6px;
  width: 48px;
  height: 56px;
}
.three-easy-steps-section .three-easy-steps__card__title {
  margin-bottom: 12px;
  font-size: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card__title {
    align-items: center;
  }
}
.three-easy-steps-section .three-easy-steps__card__title__text {
  font-size: 20px;
}
.three-easy-steps-section .three-easy-steps__card__text {
  font-weight: 300;
}
@media (max-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card__icon {
    width: 40px;
    margin-left: 15px;
  }
}

.three-easy-steps__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  justify-content: center;
  justify-items: start;
  text-align: start;
  width: 100%;
  position: relative;
  /* Line between Point 1 and Point 2 */
  /* Keyframes for the first arrow animation */
  /* Keyframes for the second arrow animation */
}
@media (min-width: 992px) {
  .three-easy-steps__cards {
    grid-template-columns: repeat(3, minmax(0, 250px));
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .three-easy-steps__cards {
    /* Line between Point 2 and Point 3 */
  }
  .three-easy-steps__cards::before {
    content: "";
    position: absolute;
    top: 57%;
    left: 0;
    width: calc(50% - 125px); /* Line spans from Point 1 to Point 2 */
    height: 2px;
    background: linear-gradient(113deg, #04D189 -15.14%, #00589C 54.59%);
    z-index: 1; /* Below the arrow */
  }
  .three-easy-steps__cards::after {
    content: "";
    position: absolute;
    top: 57%;
    left: calc(50% + 125px); /* Start from the middle of Point 2 */
    width: calc(50% - 365px); /* Line spans from Point 2 to Point 3 */
    height: 2px;
    background: linear-gradient(113deg, #04D189 -15.14%, #00589C 54.59%);
    z-index: 1; /* Below the arrow */
  }
}
.three-easy-steps__cards .svg-anim {
  display: none;
}
@media (min-width: 1300px) {
  .three-easy-steps__cards .svg-anim {
    display: block;
    position: absolute;
    top: calc(57% - 15px);
    width: 30px;
    height: 30px;
    z-index: 2;
    opacity: 0;
  }
  .three-easy-steps__cards .svg-anim--first {
    left: 20%; /* Start at Point 1 */
    animation: moveToSecondPoint 4s linear infinite;
  }
  .three-easy-steps__cards .svg-anim--second {
    left: calc(50% + 130px);
    animation-fill-mode: forwards;
    animation: moveToThirdPoint 4s linear infinite 2s;
  }
}
@keyframes moveToSecondPoint {
  0% {
    left: 20%;
    opacity: 0; /* Arrow is visible at the start */
  }
  5% {
    opacity: 1; /* Arrow fades in shortly after start */
  }
  50% {
    left: calc(50% - 150px);
    opacity: 1; /* Arrow reaches Point 2 */
  }
  51% {
    opacity: 0; /* Arrow fades out immediately after reaching Point 2 */
  }
  100% {
    left: 20%;
    opacity: 0; /* Arrow remains hidden at the start during the delay */
  }
}
@keyframes moveToThirdPoint {
  0% {
    left: calc(50% + 130px);
    opacity: 0; /* Arrow starts hidden */
  }
  10% {
    opacity: 1; /* Arrow fades in shortly after start */
  }
  50% {
    left: 78%;
    opacity: 1; /* Arrow reaches Point 3 */
  }
  51% {
    opacity: 0; /* Arrow fades out immediately after reaching Point 3 */
  }
  100% {
    left: calc(50% + 130px);
    opacity: 0; /* Arrow remains hidden at the start during the delay */
  }
}

.text-left-banner {
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: end;
  height: 450px;
  margin-top: 80px;
}
@media (min-width: 576px) {
  .text-left-banner {
    height: auto;
    min-height: 420px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .text-left-banner {
    padding: 100px 15px;
  }
}
.text-left-banner__bg-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-left-banner__bg-image-alt {
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .text-left-banner__bg-image-alt {
    display: block;
  }
}
.text-left-banner__text {
  z-index: 2;
  position: relative;
  color: #fff;
}
@media (min-width: 576px) {
  .text-left-banner__text {
    width: 330px;
  }
}
.text-left-banner .sub-cta a {
  color: #04D189;
}

.customer-reviews {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0;
}
.customer-reviews .bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.customer-reviews .container-reviews {
  padding: 80px 15px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fff;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews {
    flex-direction: row;
    padding: 80px 45px;
  }
}
@media (min-width: 1200px) {
  .customer-reviews .container-reviews {
    padding: 100px 115px;
    flex-direction: row;
  }
}
.customer-reviews .container-reviews .quote-mark {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  width: 42px;
  height: 48px;
  left: 0;
  top: 0;
  margin-top: -24px;
  margin-left: -14px;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .quote-mark {
    margin-top: -5%;
  }
}
.customer-reviews .container-reviews .trust-pilot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .trust-pilot {
    margin-right: 24px;
    margin-bottom: 0;
  }
}
.customer-reviews .container-reviews .trust-pilot h2 {
  margin: 12px 0;
}
.customer-reviews .container-reviews .trust-pilot .trustpilot-widget {
  margin-top: 0 !important;
  left: 0;
  margin-left: -35px;
}
.customer-reviews .container-reviews .carousel-container .carousel-text {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(14.5px);
          backdrop-filter: blur(14.5px);
  padding: 24px 16px 20px 16px;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.customer-reviews .container-reviews .carousel-container .carousel-text .title {
  font-size: 18px;
  font-weight: 700;
}
.customer-reviews .container-reviews .carousel-container .carousel-text .info {
  font-size: 16px;
  font-weight: 300;
}
.customer-reviews .container-reviews .carousel-container .splide__pagination {
  bottom: -1.5em;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .carousel-container .splide__list {
    align-items: center;
  }
}
.customer-reviews .triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 50px solid #121F55;
  transform: rotate(180deg);
  right: -5%;
  position: relative;
  top: -2px;
  z-index: 3;
  display: none;
}
@media (min-width: 992px) {
  .customer-reviews .triangle {
    display: block;
  }
}
.customer-reviews .btn.btn-xl {
  font-size: 1.1rem;
  padding: 0.8rem 4.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .customer-reviews .btn.btn-xl {
    width: auto;
  }
}

.faq-section {
  padding: 96px 0;
  /* Horizontal Line State */
}
@media (min-width: 992px) {
  .faq-section {
    padding: 160px 0;
  }
}
.faq-section .accordion-container {
  max-width: 1000px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .faq-section .accordion-container {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
.faq-section .accordion-column {
  display: flex;
  flex-direction: column;
  gap: 0 1rem;
}
.faq-section .accordion-item {
  background-color: #fff;
  border-radius: 2px;
  border-bottom: 1px solid rgba(36, 39, 44, 0.05);
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-section .accordion-item__header__title {
  padding: 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: 400;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  color: #212B36;
  font-size: 16px;
}
.faq-section .accordion-item__header__title .faq-number {
  font-weight: 400;
  font-size: 18px;
  margin-right: 0.75rem;
  color: #212B36;
  min-width: 2rem;
  text-align: center;
}
.faq-section .accordion-item__header .icon {
  font-size: 14px;
  opacity: 0.7;
  transition: transform 200ms ease-in-out;
  margin-left: auto;
}
.faq-section .accordion-item__header:hover:not(.active) {
  color: #007BFF;
}
.faq-section .accordion-item__header.active {
  background: #f4f4f4;
}
.faq-section .accordion-item__header.active .icon {
  transform: rotate(-180deg);
}
.faq-section .accordion-item.active .accordion-item__header__title {
  font-weight: 700;
}
.faq-section .accordion-item.active .accordion-item__header__title .faq-number {
  font-weight: 700;
}
.faq-section .accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-section .accordion-item__body-content {
  padding: 1rem;
  line-height: 1.4;
  text-align: left;
}
.faq-section .accordion-item__cross {
  width: 17px;
  height: 17px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0; /* Prevents shrinking */
}
.faq-section .accordion-item__cross::before,
.faq-section .accordion-item__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px; /* Thinner line */
  background-color: black;
  transition: transform 0.3s ease;
}
.faq-section .accordion-item__cross::before {
  transform: translate(-50%, -50%);
}
.faq-section .accordion-item__cross::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-section .accordion-item__cross.active::before {
  transform: translate(-50%, -50%);
}
.faq-section .accordion-item__cross.active::after {
  transform: translate(-50%, -50%) rotate(0);
}

@keyframes beam-fly {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.section_algobuilder_action {
  background-color: var(--color-brand-blue-300);
  background-image: linear-gradient(122deg, #040C48 24.67%, #040C48 59.48%, #04D189 88.42%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--spacing-xxl);
  width: 100%;
  position: relative;
}
.section_algobuilder_action::after {
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.71) 6.56%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section_algobuilder_action .conteiner {
  z-index: 1;
  margin: 40px;
}
.section_algobuilder_action .conteiner .highlight_content .logos {
  margin: 8px 0;
}
.section_algobuilder_action .conteiner .highlight_content .logos .sponsor_txt {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.section_algobuilder_action .conteiner .highlight_content .title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36.4px;
}
.section_algobuilder_action .conteiner .highlight_content .title .title_highlight {
  color: #04D189;
}
.section_algobuilder_action .conteiner .highlight_content .description {
  margin: 0 auto;
}
.section_algobuilder_action .conteiner .highlight_content .description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner {
  display: flex;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  gap: 40px;
  max-width: 1240px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
  flex: 1 1 100%;
}
@media (min-width: 991px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
    flex: 0 0 calc(50% - 24px);
  }
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list {
  text-align: left;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: rgba(238, 242, 246, 0.5019607843);
  border-radius: 8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li {
  padding: 21px;
  border-width: 1px 1px 1px 1px;
  border-color: rgba(238, 242, 246, 0.5019607843);
  border-style: solid;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li:first-child {
  border-radius: 8px 8px 0 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li:last-child {
  border-radius: 0 0 8px 8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .header h4 {
  font-weight: 700;
  font-size: 16px;
  margin: 10px 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .header h4 img {
  position: relative;
  margin-right: 5px;
  top: 2px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .title h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-card .expand-app-slides {
  display: none;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-card .expand-app-slides.active {
  display: block;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item {
  cursor: pointer;
  position: relative;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active {
  background-color: rgba(42, 71, 96, 0.4);
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .header h4 {
  color: #04D189;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .header h4 img {
  filter: invert(43%) sepia(96%) saturate(1237%) hue-rotate(88deg) brightness(128%) contrast(119%);
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .progress {
  width: 100%;
  height: 3px;
  position: absolute;
  transform-origin: top right;
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .progress::after {
  animation: beam-fly 10s linear infinite;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(122deg, #040C48 24.67%, #040C48 59.48%, #04D189 88.42%);
  border-radius: var(--border-radius);
  transform: translateX(-100%);
}
@media (min-width: 800px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item .expand-app-card__img {
    display: none;
  }
}
@media screen and (max-width: 810px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .image_column {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .expand-app-card__img {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .expand-app-card__img.active {
    margin-top: 10px;
    display: block;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .content {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item.active .content {
    display: block;
  }
}
.section_algobuilder_action .conteiner .two-cols .flex-column {
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .section_algobuilder_action .conteiner .two-cols .flex-column {
    width: 320px;
    text-align: center;
  }
}

.free-pineconnector .hero {
  position: relative;
  color: #fff;
  overflow: visible;
  z-index: 1;
  padding: 60px 0px 80px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.942), rgba(0, 0, 0, 0.8)), linear-gradient(123deg, rgba(4, 12, 72, 0.5450980392) 0%, rgba(0, 88, 156, 0.4078431373) 85%, rgba(4, 209, 137, 0.431372549) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.free-pineconnector .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.free-pineconnector .hero__bg .freepineconnector-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 0.03;
}
.free-pineconnector .hero__bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  z-index: 1;
}
.free-pineconnector .hero__content {
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
  text-align: left;
}
.free-pineconnector .hero__content .pineconnector-logo {
  height: 34px;
  width: auto;
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .free-pineconnector .hero__content .pineconnector-logo {
    height: 54px;
  }
}
.free-pineconnector .hero__content .main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .free-pineconnector .hero__content .main-title {
    font-size: 64px;
  }
}
.free-pineconnector .hero__content .main-title .green {
  color: #10b981;
}
.free-pineconnector .hero__content .h3-title {
  font-weight: 300;
}
.free-pineconnector .hero__content .subtitle {
  width: 100%;
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .free-pineconnector .hero__content .subtitle {
    width: 40%;
  }
}
.free-pineconnector .hero__content .buttons-wrapper {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .free-pineconnector .hero__content {
    margin-top: 120px;
  }
  .free-pineconnector .hero__content .title {
    font-size: 48px;
  }
  .free-pineconnector .hero__content .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .free-pineconnector .hero__content .title {
    font-size: 64px;
  }
}
.free-pineconnector .hero__content .image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-bottom: -15%;
}
.free-pineconnector .hero__content .image-wrapper .hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .free-pineconnector .hero__content .image-wrapper {
    margin-bottom: -20%;
  }
}
.free-pineconnector .hero + .pine-features-block {
  position: relative;
  z-index: 0;
  padding-top: 10%;
}
@media (min-width: 768px) {
  .free-pineconnector .hero + .pine-features-block {
    padding-top: 18%;
  }
}
.free-pineconnector .pine-features-block {
  padding: 160px 0px 80px;
}
.free-pineconnector .pine-features-block .subtitle {
  font-size: 18px;
  color: #212B36;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.free-pineconnector .pine-features-block .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid {
    gap: 0;
  }
}
.free-pineconnector .pine-features-block .features-grid .feature-item {
  background-color: inherit;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 64px rgba(99, 115, 129, 0.12);
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid .feature-item {
    background-color: #ffffff;
    box-shadow: none;
  }
}
.free-pineconnector .pine-features-block .features-grid .feature-item.border-bottom {
  border-bottom: none;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid .feature-item.border-bottom {
    border-bottom: 1px #C4CDD5 solid;
  }
}
.free-pineconnector .pine-features-block .features-grid .feature-item.border-right {
  border-right: none;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid .feature-item.border-right {
    border-right: 1px #C4CDD5 solid;
  }
}
.free-pineconnector .pine-features-block .features-grid .feature-item .feature-icon {
  height: 22px;
  margin-bottom: 12px;
}
.free-pineconnector .pine-features-block .features-grid .feature-item .feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid .feature-item .feature-title {
    font-size: 18px;
  }
}
.free-pineconnector .pine-features-block .features-grid .feature-item .feature-text {
  font-size: 14px;
  color: #212B36;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .features-grid .feature-item .feature-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .free-pineconnector .pine-features-block .features-grid {
    grid-template-columns: 1fr;
  }
  .free-pineconnector .pine-features-block .features-grid .feature-item {
    border-right: none;
  }
}
.free-pineconnector .pine-features-block .cta {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-features-block .cta {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.free-pineconnector .pine-steps {
  padding: 80px 0;
}
.free-pineconnector .pine-steps__subtitle {
  max-width: 700px;
  margin: 0 auto 2rem;
}
.free-pineconnector .pine-steps__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-steps__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.free-pineconnector .pine-steps__card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}
.free-pineconnector .pine-steps__number {
  height: 56px;
  margin-bottom: 16px;
}
.free-pineconnector .pine-steps__card-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.free-pineconnector .pine-steps__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.free-pineconnector .pine-steps__text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
.free-pineconnector .pine-steps__cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-steps__cta {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.free-pineconnector .pine-steps__cta .btn {
  min-width: 200px;
}
.free-pineconnector .pine-timeline {
  padding: 80px 0;
}
.free-pineconnector .pine-timeline__subtitle {
  margin-bottom: 48px;
}
.free-pineconnector .pine-timeline__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 992px) {
  .free-pineconnector .pine-timeline__layout {
    flex-direction: row;
    align-items: stretch;
  }
}
.free-pineconnector .pine-timeline__steps {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-timeline__steps {
    gap: 110px;
  }
}
.free-pineconnector .pine-timeline__steps::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 18px;
  width: 2px;
  border-left: 2px dashed #cbd5e1;
  z-index: 0;
}
.free-pineconnector .pine-timeline__step {
  position: relative;
  z-index: 1;
  padding-left: 36px;
}
@media (min-width: 768px) {
  .free-pineconnector .pine-timeline__step {
    padding-left: 48px;
  }
}
.free-pineconnector .pine-timeline__step::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  z-index: 2;
}
.free-pineconnector .pine-timeline__step::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 15px;
  width: 6px;
  height: 6px;
  background-color: #334155;
  border-radius: 50%;
  z-index: 3;
}
.free-pineconnector .pine-timeline__step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.free-pineconnector .pine-timeline__step-title {
  font-size: 18px;
  font-weight: 700;
}
.free-pineconnector .pine-timeline__icon {
  width: 20px;
  height: auto;
}
.free-pineconnector .pine-timeline__list {
  padding-left: 20px;
  margin-bottom: 12px;
}
.free-pineconnector .pine-timeline__list li {
  list-style-type: disc;
  font-size: 14px;
  margin-bottom: 4px;
  color: #334155;
}
.free-pineconnector .pine-timeline__fact {
  font-size: 14px;
  color: #334155;
  margin-bottom: 12px;
}
.free-pineconnector .pine-timeline__fact .bold {
  font-weight: 600;
}
.free-pineconnector .pine-timeline__fact .italic {
  font-style: italic;
}
.free-pineconnector .pine-timeline__quote {
  font-size: 14px;
  background: #f1f5f9;
  padding: 12px;
  border-left: 3px solid #10b981;
  font-style: italic;
  color: #0f172a;
}
.free-pineconnector .pine-timeline__quote span {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: bold;
}
.free-pineconnector .pine-timeline__image {
  width: 100%;
}
.free-pineconnector .pine-timeline__visual {
  flex: 1;
  align-self: stretch;
}
.free-pineconnector .pine-timeline__visual .pineC-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.free-pineconnector .pine-timeline__cta {
  margin-top: 60px;
  text-align: center;
}
.free-pineconnector .pine-match__title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.free-pineconnector .pine-match__subtitle {
  color: #64748b;
  margin-bottom: 2.5rem;
}
.free-pineconnector .pine-match__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .free-pineconnector .pine-match__grid {
    gap: 32px;
  }
}
.free-pineconnector .pine-match__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 8px 64px rgba(99, 115, 129, 0.12);
  flex: 1 1 100%;
  text-align: left;
}
@media (min-width: 600px) {
  .free-pineconnector .pine-match__card {
    flex: 1 1 calc(50% - 32px);
  }
}
@media (min-width: 768px) {
  .free-pineconnector .pine-match__card {
    flex: 1 1 calc(33.33% - 32px);
    max-width: 320px;
  }
}
.free-pineconnector .pine-match__icon {
  height: 24px;
  width: 24px;
  margin-bottom: 12px;
}
.free-pineconnector .pine-match__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.free-pineconnector .pine-match__quote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.free-pineconnector .pine-match__quote-icon {
  width: 16px;
  height: auto;
  flex-shrink: 0;
  margin-top: 3px;
}
.free-pineconnector .pine-match__quote-text {
  min-height: 4.5em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  font-style: italic;
  font-size: 15px;
  color: #637381;
  font-weight: 300;
  line-height: 1.4;
}
.free-pineconnector .pine-match__desc {
  font-size: 16px;
  color: #212B36;
  border-top: 1px solid #e2e8f0;
  margin-top: 16px;
  padding-top: 16px;
}
.free-pineconnector .pine-match__cta {
  margin-top: 2rem;
  text-align: center;
}
.free-pineconnector .switch-perks {
  color: #ffffff;
  background: linear-gradient(306.41deg, rgba(0, 0, 0, 0.84) 7.6%, rgba(0, 0, 0, 0) 100%), linear-gradient(135.37deg, #040C48 18.67%, rgba(0, 88, 156, 0.85) 61.25%, #04D189 96.66%), url("/img/free-pineconnector/why-switch-bg.png") no-repeat center center;
  background-size: cover;
}
.free-pineconnector .switch-perks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .free-pineconnector .switch-perks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .free-pineconnector .switch-perks__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.free-pineconnector .switch-perks__card {
  background-color: #2A4760;
  border-radius: 12px;
  padding: 24px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .free-pineconnector .switch-perks__card {
    max-width: 320px;
  }
}
.free-pineconnector .switch-perks__icon {
  margin-right: auto;
  height: 28px;
  width: auto;
}
.free-pineconnector .switch-perks__card-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}
.free-pineconnector .switch-perks__card-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.free-pineconnector .switch-perks__cta {
  margin-top: 40px;
}
.free-pineconnector .pine-hero-offer {
  align-items: center;
}
@media (min-width: 992px) {
  .free-pineconnector .pine-hero-offer .text-left-banner__text {
    margin-top: -40px;
    width: 425px;
  }
}
.free-pineconnector .pine-hero-offer .text-left-banner__bg-image,
.free-pineconnector .pine-hero-offer .text-left-banner__bg-image-alt {
  z-index: 0;
}
.free-pineconnector .pine-hero-offer .text-left-banner__list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 1rem 0 1.5rem;
}
.free-pineconnector .pine-hero-offer .text-left-banner__list .text-left-banner__list-item {
  margin-bottom: 0.5rem;
}
.free-pineconnector .pine-hero-offer .text-left-banner__list .text-left-banner__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #04D189;
}
.free-pineconnector .pine-hero-offer .text-left-banner {
  position: relative;
  overflow: hidden;
  height: 520px;
}
.free-pineconnector .pine-hero-offer .text-left-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90.01deg, #040C48 42.08%, rgba(0, 94, 155, 0.6) 72.41%, rgba(4, 209, 137, 0) 94.61%), linear-gradient(270deg, rgba(0, 0, 0, 0.470976) -0.95%, rgba(0, 0, 0, 0) 100%);
}
.free-pineconnector .faq-section .accordion-item__header__title {
  font-size: 14px;
}
@media (min-width: 768px) {
  .free-pineconnector .faq-section .accordion-item__header__title {
    font-size: 16px;
  }
}
.free-pineconnector .customer-reviews .container-reviews {
  flex-direction: column;
}
@media (min-width: 992px) {
  .free-pineconnector .customer-reviews .container-reviews {
    flex-direction: row;
  }
}
.free-pineconnector .customer-reviews .container-reviews .trust-pilot {
  margin-bottom: 0;
}
.free-pineconnector .customer-reviews .container-reviews .carousel-container .carousel-text {
  border-radius: 4px;
  border: 1px solid rgba(4, 209, 137, 0.2);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(14.5px);
          backdrop-filter: blur(14.5px);
  min-height: 190px;
}
.free-pineconnector .customer-reviews .triangle {
  display: none;
}/*# sourceMappingURL=free-pineconnector.css.map */