body,
html {
    width: 100%;
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.maincontent {
    padding-top: 65px;
}
p {
    margin: 0;
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
.btn {
    background-color: #7fd691;
    border: 0;
    padding: 0;
    border-radius: 8px;
    height: 40px;
    cursor: pointer;
    outline: 0;
    font-size: 18px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 170px;
    line-height: 18px;
}
.btn,
.btn:hover {
    color: #fff;
}
.btn__footer {
    background-color: #000;
}
.btn__footer:hover,
.btn__main:hover,
.btn__works {
    background-color: #efefef;
    color: #221f20;
}
.btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}
.btn-active {
    background-color: #7fd691;
    color: #fff;
}
.active {
    border-bottom: 2px solid #db4255;
}
.btn-allowhover:hover,
.options li:hover {
    background-color: #000;
    color: #fff;
}
.allowhover:hover {
    border-bottom: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}
button:focus {
    outline: 0;
}
.mobile-dropdown {
    display: none;
}
@media only screen and (max-width: 600px) {
    .mobile-dropdown {
        margin: 50px 0;
        display: block;
    }
}
.dropdown {
    display: block;
    width: 100%;
    background-color: #7fd691;
    position: relative;
    height: 60px;
    border-radius: 7px;
    margin: 20px 0 40px;
}
.selected {
    width: 100%;
    border: 0;
    padding: 6px 10px;
    cursor: pointer;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    font-family: "CourierPrime-Regular", sans-serif;
}
.options {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    border: 0;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.options.show {
    display: block;
}
.options li {
    background: #fff;
    cursor: pointer;
    padding: 10px;
    font-family: "CourierPrime-Regular", sans-serif;
    font-size: 28px;
    border-radius: 7px;
}
.result {
    margin-top: 20px;
}
.arrow-down {
    width: 30px;
    position: absolute;
    right: 5%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font-size: 30px;
}
.header,
.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header {
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    background-color: #000;
    font-size: 18px;
    position: fixed;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.header .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header .menu-btn {
    display: none;
}
@media screen and (max-width: 600px) {
    .header .menu-btn {
        display: block;
        background: 0 0;
        border: 0;
        padding: 0;
        font-size: 30px;
        color: #fff;
        outline: 0;
    }
}
.header .menu-btn img {
    width: 50px;
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
@media screen and (max-width: 600px) {
    .nav {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        -o-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
	.nav-open {
		transform: translateY(0%);
	}
}
.nav__close {
    display: none;
}
@media screen and (max-width: 600px) {
    .nav__close {
        display: block;
        background: 0 0;
        padding: 0;
        border: 0;
        position: fixed;
        right: 50px;
        font-size: 30px;
        top: 25px;
        color: #fff;
        outline: 0;
    }
}
.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0 50px 0 0;
}
@media screen and (max-width: 600px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
		font-size: 22px;
    }
}
.nav__item {
    list-style: none;
    padding: 0 20px;
}
@media screen and (max-width: 600px) {
    .nav__item {
        margin: 20px;
        width: 100%;
    }
}
.nav__link {
    font-family: "CourierPrime-Regular", sans-serif;
    padding-bottom: 10px;
}
.nav__link,
.nav__link:hover {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 600px) {
    .nav__link {
        display: block;
        width: 100%;
    }
}
.nav--active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
.home__image {
    width: 100%;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
    background: url(../img/top_hero.jpg) center center no-repeat;
    background-size: cover;
    max-height: 700px;
    height: 100%;
}
.home__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    color: #fff;
    font-family: "CourierPrime-Regular", sans-serif;
	width: 60%;
}
.home__description--title {
    font-size: 48px;
    line-height: 48px;
}
.home__description--subtitle {
    font-size: 20px;
    margin-bottom: 40px;
	font-family: "Montserrat-Regular", sans-serif;
}
.home__description--decorator {
    height: 5px;
    width: 45px;
    background: #db4255;
    margin: 20px 0;
}
.home .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 700px;
}
.logo {
    width: 130px;
}
.logo__img,
.logo__link {
    display: block;
}
.logo__img {
    max-width: 100%;
}
.logo-mobile {
    display: none;
}
@media screen and (max-width: 600px) {
    .logo-mobile {
        display: block;
        position: absolute;
        left: 50px;
        top: 30px;
    }
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url(../fonts/Montserrat-Regular.woff);
}
.about,
.about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about {
    padding: 150px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: auto;
	overflow: hidden;
}
@media only screen and (max-width: 600px) {
    .about {
        padding: 50px 0;
    }
}
.about .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}
@media only screen and (max-width: 600px) {
    .about .container {
        display: block;
    }
}
.about__bg {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: -50%;
    background: url(../img/bg-about.png) center center no-repeat;
    background-size: contain;
    height: 130%;
    max-height: 800px;
    opacity: 0.2;
    top: -10%;
}
@media only screen and (max-width: 600px) {
    .about__bg {
        left: -35%;
    }
}
.about__right {
    width: 40%;
}
@media only screen and (max-width: 600px) {
    .about__right {
        width: 100%;
    }
}
.about__left {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 600px) {
    .about__left {
        width: 100%;
    }
}
.about__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.about__description--title {
    font-size: 48px;
    line-height: 48px;
    font-family: "CourierPrime-Regular", sans-serif;
}
.about__description--subtitle {
    font-size: 18px;
    font-family: "Montserrat-Regular", sans-serif;
}
.about__description--decorator {
    height: 5px;
    width: 45px;
    background: #db4255;
    margin: 20px 0;
    display: block;
}
.about__image {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(../img/lead_image.png) center center no-repeat;
    background-size: contain;
    height: 125%;
	margin-top: -30px;
}
@media only screen and (max-width: 600px) {
    .about__image {
        height: 400px;
        margin-top: 30px;
    }
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url(../fonts/Montserrat-Regular.woff);
}
.benefits {
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
}
.benefits,
.benefits .container,
.benefits__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.benefits .container {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 600px) {
    .benefits .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.benefits__right {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
	text-align: center;
}
.benefits__right .btn {
	margin: 0 auto;
}
@media only screen and (max-width: 600px) {
    .benefits__right {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 50px;
    }
}
.benefits__left {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 600px) {
    .benefits__left {
        width: 100%;
    }
}
.benefits__bg {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: -40%;
    background: url(../img/benefits_bg.png) center center no-repeat;
    background-size: contain;
    height: 100%;
    max-height: 800px;
    opacity: 1;
    z-index: -1;
    top: -5%;
}
.benefits__title {
    font-size: 48px;
    line-height: 48px;
    font-family: "CourierPrime-Regular", sans-serif;
}
.benefits__decorator {
    height: 5px;
    width: 45px;
    background: #db4255;
    display: block;
    margin: 20px 0 100px;
}
.benefits__wrap,
.benefits__wrap--text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
}
.benefits__wrap {
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.benefits__wrap--text {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 70%;
    margin-left: 50px;
}
@media only screen and (max-width: 600px) {
	.benefits__wrap {
		flex-direction: column;
	}
    .benefits__wrap--text {
        margin-left: 0px;
		margin-top: 10px;
        width: 100%;
    }
}
.benefits__wrap--title {
    font-size: 33px;
    line-height: 33px;
    font-family: "CourierPrime-Regular", sans-serif;
    margin-bottom: 50px;
}
.benefits__wrap--subtitle {
    font-size: 18px;
    font-family: "Montserrat-Regular", sans-serif;
}
.benefits__wrap--icon {
    width: 100px;
    height: 100px;
}
.benefits__wrap--icon-transparency {
    background: url(../img/icon1.png) center center no-repeat;
    background-size: contain;
}
.benefits__wrap--icon-stream {
    background: url(../img/icon2.png) center center no-repeat;
    background-size: contain;
}
.benefits__wrap--icon-automated {
    background: url(../img/icon3.png) center center no-repeat;
    background-size: contain;
}
.benefits__image {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
}
.benefits__separator {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 100px 0;
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url(../fonts/Montserrat-Regular.woff);
}
.works {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f7f7f7;
    padding: 100px 0;
}
@media screen and (max-width: 600px) {
    .works {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
		padding-top: 50px;
		padding-bottom: 0px;
    }
}
.works .container,
.works__btn--wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.works .container {
    height: 100%;
}
@media only screen and (max-width: 600px) {

    .works .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.works .container,
.works__btn--wrap,
.works__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.works__btn--wrap {
    margin-bottom: 20px;
    width: 100%;
}
.works__right {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 600px) {
    .works__right {
        display: none;
    }
}
.works__left {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 600px) {
    .works__left {
        width: 100%;
    }
}
.works__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.works__description--title {
    font-size: 48px;
    line-height: 48px;
    font-family: "CourierPrime-Regular", sans-serif;
}
.works__description--subtitle {
    font-size: 18px;
    font-family: "Montserrat-Regular", sans-serif;
}
.works__description--decorator {
    height: 5px;
    width: 45px;
    background: #7fd691;
    margin: 20px 0;
    display: block;
}
.works__image {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    max-height: 90%;
}
.works__image--gateaway {
    display: block;
    background: url(../img/mcp_psp.png) center center no-repeat;
    background-size: contain;
}
.works__image--aquiring {
    display: none;
    background: url(../img/mcp_aquiring_bank.png) center center no-repeat;
    background-size: contain;
}
.works__image--insuring {
    display: none;
    background: url(../img/mcp_issuing_bank.png) center center no-repeat;
    background-size: contain;
}
@font-face {
    font-family: "CourierPrime-Regular";
    src: url(../fonts/CourierPrime-Regular.ttf);
}
@font-face {
    font-family: "Montserrat-Regular";
    src: url(../fonts/Montserrat-Regular.woff);
}
@font-face {
    font-family: "Montserrat-Light";
    src: url(../fonts/Montserrat-Light.woff);
}
.footer {
    height: auto;
}
.footer .container,
.footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer .container {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media only screen and (max-width: 600px) {
    .footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.footer__decorator {
    height: 5px;
    width: 45px;
    background: #7fd691;
    margin: 20px 0;
    display: block;
}
.footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
}
@media only screen and (max-width: 600px) {
    .footer__left {
        width: 100%;
    }
}
.footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
}
@media only screen and (max-width: 600px) {
    .footer__right {
        width: 100%;
    }
}
.footer__section {
    padding: 50px 0;
    height: 700px;
    color: #fff;
}
.footer__section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer__section--image {
    width: 100%;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
    background: url(../img/bottom_hero.png) center center no-repeat;
    background-size: cover;
    max-height: 700px;
    height: 100%;
    z-index: -1;
}
.footer__section--title {
    font-size: 48px;
    line-height: 48px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 40%;
}
@media only screen and (max-width: 600px) {
    .footer__section--title {
        width: 100%;
    }
}
.footer__section--subtitle {
    font-size: 20px;
    font-family: "Montserrat-Regular", sans-serif;
    width: 40%;
    margin-bottom: 50px;
}
@media only screen and (max-width: 600px) {
    .footer__section--subtitle {
        width: 100%;
    }
}
.footer__bottom {
    height: 500px;
    padding: 100px 0;
    background-color: #db4255;
    color: #fff;
    position: relative;
}
@media only screen and (max-width: 600px) {
    .footer__bottom {
        height: auto;
    }
}
.footer__bottom--title {
    font-size: 48px;
    line-height: 48px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 40%;
	margin-top: -70px;
}
.footer__bottom--subtitle {
    font-size: 20px;
    font-family: "Montserrat-Light", sans-serif;
    width: 70%;
    margin-bottom: 30px;
}
.footer__bottom--decorator {
    height: 5px;
    width: 45px;
    background: #fff;
    margin: 20px 0;
    display: block;
}
.footer__bottom--image {
    width: 100%;
    left: -45%;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(../img/footer_bg.png) center center no-repeat;
    background-size: contain;
    max-height: 500px;
    height: 100%;
    top: 0;
    opacity: 0.3;
}
@media only screen and (max-width: 600px) {
    .footer__bottom--image {
        left: -25%;
    }
}
.footer .input {
    border: 0;
    border-radius: 7px;
    padding: 10px 10px;
    width: 48%;
    margin: 10px 0;
    outline: 0;
}
@media only screen and (max-width: 600px) {
    .footer .input {
        width: 100%;
        padding: 20px 10px;
    }
}
.footer .input__name {
    width: 100%;
}
.footer .input__checkbox,
.footer .input__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}
.footer .input__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer .input__checkbox {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
}
@media only screen and (max-width: 600px) {

.home__description--title {
    font-size: 35px;
    line-height: 42px;
}

.selected {
    width: 100%;
    border: 0;
    padding: 15px 19px;
    cursor: pointer;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 21px;
    color: #fff;
    font-family: "CourierPrime-Regular", sans-serif;
}

.options li {
    background: #fff;
    cursor: pointer;
    padding: 15px 19px;
    font-family: "CourierPrime-Regular", sans-serif;
    font-size: 21px;
    border-radius: 0px;
}

.home__description{
	width: 100%;
}

.container {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.home__description--subtitle {
    font-size: 16px;
}

.about__description--title{
	font-size: 39px;
	line-height: 40px;
}

.about__description--subtitle {
    font-size: 16px;
    font-family: "Montserrat-Regular", sans-serif;
}

.works__description--title {
    font-size: 39px;
    line-height: 40px;
    font-family: "CourierPrime-Regular", sans-serif;
}

.works__description--subtitle {
    font-size: 16px;
    font-family: "Montserrat-Regular", sans-serif;
}

.benefits__title {
    font-size: 39px;
    line-height: 40px;
    font-family: "CourierPrime-Regular", sans-serif;
}

.benefits {
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0;
	padding-bottom: 0px;
    position: relative;
}

.request-demo-button {
    background-color: #7fd691;
    border: 0;
    padding: 0;
    border-radius: 8px;
    height: 60px;
    cursor: pointer;
    outline: 0;
    font-size: 22px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 279px;
    line-height: 18px;
}

.btn__footer {
    background-color: #000;
    width: 100%;
    height: 60px;
    font-size: 22px;
}

.footer__section--title {
    font-size: 39px;
    line-height: 40px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 100%;
}

.footer__bottom--title {
    font-size: 40px;
    line-height: 39px;
    font-family: "CourierPrime-Regular", sans-serif;
    width: 53%;
    margin-top: -70px;
}

.footer .input__checkbox--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
}


.benefits__image{
	width: 150%;
}


.benefits__wrap--subtitle{
	font-size: 16px;
}


.benefits__wrap--title{
	margin-bottom: 25px;
}

.benefits__wrap--icon-transparency{
	margin-bottom: 20px;
}

.benefits__wrap--icon-automated{
	margin-bottom: 20px;
}

.benefits__wrap--icon-stream{
	margin-bottom: 20px;
}

.benefits__decorator{
	margin-bottom: 50px;
}

.benefits__separator{
	margin-top: 50px;
	margin-bottom: 50px;
}


    .footer .input__checkbox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.footer .input__checkbox label {
    width: 100%;
    margin-left: 10px;
    font-size: 16px;
    font-family: "Montserrat-Light", sans-serif;
}
.footer .input__checkbox .check {
    margin-top: 5px;
}
.footer .input__checkbox--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 65%;
}

.footer__realbottom {
    position: relative;
    z-index: 999;
    margin-top: 2em;
}
.footer__realbottom .container {
    justify-content: flex-end;
}
.footer__realbottom a {
    color: #fff;
    display: inline-block;
    margin-left: 2em;
}

.generalcontent {
    margin: 3em 0;
}
.generalcontent h4,
.generalcontent h3 {
    margin-top: 1em;
}
