/* #region responsive text aligning */

body {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .text-xs-left {
        text-align: left;
    }

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

    .text-xs-center {
        text-align: center;
    }
	
	.text-xs-center .d-inline-flex {
		justify-content: center;
	}

    .text-xs-justify {
        text-align: justify;
    }

    .justify-content-xs-center {
        justify-content: center;
    }

    .text-xs-small *, .text-xs-small {
        font-size: 18px !important;
    }
    
    .text-xs-medium  *, .text-xs-medium {
        font-size: 30px !important;
    }

    .text-xs-large  *, .text-xs-large {
        font-size: 50px !important;
    }

    .step-by-step .step.hidden-step,
    .step-by-step .step.final::after,
    .step-by-step .desktop {
        display: none;
    }

    .step-by-step .mobile {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-sm-left {
        text-align: left;
    }

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

    .text-sm-center {
        text-align: center;
    }

    .text-sm-justify {
        text-align: justify;
    }	

    .justify-content-sm-end {
        justify-content: end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .text-sm-small  *, .text-sm-small {
        font-size: 18px  !important;
    }
    
    .text-sm-medium  *, .text-sm-medium {
        font-size: 30px !important;
    }

    .text-sm-large  *, .text-sm-large {
        font-size: 50px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text-md-left {
        text-align: left;
    }

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

    .text-md-center {
        text-align: center;
    }

    .text-md-justify {
        text-align: justify;
    }

    .justify-content-md-end {
        justify-content: end !important;
    }

    .text-md-small *, .text-md-small {
        font-size: 18px !important;
    }
    
    .text-md-medium *, .text-md-medium {
        font-size: 30px !important;
    }

    .text-md-large *, .text-md-large {
        font-size: 50px !important;
    }

    .page-title {
        height: 200px;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left;
    }

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

    .text-lg-center {
        text-align: center;
    }

    .text-lg-justify {
        text-align: justify;
    }

    .justify-content-lg-end {
        justify-content: end !important;
    }

    .text-lg-small *, .text-lg-small {
        font-size: 18px !important;
    }
    
    .text-lg-medium *, .text-lg-medium {
        font-size: 30px !important;
    }

    .text-lg-large *, .text-lg-large {
        font-size: 50px !important;
    }

    .page-title {
        height: 250px;
    }
}

/* #endregion */

textarea.resize-v {
	resize: vertical;
}

textarea.resize-h {
	resize: horizontal;
}

textarea.resize-none {
	resize: none;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
	display: inline-flex;
}

.d-flex.valign-middle,
.d-inline-flex.valign-middle {
	align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-100 {
    width: 100% !important;
}

.overflow-hidden {
    overflow: hidden;
}

.text-green {
	color: #17872C;
}

.text-purple {
    color: #6b39b7;
}

a {
    color: #17872C;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    outline: 0;
    -webkit-transition: color .1s ease-in;
    -o-transition: color .1s ease-in;
    transition: color .1s ease-in;
}

a:hover {
    color: #17872C;
    text-decoration: none;
    outline: 0;
}

.navbar-default {
    background-color: #F9F8FF;
}

.navbar-fixed-top {
    border: none;
    box-shadow: 0px 1px 2px rgba(97, 97, 97, 0.2), 0px 2px 4px rgba(97, 97, 97, 0.2);
}

.navbar {
    border: none;
}

.flex-column {
    flex-direction: column !important;
}

.float-start {
    float: left !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-even {
    justify-content: space-evenly !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: end !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content:end !important;
}

.h-100 {
    height: 100% !important;
  }

.btn {
    font-size: 16px;
    letter-spacing: 2px;
    background-color: transparent;
    min-width: 136px;
    border-radius: 30px;
    padding:8px 30px;
    height: 40px;
    line-height: 22px;
    font-weight: 500;
    border: 1px solid transparent;
}

.btn-md {
    height: 48px !important;
    padding: 12px 30px !important;
}

.btn-wide {
    min-width: 200px;
}

.btn-primary, .btn-green{
    background-color: #17872C;
    color: #FFFFFF;
}

.btn-primary:hover, .btn-green:hover {
    background-color: #89BF14;
    filter: drop-shadow(0px 0px 2px rgba(23, 43, 77, 0.04)) drop-shadow(0px 3px 2px rgba(23, 43, 77, 0.08));
    color: #FFFFFF;
}

.btn-primary:active, .btn-green:active {
    border: none;
    color: #FFFFFF;
}

.btn-outline-primary, .btn-outline-primary:visited {
    color: #17872C;
    font-weight: 400;
    border: 1px solid #17872C;
}

.btn-outline-primary:hover {
    color: #2E353A;
    border: 1px solid #2E353A;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.btn-outline-primary:active {
    border-color: #89BF14;
    background-color: transparent;
}

.btn-outline-white {
    color: #FFFFFF;
    font-weight: 500;
    border: 1px solid #FFFFFF !important;
    padding: 7px 30px;
}

.btn-outline-white:hover {
    color: #000000;
    border: 1x solid #000000 !important;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.btn-outline-white:active {
    color: #FFFFFF;
    border: 1px solid #FFFFFF !important;
    outline: none;
}

.btn-success, .btn-orange {
    background-color: #FB821D;
    color: #FFFFFF;
}

.btn-success:hover, .btn-orange:hover  {
    background-color: #FFB326;
    filter: drop-shadow(0px 0px 2px rgba(23, 43, 77, 0.04)) drop-shadow(0px 3px 2px rgba(23, 43, 77, 0.08));
    color: #FFFFFF;
}

.btn-success:active, .btn-orange:active {
    background-color: #FFB326;
    border: 1px solid #FFFFFF;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFFFFF;
}

.btn-success:hover:active, .btn-orange:hover:active {
    background-color: #FFB326;
    border: 1px solid #FFFFFF;
    outline: none;
}

.btn-success:focus, .btn-orange:focus {
    background-color: #FFB326;
    border: 1px solid #FFFFFF;
    outline: none;
}

.btn-purple {
    background-color: #6B39B7;
    color: #FFFFFF;
}

.btn-purple:hover  {
    background-color: #AA78F0;
    filter: drop-shadow(0px 0px 2px rgba(23, 43, 77, 0.04)) drop-shadow(0px 3px 2px rgba(23, 43, 77, 0.08));
    color: #FFFFFF;
}

.btn-purple:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFFFFF;
}

.btn-purple:hover:active, .btn-purple:focus, .btn-purple:active {
    background-color: #AA78F0;
    border: 1px solid #FFFFFF;
    outline: none;
}

.tag-small {
    height: 35px;
}

.tag-primary {
    background: #FB821D;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    padding: 11px 44px;
    border-radius: 4px;
    letter-spacing: 2px;
}

.tag-outline-primary {
    background: #FFFFFF;
    color: #2E353A;
    font-size: 18px;
    padding: 11px 44px;
    border-radius: 4px;
    letter-spacing: 2px;
    border: 1px solid #FB821D;
    font-weight: 500;
}

.tag-outline-primary:hover {
    background: #FFB32633;
}

.tag-outline-purple {
    background: #FFFFFF;
    color: #2E353A;
    font-size: 18px;
    padding: 15px;
    border-radius: 4px;
    letter-spacing: 2px;
    border: 1px solid #AA78F0;
    display: flex;
    align-items: center;
}

.tag-outline-purple:hover {
    background: #F2E9FF;
}

.tag-outline-purple:active {
    border: 1px solid #AA78F0;
    background: #F2E9FF;
}

.tag-close {
    padding: 11px 22px 11px 44px;
}

.navbar-default .navbar-nav>li>a {
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 2px;
    text-align: left;
    color: #2E353A;
    margin-right: 25px;
}

.carousel.panel {
    border: none;
    box-shadow: none;
}

.carousel.panel .fa {
    color: #6B39B7;
}

.panel .carousel-indicators {
    display: block;
    bottom: 0;
}

.carousel-indicators li {
    border: 1px solid #FFFFFF;
}

.carousel-indicators .active {
    background-color: #FFFFFF;
}

#client-carousel .carousel-indicators li {
    border: 1px solid #2E353A;
}

#client-carousel .carousel-indicators .active {
    background-color: #2E353A;
}

.carousel-indicators {
    bottom: 90px;
}


@media (max-width: 1200px) {
    .navbar-default .navbar-nav>li>a {
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        margin-right: 0;
        letter-spacing: 0;
    }

    .cta .btn {
        margin-right: 0 !important;
    }
}

.carousel-control.right {
    right: -20px;
    left: auto;
}
.carousel-control.left {
    left: -20px;
}
.carousel-control, .carousel-control:focus {
    background-color: #FFFFFF;
    filter: drop-shadow(0px 5px 3px rgba(23, 43, 77, 0.04)) drop-shadow(0px 8px 5px rgba(23, 43, 77, 0.08));
}

.carousel-control:before {
    color: #2E353A;
}

.carousel-indicators {
    display: block;
}

.carousel-control:hover {
    background-color: #F9F8FF;
}

.carousel-control:active {
    background-color:#FFB326;
}

.page-title {
    /*height moved to display dependant section*/
    background-color: #17872C;
    background-blend-mode: multiply;
}

.page-title h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 66px;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.scrollable-nav .nav>li>a.tab-nav {
    padding: 10px;
}

.card-container {
    border: 1px solid #ebebeb;
    box-shadow: 0px 1px 2px rgb(97 97 97 / 20%), 0px 2px 4px rgb(97 97 97 / 20%);
    border-radius: 4px;
}

.bg-gray {
    background: #F9F8FF;
}

input[type=checkbox] {
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    border-radius: 2px;
    height: 16px;
    width: 16px;
}

.jumis-landing-image {
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.carousel-inner .jumbotron:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0007;
}

.jumis-landing-image .jumis-landing-html h2 {
    color: #fff;
    margin: 0;
    font-weight: 500;
    letter-spacing: 2px;
}

.carousel-inner>.item .jumis-landing-html {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 0 5px;
}

.jumis-landing-image .jumis-landing-html .btn.btn-outline-white:hover {
    color: #FFFFFF;
    border: 1px solid #FFFFFF !important;
    opacity: 0.7;
}

.mt-n1 {
    margin-top: -1px;
}

.mb-n2 {
    margin-bottom: -2px;
}

.jumis-landing-image .jumis-landing-html .important-note {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}

.jumis-landing-image:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}

.jumis-landing-image .jumis-landing-html .important-note {
    background-color: #FB821D;
    text-transform: none;
    padding: 20px 20px 20px 40px;
    margin: 0 -50px 10px -40px;
    font-size: 36px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 2px;
}

#main-features .products .feature-container p{
    color: #2E353A;
}

.jumbotron.orange-bg .btn-outline-white:hover {
    color: #FFFFFF;
    opacity: 0.7;
    border: solid 1px #FFFFFF !important;
    filter: none;
}

.thumb:hover {
    border: 1px solid #bebebe;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.video-teaser .video-title a {
    color: #2E353A;
}

.jumbotron.green-bg * {
    color: #FFFFFF;
}

.panel .carousel-inner {
    min-height: 320px;
}

.carousel.panel {
    padding: 0 !important;
}

.tech-requirements-container p a {
    letter-spacing: 1px;
}

.pager {
    text-align: left;
}

.icon-grid .panel{
    box-shadow: 0px 1px 2px rgba(97, 97, 97, 0.15), 0px 2px 4px rgba(97, 97, 97, 0.15);
    border-radius: 4px;
}

.icon-grid .panel-footer {
    background-color: #F9F8FF;
    border: none;
    border-radius: 4px 0 4px 0;
}

.jumis-landing-image .jumis-landing-html .btn {
    font-weight: 500;
}

.pager {
    margin: 25px 0 25px 15px;
}

.step-by-step {
    min-height: 235px;
}

.step-by-step .step.hidden-step {
    visibility: hidden;
}

.step-by-step .step.final::after {
    z-index: 0;
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    border-right: 2px dashed #d3d3d3;
    top: 50px;
    left: 130px;
    margin-top: 100px;
    height: 80px;
}

.step-by-step .step.final .circle,
.step-by-step .step.final  h4 {
    z-index: 10;
}

.step-by-step .step .text-container {
    z-index: 1;
}

.step-by-step .step .text-container h4 {
    display: inline;
    z-index: 1;
}

.step-by-step .step .text-container span {
    color: #009a4f;
    font-weight: 700;
}

.step-by-step.first-row::before {
    display: none;
}

.step-by-step .mobile {
    display: none;
}

.step-by-step-title-container {
    display: flex;
    justify-content: space-around;
}

.step-by-step-title-container h3 {
    width: 200px;
    text-align: center;
    padding-bottom: 20px;
}

.step-by-step .step {
    width: 260px;
}

.mobile .step-by-step .step {
    margin-bottom: 5px;
    width: 290px;
}

.mobile .step-by-step .next {
    margin-bottom: 10px;
}

.webform-confirmation__back {
    display: none;
}

.times-new-roman {
    font-family: 'Times New Roman', Times, serif;
}