@charset "UTF-8";
/* Filter Grayscale */
/* Clip path */
/* Transition */
/* Border radius */
/* IMAGES */
.img-full {
  width: 100%;
  display: block;
}

/* HR Lines*/
hr {
  margin: 0px;
  border: 0;
  border-top: 1px solid rgba(60, 72, 88, 0.1);
}

/* DISPLAY */
.hide,
.hide-xs,
.hide-sm,
.hide-md {
  display: none;
}

.show-sm,
.show-md,
.show-xs {
  display: block;
}

@media screen and (min-width: 767px) {
  .show-xs {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .show-sm {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  .show-md {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .hide-xs {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .hide-sm {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  .hide-md {
    display: block;
  }
}
/* OVERFLOW */
.overflow-h {
  overflow: hidden;
}

/* TEXT ALIGN */
.t-center {
  text-align: center;
}

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

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

@media screen and (max-width: 992px) {
  .t-center-md {
    text-align: center;
  }
  .t-left-md {
    text-align: left;
  }
  .t-right-md {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .t-center-sm {
    text-align: center;
  }
  .t-left-sm {
    text-align: left;
  }
  .t-right-sm {
    text-align: right;
  }
}
@media screen and (max-width: 600px) {
  .t-center-xs {
    text-align: center;
  }
  .t-left-xs {
    text-align: left;
  }
  .t-right-xs {
    text-align: right;
  }
}
/* TEXT TRANSFORM */
.t-upper {
  text-transform: uppercase;
}

/* BACKGROUND COLORS */
.bg-green {
  background-color: rgb(0, 201, 167);
}

.bg-black {
  background-color: rgb(60, 72, 88);
}

.bg-white {
  background-color: rgb(255, 255, 255);
}

/* COLORS */
.color-black {
  color: rgb(60, 72, 88);
}

.color-green {
  color: rgb(0, 201, 167);
}

.color-white {
  color: rgb(255, 255, 255);
}

.color-red {
  color: rgb(219, 0, 0);
}

.color-orange {
  color: rgb(249, 168, 54);
}

/* GAPS */
.gap-auto {
  margin: auto;
}

.gap-t-0 {
  margin-top: 0px;
}

.gap-t-5 {
  margin-top: 5px;
}

.gap-t-10 {
  margin-top: 10px;
}

.gap-t-15 {
  margin-top: 15px;
}

.gap-t-20 {
  margin-top: 20px;
}

.gap-t-30 {
  margin-top: 30px;
}

.gap-t-40 {
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .gap-t-40 {
    margin-top: 32px;
  }
}
@media screen and (min-width: 992px) {
  .gap-t-40 {
    margin-top: 40px;
  }
}

.gap-t-50 {
  margin-top: 28px;
}
@media screen and (min-width: 600px) {
  .gap-t-50 {
    margin-top: 38px;
  }
}
@media screen and (min-width: 992px) {
  .gap-t-50 {
    margin-top: 50px;
  }
}

.gap-t-60 {
  margin-top: 60px;
}

.gap-t-70 {
  margin-top: 70px;
}

.gap-t-80 {
  margin-top: 80px;
}

.gap-t-100 {
  margin-top: 100px;
}

.gap-t-120 {
  margin-top: 120px;
}

.gap-t-140 {
  margin-top: 140px;
}

.gap-t-160 {
  margin-top: 160px;
}

.gap-b-0 {
  margin-bottom: 0px;
}

.gap-b-5 {
  margin-bottom: 5px;
}

.gap-b-10 {
  margin-bottom: 10px;
}

.gap-b-15 {
  margin-bottom: 15px;
}

.gap-b-20 {
  margin-bottom: 20px;
}

.gap-b-30 {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .gap-b-30 {
    margin-bottom: 30px;
  }
}

.gap-b-40 {
  margin-bottom: 24px;
}
@media screen and (min-width: 600px) {
  .gap-b-40 {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 992px) {
  .gap-b-40 {
    margin-bottom: 40px;
  }
}

.gap-b-50 {
  margin-bottom: 28px;
}
@media screen and (min-width: 600px) {
  .gap-b-50 {
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 992px) {
  .gap-b-50 {
    margin-bottom: 50px;
  }
}

.gap-b-60 {
  margin-bottom: 60px;
}

.gap-b-70 {
  margin-bottom: 70px;
}

.gap-b-80 {
  margin-bottom: 80px;
}

.gap-b-100 {
  margin-bottom: 100px;
}

.gap-b-120 {
  margin-bottom: 120px;
}

.gap-b-140 {
  margin-bottom: 140px;
}

.gap-b-160 {
  margin-bottom: 160px;
}

@media screen and (max-width: 992px) {
  .gap-t-0-md {
    margin-top: 0px;
  }
  .gap-t-10-md {
    margin-top: 10px;
  }
  .gap-t-20-md {
    margin-top: 20px;
  }
  .gap-t-30-md {
    margin-top: 30px;
  }
  .gap-t-40-md {
    margin-top: 40px;
  }
  .gap-t-50-md {
    margin-top: 50px;
  }
  .gap-t-60-md {
    margin-top: 60px;
  }
  .gap-b-0-md {
    margin-bottom: 0px;
  }
  .gap-b-10-md {
    margin-bottom: 10px;
  }
  .gap-b-20-md {
    margin-bottom: 20px;
  }
  .gap-b-30-md {
    margin-bottom: 30px;
  }
  .gap-b-40-md {
    margin-bottom: 40px;
  }
  .gap-b-50-md {
    margin-bottom: 50px;
  }
  .gap-b-60-md {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .gap-t-0-sm {
    margin-top: 0px;
  }
  .gap-t-10-sm {
    margin-top: 10px;
  }
  .gap-t-20-sm {
    margin-top: 20px;
  }
  .gap-t-30-sm {
    margin-top: 30px;
  }
  .gap-t-40-sm {
    margin-top: 40px;
  }
  .gap-t-50-sm {
    margin-top: 50px;
  }
  .gap-t-60-sm {
    margin-top: 60px;
  }
  .gap-b-0-sm {
    margin-bottom: 0px;
  }
  .gap-b-10-sm {
    margin-bottom: 10px;
  }
  .gap-b-20-sm {
    margin-bottom: 20px;
  }
  .gap-b-30-sm {
    margin-bottom: 30px;
  }
  .gap-b-40-sm {
    margin-bottom: 40px;
  }
  .gap-b-50-sm {
    margin-bottom: 50px;
  }
  .gap-b-60-sm {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .gap-t-0-xs {
    margin-top: 0px;
  }
  .gap-t-10-xs {
    margin-top: 10px;
  }
  .gap-t-20-xs {
    margin-top: 20px;
  }
  .gap-t-30-xs {
    margin-top: 30px;
  }
  .gap-t-40-xs {
    margin-top: 40px;
  }
  .gap-t-50-xs {
    margin-top: 50px;
  }
  .gap-t-60-xs {
    margin-top: 60px;
  }
  .gap-b-0-xs {
    margin-bottom: 0px;
  }
  .gap-b-10-xs {
    margin-bottom: 10px;
  }
  .gap-b-20-xs {
    margin-bottom: 20px;
  }
  .gap-b-30-xs {
    margin-bottom: 30px;
  }
  .gap-b-40-xs {
    margin-bottom: 40px;
  }
  .gap-b-50-xs {
    margin-bottom: 50px;
  }
  .gap-b-60-xs {
    margin-bottom: 60px;
  }
}
/* PADDINGS */
.space-t-0 {
  padding-top: 0px;
}

.space-t-5 {
  padding-top: 5px;
}

.space-t-10 {
  padding-top: 10px;
}

.space-t-15 {
  padding-top: 15px;
}

.space-t-20 {
  padding-top: 20px;
}

.space-t-30 {
  padding-top: 30px;
}

.space-t-40 {
  padding-top: 40px;
}

.space-t-50 {
  padding-top: 50px;
}

.space-t-60 {
  padding-top: 60px;
}

.space-t-70 {
  padding-top: 70px;
}

.space-t-80 {
  padding-top: 80px;
}

.space-t-90 {
  padding-top: 90px;
}

.space-t-100 {
  padding-top: 100px;
}

.space-b-0 {
  padding-bottom: 0px;
}

.space-b-5 {
  padding-bottom: 5px;
}

.space-b-10 {
  padding-bottom: 10px;
}

.space-b-15 {
  padding-bottom: 15px;
}

.space-b-20 {
  padding-bottom: 20px;
}

.space-b-30 {
  padding-bottom: 30px;
}

.space-b-40 {
  padding-bottom: 40px;
}

.space-b-50 {
  padding-bottom: 50px;
}

.space-b-60 {
  padding-bottom: 60px;
}

.space-b-70 {
  padding-bottom: 70px;
}

.space-b-80 {
  padding-bottom: 80px;
}

.space-b-90 {
  padding-bottom: 90px;
}

.space-b-100 {
  padding-bottom: 100px;
}

.space20 {
  padding: 20px 0px;
}

.space40 {
  padding: 40px 0px;
}

.space60 {
  padding: 30px 0px;
}
@media screen and (min-width: 600px) {
  .space60 {
    padding: 40px 0px;
  }
}
@media screen and (min-width: 992px) {
  .space60 {
    padding: 60px 0px;
  }
}

.space80,
.space100,
.space120 {
  padding: 30px 0px;
}
@media screen and (min-width: 600px) {
  .space80,
  .space100,
  .space120 {
    padding: 60px 0px;
  }
}

@media screen and (min-width: 992px) {
  .space80 {
    padding: 80px 0px;
  }
  .space100 {
    padding: 100px 0px;
  }
  .space120 {
    padding: 120px 0px;
  }
}
.space20-full {
  padding: 20px;
}

.space40-full {
  padding: 40px;
}

.space60-full {
  padding: 60px;
}

.space80-full {
  padding: 80px;
}

/* FONTS WEIGHTS */
.font100 {
  font-weight: 100;
}

.font300 {
  font-weight: 300;
}

.font400 {
  font-weight: 400;
}

.font700 {
  font-weight: 700;
}

.font900 {
  font-weight: 900;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-optical-sizing: auto;
  font-style: normal;
  color: rgb(60, 72, 88);
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgb(255, 255, 255);
}

body.no-scroll {
  overflow: hidden;
}

html {
  height: 100%;
}

section,
header,
footer {
  position: relative;
  outline: 0;
  border: 0;
}

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

::-webkit-scrollbar-track {
  background-color: rgba(60, 72, 88, 0.1);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 201, 167, 0.3);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(0, 201, 167);
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

img {
  max-width: 100%;
  display: block;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Lato", sans-serif;
  margin: 0;
  color: rgb(60, 72, 88);
  z-index: 1;
  position: relative;
  margin-bottom: 10px;
}

h1 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 900;
}
@media screen and (min-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1300px) {
  h1 {
    font-size: 52px;
    line-height: 60px;
  }
}

h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1300px) {
  h2 {
    font-size: 42px;
    line-height: 50px;
  }
}

h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1300px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (min-width: 1300px) {
  h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  h5 {
    font-size: 20px;
    line-height: 26px;
  }
}

p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 15px;
}
@media screen and (min-width: 767px) {
  p {
    font-size: 18px;
    line-height: 30px;
  }
}
p a {
  color: #009279;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (min-width: 767px) {
  p a {
    font-size: 18px;
    line-height: 30px;
  }
}

.small {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 767px) {
  .small {
    font-size: 14px;
    line-height: 22px;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

.wrapper:before,
.wrapper:after {
  content: " ";
  display: table;
}

.wrapper:after {
  clear: both;
}

.wrapper {
  width: auto;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 767px) {
  .wrapper {
    width: 740px;
  }
}
@media screen and (min-width: 992px) {
  .wrapper {
    width: 970px;
  }
}
@media screen and (min-width: 1300px) {
  .wrapper {
    width: 1270px;
  }
}

.ce-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  display: block;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(60, 72, 88, 0.1);
}
@media screen and (min-width: 600px) {
  .ce-header {
    height: 80px;
  }
}
.ce-header .wrapper {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .ce-header .wrapper {
    height: 80px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-header .wrapper {
    width: 1270px;
  }
}
.ce-header-logo {
  position: relative;
  width: 140px;
  height: auto;
  display: block;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .ce-header-logo {
    width: 180px;
  }
}
.ce-header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.ce-header-menu {
  position: relative;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .ce-header-menu {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-header-menu {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .ce-header-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    right: 0;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 12px 0px;
    -webkit-box-shadow: 0px 4px 8px rgba(60, 72, 88, 0.1);
    -moz-box-shadow: 0px 4px 8px rgba(60, 72, 88, 0.1);
    box-shadow: 0px 4px 8px rgba(60, 72, 88, 0.1);
  }
}
@media screen and (min-width: 600px) and (max-width: 992px) {
  .ce-header-menu {
    top: 80px;
  }
}
.ce-header-menu > ul {
  position: relative;
}
.ce-header-menu > ul > li {
  position: relative;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-header-menu > ul > li {
    display: inline-block;
  }
}
.ce-header-menu > ul > li > a {
  font-family: "Lato", sans-serif;
  display: inline-block;
  position: relative;
  color: rgb(60, 72, 88);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 0px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .ce-header-menu > ul > li > a {
    font-size: 16px;
    line-height: 24px;
    padding: 28px 10px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-header-menu > ul > li > a {
    font-size: 18px;
    padding: 28px 20px;
  }
}
.ce-header-menu > ul > li > a:hover, .ce-header-menu > ul > li > a:focus {
  color: #00B395;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-menu > ul > li.nav-premium > a {
  color: rgb(249, 168, 54);
}
@media screen and (min-width: 992px) {
  .ce-header-menu > ul > li.nav-premium > a {
    padding-left: 22px;
  }
}
.ce-header-menu > ul > li.nav-premium > a:after {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-premium-orange.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-header-menu > ul > li.nav-premium > a:after {
    left: 0px;
  }
}
.ce-header-menu-cta {
  display: block;
  position: relative;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(60, 72, 88, 0.1);
}
@media screen and (min-width: 767px) {
  .ce-header-menu-cta {
    display: none;
  }
}
.ce-header-other {
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  margin-right: 50px;
}
@media screen and (min-width: 600px) {
  .ce-header-other {
    margin-right: 80px;
  }
}
@media screen and (min-width: 767px) {
  .ce-header-other {
    margin-right: 100px;
  }
}
@media screen and (min-width: 992px) {
  .ce-header-other {
    margin-right: 0px;
  }
}
.ce-header-other-lang {
  position: relative;
}
.ce-header-other-lang > ul {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
}
@media screen and (min-width: 600px) {
  .ce-header-other-lang > ul {
    height: 80px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-header-other-lang > ul {
    gap: 10px;
  }
}
.ce-header-other-lang > ul > li {
  display: block;
}
.ce-header-other-lang > ul > li > a {
  position: relative;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  cursor: pointer;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-lang > ul > li > a img {
  width: 20px;
  height: auto;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-lang > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 201, 167, 0.2);
  z-index: -1;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-lang > ul > li.current > a {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-lang > ul > li.current > a:after {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-search {
  position: relative;
  padding-left: 4px;
  margin: auto 4px;
}
@media screen and (min-width: 600px) {
  .ce-header-other-search {
    padding-left: 12px;
    margin: auto 12px;
  }
}
@media screen and (min-width: 992px) {
  .ce-header-other-search {
    padding-left: 4px;
    margin: auto 4px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-header-other-search {
    padding-left: 12px;
    margin: auto 12px;
  }
}
.ce-header-other-search {
  border-left: 1px solid rgba(60, 72, 88, 0.1);
}
.ce-header-other-search > a {
  background-image: url(../../assets/images/icons/icn-search-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1300px) {
  .ce-header-other-search > a {
    width: 48px;
    height: 48px;
    background-size: 20px 20px;
  }
}
.ce-header-other-search > a:hover, .ce-header-other-search > a:focus {
  background-color: rgba(60, 72, 88, 0.05);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-other-cta {
  position: relative;
  display: none;
}
@media screen and (min-width: 767px) {
  .ce-header-other-cta {
    display: block;
  }
}
.ce-header-menu-mobile {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  z-index: 10;
  background-color: rgba(0, 201, 167, 0.1);
  cursor: pointer;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile {
    width: 80px;
    height: 80px;
  }
}
.ce-header-menu-mobile span {
  width: 30px;
  height: 2px;
  background-color: rgb(60, 72, 88);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile span {
    width: 40px;
  }
}
.ce-header-menu-mobile span:nth-child(1) {
  top: 20px;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile span:nth-child(1) {
    top: 26px;
  }
}
.ce-header-menu-mobile span:nth-child(2) {
  top: 30px;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile span:nth-child(2) {
    top: 38px;
  }
}
.ce-header-menu-mobile span:nth-child(3) {
  top: 40px;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile span:nth-child(3) {
    top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .ce-header-menu-mobile {
    display: none;
  }
}
.ce-header-menu-mobile-open {
  background-color: rgba(60, 72, 88, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-header-menu-mobile-open span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile-open span:nth-child(1) {
    top: 38px;
  }
}
.ce-header-menu-mobile-open span:nth-child(2) {
  top: 30px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-header-menu-mobile-open span:nth-child(2) {
    top: 38px;
  }
}
.ce-header-menu-mobile-open span:nth-child(3) {
  opacity: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-header + section {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .ce-header + section {
    margin-top: 80px;
  }
}

.ce-footer {
  background-color: rgb(60, 72, 88);
  padding-top: 40px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .ce-footer {
    padding-top: 60px;
  }
}
.ce-footer:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
  /* background-image: url(../../assets/images/shape-footer.svg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120px 146px;
  width: 120px;
  height: 146px;
  display: block;
  z-index: 0;
  opacity: 0.05;
}
@media screen and (min-width: 767px) {
  .ce-footer:after {
    background-size: 240px 292px;
    width: 240px;
    height: 292px;
    right: -120px;
  }
}
.ce-footer-cols {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-footer-cols {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
  }
}
.ce-footer-cols-left {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .ce-footer-cols-left {
    width: 24%;
    padding-right: 40px;
    margin-bottom: 0;
  }
}
.ce-footer-cols-left img {
  max-width: 160px;
  height: auto;
}
.ce-footer-cols-right {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-footer-cols-right {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-footer-cols-right {
    width: 76%;
    gap: 50px;
  }
}
.ce-footer-cols-right-item {
  position: relative;
  flex-basis: 100%;
  margin-bottom: 30px;
}
.ce-footer-cols-right-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .ce-footer-cols-right-item {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .ce-footer-cols-right-item {
    flex-basis: initial;
  }
}
.ce-footer-cols-right-item h1,
.ce-footer-cols-right-item h2,
.ce-footer-cols-right-item h3,
.ce-footer-cols-right-item h4,
.ce-footer-cols-right-item h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .ce-footer-cols-right-item h1,
  .ce-footer-cols-right-item h2,
  .ce-footer-cols-right-item h3,
  .ce-footer-cols-right-item h4,
  .ce-footer-cols-right-item h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.ce-footer-cols-right-item .ce-list-links {
  position: relative;
  display: block;
}
.ce-footer-cols-right-item .ce-list-links > li {
  position: relative;
  display: block;
}
.ce-footer-cols-right-item .ce-list-links > li > a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding-bottom: 10px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-footer-cols-right-item .ce-list-links > li > a {
    padding-bottom: 18px;
    font-size: 16px;
  }
}
.ce-footer-cols-right-item .ce-list-links > li > a:hover, .ce-footer-cols-right-item .ce-list-links > li > a:focus {
  color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-footer-cols-right-item .ce-list-links > li > a:hover, .ce-footer-cols-right-item .ce-list-links > li > a:focus {
    
  }
}
.ce-footer-cols-right-item .ce-list-links > li:last-child > a {
  padding-bottom: 0;
}
.ce-footer h1,
.ce-footer h2,
.ce-footer h3,
.ce-footer h4,
.ce-footer h5,
.ce-footer p {
  color: rgba(255, 255, 255, 0.7);
}
.ce-footer p {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 600px) {
  .ce-footer p {
    font-size: 16px;
  }
}
.ce-footer p a {
  font-size: 14px;
  line-height: 24px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-footer p a {
    font-size: 16px;
  }
}
.ce-footer p a:hover, .ce-footer p a:focus {
  color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 0px;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .ce-footer-copyright {
    padding: 10px 0px;
  }
}
@media screen and (min-width: 600px) {
  .ce-footer-copyright {
    margin-top: 60px;
  }
}
.ce-footer-copyright p {
  margin-bottom: 0;
}
.ce-footer-scroll-to-top {
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 1;
}
.ce-footer-scroll-to-top > a {
  position: relative;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
  padding-right: 20px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-footer-scroll-to-top > a {
    font-size: 18px;
    padding: 4px 20px 4px 0px;
  }
}
.ce-footer-scroll-to-top > a:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/icons/icn-arrow-white-top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-footer-scroll-to-top > a:hover, .ce-footer-scroll-to-top > a:focus {
  color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-footer-scroll-to-top > a:hover:after, .ce-footer-scroll-to-top > a:focus:after {
  top: -10px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-form-control-error {
  border-color: #ff3b30 !important;
  background-color: rgba(255, 59, 48, 0.03) !important;
}
.ce-form-control-error:focus {
  border-color: #ff3b30 !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1) !important;
}

.ce-form-error {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #c33;
  margin-top: 6px;
  font-weight: 600;
}
@media screen and (min-width: 767px) {
  .ce-form-error {
    font-size: 14px;
    line-height: 20px;
  }
}

.ce-checkbox-error .ce-checkbox-mark {
  border-color: #ff3b30 !important;
}
.ce-checkbox-error .ce-checkbox-text {
  color: #c33;
}

::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.4);
}
@media screen and (min-width: 600px) {
  ::-webkit-input-placeholder {
    font-size: 18px;
  }
}

::-moz-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.4);
}
@media screen and (min-width: 600px) {
  ::-moz-placeholder {
    font-size: 18px;
  }
}

:-ms-input-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.4);
}
@media screen and (min-width: 600px) {
  :-ms-input-placeholder {
    font-size: 18px;
  }
}

:-moz-placeholder {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.4);
}
@media screen and (min-width: 600px) {
  :-moz-placeholder {
    font-size: 18px;
  }
}

.ce-form-control {
  font-family: "Lato", sans-serif;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  outline: 0;
  background-color: rgb(255, 255, 255);
  padding: 6px 12px;
  border: 1px solid rgba(60, 72, 88, 0.2);
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: rgb(60, 72, 88);
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (min-width: 600px) {
  .ce-form-control {
    font-size: 18px;
    padding: 8px 16px;
  }
}
@media screen and (min-width: 992px) {
  .ce-form-control {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-form-control {
    padding: 10px 16px;
  }
}
.ce-form-control:hover, .ce-form-control:focus {
  border-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.ce-form-group {
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-form-group {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-form-group {
    margin-bottom: 25px;
  }
}
.ce-form-group .ce-form-label {
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(60, 72, 88);
  display: block;
  position: relative;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-form-group .ce-form-label {
    font-size: 16px;
    line-height: 16px;
  }
}
.ce-form-group .ce-form-label span {
  color: rgb(219, 0, 0);
  padding-left: 2px;
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .ce-form-group .ce-form-label span {
    padding-left: 6px;
  }
}

.ce-form-group-2 {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-form-group-2 {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 10px;
  }
}
@media screen and (min-width: 992px) {
  .ce-form-group-2 {
    gap: 20px;
  }
}
@media screen and (min-width: 600px) {
  .ce-form-group-2 .ce-form-group {
    flex-basis: 100%;
  }
}

.ce-form-group-search {
  position: relative;
  display: block;
}
.ce-form-group-search .ce-form-control {
  padding-right: 46px;
}
.ce-form-group-search button {
  outline: 0;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
  z-index: 1;
  text-decoration: none;
  background: none;
  background-image: url(../../assets/images/icons/icn-search-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  opacity: 0.4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-form-group-search:hover, .ce-form-group-search:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-form-group-search:hover button, .ce-form-group-search:focus button {
  opacity: 1;
  background-color: rgba(0, 201, 167, 0.03);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

/* Range */
.ce-range {
  position: relative;
}
.ce-range-line {
  position: relative;
  margin: 15px 0px;
}
.ce-range-line-track {
  position: relative;
  height: 8px;
  background-color: rgba(60, 72, 88, 0.1);
  width: 100%;
  display: block;
}
.ce-range-line-fill {
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  left: 0;
  height: 8px;
  background-color: rgb(0, 201, 167);
  width: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-range-line-thumb {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 20px;
  background-color: rgb(0, 201, 167);
  z-index: 2;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-range-ticks {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.ce-range-ticks li {
  font-size: 12px;
  line-height: 20px;
  color: rgb(60, 72, 88);
  cursor: pointer;
  user-select: none;
}
@media screen and (min-width: 420px) {
  .ce-range-ticks li {
    font-size: 14px;
  }
}
.ce-range-ticks li.active {
  color: rgb(0, 201, 167);
  font-weight: 700;
}

.ce-btn-ready {
  animation: glow 1.5s ease-in-out infinite;
  transform: scale(1.02);
}

.ce-btn-hover-active {
  transform: scale(1.05);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-btn {
  font-family: "Lato", sans-serif;
  outline: 0;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 700;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 420px) {
  .ce-btn {
    font-size: 18px;
    padding: 8px 16px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-btn {
    padding: 8px 20px;
    font-size: 20px;
    line-height: 28px;
  }
}
.ce-btn span {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 8px;
  align-items: center;
  margin: auto;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .ce-btn span {
    gap: 14px;
  }
}
.ce-btn span img {
  width: 14px;
  height: auto;
  display: block;
}
@media screen and (min-width: 420px) {
  .ce-btn span img {
    width: 16px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-btn span img {
    width: 18px;
  }
}
.ce-btn:hover, .ce-btn:focus {
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
/* Primary button */
.ce-btn.ce-btn-primary {
  background-color: rgb(0, 201, 167);
  color: rgb(255, 255, 255);
  border-color: rgb(0, 201, 167);
}
.ce-btn.ce-btn-primary:hover, .ce-btn.ce-btn-primary:focus {
  color: rgb(255, 255, 255);
  border-color: #009279;
  background-color: #009279;
}
/* Black button */
.ce-btn.ce-btn-black {
  background-color: rgb(60, 72, 88);
  color: rgb(255, 255, 255);
  border-color: rgb(60, 72, 88);
}
.ce-btn.ce-btn-black:hover, .ce-btn.ce-btn-black:focus {
  color: rgb(255, 255, 255);
  border-color: #00B395;
  background-color: #00B395;
}
.ce-btn.ce-btn-outline-grey {
  background-color: transparent;
  color: #999;
  border: 1px solid #d0d0d0;
}
.ce-btn.ce-btn-outline-grey:hover, .ce-btn.ce-btn-outline-grey:focus {
  color: #666;
  border-color: #999;
  background-color: #f5f5f5;
}
/* White button */
.ce-btn.ce-btn-white {
  background-color: rgb(255, 255, 255);
  color: rgb(60, 72, 88);
  border-color: rgb(255, 255, 255);
}
.ce-btn.ce-btn-white:hover, .ce-btn.ce-btn-white:focus {
  color: rgb(0, 201, 167);
  border-color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
}
/* Button large */
@media screen and (max-width: 600px) {
  .ce-btn.ce-btn-lg {
    padding: 12px 20px;
    font-size: 20px;
  }
  .ce-btn.ce-btn-lg span img {
    width: 20px;
  }
}
@media screen and (min-width: 600px) {
  .ce-btn.ce-btn-lg {
    padding: 12px 28px;
    font-size: 24px;
  }
  .ce-btn.ce-btn-lg span img {
    width: 22px;
  }
}
@media screen and (min-width: 767px) {
  .ce-btn.ce-btn-xl {
    padding: 16px 28px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .ce-btn.ce-btn-xl span img {
    width: 26px;
  }
}
/* Full width button */
.ce-btn.ce-btn-full {
  display: block;
  width: 100%;
}

.ce-link-back {
  font-size: 16px;
  line-height: 22px;
  padding-left: 20px;
  display: inline-block;
  position: relative;
  color: rgb(60, 72, 88);
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-link-back {
    font-size: 18px;
    padding-left: 24px;
  }
}
.ce-link-back:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-arrow-black-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  display: block;
  width: 10px;
  height: 10px;
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .ce-link-back:after {
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
  }
}
.ce-link-back:before {
  content: "";
  position: absolute;
  background-color: rgb(60, 72, 88);
  height: 1px;
  left: 20px;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-link-back:before {
    left: 24px;
  }
}
.ce-link-back:hover, .ce-link-back:focus {
  color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-link-back:hover:before, .ce-link-back:focus:before {
  background-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-link-download {
  font-size: 16px;
  line-height: 22px;
  padding-left: 20px;
  display: inline-block;
  position: relative;
  color: rgb(0, 201, 167);
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-link-download {
    font-size: 18px;
    padding-left: 24px;
  }
}
.ce-link-download:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-download-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  display: block;
  width: 16px;
  height: 16px;
  z-index: 0;
}
.ce-link-download:before {
  content: "";
  position: absolute;
  background-color: rgb(0, 201, 167);
  height: 1px;
  left: 20px;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-link-download:before {
    left: 24px;
  }
}
.ce-link-download.ce-link-download-sm {
  font-size: 14px;
  line-height: 18px;
  padding-left: 18px;
}
.ce-link-download.ce-link-download-sm:after {
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
}
.ce-link-download.ce-link-download-sm:before {
  left: 18px;
}
.ce-link-download:hover, .ce-link-download:focus {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-link-download:hover:before, .ce-link-download:focus:before {
  background-color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-hero {
  padding: 30px 0px;
}
@media screen and (min-width: 600px) {
  .ce-hero {
    padding: 60px 0px 60px 0px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-hero {
    padding: 100px 0px 60px 0px;
  }
}
.ce-hero-box {
  position: relative;
}
.ce-hero-box-info {
  position: relative;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .ce-hero-box-info {
    width: 650px;
  }
}
@media screen and (min-width: 992px) {
  .ce-hero-box-info {
    width: 850px;
  }
}
.ce-hero-box .ce-list-features {
  justify-content: center;
}
.ce-hero-box-search {
  padding-top: 30px;
}
.ce-hero-box-search-filter {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-filter {
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-hero-box-search-filter {
    gap: 30px;
  }
}
.ce-hero-box-search-input {
  position: relative;
  margin: 14px auto;
}
@media screen and (min-width: 1300px) {
  .ce-hero-box-search-input {
    width: 860px;
  }
}
.ce-hero-box-search-input .ce-form-control {
  padding: 12px 18px;
  border: 2px solid rgb(0, 201, 167);
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}
@media screen and (min-width: 420px) {
  .ce-hero-box-search-input .ce-form-control {
    font-size: 22px;
  }
}
@media screen and (min-width: 600px) {
  .ce-hero-box-search-input .ce-form-control {
    padding: 8px 130px 8px 16px;
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-input .ce-form-control {
    font-size: 24px;
    line-height: 40px;
    padding: 12px 190px 12px 24px;
  }
}
.ce-hero-box-search-input .ce-form-control::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
@media screen and (min-width: 420px) {
  .ce-hero-box-search-input .ce-form-control::-webkit-input-placeholder {
    font-size: 22px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-input .ce-form-control::-webkit-input-placeholder {
    font-size: 24px;
    line-height: 40px;
  }
}
.ce-hero-box-search-input .ce-form-control::-moz-placeholder {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
@media screen and (min-width: 420px) {
  .ce-hero-box-search-input .ce-form-control::-moz-placeholder {
    font-size: 22px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-input .ce-form-control::-moz-placeholder {
    font-size: 24px;
    line-height: 40px;
  }
}
.ce-hero-box-search-input .ce-form-control:-ms-input-placeholder {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
@media screen and (min-width: 420px) {
  .ce-hero-box-search-input .ce-form-control:-ms-input-placeholder {
    font-size: 22px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-input .ce-form-control:-ms-input-placeholder {
    font-size: 24px;
    line-height: 40px;
  }
}
.ce-hero-box-search-input .ce-form-control:-moz-placeholder {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}
@media screen and (min-width: 420px) {
  .ce-hero-box-search-input .ce-form-control:-moz-placeholder {
    font-size: 22px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero-box-search-input .ce-form-control:-moz-placeholder {
    font-size: 24px;
    line-height: 40px;
  }
}
.ce-hero-box-search-input .ce-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: auto;
}
@media screen and (max-width: 600px) {
  .ce-hero-box-search-input .ce-btn {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}
.ce-hero-box-search-recents {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
}
.ce-hero-box-search-recents p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.ce-hero-box-search-recents ul {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .ce-hero-box-search-recents ul {
    gap: 8px;
  }
}
.ce-hero-box-search-recents ul > li {
  position: relative;
}
.ce-hero-box-search-recents ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: rgb(60, 72, 88);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-hero-box-search-recents ul > li > a:hover, .ce-hero-box-search-recents ul > li > a:focus {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-hero-box-search-recents ul > li span {
  opacity: 0.2;
}
.ce-hero.ce-hero-inner {
  padding: 60px 0px 5px 0px;
}
@media screen and (min-width: 600px) {
  .ce-hero.ce-hero-inner {
    padding: 80px 0px 15px 0px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-hero.ce-hero-inner {
    padding: 45px 0px 25px 0px;
  }
}
@media screen and (min-width: 767px) {
  .ce-hero.ce-hero-inner .ce-hero-box-info {
    width: 740px;
  }
}
@media screen and (min-width: 992px) {
  .ce-hero.ce-hero-inner .ce-hero-box-info {
    width: 940px;
  }
}
.ce-hero.ce-hero-inner .ce-hero-box-info h1,
.ce-hero.ce-hero-inner .ce-hero-box-info h2,
.ce-hero.ce-hero-inner .ce-hero-box-info h3,
.ce-hero.ce-hero-inner .ce-hero-box-info h4,
.ce-hero.ce-hero-inner .ce-hero-box-info h5 {
  font-weight: 900;
}

.ce-hero-pillboard {
  margin: 30px 0px 10px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.ce-hero-pill {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 49, 0.08);
  -webkit-border-radius: 18px;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0px 20px 60px rgba(12, 25, 47, 0.08);
  text-align: left;
}
.ce-hero-pill-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  color: #00c9a7;
  margin-bottom: 6px;
}
.ce-hero-pill h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 28px;
}
.ce-hero-pill p {
  margin: 0;
  color: rgb(60, 72, 88);
  font-size: 15px;
  line-height: 22px;
}
.ce-hero-metrics-panel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.ce-hero-metric {
  background: #f0f9f7;
  border: 1px solid rgba(11, 29, 49, 0.05);
  padding: 18px 20px;
  -webkit-border-radius: 14px;
  border-radius: 14px;
}
.ce-hero-metric-value {
  display: block;
  font-size: 26px;
  line-height: 32px;
  font-weight: 800;
  color: rgb(11, 29, 49);
}
.ce-hero-metric-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(11, 29, 49, 0.7);
  margin-bottom: 4px;
}
.ce-hero-metric p {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: rgba(11, 29, 49, 0.7);
}
.ce-hero-proof {
  margin-top: 24px;
  background: linear-gradient(120deg, #0b1d31 0%, #152c4c 100%);
  color: #ffffff;
  padding: 26px 28px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ce-hero-proof-text {
  max-width: 420px;
}
.ce-hero-proof-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.8;
}
.ce-hero-proof h4 {
  color: #ffffff;
  margin: 0 0 6px 0;
}
.ce-hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.ce-hero-proof-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ce-hero-proof-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 999px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.9;
}

.ce-section-solid {
  background: linear-gradient(180deg, #f6fbfa 0%, #ffffff 100%);
}
.ce-section-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) {
  .ce-section-head {
    gap: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 992px) {
  .ce-section-head {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.ce-section-head.ce-section-head-centered {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.ce-section-head-text {
  max-width: 520px;
  color: rgb(60, 72, 88);
  font-size: 14px;
  line-height: 22px;
  margin: 8px 0 0 0;
}
@media screen and (min-width: 600px) {
  .ce-section-head-text {
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .ce-section-head-text {
    font-size: 16px;
    line-height: 26px;
    margin: 12px 0 0 0;
  }
}
.ce-section-head.ce-section-head-centered .ce-section-head-text {
  margin-left: auto;
  margin-right: auto;
}
.ce-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: #00c9a7;
  margin-bottom: 8px;
}
.ce-split-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .ce-split-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.ce-split-layout-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.ce-split-layout-preview {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ce-risk-subtext {
  margin-top: 12px;
  color: rgba(11, 29, 49, 0.75);
  font-size: 15px;
  line-height: 24px;
}
.ce-risk-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.ce-risk-stat {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 49, 0.08);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(12, 25, 47, 0.08);
}
.ce-risk-stat strong {
  display: block;
  font-size: 26px;
  line-height: 30px;
  color: rgb(11, 29, 49);
}
.ce-risk-stat span {
  font-size: 14px;
  color: rgba(11, 29, 49, 0.7);
}
.ce-data-preview {
  width: 100%;
  max-width: 500px;
  background: #0c1d33;
  color: #ffffff;
  padding: 28px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  box-shadow: 0px 35px 80px rgba(5, 12, 24, 0.45);
}
.ce-data-preview-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 20px;
}
.ce-data-preview-status {
  background: rgba(0, 201, 167, 0.16);
  color: #00f5c0;
  padding: 5px 12px;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.ce-data-preview-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.ce-preview-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-border-radius: 18px;
  border-radius: 18px;
  padding: 16px 18px;
}
.ce-preview-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  margin: 0 0 6px 0;
  opacity: 0.7;
}
.ce-preview-value {
  margin: 0 0 4px 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.ce-preview-caption {
  font-size: 13px;
  opacity: 0.8;
}
.ce-preview-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ce-preview-pill {
  background: rgba(0, 201, 167, 0.18);
  color: #00f5c0;
  padding: 6px 12px;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.ce-data-preview-footer {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ce-link-inline {
  color: #00c9a7;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.ce-link-inline:after {
  content: "→";
  font-size: 16px;
}
.ce-link-inline:hover, .ce-link-inline:focus {
  opacity: 0.8;
}
.ce-insights-grid {
  display: grid;
  gap: 18px;
}
@media screen and (min-width: 767px) {
  .ce-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .ce-insights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.ce-insight-card {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 49, 0.08);
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0px 18px 40px rgba(15, 32, 52, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.ce-insight-icon {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  background: #f0f9f7;
  color: #00b896;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ce-insight-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}
.ce-insight-card p {
  margin: 0;
  color: rgb(60, 72, 88);
}
.ce-insight-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgb(60, 72, 88);
  font-size: 14px;
}
.ce-insight-card ul li + li {
  margin-top: 6px;
}
.ce-kbis-guarantees {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}
.ce-guarantee-grid {
  display: grid;
  gap: 18px;
}
@media screen and (min-width: 992px) {
  .ce-guarantee-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ce-guarantee-card {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 49, 0.08);
  -webkit-border-radius: 18px;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(8, 20, 38, 0.08);
  height: 100%;
}
.ce-guarantee-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 26px;
}
.ce-guarantee-card p {
  margin: 0;
  color: rgb(60, 72, 88);
}
.ce-guarantee-card ul {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: rgb(60, 72, 88);
  font-size: 14px;
}
.ce-guarantee-card ul li + li {
  margin-top: 6px;
}


.ce-links {
  position: relative;
  display: block;
}
.ce-links > li {
  position: relative;
  display: block;
}
.ce-links > li > a {
  font-size: 14px;
  line-height: 24px;
  color: rgb(60, 72, 88);
  display: inline-block;
  padding-bottom: 4px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-links > li > a {
    font-size: 16px;
  }
}
.ce-links > li > a:hover, .ce-links > li > a:focus {
  color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-links > li:last-child > a {
  padding-bottom: 0;
}

.ce-list-features {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
}
.ce-list-features > li {
  font-size: 16px;
  line-height: 24px;
  color: rgb(60, 72, 88);
  padding: 8px 0px 8px 24px;
  position: relative;
  display: inline-block;
}
.ce-list-features > li span {
  font-weight: 700;
}
@media screen and (min-width: 1300px) {
  .ce-list-features > li {
    font-size: 18px;
    padding: 8px 0px 8px 32px;
  }
}
.ce-list-features > li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  display: block;
  background-color: rgba(60, 72, 88, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1300px) {
  .ce-list-features > li:after {
    width: 24px;
    height: 24px;
  }
}
.ce-list-features > li:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  display: block;
  z-index: 1;
  background-image: url(../../assets/images/icons/icn-check-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1300px) {
  .ce-list-features > li:before {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    left: 6px;
  }
}
.ce-list-features.ce-list-features-inline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .ce-list-features.ce-list-features-inline {
    gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-list-features.ce-list-features-inline {
    gap: 40px;
  }
}
.ce-list-features.ce-list-features-inline > li {
  padding: 0px 0px 0px 24px;
}
@media screen and (min-width: 1300px) {
  .ce-list-features.ce-list-features-inline > li {
    padding: 0px 0px 0px 32px;
  }
}
.ce-list-features.ce-list-features-sm > li {
  font-size: 14px;
  line-height: 20px;
  padding: 2px 0px 2px 28px;
}
@media screen and (min-width: 1300px) {
  .ce-list-features.ce-list-features-sm > li {
    font-size: 16px;
    padding: 4px 0px 4px 28px;
  }
}
.ce-list-features.ce-list-features-sm > li:after {
  width: 20px;
  height: 20px;
}
.ce-list-features.ce-list-features-sm > li:before {
  left: 5px;
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
}

.ce-list-social {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 600px) {
  .ce-list-social {
    gap: 15px;
  }
}
.ce-list-social > li {
  display: block;
  position: relative;
}
.ce-list-social > li > a {
  position: relative;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-social > li > a img {
  width: 24px;
  height: auto;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-social > li > a:hover, .ce-list-social > li > a:focus {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-list-check {
  position: relative;
  display: block;
}
.ce-list-check > li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: rgb(60, 72, 88);
  font-weight: 700;
  padding: 6px 0px 6px 36px;
  opacity: 0.5;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-list-check > li {
    font-size: 18px;
    line-height: 24px;
    padding: 14px 0px 14px 48px;
  }
}
.ce-list-check > li > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  width: 28px;
  height: 28px;
  display: block;
  background-color: rgb(60, 72, 88);
  opacity: 0.2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-list-check > li > span {
    width: 36px;
    height: 36px;
  }
}
.ce-list-check > li > span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 201, 167);
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-check > li > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-image: url(../../assets/images/icons/icn-check-white.svg);
  background-position: center;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-list-check > li > span:before {
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
  }
}
.ce-list-check > li:last-child {
  margin-bottom: 0;
}
.ce-list-check .ce-list-check-active {
  opacity: 1;
  color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-check .ce-list-check-active > span {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-check .ce-list-check-active > span:after {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-list-check .ce-list-check-active > span:before {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-checkbox-iline {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .ce-checkbox-iline {
    gap: 30px;
  }
}

.ce-checkbox {
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
}
.ce-checkbox-mark {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  flex-shrink: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-checkbox-mark {
    width: 24px;
    height: 24px;
  }
}
.ce-checkbox-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid rgb(255, 255, 255);
  border-width: 0 2px 2px 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-checkbox-mark:after {
    width: 5px;
    height: 10px;
    border-width: 0 2.5px 2.5px 0;
  }
}
.ce-checkbox-text {
  position: relative;
  display: block;
  padding-left: 26px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 400;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-checkbox-text {
    font-size: 18px;
    line-height: 28px;
    padding-left: 32px;
  }
}
.ce-checkbox-text-sm {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 600px) {
  .ce-checkbox-text-sm {
    font-size: 16px;
  }
}
.ce-checkbox input:checked + .ce-checkbox-mark {
  background-color: rgb(0, 201, 167);
  border-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox input:checked + .ce-checkbox-mark:after {
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox input:checked + .ce-checkbox-mark + .ce-checkbox-text {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox:hover, .ce-checkbox:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox:hover .ce-checkbox-mark, .ce-checkbox:focus .ce-checkbox-mark {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox:hover .ce-checkbox-mark:after, .ce-checkbox:focus .ce-checkbox-mark:after {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox:hover .ce-checkbox-text, .ce-checkbox:focus .ce-checkbox-text {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.accordion {
  position: relative;
  display: block;
}
@media screen and (min-width: 767px) {
  .accordion {
    padding: 0px 80px;
  }
}
@media screen and (min-width: 992px) {
  .accordion {
    padding: 0px 120px;
  }
}
@media screen and (min-width: 1300px) {
  .accordion {
    padding: 0px 160px;
  }
}
.accordion-item {
  position: relative;
  display: block;
  border: 1px solid rgba(60, 72, 88, 0.2);
  margin-bottom: 5px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .accordion-item {
    margin-bottom: 10px;
  }
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item-title {
  cursor: pointer;
  padding: 10px 42px 10px 16px;
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .accordion-item-title {
    padding: 14px 42px 14px 24px;
  }
}
.accordion-item-title h1,
.accordion-item-title h2,
.accordion-item-title h3,
.accordion-item-title h4,
.accordion-item-title h5 {
  margin-bottom: 0px;
  color: rgba(60, 72, 88, 0.6);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .accordion-item-title h1,
  .accordion-item-title h2,
  .accordion-item-title h3,
  .accordion-item-title h4,
  .accordion-item-title h5 {
    font-size: 18px;
  }
}
.accordion-item-title-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 16px;
  height: 16px;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .accordion-item-title-arrow {
    top: 18px;
    right: 24px;
  }
}
.accordion-item-title-arrow:after, .accordion-item-title-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  display: block;
  background-color: rgba(60, 72, 88, 0.4);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item-title-arrow:after {
  right: 0px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion-item-title-arrow:before {
  left: 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.accordion-item-content {
  display: none;
  padding: 0px 32px 8px 16px;
}
@media screen and (min-width: 767px) {
  .accordion-item-content {
    padding: 0px 42px 14px 24px;
  }
}
.accordion-item-content p {
  color: rgb(60, 72, 88);
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .accordion-item-content p {
    font-size: 16px;
  }
}
.accordion-item:hover, .accordion-item:focus {
  border-color: rgba(60, 72, 88, 0.4);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item:hover .accordion-item-title, .accordion-item:focus .accordion-item-title {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item:hover .accordion-item-title h1,
.accordion-item:hover .accordion-item-title h2,
.accordion-item:hover .accordion-item-title h3,
.accordion-item:hover .accordion-item-title h4,
.accordion-item:hover .accordion-item-title h5, .accordion-item:focus .accordion-item-title h1,
.accordion-item:focus .accordion-item-title h2,
.accordion-item:focus .accordion-item-title h3,
.accordion-item:focus .accordion-item-title h4,
.accordion-item:focus .accordion-item-title h5 {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item:hover .accordion-item-title-arrow, .accordion-item:focus .accordion-item-title-arrow {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 16px;
  height: 16px;
  display: block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item:hover .accordion-item-title-arrow:after, .accordion-item:hover .accordion-item-title-arrow:before, .accordion-item:focus .accordion-item-title-arrow:after, .accordion-item:focus .accordion-item-title-arrow:before {
  background-color: rgba(60, 72, 88, 0.7);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item.accordion-item-current {
  border-color: rgb(0, 201, 167);
  background-color: rgba(0, 201, 167, 0.01);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item.accordion-item-current .accordion-item-title h1,
.accordion-item.accordion-item-current .accordion-item-title h2,
.accordion-item.accordion-item-current .accordion-item-title h3,
.accordion-item.accordion-item-current .accordion-item-title h4,
.accordion-item.accordion-item-current .accordion-item-title h5 {
  color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item.accordion-item-current .accordion-item-title-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.accordion-item.accordion-item-current .accordion-item-title-arrow:after, .accordion-item.accordion-item-current .accordion-item-title-arrow:before {
  background-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.shape-shadow-green {
  z-index: -1;
  background-color: rgb(0, 201, 167);
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  left: 0;
  right: 0px;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (min-width: 767px) {
  .shape-shadow-green {
    width: 200px;
    height: 200px;
    -webkit-filter: blur(400px);
    filter: blur(400px);
  }
}
.shape-shadow-green.shape-shadow-green-top {
  top: -50px;
}
@media screen and (min-width: 767px) {
  .shape-shadow-green.shape-shadow-green-top {
    top: -100px;
  }
}
.shape-shadow-green.shape-shadow-green-bottom {
  bottom: -50px;
}
@media screen and (min-width: 767px) {
  .shape-shadow-green.shape-shadow-green-bottom {
    bottom: -100px;
  }
}

.shape-shadow-black {
  z-index: -1;
  background-color: rgb(60, 72, 88);
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  left: 0;
  right: 0px;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (min-width: 767px) {
  .shape-shadow-black {
    width: 200px;
    height: 200px;
    -webkit-filter: blur(400px);
    filter: blur(400px);
  }
}
.shape-shadow-black.shape-shadow-black-top {
  top: -50px;
}
@media screen and (min-width: 767px) {
  .shape-shadow-black.shape-shadow-black-top {
    top: -100px;
  }
}
.shape-shadow-black.shape-shadow-black-bottom {
  bottom: -50px;
}
@media screen and (min-width: 767px) {
  .shape-shadow-black.shape-shadow-black-bottom {
    bottom: -100px;
  }
}

.ce-reports {
  position: relative;
}
@media screen and (min-width: 420px) {
  .ce-reports {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 767px) {
  .ce-reports {
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .ce-reports {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.ce-reports .ce-report-item {
  flex-basis: 100%;
  margin-bottom: 10px;
}
.ce-reports .ce-report-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 420px) {
  .ce-reports .ce-report-item {
    margin-bottom: 0;
  }
}
.ce-reports .ce-report-item:nth-child(1) {
  background-color: rgb(60, 72, 88);
}
.ce-reports .ce-report-item:nth-child(2) {
  background-color: rgba(60, 72, 88, 0.9);
}
.ce-reports .ce-report-item:nth-child(3) {
  background-color: rgba(60, 72, 88, 0.8);
}
.ce-reports .ce-report-item:nth-child(4) {
  background-color: rgba(60, 72, 88, 0.7);
}

.ce-report-item {
  position: relative;
  padding: 15px;
}
@media screen and (min-width: 767px) {
  .ce-report-item {
    padding: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-report-item {
    padding: 30px;
  }
}
.ce-report-item-no {
  position: relative;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}
@media screen and (min-width: 767px) {
  .ce-report-item-no {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .ce-report-item-no {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-report-item-no {
    font-size: 60px;
    line-height: 60px;
  }
}
.ce-report-item-no span {
  font-weight: 300;
  padding-left: 12px;
}
.ce-report-item h1,
.ce-report-item h2,
.ce-report-item h3,
.ce-report-item h4,
.ce-report-item h5 {
  margin-bottom: 5px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}
.ce-report-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-report-item:hover p, .ce-report-item:focus p {
  color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-report-item:hover, .ce-report-item:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-features {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media screen and (min-width: 600px) {
  .ce-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media screen and (min-width: 767px) {
  .ce-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-features {
    gap: 28px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-features {
    gap: 32px;
  }
}
.ce-features .ce-feature-item {
  margin-bottom: 0;
}

.ce-feature-item {
  position: relative;
  padding: 20px 16px 50px 16px;
  text-align: center;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60, 72, 88, 0.04);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 600px) {
  .ce-feature-item {
    padding: 28px 24px 60px 24px;
  }
}
@media screen and (min-width: 992px) {
  .ce-feature-item {
    padding: 40px 32px 70px 32px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-feature-item {
    padding: 48px 36px 75px 36px;
  }
}
.ce-feature-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08) 0%, rgba(0, 201, 167, 0.12) 100%);
  border-radius: 12px;
  color: rgb(0, 201, 167);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 600px) {
  .ce-feature-item-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 14px;
  }
}
@media screen and (min-width: 992px) {
  .ce-feature-item-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
    border-radius: 16px;
  }
}
.ce-feature-item-icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
@media screen and (min-width: 600px) {
  .ce-feature-item-icon svg {
    width: 42px;
    height: 42px;
  }
}
@media screen and (min-width: 992px) {
  .ce-feature-item-icon svg {
    width: 48px;
    height: 48px;
  }
}
.ce-feature-item h1,
.ce-feature-item h2,
.ce-feature-item h3,
.ce-feature-item h4,
.ce-feature-item h5 {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
  color: rgb(60, 72, 88);
  letter-spacing: -0.02em;
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 600px) {
  .ce-feature-item h1,
  .ce-feature-item h2,
  .ce-feature-item h3,
  .ce-feature-item h4,
  .ce-feature-item h5 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .ce-feature-item h1,
  .ce-feature-item h2,
  .ce-feature-item h3,
  .ce-feature-item h4,
  .ce-feature-item h5 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-feature-item h1,
  .ce-feature-item h2,
  .ce-feature-item h3,
  .ce-feature-item h4,
  .ce-feature-item h5 {
    font-size: 21px;
    line-height: 29px;
    margin-bottom: 14px;
  }
}
.ce-feature-item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 600px) {
  .ce-feature-item p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (min-width: 992px) {
  .ce-feature-item p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-feature-item p {
    font-size: 16px;
    line-height: 26px;
  }
}
.ce-feature-item-link {
  position: absolute;
  right: 0px;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 1;
  cursor: pointer;
  background-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-feature-item-link:after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6H9.5M9.5 6L6.5 3M9.5 6L6.5 9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .ce-feature-item-link {
    opacity: 0;
    left: initial;
    right: -48px;
    width: 48px;
    height: 48px;
  }
  .ce-feature-item-link:after {
    width: 16px;
    height: 16px;
  }
}
.ce-feature-item-link:hover, .ce-feature-item-link:focus {
  background-color: #00B395;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-feature-item:hover, .ce-feature-item:focus {
  border-color: rgb(0, 201, 167);
  box-shadow: 0 12px 32px rgba(0, 201, 167, 0.15);
  transform: translateY(-6px);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ce-feature-item:hover .ce-feature-item-icon, .ce-feature-item:focus .ce-feature-item-icon {
  background: linear-gradient(135deg, rgb(0, 201, 167) 0%, rgb(0, 180, 148) 100%);
  color: rgb(255, 255, 255);
  transform: scale(1.08);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ce-feature-item:hover h1,
.ce-feature-item:hover h2,
.ce-feature-item:hover h3,
.ce-feature-item:hover h4,
.ce-feature-item:hover h5, .ce-feature-item:focus h1,
.ce-feature-item:focus h2,
.ce-feature-item:focus h3,
.ce-feature-item:focus h4,
.ce-feature-item:focus h5 {
  color: rgb(0, 201, 167);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ce-feature-item:hover p, .ce-feature-item:focus p {
  color: rgb(60, 72, 88);
  -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 600px) {
  .ce-feature-item:hover .ce-feature-item-link, .ce-feature-item:focus .ce-feature-item-link {
    right: 0px;
    opacity: 1;
    -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.ce-table {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ce-table table {
  width: 100%;
  max-width: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-table table {
    display: table;
  }
}
.ce-table table thead {
  display: none;
}
@media screen and (min-width: 992px) {
  .ce-table table thead {
    display: table-header-group;
  }
}
.ce-table table thead tr th {
  border-bottom: 1px solid rgba(60, 72, 88, 0.2);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(60, 72, 88);
  text-align: left;
  padding: 6px;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .ce-table table thead tr th {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }
}
.ce-table table thead tr th:last-child {
  text-align: right;
}
.ce-table table tbody {
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-table table tbody {
    display: table-row-group;
  }
}
.ce-table table tbody tr {
  display: block;
  border: 1px solid rgba(60, 72, 88, 0.2);
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-table table tbody tr {
    display: table-row;
    border: 0;
    margin-bottom: 0px;
  }
}
.ce-table table tbody tr td {
  border-bottom: 1px solid rgba(60, 72, 88, 0.1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.7);
  padding: 6px;
  vertical-align: middle;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-table table tbody tr td {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 8px;
  }
}
@media screen and (max-width: 992px) {
  .ce-table table tbody tr td {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ce-table table tbody tr td::before {
    content: attr(data-value);
    flex: 0 0 auto;
    min-width: 50%;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(60, 72, 88, 0.7);
  }
}
@media screen and (max-width: 992px) and (min-width: 600px) {
  .ce-table table tbody tr td::before {
    font-size: 14px;
    line-height: 14px;
  }
}
@media screen and (max-width: 992px) {
  .ce-table table tbody tr td:last-child {
    border-bottom: 0;
  }
}
.ce-table table tbody tr td:first-child {
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 992px) {
  .ce-table table tbody tr td:last-child {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .ce-table table tbody tr:hover td, .ce-table table tbody tr:focus td {
    background-color: rgba(60, 72, 88, 0.02);
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -o-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
  }
}
.ce-table-company-logo {
  cursor: pointer;
  position: relative;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-table-company-logo {
    padding: 0px 15px;
  }
}
.ce-table-company-logo > img {
  width: 40px;
  height: auto;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-table-company-logo > img {
    width: 56px;
  }
}
.ce-table-company-logo-enhanced {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.1);
  border-radius: 4px;
  padding: 6px;
}
@media screen and (min-width: 992px) {
  .ce-table-company-logo-enhanced {
    width: 60px;
    height: 60px;
    padding: 8px;
  }
}
.ce-table-company-logo-enhanced > img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.ce-table-enhanced .ce-table-rank {
  width: 50px;
  text-align: center;
  font-weight: 700;
  color: rgba(60, 72, 88, 0.7);
}
.ce-table-enhanced .ce-table-logo-col {
  width: 80px;
  padding: 8px !important;
}
@media screen and (min-width: 992px) {
  .ce-table-enhanced .ce-table-logo-col {
    width: 90px;
  }
}
.ce-table-enhanced .ce-table-right {
  text-align: right;
}
.ce-table-enhanced .ce-table-center {
  text-align: center;
}
.ce-table-enhanced .ce-table-action {
  width: 80px;
  text-align: right;
}

.ce-stocks-mobile-table {
  display: none;
}

@media screen and (max-width: 992px) {
  .ce-table.ce-table-enhanced {
    display: none;
  }
  .ce-stocks-mobile-table {
    display: block;
    border: 1px solid rgba(60, 72, 88, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(13, 45, 71, 0.08);
  }
  .ce-stocks-mobile-header {
    display: grid;
    grid-template-columns: 2.6fr 1fr 1fr 0.9fr;
    gap: 10px;
    padding: 10px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(11, 29, 49, 0.6);
    background: rgba(0, 201, 167, 0.08);
    border-bottom: 1px solid rgba(60, 72, 88, 0.08);
  }
  .ce-stocks-mobile-header span {
    text-align: right;
  }
  .ce-stocks-mobile-header span:first-child {
    text-align: left;
  }
  .ce-stocks-mobile-row {
    display: grid;
    grid-template-columns: 2.6fr 1fr 1fr 0.9fr;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(60, 72, 88, 0.08);
    text-decoration: none;
    color: inherit;
  }
  .ce-stocks-mobile-row:last-child {
    border-bottom: 0;
  }
  .ce-stocks-mobile-row:hover,
  .ce-stocks-mobile-row:focus {
    background: rgba(0, 0, 0, 0.015);
  }
  .ce-mobile-company {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }
  .ce-mobile-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 201, 167, 0.15);
    color: #009279;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
  }
  .ce-mobile-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(60, 72, 88, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }
  .ce-mobile-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .ce-mobile-company-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .ce-mobile-company-name {
    font-size: 14px;
    font-weight: 600;
    color: rgb(11, 29, 49);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ce-mobile-company-sub {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(60, 72, 88, 0.6);
  }
  .ce-mobile-cell {
    font-size: 13px;
    font-weight: 600;
    color: rgba(11, 29, 49, 0.85);
    text-align: right;
  }
  .ce-mobile-cap {
    color: rgba(11, 29, 49, 0.7);
  }
  .ce-mobile-price {
    font-size: 14px;
  }
  .ce-mobile-change {
    text-align: right;
  }
  .ce-mobile-change .ce-table-change {
    display: inline-flex;
    font-size: 12px;
    padding: 3px 9px;
  }
}

@media screen and (max-width: 576px) {
  .ce-stocks-mobile-table {
    border-radius: 12px;
  }
  .ce-stocks-mobile-header {
    display: none;
  }
  .ce-stocks-mobile-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "company company"
      "cap price"
      "change change";
    gap: 6px 10px;
  }
  .ce-stocks-mobile-row .ce-mobile-company {
    grid-area: company;
  }
  .ce-stocks-mobile-row .ce-mobile-cap {
    grid-area: cap;
    text-align: left;
    font-size: 12px;
  }
  .ce-stocks-mobile-row .ce-mobile-price {
    grid-area: price;
    text-align: right;
  }
  .ce-stocks-mobile-row .ce-mobile-change {
    grid-area: change;
    text-align: left;
  }
  .ce-mobile-company-name {
    font-size: 13px;
  }
}

.ce-table-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(60, 72, 88, 0.05);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: rgba(60, 72, 88, 0.7);
}
.ce-table-number {
  font-size: 15px;
  font-weight: 600;
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 1300px) {
  .ce-table-number {
    font-size: 16px;
  }
}
.ce-table-price {
  font-size: 16px;
  font-weight: 700;
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 1300px) {
  .ce-table-price {
    font-size: 17px;
  }
}
.ce-table-change {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1300px) {
  .ce-table-change {
    font-size: 15px;
  }
}
.ce-table-change-positive {
  background-color: rgba(0, 201, 167, 0.1);
  color: #009279;
}
.ce-table-change-negative {
  background-color: rgba(255, 59, 48, 0.1);
  color: #c33;
}
.ce-table-view-btn {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 201, 167);
  border-radius: 4px;
  color: rgb(0, 201, 167);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-table-view-btn:hover {
  background-color: rgb(0, 201, 167);
  color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-table .ce-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(0, 201, 167) 0%, #00b89b 100%);
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 900;
  border-radius: 4px;
}
@media screen and (min-width: 992px) {
  .ce-table .ce-logo-placeholder {
    font-size: 20px;
  }
}
.ce-table-company-name {
  cursor: pointer;
  position: relative;
  display: block;
  color: rgb(0, 201, 167);
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-table-company-name:hover, .ce-table-company-name:focus {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-table-company-location {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .ce-table-company-location {
    padding-left: 18px;
  }
}
.ce-table-company-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
  display: block;
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .ce-table-company-location:after {
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
  }
}

.ce-table-filter {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .ce-table-filter {
    gap: 20px;
  }
}
.ce-table-filter p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1300px) {
  .ce-table-filter p {
    font-size: 18px;
  }
}

.ce-premium-compact {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.03) 0%, rgba(255, 138, 0, 0.08) 100%);
  border: 1px solid rgba(249, 168, 54, 0.2);
  border-radius: 8px;
  padding: 35px 40px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .ce-premium-compact {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 25px;
  }
}
.ce-premium-compact-header {
  flex-shrink: 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 992px) {
  .ce-premium-compact-header {
    flex-direction: column;
    gap: 10px;
  }
}
.ce-premium-compact-header img {
  width: 42px;
  height: auto;
}
.ce-premium-compact-header h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-header h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-premium-compact-content {
  flex: 1;
  min-width: 0;
}
.ce-premium-compact-tagline {
  font-size: 15px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 15px;
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-tagline {
    font-size: 16px;
    line-height: 26px;
  }
}
.ce-premium-compact-pricing {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .ce-premium-compact-pricing {
    justify-content: center;
  }
}
.ce-premium-compact-trial-main {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(249, 168, 54, 0.15) 0%, rgba(249, 168, 54, 0.25) 100%);
  border: 2px solid rgb(249, 168, 54);
  border-radius: 8px;
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-trial-main {
    padding: 12px 22px;
  }
}
.ce-premium-compact-trial-main .trial-badge {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(249, 168, 54);
  padding: 6px 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-trial-main .trial-badge {
    font-size: 14px;
  }
}
.ce-premium-compact-trial-main .trial-price {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ce-premium-compact-trial-main .trial-amount {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-trial-main .trial-amount {
    font-size: 32px;
  }
}
.ce-premium-compact-trial-main .trial-label {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: rgba(60, 72, 88, 0.6);
}
.ce-premium-compact-price-regular {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-left: 10px;
}
@media screen and (max-width: 992px) {
  .ce-premium-compact-price-regular {
    padding-left: 0;
  }
}
.ce-premium-compact-price-regular .price-amount {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: rgba(60, 72, 88, 0.8);
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-price-regular .price-amount {
    font-size: 26px;
  }
}
.ce-premium-compact-price-regular .price-period {
  font-size: 14px;
  line-height: 1;
  color: rgba(60, 72, 88, 0.6);
  font-weight: 400;
}
@media screen and (min-width: 1300px) {
  .ce-premium-compact-price-regular .price-period {
    font-size: 15px;
  }
}
.ce-premium-compact-cta {
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .ce-premium-compact-cta {
    width: 100%;
  }
  .ce-premium-compact-cta .ce-btn {
    width: 100%;
  }
}

.ce-cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(255, 138, 0, 0.05) 100%);
  border: 2px solid rgba(0, 201, 167, 0.2);
  border-radius: 8px;
  padding: 25px 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .ce-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}
.ce-cta-banner-content {
  flex: 1;
}
.ce-cta-banner-content h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 8px;
}
@media screen and (min-width: 1300px) {
  .ce-cta-banner-content h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.ce-cta-banner-content p {
  font-size: 15px;
  line-height: 22px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-cta-banner-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.ce-cta-banner-action {
  flex-shrink: 0;
}

.ce-banner {
  position: relative;
  background: linear-gradient(135deg, rgb(45, 55, 72) 0%, rgb(60, 72, 88) 100%);
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .ce-banner {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 767px) {
  .ce-banner {
    padding: 40px 80px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: initial;
  }
}
@media screen and (min-width: 992px) {
  .ce-banner {
    padding: 60px 120px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-banner {
    padding: 80px 160px;
  }
}
.ce-banner-info {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .ce-banner-info {
    width: 50%;
    margin-bottom: 0px;
  }
}
.ce-banner-info h1,
.ce-banner-info h2,
.ce-banner-info h3,
.ce-banner-info h4,
.ce-banner-info h5 {
  color: rgb(255, 255, 255);
}
.ce-banner-info p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 30px;
}
@media screen and (min-width: 767px) {
  .ce-banner-info p {
    font-size: 22px;
    line-height: 34px;
  }
}
.ce-banner-image {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .ce-banner-image {
    width: 40%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    justify-content: end;
  }
}
.ce-banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-banner:hover, .ce-banner:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-banner:hover .ce-banner-image img, .ce-banner:focus .ce-banner-image img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-banner-price {
  position: relative;
  background: rgba(249, 168, 54, 0.05);
  border: 1px solid rgba(249, 168, 54, 0.2);
  padding: 20px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .ce-banner-price {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 767px) {
  .ce-banner-price {
    padding: 40px 80px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    text-align: initial;
  }
}
@media screen and (min-width: 992px) {
  .ce-banner-price {
    padding: 60px 120px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-banner-price {
    padding: 80px 160px;
  }
}
.ce-banner-price-left {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .ce-banner-price-left {
    width: 50%;
    margin-bottom: 0px;
  }
}
.ce-banner-price-left img {
  width: 48px;
  height: auto;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .ce-banner-price-left img {
    margin: 0;
  }
}
.ce-banner-price-left p {
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 0;
}
.ce-banner-price-right {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .ce-banner-price-right {
    width: 40%;
  }
}
.ce-banner-price-right-no {
  font-size: 28px;
  line-height: 28px;
  font-weight: 900;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: end;
  color: rgb(60, 72, 88);
  padding-bottom: 15px;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .ce-banner-price-right-no {
    justify-content: start;
  }
}
@media screen and (min-width: 767px) {
  .ce-banner-price-right-no {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (min-width: 992px) {
  .ce-banner-price-right-no {
    font-size: 42px;
    line-height: 42px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-banner-price-right-no {
    font-size: 52px;
    line-height: 52px;
  }
}
.ce-banner-price-right-no span {
  font-size: 24px;
  line-height: 24px;
  padding-left: 6px;
  font-weight: 400;
}
.ce-banner-price:hover, .ce-banner-price:focus {
  border-color: rgba(249, 168, 54, 0.6);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-banner-price:hover .ce-btn, .ce-banner-price:focus .ce-btn {
  color: rgb(255, 255, 255);
  border-color: rgb(249, 168, 54);
  background-color: rgb(249, 168, 54);
}

.ce-pricing-offer {
  position: relative;
}
.ce-pricing-showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .ce-pricing-showcase {
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
  }
}
.ce-pricing-intro {
  flex: 1;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  border: 1px solid rgba(12, 58, 88, 0.08);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 30px 60px rgba(18, 51, 44, 0.06);
}
@media screen and (min-width: 992px) {
  .ce-pricing-intro {
    padding: 48px;
  }
}
.ce-pricing-intro-content {
  flex: 1;
}
.ce-pricing-intro h1 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .ce-pricing-intro h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.ce-pricing-eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #00ae8c;
  margin-bottom: 10px;
}
.ce-pricing-lede {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.ce-pricing-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ce-pricing-highlights li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 26px;
}
.ce-pricing-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f9a836;
  box-shadow: 0 0 0 4px rgba(249, 168, 54, 0.2);
}
.ce-pricing-assurances {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.ce-pricing-assurances div {
  background: rgba(60, 72, 88, 0.05);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3c4858;
}
.ce-pricing-card {
  flex: 0 0 380px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(12, 58, 88, 0.08);
  padding: 32px;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .ce-pricing-card {
    flex: 1;
  }
}
.ce-pricing-card-header {
  text-align: center;
  margin-bottom: 20px;
}
.ce-pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249, 168, 54, 0.15);
  color: #f9a836;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.ce-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 10px;
}
.ce-pricing-amount-value {
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
  color: #1f2b37;
}
.ce-pricing-amount-period {
  font-size: 18px;
  color: #5e6b7b;
}
.ce-pricing-card-text {
  font-size: 15px;
  line-height: 24px;
  color: #5e6b7b;
  margin-bottom: 0;
}
.ce-pricing-card-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.ce-pricing-card-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  font-weight: 600;
  color: #1f2b37;
}
.ce-pricing-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: url("/images/icons/icn-premium-orange.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
.ce-pricing-trial {
  background: rgba(0, 174, 140, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.ce-pricing-trial-price {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: #00ae8c;
}
.ce-pricing-trial-follow {
  font-size: 14px;
  color: #3c4858;
}
.ce-pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
}
.ce-pricing-note {
  text-align: center;
  font-size: 13px;
  color: #6f7b8a;
  margin-bottom: 0;
}

.ce-news-filter {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 15px;
}
@media screen and (min-width: 767px) {
  .ce-news-filter {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .ce-news-filter {
    gap: 30px;
  }
}

.ce-news {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-news {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.ce-news .ce-news-item {
  margin-bottom: 20px;
}
.ce-news .ce-news-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .ce-news .ce-news-item {
    margin-bottom: 0px;
  }
}

.ce-news-item {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item h1,
.ce-news-item h2,
.ce-news-item h3,
.ce-news-item h4,
.ce-news-item h5 {
  margin-bottom: 5px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-news-item h1,
  .ce-news-item h2,
  .ce-news-item h3,
  .ce-news-item h4,
  .ce-news-item h5 {
    margin-bottom: 10px;
  }
}
.ce-news-item h1 > a,
.ce-news-item h2 > a,
.ce-news-item h3 > a,
.ce-news-item h4 > a,
.ce-news-item h5 > a {
  color: rgb(0, 201, 167);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  display: block;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-news-item h1 > a,
  .ce-news-item h2 > a,
  .ce-news-item h3 > a,
  .ce-news-item h4 > a,
  .ce-news-item h5 > a {
    font-size: 22px;
    line-height: 30px;
  }
}
.ce-news-item-desc {
  margin-bottom: 5px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item-date {
  margin-bottom: 0px;
  padding-left: 24px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item-date:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.5;
  background-image: url(../../assets/images/icons/icn-calendar-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  display: block;
}
.ce-news-item:hover, .ce-news-item:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item:hover h1,
.ce-news-item:hover h2,
.ce-news-item:hover h3,
.ce-news-item:hover h4,
.ce-news-item:hover h5, .ce-news-item:focus h1,
.ce-news-item:focus h2,
.ce-news-item:focus h3,
.ce-news-item:focus h4,
.ce-news-item:focus h5 {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item:hover h1 > a,
.ce-news-item:hover h2 > a,
.ce-news-item:hover h3 > a,
.ce-news-item:hover h4 > a,
.ce-news-item:hover h5 > a, .ce-news-item:focus h1 > a,
.ce-news-item:focus h2 > a,
.ce-news-item:focus h3 > a,
.ce-news-item:focus h4 > a,
.ce-news-item:focus h5 > a {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-news-item:hover .ce-news-item-desc, .ce-news-item:focus .ce-news-item-desc {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.hub-pages {
  position: relative;
}
@media screen and (min-width: 767px) {
  .hub-pages {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
    row-gap: 10px;
    column-gap: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .hub-pages {
    row-gap: 20px;
    column-gap: 20px;
  }
}
.hub-pages .hub-page-item {
  margin-bottom: 15px;
}
.hub-pages .hub-page-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .hub-pages .hub-page-item {
    flex-basis: 100%;
    margin-bottom: 0px;
  }
}

.ce-search-header {
  position: relative;
  padding: 20px 0px;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(60, 72, 88, 0.2);
}
@media screen and (min-width: 767px) {
  .ce-search-header {
    padding: 30px 0px;
  }
}
.ce-search-header-box {
  position: relative;
}
.ce-search-header-box h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  .ce-search-header-box h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
.ce-search-header-form {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.ce-search-header-form-input {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 10px;
}
.ce-search-header-form-input .ce-form-control {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid rgb(0, 201, 167);
}
.ce-search-header-form-input .ce-btn {
  flex-shrink: 0;
}
.ce-search-header-form-filter {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.ce-search-header-filters {
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .ce-search-header-filters {
    justify-content: flex-start;
  }
}

.ce-search-results-count {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(60, 72, 88, 0.2);
}
.ce-search-results-count p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-search-results-count p {
    font-size: 18px;
    line-height: 26px;
  }
}
.ce-search-results-count p strong {
  color: rgb(60, 72, 88);
  font-weight: 700;
}

.ce-search-results-list {
  position: relative;
  -webkit-animation: fadeInUp 0.6s ease forwards;
  -moz-animation: fadeInUp 0.6s ease forwards;
  animation: fadeInUp 0.6s ease forwards;
}

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

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

.ce-search-result-item-compact {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  padding: 20px;
  margin-bottom: 12px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 201, 167, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item-compact {
    flex-wrap: wrap;
    padding: 15px;
    gap: 12px;
  }
}
.ce-search-result-item-compact:hover {
  border-color: rgb(0, 201, 167);
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.15);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item-compact:active {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0, 201, 167, 0.12);
}
.ce-search-result-item-compact-main {
  flex: 1;
  min-width: 0;
}
.ce-search-result-item-compact-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: rgb(0, 201, 167);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1300px) {
  .ce-search-result-item-compact-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.ce-search-result-item-compact-title:hover {
  color: rgb(60, 72, 88);
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item-compact-meta {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ce-search-result-item-compact-meta .ce-meta-item {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 400;
}
.ce-search-result-item-compact-meta .ce-meta-separator {
  color: rgba(60, 72, 88, 0.5);
  font-weight: 300;
}
.ce-search-result-item-compact-address {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
  font-weight: 400;
}
@media screen and (min-width: 1300px) {
  .ce-search-result-item-compact-address {
    font-size: 15px;
    line-height: 22px;
  }
}
.ce-search-result-item-compact-cta {
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item-compact-cta {
    width: 100%;
  }
  .ce-search-result-item-compact-cta .ce-btn {
    width: 100%;
  }
}

/* NEW: Company Icon */
.ce-search-result-item-compact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .ce-search-result-item-compact-icon {
    display: none;
  }
}

/* NEW: Meta Badges */
.ce-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  -webkit-transition: all 300ms ease 0ms;
  -moz-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}
.ce-meta-badge-siret {
  background-color: rgba(0, 201, 167, 0.08);
  color: rgb(0, 150, 125);
  border: 1px solid rgba(0, 201, 167, 0.15);
}
.ce-meta-badge-type {
  background-color: rgba(60, 72, 88, 0.06);
  color: rgba(60, 72, 88, 0.8);
  border: 1px solid rgba(60, 72, 88, 0.12);
}

/* NEW: Address Icon */
.ce-address-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: rgba(60, 72, 88, 0.5);
}

/* NEW: Button with Arrow */
.ce-btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 16px !important;
}
.ce-btn-with-arrow span {
  display: inline-block;
}
.ce-btn-arrow {
  flex-shrink: 0;
  -webkit-transition: transform 300ms ease 0ms;
  -moz-transition: transform 300ms ease 0ms;
  -o-transition: transform 300ms ease 0ms;
  transition: transform 300ms ease 0ms;
}
.ce-btn-with-arrow:hover .ce-btn-arrow {
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(4px);
  -webkit-transition: transform 300ms ease 0ms;
  -moz-transition: transform 300ms ease 0ms;
  -o-transition: transform 300ms ease 0ms;
  transition: transform 300ms ease 0ms;
}

/* Enhanced hover effect for search result item */
.ce-search-result-item-compact:hover .ce-search-result-item-compact-icon svg circle {
  fill: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item-compact:hover .ce-search-result-item-compact-icon svg path {
  stroke: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

/* Improved spacing for search results */
.ce-search-results-count {
  margin-bottom: 25px;
  padding: 15px 20px;
  background-color: rgba(0, 201, 167, 0.04);
  border-left: 3px solid rgb(0, 201, 167);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.ce-search-results-count-main {
  display: flex;
  align-items: center;
  flex: 1;
}
.ce-search-results-count p {
  margin: 0;
  font-size: 15px;
  color: rgb(60, 72, 88);
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .ce-search-results-count p {
    font-size: 16px;
  }
}
.ce-search-results-hint {
  font-size: 13px;
  color: rgb(0, 150, 125);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .ce-search-results-hint {
    display: none;
  }
}

/* Empty State */
.ce-search-empty-state {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.ce-search-empty-state-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.ce-search-empty-state h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 12px;
}
@media screen and (min-width: 767px) {
  .ce-search-empty-state h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
.ce-search-empty-state > p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.8);
  margin-bottom: 30px;
}
.ce-search-empty-state-tips {
  background-color: rgba(0, 201, 167, 0.04);
  border: 1px solid rgba(0, 201, 167, 0.15);
  border-radius: 8px;
  padding: 20px 30px;
  text-align: left;
  margin-top: 30px;
}
.ce-search-empty-state-tips p {
  font-size: 15px;
  font-weight: 600;
  color: rgb(0, 150, 125);
  margin-bottom: 12px;
}
.ce-search-empty-state-tips ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.ce-search-empty-state-tips li {
  font-size: 14px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.8);
  position: relative;
  padding-left: 0px;
  margin-bottom: 8px;
}
.ce-search-empty-state-tips li:before {
  content: "✓";
  color: rgb(0, 201, 167);
  font-weight: 700;
  margin-right: 10px;
}

.ce-search {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-search {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
  }
}
.ce-search-sidebar {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(0, 201, 167, 0.2);
  padding: 15px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 992px) {
  .ce-search-sidebar {
    position: fixed;
    left: -300px;
    top: 80px;
    bottom: 0;
    z-index: 20;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 300px;
  }
}
@media screen and (max-width: 420px) {
  .ce-search-sidebar {
    width: 260px;
  }
}
@media screen and (max-width: 600px) {
  .ce-search-sidebar {
    top: 60px;
  }
}
@media screen and (min-width: 767px) {
  .ce-search-sidebar {
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-search-sidebar {
    width: 30%;
  }
}
@media screen and (min-width: 1300px) {
  .ce-search-sidebar {
    width: 26%;
  }
}
.ce-search-sidebar-filter-close {
  position: relative;
  display: none;
  text-align: right;
  margin-bottom: 5px;
}
.ce-search-sidebar-filter-close > a {
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  color: rgb(60, 72, 88);
  font-weight: 400;
  cursor: pointer;
  opacity: 0.7;
  position: relative;
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-sidebar-filter-close > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-filter-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
}
.ce-search-sidebar-filter-close > a:hover, .ce-search-sidebar-filter-close > a:focus {
  opacity: 1;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-sidebar-item {
  position: relative;
  margin-bottom: 20px;
}
.ce-search-sidebar-item:last-child {
  margin-bottom: 0;
}
.ce-search-sidebar-item h1,
.ce-search-sidebar-item h2,
.ce-search-sidebar-item h3,
.ce-search-sidebar-item h4,
.ce-search-sidebar-item h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  .ce-search-sidebar-item h1,
  .ce-search-sidebar-item h2,
  .ce-search-sidebar-item h3,
  .ce-search-sidebar-item h4,
  .ce-search-sidebar-item h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
.ce-search-sidebar-item .ce-checkbox {
  margin-bottom: 5px;
}
@media screen and (max-width: 992px) {
  .ce-search-sidebar-open {
    left: 0px;
    opacity: 1;
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -o-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
  }
  .ce-search-sidebar-open .ce-search-sidebar-filter-close {
    display: block;
  }
}
.ce-search-results {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-search-results {
    width: 70%;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-search-results {
    width: 74%;
    padding-left: 80px;
  }
}
.ce-search-results .ce-search-result-item {
  margin-bottom: 10px;
}
.ce-search-results .ce-search-result-item:last-child {
  margin-bottom: 0px;
}
.ce-search-results-header {
  position: relative;
  margin-bottom: 5px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: space-between;
}
.ce-search-results-header-filter {
  position: relative;
  display: block;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .ce-search-results-header-filter {
    display: none;
  }
}
.ce-search-results-header-filter > a {
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  color: rgb(60, 72, 88);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-search-results-header-filter > a {
    font-size: 18px;
  }
}
.ce-search-results-header-filter > a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-filter-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
  opacity: 1;
}
.ce-search-results-header-filter > a:hover, .ce-search-results-header-filter > a:focus {
  color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-results-header-text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 600px) {
  .ce-search-results-header-text {
    font-size: 18px;
  }
}

.ce-search-result-item {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.1);
  padding: 15px 20px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }
}
.ce-search-result-item-logo {
  position: relative;
  flex: 0 0 90px;
  flex-shrink: 0;
  min-width: 90px;
  min-height: 90px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  -moz-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item-logo {
    min-width: 70px;
    min-height: 70px;
    flex: 0 0 70px;
  }
}
.ce-search-result-item-logo img {
  display: block;
  width: 90%;
  height: 90%;
  margin: auto;
  object-fit: contain;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item-info {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item-info {
    flex: 1 1 calc(100% - 70px - 15px);
  }
}
.ce-search-result-item-info p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .ce-search-result-item-info p {
    font-size: 16px;
  }
}
.ce-search-result-item-info p span {
  color: rgb(60, 72, 88);
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 420px) {
  .ce-search-result-item-info p span {
    display: inline-block;
  }
}
.ce-search-result-item-info-title {
  text-transform: uppercase;
  color: rgb(0, 201, 167);
  text-decoration: underline;
  font-size: 16px;
  line-height: 22px;
  display: block;
  font-weight: 700;
  padding-bottom: 5px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .ce-search-result-item-info-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.ce-search-result-item-info-title:hover, .ce-search-result-item-info-title:focus {
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item-info-location {
  color: rgb(60, 72, 88);
  padding-left: 14px;
}
@media screen and (min-width: 600px) {
  .ce-search-result-item-info-location {
    padding-left: 18px;
  }
}
.ce-search-result-item-info-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
  opacity: 1;
}
.ce-search-result-item-info-other {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 767px) {
  .ce-search-result-item-info-other {
    gap: 20px;
  }
}
.ce-search-result-item-info-other p {
  margin-bottom: 0;
}
.ce-search-result-item-cta {
  flex: 0 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .ce-search-result-item-cta {
    flex: 0 0 100%;
    width: 100%;
  }
  .ce-search-result-item-cta .ce-btn {
    width: 100%;
  }
}
.ce-search-result-item:hover, .ce-search-result-item:focus {
  background-color: rgba(0, 201, 167, 0.02);
  border-color: rgba(0, 201, 167, 0.3);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-search-result-item:hover .ce-btn, .ce-search-result-item:focus .ce-btn {
  background-color: rgb(60, 72, 88);
  color: rgb(255, 255, 255);
  border-color: rgb(60, 72, 88);
}
.ce-search-result-item:hover .ce-search-result-item-logo, .ce-search-result-item:focus .ce-search-result-item-logo {
  -webkit-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.2);
  -moz-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.2);
  box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.2);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 72, 88, 0.7);
  z-index: 1;
  display: none;
}

.ce-payment-page {
  position: relative;
  padding: 40px 0px 60px 0px;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 1300px) {
  .ce-payment-page {
    padding: 60px 0px 80px 0px;
  }
}
.ce-payment-page-header {
  text-align: center;
  margin-bottom: 40px;
}
.ce-payment-page-header h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 10px;
}
@media screen and (min-width: 1300px) {
  .ce-payment-page-header h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
.ce-payment-page-header p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-payment-page-header p {
    font-size: 18px;
    line-height: 26px;
  }
}

.ce-payment-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.ce-payment-form-main {
  position: relative;
}

.ce-payment-document-info {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(0, 201, 167, 0.02) 100%);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 8px;
}
.ce-payment-document-info .ce-payment-document-label {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 8px;
  font-weight: 600;
}
.ce-payment-document-info .ce-payment-document-label img {
  display: inline-block;
}
.ce-payment-document-info .ce-payment-document-details {
  font-size: 15px;
  line-height: 22px;
  color: rgb(60, 72, 88);
}
.ce-payment-document-info .ce-payment-document-details strong {
  color: #009279;
  font-weight: 700;
}

.ce-payment {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-payment {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
  }
}
.ce-payment-left {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .ce-payment-left {
    width: 58%;
    margin-bottom: 0;
  }
}
.ce-payment-right {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-payment-right {
    width: 42%;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-payment-right {
    padding-left: 30px;
  }
}
.ce-payment-title {
  padding-left: 28px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (min-width: 767px) {
  .ce-payment-title {
    padding-left: 34px;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.ce-payment-title img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: auto;
  display: block;
}
@media screen and (min-width: 767px) {
  .ce-payment-title img {
    width: 24px;
  }
}
.ce-payment-box {
  position: relative;
  border: 1px solid rgb(0, 201, 167);
  background-color: rgb(255, 255, 255);
  display: block;
  overflow: hidden;
}
.ce-payment-box-head {
  position: relative;
  background-color: rgba(0, 201, 167, 0.05);
  padding: 10px 15px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .ce-payment-box-head {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-payment-box-head {
    padding: 10px 25px;
  }
}
.ce-payment-box-head h1,
.ce-payment-box-head h2,
.ce-payment-box-head h3,
.ce-payment-box-head h4,
.ce-payment-box-head h5 {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-head h1,
  .ce-payment-box-head h2,
  .ce-payment-box-head h3,
  .ce-payment-box-head h4,
  .ce-payment-box-head h5 {
    line-height: 30px;
  }
}
.ce-payment-box-head h1:nth-child(1),
.ce-payment-box-head h2:nth-child(1),
.ce-payment-box-head h3:nth-child(1),
.ce-payment-box-head h4:nth-child(1),
.ce-payment-box-head h5:nth-child(1) {
  font-weight: 400;
  font-size: 18px;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-head h1:nth-child(1),
  .ce-payment-box-head h2:nth-child(1),
  .ce-payment-box-head h3:nth-child(1),
  .ce-payment-box-head h4:nth-child(1),
  .ce-payment-box-head h5:nth-child(1) {
    font-size: 22px;
  }
}
.ce-payment-box-head h1:nth-child(2),
.ce-payment-box-head h2:nth-child(2),
.ce-payment-box-head h3:nth-child(2),
.ce-payment-box-head h4:nth-child(2),
.ce-payment-box-head h5:nth-child(2) {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-head h1:nth-child(2),
  .ce-payment-box-head h2:nth-child(2),
  .ce-payment-box-head h3:nth-child(2),
  .ce-payment-box-head h4:nth-child(2),
  .ce-payment-box-head h5:nth-child(2) {
    font-size: 30px;
  }
}
.ce-payment-box-body {
  position: relative;
  padding: 10px 15px;
}
@media screen and (min-width: 992px) {
  .ce-payment-box-body {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-payment-box-body {
    padding: 15px 25px;
  }
}
.ce-payment-box-body-document {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
}
.ce-payment-box-body-document-image {
  position: relative;
  width: 40%;
  display: block;
}
.ce-payment-box-body-document-image img {
  width: 100%;
  height: auto;
  display: block;
}
.ce-payment-box-body-document-info {
  position: relative;
  width: 60%;
  padding-left: 10px;
  display: block;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-body-document-info {
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-payment-box-body-document-info {
    padding-left: 25px;
  }
}
.ce-payment-box-body-document-info-location {
  padding-left: 16px;
}
.ce-payment-box-body-document-info-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
}
.ce-payment-box-body-document-info p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}
.ce-payment-box-body-document-info p span {
  display: block;
  color: rgb(60, 72, 88);
  font-weight: 700;
}
.ce-payment-box-body-document-info p:last-child {
  margin-bottom: 0;
}
.ce-payment-box-body-features-info {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-body-features-info {
    padding: 0px 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-payment-box-body-features-info {
    padding: 0px 40px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-payment-box-body-features-info {
    padding: 0px 60px;
  }
}
@media screen and (min-width: 767px) {
  .ce-payment-box-body-features-info p {
    font-size: 18px;
    line-height: 24px;
  }
}
.ce-payment-box-body-features {
  position: relative;
  padding-left: 40%;
}
@media screen and (min-width: 600px) {
  .ce-payment-box-body-features {
    padding-left: 50%;
  }
}
.ce-payment-box-body-features-image {
  position: absolute;
  left: -10%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40%;
}
@media screen and (min-width: 600px) {
  .ce-payment-box-body-features-image {
    width: 60%;
    left: -20%;
  }
}
.ce-payment-box-body-features-image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  margin: auto;
  object-fit: contain;
  display: block;
  height: 100%;
}
.ce-payment-box-body-features p {
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .ce-payment-box-body-features p {
    font-size: 18px;
    line-height: 24px;
  }
}
.ce-payment-box-orange {
  border-color: rgba(249, 168, 54, 0.4);
}
.ce-payment-box-orange .ce-payment-box-body {
  background-color: rgba(249, 168, 54, 0.05);
}

.ce-details {
  position: relative;
  padding: 30px 0px;
}
@media screen and (min-width: 1300px) {
  .ce-details {
    padding: 40px 0px 60px 0px;
  }
}
.ce-details-header {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: start;
  gap: 10px;
  justify-content: space-between;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
  padding: 20px 0px;
}
@media screen and (min-width: 767px) {
  .ce-details-header {
    gap: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-details-header {
    gap: 30px;
  }
}
.ce-details-header-logo {
  position: relative;
  flex: 0 0 120px;
  flex-shrink: 0;
  min-width: 120px;
  min-height: 120px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  -moz-box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  box-shadow: 0px 0px 12px rgba(60, 72, 88, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .ce-details-header-logo {
    min-width: 70px;
    min-height: 70px;
    flex: 0 0 70px;
  }
}
.ce-details-header-logo img {
  display: block;
  width: 90%;
  height: 90%;
  margin: auto;
  object-fit: contain;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-details-header-info {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .ce-details-header-info {
    flex: 1 1 calc(100% - 70px - 15px);
  }
}
.ce-details-header-info-box {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-details-header-info-box {
    padding-right: 250px;
  }
}
.ce-details-header-info h1,
.ce-details-header-info h2,
.ce-details-header-info h3,
.ce-details-header-info h4,
.ce-details-header-info h5 {
  text-transform: uppercase;
  color: rgb(60, 72, 88);
  font-weight: 900;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 26px;
}
@media screen and (min-width: 767px) {
  .ce-details-header-info h1,
  .ce-details-header-info h2,
  .ce-details-header-info h3,
  .ce-details-header-info h4,
  .ce-details-header-info h5 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (min-width: 992px) {
  .ce-details-header-info h1,
  .ce-details-header-info h2,
  .ce-details-header-info h3,
  .ce-details-header-info h4,
  .ce-details-header-info h5 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-details-header-info h1,
  .ce-details-header-info h2,
  .ce-details-header-info h3,
  .ce-details-header-info h4,
  .ce-details-header-info h5 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-details-header-info-status-location {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .ce-details-header-info-status-location {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-details-header-info-status-location {
    gap: 20px;
  }
}
.ce-details-header-info-other {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .ce-details-header-info-other {
    gap: 20px;
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-details-header-info-other {
    gap: 40px;
  }
}
.ce-details-header-info p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}
@media screen and (min-width: 600px) {
  .ce-details-header-info p {
    font-size: 18px;
  }
}
.ce-details-header-info p span {
  color: rgb(60, 72, 88);
  font-weight: 700;
  display: inline-block;
  padding-left: 4px;
}
.ce-details-header-info-location {
  color: rgb(60, 72, 88);
  padding-left: 14px;
}
@media screen and (min-width: 600px) {
  .ce-details-header-info-location {
    padding-left: 18px;
  }
}
.ce-details-header-info-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
  opacity: 1;
}
.ce-details-header-info ul {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1300px) {
  .ce-details-header-info ul {
    gap: 25px;
  }
}
.ce-details-header-info-cta {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .ce-details-header-info-cta {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.ce-details-general {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-details-general {
    margin-bottom: 20px;
  }
}
.ce-details-general-cols {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 767px) {
  .ce-details-general-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .ce-details-general-cols {
    gap: 20px;
  }
}
.ce-details-general-cols-item {
  position: relative;
  padding: 5px 10px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.1);
}
@media screen and (min-width: 992px) {
  .ce-details-general-cols-item {
    padding: 15px 20px;
  }
}
.ce-details-general-cols-item h1,
.ce-details-general-cols-item h2,
.ce-details-general-cols-item h3,
.ce-details-general-cols-item h4,
.ce-details-general-cols-item h5 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .ce-details-general-cols-item h1,
  .ce-details-general-cols-item h2,
  .ce-details-general-cols-item h3,
  .ce-details-general-cols-item h4,
  .ce-details-general-cols-item h5 {
    font-size: 20px;
    line-height: 24px;
  }
}
.ce-details-general-cols-item p {
  font-size: 14px;
  line-height: 20px;
}
.ce-details-general-cols-item p:last-child {
  margin-bottom: 0;
}
.ce-details-general-cols-item p span {
  display: block;
  color: rgb(60, 72, 88);
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .ce-details-general-cols-item p span {
    font-size: 16px;
  }
}
.ce-details-body {
  position: relative;
  display: block;
  padding: 5px 10px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.1);
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-details-body {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}
.ce-details-body-title {
  position: relative;
  margin-bottom: 10px;
}
.ce-details-body-title h1,
.ce-details-body-title h2,
.ce-details-body-title h3,
.ce-details-body-title h4,
.ce-details-body-title h5 {
  font-weight: 700;
  margin-bottom: 0px;
}
@media screen and (min-width: 767px) {
  .ce-details-body-title h1,
  .ce-details-body-title h2,
  .ce-details-body-title h3,
  .ce-details-body-title h4,
  .ce-details-body-title h5 {
    font-size: 22px;
    line-height: 26px;
  }
}
.ce-details-body-title p {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .ce-details-body-title-link {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  .ce-details-body-title-link .ce-details-body-title-l {
    position: relative;
  }
  .ce-details-body-title-link .ce-details-body-title-r {
    position: relative;
  }
}
.ce-details-body-content {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-details-body-content {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 20px;
  }
}
.ce-details-body-content-l {
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .ce-details-body-content-l {
    width: 50%;
    margin-bottom: 0;
  }
}
.ce-details-body-content-r {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-details-body-content-r {
    width: 50%;
  }
}
.ce-details-body-table {
  position: relative;
  height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
}
.ce-details-body-table table {
  width: 100%;
  max-width: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table {
    display: table;
  }
}
.ce-details-body-table table thead {
  display: none;
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table thead {
    display: table-header-group;
  }
}
.ce-details-body-table table thead tr th {
  border-bottom: 1px solid rgba(60, 72, 88, 0.2);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(60, 72, 88);
  text-align: left;
  padding: 6px;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .ce-details-body-table table thead tr th {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }
}
.ce-details-body-table table thead tr th:last-child {
  text-align: right;
}
.ce-details-body-table table tbody {
  display: block;
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table tbody {
    display: table-row-group;
  }
}
.ce-details-body-table table tbody tr {
  display: block;
  border: 1px solid rgba(60, 72, 88, 0.2);
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table tbody tr {
    display: table-row;
    border: 0;
    margin-bottom: 0px;
  }
}
.ce-details-body-table table tbody tr td {
  border-bottom: 1px solid rgba(60, 72, 88, 0.1);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.7);
  padding: 6px;
  vertical-align: middle;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-details-body-table table tbody tr td {
    font-size: 18px;
    line-height: 24px;
    padding: 14px 10px;
  }
}
.ce-details-body-table table tbody tr td-info {
  position: relative;
}
.ce-details-body-table table tbody tr td h1,
.ce-details-body-table table tbody tr td h2,
.ce-details-body-table table tbody tr td h3,
.ce-details-body-table table tbody tr td h4,
.ce-details-body-table table tbody tr td h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .ce-details-body-table table tbody tr td h1,
  .ce-details-body-table table tbody tr td h2,
  .ce-details-body-table table tbody tr td h3,
  .ce-details-body-table table tbody tr td h4,
  .ce-details-body-table table tbody tr td h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
.ce-details-body-table table tbody tr td p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}
@media screen and (max-width: 992px) {
  .ce-details-body-table table tbody tr td {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ce-details-body-table table tbody tr td::before {
    content: attr(data-value);
    flex: 0 0 35%;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(60, 72, 88, 0.7);
  }
}
@media screen and (max-width: 992px) and (min-width: 600px) {
  .ce-details-body-table table tbody tr td::before {
    font-size: 14px;
    line-height: 14px;
  }
}
@media screen and (max-width: 992px) {
  .ce-details-body-table table tbody tr td:last-child {
    border-bottom: 0;
  }
}
.ce-details-body-table table tbody tr td:first-child {
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table tbody tr td:last-child {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table tbody tr:last-child td {
    border-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .ce-details-body-table table tbody tr:hover td, .ce-details-body-table table tbody tr:focus td {
    background-color: rgba(60, 72, 88, 0.02);
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -o-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
  }
}
.ce-details-body-table-sm {
  position: relative;
  height: 220px;
  overflow-x: auto;
  overflow-y: auto;
  white-space: nowrap;
}
@media screen and (min-width: 767px) {
  .ce-details-body-table-sm {
    height: 280px;
  }
}
.ce-details-body-table-sm table {
  width: 100%;
  max-width: 100%;
  min-width: max-content;
  border-collapse: collapse;
}
.ce-details-body-table-sm table thead tr th {
  border-bottom: 1px solid rgba(60, 72, 88, 0.2);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(60, 72, 88);
  text-align: left;
  padding: 4px 0px;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .ce-details-body-table-sm table thead tr th {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0px;
  }
}
.ce-details-body-table-sm table tbody tr {
  cursor: pointer;
}
.ce-details-body-table-sm table tbody tr td {
  border-bottom: 1px solid rgba(60, 72, 88, 0.1);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: rgba(60, 72, 88, 0.7);
  padding: 6px 12px 6px 0px;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 767px) {
  .ce-details-body-table-sm table tbody tr td {
    padding: 10px 16px 10px 0px;
    font-size: 14px;
    line-height: 18px;
  }
}
.ce-details-body-table-sm table tbody tr td:first-child {
  color: rgb(60, 72, 88);
  padding-left: 4px;
  border-left: 3px solid transparent;
}
@media screen and (min-width: 767px) {
  .ce-details-body-table-sm table tbody tr td:first-child {
    padding-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .ce-details-body-table-sm table tbody tr:hover td, .ce-details-body-table-sm table tbody tr:focus td {
    background-color: rgba(60, 72, 88, 0.02);
    -webkit-transition: all 400ms ease 0ms;
    -moz-transition: all 400ms ease 0ms;
    -o-transition: all 400ms ease 0ms;
    transition: all 400ms ease 0ms;
  }
}
.ce-details-body-table-sm table tbody .ce-details-body-table-sm-active td {
  background-color: rgba(0, 201, 167, 0.1);
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-details-body-table-sm table tbody .ce-details-body-table-sm-active td:first-child {
  border-left-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-details-body-map {
  position: relative;
}
@media screen and (min-width: 992px) {
  .ce-details-body-map {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    gap: 30px;
    align-items: start;
  }
}
.ce-details-body-map-l {
  position: relative;
  flex-basis: 100%;
  height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 5px;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-l {
    height: 320px;
  }
}
@media screen and (min-width: 992px) {
  .ce-details-body-map-l {
    margin-bottom: 0px;
  }
}
.ce-details-body-map-r {
  position: relative;
  flex-basis: 100%;
}
.ce-details-body-map-item {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.05);
  border-left-width: 4px;
  padding: 5px 10px;
  cursor: pointer;
  margin-bottom: 5px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-details-body-map-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
    padding: 10px;
  }
}
.ce-details-body-map-item h1,
.ce-details-body-map-item h2,
.ce-details-body-map-item h3,
.ce-details-body-map-item h4,
.ce-details-body-map-item h5 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item h1,
  .ce-details-body-map-item h2,
  .ce-details-body-map-item h3,
  .ce-details-body-map-item h4,
  .ce-details-body-map-item h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
  }
}
.ce-details-body-map-item p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0px;
}
.ce-details-body-map-item p span {
  color: rgb(60, 72, 88);
  padding-left: 4px;
}
.ce-details-body-map-item-info {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.ce-details-body-map-item-location {
  color: rgb(60, 72, 88);
  padding-left: 12px;
  margin-bottom: 5px !important;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item-location {
    padding-left: 16px;
  }
}
.ce-details-body-map-item-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  display: block;
  opacity: 1;
}
.ce-details-body-map-item-l {
  position: relative;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item-l {
    width: 65%;
    padding-right: 10px;
    border-right: 2px solid rgba(0, 201, 167, 0.1);
    margin-bottom: 0;
  }
}
.ce-details-body-map-item-r {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item-r {
    width: 35%;
    padding-left: 10px;
  }
}
.ce-details-body-map-item-r a {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .ce-details-body-map-item-r a {
    margin-bottom: 10px;
  }
}
.ce-details-body-map-item-r a:last-child {
  margin-bottom: 0;
}
.ce-details-body-map-item:hover, .ce-details-body-map-item:focus {
  background-color: rgba(60, 72, 88, 0.02);
  border-color: rgba(60, 72, 88, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-details-body-map-item-active {
  background-color: rgba(0, 201, 167, 0.02) !important;
  border-color: rgba(0, 201, 167, 0.4) !important;
  border-left-color: rgb(0, 201, 167) !important;
}

.ce-details-nav {
  border-top: 1px solid rgba(60, 72, 88, 0.1);
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(60, 72, 88, 0.1);
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .ce-details-nav {
    margin-bottom: 20px;
  }
}
.ce-details-nav ul {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ce-details-nav ul > li {
  position: relative;
  display: block;
}
.ce-details-nav ul > li > a {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 400;
  padding: 8px 12px;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 992px) {
  .ce-details-nav ul > li > a {
    padding: 10px 14px;
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-details-nav ul > li > a {
    padding: 10px 20px;
    font-size: 18px;
  }
}
.ce-details-nav ul > li.current > a {
  background-color: rgba(0, 201, 167, 0.1);
  color: rgb(60, 72, 88);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-badge {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  padding: 2px 6px 2px 18px;
  border: 1px solid transparent;
  background-color: transparent;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
@media screen and (min-width: 767px) {
  .ce-badge {
    font-size: 16px;
    line-height: 16px;
    padding: 4px 10px 4px 24px;
  }
}
.ce-badge:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/icons/icn-check-green-dark-dark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  width: 8px;
  height: 8px;
  display: block;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .ce-badge:after {
    left: 10px;
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
  }
}
.ce-badge.ce-badge-success {
  background-color: rgba(0, 201, 167, 0.1);
  border-color: rgba(0, 201, 167, 0.2);
  color: #009279;
}

.ce-companies {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-companies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-companies {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.ce-companies .ce-company-item {
  margin-bottom: 20px;
}
.ce-companies .ce-company-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .ce-companies .ce-company-item {
    margin-bottom: 0px;
  }
}

.ce-company-item {
  position: relative;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-company-item h1,
.ce-company-item h2,
.ce-company-item h3,
.ce-company-item h4,
.ce-company-item h5 {
  margin-bottom: 5px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-company-item h1 > a,
.ce-company-item h2 > a,
.ce-company-item h3 > a,
.ce-company-item h4 > a,
.ce-company-item h5 > a {
  color: rgb(0, 201, 167);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  display: block;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 600px) {
  .ce-company-item h1 > a,
  .ce-company-item h2 > a,
  .ce-company-item h3 > a,
  .ce-company-item h4 > a,
  .ce-company-item h5 > a {
    font-size: 22px;
    line-height: 30px;
  }
}
.ce-company-item-info {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 24px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-company-item-info span {
  color: rgb(60, 72, 88);
  font-weight: 700;
  padding-left: 6px;
}
.ce-company-item-location {
  color: rgb(60, 72, 88);
  padding-left: 18px;
  font-size: 18px;
  line-height: 24px;
}
@media screen and (min-width: 600px) {
  .ce-company-item-location {
    padding-left: 22px;
  }
}
.ce-company-item-location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background-image: url(../../assets/images/icons/icn-location-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  display: block;
  opacity: 1;
}
.ce-company-item:hover, .ce-company-item:focus {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-company-item:hover h1,
.ce-company-item:hover h2,
.ce-company-item:hover h3,
.ce-company-item:hover h4,
.ce-company-item:hover h5, .ce-company-item:focus h1,
.ce-company-item:focus h2,
.ce-company-item:focus h3,
.ce-company-item:focus h4,
.ce-company-item:focus h5 {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-company-item:hover h1 > a,
.ce-company-item:hover h2 > a,
.ce-company-item:hover h3 > a,
.ce-company-item:hover h4 > a,
.ce-company-item:hover h5 > a, .ce-company-item:focus h1 > a,
.ce-company-item:focus h2 > a,
.ce-company-item:focus h3 > a,
.ce-company-item:focus h4 > a,
.ce-company-item:focus h5 > a {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  background-color: rgba(60, 72, 88, 0.8);
}
.ce-popup-wrapper {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 15px;
}
@media screen and (min-width: 767px) {
  .ce-popup-wrapper {
    padding: 0px;
  }
}
.ce-popup-wrapper-box {
  position: relative;
  background-color: rgb(255, 255, 255);
  padding: 15px;
  margin: auto;
  display: block;
}
@media screen and (min-width: 767px) {
  .ce-popup-wrapper-box {
    width: 640px;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 992px) {
  .ce-popup-wrapper-box {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-popup-wrapper-box {
    padding: 30px 40px;
  }
}
.ce-popup-wrapper-box-logo {
  position: relative;
  width: 160px;
  height: auto;
  display: block;
  z-index: 1;
  margin: auto auto 5px auto;
}
@media screen and (min-width: 600px) {
  .ce-popup-wrapper-box-logo {
    width: 238px;
    margin: auto auto 10px auto;
  }
}
.ce-popup-wrapper-box-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.ce-popup-wrapper-box-info {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-popup-wrapper-box-info {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    align-items: center;
  }
}
.ce-popup-wrapper-box-info-l {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-popup-wrapper-box-info-l {
    width: 30%;
  }
}
.ce-popup-wrapper-box-info-l img {
  width: 40%;
  height: auto;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .ce-popup-wrapper-box-info-l img {
    width: 100%;
  }
}
.ce-popup-wrapper-box-info-r {
  position: relative;
}
@media screen and (min-width: 600px) {
  .ce-popup-wrapper-box-info-r {
    width: 70%;
    padding-left: 20px;
  }
}

.ce-testimonials {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 1300px) {
  .ce-testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.ce-testimonial-item {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 8px;
  padding: 30px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-testimonial-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-testimonial-quote {
  font-size: 64px;
  line-height: 1;
  color: rgb(0, 201, 167);
  font-weight: 700;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.ce-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.ce-testimonial-stars svg {
  width: 20px;
  height: 20px;
}

.ce-testimonial-text {
  font-size: 16px;
  line-height: 26px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 25px;
  font-style: italic;
}
@media screen and (min-width: 1300px) {
  .ce-testimonial-text {
    font-size: 17px;
    line-height: 28px;
  }
}

.ce-testimonial-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(60, 72, 88, 0.2);
}

.ce-testimonial-author-info h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 4px;
}
.ce-testimonial-author-info p {
  font-size: 14px;
  line-height: 18px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}

.ce-use-case-label {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1300px) {
  .ce-use-case-label {
    font-size: 15px;
  }
}

.ce-use-case-badges {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1300px) {
  .ce-use-case-badges {
    gap: 15px;
  }
}

.ce-use-case-badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 25px;
  font-size: 13px;
  line-height: 20px;
  color: rgb(60, 72, 88);
  font-weight: 600;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (min-width: 1300px) {
  .ce-use-case-badge {
    padding: 10px 22px;
    font-size: 14px;
  }
}
.ce-use-case-badge:hover {
  border-color: rgb(0, 201, 167);
  background-color: rgba(0, 201, 167, 0.05);
  transform: translateY(-2px);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-use-cases {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .ce-use-cases {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-use-cases {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.ce-use-case-item {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 8px;
  padding: 30px 25px;
  text-align: center;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-use-case-item:hover {
  border-color: rgb(0, 201, 167);
  box-shadow: 0 5px 20px rgba(0, 201, 167, 0.15);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-use-case-item:hover .ce-use-case-icon {
  transform: scale(1.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-use-case-item h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 12px;
}
@media screen and (min-width: 1300px) {
  .ce-use-case-item h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
.ce-use-case-item p {
  font-size: 15px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}

.ce-use-case-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-trust-section {
  position: relative;
}

.ce-trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media screen and (min-width: 992px) {
  .ce-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
}

.ce-trust-badge {
  position: relative;
  text-align: center;
  padding: 25px 20px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(60, 72, 88, 0.2);
  border-radius: 8px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-trust-badge:hover {
  border-color: rgb(0, 201, 167);
  background-color: rgba(0, 201, 167, 0.03);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-trust-badge h4 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 8px;
}
@media screen and (min-width: 1300px) {
  .ce-trust-badge h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.ce-trust-badge p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}

.ce-trust-badge-icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
}

.ce-auth {
  position: relative;
  padding: 40px 0px 60px 0px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.02) 0%, rgb(255, 255, 255) 50%, rgba(255, 138, 0, 0.02) 100%);
}
@media screen and (min-width: 1300px) {
  .ce-auth {
    padding: 60px 0px 80px 0px;
  }
}
.ce-auth-container {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
}
@media screen and (max-width: 992px) {
  .ce-auth-container {
    flex-direction: column;
  }
}
.ce-auth-container-single {
  max-width: 600px;
  margin: 0 auto;
}
.ce-auth-form {
  position: relative;
  flex: 1;
  padding: 40px 30px;
}
@media screen and (min-width: 767px) {
  .ce-auth-form {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-auth-form {
    padding: 60px 50px;
    flex: 0 0 55%;
  }
}
.ce-auth-form-centered {
  padding: 50px 40px;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  .ce-auth-form-centered {
    padding: 60px 60px;
  }
}
.ce-auth-form-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}
.ce-auth-form-header {
  margin-bottom: 35px;
}
.ce-auth-form-header h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 8px;
}
@media screen and (min-width: 1300px) {
  .ce-auth-form-header h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-auth-form-header p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
.ce-auth-instruction {
  font-size: 15px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 25px;
  padding: 15px;
  background-color: rgba(0, 201, 167, 0.05);
  border-left: 3px solid rgb(0, 201, 167);
  border-radius: 4px;
}
.ce-auth-options {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}
.ce-auth-link {
  color: #009279;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth-link:hover {
  color: rgb(0, 201, 167);
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth-link-bold {
  color: rgb(0, 201, 167);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth-link-bold:hover {
  color: rgb(60, 72, 88);
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth-footer {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(60, 72, 88, 0.2);
  text-align: center;
}
.ce-auth-footer p {
  font-size: 15px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
.ce-auth .ce-checkbox-text a {
  color: rgb(0, 201, 167);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth .ce-checkbox-text a:hover {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth .ce-form-group a,
.ce-auth .ce-auth-instruction a {
  color: rgb(0, 201, 167);
  font-weight: 600;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth .ce-form-group a:hover,
.ce-auth .ce-auth-instruction a:hover {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-auth-visual {
  position: relative;
  flex: 0 0 45%;
  background: linear-gradient(135deg, rgb(0, 201, 167) 0%, #00a08f 100%);
  padding: 50px 40px;
  color: rgb(255, 255, 255);
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .ce-auth-visual {
    padding: 40px 30px;
  }
}
.ce-auth-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.ce-auth-visual-icon {
  font-size: 72px;
  margin-bottom: 25px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .ce-auth-visual-icon {
    font-size: 56px;
    margin-bottom: 20px;
  }
}
.ce-auth-visual h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  .ce-auth-visual h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-auth-visual p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1300px) {
  .ce-auth-visual p {
    font-size: 17px;
    line-height: 28px;
  }
}
.ce-auth-visual-features {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.ce-auth-visual-feature {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 22px;
  color: rgb(255, 255, 255);
}
.ce-auth-visual-feature .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.ce-auth-visual-feature .icon svg {
  position: relative;
  z-index: 1;
}
.ce-auth-visual-feature span:not(.icon) {
  flex: 1;
}
.ce-auth-visual-trust {
  text-align: center;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.ce-auth-visual-trust p {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.ce-auth-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ce-auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(0, 201, 167, 0.12);
  color: #009279;
}
.ce-auth-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c9a7;
  display: inline-block;
}
.ce-auth-pill-light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.ce-auth-meta-support {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.ce-auth-meta-support strong {
  color: #3c4858;
  font-size: 14px;
}
.ce-auth-meta-support span {
  color: rgba(60, 72, 88, 0.65);
  font-size: 13px;
}
.ce-auth-highlight {
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 14px;
  padding: 20px;
  background: rgba(0, 201, 167, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.ce-auth-highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ce-auth-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15), rgba(0, 146, 121, 0.2));
  color: #00a08f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ce-auth-highlight-item h4 {
  font-size: 15px;
  margin: 0 0 4px 0;
  color: #3c4858;
}
.ce-auth-highlight-item p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
}
.ce-auth-visual-pattern {
  position: absolute;
  top: -40%;
  left: 20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 65%);
  opacity: 0.4;
  filter: blur(0.5px);
}
.ce-auth-visual-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ce-auth-visual-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.ce-auth-visual-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 575px) {
  .ce-auth-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .ce-auth-meta-support {
    text-align: left;
  }
}

.ce-alert-success {
  background-color: #efe;
  border: 2px solid #7ec699;
  color: #2d7a4f;
  padding: 18px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.15);
}
.ce-alert-success strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.ce-alert-success p {
  margin-bottom: 0;
  color: #2d7a4f;
  font-size: 14px;
}
.ce-alert-success ul {
  color: #2d7a4f;
}
.ce-alert-success ul li {
  font-size: 14px;
  line-height: 20px;
}
.ce-alert-danger {
  background-color: #fff5f5;
  border: 2px solid #ff8a80;
  color: #c33;
  padding: 18px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 59, 48, 0.15);
}
.ce-alert-danger strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #c33;
}
.ce-alert-danger p {
  margin-bottom: 0;
  color: #c33;
  font-size: 14px;
}
.ce-alert-danger ul {
  color: #c33;
}
.ce-alert-danger ul li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 3px;
}

.ce-checkout {
  position: relative;
  padding: 20px 0px 40px 0px;
  background: linear-gradient(180deg, rgba(0, 201, 167, 0.02) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 1300px) {
  .ce-checkout {
    padding: 40px 0px 60px 0px;
  }
}
.ce-checkout-header {
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(0, 201, 167, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.08);
}
@media screen and (min-width: 1300px) {
  .ce-checkout-header {
    padding: 35px 40px;
  }
}
.ce-checkout-document-preview {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 25px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .ce-checkout-document-preview {
    flex-direction: column;
    text-align: center;
  }
}
.ce-checkout-document-image {
  position: relative;
  flex-shrink: 0;
}
.ce-checkout-document-image img {
  width: 120px;
  height: auto;
  border: 2px solid rgba(60, 72, 88, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1300px) {
  .ce-checkout-document-image img {
    width: 140px;
  }
}
.ce-checkout-document-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: rgb(0, 201, 167);
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 201, 167, 0.3);
}
@media screen and (min-width: 1300px) {
  .ce-checkout-document-badge {
    font-size: 13px;
    padding: 5px 12px;
  }
}
.ce-checkout-document-info {
  flex: 1;
}
.ce-checkout-document-info h1 {
  font-size: 18px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 600;
  margin-bottom: 5px;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-document-info h1 {
    font-size: 20px;
    line-height: 28px;
  }
}
.ce-checkout-document-info h2 {
  font-size: 22px;
  line-height: 30px;
  color: #009279;
  font-weight: 900;
  margin-bottom: 15px;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-document-info h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 18px;
  }
}
.ce-checkout-company-details {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .ce-checkout-company-details {
    flex-direction: column;
    gap: 8px;
  }
}
.ce-checkout-company-details p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-company-details p {
    font-size: 15px;
  }
}
.ce-checkout-company-details p strong {
  color: rgb(60, 72, 88);
  font-weight: 600;
}
.ce-checkout-header-simple {
  text-align: center;
  margin-bottom: 35px;
}
.ce-checkout-header-simple h1 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 8px;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-header-simple h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-checkout-header-simple p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
.ce-checkout-form {
  position: relative;
}
.ce-checkout-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 1300px) {
  .ce-checkout-container {
    padding: 40px 45px;
  }
}
.ce-checkout-price {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08) 0%, rgba(0, 201, 167, 0.03) 100%);
  border-radius: 8px;
  margin-bottom: 30px;
}
.ce-checkout-price-label {
  font-size: 14px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ce-checkout-price-amount {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #009279;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-price-amount {
    font-size: 48px;
  }
}
.ce-checkout-price-amount span {
  font-size: 20px;
  font-weight: 600;
  color: rgba(60, 72, 88, 0.7);
  margin-left: 4px;
}
.ce-checkout-section {
  margin-bottom: 25px;
}
.ce-checkout-section-title {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(60, 72, 88, 0.1);
}
@media screen and (min-width: 1300px) {
  .ce-checkout-section-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.ce-checkout-radio-group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
@media screen and (max-width: 600px) {
  .ce-checkout-radio-group {
    flex-direction: column;
    gap: 10px;
  }
}
.ce-checkout-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid rgba(60, 72, 88, 0.1);
}
.ce-checkout-security {
  margin-top: 20px;
  text-align: center;
}
.ce-checkout-security p {
  font-size: 13px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
.ce-checkout-security p strong {
  color: rgb(60, 72, 88);
  font-weight: 700;
}
.ce-checkout-trust {
  margin-top: 40px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-trust {
    gap: 30px;
  }
}
.ce-checkout-trust-item {
  text-align: center;
  flex: 0 0 auto;
}
.ce-checkout-trust-item .ce-trust-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.ce-checkout-trust-item p {
  font-size: 13px;
  line-height: 18px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
  font-weight: 600;
}
@media screen and (min-width: 1300px) {
  .ce-checkout-trust-item p {
    font-size: 14px;
  }
}

.ce-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 18px;
  border: 2px solid rgba(60, 72, 88, 0.2);
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
@media screen and (max-width: 600px) {
  .ce-radio {
    width: 100%;
    justify-content: center;
  }
}
.ce-radio:hover {
  border-color: rgb(0, 201, 167);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ce-radio input[type=radio]:checked ~ .ce-radio-mark {
  background-color: rgb(0, 201, 167);
  border-color: rgb(0, 201, 167);
}
.ce-radio input[type=radio]:checked ~ .ce-radio-mark:after {
  display: block;
}
.ce-radio input[type=radio]:checked ~ .ce-radio-text {
  color: #009279;
  font-weight: 700;
}
.ce-radio-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(60, 72, 88, 0.4);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-radio-mark:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}
.ce-radio-text {
  font-size: 15px;
  line-height: 20px;
  color: rgb(60, 72, 88);
  font-weight: 500;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-checkbox-compact {
  padding: 15px;
  background-color: rgba(0, 201, 167, 0.02);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 6px;
  margin-bottom: 20px;
}
.ce-checkbox-compact .ce-checkbox-text-xs {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 767px) {
  .ce-checkbox-compact .ce-checkbox-text-xs {
    font-size: 13px;
    line-height: 20px;
  }
}
.ce-checkbox-compact .ce-checkbox-text-xs a {
  color: rgb(0, 201, 167);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox-compact .ce-checkbox-text-xs a:hover {
  color: #009279;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}

.ce-btn-glow {
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.3);
  font-size: 17px !important;
}
@media screen and (min-width: 1300px) {
  .ce-btn-glow {
    font-size: 18px !important;
  }
}
.ce-btn-glow:hover {
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.4);
  transform: translateY(-2px);
}

.ce-service-hero {
  position: relative;
  padding: 70px 0 40px;
  background: linear-gradient(135deg, #f0f9f7 0%, #eef4ff 100%);
}
@media screen and (min-width: 992px) {
  .ce-service-hero {
    padding: 90px 0 60px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-service-hero {
    padding: 110px 0 80px;
  }
}
.ce-service-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}
.ce-service-hero-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .ce-service-hero-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.ce-service-hero-icon-box {
  flex-shrink: 0;
}
.ce-service-hero-copy h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media screen and (min-width: 992px) {
  .ce-service-hero-copy h1 {
    font-size: 48px;
  }
}
.ce-service-lead {
  font-size: 18px;
  line-height: 30px;
  color: rgba(60, 72, 88, 0.85);
}
@media screen and (min-width: 1200px) {
  .ce-service-lead {
    font-size: 20px;
    line-height: 32px;
  }
}
.ce-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #009279;
  background: rgba(0, 201, 167, 0.15);
  margin-bottom: 18px;
}
.ce-service-hero-meta {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 600px) {
  .ce-service-hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.ce-service-description {
  font-size: 17px;
  line-height: 28px;
  color: rgba(60, 72, 88, 0.85);
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .ce-service-description {
    font-size: 18px;
    line-height: 30px;
  }
}
.ce-service-meta-item {
  background-color: #ffffff;
  border: 1px solid rgba(60, 72, 88, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}
.ce-service-meta-item strong {
  display: block;
  font-size: 17px;
  color: rgb(26, 32, 44);
}
.ce-service-meta-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(60, 72, 88, 0.6);
  margin-bottom: 6px;
}
.ce-service-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15) 0%, rgba(0, 201, 167, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 201, 167, 0.2);
}
@media screen and (min-width: 992px) {
  .ce-service-hero-icon {
    width: 96px;
    height: 96px;
  }
}
.ce-service-hero-icon img {
  max-width: 56px;
  height: auto;
}
@media screen and (min-width: 992px) {
  .ce-service-hero-icon img {
    max-width: 64px;
  }
}
.ce-service-panel-foot {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(60, 72, 88, 0.7);
  justify-content: center;
}
.ce-service-panel-foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08) 0%, rgba(0, 201, 167, 0.04) 100%);
  border: 1px solid rgba(0, 201, 167, 0.15);
}
.ce-service-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.ce-service-section-head h2 {
  margin-bottom: 12px;
}
.ce-service-section-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(60, 72, 88, 0.7);
  font-size: 16px;
  line-height: 26px;
}
.ce-service-intro {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .ce-service-intro {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 25px;
  }
}
.ce-service-intro-icon {
  flex-shrink: 0;
}
.ce-service-intro-icon img {
  width: 120px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1300px) {
  .ce-service-intro-icon img {
    width: 150px;
  }
}
.ce-service-intro-content {
  flex: 1;
}
.ce-service-intro-content p {
  font-size: 17px;
  line-height: 28px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-service-intro-content p {
    font-size: 18px;
    line-height: 30px;
  }
}

.ce-service-search {
  background: #ffffff;
  border: 2px solid rgba(0, 201, 167, 0.25);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 201, 167, 0.08);
}
@media screen and (min-width: 992px) {
  .ce-service-search {
    padding: 48px 60px;
  }
}
.ce-service-search h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  color: rgb(26, 32, 44);
  margin-bottom: 24px;
}
@media screen and (min-width: 1300px) {
  .ce-service-search h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
.ce-service-search-form {
  max-width: 100%;
  margin: 0;
}
.ce-service-search-filter {
  justify-content: center;
  margin-bottom: 24px;
}
.ce-service-search-input {
  margin-top: 0;
  width: 100% !important;
  max-width: 100% !important;
}
.ce-service-search-input .ce-form-control {
  width: 100%;
}

.ce-service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .ce-service-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media screen and (min-width: 1300px) {
  .ce-service-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.ce-service-feature-card {
  position: relative;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 8px;
  padding: 25px 20px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-card:hover {
  border-color: rgb(0, 201, 167);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.12);
  transform: translateY(-4px);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-card:hover .ce-service-feature-icon {
  background-color: rgb(0, 201, 167);
  transform: scale(1.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-card:hover .ce-service-feature-icon svg path {
  stroke: rgb(255, 255, 255);
}
.ce-service-feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-icon svg {
  width: 24px;
  height: 24px;
  color: rgb(0, 201, 167);
}
.ce-service-feature-icon svg path {
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-card-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 201, 167, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: rgb(0, 201, 167);
  margin-bottom: 15px;
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-service-feature-card h4 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 10px;
}
@media screen and (min-width: 1300px) {
  .ce-service-feature-card h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.ce-service-feature-card p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-service-feature-card p {
    font-size: 15px;
    line-height: 24px;
  }
}

.ce-service-cta {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(255, 138, 0, 0.05) 100%);
  border: 2px solid rgba(249, 168, 54, 0.2);
  border-radius: 12px;
  padding: 40px 35px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 992px) {
  .ce-service-cta {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }
}
.ce-service-cta-content {
  flex: 1;
}
.ce-service-cta-content h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 12px;
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-content h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-service-cta-content p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 0;
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-content p {
    font-size: 17px;
    line-height: 28px;
  }
}
.ce-service-cta-pricing {
  flex-shrink: 0;
  text-align: center;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 992px) {
  .ce-service-cta-pricing {
    width: 100%;
  }
}
.ce-service-cta-trial {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(249, 168, 54, 0.15) 0%, rgba(249, 168, 54, 0.25) 100%);
  border: 2px solid rgb(249, 168, 54);
  border-radius: 10px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-trial {
    padding: 22px 35px;
  }
}
.ce-service-cta-trial .trial-badge {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(249, 168, 54);
  padding: 6px 12px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-trial .trial-badge {
    font-size: 14px;
  }
}
.ce-service-cta-trial .trial-price-main {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ce-service-cta-trial .trial-price-main .price {
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  color: rgb(60, 72, 88);
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-trial .trial-price-main .price {
    font-size: 42px;
  }
}
.ce-service-cta-trial .trial-price-main .then-label {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: rgba(60, 72, 88, 0.6);
}
.ce-service-cta-price-regular {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ce-service-cta-price-regular .price {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: rgba(60, 72, 88, 0.8);
}
@media screen and (min-width: 1300px) {
  .ce-service-cta-price-regular .price {
    font-size: 28px;
  }
}
.ce-service-cta-price-regular .period {
  font-size: 15px;
  line-height: 1;
  color: rgba(60, 72, 88, 0.6);
  font-weight: 400;
}

.ce-payment-compact {
  position: relative;
  padding: 35px 0px 60px 0px;
  background-color: #f2f4f7;
}
@media screen and (min-width: 1300px) {
  .ce-payment-compact {
    padding: 45px 0px 80px 0px;
  }
}
.ce-payment-compact-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px 20px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
  border: 2px solid rgba(0, 201, 167, 0.15);
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.12);
}
@media screen and (min-width: 1300px) {
  .ce-payment-compact-header {
    margin-bottom: 35px;
    padding: 28px 32px 32px;
  }
}
.ce-payment-compact-header h1 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  color: rgb(60, 72, 88);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 1300px) {
  .ce-payment-compact-header h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.ce-payment-compact-container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  .ce-payment-compact-container {
    flex-direction: column;
  }
}
.ce-payment-compact-left {
  flex: 1;
  min-width: 0;
  background-color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(60, 72, 88, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}
@media screen and (min-width: 1300px) {
  .ce-payment-compact-left {
    flex: 0 0 58%;
    padding: 38px;
  }
}
.ce-payment-compact-right {
  flex: 0 0 auto;
}
@media screen and (min-width: 1300px) {
  .ce-payment-compact-right {
    flex: 0 0 38%;
    position: sticky;
    top: 25px;
  }
}

.ce-payment-header-center {
  max-width: 700px;
  margin: 0 auto;
}

.ce-payment-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #009279;
  background: rgba(0, 201, 167, 0.15);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 2px solid rgba(0, 201, 167, 0.3);
}

.ce-payment-subtitle-urgent {
  font-size: 15px;
  line-height: 22px;
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 0;
  font-weight: 500;
}
@media screen and (min-width: 1300px) {
  .ce-payment-subtitle-urgent {
    font-size: 16px;
    line-height: 24px;
  }
}

.ce-payment-price-box {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.12) 0%, rgba(0, 201, 167, 0.05) 100%);
  border: 2px solid rgba(0, 201, 167, 0.35);
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0, 201, 167, 0.15);
}
.ce-payment-price-box .ce-price-main {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.ce-payment-price-box .label {
  font-size: 13px;
  line-height: 18px;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ce-payment-price-box .amount {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  color: #009279;
  letter-spacing: -1.2px;
}
.ce-payment-price-box .amount small {
  font-size: 18px;
  font-weight: 600;
  color: rgba(60, 72, 88, 0.7);
  margin-left: 5px;
}
.ce-payment-price-box .ce-price-urgency {
  font-size: 13px;
  font-weight: 700;
  color: #009279;
  text-align: center;
  padding: 8px 12px;
  background: rgba(0, 201, 167, 0.15);
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.ce-payment-section {
  margin-bottom: 24px;
}
.ce-payment-section h3 {
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(60, 72, 88, 0.2);
}
@media screen and (min-width: 1300px) {
  .ce-payment-section h3 {
    font-size: 16px;
    line-height: 22px;
  }
}

.ce-form-group-compact {
  margin-bottom: 15px;
}

.ce-form-label-sm {
  display: block;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: rgb(60, 72, 88);
  margin-bottom: 6px;
}
.ce-form-label-sm span {
  color: #c33;
}

.ce-form-control-sm {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 20px;
  border: 1.5px solid rgba(60, 72, 88, 0.3);
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-form-control-sm:focus {
  border-color: #009279;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 146, 121, 0.1);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-form-control-sm:hover:not(:focus) {
  border-color: rgba(60, 72, 88, 0.35);
}

.ce-radio-inline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.ce-radio-sm {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.ce-radio-sm input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.ce-checkbox-sm {
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 10px 12px;
  background-color: rgba(60, 72, 88, 0.02);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 4px;
}
.ce-checkbox-sm input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.ce-checkbox-sm input[type=checkbox]:checked ~ .ce-checkbox-mark-sm {
  background-color: rgb(0, 201, 167);
  border-color: rgb(0, 201, 167);
}
.ce-checkbox-sm input[type=checkbox]:checked ~ .ce-checkbox-mark-sm:after {
  display: block;
}

.ce-checkbox-mark-sm {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(60, 72, 88, 0.4);
  border-radius: 3px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox-mark-sm:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: solid rgb(255, 255, 255);
  border-width: 0 2px 2px 0;
}

.ce-checkbox-text-tiny {
  font-size: 8px;
  line-height: 12px;
  color: rgba(60, 72, 88, 0.6);
  flex: 1;
  max-height: 48px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .ce-checkbox-text-tiny {
    font-size: 9px;
    line-height: 13px;
  }
}
.ce-checkbox-text-tiny a {
  color: rgba(0, 146, 121, 0.7);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 146, 121, 0.2);
  -webkit-transition: all 400ms ease 0ms;
  -moz-transition: all 400ms ease 0ms;
  -o-transition: all 400ms ease 0ms;
  transition: all 400ms ease 0ms;
}
.ce-checkbox-text-tiny a:hover {
  color: #009279;
  border-bottom-color: #009279;
}

.ce-btn-payment {
  margin-top: 26px;
  margin-bottom: 16px;
  font-size: 18px !important;
  padding: 18px 36px !important;
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.35);
  letter-spacing: 0.2px;
  font-weight: 800 !important;
  animation: pulse-subtle 2s ease-in-out infinite;
}
@media screen and (min-width: 1300px) {
  .ce-btn-payment {
    font-size: 19px !important;
    padding: 20px 40px !important;
  }
}
.ce-btn-payment:hover {
  box-shadow: 0 8px 24px rgba(0, 201, 167, 0.45);
  transform: translateY(-2px) scale(1.02);
}

@keyframes pulse-subtle {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.35);
  }
  50% {
    box-shadow: 0 6px 24px rgba(0, 201, 167, 0.45);
  }
}
.ce-payment-security-note {
  font-size: 11px;
  line-height: 16px;
  color: rgba(60, 72, 88, 0.65);
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 767px) {
  .ce-payment-security-note {
    font-size: 12px;
    line-height: 18px;
  }
}
.ce-payment-security-note strong {
  font-weight: 600;
  color: rgba(60, 72, 88, 0.7);
}

.ce-payment-sidebar-card {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(60, 72, 88, 0.06);
}
.ce-payment-sidebar-card h3 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(60, 72, 88);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
@media screen and (min-width: 1300px) {
  .ce-payment-sidebar-card h3 {
    font-size: 16px;
  }
}

.ce-payment-document-card {
  position: relative;
  text-align: center;
  border-color: rgba(0, 201, 167, 0.3);
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgb(255, 255, 255) 100%);
  border-width: 2px;
}
.ce-payment-document-card .ce-payment-doc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(0, 201, 167);
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}
.ce-payment-document-card .ce-payment-doc-image {
  width: 100px;
  height: auto;
  margin: 0 auto 15px;
  border: 1px solid rgba(60, 72, 88, 0.2);
  border-radius: 4px;
}
.ce-payment-document-card h3 {
  font-size: 15px;
  line-height: 20px;
  color: #009279;
  font-weight: 700;
  margin-bottom: 10px;
}
.ce-payment-document-card .ce-payment-doc-details p {
  font-size: 12px;
  line-height: 18px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 4px;
}
.ce-payment-document-card .ce-payment-doc-details p strong {
  color: rgb(60, 72, 88);
  font-weight: 600;
}

.ce-payment-document-card-large {
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 201, 167, 0.2);
}
.ce-payment-document-card-large .ce-payment-doc-badge-large {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, rgb(0, 201, 167) 0%, #00B395 100%);
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 146, 121, 0.3);
}
.ce-payment-document-card-large .ce-payment-doc-image-large {
  width: 180px;
  height: auto;
  margin: 0 auto 20px;
  border: 2px solid rgba(0, 201, 167, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.ce-payment-document-card-large .ce-payment-doc-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 700;
  margin-bottom: 8px;
}
.ce-payment-document-card-large h3 {
  font-size: 18px;
  line-height: 24px;
  color: rgb(60, 72, 88);
  font-weight: 800;
  margin-bottom: 16px;
}
.ce-payment-document-card-large .ce-payment-doc-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ce-payment-document-card-large .ce-doc-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(0, 201, 167, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(0, 201, 167, 0.15);
}
.ce-payment-document-card-large .ce-doc-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 600;
}
.ce-payment-document-card-large .ce-doc-detail-value {
  font-size: 13px;
  color: rgb(60, 72, 88);
  font-weight: 700;
}
.ce-payment-document-card-large .ce-payment-doc-cta {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.12) 0%, rgba(0, 201, 167, 0.05) 100%);
  border-radius: 8px;
  border: 2px dashed rgba(0, 201, 167, 0.3);
  text-align: center;
}
.ce-payment-document-card-large .ce-payment-doc-cta .ce-doc-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.ce-payment-document-card-large .ce-payment-doc-cta p {
  font-size: 12px;
  line-height: 18px;
  color: #009279;
  font-weight: 700;
  margin: 0;
}

.ce-payment-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ce-payment-features li {
  font-size: 13px;
  line-height: 20px;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}
.ce-payment-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #009279;
  font-weight: 800;
  font-size: 16px;
}
.ce-payment-features li:last-child {
  margin-bottom: 0;
}

.ce-payment-features-compact {
  background-color: rgba(0, 201, 167, 0.03);
  border-color: rgba(0, 201, 167, 0.15);
}
.ce-payment-features-compact h3 {
  font-size: 14px;
  color: #009279;
}

.ce-payment-pricing-card-subtle {
  background: rgba(60, 72, 88, 0.03);
  border-color: rgba(60, 72, 88, 0.1);
  padding: 14px 18px;
}
.ce-payment-pricing-card-subtle .ce-pricing-note-small {
  font-size: 9px;
  line-height: 14px;
  color: rgba(60, 72, 88, 0.5);
  margin: 0;
  text-align: center;
  font-style: normal;
}
@media screen and (min-width: 1300px) {
  .ce-payment-pricing-card-subtle .ce-pricing-note-small {
    font-size: 10px;
    line-height: 15px;
  }
}

/* KBIS Info Section */
.ce-kbis-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media screen and (min-width: 992px) {
  .ce-kbis-info-grid {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

.ce-kbis-info-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ce-kbis-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ce-kbis-card {
  background: #ffffff;
  border: 1px solid rgba(60, 72, 88, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.ce-kbis-card:hover {
  box-shadow: 0 4px 20px rgba(0, 146, 121, 0.08);
  border-color: rgba(0, 146, 121, 0.2);
}

.ce-kbis-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #3c4858;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ce-kbis-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #3c4858;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ce-kbis-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(60, 72, 88, 0.7);
  margin-bottom: 16px;
}

.ce-kbis-card p:last-child {
  margin-bottom: 0;
}

.ce-kbis-card-primary {
  background: linear-gradient(135deg, rgba(0, 146, 121, 0.03) 0%, rgba(0, 201, 167, 0.05) 100%);
  border-color: rgba(0, 146, 121, 0.2);
}

.ce-kbis-card-success {
  background: linear-gradient(135deg, rgba(0, 146, 121, 0.05) 0%, rgba(0, 201, 167, 0.03) 100%);
  border-color: rgba(0, 146, 121, 0.15);
}

.ce-kbis-card-info {
  background: linear-gradient(135deg, rgba(60, 72, 88, 0.03) 0%, rgba(60, 72, 88, 0.01) 100%);
  border-color: rgba(60, 72, 88, 0.1);
}

.ce-kbis-highlight-box {
  background: linear-gradient(135deg, rgba(0, 146, 121, 0.08) 0%, rgba(0, 201, 167, 0.08) 100%);
  border: 2px solid rgba(0, 146, 121, 0.2);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.ce-kbis-highlight-box h4 {
  font-size: 17px;
  font-weight: 700;
  color: #009279;
  margin-bottom: 10px;
}

.ce-kbis-highlight-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #3c4858;
  margin-bottom: 0;
}

.ce-kbis-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ce-kbis-list li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(60, 72, 88, 0.8);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.ce-kbis-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009279;
  font-weight: 700;
  font-size: 16px;
}

.ce-kbis-list li:last-child {
  margin-bottom: 0;
}

.ce-kbis-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ce-kbis-simple-list li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(60, 72, 88, 0.8);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.ce-kbis-simple-list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  color: #009279;
  font-weight: 700;
}

.ce-kbis-simple-list li:last-child {
  margin-bottom: 0;
}

.ce-kbis-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ce-kbis-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ce-kbis-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #009279;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.ce-kbis-step p {
  font-size: 14px;
  line-height: 1.5;
  color: #3c4858;
  margin: 0;
  font-weight: 500;
}

.ce-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(60, 72, 88, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .ce-kbis-card {
    padding: 24px;
  }
  
  .ce-kbis-card h3 {
    font-size: 18px;
  }
  
  .ce-kbis-card h4 {
    font-size: 15px;
  }
  
  .ce-kbis-card p {
    font-size: 14px;
  }
  
  .ce-kbis-list li,
  .ce-kbis-simple-list li {
    font-size: 14px;
  }
  
  .ce-kbis-highlight-box {
    padding: 16px;
  }
  
  .ce-kbis-highlight-box h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .ce-kbis-card {
    padding: 20px;
  }
  
  .ce-kbis-card h3 {
    font-size: 17px;
  }
  
  .ce-kbis-card h4 {
    font-size: 14px;
  }
  
  .ce-kbis-step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .ce-kbis-step p {
    font-size: 13px;
  }
}

/* Additional styles for hero enhancements on landing page */
.ce-search-input-large input.ce-form-control {
  font-size: 24px;
  padding: 18px 24px;
}

@media screen and (max-width: 767px) {
  .ce-search-input-large input.ce-form-control {
    font-size: 20px;
    padding: 16px 20px;
  }
}

.ce-hero-highlight {
  font-size: 16px;
  font-weight: 500;
  color: rgba(60, 72, 88, 0.8);
}

@media screen and (max-width: 767px) {
  .ce-hero-highlight {
    font-size: 14px;
  }
}

/* Hero Search Benefits Pills */
.ce-hero-box-search-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.ce-benefit-item {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 146, 121, 0.08);
  border: 1px solid rgba(0, 146, 121, 0.2);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #009279;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ce-benefit-item:hover {
  background: rgba(0, 146, 121, 0.12);
  border-color: rgba(0, 146, 121, 0.3);
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .ce-hero-box-search-benefits {
    gap: 8px;
    margin-top: 12px;
  }
  
  .ce-benefit-item {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* Enhanced styling for data fabric section */
.ce-section-solid .ce-split-layout-content {
  padding-right: 20px;
}

.ce-section-solid .ce-list-check > li {
  opacity: 1 !important;
  color: rgb(11, 29, 49) !important;
  font-weight: 600;
  font-size: 16px;
}

.ce-section-solid .ce-list-check > li.ce-list-check-active {
  color: rgb(11, 29, 49);
}

.ce-section-solid .ce-list-check > li.ce-list-check-active > span {
  opacity: 1 !important;
  background-color: rgb(0, 201, 167) !important;
}

.ce-section-solid .ce-list-check > li.ce-list-check-active > span:before {
  opacity: 1 !important;
  z-index: 2;
  content: "✓";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: none !important;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.ce-section-solid .ce-list-check > li.ce-list-check-active > span:after {
  opacity: 0 !important;
}

.ce-section-solid .ce-risk-stats {
  margin-top: 32px;
}

.ce-section-solid .ce-risk-stat {
  background: #ffffff;
  border: 2px solid rgba(0, 201, 167, 0.12);
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.08);
  transition: all 0.3s ease;
}

.ce-section-solid .ce-risk-stat:hover {
  border-color: rgba(0, 201, 167, 0.3);
  box-shadow: 0 8px 30px rgba(0, 201, 167, 0.15);
  transform: translateY(-2px);
}

@media screen and (max-width: 991px) {
  .ce-section-solid .ce-split-layout-content {
    padding-right: 0;
  }
}
