@font-face {
  font-family: "Lexend";
  src: url("fonts/Lexend-VariableFont_wght.ttf") format("truetype");
}

:root {
  --background-color: #f7f7f7;
  --light-gray-color: #E0E0E0;
  --occ-brand-color: #00e6c5;
  --occ-dark-brand-color: #00c9ac;
  --occ-dark-color: #001231;
  --primary-text-color: #0b0f1e;
  --secondary-text-color: #5A5A5A;
  --toc-light-primary-color: #55BCCC;
  --toc-primary-color: #1EAABF;
}

.toconline-landing-page {
  color: var(--primary-text-color);
  font-family: "Lexend";
  padding: 20px;
}

.toconline-landing-page .bold {
  font-weight: 700;
}

.toconline-landing-page .underline {
  text-decoration: underline;
}

.toconline-landing-page ul {
  list-style: none;
  padding: 0;
}

.toconline-landing-page h2 {
  font-size: 32px;
}

.toconline-landing-page p {
  color: var(--secondary-text-color)
}

.toconline-landing-page a {
  text-decoration: none;
  color: inherit
}

.toconline-landing-page .base-link {
  color: var(--primary-text-color);
  font-weight: 700;
  text-decoration: none;
}

.toconline-landing-page .base-link:hover {
  color: var(--occ-dark-color);
}

.toconline-landing-page section {
  /*margin: 60px auto;*/
  margin: 0px auto 60px;
  max-width: 1000px;
}

.toconline-landing-page section.section-licences {
  max-width: 1280px;
}

.toconline-landing-page section .section-title {
  text-align: center;
}

.toconline-landing-page section .section-description {
  margin: 10px auto 30px auto;
  max-width: 450px;
}

.toconline-landing-page .button-primary {
  background-color: var(--occ-brand-color);
  border-radius: 4px;
  border: none;
  color: var(--primary-text-color);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
}

.toconline-landing-page .button-primary:hover {
  background-color: var(--occ-dark-brand-color);
}

.toconline-landing-page .button-secondary {
  background-color: var(--primary-text-color);
  border-radius: 6px;
  border: none;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  text-align: center;
}

.toconline-landing-page .button-secondary:hover {
  background-color: var(--occ-dark-color);
}

.toconline-landing-page .flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .toconline-landing-page .flex-row {
    flex-direction: column;
  }

  .toconline-landing-page .flex-row li {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* HERO SECTION */
.section-hero {
  text-align: center;
}

.section-hero .hero {
  position: relative;
  text-align: center;
}

.section-hero .hero .logo {
  left: 50%;
  max-width: 80vw;
  mix-blend-mode: multiply;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-hero .hero .mockup {
  max-height: 335px;
  max-width: 50vw;
  opacity: 0.8;
}

.section-hero h3 {
  font-size: 22px;
}

.section-hero .hero-description {
  margin: 22px auto;
  max-width: 580px;
}

.section-hero .know-more {
  color: var(--secondary-text-color);
  font-size: 12px;
  margin: 22px;
}

/* HIGHLIGHTS SECTION */

.section-highlights .label-title {
  color: var(--toc-primary-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.section-highlights .title {
  font-size: 32px;
}

.section-highlights p {
  color: var(--secondary-text-color);
  font-size: 14px;
  line-height: 157.143%;
}

.section-highlights .highlight {
  margin-bottom: 40px;
}

.section-highlights .img-block {
  background-color: var(--background-color);
  border-radius: 4px;
  flex-basis: 50%;
  text-align: center;
}

.section-highlights .img-block img {
  mix-blend-mode: darken;
  padding: 20px;
}

.section-highlights .text-block {
  flex-basis: 50%;
}

.highlight>div:first-child {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .highlight.flex-row {
    flex-wrap: wrap;
    order: 1;
  }

  .highlight.flex-row:not(:first-child):not(:last-child) .img-block {
    order: 2;
  }

  .highlight>div {
    width: 100%;
  }
}


/* BENEFICTS SECTION */

.benefits-list {
  background-color: var(--background-color);
  border-radius: 4px;
  flex-basis: calc(50% - 20px);
  padding: 20px 40px;
}

.benefits-list:first-child {
  margin-right: 30px;
}

.benefits-list .title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.benefits-list .subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-top: 20px;
  text-align: center;
}

.benefits-list li {
  color: var(--secondary-text-color);
  font-size: 14px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .section-beneficts {
    flex-wrap: wrap;
  }

  .section-beneficts .benefits-list {
    margin-bottom: 20px;
    width: calc(100% - 80px);
  }
}

/* MODULES SECTION*/

.section-modules {
  margin-bottom: 40px;
}

.section-modules .title {
  color: var(--toc-light-primary-color);
  font-size: 36px;
}

.tabs-container {
  display: flex;
  flex-wrap: wrap;
}

.tabs-container>input[type="radio"] {
  display: none;
}

.tabs-container .tab-label {
  background-color: var(--toc-primary-color);
  border-right: 1px solid var(--toc-light-primary-color);
  color: #fff;
  cursor: pointer;
  flex-grow: 1;
  font-weight: 700;
  padding: 20px;
  position: relative;
  text-align: center;
}

.tabs-container .tab-label:hover {
  background-color: var(--toc-light-primary-color);
}

.tabs-container .tab-content {
  margin-top: 20px;
  order: 99;
  width: 100%;
  min-height: 380px;
}

.tabs-container .tab-main-content {
  display: flex
}

.tabs-container .title {
  flex-grow: 1;
}

.tabs-container>input[type="radio"]:checked+.tab-label {
  background-color: var(--light-gray-color);
  color: var(--primary-text-color);
}

.tabs-container>input[type="radio"]:checked+.tab-label::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid var(--light-gray-color);
  bottom: -8px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.tabs-container>input[type="radio"]:first-child+.tab-label {
  border-radius: 4px 0 0 4px;
}

.tabs-container>input[type="radio"]:last-of-type+.tab-label {
  border-radius: 0 4px 4px 0;
  border-right: none;
}

.tabs-container>input[type="radio"]:not(:checked)+.tab-label+.tab-content {
  display: none;
}

.link-primary-underline {
  border-bottom: 5px solid var(--occ-brand-color);
}

.section-modules .text-block p {
  line-height: 150%;
}

.text-block p.bold {
  color: var(--primary-text-color);
  font-size: 18px;
}

.section-modules .img-block {
  padding: 20px;
}

.section-modules .img-block img {
  max-width: 400px;
}

@media screen and (max-width: 992px) {
  .tabs-container>input[type="radio"]:checked+.tab-label::after {
    content: none;
  }

  .tabs-container .tab-label,
  .tabs-container>input[type="radio"]:last-of-type+.tab-label,
  .tabs-container>input[type="radio"]:first-child+.tab-label {
    align-items: center;
    border-radius: 4px;
    border: none;
    display: flex;
    flex-basis: 25%;
    justify-content: center;
    margin: 4px;
    padding: 14px;
  }

  .tabs-container .tab-main-content {
    flex-direction: column;
  }

  .tabs-container .img-block {
    margin-top: 20px;
    text-align: center;
  }

  .section-modules .img-block img {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {

  .tabs-container .tab-label,
  .tabs-container>input[type="radio"]:last-of-type+.tab-label,
  .tabs-container>input[type="radio"]:first-child+.tab-label {
    flex-basis: 30%;
  }
}

/* TESTIMONIALS SECTION*/

.section-testimonials li {
  flex-basis: calc(33.33% - 20px);
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100% - 40px);
  padding: 30px 20px;
}

.testimonial-card .text-block,
.testimonial-card .review {
  font-size: 12px;
}

.testimonial-card .quote {
  flex-grow: 1;
  font-size: 14px;
  line-height: 170%;
}

.testimonial-card .profile {
  align-items: center;
  display: flex;
}

/* LICENCES SECTION */

.section-licences .title,
.section-licences h2,
.section-licences p {
  text-align: center;
}

.toconline-landing-page .section-licences h2 {
  margin-bottom: 0;
}

.section-licences li {
  flex-basis: 25%;
  flex-grow: 1;
  margin-right: 20px;
}

.section-licences li:last-child {
  margin-right: 0;
}

.licence-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.licence-card-header {
  align-items: center;
  background-color: var(--toc-primary-color);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.licence-card.--gray .licence-card-header {
  background-color: var(--background-color);
  border: 1px solid var(--light-gray-color);
}

.licence-card-header img {
  padding: 20px;
  max-height: 65px;
}

.licence-card-header .badge {
  background-color: var(--primary-text-color);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.licence-card-content {
  border-radius: 0 0 10px 10px;
  border-top: none;
  border: 1px solid var(--toc-primary-color);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 14px;
}

.licence-card-content .title {
  font-size: 18px;
  padding: 10px 0;
}

.licence-card-content .description {
  color: var(--primary-text-color);
  font-size: 14px;
}

.licence-card-content ul {
  flex-grow: 1;
  padding: 10px 0;
}

.licence-card-content li {
  color: var(--secondary-text-color);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}

.licence-card-content ul li span {
  color: var(--toc-primary-color)
}

.licence-card.--gray .licence-card-content ul li span {
  color: var(--light-gray-color);
}

.licence-card.--gray .licence-card-content {
  border: 1px solid var(--light-gray-color);
  border-top: none;
}

.sep {
  border-bottom: 1px solid var(--light-gray-color);
  margin: 10px 0;
}

@media screen and (max-width: 992px) {
  .section-licences .flex-row {
    flex-wrap: wrap;
  }

  .section-licences li {
    font-size: 14px;
    flex-basis: 33%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .section-licences li:nth-child(2) {
    margin-right: 0;
  }

  .licence-card-content .title {
    font-size: 22px;
  }

  .licence-card-content .description {
    font-size: 16px;
  }
}

/* SECTION CTA SECTION*/

.section-cta .banner {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
}

.section-cta .banner .title {
  font-size: 32px;
  margin-bottom: 30px;
}

/* LINKS SECTION*/

.section-pre-footer {
  text-align: center;
}

.section-pre-footer .email {
  color: var(--secondary-text-color);
  font-size: 12px;
  margin: 30px
}