/* 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;
  --darker-blue: #01174C;
  --dark-blue: #1D3570;
  --purple: #8833F8;
  --purple-light: #F0EBFF;
  --purple-dark: #5B0AC5;
  --radius-xl: 32px;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 100.01%;
}
body {
  margin: 0;
  font-size: 64%;
  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;
}
.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);
}

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

/* CONTAINER */
.page-container {
  margin: 0 60px;
}
@media (max-width: 480px) {
  .page-container {
    margin: 0 30px;
  }
}

.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: 480px) {
  header .column {
    min-height: 90px;
  }

  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: 56px 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;
  padding: 0 50px;
}
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: 14px;
  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: 12px;
  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;
}
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;
  padding: 40px 0;
}

.section2 h3 {
  line-height: 50px;
  font-size: 40px;
  font-weight: 400;
  color: var(--gray-900);
}

.section2 h4 {
  font-size: 20px;
  font-weight: 300;
  max-width: 530px;
  color: var(--gray-900);
}

.section2 a.button {
  padding: 6px 40px;
  font-size: 16px;
  width: 286px;
}

@media (max-width: 670px) {
  .section2 {
    background-size: cover;
  }

  .section2 h3 {
    font-size: 30px;
  }

  .section2 a.button {
    padding: 6px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section2 {
    background-size: cover;
  }
}


/* SECTION 3 */
.section3 {
  padding: 50px 40px 80px;
  background: linear-gradient(180deg, #FFF 0%, rgba(231, 255, 253, 0.50) 41.4%, #FFF 100%);
}

.section3 h3 {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}

.section3 h4 {
  font-size: 28px;
}

.section3 p {
  font-size: 14px;
  font-weight: 300;
}

@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;
  }
}


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

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

.line-connector-top {
  transform: rotate(90deg);
  right: 0;
  top: -30px;
  width: 130px;
}

.gradient-pill {
  right: 0;
  bottom: 800px;
}

@media (max-width: 1000px) {
  .gradient-pill {
    display: none;
  }
}

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

/* SECTION TESTIMONIALS */
.section-testimonials h3 {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gray-800);
}

.testimonial-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
}

.testimonial-logo {
  height: 70px;
  justify-content: flex-start;
}

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

.testimonial-text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: var(--gray-900);
  text-align: left;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.75px;
  color: var(--gray-900);
  text-align: left;
}

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

/* SECTION 5 */
.section5 {
  color: var(--gray-800);
  padding: 103px 30px;
  background: url(../images/backgrounds/section5.png) no-repeat, linear-gradient(180deg, #FFF 0%, rgba(240, 235, 255, 0.60) 41.4%, #FFF 100%);
  margin: 0;
}

@media (max-width: 768px) {
  .section5 {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.section5 .reasons {
  max-width: 825px;
}

.section5 .circle {
  border-radius: 50%;
  width: 350px;
  height: 350px;
}

@media (max-width: 768px) {
  .section5 .circle {
    width: 300px;
    height: 300px;
  }
}

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

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

.section5 p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-800);
}

/* SECTION 6 */
.section6 {
  background: linear-gradient(274deg, #E7FFFD 12.16%, #F0EBFF 79.2%);
  padding: 120px 0;
  border-radius: var(--radius-xl);
}

.section6 h3 {
  font-size: 22px;
  color: var(--gray-900);
  font-weight: 300;
}

.section6 .button {
  font-size: 16px;
  padding: 6px 36px;
  width: 286px;
}

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