/* GENERAL */
:root {
  --white: #fff;
  --gray-100: #EEEFF0;
  --gray-300: #DCE0E1;
  --gray-600: #717272;
  --gray-700: #313339;
  --gray-800: #414141;
  --gray-900: #2B2B2B;
  --green: #00DCC6;
  --green-900: #00AE8E;
  --blue: #3C5CAA;
  --red: #E5545D;
  --black: #1B1B1B;
  --aqua: #F4F7FE;
  --aqua-dark: #D6E2FE;
  --darker-blue: #01174C;
  --dark-blue: #1D3570;
  --dark-blue-alt: #36539B;
  --light-blue: #99B6FC;
  --purple: #6433F8;
  --purple-light: #F0EBFF;
  --purple-dark: #4A23BE;
  --radius-xl: 32px;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 100.01%;
}
body {
  margin: 0;
  background: var(--white);
  font-family: tt-commons-pro, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
body *:not(.tooltip) {
  transition: all .2s ease-out;
}
b,strong {
  font-weight: 700;
}
img, video {
  border: 0;
  display: block;
  max-width: 100%;
}
form, h1, h2, h3, h4, h5, h6, table, tbody, tr, td, p, ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
a {
  text-decoration: underline;
  color: var(--purple);
}
a:hover {text-decoration: none;}
a:focus {
  outline: none;
}
hr {
  width: 40px;
}
.holder:after {
  display: block;
  content: '';
  clear: both;
}
/* BUTTONS */
.button {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  line-height: 50px;
  background: var(--purple);
  padding: 0 30px;
  display: inline-block;
  border: 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  border-radius: var(--radius-xl);
}
.button:hover {
  background: var(--purple-dark);
  color: var(--white);
  text-decoration: none;
}
.button + .button {
  margin-left: 15px;
}

/* SMALL BUTTON */
.button-small {
  font-size: 14px;
  line-height: 35px;
  font-weight: normal;
  padding: 0 20px;
}

/* TRANSPARENT */
.button-transparent {
  background: transparent;
  border: 1px solid var(--purple);
  line-height: 33px;
  color: var(--purple);
}

.button-big {
  font-size: 14px;
  line-height: 46px;
  font-weight: normal;
  padding: 0 20px;
}

.top-line {
  height: 1px;
  width: 40px;
  background: var(--gray-900);
  display: block;
  margin: 0 auto;
}

/* CENTERED */
.centered {
  margin: 0 auto;
  max-width: 1340px;
}

@media (max-width: 1500px) {
  .centered {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .centered {
    padding: 0 15px;
  }
}

/* HEADER */
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .column {
  min-height: 118px;
}

@media (max-width: 1500px) {
  header {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  header .column {
    min-height: 90px;
  }

  header {
    padding-left: 15px;
    padding-right: 15px;
  }

  header .button {
    padding: 0px 15px;
  }

  header .button + .button {
    margin-left: 10px;
  }
}

header .column {
  display: flex;
  align-items: center;
  flex-direction: row;
}

header .logo a {
  background: url('../images/logo.svg') no-repeat 0 0 / contain;
  width: 211px;
  height: 30px;
}

@media (max-width: 550px) {
  header .logo a {
    width: 79px;
    height: 30px;
    background-image: url('../images/logo-small.svg');
  }
}

/* FOOTER */
.footer-holder {
  background: var(--gray-900);
  color: var(--green);
  padding: 50px 0;
  font-family: tt-commons-pro, Helvetica, Arial, sans-serif;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
footer {
  line-height: 1.5;
  overflow: hidden;
}
footer .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
footer .row + .row {
  margin-top: 50px;
}
footer .col,
footer [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
footer h4 {
  font-size: 16px;
  margin: 10px 0;
  color: var(--white);
  font-weight: 500;
}
footer ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
footer ul li {
  margin-bottom: 10px;
}
footer a {
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}
footer a:hover {
  color: var(--green);
  text-decoration: underline;
}
ul.social li a {
  font-size: 14px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
ul.social li a img {
  margin-top: 6px;
}
footer ul.social {
  overflow: hidden;
  margin-bottom: 0;
}
footer ul.social li {
  float: left;
  margin-right: 20px;
}
footer ul.social li:last-child {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  footer .row {
    padding: 0 30px;
  }
}

.line {
  width: 40px;
  height: 1px;
  background-color: var(--black);
}

/* SECTION 2 */
.section2 { 
  background: url("../images/backgrounds/section2.png") no-repeat center/cover;
  padding: 10px 56px 50px 20px;
  border-radius: var(--radius-xl);
}

.section2 h1 {
  color: var(--gray-900);
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.section2 h1 .no-break {
  display: block;
  white-space: nowrap;
}

.section2 p {
  line-height: 28px;
  font-size: 22px;
  color: black;
  font-weight: 300;
  max-width: 405px;
}

.section2 a.button {
  padding: 6px 42px;
  font-size: 16px;
  width: 200px;
  text-align: center;
}

.section2 .left-col {
  justify-content: center;
}

.section2 .right-col {
  padding: 40px 42px 8px 0px;
}

.section2 .right-col img {
  max-width: 549px;
  border-radius: 16px;
}

@media (min-width: 1200px) {
  .section2 .left-col {
    padding-left: 6rem;
    padding-right: 3rem;
  }
}

@media (max-width: 1200px) {
  .section2 {
    padding: 60px 105px 100px;
  }

  .section2 .right-col {
    padding: 20px 20px 32px;
  }

  .section2 .right-col img {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .section2 {
    padding: 60px 35px 100px;
  }

  .section2 h1 {
    font-size: 38px;
  }

  .section2 .left-col {
    padding-top: 0;
  }
}


/* SECTION 3 */
.section3 {
  padding: 70px 40px 120px;
}

@media (max-width: 768px) {
  .section3 {
    padding: 70px 40px 80px;
  }
}

.section3 h3 {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gray-800);
}

.section3 h4 {
  font-size: 28px;
  color: var(--gray-800);
  font-weight: 500;
}

.section3 p {
  font-size: 14px;
  color: black;
  font-weight: 300;
  max-width: 335px;
}

.section3 .col-sm:nth-child(1) p {
  max-width: 245px;
}

.section3 .col-sm:nth-child(2) p {
  max-width: 335px;
}

@media (max-width: 768px) {
  .section3 img {
    width: 150px;
  }
}

@media (max-width: 575px) {
  .section3 {
    padding: 40px;
  }

  .section3 .col-sm {
    margin-bottom: 60px;
  }

  .section3 img {
    width: 100px;
  }
}

/* SECTION 4 */
.section4 {
  padding: 110px 140px 160px;
  background: linear-gradient(124deg, #E7FFFD 7.68%, #F0EBFF 103.52%);
  border-radius: var(--radius-xl);
}

.section4 hr {
  border-top: 1px solid var(--darker-blue);
}

.section4 h4 {
  color: var(--gray-800);
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 400;
}

.section4 h3 {
  color: var(--gray-900);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px
}

.section4 h1 {
  color: var(--gray-900);
  font-size: 40px;
  font-weight: 500;
}

.section4 a {
  padding: 6px 50px;
}

@media (max-width: 768px) {
  .section4 {
    padding: 80px 40px 160px;
  }
}

@media (max-width: 480px) {
  .section4 {
    padding: 80px 40px 120px;
  }

  .section4 h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .section4 h3 {
    font-size: 22px;
    line-height: 24px;
  }
}

/* Testimonials */
section.testimonials {
  background: url(../images/backgrounds/testimonials.png) no-repeat center top -60px, linear-gradient(180deg, #FFF 0%, rgba(240, 235, 255, 0.60) 41.4%, #FFF 100%);
  background-size: 100% auto, 100% 100%;
  margin-top: 60px;
  position: relative;
}

section.testimonials .centered {
  margin-right: 0 !important;
}

section.testimonials::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 120px;
  background: url(../images/backgrounds/testimonials.png) no-repeat center top;
  background-size: 100% auto;
  opacity: 0.3;
  z-index: -1;
}

section.testimonials h2 {
  margin: 25px 0 50px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-800);
}

section.testimonials .inner {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}

.testimonials-drag {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
  padding: 0 60px;
}

@media (min-width: 1441px) {
  .testimonials-drag {
    padding: 0 50px 0 calc((100vw - 1440px) / 2 + 50px);
  }
}

@media (max-width: 1340px) {
  .testimonials-drag {
    padding: 0 100px;
  }
}

.testimonials-drag.dragging {
  cursor: grabbing;
}

.testimonials-drag.dragging .testimonial-card {
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .testimonials-drag {
    max-width: 100%;
    padding: 0 20px;
  }
}

.testimonials-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-track.dragging {
  transition: none;
}

@media (max-width: 991.98px) {
  .testimonials-track {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-track {
    gap: 15px;
  }
}

.testimonial-card {
  height: 500px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 400px;
    max-width: 400px;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .testimonial-card {
    width: 350px;
    max-width: 350px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    width: 280px;
    max-width: 280px;
    padding: 25px;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 260px;
    max-width: 260px;
    padding: 20px;
  }
}

.testimonial-logo {
  text-align: center;
  margin-bottom: 25px;
  min-height: 60px;
}

.testimonial-logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .testimonial-logo {
    margin-bottom: 20px;
    min-height: 50px;
  }

  .testimonial-logo img {
    max-width: 150px;
    max-height: 50px;
  }
}

.testimonial-content blockquote {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: var(--gray-900);
  position: relative;
}

.testimonial-content blockquote p:first-child::before {
  content: "\201C";
}

.testimonial-content blockquote p:last-child::after {
  content: "\201D";
}

.testimonial-content blockquote p {
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-content blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-content blockquote strong {
  color: var(--gray-900);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .testimonial-content blockquote p{
    font-size: 14px;
    line-height: 1.5;
  }
}

.testimonial-content cite {
  font-style: normal;
  font-size: 12px;
  color: var(--gray-900);
  font-weight: 300;
  margin-top: auto;
  text-transform: uppercase;
}

.testimonial-content cite strong {
  color: var(--gray-900);
  font-weight: 600;
}

.connector {
  z-index: 2;
  position: absolute;
}

.line-connector-left {
  transform: rotate(180deg);
  left: 0;
  top: -10px;
  width: 130px;
}

@media (max-width: 768px) {
  .line-connector-left {
    display: none;
  }
}

/* SECTION 6 */
.section6 {
  padding: 0 80px 60px;
}

.section6 hr {
  border-color: var(--darker-blue);
}

.section6 h3 {
  color: var(--gray-800);
  font-weight: 400;
  font-size: 18px;
  line-height: 60px;
  letter-spacing: 1px;
}

.section6 .button {
  font-size: 14px;
  padding: 6px 36px;
}

.section6 .accordion {
  max-width: 825px;
  border-top: 1px solid var(--gray-100);
}

.section6 .accordion .item {
  border-bottom: 1px solid var(--gray-100);
}

.section6 .accordion .item:last-child {
  border-bottom: none;
}

.section6 .accordion .item button,
.section6 .accordion .item .item-content {
  padding: 15px 45px;
}

.section6 .accordion .item button {
  font-size: 18px;
  color: var(--gray-900);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  box-shadow: none;
}

.section6 .accordion .item button i.fa {
  color: var(--purple);
  transition: transform 0.3s ease;
}

.section6 .accordion .item button:hover i.fa {
  margin-right: 15px;
}

.section6 .accordion .item button[aria-expanded="true"] i.fa {
  transform: rotate(90deg);
}

.section6 .accordion .item .item-content {
  font-size: 16px;
  color: var(--black);
}

.section6 .accordion .item .item-content p, 
.section6 .accordion .item .item-content ul {
  margin-bottom: 15px;
}

.section6 .accordion .item .item-content p a, 
.section6 .accordion .item .item-content ul a {
  color: var(--purple);
}

.section6 .accordion .item .item-content p a:hover, 
.section6 .accordion .item .item-content ul a:hover {
  color: var(--purple-dark);
}

.section6 .accordion .item .item-content ul {
  list-style-type: '—';
  list-style-position: outside;
  margin-left: 11px;
}

.section6 .accordion .item .item-content ul li {
  padding-left: 10px;
}

@media (max-width: 480px) {
  .section6 {
    padding: 56px 25px 80px;
  }

  .section6 .accordion .item button,
  .section6 .accordion .item .item-content {
    padding: 15px 10px;
  }
}

/* SECTION 7 */
.section7 {
  padding: 115px 30px 130px;
  background: center / cover no-repeat;
  background-image: url(../images/backgrounds/section7.webp), url(../images/backgrounds/section7.png);
  border-radius: var(--radius-xl);
}

@media (max-width: 480px) {
  .section7 {
    padding: 100px 30px 150px;
  }
}

.section7 h3 {
  color: var(--gray-800);
  font-weight: 400;
  font-size: 18px;
  line-height: 60px;
  letter-spacing: 1px;
}

.section7 u {
  color: var(--gray-900);
}

.section7 .social-share {
  max-width: 200px;
  font-size: 14px;
}

.section7 .social-share .icon {
  font-size: 25px;
  background: linear-gradient(182deg, #4A23BE 0.94%, #6433F8 88.84%);
  width: 48px;
  height: 48px;
}

@media (min-width: 1441px) {
  .section7 {
    margin-bottom: 60px;
  }
}
