@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}

:root {
    --color-dark-green: #17585f;
    --color-light-green: #648f93;
    --color-gray: #939597;
    --color-purple: #5a65ae;
    --color-light-purple: #4995b6;

    --border-radius: 50px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #000;
}

a {
    text-decoration: none;
    transition: color .25s ease;
    cursor: pointer;
    color: var(--color-purple);
}

a:hover {
    text-decoration: none;
    transition: color .25s ease;
    cursor: pointer;
    color: var(--color-light-purple);
}

.text-white a {
    color: #fff;
    transition: color .25s ease;
}

.text-white a:hover {
    color: #a4cada;
    transition: color .25s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: var(--color-dark-green);
}

h3 {
    font-size: 22px;
}

header h1 {
    color: #fff;
}

hr {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid;
    opacity: 1;
}

ul {
    margin-bottom: 0;
}

ul li::marker {
    color: var(--color-light-purple);
}

.border-radius {
    border-radius: var(--border-radius);
}

.nav-item {
    padding: 0 20px;
}

.nav-item.active {
    color: #fff !important;
    background: var(--color-light-purple);
    border-radius: var(--border-radius);
    margin: 0 15px;
}

.nav-item.active a:hover {
    color: var(--color-dark-green);
}

a.nav-link:hover, a.nav-link:focus, .dropdown-menu .dropdown-item:hover {
    color: var(--color-light-purple);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--color-light-purple);
}

.nav-link {
    color: #fff;
    font-weight: 600;
    transition: color .25s ease;
}

.scrolled .nav-item.active .nav-link {
    color: #fff;
}

.scrolled .nav-link, .scrolled .dropdown .nav-link {
    color: var(--color-light-green);
    font-weight: 600;
    transition: color .25s ease;
}

.dropdown .nav-link {
    color: #fff;
    font-weight: 600;
    transition: color .25s ease;
}

.dropdown-menu {
    border-radius: var(--border-radius);
    padding: 40px;
    min-width: 250px;
    border: 0;
}

.dropdown-menu .dropdown-item {
    background: transparent;
    padding: 0;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-light-green);
    transition: color .25s ease;
}

.dropdown-menu .dropdown-item:hover, .dropdown-item.active {
    color: var(--color-dark-green);
}

.dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.logo {
    max-width: 300px;
    margin: 0 20px 0 0;
}

nav {
    background: transparent;
    transition: background .25s ease;
}

nav.scrolled {
    background: #fff;
    transition: background .25s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

nav.scrolled .logo.whiten {
    filter: none;
    transition: filter .25s ease;
}

nav .navbar-toggler {
    line-height: 1;
    color: var(--color-light-green);
    background-color: transparent;
    border: 1px solid var(--color-light-green);
    border-radius: 20px;
    transition: color .25s ease, border .25s ease;
}

nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28100, 143, 147, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

nav .navbar-toggler:focus {
    box-shadow: none;
}

nav.scrolled .navbar-toggler {
    line-height: 1;
    color: var(--color-dark-green);
    background-color: transparent;
    border: 1px solid var(--color-dark-green);
    border-radius: 20px;
    transition: color .25s ease, border .25s ease;
}

@media (min-width: 1200px) and (max-width: 1580px) {
    .navbar{
        font-size:14px ;
    }

    .nav-item {
        padding: 0 10px;
    }

    .button{
        /*background: none !important;*/
        padding: 10px 50px 10px 20px !important;
        margin-bottom: 0 !important;
    }

    .logo {
        max-width: 200px;
    }
}

@media (max-width: 1199px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        padding: 40px;
        margin-top: 30px;
    }

    .scrolled .navbar-collapse {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 30px;
        font-size:17px !important;
    }

    .nav-link, .dropdown .nav-link {
        color: var(--color-light-green);
        font-weight: 600;
        transition: color .25s ease;
    }

    .dropdown-menu {
        padding: 10px 20px;
        border: 0;
        width: 100%;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
    }

    .dropdown-menu.shadow {
        box-shadow: none !important;
    }

    .nav-item.active .nav-link {
        color: #fff !important;

    }

    .nav-item {
        padding: 0 15px;
    }

}

.logo.whiten {
    filter: brightness(0) invert(1);
    transition: filter .25s ease;
}

nav .button {
    padding: 10px 50px 10px 20px;
}

.button {
    background: var(--color-light-green);
    color: #fff;
    font-weight: bold;
    padding: 10px 50px 10px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    background-image: url("../../images/icon/arrow-right.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
}

.button:hover {
    color: #fff;
    background-image: url("../../images/icon/arrow-right-light.png") !important;
    background: var(--color-purple);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.button-dark {
    background: var(--color-dark-green);
    color: #fff;
    font-weight: bold;
    padding: 10px 50px 10px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    background-image: url("../../images/icon/arrow-right-light.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
}

.button-dark:hover {
    color: #fff;
    background-image: url("../../images/icon/arrow-right.png") !important;
    background: var(--color-light-purple);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.button-light {
    background: rgba(100, 143, 147, 0.2);
    color: var(--color-light-green);
    font-weight: bold;
    padding: 10px 50px 10px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    background-image: url("../../images/icon/arrow-right-light.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
}

.button-light:hover {
    color: #fff;
    background-image: url("../../images/icon/arrow-right-light.png") !important;
    background: var(--color-purple);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Vimeo video scaling — emulate object-fit: cover */
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: calc(100vw * 9 / 16);
}

@media (max-aspect-ratio: 16/9) {
  .video-container iframe {
    width: calc(100vh * 16 / 9);
    height: 100vh;
  }
}


header.content-page {
    height: 50vh;
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlayBlack {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 1;
}

header .overlayGradient {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(23, 88, 95, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.container {
    max-width: 90%;
}

@media (min-width: 2000px) {
    .container {
        max-width: 1820px;
    }
}

.content-box {
    border-radius: var(--border-radius);
}

.icon-white {
    filter: brightness(0) invert(1);
    height: 50px;
    margin-right: 10px;
}

.toptext {
    font-size: 24px;
    line-height: 36px;
}

.problemarrow {
    position: absolute;
    top: 40%;
    left: -50px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(100, 143, 147, 1) 0%, rgba(23, 88, 95, 1) 100%);
    border-radius: 200px;
    padding: 20px;
    border: 5px solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.steparrow{
    position: absolute;
    left: -25px; top: 35%;
    filter: brightness(1) invert(1);
}

.products .img-fluid {
    max-width: 60%;
}

.accordion-button::after {
    display: none;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body hr {
    opacity: 0.1;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--color-light-purple);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) h3 {
    color: #fff;
}

.accordion-button:not(.collapsed) .button-dark {
    display: none;
}

.bg-dark-green {
    background: var(--color-dark-green)
}

.bg-light-green {
    background: var(--color-light-green)
}

.bg-purple {
    background: var(--color-purple)
}

.bg-light-purple {
    background: var(--color-light-purple)
}

.bg-gray {
    background: var(--color-gray)
}

.bg-brand {
    background-color: rgba(73, 149, 182, 0.2);
}

.bg-modules {
    background-color: rgba(100, 143, 147, 0.2);
}

.bg-link {
    background-image: url('../../images/icon/link-white.png');
    background-repeat: no-repeat;
    background-position: top 8px left;
    padding-left: 55px;
    background-size: 35px;
}

.bg-link--nolink {
    background-image: initial;
}

.bg-video {
    background-image: url('../../images/icon/video-white.png');
    background-repeat: no-repeat;
    background-position: top 8px left;
    padding-left: 55px;
    background-size: 35px;
}

.embed-responsive {
    position: relative;
}

.embed-responsive--16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive--21by9 {
    padding-bottom: 42.8571%;
}

.embed-responsive iframe {
    position:  absolute;
    top: 0px;
    left: 0px;
    width:  100%;
    height:  100%;
}

.footer {
    background: var(--color-dark-green);
    color: #fff;
}

.footer h3{
    color: #fff;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer hr {
    opacity: 0.5;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.footer a.active {
    font-weight: bold;
}

.footer a:hover {
    color: var(--color-light-green);
    transition: color .25s ease;
}

/* - - - - - - - - - - BACK TO TOP - - - - - - - - - - */
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    padding: 18px 20px;
    background: var(--color-purple);
    border-radius: 50%;
    box-shadow: var(--bs-box-shadow) !important;
}

.back-to-top img {
    width: 25px;
    transform: rotate(270deg);
}

a.back-to-top {
    color: #fff !important;
}


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--color-light-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* contentcontainer around content */
.contentcontainer {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.contentcontainer::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid var(--color-dark-green);
    top: 29px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the contentcontainer to the left */
.left {
    left: 0;
}

/* Place the contentcontainer to the right */
.right {
    left: 50%;
}

/* Add arrows to the left contentcontainer (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 30px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid rgba(100, 143, 147, 0.2);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(100, 143, 147, 0.2);
}

/* Add arrows to the right contentcontainer (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 30px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid rgba(100, 143, 147, 0.2);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(100, 143, 147, 0.2) transparent transparent;
}

/* Fix the circle for contentcontainers on the right side */
.right::after {
    left: -12px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: rgba(100, 143, 147, 0.2);
    position: relative;
    border-radius: 20px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width contentcontainers */
    .contentcontainer {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .contentcontainer::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 18px;
    }

    /* Make all right contentcontainers behave like the left ones */
    .right {
        left: 0%;
    }
}

.form-group {
    margin-bottom: 30px;
}

.form-control, select {
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid var(--color-light-green);
    padding: 15px 20px;
    width: 100%;
}

.form-control:focus {
    background-color: #fff;
    border: 1px solid var(--color-dark-green);
    box-shadow: 0 0 0 0 !important;
}

.with-errors {
    color: #d02828;
    font-weight: 500;
    margin-top: 10px;
}

.product-steps {
    height:  100%;
    align-items: stretch;
    align-items: start !important;
}

.product-steps__item  {
    min-height:  100%;
    flex-grow:  1;
    align-self: stretch; 
}

.product-steps__item a {
    display:  flex;
    flex-grow:  1;
    flex-direction:  column;
    align-self: stretch; 
    color:  black !important;
}

.product-steps__item  .d-flex {
    align-items: stretch;
    flex-direction:  column;
    min-height: 100%;
}

.flex-grow {
    flex-grow:  1;
}

@media (min-width: 1500px) {
    .row-cols-xxxl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (max-width: 1200px) {
    .border-radius--responsive {
        border-radius:  30px;
    }
}

.subtitle {
    margin-bottom: 0.8em;
    font-size:  28px;
}

.columns-even-2 {
    column-count: 2;
    column-gap: 30px;
}

.columns-even-2 .columns-even-2__container {
    margin-bottom:  3em;
}

.columns-even-2 .columns-even-2__container div, .columns-even-2 .columns-even-2__container h3 {
     break-inside: avoid;
    page-break-inside: avoid; /* for print */
    -webkit-column-break-inside: avoid; /* Safari/Chrome */
    -moz-column-break-inside: avoid; /* Firefox */
}


@media (max-width: 1280px) {
    .columns-even-2 {
        column-count: 1;
    }
}

.unorderered-list__item--no-bullet {
        list-style-type: none;
}
