mmeo@charset "UTF-8";

/*--reset.css--*/

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, dialog,
footer, header, menu, nav, section {
    display: block;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}

blockquote, q {
    quotes: "" "";
}

a img {
    border: none;
}

input:focus {
    outline: none;
}

body, html {
    height: 100%;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/*inputs*/

.formContainer{
    width: 100%;
    max-width: 640px;
    padding: 40px 32px 80px;
    margin: auto;
}

@media screen and (max-width: 900px) {
    .formContainer {
        max-width: 600px;
        padding: 24px 40px 64px;
    }
}

@media screen and (max-width: 600px) {
    .formContainer {
        padding: 16px 16px 48px;
    }
}

.infoInput {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
    margin: 0 0 12px;
    box-sizing: border-box;
    background-color: #F7F7F7;
    border: #F0F0F0 solid 1px;
    border-radius: 8px;
    transition: border-color 0.3s ease-in-out;
}

.inputsHeading {
    font-size: 12px;
    margin: 16px 0 8px;
    padding: 0 0 4px;
    color: #7F7F7F;
}

.label {
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.infoInput .label {
    position: relative;
    font-size: 11px;
    font-weight: 500;
    line-height: 12px;
    padding: 10px 0 0 16px;
    color: #606060;
}

.infoInput input{
    display: block;
    width: 100%;
    height: 32px;
    font-family: 'Nunito', 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0 16px;
    box-sizing: border-box;
    margin: 0;
}

.infoInput select{
    background: url("../img/selectArrow.svg") no-repeat right 12px center;
    background-size: 10px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    font-family: 'Nunito', 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    width: 100%;
    height: 54px;
    padding: 22px 34px 0 16px;
    margin: -22px 0 0;
    box-sizing: border-box;
}

.infoInput select::-ms-expand {
    display: none;
}

.infoInput textarea{
    width: 100%;
    font-family: 'Nunito', 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 16px;
    box-sizing: border-box;
    margin: 6px 0 0;
    resize: none;
}

.infoInput select option {
    font-size: 14px;
}

.infoInput input[type="text"]::-webkit-input-placeholder,
.infoInput input[type="text"]:-ms-input-placeholder,
.infoInput input[type="text"]:-ms-input-placeholder,
.infoInput input[type="text"]:-ms-input-placeholder,
.infoInput input[type="password"]::-webkit-input-placeholder,
.infoInput input[type="password"]:-ms-input-placeholder,
.infoInput input[type="password"]:-ms-input-placeholder,
.infoInput input[type="password"]:-ms-input-placeholder,
.infoInput textarea::-webkit-input-placeholder,
.infoInput textarea:-ms-input-placeholder,
.infoInput textarea:-ms-input-placeholder,
.infoInput textarea:-ms-input-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7F7F7F;
    font-style: normal;
}

.infoInput input[type="text"]::placeholder,
.infoInput input[type="password"]::placeholder,
.infoInput textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7F7F7F;
    font-style: normal;
    opacity: 1;
}

.infoInput:focus-within{
    border-color: #1EB7E0;
}

.infoInput:focus-within .label{
    color: #1EB7E0;
}

.checkbox, .radio {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 0 0 30px;
    margin: 16px 0;
}

.checkbox .label, .radio .label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
    transition: color 0.3s ease-in-out;
}

.checkbox input, .radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FFFFFF;
    border: #111111 solid 1px;
    border-radius: 2px;
    transition: border-color 0.2s ease-in-out;
}

.radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FFFFFF;
    border: #111111 solid 1px;
    border-radius: 50%;
    transition: border-color 0.2s ease-in-out;
}

.checkbox .checkmark:after, .radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after,
.radio input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    content: "";
    background: url("../img/custom_check.svg") no-repeat center center;
    background-size: 10px 8px;
    top: 4px;
    left: 2px;
    width: 10px;
    height: 8px;
}

.radio .checkmark:after {
    content: "";
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: #111111;
    border-radius: 50%;
}

.formSubmit {
    display: block;
    width: 100%;
    height: 56px;
    background-color: #79B12A;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 56px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin: 32px 0 0;
    border: none;
    outline: none;
    transition: background-color 0.3s ease-in-out;
}

.errorInput{
    border-color: #DC5151;
}

.errorInput .label{
    color: #DC5151;
    padding: 10px 0 0 24px;
}

.errorInput .label::before{
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    content: '!';
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #DC5151;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    line-height: 12px;
    text-align: center;
}

.errors{
    padding: 16px 0;
    border: #DC5151 solid 1px;
    border-radius: 8px;
}

.errors li{
    list-style-type: none;
    font-size: 14px;
    padding: 0 16px;
    box-sizing: border-box;
    color: #DC5151;
}

.errors li::before{
    content: '•';
    margin: 0 8px 0 0;
}

/*Common*/

h1 {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25em;
}

h2 {
    margin: 32px 0 16px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25em;
}

h3, h4, h5, h6 {
    margin: 32px 0 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25em;
}

p {
    margin: 16px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
}

i, p i {
    font-style: italic;
}

b, p b {
    font-weight: 700;
}

a, p a {
    color: #1EB7E0;
    transition: opacity 0.3s ease-in-out;
}

ul:not([class]) {
    margin: 32px 0;
    list-style-type: none;
}

ul:not([class]):last-child {
    margin: 32px 0 0;
}

ul:not([class]) li {
    background: url("../icons/li_bullet.svg") no-repeat 0 0;
    background-size: 16px 16px;
    font-size: 15px;
    line-height: 1.6em;
    padding: 0 0 0 32px;
    transition: color 0.3s ease-in-out;
    margin: 0 0 16px;
}

ul:not([class]) li:last-child {
    margin: 0;
}

article ol {
    list-style-type: none;
    counter-reset: item;
    margin: 32px 0;
    padding: 0;
}

article ol li {
    display: table;
    counter-increment: item;
    font-size: 15px;
    line-height: 1.4em;
    color: #111111;
    margin: 0 0 16px;
    transition: color 0.3s ease-in-out;
}

article ol li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
    color: #1EB7E0;
    font-weight: 700;
}

table{
    margin: 32px 0;
    border-collapse: collapse;
    text-align: left;
    width: 100%;
    table-layout: auto;
}

table th, td{
    padding: 18px 16px;
    font-size: 14px;
    width: auto;
    min-width: 160px;
}

table th{
    background-color: #606060;
    font-weight: 600;
    color: #FFFFFF;
}

table tbody tr:nth-child(even){
    background-color: #F7F7F7;
}

.qContent table tbody tr:nth-child(even){
    background-color: #FFFFFF;
}

@media screen and (max-width: 900px) {
    p, ul:not([class]) li {
        font-size: 14px;
    }

    article p, article ul:not([class]) li {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    p, ul:not([class]) li, article p, article ul:not([class]) li {
        font-size: 15px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }
}

/*common Containers*/

.pageContainer {
    width: 100%;
    min-width: 320px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #111111;
    padding: 80px 0 0;
}

.pageContent {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

section, .container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 16px;
}

.pageContent::after, section::after, .container::after {
    content: '';
    display: table;
    clear: both;
}


.col50 {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0 16px;
}

.padLR {
    padding-left: 32px;
    padding-right: 32px;
}

.padTop0 {
    padding-top: 0;
}

.padBtm0 {
    padding-bottom: 0;
}

.img-textSection {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pageTopSection {
    padding-top: 64px;
    padding-bottom: 0;
}

@media screen and (max-width: 1280px) {

    section, .container {
        padding: 64px 24px;
    }

    .padLR {
        padding-left: 40px;
        padding-right: 40px;
    }

    .padTop0 {
        padding-top: 0;
    }

    .padBtm0 {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 900px) {

    section, .container {
        padding: 48px 16px;
    }

    .padLR {
        padding-left: 32px;
        padding-right: 32px;
    }

    .padTop0 {
        padding-top: 0;
    }

    .padBtm0 {
        padding-bottom: 0;
    }

}

@media screen and (max-width: 600px) {
    .pageContainer {
        padding: 64px 0 0;
    }

    section, .container {
        padding: 32px 8px;
    }

    .padLR {
        padding-left: 16px;
        padding-right: 16px;
    }

    .col50 {
        width: 100%;
        padding: 0 8px;
    }

    .padTop0 {
        padding-top: 0;
    }

    .padBtm0 {
        padding-bottom: 0;
    }
}

/*Header*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #FFFFFF;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.headerContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    height: 80px;
    width: 100%;
    max-width: 1280px;
    padding: 0 32px;
    margin: auto;
}

.burgerMenu {
    display: none;
    flex: none;
    width: 32px;
    height: 32px;
    background: url("../icons/burgerIcon.svg") no-repeat center center;
    background-size: 32px 32px;
    margin: 0 16px 0 0;
    transition: background 0.3s ease-in-out;
}

.burgerMenu.closeBurger {
    background: url("../icons/close.svg") no-repeat center center;
    background-size: 32px 32px;
}

.headerLogo {
    display: block;
    flex: none;
    width: 136px;
    height: 32px;
    background: url("../img/payxpress_logo_color.svg") no-repeat 0 0;
    background-size: 136px 32px;
    overflow: hidden;
    text-indent: -10000px;
}

/*
.bsplitLogo {
    height: 32px;
    margin-left: 10px;
}
*/

nav {
    flex: auto;
}

nav a {
    transition: color 0.3s ease-in-out;
}

.nav {
    list-style-type: none;
    font-size: 0;
    padding: 0 24px;
    text-align: center;
}

.nav > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.nav > li > a {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    padding: 16px 24px;
}

.navExpandable {
    position: relative;
}

.navExpandable > span {
    position: relative;
    cursor: pointer;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    padding: 16px 40px 16px 24px;
    transition: opacity 0.3s ease-in-out;
}

.navExpandable > span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform-origin: center;
    transform: translate(0, -50%);
    right: 20px;
    width: 8px;
    height: 8px;
    background: url("../img/expandableBG.svg") no-repeat 0 0;
    background-size: 8px 8px;
}

.navLvl2 {
    position: absolute;
    top: 100%;
    left: -8px;
    width: 240px;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.navLvl2 li a {
    display: block;
    width: 100%;
    padding: 12px 32px;
    font-size: 15px;
    text-align: left;
    text-decoration: none;
    color: #111111;
}

.navLvl2 li:first-child > a {
    padding: 32px 32px 12px;
}

.navLvl2 li:last-child > a {
    padding: 12px 32px 32px;
}

.langSelect {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.langSwitch {
    flex: none;
    position: relative;
    padding: 0 12px;
}

.langCurrent {
    cursor: pointer;
    width: 32px;
    height: 56px;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    color: #111111;
    transition: opacity 0.3s ease-in-out;
}

.langWrap {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    padding: 20px 32px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.langClose {
    display: none;
    border-top: #E5E5E5 solid 1px;
    padding: 8px 0;
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 400;
    color: #838383;
}

.langWrap > a {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease-in-out;
}

.accountBtn {
    flex: none;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: #E5E5E5;
    transition: background-color 0.3s ease-in-out;
}

.accountBtn path {
    transition: stroke 0.3s ease-in-out;
}

@media screen and (max-width: 1280px) {

    .headerContainer {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1024px) {

    .burgerMenu {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        padding: 0;
        overflow-y: auto;
        transition: height 0.3s ease-in-out;
        background-color: #FFFFFF;
    }

    .nav.show {
        height: calc(100vh - 80px);
    }

    .nav > li {
        display: block;
        text-align: left;
    }

    .nav > li > a {
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 700;
    }

    .navExpandable > span {
        font-size: 16px;
        font-weight: 700;
        padding: 16px 48px 16px 32px;
    }

    .nav > li:first-child {
        border-top: #F7F7F7 solid 1px;
        padding-top: 16px;
    }

    .navExpandable > span::after {
        content: '';
        display: block;
        position: absolute;
        top: 24px;
        transform-origin: center;
        transform: rotate(-90deg);
        right: 32px;
    }

    .navExpandable > span.show::after {
        transform: rotate(0);
    }

    .navLvl2 {
        display: none;
        position: static;
        top: unset;
        left: unset;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
    }

    .navLvl2 li a {
        display: block;
        width: 100%;
        padding: 12px 32px 12px 40px;
        font-size: 14px;
        text-align: left;
        text-decoration: none;
        color: #111111;
    }

    .navLvl2 li:first-child > a, .navLvl2 li:last-child > a {
        padding: 12px 32px 12px 40px;
    }

    .langWrap {
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .langWrap > a {
        font-size: 14px;
        padding: 8px 0;
    }

    .langClose {
        display: block;
    }
}

@media screen and (max-width: 900px) {

    .headerContainer {
        padding: 0 32px;
    }

}

@media screen and (max-width: 600px) {

    .headerContainer {
        padding: 0 16px;
        height: 64px;
    }

    .headerLogo {
        width: 120px;
        height: 28px;
        background: url("../img/payxpress_logo_color.svg") no-repeat 0 0;
        background-size: 120px 28px;
    }

    .nav {
        top: 64px;
    }

    .nav.show {
        height: calc(100vh - 64px);
    }

    .langSwitch {
        padding: 0 12px;
    }

    .langCurrent {
        font-size: 14px;
    }

    .langWrap {
        position: fixed;
        top: 64px;
        left: 0;
        transform: translateX(0);
        width: 100%;
        background-color: #FFFFFF;
        border-radius: 0;
        padding: 0 32px 20px;
        box-shadow: 0 12px 12px rgba(0, 0, 0, 0.16);
    }

    .nav > li > a, .navExpandable > span {
        font-size: 15px;
        padding: 16px 24px;
    }

    .navLvl2 li a, .navLvl2 li:first-child > a, .navLvl2 li:last-child > a {
        padding: 12px 24px 12px 32px;
    }

}


/*Footer*/

footer {
    position: relative;
    background-color: #FAFAFA;
    padding: 64px 0;
}

footer .container {
    position: static;
    padding-top: 0;
    padding-bottom: 0;
}

.footerTop {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 16px 48px 16px;
}

.footerLogo {
    flex: none;
    display: block;
    width: 136px;
    height: 24px;
    background: url("../img/payxpress_logo_black.svg") no-repeat center center;
    background-size: 136px 24px;
    overflow: hidden;
    text-indent: -10000px;
}

footer .socialLinks {
    flex: none;
    margin-left: auto;
}

.socialLinks {
    list-style-type: none;
    font-size: 0;
}

footer .socialLinks li {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    margin: 0 24px 0 0;
    transition: opacity 0.3s ease-in-out;
}

footer .socialLinks li img{
    width: 100%;
    height: auto;
}

footer .socialLinks li:last-child {
    margin: 0;
}

.socialLinks li {
    transition: opacity 0.3s ease-in-out;
}

.socialLinks li img {
    display: block;
    margin: 0;
    padding: 0;
}

.footerLinks {
    display: flex;
    flex-direction: row;
    margin: 0 0 40px;
}

.footerCol {
    flex: auto;
    padding: 0 16px;
}

.footerColName {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
}

.footerColLinks li {
    list-style-type: none;
    width: 100%;
}

.footerColLinks li a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footerInfo {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    margin: 0 0 8px;
    padding: 0 16px;
}


@media screen and (max-width: 1280px) {

    footer {
        padding: 48px 0;
    }

    .footerTop {
        padding: 0 16px 32px 16px;
    }
}

@media screen and (max-width: 900px) {

    .footerLinks {
        display: block;
        margin: 0 0 24px;
    }

    .footerColLinks {
        padding: 0 0 16px 8px;
    }

    .footerCol {
        flex: none;
    }

    .footerColName {
        cursor: pointer;
        padding: 16px 24px 16px 0;
        margin: 0;
        border-bottom: #F1F1F1 solid 1px;
    }

    .footerColName::after {
        content: '';
        display: block;
        position: absolute;
        top: 24px;
        transform-origin: center;
        transform: rotate(-90deg);
        right: 0;
        width: 8px;
        height: 8px;
        background: url("../img/expandableBG.svg") no-repeat 0 0;
        background-size: 8px 8px;
    }

    .footerColName.show::after {
        transform: rotate(0);
    }

    .footerColLinks {
        display: none;
    }

}

@media screen and (max-width: 600px) {

    footer {
        background-color: #FAFAFA;
        padding: 48px 0 88px;
    }

    .footerTop {
        display: block;
        flex-direction: unset;
        padding: 0 8px 16px 8px;
    }

    .footerLogo {
        opacity: 0.6;
    }

    .footerCol {
        flex: auto;
        padding: 0 8px;
    }

    footer .socialLinks {
        position: absolute;
        bottom: 40px;
        left: 16px;
    }

    footer .socialLinks li {
        margin: 0 16px 0 0;
        opacity: 0.7;
    }

    .footerInfo {
        font-size: 13px;
        padding: 0 8px;
    }
}

/*Content*/

.imgSection, .textSection {
    width: 50%;
    padding: 0 16px;
}

.imgWrap_rounded {
    background: url("#") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 40px 200px;
}

.sectionTextWrap {
    width: 100%;
    max-width: 448px;
    margin: 0 auto;
}

.commonBtn {
    display: inline-block;
    min-width: 200px;
    padding: 21px 16px;
    margin: 16px 0 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    background-color: #79B12A;
    transition: background-color 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}
.commonBtn.alt{
    float: right;
    margin: 32px 0 auto auto;
    width: min-content;
}


.pageTopSection .commonBtn {
    float: right;
}

.textFirst .textSection {
    order: 1;
}

.textFirst .imgSection {
    order: 2;
}

.textFirst .imgWrap_rounded {
    border-radius: 200px 40px;
}

.sectionTextWrap h1, .sectionTextWrap h2, .sectionTextWrap h3,
.sectionTextWrap h4, .sectionTextWrap h5, .sectionTextWrap h6,
.sectionTextWrap > span {
    display: block;
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1100px) {

    .pageTopSection {
        padding-top: 32px;
    }

    .imgSection {
        width: 55%;
        padding: 0 20px 0 16px;
    }

    .textSection {
        width: 45%;
        padding: 0 16px 0 20px;
    }

    .textFirst .imgSection {
        width: 55%;
        padding: 0 16px 0 20px;
    }

    .textFirst .textSection {
        width: 45%;
        padding: 0 20px 0 16px;
    }

    .sectionTextWrap h1, .sectionTextWrap h2, .sectionTextWrap h3,
    .sectionTextWrap h4, .sectionTextWrap h5, .sectionTextWrap h6,
    .sectionTextWrap > span {
        font-size: 28px;
        line-height: 1.2em;
    }

}

@media screen and (max-width: 1024px) {

    .pageTopSection {
        padding-top: 16px;
    }

    .imgWrap_rounded {
        height: 360px;
        border-radius: 36px 180px;
    }

    .textFirst .imgWrap_rounded {
        border-radius: 180px 36px;
    }

}

@media screen and (max-width: 900px) {

    .pageTopSection {
        padding-top: 8px;
    }

    .imgWrap_rounded {
        height: 300px;
        border-radius: 24px 140px;
    }

    .textFirst .imgWrap_rounded {
        border-radius: 140px 24px;
    }

    .imgSection, .textFirst .imgSection {
        padding: 0 16px;
    }

    .textSection, .textFirst .textSection {
        padding: 0 16px;
    }

    .sectionTextWrap h1, .sectionTextWrap h2, .sectionTextWrap h3,
    .sectionTextWrap h4, .sectionTextWrap h5, .sectionTextWrap h6,
    .sectionTextWrap > span {
        font-size: 26px;
    }

    .commonBtn {
        min-width: 160px;
        padding: 17px 12px;
        margin: 8px 0 0;
    }

    .pageTopSection .commonBtn {
        float: none;
    }

}

@media screen and (max-width: 600px) {

    .img-textSection {
        display: block;
    }

    .imgSection, .textFirst .imgSection {
        width: 100%;
        padding: 0 8px;
        margin: 0 0 24px;
        order: unset;
    }

    .textSection, .textFirst .textSection {
        width: 100%;
        padding: 0 8px;
        order: unset;
    }

    .imgWrap_rounded, .textFirst .imgWrap_rounded {
        height: 260px;
        border-radius: 104px 24px;
        margin: auto;
    }

    .sectionTextWrap h1, .sectionTextWrap h2, .sectionTextWrap h3,
    .sectionTextWrap h4, .sectionTextWrap h5, .sectionTextWrap h6,
    .sectionTextWrap > span {
        margin: 0;
        padding: 0;
    }

    .sectionTextWrap p {
        margin: 16px 0;
        padding: 0;
    }

    .commonBtn {
        width: 100%;
        padding: 21px 8px;
        margin: 16px 0 0;
    }
}


.paymentList {
    list-style-type: none;
    font-size: 0;
    text-align: center;
}

.paymentList li {
    position: relative;
    display: inline-block;
    vertical-align: center;
    width: 80px;
    height: 80px;
    background-color: #FAFAFA;
    border-radius: 8px;
    margin: 4px;
}

.paymentList li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 56px;
    height: auto;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1024px) {

    .paymentList li {
        width: 64px;
        height: 64px;
        padding: 16px 0;
    }

    .paymentList li img {
        width: 44px;
    }

}

@media screen and (max-width: 600px) {

    .paymentList {
        padding: 0;
        max-width: 432px;
        margin: auto;
    }

    .paymentList li {
        position: relative;
        width: calc(25% - 4px);
        height: auto;
        border-radius: 4px;
        margin: 2px;
        padding: 0;
        box-sizing: content-box;
    }

    .paymentList li:after {
        content: '';
        display: block;
        padding-bottom: 100%;
    }

}

.featuresList {
    list-style-type: none;
    font-size: 0;
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
}

.featureItem {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    text-align: left;
    margin: auto;
}
.featureItem2{
    display: flex;
    flex-direction: row;
    grid-gap: 30px;
    padding: 32px;
}
.featureItem2.alt{
    margin-bottom: 50px;
}
.featureItem2 > *{
    margin: auto!important;
    text-align: left;
}
.featureItem2 .featureIcon{
    min-width: 72px;
    min-height: 72px;
}
.col2Wrap {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 32px 16px;
}

.col2Wrap .featureItem {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 0 0 96px;
}

.col3Wrap {
    display: inline-block;
    vertical-align: top;
    width: 33.33333%;
    max-width: 376px;
    padding: 32px;
}

.featureItem h1, .featureItem h2, .featureItem h3,
.featureItem h4, .featureItem h5, .featureItem h6,
.featureItem > span {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
}

.featureItem p {
    margin: 0;
}

.featureIcon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #111111;
    margin: 0 0 24px;
}

.col2Wrap .featureIcon {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

.featureIcon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 40px;
    height: auto;
    margin: 0;
    padding: 0;
}

.featureLink {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #79B12A;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.gridContainer{
    display: none;
    position: fixed;
    width: 300px;
    height: 300px;
    background: black;
    top: 275px;  
}
.closeBtn {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    width: 35px;
    height: 35px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    background-color: #000000;
    cursor: pointer;
    z-index: 2;
    border: none;
    transition: background-color 0.25s ease-in-out;
    z-index: 2;
  }
  .closeBtn:hover::after {
      content: "Close";
      position: absolute;
      top: 40px;
      right: 0px;
      background-color: #000;
      color: #fff;
      padding: 5px;
      border-radius: 5px;
      font-size: 14px;
    }
  .cross{
      width: 13px;
      height: 13px;
      margin: auto!important; 
  }
  
  .closeBtn:hover {
    background-color: #404040;
  }
.featureItemGrid{
    display: grid;
    background-color: white;
    top: 5%;  
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    position: fixed;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, min-content);
    box-sizing: border-box;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.5);
    margin: auto;
    z-index: 100;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    transform-origin: center;
    pointer-events: none;
    border-radius: 4px;
    background: rgba(247, 249, 252, 1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 15px 30px rgba(0, 0, 0, 0.3), 0px 5px 10px rgba(0, 0, 0, 0.2), 0px 2px 4px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    grid-gap: 5px;
    padding: 5px;
}
.featureItemGrid::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #f5f5f5;
  }
  
  .featureItemGrid::-webkit-scrollbar-thumb {
    background-color: #79B12A;
    border-radius: 10px;
    max-height: 8px;
  }
  
  .featureItemGrid::-webkit-scrollbar-thumb:hover {
    background-color: #2e8b57;
  }
  
  .featureItemGrid::-webkit-scrollbar-track {
    border-radius: 10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .featureItemGrid::-webkit-scrollbar-track:hover {
    background-color: #f1f1f1;
  }
  
  /* Firefox scrollbar */
  .featureItemGrid {
    scrollbar-width: thin;
    scrollbar-color: #79B12A #f5f5f5;
  }
  
  .featureItemGrid::-moz-scrollbar-thumb {
    background-color: #79B12A;
    border-radius: 10px;
    max-height: 8px;
  }
  
  .featureItemGrid::-moz-scrollbar-thumb:hover {
    background-color: #2e8b57;
  }
  
  .featureItemGrid::-moz-scrollbar-track {
    border-radius: 10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .featureItemGrid::-moz-scrollbar-track:hover {
    background-color: #f1f1f1;
  }
  
  /* IE scrollbar */
  .featureItemGrid {
    -ms-overflow-style: none;
  }
  
  .featureItemGrid::-ms-scrollbar {
    width: 4px;
    height: 8px;
  }
  
  .featureItemGrid::-ms-scrollbar-thumb {
    background-color: #79B12A;
    border-radius: 10px;
    max-width: 8px;
  }
  
  .featureItemGrid::-ms-scrollbar-thumb:hover {
    background-color: #2e8b57;
  }
  
  .featureItemGrid::-ms-scrollbar-track {
    border-radius: 10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .featureItemGrid::-ms-scrollbar-track:hover {
    background-color: #f1f1f1;
  }
.featureItemGrid.altClass{
    opacity: 1;
    transform: scale(1) translateX(-50%);
    pointer-events: auto;
}
.featureItemGrid p{
    margin: auto;
    font-size: 12px;
    text-align: center;
}
.featureItemGrid .title{
    font-weight: bold;
    font-size: 13px;
}
.bigColTitle{
    font-size:16px!important;
    padding: 0 20px;
}
.colTitle{
    background: white;
}
.colTitle p{
    font-weight: bold;
    font-size: 13px;
}
.gridCell {
  display: flex;
  flex-direction: column;
  min-width: 30px;
  padding: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.5);
}
.gridCell.greenBg {
  /*background-color: rgba(115, 166, 39, .6);*/
  
}
.gridCell.empty {
    background-color: grey;
}
/* .featureItemGrid > div:nth-child(4n-2),
.featureItemGrid > div:nth-child(4n-1) {
  background-color: #eceee8;
}
.featureItemGrid > div:not(:nth-child(4n-2)):not(:nth-child(4n-1)) {
    background-color: #eaf1f5;
  } */

.featureItemGrid > div:nth-child(2n){
    background-color: #e5edd6;
}
.featureItemGrid > div:nth-child(2n-1){
    background-color: #d5e7f1;
}
.arrowUl li {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-gap: 10px;
    background: none!important; 
}
.arrowUl li img{transition: .15s;}
.arrowUl li:hover img {
    transform:scale(1.2);
}
.arrowUl li p{
 margin: auto auto auto 0;
 text-align: left;
}
.arrowUl img{
    margin: 6px auto auto auto;
    width: 17px!important;
}
.titleLi{
    display: block!important;
    padding-bottom: 12px;
}

@media screen and (max-width: 1280px) {

    .featuresList {
        padding: 32px 24px;
    }

}

@media screen and (max-width: 900px) {

    .featuresList {
        padding: 24px 16px;
    }

    .col2Wrap, .col3Wrap {
        padding: 24px;
    }

    .col2Wrap .featureItem {
        padding: 0 0 0 80px;
    }

    .featureIcon {
        width: 64px;
        height: 64px;
    }

    .featureIcon img {
        width: 32px;
    }

    .featureItem h1, .featureItem h2, .featureItem h3,
    .featureItem h4, .featureItem h5, .featureItem h6,
    .featureItem > span {
        font-weight: 700;
        margin: 0 0 8px;
    }

    .featureItemGrid{
        width: 65%;
    }

    .featureItemGrid p {
        font-size: 12px;
    }

}

@media screen and (max-width: 780px) {

    .col3Wrap {
        display: block;
        width: 100%;
        max-width: unset;
        padding: 24px;
    }
    .featureItem2{
        flex-direction: column;
    }

}

@media screen and (max-width: 600px) {

    .featuresList {
        padding: 12px 8px;
    }

    .col3Wrap {
        padding: 20px 8px;
    }

    .col2Wrap {
        width: 100%;
        max-width: unset;
        padding: 20px 8px;
    }

    .col2Wrap .featureItem {
        padding: 0 0 0 80px;
    }

    .featureItemGrid{
        width: 85%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(7, min-content);
    }

    .featureItemGrid p {
        font-size: 12px;
    }
}

.sectionHeading h1, .sectionHeading h2, .sectionHeading h3,
.sectionHeading h4, .sectionHeading h5, .sectionHeading h6,
.sectionHeading > span {
    display: block;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.pricesSection {
    text-align: center;
}

.pricesList {
    list-style-type: none;
    font-size: 0;
}

.pricesList li {
    display: inline-block;
    vertical-align: top;
    width: 33.33333%;
    max-width: 344px;
    padding: 32px;
}

.bigNumber {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    line-height: 1em;
    color: #1EB7E0;
}

.bigNumber > span {
    font-size: 32px;
    font-weight: 400;
}

.pricesList p {
    margin: 0;
}

.pricesSection .commonBtn {
    margin: 0 auto;
}

@media screen and (max-width: 1100px) {

    .sectionHeading h1, .sectionHeading h2, .sectionHeading h3,
    .sectionHeading h4, .sectionHeading h5, .sectionHeading h6,
    .sectionHeading > span {
        font-size: 26px;
        line-height: 1.2em;
    }

    .bigNumber {
        font-size: 56px;
    }

    .bigNumber > span {
        font-size: 24px;
    }

    .pricesList li {
        padding: 32px 24px;
    }

}

@media screen and (max-width: 900px) {

    .pricesList li {
        padding: 32px 16px;
    }
}

@media screen and (max-width: 600px) {

    .pricesSection {
        text-align: left;
        padding-left: 16px;
        padding-right: 16px;
    }

    .sectionHeading h1, .sectionHeading h2, .sectionHeading h3,
    .sectionHeading h4, .sectionHeading h5, .sectionHeading h6,
    .sectionHeading > span {
        text-align: left;
        margin: 0 0 8px;
    }

    .pricesList li {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        padding: 20px 0;
    }

    .bigNumber {
        text-align: left;
        padding: 0 0 0 8px;
    }

    .pricesSection .commonBtn {
        margin-top: 20px;
    }

}


.sliderSection {
    font-size: 0;
    padding: 80px 32px;
}

.sliderInfo {
    display: inline-block;
    vertical-align: top;
    width: 384px;
    padding: 0 64px 0 0;
}

.sliderInfo h1, .sliderInfo h2, .sliderInfo h3,
.sliderInfo h4, .sliderInfo h5, .sliderInfo h6,
.sliderInfo > span {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
}

.sliderWrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 384px);
}

.industryItem {
    position: relative;
    display: block;
    width: 260px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #444444;
    text-decoration: none;
}

.industryItem > img {
    display: block;
    height: 100%;
    width: auto;
    margin: 0 auto;
    padding: 0;
}

.itemName {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 24px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
    color: #FFFFFF;
}

.itemName > span {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width: 1280px) {

    .sliderSection {
        font-size: 0;
        padding: 64px 0 64px 40px;
    }
}

@media screen and (max-width: 900px) {

    .sliderSection {
        padding: 48px 0 48px 40px;
    }

    .sliderInfo {
        width: 320px;
        padding: 0 48px 0 0;
    }

    .sliderInfo h1, .sliderInfo h2, .sliderInfo h3,
    .sliderInfo h4, .sliderInfo h5, .sliderInfo h6,
    .sliderInfo > span {
        font-size: 26px;
        line-height: 1.2em;
    }

    .sliderWrap {
        width: calc(100% - 320px);
    }
}

@media screen and (max-width: 680px) {

    .sliderSection {
        padding: 32px 0 32px 16px;
    }

    .sliderInfo {
        display: block;
        width: 100%;
        padding: 0 16px 32px 0;
    }

    .sliderWrap {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {

    .sliderInfo h1, .sliderInfo h2, .sliderInfo h3,
    .sliderInfo h4, .sliderInfo h5, .sliderInfo h6,
    .sliderInfo > span {
        font-size: 26px;
        line-height: 1.2em;
    }

}


.productSection {
    display: flex;
    flex-direction: row;
    padding-right: 32px;
    padding-left: 32px;
}

.productSection .sliderInfo {
    display: block;
    flex: none;
    order: 2;
    padding: 0 0 0 64px;
}

.productSection .sliderWrap {
    display: block;
    flex: auto;
}

.productItem {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 32px 0 0;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.productItem img {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 240px;
    margin: 0 auto;
    padding: 0;
}

.deviceInfo {
    padding: 32px 24px;
}

.productName {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    color: #111111;
    margin: 0 0 2px;
    transition: color 0.3s ease-in-out;
}

.productID {
    font-size: 11px;
    font-weight: 400;
    color: #111111;
    transition: color 0.3s ease-in-out;
}

@media screen and (max-width: 1280px) {

    .productSection {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 1200px) {

    .productSection {
        padding-right: 0;
        padding-left: 40px;
    }

    .productSection .sliderInfo {
        order: unset;
        padding: 0 64px 0 0;
    }

    .productItem {
        width: 260px;
    }

}

@media screen and (max-width: 900px) {

    .productSection .sliderInfo {
        padding: 0 48px 0 0;
    }

}

@media screen and (max-width: 680px) {

    .productSection {
        display: block;
        padding-right: 0;
        padding-left: 16px;
    }

    .productSection .sliderInfo {
        padding: 0 16px 0 0;
        margin: 0 0 32px;
    }

}

/*Product*/

.specList {
    width: 100%;
    list-style-type: none;
}

.specList li {
    font-size: 0;
    padding: 8px 0;
}

.specParameter, .specValue {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    font-size: 13px;
    line-height: 1.5em;
}

.specParameter {
    padding: 0 8px 0 0;
    font-weight: 600;
}

.specValue {
    padding: 0 0 0 8px;
    text-align: right;
    font-weight: 400;
}

@media screen and (max-width: 900px) {

    .container.img-textSection {
        display: block;
    }

    .container.img-textSection .imgSection {
        width: 100%;
        margin-bottom: 48px;
    }

    .container.img-textSection .textSection {
        width: 100%;
    }

    .container.img-textSection .imgWrap_rounded {
        height: 360px;
    }

    .container.img-textSection .sectionTextWrap {
        width: 100%;
        max-width: unset;
        padding: 0 32px;
    }

    .specList li {
        font-size: 0;
        padding: 8px 0 16px;
        border-bottom: #E5E5E5 solid 1px;
        margin: 0 0 8px;
    }

    .specParameter, .specValue {
        font-size: 14px;
    }

    .specList li:last-child {
        border: none;
        margin: 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 600px) {

    .container.img-textSection .imgSection {
        margin-bottom: 32px;
    }

    .container.img-textSection .imgWrap_rounded {
        height: 240px;
    }

    .container.img-textSection .sectionTextWrap {
        padding: 0;
    }

    .specList {
        margin: 16px 0 0;
    }

    .specParameter, .specValue {
        display: block;
        width: 100%;
    }

    .specParameter {
        font-size: 12px;
        padding: 0;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .specValue {
        font-size: 15px;
        text-align: left;
        padding: 0;
    }

}

.bulletListContainer {
    padding-top: 48px;
    padding-bottom: 48px;
}

.bulletList {
    list-style: none;
    font-size: 0;
}

.bulletList li {
    background: url("../icons/li_bullet.svg") no-repeat 16px 16px;
    background-size: 32px 32px;
    display: inline-block;
    vertical-align: top;
    width: 33.33333%;
    padding: 32px 16px 32px 32px;
}

.bulletList li h1, .bulletList li h2, .bulletList li h3,
.bulletList li h4, .bulletList li h5, .bulletList li h6,
.bulletList li > span {
    font-size: 18px;
    margin: 0 0 16px;
}

.bulletList li p {
    margin: 0;
}

.bulletList li .featureLink {
    margin: 8px 0 0;
}

@media screen and (max-width: 1280px) {

    .bulletListContainer {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 900px) {

    .bulletList li {
        width: 50%;
    }

    .bulletListContainer {
        padding-top: 16px;
        padding-bottom: 16px;
    }

}

@media screen and (max-width: 560px) {

    .bulletListContainer {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .bulletList li {
        width: 100%;
        padding: 24px 0 24px 16px;
        background-position: 0 8px;
    }
}


.productItemSection {
    padding-bottom: 0;
}

.productImgWrap {
    background: url("../img/sliderBG.svg") no-repeat center center;
    background-size: contain;
    width: 50%;
    padding: 0 16px;
    float: left;
}

.pisItem {
    width: 100%;
    max-width: 480px;
    margin: auto;
}

.pisItem img {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
}

.productItemName {
    float: right;
    width: 50%;
    padding: 0 16px;
    margin: 0 0 24px;
}

.productItemName h1, .productItemName .productID, .piiWrap {
    max-width: 448px;
    margin: 0 auto;
}

.productItemInfo {
    float: right;
    width: 50%;
    padding: 0 16px;
}

.piiWrap p {
    margin: 0 0 24px;
}

.smallHeading {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 8px;
}

.acceptablePayments {
    list-style-type: none;
    font-size: 0;
}

.acceptablePayments li {
    display: inline-block;
    vertical-align: center;
    padding: 12px 24px 12px 0;
}

.acceptablePayments li img {
    display: block;
    width: 44px;
    height: auto;
    margin: 0;
    padding: 0;
    filter: grayscale(100%);
    opacity: 0.6;
}

.piiWrap .commonBtn {
    margin: 24px 0 0;
}

@media screen and (max-width: 1200px) {

    .productItemName h1, .productItemName .productID, .piiWrap {
        max-width: 400px;
    }

}

@media screen and (max-width: 900px) {

    .productItemSection {
        padding: 16px 32px 0;
    }

    .productItemName, .productImgWrap, .productItemInfo {
        float: none;
        width: 100%;
        max-width: unset;
        margin: auto;
        padding: 0;
    }

    .productImgWrap {
        margin: 0 0 40px;
    }

    .productItemName {
        margin: 0 0 24px;
    }

    .productItemName h1 {
        max-width: unset;
        font-weight: 400;
        margin: 0 0 4px;
    }

    .productItemName .productID, .piiWrap {
        max-width: unset;
        font-size: 12px;
    }


    .piiWrap {
        max-width: unset;
    }

    .piiWrap p {
        margin: 0 0 24px;
    }

    .piiWrap .smallHeading {
        text-align: center;
        margin: 0 0 8px;
    }

    .acceptablePayments {
        padding: 8px 0;
        text-align: center;
        border: #E5E5E5 solid 1px;
        border-radius: 8px;
    }

    .acceptablePayments li {
        padding: 8px 16px;
    }

    .piiWrap .commonBtn {
        padding: 21px 16px;
        min-width: unset;
        width: 100%;
        margin: 16px 0 0;
    }

}

@media screen and (max-width: 600px) {

    .productItemSection {
        padding: 16px 16px 0;
    }

    .productItemName h1 {
        font-size: 26px;
    }

    .piiWrap .smallHeading {
        text-align: left;
        margin: 0 0 8px;
    }

    .acceptablePayments {
        padding: 0;
        text-align: left;
        border: none;
        border-radius: 0;
    }

    .acceptablePayments li {
        padding: 8px 24px 8px 0;
    }

    .piiWrap .commonBtn {
        margin: 24px 0 0;
    }
}

.industryList {
    list-style-type: none;
    font-size: 0;
    text-align: center;
}

.industryList > a {
    display: inline-block;
    vertical-align: top;
    width: 80px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #111111;
    line-height: 1.2em;
    text-align: center;
    margin: 8px;
}

.iconWrap {
    position: relative;
    width: 100%;
    background-color: #1EB7E0;
    border-radius: 8px;
    margin: 0 0 8px;
}

.iconWrap:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.iconWrap > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 40px;
    height: auto;
    margin: 0;
    padding: 0;
}

.container .smallHeading {
    text-align: center;
}

@media screen and (max-width: 1024px) {

    .industryList > a {
        width: 64px;
    }

}

@media screen and (max-width: 600px) {

    .industryList {
        padding: 0 8px;
        max-width: 432px;
        margin: auto;
        text-align: left;
    }

    .industryList > a {
        position: relative;
        width: calc(25% - 4px);
        height: auto;
        border-radius: 4px;
        margin: 4px 2px;
        padding: 0;
        box-sizing: content-box;
        font-size: 10px;
    }

    .industryList li:after {
        content: '';
        display: block;
        padding-bottom: 100%;
    }

    .container .smallHeading {
        text-align: left;
        padding: 24px 8px 0;
    }

}

/*Industry*/

.topBannerSection {
    padding-top: 32px;
}

.indexPage .topBannerSection {
    padding-bottom: 0;
}

.tbsWrap {
    position: relative;
}

.topBanner {
    background: url("#") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 560px;
    border-radius: 200px 40px;
}

.tbsWrap .textSection {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: unset;
    height: 560px;
    padding: 0 16px 0 50%;
}

.tbsWrap .textSection h1, .tbsWrap .textSection h2, .tbsWrap .textSection h3,
.tbsWrap .textSection h4, .tbsWrap .textSection h5, .tbsWrap .textSection h6,
.tbsWrap .textSection > span, .tbsWrap .textSection p {
    color: #FFFFFF;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1200px) {

    .topBanner, .tbsWrap .textSection {
        height: 480px;
    }
}

@media screen and (max-width: 1024px) {

    .topBannerSection {
        padding-top: 16px;
    }

    .topBanner {
        border-radius: 180px 36px;
    }

    .tbsWrap .textSection {
        padding: 0 32px 0 48%;
    }

}

@media screen and (max-width: 900px) {

    .topBanner, .tbsWrap .textSection {
        height: 400px;
    }

    .topBannerSection {
        padding-top: 8px;
    }

    .topBanner {
        border-radius: 160px 24px;
    }

}

@media screen and (max-width: 600px) {

    .topBanner {
        height: 260px;
        margin: 0 0 24px;
    }

    .tbsWrap .textSection {
        position: static;
        top: unset;
        left: unset;
        display: block;
        height: auto;
        padding: 0;
    }

    .topBanner {
        border-radius: 104px 24px;
    }

    .tbsWrap .textSection h1, .tbsWrap .textSection h2, .tbsWrap .textSection h3,
    .tbsWrap .textSection h4, .tbsWrap .textSection h5, .tbsWrap .textSection h6,
    .tbsWrap .textSection > span, .tbsWrap .textSection p {
        color: #111111;
        text-shadow: none;
    }

}

.text-listSection {
    display: flex;
    flex-direction: row;
    padding-bottom: 48px;
}

.listSection {
    width: 50%;
}

.listSection .bulletList li {
    width: 50%;
}

@media screen and (max-width: 1200px) {
    .text-listSection {
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 1024px) {

    .text-listSection {
        display: block;
        padding-bottom: 16px;
    }

    .text-listSection .textSection, .text-listSection .listSection {
        width: 100%;
    }

    .text-listSection .sectionTextWrap {
        margin: 0 0 24px;
        max-width: unset;
    }
}

@media screen and (max-width: 600px) {

    .text-listSection {
        padding-bottom: 8px;
    }

    .listSection .bulletList {
        padding: 0 8px;
    }

    .listSection .bulletList li {
        width: 100%;
    }

    .text-listSection .textSection h1, .text-listSection .textSection h2, .text-listSection .textSection h3,
    .text-listSection .textSection h4, .text-listSection .textSection h5, .text-listSection .textSection h6,
    .text-listSection .textSection > span, .text-listSection .textSection p {
        padding: 0;
    }

}

.imgWrap_corner {
    width: 100%;
}

.imgWrap_corner img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;

}

@media screen and (max-width: 900px) {
    .break900 {
        display: block;
    }

    .break900 .imgSection {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 32px;
    }

    .break900 .textSection {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .break900 .sectionTextWrap {
        width: 100%;
        max-width: unset;
    }
}


/*article list*/

.pageHeading {
    width: 100%;
    padding: 40px 32px;
}

.pageHeading h1 {
    margin: 0;
}

.contentWrap{
    position: relative;
    display: flex;
    flex-direction: row;
}

.content {
    width: 100%;
    max-width: 864px;
    padding: 0 32px;
}

.blogArticleLIst{
    width: 100%;
    padding: 0 0 64px;
}

.blogItem{
    display: flex;
    width: 100%;
    flex-direction: row;
    text-decoration: none;
    margin-bottom: 40px;
}

.blogRelated{
    width: 100%;
    font-size: 0;
}

.blogRelated .blogItem{
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 16px;
    margin-bottom: 0;
}

.biImg{
    flex: none;
    width: 240px;
    height: 160px;
    margin: 0 40px 0 0;
    border-radius: 8px;
    overflow: hidden;
}

.blogRelated .biImg{
    width: 100%;
    height: auto;
    margin: 0 0 24px;
}

.biImg img{
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.biContent{
    flex: auto;
    width: 100%;
    font-size: 0;
}

.author, .date{
    display: inline-block;
    vertical-align: top;
    font-size: 11px;
    font-weight: 400;
    color: #606060;
}

.author{
    padding: 0 8px 0 0;
    border-right: #606060 solid 1px;
    margin: 0 8px 0 0;
}

.biContent h3 {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 4px 0 8px;
    transition: color 0.2s ease-in-out;
}

.blogRelated .biContent h3 {
    font-size: 18px;
    font-weight: 600;
}

.biContent p{
    margin: 0;
    color: #111111;
}

.pages {
    width: 288px;
    font-size: 0;
    padding: 0 0 80px;
}

.pages a{
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #000000;
    text-decoration: none;
    border-radius: 16px 8px;
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

a.currentPage {
    background-color: #1EB7E0;
    color: #FFFFFF;
}

aside{
    flex: none;
    width: 376px;
    padding: 0 32px;
}

.tagList{
    width: 100%;
    list-style-type: none;
    font-size: 0;
    margin: 0 0 80px;
}

.tagList li{
    display: inline-block;
    vertical-align: top;
}

.tagList li a{
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    white-space: nowrap;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    margin: 4px;
    background-color: #F7F7F7;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.asideSticky{
    width: 100%;
    position: sticky;
    top: 80px;
    padding: 0 0 80px;
}

.asideSticky .imgWrap_rounded{
    width: 100%;
    height: 240px;
    border-radius: 104px 16px;
    margin: 0 0 32px;
}

.asideSticky .sectionTextWrap h2, .asideSticky .sectionTextWrap h3,
.asideSticky .sectionTextWrap h4, .asideSticky .sectionTextWrap h5,
.asideSticky .sectionTextWrap h6, .asideSticky .sectionTextWrap > span {
    font-size: 24px;
}

@media screen and (max-width: 1280px) {

    .pageHeading{
        padding: 40px;
    }

    .content, aside {
        padding: 0 40px;
    }

    .tagList{
        margin: 0 0 64px;
    }

    .tagList li a{
        padding: 12px;
    }

    .asideSticky .imgWrap_rounded{
        height: 220px;
        border-radius: 96px 16px;
    }

    .asideSticky .sectionTextWrap h2, .asideSticky .sectionTextWrap h3,
    .asideSticky .sectionTextWrap h4, .asideSticky .sectionTextWrap h5,
    .asideSticky .sectionTextWrap h6, .asideSticky .sectionTextWrap > span {
        font-size: 20px;
        font-weight: 600;
    }

    .asideSticky .sectionTextWrap p{
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {

    .pageHeading {
        width: 100%;
        padding: 16px 40px 32px;
    }

    .content{
        padding: 0 32px 0 40px;
    }

    aside {
        padding: 0 40px 0 32px;
        width: 340px;
    }

}

@media screen and (max-width: 960px) {

    .pageHeading{
        padding: 16px 32px 32px;
    }

    .contentWrap{
        display: block;
    }

    .content, aside{
        width: 100%;
        padding: 0 32px;
    }

    .tagList{
        text-align: center;
        margin: 0 auto 64px;
    }

    .asideSticky .imgWrap_rounded{
        max-width: 448px;
        height: 280px;
        border-radius: 104px 16px;
        margin: 0 auto 32px;
    }

    .asideSticky .sectionTextWrap h2, .asideSticky .sectionTextWrap h3,
    .asideSticky .sectionTextWrap h4, .asideSticky .sectionTextWrap h5,
    .asideSticky .sectionTextWrap h6, .asideSticky .sectionTextWrap > span {
        font-size: 24px;
        font-weight: 700;
    }

    .asideSticky .sectionTextWrap p{
        font-size: 15px;
    }

    .blogRelated .blogItem{
        width: 50%;
    }

    .pages {
        margin: 0 auto;
        padding: 0 0 64px;
    }

}

@media screen and (max-width: 600px) {

    .pageHeading{
        padding: 16px 16px 32px;
    }

    .content, aside{
        padding: 0 16px;
    }

    .blogArticleLIst{
        padding: 0 0 40px;
    }

    .blogItem{
        display: block;
        margin-bottom: 40px;
    }

    .biImg{
        width: 100%;
        height: auto;
        margin: 0 0 24px;
        border-radius: 8px;
        overflow: hidden;
    }

    .biContent h3 {
        margin: 8px 0;
    }

    .asideSticky .imgWrap_rounded{
        height: 240px;
        border-radius: 96px 16px;
    }

    .blogRelated .blogItem{
        padding: 16px 8px;
    }

    .blogRelated .biContent h3 {
        font-size: 15px;
    }
}

/*article*/

.article{
    padding-top: 40px;
}

.article .content{
    flex: auto;
    order: 2;
}

.socialWrap{
    position: relative;
    flex: none;
    order: 1;
    padding: 0 32px 80px;
}

.socialWrap .socialLinks{
    position: sticky;
    top: 96px;
}

.socialWrap .socialLinks li{
    display: block;
    margin: 0 0 24px;
}

.socialWrap .socialLinks li:last-child{
    margin: 0;
}

.article aside{
    order: 3;
}

.article article{
    width: 100%;
    padding: 0 0 80px;
}

article img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    padding: 0;
    margin: 32px 0;
}

.tableWrap {
    overflow-x: auto;
    margin: 32px 0;
}

* .tableWrap:first-child {
    margin: 0 0 32px;
}

* .tableWrap:last-child {
    margin: 32px 0 0;
}

.videoContainer, .mapResponsive {
    position: relative;
    padding-bottom: 56.25%;
    margin: 32px 0;
    height: 0;
    overflow: hidden;
}

* .videoContainer:first-child, * .mapResponsive:first-child {
    margin: 0 0 32px;
}

* .videoContainer:last-child, * .mapResponsive:last-child {
    margin: 32px 0 0;
}

.videoContainer iframe, .videoContainer object, .videoContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mapResponsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.headingWrap{
    padding: 0 16px 24px;
}

.headingWrap h1, .headingWrap h2, .headingWrap h3,
.headingWrap h4, .headingWrap h5, .headingWrap h6,
.headingWrap > span{
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1280px) {

    .socialWrap{
        padding: 0 40px 64px;
    }

    .headingWrap{
        padding: 0 16px 16px;
    }
}

@media screen and (max-width: 1024px) {

    .article{
        padding-top: 16px;
    }

}

@media screen and (max-width: 960px) {

    .socialWrap .socialLinks{
        position: static;
        border-top: #E5E5E5 solid 1px;
        border-bottom: #E5E5E5 solid 1px;
        padding: 12px 0;
    }

    .socialWrap .socialLinks{
        text-align: center;
    }

    .socialWrap .socialLinks li{
        display: inline-block;
        margin: 12px;
    }

    .socialWrap .socialLinks li:last-child{
        margin: 12px;
    }

}

@media screen and (max-width: 600px) {

    .article{
        padding-top: 8px;
    }

    .socialWrap{
        position: relative;
        flex: none;
        order: 1;
        padding: 0 16px 64px;
    }

    .headingWrap{
        padding: 0 8px 8px;
    }

    .headingWrap h1, .headingWrap h2, .headingWrap h3,
    .headingWrap h4, .headingWrap h5, .headingWrap h6,
    .headingWrap > span{
        font-size: 26px;
    }
}

.faqList{
    border-top: #E5E5E5 solid 1px;
    padding: 0 0 64px;
}

.qHeading{
    cursor: pointer;
    padding: 24px 48px 24px 16px;
    background: url("../icons/groupped.svg") no-repeat right 16px top 27px;
    background-size: 16px 16px;
}

.show .qHeading{
    background: url("../icons/ungroupped.svg") no-repeat right 16px top 27px;
    background-size: 16px 16px;
}

.faqItem{
    border-bottom: #E5E5E5 solid 1px;
}

.faqItem.show{
    padding: 0 0 24px;
}

.qHeading h1, .qHeading h2, .qHeading h3,
.qHeading h4, .qHeading h5, .qHeading h6,
.qHeading > span{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.qContent{
    display: none;
    background-color: #F7F7F7;
    padding: 32px;
    border-radius: 16px;
}

@media screen and (max-width: 600px) {

    .qHeading h1, .qHeading h2, .qHeading h3,
    .qHeading h4, .qHeading h5, .qHeading h6,
    .qHeading > span{
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .qHeading{
        cursor: pointer;
        padding: 24px 32px 24px 0;
        background: url("../icons/groupped.svg") no-repeat right 0 top 26px;
        background-size: 16px 16px;
    }

    .show .qHeading{
        background: url("../icons/ungroupped.svg") no-repeat right 0 top 26px;
        background-size: 16px 16px;
    }

    .qContent{
        padding: 24px;
    }

}

.prisingTable th{
    background-color: #1EB7E0;
}

.prisingTable tbody tr{
    border-bottom: #E5E5E5 solid 1px;
}

.prisingTable tbody tr:nth-child(even){
    background-color: transparent;
}

.prisingTable-options{
    text-align: center;
    border-collapse: separate;
    border-spacing: 16px 2px;
    margin: auto;
}

.prisingTable-options tbody tr, .prisingTable-options tbody tr:nth-child(even){
    background-color: #FAFAFA;
}

.prisingTable-options th{
    padding: 0;
    background-color: transparent;
}

.prisingTable-options th, .prisingTable-options td{
    width: 240px;
}

.prisingTable-options td:first-child{
    text-align: left;
    background-color: #FFFFFF;
    padding-left: 0;
}

.tableCell{
    display: block;
    background-color: #1EB7E0;
    padding: 24px 16px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: 500;
}

.tableNotes p{
    margin: 0;
    font-size: 12px;
    color: #606060;
}

@media screen and (min-width: 1025px) {

    li:hover > .navLvl2 {
        opacity: 1;
        visibility: visible;
    }

    .langSwitch:hover > .langSelect {
        opacity: 1;
        visibility: visible;
    }

    nav a:hover, .langSelect li a:hover {
        color: #79B12A;
    }

    .navExpandable:hover > span, .langSwitch:hover > .langCurrent {
        opacity: 0.6;
    }

    .accountBtn:hover {
        background-color: #79B12A;
    }

    .accountBtn:hover path {
        stroke: #FFFFFF;
    }

    .langSwitch:hover .langWrap {
        opacity: 1;
        visibility: visible;
    }

    .langWrap > a:hover {
        color: #79B12A;
    }

    .socialLinks li:hover {
        opacity: 0.4;
    }

    .footerColLinks li a:hover {
        color: #79B12A;
    }

    .commonBtn:hover {
        background-color: #1EB7E0;
    }

    .featureLink:hover {
        color: #1EB7E0;
    }

    .productItem:hover {
        background-color: #FFFFFF;
    }

    .productItem:hover .productName, .productItem:hover .productID {
        color: #79B12A;
    }

    .blogItem:hover > .biContent h3{
        color: #79B12A;
    }

    .tagList li a:hover{
        color: #FFFFFF;
        background-color: #1EB7E0;
    }

    .pages a:hover{
        color: #1EB7E0;
    }

    a.currentPage:hover{
        color: #FFFFFF;
    }

    .formSubmit:hover{
        background-color: #1EB7E0;
    }

}

.pageContent{
    min-height: calc(100vh - 351px);
}

*:first-child {
    margin-top: 0;
}

*:last-child {
    margin-bottom: 0;
}