﻿/* ------------------------------------------------------------ *\
        Generic
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
        Reset
\* ------------------------------------------------------------ */

* { padding: 0; margin: 0; outline: 0; box-sizing: border-box; }

*:before,
*:after { box-sizing: border-box; }

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section { display: block; }

html,
body { height: 100%; }

html { overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-size-adjust: 100%; }

body { font-smoothing: antialiased; }

/* https://stackoverflow.com/questions/21604674/bootstrap-modal-background-jumps-to-top-on-toggle */
/* body.modal-open { overflow: visible; } */

img { border: 0; vertical-align: middle; }
strong {   
    font-weight: bold;
    color: #666;
}

small { font-size: 80%; }

button,
input,
select,
textarea { font-family: inherit; font-size: inherit; color: inherit; font-smoothing: antialiased; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"] { cursor: pointer; }

button::-moz-focus-inner,
input::-moz-focus-inner { padding: 0; border: 0; }

button { overflow: visible; }
textarea { overflow: auto; resize: none; }

table { border-collapse: collapse; border-spacing: 0; }
th,
td { padding: 0; }

p:last-child {
    margin-bottom: 0;
}

/* user to displace the desired anchored element according to the fixed header. */
a.anchor {
    position: absolute;
    left: 0;
    top: -100px;
    display: inline-block;
    width: 0;
    height: 0;
}

/* ------------------------------------------------------------ *\
        Display proparties
\* ------------------------------------------------------------ */

.d-inline-block {
    display: inline-block !important;
}

/* ------------------------------------------------------------ *\
        Badges
\* ------------------------------------------------------------ */

.sub-badge {
    top: -1em;
    left: 3px;
    bottom: 0;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
    text-transform: lowercase;
}
.sub-badge.inner-menu {
    top: -5px;
    right: 8px;
    left: auto;
    position: absolute;
}

.mega-submenu .sub-badge.inner-menu {
    right: -15px;
}

/* ------------------------------------------------------------ *\
        Content
\* ------------------------------------------------------------ */

.section-terms .content .terms ul {
    list-style: disc;
    list-style-position: inside;
}

.section-terms .content .terms ol {
    list-style: decimal;
    list-style-position: inside;
}

.section-help-primary .section-content .terms tr td {
    padding: 5px 10px;
    border: 1px solid #ddd;
}

/* ------------------------------------------------------------ *\
        margins and paddings
\* ------------------------------------------------------------ */
.mr-3 {
    margin-right : 3px;
}

.mr-5 {
    margin-right : 5px;
}

.ml-5 {
    margin-left : 5px;
}

.mr-4 {
    margin-right: 4px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mr-33 {
    margin-right: -33px;
}

.pt-37 {
    padding-top: 37px!important;
}
.w-100 {
    width: 100% !important;
}
/* ------------------------------------------------------------ *\
        Text transform
\* ------------------------------------------------------------ */
.text-capitalize {
    text-transform: capitalize !important;
}

/* ------------------------------------------------------------ *\
        Animations
\* ------------------------------------------------------------ */

@-webkit-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-o-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes animate_header {
    from {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px)
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes showIn {
    0%   {
        opacity: 0;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-moz-keyframes showIn {
    0%   {
        opacity: 0;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-o-keyframes showIn {
    0%   {
        opacity: 0;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes showIn {
    0%   {
        opacity: 0;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-webkit-keyframes showInRight {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes showInRight {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-o-keyframes showInRight {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes showInRight {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes showInLeft {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-moz-keyframes showInLeft {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-o-keyframes showInLeft {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes showInLeft {
    0%   {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes bouncing {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -ms-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -6px, 0);
        -ms-transform: translate3d(0, -6px, 0);
        -o-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        -o-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-2px,0);
        -ms-transform: translate3d(0,-2px,0);
        -o-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }
}

@-moz-keyframes bouncing {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -ms-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -6px, 0);
        -ms-transform: translate3d(0, -6px, 0);
        -o-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        -o-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-2px,0);
        -ms-transform: translate3d(0,-2px,0);
        -o-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }
}

@-o-keyframes bouncing {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -ms-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -6px, 0);
        -ms-transform: translate3d(0, -6px, 0);
        -o-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        -o-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-2px,0);
        -ms-transform: translate3d(0,-2px,0);
        -o-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }
}

@keyframes bouncing {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -ms-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -o-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -6px, 0);
        -ms-transform: translate3d(0, -6px, 0);
        -o-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -moz-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -o-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -ms-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        -o-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-2px,0);
        -ms-transform: translate3d(0,-2px,0);
        -o-transform: translate3d(0,-2px,0);
        transform: translate3d(0,-2px,0);
    }
}

@-webkit-keyframes pulsating {
    0% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}


@-moz-keyframes pulsating {
    0% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes pulsating {
    0% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsating {
    0% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transition-timing-function: ease-in-out;
        -moz-transition-timing-function: ease-in-out;
        -o-transition-timing-function: ease-in-out;
        -ms-transition-timing-function: ease-in-out;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

/*  Animation Classes  */

.showIn {
    animation: 1s ease-out showIn;
}

.showInRight {
    animation-name: showInRight;
    animation-duration: 1s;
}

.showInLeft {
    animation-name: showInLeft;
    animation-duration: 1s;
}

.animate {
    opacity: 0;
}

.delay01 {
    -webkit-animation-delay:.1s;
    animation-delay:.1s;
}

.delay02 {
    -webkit-animation-delay:.2s;
    animation-delay:.2s;
}

.delay03 {
    -webkit-animation-delay:.3s;
    animation-delay:.3s;
}

.delay04 {
    -webkit-animation-delay:.4s;
    animation-delay:.4s;
}

.delay05 {
    -webkit-animation-delay:.5s;
    animation-delay:.5s;
}
.delay06 {
    -webkit-animation-delay:.6s;
    animation-delay:.6s;
}

.delay07 {
    -webkit-animation-delay:.7s;
    animation-delay:.7s;
}

.delay09 {
    -webkit-animation-delay:.9s;
    animation-delay:.9s;
}

.delay10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.socials.pulsating a:hover {
    -webkit-animation-name: pulsating;
    -moz-animation-name: pulsating;
    -o-animation-name: pulsating;
    -ms-animation-name: pulsating;
    animation-name: pulsating;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* ------------------------------------------------------------ *\
        Base
\* ------------------------------------------------------------ */

body {
    background: #fff;
    font-family: 'Caros', 'sans-serif'; /* sans-serif fixes greek*/
    font-size: 20px;
    line-height: 1.67;
    color: #535353; /* change on site #303030*/
    letter-spacing: 0.005em;
    position: relative;
    font-weight: 300;
}

.background-overlay {
    background:linear-gradient(
        rgba(1, 20, 10, 0.2), 
        rgba(1, 20, 10, 0.2)
        )

        url(../../img/icard_mobile/intro-bg-features.jpg);
}

html.modal-open {
    overflow: hidden;
    padding-right: 17px; 
}

html.modal-open .header  {
    overflow-y: scroll;
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

a {
    color: #20c19f;
    text-decoration: none;
}

a:hover { color: #20c19f; }
a:focus { outline: none; }

a:hover,
a:focus,
a:active:focus,
a.active:focus,
a.focus,
a:active.focus,
a.active.focus {
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
}

h1 {
    font-size: 50px;
    line-height: 1.44;
    letter-spacing: 0.005em;
    font-weight: 400;
}

h2 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.005em;
}

h3 {
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.005em;
    font-weight: 400;
    margin-top: 0;
}

h4 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.005em;
    font-weight: 400;
    margin-top: 0;
}

h5 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 400;
}
h6 {
    margin-top: 0;
    font-weight: 400;
    font-size: 16px;
}

ul,
ol {
    list-style: none;
}

ul.list-initial,
ol.list-initial {
    list-style: initial;
    padding: initial;
    padding-inline-start: 40px;
}

/* ------------------------------------------------------------ *\
        Icons
\* ------------------------------------------------------------ */

.ico {
    display: inline-block;
    vertical-align: middle;
}

.ico-arrow-down {
    background: url(../../img/icard_mobile/ico-arrow-down.png) no-repeat 0 0;
    width: 9px;
    height: 5px;
}
.ico-arrow-down-dark {
    background: url(../../img/icard_mobile/ico-arrow-down-dark.png) no-repeat 0 0;
    width: 9px;
    height: 5px;
}
.ico-arrow-right-green {
    background: url(../../img/icard_mobile/ico-arrow-right-green.png) no-repeat 0 0;
    width: 7px;
    height: 10px;
}
.ico-check {
    display: inline-block;
    width: 36px;
    height: 26px;
    background: url(../../img/icard_mobile/ico-check.png) no-repeat 0 0;
    vertical-align: middle;
}
.ico-thumb-up {
    width: 35px;
    height: 39px;
    background: url(../../img/icard_mobile/ico-thumb-up.png) no-repeat 0 0;
}
.ico-fingerprint {
    width: 25px;
    height: 32px;
    background: url(../../img/icard_mobile/ico-fingerprint.png) no-repeat 0 0;
}
.ico-monitor {
    width: 30px;
    height: 23px;
    background: url(../../img/icard_mobile/ico-monitor.png) no-repeat 0 0;
}
.ico-code {
    width: 30px;
    height: 20px;
    background: url(../../img/icard_mobile/ico-code.png) no-repeat 0 0;
}
.ico-coins {
    width: 30px;
    height: 29px;
    background: url(../../img/icard_mobile/ico-coins.png) no-repeat 0 0;
}
.ico-connect {
    width: 22px;
    height: 21px;
    background: url(../../img/icard_mobile/ico-connect.png) no-repeat 0 0;
}
.ico-real-time {
    width: 35px;
    height: 35px;
    background: url(../../img/icard_mobile/ico-real-time.png) no-repeat 0 0;
}
.ico-top-up {
    width: 23px;
    height: 31px;
    background: url(../../img/icard_mobile/ico-top-up.png) no-repeat 0 0;
}
.ico-card {
    width: 30px;
    height: 22px;
    background: url(../../img/icard_mobile/ico-card.png) no-repeat 0 0;
}
.ico-wallet {
    width: 30px;
    height: 31px;
    background: url(../../img/icard_mobile/ico-wallet.png) no-repeat 0 0;
}
.ico-mobile-phone {
    width: 23px;
    height: 38px;
    background: url(../../img/icard_mobile/ico-mobile-phone.png) no-repeat 0 0;
}
.ico-gift {
    width: 33px;
    height: 32px;
    background: url(../../img/icard_mobile/ico-gift.png) no-repeat 0 0;
}
.ico-currency-euro {
    width: 35px;
    height: 35px;
    background: url(../../img/icard_mobile/ico-currency-euro.png) no-repeat 0 0;
}
.ico-free {
    width: 38px;
    height: 16px;
    background: url(../../img/icard_mobile/ico-free.png) no-repeat 0 0;
}
.ico-arrow-left {
    width: 12px;
    height: 22px;
    background: url(../../img/icard_mobile/ico-arrow-left.png) no-repeat 0 0;
}
.ico-arrow-right {
    width: 12px;
    height: 22px;
    background: url(../../img/icard_mobile/ico-arrow-right.png) no-repeat 0 0;
}
.ico-check-circle-green {
    width: 37px;
    height: 37px;
    background: url(../../img/icard_mobile/ico-check-circle-green.png) no-repeat 0 0;
}

.ico-security-alt {
    width: 49px;
    height: 35px;
    background: url(../../img/icard_mobile/ico-security-alt.png) no-repeat 0 0;
}

.ico-curve-arrow-alt {
    width: 59px;
    height: 39px;
    background: url(../../img/icard_mobile/ico-curve-arrow-alt.png) no-repeat 0 0;
    color: #fff;
}

.ico-bage {
    width: 57px;
    height: 74px;
    background: url(../../img/icard_mobile/ico-bage.png) no-repeat 0 0;
}
.ico-cardiogram {
    width: 73px;
    height: 50px;
    background: url(../../img/icard_mobile/ico-cardiogram.png) no-repeat 0 0;
}
.ico-card-with-tiers {
    width: 81px;
    height: 55px;
    background: url(../../img/icard_mobile/ico-card-with-tiers.png) no-repeat 0 0;
}
.ico-rounded-screen {
    width: 67px;
    height: 58px;
    background: url(../../img/icard_mobile/ico-rounded-screen.png) no-repeat 0 0;
}
.ico-servers {
    width: 60px;
    height: 54px;
    background: url(../../img/icard_mobile/ico-servers.png) no-repeat 0 0;
}
.ico-support {
    width: 62px;
    height: 61px;
    background: url(../../img/icard_mobile/ico-support.png) no-repeat 0 0;
}

.ico-instant-transfer {
    width: 62px;
    height: 33px;
    background: url(../../img/icard_mobile/ico-instant-transfer.png) no-repeat 0 0;
}

.ico-arrow-right-lg {
    width: 26px;
    height: 49px;
    background: url(../../img/icard_mobile/ico-arrow-right-lg.png) no-repeat 0 0;
}

.ico-arrow-left-lg {
    width: 25px;
    height: 49px;
    background: url(../../img/icard_mobile/ico-arrow-left-lg.png) no-repeat 0 0;
}

.ico-hook {
    width: 30px;
    height: 43px;
    background: url(../../img/icard_mobile/security-page/ico-hook.png) no-repeat 0 0;
}

.ico-switch {
    width: 50px;
    height: 20px;
    background: url(../../img/icard_mobile/security-page/ico-switch.png) no-repeat 0 0;
}

.ico-phone-security {
    width: 41px;
    height: 43px;
    background: url(../../img/icard_mobile/security-page/ico-phone-security.png) no-repeat 0 0;
}



/* ------------------------------------------------------------ *\
        Font Icon Colors
\* ------------------------------------------------------------ */

.ico-font { color: #fff; }
.ico-green { color: #26ba92; }
.ico-light-green { color: #20c19f; }
.ico-blue { color: #078ed2; }
.ico-red { color: #bf503d; }
.ico-purple { color: #8560a8; }
.ico-dark-grey { color: #303030; }

/* ------------------------------------------------------------ *\
        Helpers
\* ------------------------------------------------------------ */

/*  Clear  */
.clear:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

/*  Notext  */
.notext {
    font-size: 0;
    line-height: 0;
    text-indent: -4000px;
}

/*  Text gray  */
.text-gray {
    color: #999;
}

/*  Text Underline  */
.text-underline {
    text-decoration: underline;
}

/*  Position Static  */
.position-static {
    position: static;
}

/*  Postioin Relative  */
.position-relative {
    position: relative;
}

/* Row Display Inline Block  */
.row-dib {
    font-size: 0;
}

.row-dib [class*="col-"] {
    font-size: 0;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.row-md-3-cols [class*='col-']:nth-child(3n + 4) {
    clear: both;
}

.container {
    padding: 0;
}

.color-grey {
    color: #303030;
}

.color-blue {
    color: #19acdf;
}

.extra-light {
    font-weight: 200;
}

.no-scroll,
.no-scroll body {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.offset-left {
    padding-left: 13px;
}

.flag-icon-en {
    background-image: url(plugins/flag-icons/flags/4x3/gb.svg);
}

.flag-icon-el {
    background-image: url(plugins/flag-icons/flags/4x3/gr.svg);
}

.equal {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.equal-center {
    justify-content: center;
}

/* ------------------------------------------------------------ *\
        Font Size Icons
\* ------------------------------------------------------------ */

.fz-5 { font-size: 5px; }
.fz-6 { font-size: 6px; }
.fz-7 { font-size: 7px; }
.fz-8 { font-size: 8px; }
.fz-9 { font-size: 9px; }
.fz-10 { font-size: 10px; }
.fz-11 { font-size: 11px; }
.fz-12 { font-size: 12px; }
.fz-13 { font-size: 13px; }
.fz-14 { font-size: 14px; }
.fz-15 { font-size: 15px; }
.fz-16 { font-size: 16px; }
.fz-17 { font-size: 17px; }
.fz-18 { font-size: 18px; }
.fz-19 { font-size: 19px; }
.fz-20 { font-size: 20px; }
.fz-21 { font-size: 21px; }
.fz-22 { font-size: 22px; }
.fz-23 { font-size: 23px; }
.fz-24 { font-size: 24px; }
.fz-25 { font-size: 25px; }
.fz-26 { font-size: 26px; }
.fz-27 { font-size: 27px; }
.fz-28 { font-size: 28px; }
.fz-29 { font-size: 29px; }
.fz-30 { font-size: 30px; }
.fz-31 { font-size: 31px; }
.fz-32 { font-size: 32px; }
.fz-33 { font-size: 33px; }
.fz-34 { font-size: 34px; }
.fz-35 { font-size: 35px; }
.fz-36 { font-size: 36px; }
.fz-37 { font-size: 37px; }
.fz-38 { font-size: 38px; }
.fz-39 { font-size: 39px; }
.fz-40 { font-size: 40px; }
.fz-41 { font-size: 41px; }
.fz-42 { font-size: 42px; }
.fz-43 { font-size: 43px; }
.fz-44 { font-size: 44px; }
.fz-45 { font-size: 45px; }
.fz-46 { font-size: 46px; }
.fz-47 { font-size: 47px; }
.fz-48 { font-size: 48px; }
.fz-49 { font-size: 49px; }
.fz-50 { font-size: 50px; }
.fz-51 { font-size: 51px; }
.fz-52 { font-size: 52px; }
.fz-53 { font-size: 53px; }
.fz-54 { font-size: 54px; }
.fz-55 { font-size: 55px; }
.fz-56 { font-size: 56px; }
.fz-57 { font-size: 57px; }
.fz-58 { font-size: 58px; }
.fz-59 { font-size: 59px; }
.fz-60 { font-size: 60px; }
.fz-61 { font-size: 61px; }
.fz-62 { font-size: 62px; }
.fz-63 { font-size: 63px; }
.fz-64 { font-size: 64px; }
.fz-65 { font-size: 65px; }
.fz-66 { font-size: 66px; }
.fz-67 { font-size: 67px; }
.fz-68 { font-size: 68px; }
.fz-69 { font-size: 69px; }
.fz-70 { font-size: 70px; }
.fz-71 { font-size: 71px; }
.fz-72 { font-size: 72px; }
.fz-73 { font-size: 73px; }
.fz-74 { font-size: 74px; }
.fz-75 { font-size: 75px; }
.fz-76 { font-size: 76px; }
.fz-77 { font-size: 77px; }
.fz-78 { font-size: 78px; }
.fz-79 { font-size: 79px; }
.fz-80 { font-size: 80px; }
.fz-81 { font-size: 81px; }
.fz-82 { font-size: 82px; }
.fz-83 { font-size: 83px; }
.fz-84 { font-size: 84px; }
.fz-85 { font-size: 85px; }
.fz-86 { font-size: 86px; }
.fz-87 { font-size: 87px; }
.fz-88 { font-size: 88px; }
.fz-89 { font-size: 89px; }
.fz-90 { font-size: 90px; }
.fz-91 { font-size: 91px; }
.fz-92 { font-size: 92px; }
.fz-93 { font-size: 93px; }
.fz-94 { font-size: 94px; }
.fz-95 { font-size: 95px; }
.fz-96 { font-size: 96px; }
.fz-97 { font-size: 97px; }
.fz-98 { font-size: 98px; }
.fz-99 { font-size: 99px; }
.fz-100 { font-size: 100px; }
.fz-110 { font-size: 110px; }


/* ------------------------------------------------------------ *\
        Box
\* ------------------------------------------------------------ */
.box-home {
    padding: 30px 25px;
    background: #fff;
    border-radius: 25px;	
}

.box {
    padding: 30px 25px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.box-nfc {
    padding: 20px 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.box-grey {
    background: #fcfcfc;
    box-shadow: none;
}

/* ------------------------------------------------------------ *\
        Box Primary
\* ------------------------------------------------------------ */

.box-primary {
    margin-bottom: 60px;
}

.box-primary .box-primary-head {
    padding: 32px 30px 32px 140px;
    background: #fff;
    border-radius: 25px 25px 0 0;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.box-primary .box-primary-head h4 {
    margin-bottom: 0;
}

.box-primary .skew-icon-holder .skew-icon {
    border-radius: 25px 0 0 0;
}

.box-primary .box-primary-body {
    padding: 25px;
    border-radius: 0 0 25px 25px;
    background: #fcfcfc;
}

.box-primary .box-primary-body-offset-right {
    padding-right: 140px;
}

.box-primary .box-primary-head.skew-icon-holder-reversed {
    padding-left: 45px;
    padding-right: 140px;
}

.box-primary .box-primary-head.skew-icon-holder-reversed .skew-icon-holder-content {
    padding-left: 25px;
}

.box-primary .box-primary-head.skew-icon-holder-reversed .skew-icon {
    border-radius: 0 25px 0 0;
}

.box-primary .box-primary-head.skew-icon-holder-reversed .skew-icon:after {
    left: auto;
    right: 100%;
}

.box-primary-with-actions .box-primary-body {
    position: relative;
    padding-bottom: 110px;
}

.box-primary-with-actions .box-primary-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #dcdcdc;
    padding: 25px;
    text-align: center;
}

/* ------------------------------------------------------------ *\
        Fees
\* ------------------------------------------------------------ */

.fees {
    margin-bottom: 60px;
    font-size: 18px;
}

.fees .fees-title {
    text-align: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 50px;
}

.fees .list-checks {
    max-width: 465px;
    margin: 0 auto;
}

.fees .list-checks li + li {
    margin-top: 20px;
}

.fees .fees-value {
    font-size: 84px;
}

.fees .fees-currency {
    font-size: 50px;
}

.fees .fees-decimal {
    font-size: 44px;
}

/* ------------------------------------------------------------ *\
        Wrapper
\* ------------------------------------------------------------ */

.wrapper {
    overflow: hidden;
}

/* ------------------------------------------------------------ *\
        Shell
\* ------------------------------------------------------------ */

.shell { margin: auto; max-width: 1200px; }
/* 
------------------------------------------------------------ *\
        Header
\* ------------------------------------------------------------

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 25px 0 0px 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: transparent;
}

.header .header-content {
    position: relative;
}

.header .header-content:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.header .header-content:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 100%;
    left: -70px;
    right: -70px;
    height: 1px;
    background: #8d8c96;
    background: radial-gradient(ellipse at center, rgba(158,157,166,1) 0%,rgba(158,157,166,0.55) 45%,rgba(158,157,166,0.1) 67%,rgba(158,157,166,0) 100%);
}

.header .btn-menu {
    position: absolute;
    top: 18px;
    right: -40px;
    display: none;
}

.header .logo {
    width: 140px;
    float: left;
    margin-right: 20px;
}

.header .logo img {
    width: 100%;
    height: auto;
}

.header-active .logo,
.header .logo {
    width: 140px;
    float: left;
}

.header .logo-default {
    display: inline-block;
}

.header .logo-active {
    display: none;
}

.header-alt {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.header-alt .logo-default {
    display: none;
}

.header-alt .header-content .logo-active {
    display: block;
}

.header-active .nav-lang > ul > li:last-child:before,
.header-fixed .nav-lang > ul > li:last-child:before {
    background: #303030;
}

.header-alt .contacts,
.header-alt    .nav-lang>ul>li>a,
.header-alt .nav > ul > li > a {
    color: #303030;
    text-shadow: none;
}

.header-alt    .nav-lang>ul>li>a.btn-signup {
    color: #fff;
}

.header-alt .nav-lang > ul > li:last-child:before {
    background: #303030;
}

Header Fixed
.header-active .logo-default,
.header-fixed .logo-default {
    display: none;
}

.header-active .logo-active,
.header-fixed .logo-active {
    display: inline-block;
}

.header-fixed .logo {
    width: 120px;
}

.header-active {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.header-fixed {
    background: #fff;
    padding-top: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-animation-name: animate_header;
    -o-animation-name: animate_header;
    animation-name: animate_header;
    -webkit-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.header-active .nav > ul > li > a,
.header-fixed .nav-lang > ul > li > a:not(.btn-signup),
.header-fixed .nav > ul > li > a {
    color: #303030;
    padding-bottom: 15px;
    text-shadow: none;
}

.header-active .nav-lang > ul > li > a:not(.btn-signup) {
    color: #303030;
}

.header-fixed .nav ,
.header-fixed .nav-lang {
    margin-top: 2px;
}

.header-active .nav {
    margin-top: 0;
}

.header-fixed .header-content {
    display: none;
}

.header-active .nav-lang .ico-arrow-down,
.header-fixed .nav-lang .ico-arrow-down {
    background: url(../../img/icard_mobile/ico-arrow-down-dark.png) no-repeat 0 0;
}

.header-active .nav > ul > li > .btn-login,
.header-fixed .nav > ul > li > .btn-login {
    color: #048ef8;
}

.header-active .nav-lang > ul > li > .btn-login:before,
.header-fixed .nav-lang > ul > li > .btn-login:before {
    background: #303030;
}

.header-fixed .btn-menu {
    top: 6px;
}

.header-active .btn-menu.active span:before,
.header-active .btn-menu.active span:after,
.header-active .btn-menu span:before,
.header-active .btn-menu span:after,
.header-fixed .btn-menu.active span:before,
.header-fixed .btn-menu.active span:after,
.header-fixed .btn-menu span:before,
.header-fixed .btn-menu span:after {
    background: #303030;
}

.header-active .btn-menu span,
.header-fixed .btn-menu span {
    border-color: #303030;
}

.header .contacts {
    float: right;
    padding-left: 30px;
    margin-top: 17px;
}

.header-active .contacts i,
.header-fixed .contacts,
.header-fixed .contacts i { 
    color: #303030;  
}

.header-fixed .contacts {
    margin-top: 8px;
}

.header-fixed .nav-primary  {
    padding-left: 0;
}

------------------------------------------------------------ *\
        Nav
\* ------------------------------------------------------------

.nav {
    float: left;
    margin-top: 17px; changes on site: margin-top: 15px
}

.nav > ul {
    margin-bottom: 5px;
}

.nav > ul:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.nav > ul > li {
    float: left;
}

.nav > ul > li > a {
    position: relative;
    color: #fff;
    padding: 0 0 24px;
    background: none;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.nav > ul > li > a > span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.nav > ul > li > a > .ico-font {
    color: #666;
}

.nav > ul > li > a:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20c19f;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav > ul > li.current > a:after,
.nav > ul > li > a:hover:after {
    opacity: 1;
    visibility: visible;
    top: 24px;
}

.nav > ul > li.current.current-no-bd > a:after,
.nav > ul > li.current-no-bd > a:hover:after {
    opacity: 0;
    visibility: hidden;
    top: 20px;
}

.nav > ul > li.current > a,
.nav > ul > li > a:hover {
    color: #20c19f;
    background: none;
}

.nav > ul > li + li {
    margin-left: 35px;
}

.nav > ul > li.btn-signup-outer,
.nav > ul > li.btn-login-outer {
    margin-left: 30px;
}

.nav > ul > li > .btn-login {
    margin-left: 30px;
}

.nav > ul > li > .btn-login:after {
    display: none;
}

Nav Outer

.nav-outer {
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-outer .btn-signup-outer,
.nav-outer .btn-login-outer {
    display: none;
}

.nav-outer:after {
    content: '';
    display: table;
    clear: both;
    overflow: hidden;
}

nav-primary
.nav-primary {
    float: left;
    padding-left: 150px;
}

.nav-secondary {
    float: right;
}

.nav-secondary .dropdown-menu {
    left: auto;
    right: 0;
}

.nav-secondary .dropdown-menu > li > a {
    text-transform: none;
}

.nav-secondary > ul > li > a {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
}

.nav-secondary>ul>li.current>a,
.nav-secondary>ul>li>a:hover {
    color: #20c19f;
    background: none;
}

.nav-secondary>ul>li.current>a:after,
.nav-secondary>ul>li>a:hover:after {
        display: none;
}

Nav Lang
.nav-lang {
    float: right;
    margin: 15px 0 0 0; 
}

.nav-lang > ul {
    margin-bottom: 0;
}

.nav-lang > ul:after {
    content: '';
    display: table;
    clear: both;
    overflow: hidden;
}

.nav-lang > ul > li {
    float: left;
    padding: 0 20px;
}

.nav-lang > ul > li:last-child {
    padding-right: 0;
}

.nav-lang > ul > li.btn-signup-outer {
    position: relative;
    padding-right: 30px;
}


.nav-outer > ul > li .btn-signup,
.nav-lang > ul > li .btn-signup {
    padding: 0 10px;
    min-width: 115px;
    line-height: 35px;
    height: 35px;
    background: #21abf0;
    text-align: center;
    border-radius: 8px;
}

.nav-outer > ul > li .btn-signup:hover,
.nav-lang > ul > li .btn-signup:hover {
    background: #286090;
}
.nav-lang > ul > li:last-child:before {
    content: '';
    height: 30px;
    width: 1px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: -1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.nav-lang > ul > li > a {
    position: relative;
    padding-right: 17px;
    position: relative;
    color: #fff;
    padding: 0 10px 24px;
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.nav-lang > ul > li > a > i {
    vertical-align: top; middle;
}

.nav-lang > ul > li > a:after {
    display: none;
}

.nav-lang > ul > li > a > .ico-arrow-down {
    position: absolute;
    top: 5px;
    right: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-lang > ul > .open > a > .ico-arrow-down {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nav-lang > ul > li > a > .fa-angle-right {
    margin-left: 1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-lang > ul > .open > a > .fa-angle-right {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.nav-lang > ul > li > a > span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 7px;
}

.nav-lang .dropdown-menu {
    left: auto;
    right: 0;
    padding: 25px 18px;
}

.nav-lang .dropdown-menu > li > a {
    padding: 3px 0 3px 30px;
    position: relative;
    display: block;
    text-transform: none;
}

.nav-lang .dropdown-menu > li > a span {
    display: inline-block;
    vertical-align: middle;
}

.nav-lang .dropdown-menu > li > a i {
    margin-right: 17px;
    vertical-align: middle;
}

.nav-lang .dropdown-menu > li > a .flag-icon {
    font-size: 16px;
}

.nav-lang .dropdown-menu > li > a .checked-icon {
    position: absolute;
    top: 50%;
    margin: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-lang .dropdown-menu > li.current > a .checked-icon {
    opacity: 1;
    visibility: visible;
}

.nav-lang .dropdown-menu > li + li {
    margin-top: 14px;
}

.nav-lang .dropdown-menu-title {
    text-align: center;
}

.nav-lang .dropdown-menu>li>a:hover,
.nav-lang .dropdown-menu>li>a:focus {
    background: none;
    color: #303030;

}

.nav>li>a:hover,
.nav>li>a:focus {
    background: transparent;
    outline: 0px;
    outline-offset: 0;
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background: none;
    border: 0;
} */



/* ------------------------------------------------------------ *\
    Header
\* ------------------------------------------------------------ */

.header a {
    color: #666;
}

.header  .header-actions {
    display: none;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px 0;
    background: #0299e5;
    box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

}

.header  .header-actions .btn-ghost {
    background: #fff;
}

.header.header-fixed  .header-actions {
    opacity: 1;
    visibility: visible;
}


.header ul {
    margin-bottom: 0;
    min-width: 200px; /* fix for Edge */
}

.header .color-grey {
    color: #bdb9b9;
}

.header .ico-font {
    display: inline-block;
    vertical-align: middle;
}

.header {
    position: fixed;
    background: #fff;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header .container-sm {
    position: static;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}
.header .header-content {
    display: none;
}
.header .logo {
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 991px) {
    .header .logo img {
        width: 60px;
    }
    .header .header-content {
        display: block;
        position: relative;
    }
    .business-page .header > .container,
    .header > .container {
        padding-right: 55px;
    }
    .header .btn-menu {
        position: absolute;
        top: 20px;
        right: 15px;
    }

    .dropdown-lang.dropdown-menu {
        left: auto;
        right: -63px;
    }
}

@media (min-width: 768px) {
    .container.container-sm {
        max-width: 750px;
    }
}
@media (min-width: 992px) {
    .container.container-sm {
        max-width: 970px;
    }
}
@media (min-width: 1200px) {
    .container.container-sm {
        max-width: 1140px;
    }
}

@media(max-width: 991px){
    .header > .container {
        padding: 0 55px 0 15px;
    }
}

@media(max-width: 767px){
    .dropdown-menu .container {
        padding: 0 15px;
    }
}

.header .btn {
    border-radius: 20px;
}

.btn-blue {
    background: #0299e5;
    color: #fff;
}

.header .btn-blue {
    color: #fff;
}

.header .btn {
    height: 50px;
    line-height: 48px;
    min-width: 200px;
    font-size: 16px;
} 

.header .btn-ghost {
    background: transparent;
    color: #0299e5;
    border-color: #0299e5;
}


/* ------------------------------------------------------------ *\
    Nav
\* ------------------------------------------------------------ */
.nav-utilities {
    margin-left: auto;
    line-height: 1.67;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}
.nav-utilities > ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: flex-end;
    min-width: 1px;
}
.nav-utilities > ul > li + li {
    margin-left: 20px;
}
.nav-utilities > ul > li > a {
    white-space: nowrap;
    font-size: 13px;
}
.nav-utilities > ul > .nav-utilities-contacts > a {
    font-size: 14px;
    text-transform: none;
}

.nav-utilities > ul > .nav-utilities-contacts > a .ico-font {
    color: #666;
    display: inline-block;
    vertical-align: middle;
}

.nav-utilities .nav-utilities-contacts {
    height: 26px;
    line-height: 26px;
    margin-top: -3px;
}

.nav-utilities .nav-utilities-contacts a span {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1199px) {


    .nav-utilities {
        font-size: 14px;
    }

    .nav-utilities>ul>li>a {
        font-size: 14px;
    }

    .nav-utilities-contacts {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .nav-utilities .nav-utilities-contacts a span {
        display: none;
    }
}

/* ------------------------------------------------------------ *\
    Nav
\* ------------------------------------------------------------ */
.nav > ul {
    display: flex;
    align-items: center;
    line-height: 1.67;
    font-size: 16px;
    letter-spacing: 0.005em;

}
.nav > ul > li + li {
    margin-left: 35px;
}
.nav > ul > li.active > a {
    color: #20c19f;
}
.nav > ul > li > a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    color: #666;
}

.nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
    background: none;
}


.nav > ul > li > a span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.nav > ul > li > a:before {
    content: "";
    display: inline-block;
    background: #20c19f;
    height: 5px;
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 17px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.nav > ul > li > a:hover:before {
    opacity: 1;
    visibility: visible;
}
.nav .badge-wrapper {
    white-space: nowrap;
}
.nav .badge {
    position: relative;
    top: -10px;
    left: 0;
}
.nav .nav-access-mobile {
    margin-top: 30px;
    display: none;
}
.nav .nav-access-mobile li {
    text-align: center;
}
.nav .nav-access-mobile li + li {
    margin-top: 30px;
    margin-left: 0;
}

@media (max-width: 1199px) {
    .nav > ul > li > a {
        font-size: 14px;
    }
    .nav > ul > li + li {
        margin-left: 20px;
    }
}
@media (max-width: 991px) {
    .nav {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 101;
        background: #fff;
        height: 100%;
        min-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 0px 30px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav > ul {
        display: block;
        width: 100%;
        padding: 0;
    }
    .nav > ul > li {
        width: 100%;
    }
    .nav > ul > li + li {
        margin-left: 0;
    }
    .nav > ul > li > a {
        display: block;
        padding: 15px;
        width: 100%;
    }
    .nav > ul > li > a:after {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .nav > ul > li > a:before {
        display: none;
    }

    .nav .nav-access-mobile {
        display: block;
    }
}

/* ------------------------------------------------------------ *\
    Dropdowns
\* ------------------------------------------------------------ */
.dropdown > a:after {
    content: "";
    background: none;
    font-family: "fontello";
    color: inherit;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-decoration: inherit;
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    border: 0;
    font-size: 11px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.open > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.dropdown-mega {
    position: static !important;
}
.dropdown-mega .dropdown-menu-mega {
    background: #f5f5f5;
    border-radius: 0;
    border: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    top: calc(100% - 1px);
    padding: 40px 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.dropdown-mega .dropdown-menu-entry {
    font-size: 15px;
    line-height: 1.73;
    color: #666666;
}
.dropdown-mega h3 {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 20px;
}
.dropdown-mega .dropdown-menu-breadcrumbs {
    padding: 15px;
    background: #fff;
    width: 100%;
    flex: 0 0 100%;
    color: #20c19f;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    display: none;
}

.dropdown-mega .dropdown-menu-breadcrumbs .ico-font {
    color: #20c19f;
}

.dropdown-mega .dropdown-menu-breadcrumbs a {
    color: #20c19f;
}
.dropdown-mega .dropdown-menu-breadcrumbs span {
    display: inline-block;
    vertical-align: middle;
}
.dropdown-mega .dropdown-menu-breadcrumbs i + span {
    margin-left: 25px;
}

.dropdown-mega .dropdown-menu-mega > .container > .row {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-mega .dropdown-menu-mega > .container > .row > .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.dropdown-mega .dropdown-menu-mega > .container > .row > .col.w-315 {
    flex: 0 0 315px;
    width: 315px;
}

.dropdown-mega .dropdown-menu-mega .container {
    vertical-align: top;
}

@media (max-height: 575px) and (min-width: 991px) {
    .dropdown-mega .dropdown-menu-mega {
        height: calc(100vh - 92px);
        overflow-y: auto;
    }
}
@media (max-width: 991px) {
    .dropdown-mega .dropdown-menu-mega {
        min-height: calc(100vh - 80px);
        overflow: auto;
        height: 100%;
        padding: 0;
        top: 0;
        display: block;
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.4s ease-in;
        -o-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }
    .dropdown-mega.open .dropdown-menu-mega {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .dropdown-mega .dropdown-menu-mega>.container>.row>.col {
        width: 100%;
        flex: 0 0 100%;
    }

    .dropdown-mega .dropdown-menu-breadcrumbs {
        display: block;
    }

    .dropdown-mega .dropdown-menu-mega .w-315 {
        display: none;
    }
}
/* ------------------------------------------------------------ *\
    Dropdown Lang
\* ------------------------------------------------------------ */
.dropdown-lang.dropdown-menu {
    min-width: 200px;
    background: #fff;
    padding: 20px 18px;
    border: 0;
    border-radius: 0;
}
.dropdown-lang p {
    text-align: center;
    margin: 0;
}

.dropdown-lang ul {
    padding-top: 5px;
    min-width: 1px;
}

.dropdown-lang li + li {
    margin-top: 16px;
}
.dropdown-lang a {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.dropdown-lang i {
    margin-right: 14px;
}
.dropdown-lang .flag-icon {
    font-size: 16px;
}
.dropdown-lang .ico-font-check-sm {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #26ba92;

}
.dropdown-lang .current .ico-font-check-sm,
.dropdown-lang .active .ico-font-check-sm {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------------------ *\
    List Nav Links
\* ------------------------------------------------------------ */
.list-nav-links {
    font-size: 16px;
    color: #303030;
    font-weight: 400;
}
.list-nav-links a {
    display: inline-flex;
    align-items: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #303030;
    font-weight: 400;
}
.list-nav-links a .list-nav-links-icon {
    flex: 0 0 40px;
    width: 40px;
    line-height: 52px;
    height: 52px;
}
.list-nav-links a i {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.list-nav-links .active a i,
.list-nav-links .active a,
.list-nav-links a:hover i,
.list-nav-links a:hover {
    color: #0299e5;
}
.list-nav-links li + li {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .list-nav-links li + li {
        margin-top: 0;
    }
    .list-nav-links a {
        width: 100%;
        font-size: 14px;
    }
}

/* ------------------------------------------------------------ *\
    Badge
\* ------------------------------------------------------------ */

.badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    vertical-align: middle;
    border-radius: 10px;
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    font-weight: 700;
    font-size: 10px;
    white-space: nowrap;
}



/*  Nav Tertiary  */


.nav-tertiary {
    text-align: center;
}

.nav-tertiary > ul {
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.nav-tertiary > ul:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.nav-tertiary > ul > li {
    float: left;
}

.nav-tertiary > ul > li > a {
    display: inline-block;
    padding: 55px 35px;
    border-bottom: 3px solid transparent;
    font-size: 25px;
    color: #787878;
    text-transform: uppercase;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-tertiary > ul > li.current > a {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-color: #078ed2;
    color: #078ed2;
}

.nav-tertiary > ul > li > a:hover {
    color: #078ed2;
}


/* ------------------------------------------------------------ *\
        Dropdown Menu
\* ------------------------------------------------------------ */

.dropdown-menu {
    border: 0;
    padding: 14px 0px;
    min-width: 200px;
    border-radius: 0;
    min-width: 200px;
}

.dropdown-menu > li > a {
    line-height: 1;
    display: block;
    font-weight: 400;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    padding: 14px 18px;
    text-transform: uppercase;
    font-size: 14px;
}

/* ------------------------------------------------------------ *\
        Intro
\* ------------------------------------------------------------ */

.intro {
    overflow: hidden;
    max-height: 1024px;
    margin-top: 92px;
}

.intro h1 {
    margin-bottom: 35px;
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}
.intro h1 span {
    color: #279bd7;
}

.intro .intro-actions a {
    display: inline-block;
    text-decoration: none;
}
.intro .intro-actions a + a {
    margin-left: 20px;
}

.intro .intro-video-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    right: 0;
    overflow: hidden;
    z-index: 2;
    max-height: 1024px;
}
.intro .intro-video-background:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

.intro .intro-video-background video {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.intro.loaded .intro-video-background video {
    opacity: 1;
    visibility: visible;
}

.intro .intro-content .container {
    height: 100%;
    position: relative;
    padding: 80px 0;
}

.intro .intro-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 1024px;
}

.intro .intro-inner {
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 0px; /*0 15px*/
    z-index: 3;
}

.intro .intro-entry {
    margin-bottom: 50px;
    font-size: 33px;
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.intro .intro-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.intro-features .background-overlay {
    background: linear-gradient(rgba(1,20,10,.2),rgba(1,20,10,.2)),url(../../img/icard_mobile/intro-bg-features.jpg);
}

.intro-features .intro-image {
    left: 0;
    right: auto;
    margin-left: -200px;
}

.intro .intro-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.intro .intro-container {
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.2%;
}

/*  Intro Secondary  */

.intro-secondary .intro-inner {
    width: 50%;
    text-align: left;
    position: absolute;
    text-align: auto;
    bottom: 23%;
    left: 0;
}

/*  Intro Faqs  */

/* .intro-faqs {
    margin-top: 0px;
} */

.intro.intro-faqs .intro-container {
    background: #f5f5f5;
    margin-top: 0;
    padding: 110px 0;
    height: auto;
}

.intro.intro-faqs .intro-container h2,
.intro.intro-faqs .intro-container h1 {
    color: #333333;
    text-shadow: none;
}


.intro.intro-faqs .intro-container h2 {
    font-weight: 300;
}

/* ------------------------------------------------------------ *\
        Intro legals
\* ------------------------------------------------------------ */

.intro-legals .intro-container {
    min-height: 320px;
    background: url(../../img/icard_mobile/bussines-page/intro-legals-bg.jpg) no-repeat center center;
    background-size: cover;

}

/* ------------------------------------------------------------ *\
        Intro Security
\* ------------------------------------------------------------ */

.intro-security .intro-container {
    background: url(../../img/icard_mobile/security-page/intro-security-bg.jpg) no-repeat center center;
    background-size: cover;
}

.intro-security .intro-inner {
    top: 42%;
}

/* ------------------------------------------------------------ *\
        Intro Nfc Wearables
\* ------------------------------------------------------------ */

.intro-nfc-wearables .intro-image {
    width: 100%;
    position: static;
    background-image: url({../../../../img/icard_mobile/intro-nfc-wearables.jpg);
    background-size: cover;
    background-position: center center;
    min-height: 825px;
    position: relative;
}

.intro.intro-nfc-wearables .intro-entry {
    padding-top: 30px;
}

.intro-content.intro-nfc-wearb h1 {
    margin-top: 0;
    margin-bottom: 60px;
}

.intro-nfc-wearables .intro-image svg {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 155px;
    z-index: 3;
}

.intro-nfc-wearables .intro-content {
    position: relative;
    text-align: center;
    padding: 30px 0;
}

.intro-wave-svg svg {
    width: 100%;
    z-index: -3;
    margin-top: -85px;
    position: absolute;
    left: 0;
    right: 0;
}

.intro.intro-nfc-wearables,
.section.section-send-request-money.section-fix {
    position: relative;
}

.intro.intro-nfc-wearables .intro-inner {
    position: relative;
    min-height: 550px;
}

.intro.intro-nfc-wearables .intro-content .container {
    padding: 0;
}

.intro.intro-nfc-wearables h1 {
    margin-top: 60px;
    margin-bottom: 60px;
    text-shadow: none;
}

.intro.intro-nfc-wearables h1 span {
    color: inherit;
    font-weight: 300;
}

.section.section-send-request-money.section-fix:first-child {
    padding-top: 0px;
}

/* ------------------------------------------------------------ *\
        Careers Rocket Component
\* ------------------------------------------------------------ */

.careers-outer {
    position: fixed;
    top: 150px;
    right: 0px;
    background-color: #2d90e4;
    z-index: 1000;
    height: 110px;
    width: 86px;
    border-radius: 43px 0 0 43px;
    display: block;
    text-decoration: none;
}

.careers-outer:hover,
.careers-outer:active,
.careers-outer:focus {
    outline: 0;
    outline: none;
    text-decoration: none;
}

.careers-outer:before {
    content: '';
    height: 50px;
    width: 125%;
    position: absolute;
    top: -12px;
    right: -25px;
    background-color: inherit;
    border-radius: 29px 0 0 0;
    transform: rotate(-30deg);
}

.careers-outer:after {
    content: '';
    height: 50px;
    width: 125%;
    position: absolute;
    bottom: -12px;
    right: -25px;
    background-color: inherit;
    border-radius: 0 0 0 29px;
    transform: rotate(30deg);
}

.careers-inner {
    position: absolute;
    top: 50%;
    left: 55%;
    z-index: 1001;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
}

.careers-inner img {
    width: 35px;
}

.careers-inner span {
    color: white;
    font-size: 14px;
}

/* ------------------------------------------------------------ *\
        Footer
\* ------------------------------------------------------------ */

.footer {
    color: #fff;
    margin-top: 70px;
}

.footer ul:last-child {
    margin-bottom: 0;
}

.footer .footer-maintenance {
    background-image: url(images/maintenance_bg.png);
    background-position-y: center;
}

.footer  a {
    color: #fff;
}

.footer .footer-section {
    padding: 45px 0 45px;
    position: relative;
}

.footer .footer-section-with-bg {
    padding: 140px 0 100px; /*change site 100px 0 100px;*/
    min-height: 470px; /*change site 545px;*/
    background-size: cover;
    background-position: center center;
}

.footer .footer-section-dark {
    background: #1b1b1b;
    color: #fff;
}

.footer .footer-section-semi-dark {
    background-color: #202020;
    color: #fff;
}

.footer .footer-content {
    background: #343434;
    padding: 70px 0 15px;
}

.footer .footer-logo {
    display: inline-block;
    margin-bottom: 17px;
}

.footer .middle-column {
    padding: 0;
}

.footer .footer-cols:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.footer .footer-col {
    float: left;
}

.footer .footer-col-size1 {
    width: 40%;
}

.footer .footer-col-size2 {
    width: 15%;
}

.footer .footer-col-size3 {
    width: 15%;
}

.footer .footer-col-size4 {
    width: 15%;
}

.footer .footer-col-size5 {
    width: 15%;
}

.footer .footer-content-inner {
    margin-bottom: 140px;
}

.footer .footer-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 18px;
    margin: 21px 0 25px;
}

.footer-nav {
    float: left;
    margin-top: 20px; /*changes on site: margin-top: 15px*/
}

.footer-nav > ul {
    margin-bottom: 5px;
}

.footer-nav > ul:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.footer-nav > ul > li {
    float: left;
}

.footer-nav > ul > li > a {
    position: relative;
    color: #fff;
    padding: 0 0 24px;
    background: none;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    font-weight: 300;
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.footer-nav > ul > li > a:after {
    display: none;
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20c19f;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.footer-nav > ul > li.current > a:after,
.footer-nav > ul > li > a:hover:after {
    opacity: 1;
    visibility: visible;
    top: 24px;
}

.footer-nav > ul > li.current > a,
.footer-nav > ul > li > a:hover {
    color: #20c19f;
    background: none;
}

.footer-nav > ul > li + li {
    margin-left: 25px;
}

.footer .footer-logo {
    float: left;
    margin-right: 25px;
}

/* ------------------------------------------------------------ *\
        Footer
\* ------------------------------------------------------------ */

.about-nav-wrapper {
    margin: 0 auto;
    display: table;
    table-layout: fixed;
}

.about-nav .about-nav-item {
    float: left;
    padding: 0 15px;
}

.about-nav .about-nav-item a {
    position: relative;
    color: #303030;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 11px;
    text-shadow: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.about-nav .about-nav-item a:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20c19f;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.about-nav .about-nav-item.current a:after,
.about-nav .about-nav-item a:hover:after {
    opacity: 1;
    visibility: visible;
    top: 26px;
}

.about-nav .about-nav-item.current a,
.about-nav .about-nav-item a:hover {
    color: #20c19f;
    background: none;
}

/* ------------------------------------------------------------ *\
        Contacts
\* ------------------------------------------------------------ */

.contacts {
    font-size: 14px;
    color: #fff; 
}

.contacts ul > li {
    line-height: 2.35;
    margin-bottom: 4px;
}

.contacts ul > li i {
    line-height: 1;
    display: inline-block;
    width: 18px;
    margin-right: 5px;
    text-align: center;
    vertical-align: middle;
}

.contacts ul > li > a,
.contacts ul > li > a i {
    color: inherit;
}

.contacts ul > li > a:hover,
.contacts ul > li > a:hover i {
    color: #20c19f;
}

/*Privacy - policy*/
.privacy-policy ul {
    list-style: disc;
}

/* ------------------------------------------------------------ *\
        Socials
\* ------------------------------------------------------------ */

.socials {
    color: #fff;
}

.socials li {
    display: inline-block;
}

.socials li + li {
    margin-left: 3px;
}

.socials a {
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.socials a:hover {
    color: inherit;
}

/* ------------------------------------------------------------ *\
    List Card Schemes
\* ------------------------------------------------------------ */

.list-cards-schemes {    
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.list-cards-schemes li + li {
    margin-left: 20px;
}

@media(max-width: 991px){
    .list-cards-schemes {
        justify-content: center;
    }

    .list-cards-schemes li {
        margin-bottom: 50px;
    }

    .list-cards-schemes img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media(max-width: 767px){
    .list-cards-schemes li {
        margin-bottom: 10px;
    }
}

/* ------------------------------------------------------------ *\
        Logo
\* ------------------------------------------------------------ */

.logo { height: auto; }

/* ------------------------------------------------------------ *\
        Button
\* ------------------------------------------------------------ */

.btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    border-radius: 15px;
    min-width: 200px;
    padding: 0 15px;
    text-align: center;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn:active,
.btn.active {
    box-shadow: none;
}


/*  Btn Primary  */
.btn-primary {
    color: #fff;
    background-color: #078ed2;
    border: 0;
}

.btn-primary:visited {
    background-color: #078ed2;
    border-color: #204d74;
}

.btn-primary:hover {
    background-color: #286090;
    border-color: #204d74;
}

.btn-primary-gray {
    border: 0;
    background: #6a6a6a;
    font-size: 18px;
    color: #343434;
}

.btn-primary-gray:hover,
.btn-primary-gray:focus,
.btn-primary-gray.focus {
    background: #585858;
}

/*  Btn Ghost  */
.btn-ghost {
    background: transparent;
    line-height: 46px;
    border-color: #fff;
    color: #fff;
}

.btn-ghost:hover {
    background: #078ed2;
    border-color: #078ed2
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: inherit;
}

.btn-ghost {
    border-color: #078ed2;
    color: #078ed2;
}

.btn-ghost:active {
    color: #078ed2;
}

.btn-ghost:hover {
    color: #fff;
}

/*  Btn App  */

.btn-app {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.btn-app:hover {
    opacity: .5;
}

/*  Btn Large  */
.btn-large {
    min-width: 430px;
    height: 75px;
    font-size: 22px;
    line-height: 75px;
}

/*  Button Medium  */
.btn-md {
    min-width: 320px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
}

/* Button Medium Small */
.btn-ms {
    min-width: 250px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
}

/*  Btn Small  */
.btn-sm {
    min-width: 145px;
    font-size: 20px;
}

.btn.btn-xsm {
    height: 36px;
    line-height: 34px;
    font-size: 13px;
}


/*  Btn Green  */
.btn-green {
    background: #20c19f;
}

/*  Btn Transparent Secondary  */

.btn-transparent-secondary {
    background: transparent;
    border-radius: 18px;
    color: #21abf0;
    height: 62px;
    line-height: 60px;
    font-size: 20px;
    min-width: 240px;
    font-weight: 500;
    border: 1px solid #21abf0;
    box-shadow: inset 0px 0px 14px 0px rgba(33,171,240,0.62), 0px 0px 14px 0px rgba(33,171,240,0.62);
}

.btn-transparent-secondary-white {
    color: #fff;
}

.btn-transparent-secondary:hover {
    box-shadow: none;
    color: #21abf0;
}

.btn-transparent-secondary-white:hover {
    color: #fff;
}

/*  Btn Tertiary  */

.btn-tertiary {
    border-radius: 18px;
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    background: #21abf0;
    height: 75px;
    line-height: 75px;
    border: 0;
    min-width: 240px;
}


.btn-tertiary:hover {
    color: #fff;
    background: #286090;
}

/*  Btn Quaternary  */

.btn-quaternary {
    height: 62px;
    line-height: 62px;
    border: 0;
    border-radius: 18px;
    font-size: 21px;
    font-weight: 700;
    padding: 0 15px;
    background: #21abf0;
    text-align: center;
    color: #fff;
    min-width: 230px;
    box-shadow: 0 0 23px rgba(33, 171, 240, .6);
}

.btn-quaternary:hover {
    color: #fff;
    box-shadow: none

}

/* ------------------------------------------------------------ *\
        Btn Menu
\* ------------------------------------------------------------

.btn-menu { display: inline-block; height: 9px; padding-top: 9px; }
.btn-menu span { position: relative; display: block; width: 25px; height: 15px; border-top: 3px solid #fff; }

.btn-menu span:before,
.btn-menu span:after { position: absolute; width: 100%; height: 3px; background: #fff; content: ''; }

.btn-menu span:before { top: -9px; }
.btn-menu span:after { top: 3px; }

.btn-menu span:before,
.btn-menu span:after,
.btn-menu span {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.btn-menu.active span { border-color: transparent; }
.btn-menu.active span:before,
.btn-menu.active span:after { background: #fff; }

.btn-menu.active span:before {
    -webkit-transform: rotate(45deg) translate(2.5px, 6px);
    transform: rotate(45deg) translate(2.5px, 6px);
}
.btn-menu.active span:after {
    -webkit-transform: rotate(-45deg) translate(2.5px, -6px);
    transform: rotate(-45deg) translate(2.5px, -6px);
} */

/* ------------------------------------------------------------ *\
        Btn Menu
\* ------------------------------------------------------------ */

.btn-menu { display: inline-block; height: 9px; padding-top: 9px; }
.btn-menu span { position: relative; display: block; width: 25px; height: 15px; border-top: 3px solid #0f0d0d; }

.btn-menu span:before,
.btn-menu span:after { position: absolute; width: 25px; height: 3px; background: #0f0d0d; content: ''; }

.btn-menu span:before { top: -11px; }
.btn-menu span:after { top: 6px; }

.btn-menu span:before,
.btn-menu span:after,
.btn-menu span {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.btn-menu.active span { border-color: transparent; }
.btn-menu.active span:before,
.btn-menu.active span:after { background: #0f0d0d; }

.btn-menu.active span:before {
    -webkit-transform: rotate(45deg) translate(5px, 6.5px);
    transform: rotate(45deg) translate(5px, 6.5px);
}
.btn-menu.active span:after {
    -webkit-transform: rotate(-45deg) translate(4.5px, -7px);
    transform: rotate(-45deg) translate(4.5px, -7px);
}

/* ------------------------------------------------------------ *\
        Main
\* ------------------------------------------------------------ */

.main {
    padding-top: 70px; 
}

/*  Main Offset  */
.main-offset-alt {
    padding-top: 100px;
}

/* ------------------------------------------------------------ *\
        Section
\* ------------------------------------------------------------ */

.section {
    padding: 70px 0;
}

.section .section-head {
    text-align: center;
    margin-bottom: 0px;
}

.section .section-head-alt {
    margin-bottom: 70px;
}

.section .section-head-offset-bottom {
    margin-bottom: 30px;
}

.section .section-head .section-head-actions {
    padding-top: 35px;
}

.section .section-subtitle {
    margin-bottom: 40px;
    text-align: center;
    font-weight: 200;
    padding: 40px 0;
}

.section .section-title {
    margin-bottom: 17px;
    margin-top: 0;
}

.section .section-title-alt {
    font-size: 20px;
    font-weight: 300;
}

.section-title-secondary {
    font-size: 40px;
}

.section .section-title-blue {
    color: #3a405a;
}

.section .section-title-xl {
    font-size: 102px;
    margin-bottom: 20px;
}


.section-title-with-icon span {
    vertical-align: middle;
    display: inline-block;
}

/*  Section Background None  */
.section-bg-none .section-body {
    background: none;
    padding: 0;
}

/* ------------------------------------------------------------ *\
        Section Travel
\* ------------------------------------------------------------ */

.section-travel {
    font-weight: 200;
}

.section-travel .section-body {
    margin-bottom: 25px;
}

.section-travel .section-entry-right {
    padding: 185px 54px 0 15px;
}

.section-travel .section-entry-left-primary {
    padding: 70px 60px 0 0;
    text-align: right;
}

.section-travel .section-entry-left-secondary {
    padding: 155px 60px 0 0;
    text-align: right;
}

.section-travel .section-image {
    position: relative;
}

.section-travel .image-left {
    position: absolute;
    top: 70px !important;
    left: -103px !important;
}

.section-travel .image-right {
    position: absolute;
    top: 174px !important;
    left: auto !important;
    right: -42px !important;
}

.section-travel .image-bottom {
    position: absolute;
    top: 279px !important;
    left: -90px !important;
}

/* ------------------------------------------------------------ *\
        Section Security Test
\* ------------------------------------------------------------ */

.section-security-test .section-image {
    margin-left: 340px;
}

.section-security-test .image-bottom {
    top: 45px!important;
    left: -20px!important;
    width: 630px;
}

.section-security-test .image-middle {
    left: 25px !important;
}

.section-security-test .image-top {
    left: 170px!important;
    top: 142px!important;
    width: 354px;
}

.security-background-box {
    width: 100%;
    z-index: -1;
}

/* ------------------------------------------------------------ *\
        Section Virtual Card
\* ------------------------------------------------------------ */

.section-virtual-card .section-body {
    padding-bottom: 15px;
}

.section-virtual-card .section-image {
    margin-left: -100px;
    padding-top: 40px;
}

.section-virtual-card .section-image img {
    /*changes on site width:100%; */
    height: auto;
}

.section-virtual-card .list-features {
    margin-right: -30px;
    padding-left: 60px;
}

/* ------------------------------------------------------------ *\
        Section Features
\* ------------------------------------------------------------ */

.section-features-primary .section-body {
    padding-top: 80px;
}

.section-features-primary .features-right {
    margin-right: -15px;
}

/* ------------------------------------------------------------ *\
        Section Security
\* ------------------------------------------------------------ */

.section-security {
    font-size: 16px;
    line-height: 2.25;
}

.section-security .section-head {
    margin-bottom: 120px;
}

.section-security .section-content.box {
    padding: 65px;
}

.section-security .section-content-outer + .section-content-outer {
    margin-top: 110px;
}

.section-security .section-content-outer-primary .section-image {
    margin-top: -70px;
    margin-left: -40px;
}

.section-security .section-content-outer-secondary .section-image {
    margin-top: -90px;
    margin-left: -90px;
}

/*  Section Security Primary  */

.section-security-secondary {
    padding-bottom: 0;
}
/* new sections */
.section-security .paragraph {
    min-height: 510px;
}
.section-security .section-image.position-absolute {
    position: relative;
}
.section-security .section-image.position-absolute img {
    position: absolute;
    right: -130px;
    top:-88px;
}
.section-security.section-messenger .section-image {
    margin-left: 0;
    margin-top: -50px;
}
.section-messenger h3.mt-fix {
    margin-top: 122px;
}
.section-messenger .section-image.secure img {
    top:0;
}


/* ------------------------------------------------------------ *\
        Section Layout Primary
\* ------------------------------------------------------------ */

.section-layout-primary {
    position: relative;
}

.section-layout-primary .section-content {
    position: absolute;
    top: 65px;
    right: 15px;
    z-index: 1;
}

.section-security-alerts .section-subtitle {
    max-width: 570px;
    margin: 0 auto;
}

.section-security-alerts .section-head {
    margin-bottom: 50px;
}

/* ------------------------------------------------------------ *\
        Section Security Corporate
\* ------------------------------------------------------------ */

.section-security-corporate .section-body {
    padding-top: 60px;
}

.section-security-corporate .section-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.section-security-corporate.section .section-content {
    top: -60px;
    right: 134px;
    max-width: 500px;
    padding: 60px 40px;
}

/* ------------------------------------------------------------ *\
        Section Funds
\* ------------------------------------------------------------ */

.section-funds {
    padding-bottom: 0;
}

.section-funds .section-head {
    margin-bottom: 90px;
}

/* ------------------------------------------------------------ *\
        Section Store Your Loyalty Cards -----change
\* ------------------------------------------------------------ */

.loyalty-cards-container{
    width: 100%;
    max-height: 630px;
}

/* phone */

.phone {
    width: 50%;
    position: relative;
    margin: 0 auto;
}

.frame-loyalty-cards {
    width: 270px;
}

.loyalty-card-image {
    width: 100%;
    transform: rotate(-15deg);
    box-shadow: 0 0 51px 0 rgba(41,43,43,.2);
    border-radius: 5px;
}

/*============*/
/* card1 & card1 slideOutRight */

.card1 {
    width: 344px;
    position: relative;
    left: 40px;
    bottom: 545px;
    z-index: -1;
    margin: 0 auto;
}

.card1 img:nth-of-type(2) {
    position: absolute;
    width: 344px;
    left: 0vw;
    top: 0vw;
    z-index:-3;
}

.start-animation.card1 {
    animation-name: card1-slideout;
    -webkit-animation-name: card1-slideout;
    -moz-animation-name: card1-slideout;
    -o-animation-name: card1-slideout;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3с;
    animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -o-animation-delay: 400ms;
    animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -webkit-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -moz-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -o-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    animation-iteration-count: once;
    -webkit-animation-iteration-count: once;
    -moz-animation-iteration-count: once;
    -o-animation-iteration-count: once;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

@keyframes card1-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-webkit-keyframes card1-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-moz-keyframes card1-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-o-keyframes card1-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}


.animation-loyalty-cards img:nth-of-type(1) {
    animation-name: fadeinout;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-delay: 8s;
    animation-direction: alternate;
}

@-webkit-keyframes fadeinout {
    0% {
        opacity:1;
    }
    45% {
        opacity:1;
    }
    55% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}

@keyframes fadeinout {
    0% {
        opacity:1;
    }
    45% {
        opacity:1;
    }
    55% { 
        opacity:0;
    }
    100% {
        opacity:0;
    }
}

/*============*/
/* CARD2 & CARD2 slideOutRight*/

.card2 {
    width: 344px;
    position: relative;
    left: -160px;
    bottom: 530px;
    z-index: -3;
    margin: 0 auto;
}

.card2 img:nth-of-type(2) {
    position: absolute;
    width: 344px;
    left: 0vw;
    top: 0vw;
    z-index: -3;
}

.start-animation.card2 {
    animation-name: card2-slideout;
    -webkit-animation-name: card2-slideout;
    -moz-animation-name: card2-slideout;
    -o-animation-name: card2-slideout;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-delay: 0ms;
    -webkit-animation-delay: 0ms;
    -moz-animation-delay: 0ms;
    -o-animation-delay: 0ms;
    animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -webkit-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -moz-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -o-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    animation-iteration-count: once;
    -webkit-animation-iteration-count: once;
    -moz-animation-iteration-count: once;
    -o-animation-iteration-count: once;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

@keyframes card2-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-webkit-keyframes card2-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-moz-keyframes card2-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

@-o-keyframes card2-slideout {
    0% {
        transform: translatex(0);
        visibility: visible;
    }
    100% {
        transform: translatex(75em);
    }
}

/*============*/
/* card3 & card3 slideOutLeft*/

.card3 {
    width: 344px;
    position: relative;
    left: 130px;
    bottom: 725px;
    margin: 0 auto;
    z-index: -4;
}

.card3 img:nth-of-type(2) {
    position: absolute;
    width: 344px;
    left: 0vw;
    top: 0vw;
    z-index: -3;
}

.start-animation.card3 {
    animation-name: card3-slideout;
    -webkit-animation-name: card3-slideout;
    -moz-animation-name: card3-slideout;
    -o-animation-name: card3-slideout;
    animation-delay: 400ms;
    -webkit-animation-delay: 400ms;
    -moz-animation-delay: 400ms;
    -o-animation-delay: 400ms;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -webkit-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -moz-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    -o-animation-timing-function: cubic-bezier(0.6, -0.04, 0.735, 0.045);
    animation-iteration-count: once;
    -webkit-animation-iteration-count: once;
    -moz-animation-iteration-count: once;
    -o-animation-iteration-count: once;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
}

@keyframes card3-slideout {
    0% {
        visibility: visible;
        transform: translatex(0);
    }
    100% {
        transform: translatex(-75em);
    }
}

@-webkit-keyframes card3-slideout {
    0% {
        visibility: visible;
        transform: translatex(0);
    }
    100% {
        transform: translatex(-75em);
    }
}

@-moz-keyframes card3-slideout {
    0% {
        visibility: visible;
        transform: translatex(0);
    }
    100% {
        transform: translatex(-75em);
    }
}

@-o-keyframes card3-slideout {
    0% {
        visibility: visible;
        transform: translatex(0);
    }
    100% {
        transform: translatex(-75em);
    }
}

/*============*/


/*============*/
/* card1,card2 slideInRight & delay;
card3 slideInLeft & delay*/

.slide.one {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    animation-delay: 1.7s;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.slide.two {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.slide.three {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2.3s;
    -moz-animation-delay: 2.3s;
    animation-delay: 2.3s;
}

/*============*/
/* slideInLeft*/

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);

    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

/*============*/
/*slideInRight*/

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);

    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);


    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.mobile-loyalty-cards {
    display: none;
}

/* ------------------------------------------------------------ *\
        Section Gift Cards (Design Gift Cards Instantly)
\* ------------------------------------------------------------ */

.mobile-gift-cards {
    display: none;
}



/* ------------------------------------------------------------ *\
        Section Virtual Cards (Be protecteed with virtual cards)
\* ------------------------------------------------------------ */

.mobile-virtual-cards{
    width: 100%;
    display:none;
} 

.container-virtual-cards {
    left: 15%;
    top: 4vh; 
}

.virtual-cards-screen { 
    position: absolute;
    top: 42px;
    left: 4px;
    right: 10px;
    bottom: 10px;
}

.virtual-card {
    color: rgba(0, 0, 0, 0.2);
    font-size: 12px;
    text-align: center;
    box-shadow: 0 0 68px 0 rgba(20,5,52,.4);
    border-radius: 10px;
}

img.virtual-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 313px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 0.4s cubic-bezier(0.28, 0.55, 0.385, 1.65);
    transition: 0.4s cubic-bezier(0.28, 0.55, 0.385, 1.65);
}

.virtual-card:nth-child(1) {
    z-index: 11;
    top: 0px;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
}

.virtual-card:nth-child(2) {
    z-index: 10;
    top: 146px;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scale(0.7);
    transform: scale(0.9);
    opacity: 0.9;  
}

.virtual-card:nth-child(3) {
    z-index: 9;
    top: 270px;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
}

#slideshow-virtual-cards { 
    background-image: url(../../img/icard_mobile/phone-frame.png);
    background-repeat: no-repeat;
    margin: 50px auto;
    position: relative;
    width: 68%;
    height: 600px;
    padding: 10px;
    top: -4vh;
}

img.phone-virtual-cards {
    margin-right: 33%;
}

.virtual-cards-shield {
    z-index: 11;
    position: absolute;
    right: 68%;
    top: -4%;
}

/*pulse animation shield tick*/
.schield-tick {
    position: absolute;
    z-index: 12;
    left: 9%;
    top: 50px;
    animation-name: bounceIn;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounceIn;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.5, 0.5, 0.5);
        transform: scale3d(0.5, 0.5, 0.5);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.5, 0.5, 0.5);
        transform: scale3d(0.5, 0.5, 0.5);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

/* ------------------------------------------------------------ *\
        Section Pay
\* ------------------------------------------------------------ */

.section-pay-inner {
    max-width: 885px;
    margin: 0 auto;
    padding-top: 20px;
}

.section-pay .feature-icon-top {
    padding: 28px 50px 13px;
}

.section-pay .image-top {
    top: 100px !important;
    left: 300px !important;
}

.section-pay .image-middle {
    top: 160px !important;
    left: 200px !important;
}

.section-pay .section-image {
    padding: 66px 0 0 77px;
}


.image-bottom img {
    max-width: 650px;
}

.image-middle img {
    max-width: 280px;
    position: relative;
    top: 26px;
}

.image-top img {
    position: relative;
    left: -385px;
    top: -53px;
    max-width: 600px;
}

.tap-pay-mobile-image {
    display: none;
}

/* ------------------------------------------------------------ *\
        Section Partners
\* ------------------------------------------------------------ */

.section-partners h5 {
    margin-bottom: 30px;
}

.section-partners .section-title {
    margin-bottom: 37px;
}

.section-partners .section-subtitle {
    margin-bottom: 69px;
}

.section-partners .section-slim-inner {
    margin-bottom: 95px;
}

/* ------------------------------------------------------------ *\
        Section Platform
\* ------------------------------------------------------------ */

.section-platform {
    padding-bottom: 70px;
}

.section-platform .section-title {
    margin-bottom: 34px;
}

.section-platform .section-subtitle {
    margin-bottom: 50px;
}

.section-platform .section-body {
    padding-top: 0;
}

.section-platform .section-slim-inner {
    margin-bottom: 75px;
}

.section-platform .section-image img {
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------------------ *\
        Sectiom Limits
\* ------------------------------------------------------------ */

.section-limits .section-head {
    margin-bottom: 130px;
}

.section-limits .centered-feature {
    margin-bottom: 0
}

.centered-feature {
    position: relative;
    padding: 35px 30px 35px 30px;
    margin-bottom: 50px;
    font-size: 18px
}

.centered-feature .centered-feature-icon,.feature-icon {
    position: absolute;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: -60px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
    background: #d2d2d2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.centered-feature-icon-top.centered-feature {
    padding: 50px 30px 25px;
    text-align: center;
}

.centered-feature .centered-feature-icon-orange {
    background: #ffa53b
}

.centered-feature .centered-feature-icon-purple {
    background: #844cea
}

.centered-feature .centered-feature-icon-light-blue, .help-feature-icon.feature-icon-light-blue {
    background: #12ded3
}

.centered-feature .centered-feature-icon-green {
    background: #26ba92
}

.centered-feature .centered-feature-icon-blue {
    background: #19acdf
}

.centered-feature .centered-feature-icon-red {
    background: #dc3417
}

.centered-feature .centered-feature-icon-pink, .help-feature-icon.feature-icon-pink {
    background: #fa4e9f
}

.feature-icon.feature-light-blue {
    background: #40e2fa;
}

.feature-icon.feature-yellow {
    background: #f8d514;
}

.feature-icon.feature-light-green {
    background: #48e191;
}

.feature-icon.feature-pink {
    background: #f93e72;
}

/* ------------------------------------------------------------ *\
        Section Slim
\* ------------------------------------------------------------ */

.section-slim-inner {
    margin: 0 auto;
    padding-top: 60px; 
}

.section-pay .section-slim-inner {
    padding-top: 60px;
    margin-bottom: 50px;
}

.section-slim-lg .section-slim-inner {
    max-width: 972px; /*cHANGES 885px*/
}

.section-slim-md .section-slim-inner {
    max-width: 770px;
}

/* ------------------------------------------------------------ *\
        Section Giftcard
\* ------------------------------------------------------------ */
.section-giftcard .section-content {
    max-width: 670px;
    padding-top: 60px;
}

/* ------------------------------------------------------------ *\
        Section business
\* ------------------------------------------------------------ */

.section-business .section-body {
    padding-top: 65px;
}

.section-business .section-image {
    max-width: 230px;
    margin-left: 30px;
}

.section-business .section-foot p + p {
    margin-top: 35px;
}

.section-business .list-features {
    padding-left: 40px;
    margin-right: -40px;
}

/* ------------------------------------------------------------ *\
        Section Exchange Rates
\* ------------------------------------------------------------ */

.section-exchange-rates .section-head {
    margin-bottom: 60px;
}

.section-exchange-rates {
    padding-top: 30px;
}

/* ------------------------------------------------------------ *\
        Section Fees
\* ------------------------------------------------------------ */

.section-fees {
    padding-bottom: 0;
}

.section-fees .box-primary:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------ *\
        Section Help
\* ------------------------------------------------------------ */

.section-help .section-subtitle {
    margin-bottom: 30px;
}

.section-help .section-body {
    padding-top: 45px;
}

.section-help .box-primary {
    font-size: 18px;
}

/* ------------------------------------------------------------ *\
        Section About
\* ------------------------------------------------------------ */

.section-about {
    padding-top: 0px;
}

.section-about .nav {
    float:none;
    margin: 0 auto 110px;
    display: table;
    table-layout: fixed;
}

.section-about .nav li > a {
    color: #303030;
    padding-bottom: 15px;
    text-shadow: none;
}

/* ------------------------------------------------------------ *\
        Section About Icard
\* ------------------------------------------------------------ */
.section-about-icard .ico-font-issued-cards,
.section-about-icard .ico-font-processed-transactions,
.section-about-icard .ico-font-wallet-alt,
.section-about-icard .ico-font-business-clients {
    color: #6ccaea;
}

.section-about-icard .processed-transactions h3 {
    margin-top: 14px;
}

.section-about-icard .section-story-title {
    text-align: center;
    margin-bottom: 51px;
    margin-top: 20px;
}

.section-about-icard .section-title.company-performance {
    margin-top: 0 !important;
    color: #ccc;
}

.section-about-capabilities {
    padding-bottom: 0;
}

.section-about.section-about-icard.section-bg-none {
    padding-bottom: 50px;
}

/* ------------------------------------------------------------ *\
        Section Leadership
\* ------------------------------------------------------------ */
.main.about {
    padding-top: 26px;
}

.our-products .section-title {
    margin-top: 101px;
}

.our-products .section-subtitle {
    margin-bottom: 94px;
}

.our-products .tabs .product-tab {
    position: relative;
    height: 200px;
    border: 1px solid #e2e2e2;
    padding: 35px 15px;
    margin-bottom: 30px;
    background-color: #fbfbfb;
}

.our-products .tabs .product-tab.current,
.our-products .tabs .product-tab:hover {
    background-color: #ffffff;
}

.our-products .tabs .product-tab .ico-font-arrow-down-solid {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: #c3c3c3;
}

.our-products .tabs .product-tab:hover {
    cursor: pointer;
}

.our-products .tabs .product-tab .product-image {
    padding: 0 5px 10px 5px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    width: 100%;
}

.our-products .tabs .product-tab .product-image img {
    max-width: 100%;
    height: auto;
}

.our-products .tabs .product-tab:hover .product-image img,
.our-products .tabs .product-tab.current .product-image img {
    transform: scale(1.05);
}

#product-tab-2 img,
#product-tab-4 img,
#product-tab-9 img,
#product-tab-10 img {
    width: 100%;
}
/* .our-products .tabs .product-tab.current .active-img {
        display: block;
} */
.our-products .tabs .product-tab .product-logo-full-width {
    width: 100%;
}

/* .our-products .tabs .product-tab.current .inactive-img,
.our-products .tabs .product-tab .active-img {
        display: none;
}

.our-products .tabs .product-tab .active-img {
        margin: 0 auto;
} */

.our-products .tabs .product-tab h5 {
    position: absolute;
    bottom: 10px;
    left: 0;
    text-align: center;
    width: 100%;
    font-size: 14px;
    padding: 5px;
    color: #a6a6a6;
    line-height: 1.4;
}

.our-products .tabs .product-tab.current h5 {
    color: #303030;
}

.product-description {
    display: none;
}

.product-description.current {
    display: block;
    margin-bottom: 40px;
    overflow: auto;
    margin-top: 0px;
}

.product-description-others{
    display: block;
    margin-bottom: 3px;
    overflow: auto;
    margin-top: 0px;
}

.other-products .section-subtitle {
    margin-bottom: 5px;
}

.product-title {
    color: #303030;
    font-size: 27px;
}

.product-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 29px;
}

.product-overview {
    font-size: 16px;
    margin-bottom: 35px;
    text-align: justify;
}

.our-products-footer-action-tab {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.our-products-footer-action-tab h2 {
    margin-bottom: 44px;
}

.our-products-footer-action-tab button {
    height: 75px;
    width: 35%;
    background: #19acdf;
    font-size: 30px;
    font-weight: 500;
}

.our-products .section-body {
    margin-bottom: 120px;
}

.our-products .footer {
    margin-top: 0px;
}

/* ------------------------------------------------------------ *\
        Section Leadership
\* ------------------------------------------------------------ */

.leadership .section-title {
    margin-top: 101px;
    /*margin-bottom: -13px;*/
}

.leadership .section-title.board {
    margin-top: 2px;
}

.leadership .section-subtitle {
    margin-bottom: 94px;
}

.leadership .section-subtitle.board {
    margin-bottom: 86px;
}

.founder {
    margin-bottom: 106px;
}
.footer-founders .founder-position {
    line-height: 30px;
    font-size: 16px;
    text-transform: none;
}

.founder img {
    width: 100%;
    margin-bottom: 10px;
}

.footer-founders .founder {
    margin-bottom: 88px;
}

.founder-name {
    color: #19acdf;
    font-size: 27px;
}

.founder-position {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0px;
    min-height: 50px;
}

.founder-overview {
    font-size: 16px;
    text-align: left;
}

.intro-content-text {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.intro-content-text h2 {
    margin: 0;
}

.leadership .intro-content-text h2,
.our-products .intro-content-text h2 {
    text-shadow: 1px 3px 24px rgba(0, 0, 0, .6);
}

.our-products .intro-content-text {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.leadership .footer {
    margin-top: 0px;
}
.intro .intro-container.leadership-footer-padding {
    padding-bottom: 480px;
}

/* ------------------------------------------------------------ *\
        Section Nfc Features
\* ------------------------------------------------------------ */

.section-nfc-features .section-actions {
    padding-top: 60px;
    text-align: center;
}

/* ------------------------------------------------------------ *\
        Section Nfc Security
\* ------------------------------------------------------------ */

.section-nfc-security .section-image img {
    width: 100%;
    height: auto;
}

.section-nfc-security .list-squares .square-icon {
    top: 0;
}

.section-nfc-security .list-squares {
    padding-top: 200px;
}

/* ------------------------------------------------------------ *\
        Video Screen Outer
\* ------------------------------------------------------------ */

.video-screen-outer {
    max-width: 266px;
    margin: 0 auto;
}

.video-screen {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.video-screen-mobile {
    max-width: 303px;
    padding-top: 215%;
}

.video-frame-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 3;
}

.video-screen .video-container {
    position: absolute;
    /* top: 3.3%; */
    top: 5.8%;
    bottom: 5%;
    left: 3.9%;
    right: 3.2%;
    z-index: 2
}

.video-screen .video-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}

.video-screen-outer video {
    width: 100%;
    height: auto;
}

.video-frame-shadow  {
    position: absolute;
    top: -3%;
    left: -2.2%;
    right: -30%;
    bottom: 0;
    z-index: 1;
}

.video-frame-shadow img {
    width: 100%;
    height: auto;
}


/* ------------------------------------------------------------ *\
        Video Screen NFC Outer 
\* ------------------------------------------------------------ */
.nfc-wearables {
    background-image: url({../../../../img/icard_mobile/intro-nfc-wearables.png);
}

.watch-nfc-image {
    position: relative;
    z-index: -1;
    right: 60%;
    border-radius: 25px;
    box-shadow: 0 0 43px 1px rgba(22,21,21,.3);
}

.video-nfc-screen-outer {
    max-width: 510px;
    position: relative;
    margin: 0 auto;
}

.video-screen-nfc {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 43px 1px rgba(22,21,21,.3);
}

.video-screen-nfc-mobile {
    max-width: 510px;
    padding-top: 122%;
}

.video-frame-nfc-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 3;
}

.video-screen-nfc .video-nfc-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.video-screen-nfc .video-nfc-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}

.video-nfc-screen-outer video {
    width: 100%;
    height: auto;
}

/* ------------------------------------------------------------ *\
        Features
\* ------------------------------------------------------------ */
.feature-icon-top.feature-business {
    padding: 50px 30px 25px;
    text-align: center;
}

.feature-business {
    position: relative;
    padding: 35px 30px 35px 30px;
    margin-bottom: 50px;
    font-size: 18px;
}

.feature-business .feature-icon-pink {
    background: #fa4e9f;
}

.feature-business .feature-icon-blue {
    background: #19acdf;
}

.feature-business .feature-icon {
    position: absolute;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: -60px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.feature {  
    position: relative;
    padding: 35px 30px 35px 30px;
    margin-bottom: 50px;
    font-size: 18px;
}

.feature h5 {
    font-size: 19px;
    color: #535353;
    font-weight: 400;
    margin: 0;
    line-height: 2.87;
}

.feature p {  /*changes no such content */
    margin: 0 0 0 69px;
    line-height: 1.77;
    font-weight: 300;
    font-size: 18px;
    text-align: left;
}

.feature .feature-icon  {
    position: absolute;
    height: 65px;
    width: 65px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    left: 11%;
    top: 30px;
    box-shadow: -5px 9px 35px 0px rgba(100, 107, 109, 0.5);
    background: #d2d2d2;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.feature-icon:hover  {
    box-shadow:0 0 0 !important;
    cursor: pointer;
}

/*  Feature Icon Position  */
.feature-icon-top.feature {
    padding: 50px 30px 25px; /*  More space for larger text  */
    text-align: center;
}

/*feature- home-page -back image*/
.features-tabs-back-image.tab > img {
    position: absolute;
    z-index: -6;
    top: -100px;
    right: 10%;
    display: inline;
}
.slide-in {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.mobile-features-image {
    display: none;
}

/* ------------------------------------------------------------ *\
        Feature Secondary	
\* ------------------------------------------------------------ */

/*  Feature Circle Colors  */
.feature.feature-secondary .feature-icon-orange {
    background: #ffa53b;
}

.feature.feature-secondary .feature-icon-yellow {
    background: #f8d511;
}
.feature.feature-secondary .feature-icon-purple {
    background: #844cea;
}

.feature.feature-secondary .feature-icon-light-blue {
    background: #12ded3;
}

.feature.feature-secondary .feature-icon-light-green {
    background: #a4c639;
}

.feature.feature-secondary .feature-icon-green {
    background: #26ba92;
}

.feature.feature-secondary .feature-icon-blue {
    background: #19acdf;
}

.feature.feature-secondary .feature-icon-red {
    background: #dc3417;
}

.feature.feature-secondary .feature-icon-pink {
    background: #fa4e9f;
}


/*  Feature Circle Colors  */
.feature.feature-orange .feature-icon {
    background: #ffa53b;
}

.feature.feature-yellow .feature-icon {
    background: #f8d514;
}

.feature.feature-purple .feature-icon {
    background: #844cea;
}

.feature.feature-light-blue .feature-icon {
    background: #40e2fa;
}

.feature.feature-light-green .feature-icon {
    background: #a4c639;
}
.feature.feature-lighter-green .feature-icon {
    background: #48e191;
}

.feature.feature-green .feature-icon {
    background: #26ba92;
}

.feature.feature-blue .feature-icon {
    background: #19acdf;
}

.feature.feature-red .feature-icon {
    background: #dc3417;
}

.feature.feature-pink .feature-icon {
    background: #f93e72;
}

/*  Feature Circle Colors Hover  */

.feature-alt.current{
    /* border-color: #00000; */
    box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.feature-alt.current.feature-green{
    /* border-color: #20c19f; */
    box-shadow: 0px 0px 50px 0px rgba(32, 193, 159, 0.4);
}

.feature-alt.current.feature-blue{
    /* border-color: #078ed2; */
    box-shadow: 0px 0px 50px 0px rgba(7, 142, 210, 0.4);
}

.feature-alt.current.feature-red{
    /* border-color: #dc3417; */
    box-shadow: 0px 0px 50px 0px rgba(220, 52, 23, 0.4);
}

.feature-alt.current.feature-purple{
    /* border-color: #8560a8; */
    box-shadow: 0px 0px 50px 0px rgba(133, 96, 168, 0.4);
}

.feature-alt.current.feature-orange{
    /* border-color: #ea723d; */
    box-shadow: 0px 0px 50px 0px rgba(234, 114, 61, 0.4);
}

.feature-alt.current.feature-light-green{
    /* border-color: #a4c639; */
    box-shadow: 0px 0px 50px 0px rgba(164, 198, 57, 0.4);
}


/* ------------------------------------------------------------ *\
        Feature Alt
\* ------------------------------------------------------------ */

.feature-alt {
    border: 1px solid transparent;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 1.71;
    border-radius: 15px;
    margin-bottom: 95px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-alt .feature-content {
    position: static;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.feature-alt.feature-icon-top {
    padding-top: 41px;
}

/*  Feature Outer   */

.feature-outer {  /*changes*/
    min-height: 125px;
    margin-bottom: 60px;
    width: 380px;
}

.feature-outer .feature {
    margin-bottom: 0;
}

.feature-outer .feature-image img {
    max-width: 250px;
    display: block;
    height: auto;
    margin: 0 auto;
}

/*  Feature Offset Small */
.feature-offset-sm.feature {
    padding-left: 13px;
    padding-right: 13px;
}


/* ------------------------------------------------------------ *\
        Feature Security
\* ------------------------------------------------------------ */

.feature-security {
    line-height: 1.94;
    background: #fff;
    border-radius: 25px;
    padding: 25px 30px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, .3);
    min-height: 600px;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-security:hover {
    box-shadow: 0px 0px 60px rgba(68, 132, 231, .3);
}

.feature-security-light-blue:hover {
    box-shadow: 0px 0px 60px rgba(109, 216, 234, .5);
}

.feature-security-orange:hover {
    box-shadow: 0px 0px 60px rgba(255, 153, 127, .5);
}

.feature-security  h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    text-align: center;
    min-height: 60px;
}

.feature-security .feature-security-image {
    text-align: center;
    margin-bottom: 35px;
}

.feature-security .feature-security-inner {
    max-width: 273px; 
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
        Feature Funds
\* ------------------------------------------------------------ */

.features-funds [class*="col-"] {
    margin-bottom: 70px;
}

.feature-security-primary {
    height: 100%;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 0;
    background: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-security-primary.feature:hover {
    background: #fff;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, .3);
}

.feature-security-primary.feature:hover .feature-icon {
    box-shadow: none;
}

.feature-security-primary .feature-content {
    text-align: center;
    padding: 0;

}

.feature-security-primary.feature .feature-icon {
    position: static;
    margin-bottom: 25px;
    display: inline-block;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
}

.feature-security-primary h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.feature-security-primary p {
    font-size: 16px;
    padding: 0;
    margin-left: 0;
    text-align: center;
}

.feature-security-primary.feature-pink .feature-icon {
    background: #fa4e9f;
}

.feature-security-primary.feature-orange .feature-icon {
    background: #ffa53b;
}

.feature-security-primary.feature-light-blue .feature-icon {
    background: #13ded3;
}

.feature-security-primary.feature-purple .feature-icon {
    background: #844dea;
}

.feature-security-primary.feature-light-green .feature-icon {
    background: #b7e015;
}


/* .feature-security-primary-alt h3,
.feature-security-primary-alt p,
.feature-security-primary-alt {
        text-align: left;
} */

.feature-security-primary-alt.feature:hover {
    background: none;
    box-shadow: none
}

.feature-security-primary-alt.feature:hover .feature-icon {
    box-shadow: none;
}

/* ------------------------------------------------------------ *\
        Callout
\* ------------------------------------------------------------ */

.callout {
    text-align: center;
}

.callout h3 {
    margin-bottom: 43px;
    color: #fff;
    margin-top: 0;
    font-size: 50px;
}

.callout h4 { /*changes*/
    font-size: 43px;
}

.callout span {
    color: #078ed2;
}

.callout-actions {
    text-align: center;
}

.callout .callout-actions + .callout-actions {
    margin-top: 60px;
}

.callout-actions a {
    display: inline-block;
}

.callout-actions a + a {
    margin-left: 15px;
}

/* ------------------------------------------------------------ *\
        Skew Item
\* ------------------------------------------------------------ */

.skew-icon-holder {
    padding-left: 130px;
    position: relative;
    height: 100px;
}

.skew-icon-holder .skew-icon-holder-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 10px 0px 0px 150px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.skew-icon-holder .skew-icon {
    position: absolute;
    width: 101px;
    left: 0;
    top: 0 ;
    bottom: 0;
    border-radius: 25px 0 0 25px;
    background: #19acdf;
}

.skew-icon-holder .skew-icon:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 23px;
    left: calc(100% - 1px);
    background: linear-gradient(98deg, #19acdf 0%,#19acdf 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder p {  /*changes no such content */
    font-size: 18px;
    margin: 0;
    line-height: 1.67;
    color: #535353;
    font-weight: 300;;
    padding-top: 2px;
    padding-bottom: 12px;
}

.skew-icon-holder-md {
    height: 140px;
}

.skew-icon-holder-lg {
    height: 165px;
}
.skew-icon-holder-md p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.96;
}

.skew-icon-holder-lg p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.96;
}

.skew-icon-holder .skew-icon-light-blue  {
    background: #12ded3;
}
.skew-icon-holder .skew-icon-light-blue:after {
    background: linear-gradient(98deg, #12ded3 0%,#12ded3 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-orange  {
    background: #ffa53b;
}
.skew-icon-holder .skew-icon-orange:after  {
    background: linear-gradient(98deg, #ffa53b 0%,#ffa53b 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-purple  {
    background: #844cea;
}

.skew-icon-holder .skew-icon-purple:after  {
    background: linear-gradient(98deg, #844cea 0%,#844cea 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-pink  {
    background: #fa4e9f;
}

.skew-icon-holder .skew-icon-yellow {
    background: #f8d511;
}

.skew-icon-holder .skew-icon-yellow:after {
    background: linear-gradient(98deg, #f8d511 0%,#f8d511 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-pink:after  {
    background: linear-gradient(98deg, #fa4e9f 0%,#fa4e9f 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-green {
    background: #a4c639;
}

.skew-icon-holder .skew-icon-green:after {
    background: linear-gradient(98deg, #a4c639 0%,#a4c639 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon-sky-blue {
    background: #40e2fa;
}

.skew-icon-holder .skew-icon-sky-blue:after {
    background: linear-gradient(98deg, #40e2fa 0%,#40e2fa 48%, transparent 50%, transparent 100%);
}

.skew-icon-holder .skew-icon i {
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 5px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.skew-icon-holder-reversed {
    padding-left: 0;
    padding-right: 130px;
}

.skew-icon-holder-reversed .skew-icon {
    position: absolute;
    width: 101px;
    right: 0;
    top: 0 ;
    left: auto;
    bottom: 0;
    border-radius: 0 25px 0 25px;
    background: #19acdf;
}

.skew-icon-holder-reversed .skew-icon i {
    margin-left: 0;
    margin-right: 5px;
}

.skew-icon-holder-reversed .skew-icon:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 23px;
    right: calc(100% - 1px);
    background: linear-gradient(98deg, transparent 0%,transparent 48%, #19acdf 50%, #19acdf 100%);
}


.skew-icon-holder-reversed .skew-icon-holder-content {
    padding-left: 0;
    padding-right: 140px;
}

.skew-icon-holder-lg .skew-icon {
    width: 100px;
}

/* ------------------------------------------------------------ *\
        Subscribe
\* ------------------------------------------------------------ */

.subscribe {
    position: relative;
    width: 100%;
}

.subscribe-inner {
    position: absolute;
    top: 1px;
    right: 0px;
    width: 82%;
    z-index: 999;
}

.subscribe .field {
    width: 100%;
    height: 62px;
    padding: 0 180px 0 70px;
    border-width: 0 2px 0 0;
    border-color: #6a6a6a;
    border-radius: 0 25px 25px 0;
    background-color: #343434;
    line-height: 62px;
    font-size: 20px;
}

.subscribe-inner .phone-code {
    width: 62px;
    text-align: right;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 62px;
}

/*  Placeholder  */
.subscribe .field::-webkit-input-placeholder {
    font-size: 16px;
    color: #6a6a6a;
}
.subscribe .field:-moz-placeholder {
    font-size: 16px;
    color: #6a6a6a;
}
.subscribe .field::-moz-placeholder {
    font-size: 16px;
    color: #6a6a6a;
}
.subscribe .field:-ms-input-placeholder {
    font-size: 16px;
    color: #6a6a6a;
}

/*  Gray Button  */
.subscribe .subscribe-actions {
    position: absolute;
    top: 0px;
    right: 0;
}

.subscribe .btn-primary {
    max-width: 175px;
    min-width: 1px;
    height: 63px;
    border-radius: 12px;
    padding: 0 14px;
    line-height: 50px;
    color: #fff;
}

/* ------------------------------------------------------------ *\
        Select Outer
\* ------------------------------------------------------------ */

.select-outer .bootstrap-select .dropdown-toggle:focus {
    outline: 0 !important;
    outline-offset: 0;
}

/* ------------------------------------------------------------ *\
        Select Primary
\* ------------------------------------------------------------ */

.select-outer-primary .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
    width: 100%;
}

.select-outer-primary .btn-default:active:hover,
.select-outer-primary .btn-default.active:hover,
.select-outer-primary .open>.dropdown-toggle.btn-default:hover,
.select-outer-primary .btn-default:active:focus,
.select-outer-primary .btn-default.active:focus,
.select-outer-primary .open>.dropdown-toggle.btn-default:focus,
.select-outer-primary .btn-default:active.focus,
.select-outer-primary .btn-default.active.focus,
.select-outer-primary .open>.dropdown-toggle.btn-default.focus {
    background-color: #343434;
    border-color: #6a6a6a;
    color: inherit;
}

/*  Remove default arrow icon  */
.select-outer-primary .bs-caret {
    display: none;
}

/*  Custom select button  */
.select-outer-primary .bootstrap-select > .btn {
    display: block;
    position: relative;
    height: 65px;
    padding: 4px 82% 4px 30px;
    border: 1px solid #6a6a6a;
    border-color: #6a6a6a;
    border-radius: 12px;
    background-color: #343434;
    font-size: 14px;
    color: #fff;
    z-index: 999;
    line-height: 40px;
}

.select-outer-primary.has-error .bootstrap-select>.btn {
    border-color: #ff4b4b;
}

.select-outer-primary .bootstrap-select .btn:before {
    content: "\f107";
    position: absolute;
    top: 13px;
    left: 12%;
    vertical-align: middle;
    background: none;
    font-family: "FontAwesome";
    font-size: 20px;
    color: #6a6a6a;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-decoration: inherit;
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.select-outer-primary .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    position: relative;
    font-size: 0;
    border-right: 1px solid #6a6a6a;
}

.select-outer-primary .bootstrap-select.btn-group .dropdown-toggle .filter-option i {
    font-size: 19px;
    vertical-align: middle;
}

/* Custom Dropdown menu */
.select-outer-primary .dropdown-menu {
    top: 56%;
    /* padding-right: 20px;  */
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    background: #6a6a6a;
    color: #fff;
    z-index: 995;
    border: 0;
    height: 320px !important;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 300px !important;
    padding: 0px 15px 5px;
}

.select-outer-primary .dropdown-menu > li + li {
    margin-top: 10px;
}

.select-outer-primary .dropdown-menu>li>a:hover,
.select-outer-primary .dropdown-menu>li>a:focus {
    background: none;
    outline: none;
}

.select-outer-primary .dropdown-menu>li>a {
    font-size: 14px;
    color: #fff;
    padding-left: 20px;
}

.select-outer-primary .dropdown-menu>li>a:after {
    content: '\f00c';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    font-family: "FontAwesome";
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.select-outer-primary .dropdown-menu>.active>a,
.select-outer-primary .dropdown-menu>.active>a:hover,
.select-outer-primary .dropdown-menu>.active>a:focus {
    background: none;
}

.select-outer-primary .dropdown-menu>li.selected>a:after {
    opacity: 1;
    visibility: visible;
}

.select-outer-primary .dropdown-menu > li > a > span {
    display: inline-block;
    vertical-align: middle;
}

.select-outer-primary .dropdown-menu > li > a > .flag-icon {
    margin-right: 7px;
    vertical-align: middle;
}

.select-outer-primary .bs-searchbox {
    margin-top: 30px;
    position: relative;
}

.select-outer-primary .bs-searchbox:before {
    content: "\f002";
    position: absolute;
    top: 6px;
    left:33px;
    vertical-align: middle;
    background: none;
    font-family: "FontAwesome";
    font-size: 18px;
    color: #fff;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-decoration: inherit;
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;

}

.select-outer-primary .bs-searchbox .form-control {
    border: 0;
    background: none;
    color: #fff;
    box-shadow: none;
    padding-left: 55px;
    border-radius: 0;
}

.select-outer-primary .bootstrap-select.btn-group .no-results {
    background: none;
}

/* ------------------------------------------------------------ *\
        Select Secondary
\* ------------------------------------------------------------ */

.select-outer-secondary .btn {
    min-width: 1px;
    left: auto;
    border: 0;
    border-radius: 0;
    font-size: 24px;
    font-weight: 200;
    color: #088cfb;
    height: 30px;
    line-height: 30px;
    padding-left: 0;
}

.select-outer-secondary .btn:hover {
    background: none;
}

.select-outer-secondary .btn-group.open .dropdown-toggle {
    box-shadow: 0;
}

.select-outer-secondary .bootstrap-select.btn-group .dropdown-menu {
    height: 255px;
    padding: 0;
}

.select-outer-secondary .dropdown-menu > li > a {
    padding: 15px;
}

.select-outer-secondary .bootstrap-select>.dropdown-toggle.bs-placeholder,
.select-outer-secondary .bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.select-outer-secondary .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.select-outer-secondary .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    background: none;
    border: 0;
    box-shadow: none;
    outline: none;
    color: #088cfb;
}

.select-outer-secondary .bootstrap-select.btn-group .dropdown-toggle .filter-option span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 16px;
    color: #000;
}

.select-outer-secondary .bootstrap-select.btn-group .dropdown-toggle .bs-caret {
    display: none;
}

.select-outer-secondary .bootstrap-select.btn-group .dropdown-toggle .filter-option:after {
    content: '\e860';
    background: none;
    font-family: "fontello";
    /*   line-height: 1; */
    color: inherit;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-decoration: inherit;
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    -o-transform: translateY(-40%);
    transform: translateY(-40%);
}

.select-outer-secondary .bootstrap-select.btn-group .dropdown-menu li > a > i {
    margin-right: 10px;
}

.select-outer-secondary .btn-default:active:hover,
.select-outer-secondary .btn-default.active:hover,
.select-outer-secondary .open>.dropdown-toggle.btn-default:hover,
.select-outer-secondary .btn-default:active:focus,
.select-outer-secondary .btn-default.active:focus,
.select-outer-secondary .open>.dropdown-toggle.btn-default:focus,
.select-outer-secondary .btn-default:active.focus, .btn-default.active.focus,
.select-outer-secondary .open>.dropdown-toggle.btn-default.focus {
    background: none;
    border: none;
    box-shadow: none;
}

.select-outer-secondary .btn-default:active,
.select-outer-secondary .btn-default.active,
.select-outer-secondary .open>.dropdown-toggle.btn-default {
    background: none;
    border-color: none;
    box-shadow: none;
}

/* ------------------------------------------------------------ *\
        Select Outer Tertiary
\* ------------------------------------------------------------ */



/* ------------------------------------------------------------ *\
        Lists
\* ------------------------------------------------------------ */

.list-arrows {
    font-size: 14px;
}

.list-arrows li {
    position: relative;
    padding-left: 25px;
}

.list-arrows li + li {
    margin-top: 16px;
}

.list-arrows li i {
    position: absolute;
    top: 3px;
    left: 3px;
    color: #279bd7;
}

.list-arrows li span {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.list-arrows li.current a,
.list-arrows a:hover {
    color: #279bd7;
}

.list-arrows a:hover span {
    color: #279bd7;
}

/*  List Certificates  */
.list-certificates {
    font-size: 14px;
    display: -webkit-flex;
    display: flex;
}

.list-certificates:after {
    content: '';
    display: table;
    clear: both;
    overflow: hidden;
}

.list-certificates li {
    max-width: 245px;
    display: -webkit-flex;
    display: flex;
    align-items: center;   
}

.list-certificates li + li {
    margin-left: 15px;
}

.list-certificates a {
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.list-certificates li a:after {
    content: '';
    display: table;
    clear: both;
    overflow: hidden;
}


.list-certificates a:hover {
    text-decoration: none;
    color: #279bd7;
}

.list-certificates img {
    float: left;
    max-width: 52px;
    margin-right: 20px;
}

.list-certificates span {
    display: block;
    overflow: hidden;
}
/*  List Certificates Tertiary  */

.modal-alt ul.list-certificates-tertiary {
    margin-bottom: 0;
}

.modal-alt ul.list-certificates-tertiary li {
    padding-top: 0;
    margin: 10px 5px;
}

.modal-alt ul.list-certificates-tertiary li:first-child {
    width: 52px;
} 

.modal-alt ul.list-certificates-tertiary img {
    float: none;
    max-width: 100%;
}
/*  List contacts Tertiary  */

.list-contacts-tertiary {
    padding-top: 35px;
}

/*  List Cards  */
.list-cards {
    white-space: nowrap;
}

.list-cards li {
    display: inline-block;
    padding: 0 5px 10px 0;
}

/*  List Cards Tertiary  */

.list-cards-tertiary {
    position: static;
    padding-top: 46px;
}

/*  List Partners  */
.list-partners {
    margin-bottom: 10px;
    text-align: center;
}

.list-partners li {
    display: inline-block;
    padding-top: 40px;
    margin-bottom: 15px;
}

.list-partners li + li {
    padding-left: 55px;
}

/*  List Contacts  */
.list-contacts {
    margin-bottom: 20px;
}

/*  List Disc  */
.list-disc {
    list-style-type: disc;
    list-style-position: inside;
}
/*  List Disc  */
.list-circle {
    list-style-type: circle;
    list-style-position: inside;
}
/*  List Decimal  */
.list-decimal {
    list-style-type: decimal;
    list-style-position: inside;
}

/* ------------------------------------------------------------ *\
        List Checks Colored
\* ------------------------------------------------------------ */

.list-checks-colored {
    font-size: 14px;
    line-height: 1.71;
}

.list-checks-colored li + li {
    margin-top: 50px;
}

.list-checks-colored h3 {
    font-size: 20px;
    min-height: 40px;
    position: relative;
    padding-left: 50px;
    line-height: 2;
    margin-bottom: 24px;
}

.list-checks-colored .icon-holder {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffa53c;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
}

.list-checks-item-light-blue .icon-holder {
    background: #13ded3;
}

.list-checks-colored .icon-holder i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------ *\
        Copyright
\* ------------------------------------------------------------ */

.copyright {
    font-size: 11px; /*changes on site 14px*/
    text-align: center;
    padding-top: 55px; /*changes on site margin-top : 15px*/
}

/* ------------------------------------------------------------ *\
        Offsets
\* ------------------------------------------------------------ */

.offset-bottom-none {
    padding-bottom: 0;
}

/* ------------------------------------------------------------ *\
        List Checks
\* ------------------------------------------------------------ */

.list-checks li {
    position: relative;
    min-height: 30px;
    padding-left: 70px;
}

.list-checks li + li {
    margin-top: 33px;
}

.list-checks li>i {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.list-checks li>span {
    display: block;
    overflow: hidden;
}

/*  List checks Small */
.list-checks-sm li {
    padding-left: 35px;
}

.list-checks-sm li + li {
    padding-left: 35px;
    margin-top: 12px;
}

/* ------------------------------------------------------------ *\
        List Gifts
\* ------------------------------------------------------------ */

.list-gifts {
    font-weight: 200;
}

.list-gifts strong {
    font-weight: 400;
}

.list-gifts li + li {
    margin-top: 63px;
}

.list-gifts li:last-child {
    margin-bottom: 33px;
}

/* ------------------------------------------------------------ *\
        Link More
\* ------------------------------------------------------------ */

.link-more {
    color: #19acdf;
    text-decoration: underline;
    font-size: 20px;
}

/* ------------------------------------------------------------ *\
        Features Tabs changes
\* ------------------------------------------------------------ */
.features-right {
    position: relative;
    left: -15%;
}

.features-tabs .features-tabs-body {
    position: relative;
    padding-top: 173%; /*changes on site 214% */
    width: 100%;
    max-width: 260px; /*changes on site 370px*/
    margin: 0 auto;
    top: 170px;  /*changes no such content */
}

.features-tabs .features-tabs-body-image {
    position: absolute;
    top: 0;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

.features-tabs .features-tabs-body-image-shadow {
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 0px;
    z-index: 0;
}

.features-tabs .features-tabs-body-image-shadow img {
    width: 100%;
    height: auto;
}

.features-tabs-inner .tab > img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: none;
}

.features-tabs .tab.current ~ .tab {
    margin-left: 100%;
}

.features-tabs .features-tabs-inner {
    position: absolute;
    overflow: hidden;
    top: 4.55%;
    bottom: 14.35%;
    left: 1.621%;
    right: 2.2%;
}

.features-tabs .tab {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: -100%;	
}

.features-tabs .tab.current {
    visibility: visible;
    margin-left: 0;
}

.features-tabs .feature-alt {
    max-width: 389px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: justify;
}

.features-tabs .feature-alt br {
    display: none;
}

.features-back-image{
    position: absolute;
    z-index: -6;
    top: -100px;
    right: 10%;
}

/* ------------------------------------------------------------ *\
        Features NFC
\* ------------------------------------------------------------ */

.features-nfc .feature-outer {
    margin-bottom: 60px;
}

/* ------------------------------------------------------------ *\
        Bubble
\* ------------------------------------------------------------ */

.bubble {
    text-align: center;
    position: absolute;
    max-width: 333px;
    padding: 33px;
    z-index: 1;
    font-weight: 200;
    font-size: 18px;
}

.bubble p {
    margin-bottom: 0;
}

.bubble:after {
    position: absolute;
    top: 100%;
    right: 26px;
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 13px 0 13px;
    border-color: #ffffff transparent transparent transparent;
}

.bubble-triangle-top:after {
    top: auto;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 13px 22px 13px;
    border-color: transparent transparent #ffffff transparent;
}

.bubble.box {
    border-radius: 15px;
}

/* ------------------------------------------------------------ *\
        Transfers Info
\* ------------------------------------------------------------ */

.transfers-info {
    position: relative;
}

.transfers-info .transfers-info-image {
    padding: 100px 0;
}

.transfers-info .transfers-info-image img {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.transfers-info .bubble-position-primary {
    position: absolute;
    top: 0;
    left: 108px;
}

.transfers-info .bubble-position-secondary {
    position: absolute;
    bottom: 0;
    right: 237px;
}

/* ------------------------------------------------------------ *\
        Qualities
\* ------------------------------------------------------------ */

.qualities .quality {
    margin-bottom: 35px;
}

/* ------------------------------------------------------------ *\
        Terms
\* ------------------------------------------------------------ */

.terms h2 {
    margin-bottom: 30px;
}

.terms .terms-date {
    font-size: 14px;
    font-weight: 400;
    color: #9f9f9f;
    overflow: hidden;
    margin-bottom: 45px;
}

.terms .terms-date span {
    display: inline-block;
    position: relative;
    padding-right: 15px;
}

.terms .terms-date span:after {
    content: '';
    display: inline-block;
    height: 1px;
    background: #9f9f9f;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 850px;
}

.exchange-rates .exchange-rates-entry {
    font-size: 14px;
    font-weight: 200;
    text-align: center;
}

.exchange-rates .exchange-rates-entry p {
    margin-bottom: 35px;
}

.exchange-rates .exchange-rates-entry p:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------ *\
        Star
\* ------------------------------------------------------------ */

.star {
    color: #fe4240;
    font-weight: 400;
}

/* ------------------------------------------------------------ *\
        Perk
\* ------------------------------------------------------------ */

.perk {
    padding: 50px;
    min-height: 490px;
    padding-bottom: 120px;
}

.perk h5 {
    margin-bottom: 45px;
    color: #3a405a;
}

/* ------------------------------------------------------------ *\
        List Positions
\* ------------------------------------------------------------ */

.list-positions  li {
    margin-bottom: 35px;
}

.list-positions a {
    color: #078ed2;
}

/* ------------------------------------------------------------ *\
        Table
\* ------------------------------------------------------------ */

.table-primary {
    font-size: 14px;
    line-height: 1;
}

.table-primary table {
    width: 100%;
}

tbody.collpsing {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.table-primary th,
.table-primary td {
    padding: 15px 20px;
    border: 1px solid #303030;
    background: #fff;
}

.table-primary .offset-none {
    padding: 0;
}

/* ------------------------------------------------------------ *\
        Currency
\* ------------------------------------------------------------ */

.currency span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 17px;
}

/* ------------------------------------------------------------ *\
        Form
\* ------------------------------------------------------------ */

.form .form-row {
    position: relative;
}

.form .form-row  + .form-row {
    margin-top: 25px;
}

.form .input-group-alt {
    position: relative;
}
.form .input-group-alt .input-group-aside {
    min-width: 124px;
    width: 124px;
    border-radius: 0 25px 25px 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.form .input-group-alt .input-group-aside .captcha-image {
    border-radius: 0 10px 10px 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.form .input-group-alt input {
    padding-right: 135px;
    padding-left: 17px;
    font-size: 18px;
}

.form .form-error {
    padding: 0;
    line-height: 1;
    color: #ff4b4b;
    font-size: 14px;
}

.form .has-error .field,
.form .has-error .textarea,
.form .has-error .select {
    border-color: #fcb2b2;
}

/*  Form Primary  */

.form-primary .form-body {
    margin-bottom: 30px;
}

.form-primary .form-actions {
    text-align: center;
}

/* ------------------------------------------------------------ *\
        Misc
\* ------------------------------------------------------------ */
.border-danger:focus,
.border-danger {
    border-color: #a94442 !important;
    color: #a94442 !important;
    box-shadow: 0 0 10px rgba(251,220,229,.5);
}

/* ------------------------------------------------------------ *\
        Form Sms
\* ------------------------------------------------------------ */

.form-sms  h4 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 24px;
}

.form-sms .form-message {
    text-align: center;
}

.form-sms .form-message h1 {
    position: relative;
    padding-left: 50px;
    display: inline-block;
    margin-top: 0;
}

.form-sms .form-message h1 i {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ------------------------------------------------------------ *\
        Popup Notification
\* ------------------------------------------------------------ */

.popup-notification h3 {
    margin-bottom: 40px;
}

.popup-notification .popup-notification-head {
    margin-bottom: 40px;
}

.popup-notification .popup-notification-image {
    margin-bottom: 50px;
}

/* ------------------------------------------------------------ *\
        Form Contacts
\* ------------------------------------------------------------ */

.form-contacts .form-actions {
    text-align: right;
}

/* ------------------------------------------------------------ *\
        Form Login
\* ------------------------------------------------------------ */

.form-login {
    max-width: 310px;
}

.form-login .form-control {
    border-radius: 0;
}

.modal-link {
    text-decoration: underline;
}

/* ------------------------------------------------------------ *\
        Form Password
\* ------------------------------------------------------------ */

.form-password {
    max-width: 430px;
}

.form-password .form-actions {
    text-align: right;
}

.form-password label {
    display: block;
    text-align: right;
    font-weight: 400;
    color: #555;
}

/* ------------------------------------------------------------ *\
        Form Elements
\* ------------------------------------------------------------ */

.textarea-outer {
    height: 210px;
}

.textarea {
    width: 100%;
    border: 0;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    padding: 10px 20px;
    height: 210px;
    font-size: 13px;
}

.field {
    width: 100%;
    border: 0;
    height: 50px;
    line-height: 48px;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 13px;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s;

}

.field::-webkit-input-placeholder {
    color: #b4b4b4;
}
.field:-moz-placeholder { /* Firefox 18- */
    color: #b4b4b4;
}
.field::-moz-placeholder {  /* Firefox 19+ */
    color: #b4b4b4;
}
.field:-ms-input-placeholder {
    color: #b4b4b4;
}

.has-error .field::-webkit-input-placeholder {
    color: #f96767;
}
.has-error .field:-moz-placeholder { /* Firefox 18- */
    color: #f96767;
}
.has-error .field::-moz-placeholder {  /* Firefox 19+ */
    color: #f96767;
}
.has-error .field:-ms-input-placeholder {
    color: #f96767;
}

.textarea::-webkit-input-placeholder {
    color: #b4b4b4;
}
.textarea:-moz-placeholder { /* Firefox 18- */
    color: #b4b4b4;
}
.textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #b4b4b4;
}
.textarea:-ms-input-placeholder {
    color: #b4b4b4;
}

.has-error .textarea::-webkit-input-placeholder {
    color: #f96767;
}
.has-error .textarea:-moz-placeholder { /* Firefox 18- */
    color: #f96767;
}
.has-error .textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #f96767;
}
.has-error .textarea:-ms-input-placeholder {
    color: #f96767;
}

.has-error .field-alt {
    border-color: #fc7373;
}

/*  Placeholder  */
.field-alt::-webkit-input-placeholder {
    color: #303030;
}
.field-alt:-moz-placeholder { /* Firefox 18- */
    color: #303030;
}
.field-alt::-moz-placeholder {  /* Firefox 19+ */
    color: #303030;
}
.field-alt:-ms-input-placeholder {
    color: #303030;
}

.field:focus::-webkit-input-placeholder { color:transparent; }
.field:focus:-moz-placeholder { color:transparent; }
.field:focus::-moz-placeholder { color:transparent; }
.field:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

/* ------------------------------------------------------------ *\
        Scene
\* ------------------------------------------------------------ */

.scene,
.scene img  {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ------------------------------------------------------------ *\
        Table Exchange rates
\* ------------------------------------------------------------ */

.table-exchange-rates {
    font-size: 22px;
    font-weight: 200;
    margin-bottom: 0;
}

.table-exchange-rates .exchange-rates-value {
    font-size: 42px;
}

.table-exchange-rates table {
    table-layout: fixed;
}

.table-exchange-rates th,
.table-exchange-rates td {
    padding:  8px 16px;
    border: 0;
    background: none;
}

.table-exchange-rates .currency {
    font-size: 18px;
    font-weight: 300;
}

.table-exchange-rates-sm  {
    font-weight: 300;
}

.table-exchange-rates-sm th,
.table-exchange-rates-sm td {
    padding: 5px 15px;
}

.table-exchange-rates .table-actions {
    padding-top: 25px;
    border-top: 1px solid #dcdcdc;
}

/* ------------------------------------------------------------ *\
        Pricing Details
\* ------------------------------------------------------------ */

.pricing-details {
    font-size: 18px;
}

.pricing-details li {
    display: table;
    width: 100%;
}

.pricing-details li + li {
    margin-top: 15px;
}

.pricing-details .pricing-details-label {
    display: table-cell;
    width: 72%;
    line-height: 2.7;
    vertical-align: bottom;
    padding-right: 10px;
}

.pricing-details .pricing-details-value {
    width: 50%;
    display: table-cell;
    text-align: right;
    font-size: 21px;

    vertical-align: bottom;
    line-height: 1.5;
    font-weight: 400;
}

.pricing-details .pricing-details-currency {
    font-size: 25px;

}

.pricing-details .pricing-details-decimal {
    font-size: 22px;
}

.pricing-details .price-font-lg {
    font-size: 41px;
}

.pricing-details .price-font-sm {
    font-size: 16px;
}

.pricing-details .price-font-md {
    font-size: 22px;
}
/* ------------------------------------------------------------ *\
        Limit
\* ------------------------------------------------------------ */

.limit .limit-value {
    font-size: 55px;
}

.limit .limit-currency {
    font-size: 33px;
}

.limit .limit-decimal {
    font-size: 29px;
}

/* ------------------------------------------------------------ *\
        Modal Primary
\* ------------------------------------------------------------ */

.modal-primary {
    color: #303030;
}

.modal-primary .modal-content {
    padding: 40px 30px;
    text-align: center;
}

/* ------------------------------------------------------------ *\
        Modal Alt
\* ------------------------------------------------------------ */

.modal-alt {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.modal-alt h1,
.modal-alt h2,
.modal-alt h3,
.modal-alt h4,
.modal-alt h5,
.modal-alt h6 {
    font-family: 'Cuprum', sans-serif;
}

.modal-alt a {
    color: #0073ba;
}

.modal-alt .modal-content {
    border: 0;
}

.modal-alt .modal-header {
    padding: 15px 30px;
}

/*  Modal Logo  */
.modal-alt .logo {
    display: inline-block;
    max-width: 170px;
}

.modal-alt .logo img {
    width: 100%;
    height: auto;
}

/*  Modal Head  */
.modal-alt .modal-head {
    padding: 30px;
    background: #0089ca;
    border-bottom: 1px solid #fff;
    box-shadow: 0px 1px 7px 1px rgba(0,0,0,0.75);
    color: #fff;
}

.modal-alt .modal-head h3 {
    margin-bottom: 0;
}

.modal-alt .modal-title {
    color: #0077c1;
    font-weight: 600;
}

.modal-alt .modal-body {
    box-shadow: 1px 2px 15px -2px rgba(0,0,0,0.75);
}

.modal-alt .modal-image {
    max-width: 300px;
}

.modal-alt .modal-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.modal-alt .modal-footer {
    background: #ebebeb;
    text-align: left;
}

.modal-alt .modal-footer a {
    color: #888;
}

.modal-alt .list-certificates li {
    display: inline-block;
    padding-top: 10px;
}

.modal-alt .list-certificates li a {
    display: inline-block;
}

/*  Button Modal Alt  */
.btn-modal-alt {
    min-width: 85px;
    height: 40px;
    border: 1px solid #c5c0c0;
    padding: 4px 14px 5px 14px;
    border-radius: 3px;
    position: relative;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #777777;
    text-shadow: 1px 1px 0 #fff;
    box-shadow: 0 2px 3px #bbb;
    font-weight: bold;
    line-height: 21px;
}

/* ------------------------------------------------------------ *\
        Modal Login
\* ------------------------------------------------------------ */

.modal-login .modal-body {
    padding-top: 45px;
}

.modal .modal-dialog.modal-mid {
    width: 625px;
    min-height: 389px;
}

.modal .modal-dialog .modal-content.vefiry-first {
    border-radius: 11px;
    position: relative;
}

.modal .modal-dialog .modal-content.vefiry-first button.close {
    position: absolute;
    right: 0;
    padding: 10px 15px;
    z-index: 1;
    color: #fff;
    font-weight: normal;
    opacity: .8;
}

.modal .modal-dialog .modal-content.vefiry-first button.close:hover {
    opacity: 0.5;
}

.modal .modal-dialog .modal-content.vefiry-first .modal-body {
    padding: 15px;
    overflow: hidden;
    border: none;
    border-radius: 10px;
}

.modal .modal-dialog .modal-content.vefiry-first h4 {
    font-size: 16px;
    color: #078ed2;
    line-height: 13px;
    margin-bottom: 50px;
}

.modal .modal-dialog .modal-content.vefiry-first p {
    font-size: 12px;
    color: #7d7d78;
    line-height: 15px;
    margin-bottom: 25px;
}

.modal .modal-dialog .modal-content.vefiry-first p a {
    color: #008fd5;
}

.modal .modal-dialog .modal-content.vefiry-first p.a-help {
    margin-top: 20px;
    margin-bottom: 0;
}

.modal .modal-dialog .modal-content.vefiry-first .form-login .form-group {
    margin-bottom: 20px;
}

.modal .modal-dialog .modal-content.vefiry-first .form-login .form-control {
    width: 208px;
    border: none;
    display: initial;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.modal .modal-dialog .modal-content.vefiry-first .form-login .btn-login {
    color: #fff;
    background-color: #008fd5;
    font-size: 14px;
    border: 0;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
}

.modal .modal-dialog .modal-content.vefiry-first .form-login .btn-login:hover {
    background-color: #286090;
    border-color: #204d74;
}

.modal .modal-dialog img {
    width: auto;
    height: auto;
    top: 0;
    right: -1px;
}

.modal .modal-dialog .captcha-login {
    width: auto;
    height: 40px;
    top: 0;
    right: -1px;
}

@media screen and (max-width: 767px) {
    .modal .modal-dialog.modal-mid {
        width: auto;
    }
}

@media screen and (max-width: 630px) {
    .modal .modal-dialog .modal-content.vefiry-first img {
        display: none;
    }

    .modal .modal-dialog .modal-content.vefiry-first .col-xss-7 {
        width: 100%;
    }

    .modal .modal-dialog .modal-content.vefiry-first button.close {
        color: #7d7d78;
    }
}


/* ------------------------------------------------------------ *\
        Modal Forgotten Password
\* ------------------------------------------------------------ */

.modal-password .modal-inner {
    position: relative;
}

.modal-password .modal-inner:after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    background: #a7a7a7;
    height: 1px;
}

.modal-password .modal-text {
    margin-bottom: 20px;
}

/* ------------------------------------------------------------ *\
        Modal Password Email
\* ------------------------------------------------------------ */

.modal-email .modal-body {
    padding: 2px;
    background-repeat: no-repeat;
    background-position: top right;
}

.modal-email .modal-inner {
    padding: 15px;
}

.modal-email .list-bullet {
    list-style: initial;
    list-style-position: inside;
}

/* ------------------------------------------------------------ *\
        Cookies
\* ------------------------------------------------------------ */

.cookie {
    position: fixed;
    bottom: auto;
    bottom:0;
    left: 0;
    right: 0;
    padding: 35px 0;
    background: rgba(52, 52, 52, 0.91);
    color: #fff;
    z-index: 1010;
    font-weight: 200;
    display: none;
    font-size: 16px;
}

/* .cookie .cookie-inner {
    max-width: 1750px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    padding-right: 50px;
} */
.cookie-inner .color-blue:focus {
    color:#19acdf;
}

.cookie .btn-close {
    color: #fff;
    position: absolute;
    top: 0px;
    right: 10px;
}

.cookie p {
    margin-bottom: 0;
}

img.cookie-icon {
    position: absolute;
    right: 101%;
}
.cookie-set .btn-primary {
    background: #1fc6a3;
}



/* ==========================================================================
        #timeline-stories
========================================================================== */
.story-about .footer { margin-top: 0; }

.section-about-icard:not(.section-about-stories) .section-title {
    margin-top: 125px;
    margin-bottom: 40px;
}

.section-about-capabilities .section-title {
    margin-top: 80px;
    margin-bottom: 51px;
}

.section-subtitle p {
    font-size: 16px;
    line-height:2.25;
    font-weight: 300;
    color: #666666;
}

.story-about .section-subtitle {
    margin-bottom: 45px;
}

.section-about-stories { padding-bottom: 0 !important; }

.section-about-stories .section-body { margin-bottom: 0 !important;  padding-bottom: 20px; }

.section-about-stories .section-body-story-image {
    background-image: url(../../img/icard_mobile/stories-timeline.png);
    background-repeat: no-repeat;
    background-position: calc(50% - 3px) calc(50% + 150px);
}
.timeline-stories {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.timeline-story {
    position: relative;
    flex: 0 0 calc(33.33% - 30px);
    height: auto;
    min-height: 130px;
    margin-bottom: 30px;
    margin-right: 30px;
    padding: 30px;
    background: #fff;
    font-size: 0;
    border-radius: 20px 20px 20px 0;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
_:-ms-fullscreen, :root .timeline-story {
    flex: 0 0 27%;
    padding-right: 10px;
}
.timeline-story:nth-child(1) {
    order: 4;
    margin-bottom: 150px;
}
.timeline-story:nth-child(2) {
    order: 7;
    margin-left: 11.1%;
}
.timeline-story:nth-child(3) {
    order: 2;
    margin-left: 22.22%;
}
.timeline-story:nth-child(4) {
    order: 5;
    margin-bottom: 150px;
}
.timeline-story:nth-child(5) { order: 8; }
.timeline-story:nth-child(6) {
    order: 1;
    margin-left: 55.67%;
}
_:-ms-fullscreen, :root .timeline-story:nth-child(6) { margin-left: 55.4%; }
.timeline-story:nth-child(7) { order: 3; }
.timeline-story:nth-child(8) {
    order: 9;
    margin-left: 55.55%;
}
.timeline-story:nth-child(9) {
    order: 6;
    margin-bottom: 150px;
}
.timeline-story::before {
    display: inline-block;
    height: 100%;
    margin-left: -0.25em;
    vertical-align: middle;
    content: '';
}
.timeline-story-image,
.timeline-story-content {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.timeline-story-image {
    width: 90px;
    text-align: left;
}
.timeline-story-image img {
    max-width: 100%;
    height: auto;
}
.timeline-story-content {
    width: calc(100% - 95px);
    font-size: 14px;
    line-height: 1.4;
    color: #303030;
}

.timeline-stories-wrapper { position: relative; }
.timeline-stories-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 135px;
    font-size: 0;
}

.timeline-stories-hover:nth-child(1) { left: 0; }
.timeline-stories-hover:nth-child(2) { left: 135px; }
.timeline-stories-hover:nth-child(3) { left: 270px; }
.timeline-stories-hover:nth-child(4) { left: 405px; }
.timeline-stories-hover:nth-child(5) { left: 535px; }
.timeline-stories-hover:nth-child(6) { left: 670px; }
.timeline-stories-hover:nth-child(7) { left: 805px; }

.timeline-stories-wrapper:hover .timeline-stories .timeline-story {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.timeline-stories-wrapper:hover .timeline-stories .timeline-story .timeline-story-image,
.timeline-stories-wrapper:hover .timeline-stories .timeline-story .timeline-story-content {
    filter: gray; filter: grayscale(1);
    -webkit-filter: grayscale(1);
    opacity: .5;
}
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories .timeline-story .timeline-story-image,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories .timeline-story .timeline-story-content {
    opacity: .5;
}

.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories .timeline-story:nth-child(1),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories .timeline-story:nth-child(2),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories .timeline-story:nth-child(3),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories .timeline-story:nth-child(4),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories .timeline-story:nth-child(5),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(6),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(7),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(8),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories .timeline-story:nth-child(9) {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories .timeline-story:nth-child(1) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories .timeline-story:nth-child(2) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories .timeline-story:nth-child(3) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories .timeline-story:nth-child(4) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories .timeline-story:nth-child(5) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(6) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(7) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(8) > *,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories .timeline-story:nth-child(9) > * {
    opacity: 1;
    filter: none;
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories .timeline-story:nth-child(1) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories .timeline-story:nth-child(2) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories .timeline-story:nth-child(3) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories .timeline-story:nth-child(4) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories .timeline-story:nth-child(5) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(6) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(7) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(8) > *,
_:-ms-fullscreen, :root .timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories .timeline-story:nth-child(9) > * {
    opacity: 1;
}

.timeline-stories-bottoms,
.timeline-stories-bottom {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    font-size: 0;
}
.timeline-stories-bottoms {
    right: 0;
    left: 0;
}
.timeline-stories-bottom {
    width: 130px;
    background: linear-gradient(to bottom,
        rgba(130, 226, 255, 0),
        rgba(130, 226, 255, 0),
        rgba(130, 226, 255, 0));
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.timeline-stories-bottom:nth-child(1) { left: 0; }
.timeline-stories-bottom:nth-child(2) { left: 130px; }
.timeline-stories-bottom:nth-child(3) { left: 260px; }
.timeline-stories-bottom:nth-child(4) {
    left: 389px;
    width: 131px;
}
.timeline-stories-bottom:nth-child(5) { left: 520px; }
.timeline-stories-bottom:nth-child(6) {
    left: 649px;
    width: 131px;
}
.timeline-stories-bottom:nth-child(7) { left: 780px; }
.timeline-stories-bottom:nth-child(8) { left: 910px; }
.timeline-stories-bottom:nth-child(9) { left: 1040px; }
.timeline-stories-bottom:nth-child(10) { left: 1170px; }

.timeline-stories-bottom::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom,
        rgba(212, 212, 212, 0),
        rgba(212, 212, 212, .7),
        rgba(212, 212, 212, 0));
    content: '';
}

.timeline-stories-bottom::after {
    position: absolute;
    top: calc(50% + 66px);
    left: 0;
    display: none;
    width: 14px;
    height: 14px;
    margin-top: -6px;
    margin-left: -7px;
    border: 2px solid #fff;
    background: #d4d4d4;
    border-radius: 50%;
    content: '';
}
.timeline-stories-bottom:nth-child(8)::after,
.timeline-stories-bottom:nth-child(9)::after,
.timeline-stories-bottom:nth-child(10)::after { display: none; }
.timeline-stories-bottom:nth-child(4)::after { margin-left: -6px; }
.timeline-stories-bottom:nth-child(5)::after { margin-left: -7px; }
.timeline-stories-bottom:nth-child(6)::after { margin-left: -6px; }

_:-ms-lang(x), .timeline-stories-bottom:nth-child(1)::after,
_:-ms-lang(x), .timeline-stories-bottom:nth-child(2)::after,
_:-ms-lang(x), .timeline-stories-bottom:nth-child(3)::after,
_:-ms-lang(x), .timeline-stories-bottom:nth-child(5)::after,
_:-ms-lang(x), .timeline-stories-bottom:nth-child(7)::after { margin-left: -6px; }
_:-ms-lang(x), .timeline-stories-bottom:nth-child(4)::after,
_:-ms-lang(x), .timeline-stories-bottom:nth-child(6)::after { margin-left: -5px; }

.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(1),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(2),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(3),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(4),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(5),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(6),
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(7) {
    background: linear-gradient(to bottom,
        rgba(130, 226, 255, 0),
        rgba(130, 226, 255, 0.2),
        rgba(130, 226, 255, 0));
}
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(1)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(2)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(3)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(4)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(5)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(6)::after,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories-bottoms .timeline-stories-bottom:nth-child(7)::after {
    background: #19acdf;
}

.timeline-story:nth-child(1) .timeline-stories-points {
    position: absolute;
    bottom: 0;
    left: 0;
}
.timeline-story:nth-child(1) .timeline-stories-point {
    position: absolute;
    top: calc(100% + 75px);
    width: 130px;
}

.timeline-story:nth-child(1) .timeline-stories-point:nth-child(1) { left: 0; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(2) { left: 130px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(3) { left: 260px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(4) { left: 389px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(5) { left: 520px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(6) { left: 649px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(7) { left: 780px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(8) { left: 910px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(9) { left: 1040px; }
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(10) { left: 1170px; }
.timeline-story:nth-child(1) .timeline-stories-point .timeline-stories-point-inner {
    position: absolute;
    right: 0;
    left: 0;
    font-size: 30px;
    line-height: 1.3;
    color: #303030;
    font-weight: 600;
    text-align: center;
}
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(1) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(3) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(4) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(6) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(7) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(9) .timeline-stories-point-inner {
    bottom: 10px;
}
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(2) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(5) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(8) .timeline-stories-point-inner,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(10) .timeline-stories-point-inner {
    top: 15px;
}

.timeline-story:nth-child(1) .timeline-stories-point::before,
.timeline-story:nth-child(1) .timeline-stories-point::after {
    position: absolute;
    top: 0;
    content: '';
}
.timeline-story:nth-child(1) .timeline-stories-point::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -6px;
    margin-left: -7px;
    border: 2px solid #fff;
    background: #d4d4d4;
    border-radius: 50%;
    content: '';
}
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(8)::before,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(9)::before,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(10)::before { display: none; }
.timeline-story:nth-child(1) .timeline-stories-point::after {
    right: 7px;
    left: 7px;
    margin-top: 1px;
    height: 1px;
    background: #e3e3e3;
}
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(7)::after,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(8)::after,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(9)::after,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(10)::after {
    right: 0;
}
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(8)::after,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(9)::after,
.timeline-story:nth-child(1) .timeline-stories-point:nth-child(10)::after { left: 0; }
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(1):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(1)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(2):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(2)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(3):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(3)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(4):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(4)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(5):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(5)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(6):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(6)::before,
.timeline-stories-wrapper:hover .timeline-stories-hover:nth-child(7):hover ~ .timeline-stories .timeline-story:nth-child(1) .timeline-stories-point:nth-child(7)::before {
    background: #19acdf;
}

.section-about-stories-with-bg {
    height: 899px;
    background-image: url(../../img/icard_mobile/section-about-stories-with-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.shell-capabilities p {
    margin-bottom: 17px;
    font-size: 14px;
}

.row-flex {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.row-flex > [class*="col-"] { float: none; }

.section-about-licenses .section-title {
    margin-top: 60px;
    margin-bottom: 40px;
}

.section-about-licenses .section-subtitle { margin-bottom: 40px; }
.section-about-membership .section-title { margin-top: 25px; margin-bottom: 43px; }
.section-about-membership .section-subtitle { margin-bottom: 40px; }

/* ==========================================================================
        #Common styles, Always keep above all other styles and before media queries
========================================================================== */
.h_125 { height: 125px; }

.content_centered {
    font-size: 0;
    text-align: center;
}
.content_centered::before {
    display: inline-block;
    height: 100%;
    margin-left: -0.25em;
    vertical-align: middle;
    content: '';
}
.content_centered > * {
    display: inline-block;
    vertical-align: middle;
}

/* ------------------------------------------------------------ *\
        Card Info
\* ------------------------------------------------------------ */

.card-info {
    max-width: 990px;
    margin: 0 auto;
    position: relative;
}

.card-info:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
}

.card-info .card-info-feature {
    z-index: 90;
    min-height: 120px;
    position: absolute;
    left: 0;
    top: 9%;
    width: 66%;
}

.card-info:hover .card-info-feature-line {
    width: calc(100% - 120px);
}

.card-info .card-info-feature-line {
    position: absolute;
    top: 50%;
    left: 120px;
    right: 0;
    width: 0;
    z-index: 1;
    height: 5px;
    background: #12ded3;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.card-info .card-info-feature-line:after,
.card-info .card-info-feature-line:before {
    content: '';
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    -webkit-transition: all .3s .3s;
    -o-transition: all .3s .3s;
    transition: all .3s .3s;
    -webkit-transform: translate(0,-50%) scale(0);
    -ms-transform: translate(0,-50%) scale(0);
    -o-transform: translate(0,-50%) scale(0);
    transform: translate(0,-50%) scale(0);
}

.card-info:hover .card-info-feature-line:after,
.card-info:hover .card-info-feature-line:before {
    -webkit-transform: translate(0,-50%) scale(1);
    -ms-transform: translate(0,-50%) scale(1);
    -o-transform: translate(0,-50%) scale(1);
    transform: translate(0,-50%) scale(1);
}

.card-info .card-info-feature-line:before {
    height: 18px;
    width: 18px;
    background: #12ded3;
    top: 50%;
    right: -1px;
}

.card-info .card-info-feature-line:after {
    height: 38px;
    width: 38px;
    background: rgba(18, 222, 211, 0.28);
    top: 50%;
    right: -11px;
}

.card-info .card-info-feature:nth-child(2) {
    top: 36%;
    width: 47%;
}

.card-info .card-info-feature:nth-child(3) {
    top: 63%;
    width: 49%;
}

.card-info .card-info-feature-orange .card-info-feature-icon {
    background: #ffa53b;
}

.card-info .card-info-feature-orange .card-info-feature-line {
    background: #ffa53b;
}

.card-info .card-info-feature-orange .card-info-feature-line:after {
    background: rgba(255, 165, 59, 0.28);
}

.card-info .card-info-feature-orange .card-info-feature-line:before {
    background: #ffa53b;	
}

.card-info .card-info-feature-purple .card-info-feature-line {
    background: #844cea;
}
.card-info .card-info-feature-purple .card-info-feature-icon {
    background: #844cea;
}
.card-info .card-info-feature-purple .card-info-feature-line:after { 
    background: rgba(132, 76, 234, 0.28);
}
.card-info .card-info-feature-purple .card-info-feature-line:before {
    background: #844cea;	
}

.card-info .card-info-feature-icon {
    z-index: 1;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 65px rgba(0, 0, 0, .3);
    text-align: center;
    line-height: 120px;
    background: #12ded3;
}

.card-info .card-info-image {
    padding-left: 33.3%;
}

/* ------------------------------------------------------------ *\
        Section Virtual Cards Primary
\* ------------------------------------------------------------ */

.section-virtual-cards-primary .section-image {
    min-height: 520px;
    max-width: 880px;
    margin: 0 auto;
}

.section-virtual-cards-primary .image-left {
    left: 50px !important;
    top: 77px !important;
}

.section-virtual-cards-primary .image-right {
    left: 320px !important;
    top: 30px;

}

.section-virtual-cards-primary .image-middle {
    left: 200px !important;
    top: 140px !important;
}

.section-virtual-cards-primary .image-bottom {
    right: 70px !important;
    bottom: -50px !important;
    left: auto !important;
    top: auto !important;
}

/* ------------------------------------------------------------ *\
        Section Gift Cards Primary
\* ------------------------------------------------------------ */

.section-gift-cards-primary .section-image-outer {
    min-height: 810px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.section-gift-cards-primary .section-image-outer img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.section-gift-cards-primary .section-image-top,
.section-gift-cards-primary .section-image-middle,
.section-gift-cards-primary .section-image-bottom {
    position: absolute;
    left: 0;
    right: 0;
}

.section-gift-cards-primary .section-image-top {
    bottom: 20%;
    z-index: 2;

}

.section-gift-cards-primary .section-image-middle {
    bottom: 3%;
    z-index: 1;
} 

.section-gift-cards-primary .section-image-bottom {
    bottom: -5%;
}

/* ------------------------------------------------------------ *\
        Slider testimonials
\* ------------------------------------------------------------ */

.slider-testimonials {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 62px;
    position: relative;
}

.slider-testimonials .slider-clip {
    width: calc(100% + 60px);
    padding: 0 30px;
    margin-left: -30px;
    overflow: hidden;
}  

.slider-testimonials .slide {
    padding: 100px 0;
}

.slider-testimonials .owl-carousel .owl-stage-outer {
    overflow: visible;
} 

.slider-testimonials .slider-prev,
.slider-testimonials .slider-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-testimonials .slider-prev {
    left: 0;
}

.slider-testimonials .slider-next {
    right: 0;
}

/* ------------------------------------------------------------ *\
        Testimonials
\* ------------------------------------------------------------ */

.testimonial {
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, .13);
    height: 200px;
    padding-top: 23px;
}

.testimonial .testimonial-head {
    margin-bottom: 15px;
}

.testimonial .testimonial-image {
    height: 98px;
    line-height: 98px;
    width: 98px;
    padding: 0 8px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .13);
    position: absolute;
    top: -76px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.testimonial .testimonial-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
}

.testimonial .testimonial-rating {
    text-align: right;
    padding-top: 15px;
}

.testimonial .testimonial-rating img {
    max-width: 109px;
    display: inline-block;
}

.testimonial .testimonial-author {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    width: 100%;
    align-items: center;
}

.testimonial .testimonial-author .testimonial-author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial .testimonial-author {
    font-size: 19px;
    font-weight: 400;

}

.testimonial p {
    margin: 0;
}

.testimonial blockquote {
    padding: 0 0 0 75px;
    margin: 0;
    font-size: 14px;
    border: 0;
}

/* ------------------------------------------------------------ *\
        Style for Help Pages
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
        Support
\* ------------------------------------------------------------ */
.help-page-intro-background {
    background-image: url(../../img/icard_mobile/intro-bg-help.jpg);
}
.support .support-section {
    border-radius: 25px;
    position: relative;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.support .support-section-inner {
    background: #fff;
    padding: 65px;
    border-radius: 35px;
    position: relative;
}

.support .support-section-inner .section-actions {
    padding-top: 88px;
}

.support .support-section-transparent {
    box-shadow: none;
}

.support-section-transparent .support-section-inner {
    background: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

/* ------------------------------------------------------------ *\
        Slider Help Videos
\* ------------------------------------------------------------ */

.slider-help-videos {
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 62px;
    position: relative;
}

.slider-help-videos .slider-clip {
    height: 300px;
    width: calc(100% + 60px);
    padding: 0 30px;
    margin-left: -30px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.slider-help-videos.shown .slider-clip {
    opacity: 1;
    visibility: visible;
}

.slider-help-videos.shown .spinner {
    opacity: 0;
    visibility: hidden;
}

.slider-help-videos .slide {
    padding: 30px 0;
}

.slider-help-videos .owl-carousel .owl-stage-outer {
    overflow: visible;
} 

.slider-help-videos .slider-prev,
.slider-help-videos .slider-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-help-videos .slider-prev {
    left: 0;
}

.slider-help-videos .slider-next {
    right: 0;
}

.slider-help-videos .video-help {
    max-width: 320px;
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
        Section Customer Support
\* ------------------------------------------------------------ */

.section-customer-support .section-head {
    margin-bottom: 60px;
}

.section-customer-support .section-subtitle {
    max-width: 600px;
    margin: 0 auto 120px;
}

/* ------------------------------------------------------------ *\
        Feautre Outer Secondary
\* ------------------------------------------------------------ */
.help-feature-icon{
    position: absolute;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: -45px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
    background: #d2d2d2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.help p{
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
}

.feature-outer-secondary .feature {
    position: relative;
    font-size: 15px;
    line-height: 2;
    height: 290px;
    padding: 70px 25px 45px;
    font-weight: 300;
    border: 1px solid transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-outer-secondary .feature h5 {
    font-size: 19px;
    line-height: 1.67;
    font-weight: 400;
    margin-bottom: 12px;
}

.feature-outer-secondary .feature .feature-icon {
    top: -45px;
}

.feature-outer-secondary .feature a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.feature-outer-secondary .feature-foot {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-outer-secondary:hover .feature-foot,
.feature-outer-secondary.active .feature-foot {
    opacity: 1;
    visibility: visible;
}

.feature-outer-pink.active .feature,
.feature-outer-pink:hover .feature {
    border-color: #fa4e9f;
    box-shadow: 0px 0px 35px rgba(250, 78, 159, 0.3);
}

.feature-outer-pink .feature-foot .ico-font {
    color: #fa4e9f;
}

.feature-outer-light-blue.active .feature,
.feature-outer-light-blue:hover .feature {
    border-color: #12ded3;
    box-shadow: 0px 0px 35px rgba(18, 222, 211, 0.3);
}

.feature-outer-light-blue .feature-foot .ico-font {
    color: #12ded3;
}

/* ------------------------------------------------------------ *\
        Spinner
\* ------------------------------------------------------------ */

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #19acdf;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* ------------------------------------------------------------ *\
        Intro small
\* ------------------------------------------------------------ */

.intro-sm .intro-container {
    height: 240px;
    padding-bottom: 0;
    /* margin-top: 163px; */
}

/* .intro-mt-fix .intro-container {
        margin-top: 63px;
}
*/
/* ------------------------------------------------------------ *\
        Section Faqs
\* ------------------------------------------------------------ */

.section-faqs .section-head {
    margin-bottom: 95px;
}

/* ------------------------------------------------------------ *\
        Section Video Help
\* ------------------------------------------------------------ */


.section-video-help .section-title {
    margin-bottom: 75px;
}

.section-video-help .section-subtitle {
    max-width: 850px;
    margin: 0 auto 80px; 
}

.section-video-help .section-actions {
    margin-top: 50px;
    text-align: center;
}

.section-video-help .section-actions .btn {
    margin: 0 15px 30px;
}

/* ------------------------------------------------------------ *\
        FAQs
\* ------------------------------------------------------------ */

/*  FAQ Category  */

.faq-category {
    margin-bottom: 60px;
    padding-top: 50px; 
}

.faq-category.box {
    padding: 50px 18px 40px;
}

.faq-category-head {
    position: relative;
}

.faq-category .faq-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -78px;
    left: 5px;
    background: #fff;
    border: 1px solid;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    color: #19acdf; 
}

.faq-category .faq-icon i {
    color: inherit; 
}

.faq-category .faq-category-title {
    font-size: 19px;
    color: #535353; 
}

.faq-category .faq-category-body {
    padding-left: 15px;
}

/*  FAQ  */

.faq {
    margin-bottom: 12px;
}

.faq:last-child {
    margin-bottom: 0px;
}

.faq .faq-title {
    font-weight: 300; 
    color: #666666; 
}

.faq .faq-title a {
    border-bottom: 1px solid;
    line-height: 1.5;
    transition: .5s;
}

.faq .faq-bubble {
    position: relative;
    padding: 20px 25px 40px;
    border-radius: 15px;
    background-color: #f6f6f6; 
    font-size: 14px;
    font-weight: 300;
    color: #535353; 
}

.faq .faq-bubble:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 30px;
    width: 0;
    height: 0;
    border-bottom: 20px solid #f6f6f6;
    border-right: 40px solid transparent;
}

/*  Faq icon color  */
.faq-icon.faq-icon-red {
    color: #cd7777; 
}

.faq-icon.faq-icon-green {
    color: #26ba92; 
}

.faq-icon.faq-icon-purple {
    color: #8560a8; 
}

/*  Faq accordion panel bootstrap */
.faq.panel {
    background: none; 
    border: none;
    border-radius: 0px;
    box-shadow: none;	
}

.faq .panel-heading {
    padding: 0;
    background: none; 
    border: none;
    border-radius: 0px;
    color: #666;
}

.faq .panel-body {
    padding: 30px 0px 0px;
}

/* ------------------------------------------------------------ *\
        Video help
\* ------------------------------------------------------------ */

.video-primary {
    padding-top: 54px;
}

.video-help {
    margin-bottom: 35px;
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.video-help .video-image {
    width: 100%; 
    max-width: 100%;
    height: auto;
}

.video-help a {
    display: block;
}

.video-help .video-caption {
    position: relative;
    height: 75px;
    text-align: center;
    overflow: hidden;
    background: #fff;
}

.video-help .video-caption span {
    position: absolute;
    max-height: 75px;
    width: 100%;
    padding: 10px 15px;
    top: 50%;
    left: 50%;
    font-size: 16px;
    color: #535353;
    transform: translate(-50%,-50%);
    line-height: 1.3; 
}

.video-help .video-icon {
    display: inline-block;
    position: absolute;
    height: 62px;
    width: 90px;
    top: 50%; 
    left: 50%;
    border-radius: 15px;
    background: rgba(0, 0, 0, .8);
    box-shadow: 0px 0px 29px 0px rgba(255, 255, 255, 1); 
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: .5s;
}

.video-help .video-icon i {
    position: absolute;
    left: 50%;
    top: 50%; 
    transform: translate(-50%, -50%);
    transition: .5s;
    opacity: .6;
    backface-visibility: hidden;
}

.video-help:hover .video-icon {
    background: #078ed2;
    box-shadow: none;
}

.video-help:hover .video-icon i {
    opacity: 1;
}

.btn.btn-ytb-subscribe {
    text-align: left;
    padding: 0;
    height: auto;
    line-height: 1px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
}

.btn.btn-ytb-subscribe:hover,
.btn.btn-ytb-subscribe:hover i,
.btn.btn-ytb-subscribe:hover span {
    color: #078ed2;
}

.btn.btn-ytb-subscribe span {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn.btn-ytb-subscribe i {
    display: inline-block;
    vertical-align: middle;
    color: #e62118;
    font-size: 22px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn.btn-ytb-subscribe i + span {
    padding-left: 3px;
}

/* ------------------------------------------------------------ *\
        Form Support
\* ------------------------------------------------------------ */

.form-support .form-head {
    text-align: center;
    margin-bottom: 50px;
}

.form-support .form-captcha-image {
    max-width: 180px;
    width: 100%;
    border: 0;
    height: 50px;
    padding: 0 25px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s;
}

.form-support .form-captcha-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.form-support .btn {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
}

/* ------------------------------------------------------------ *\
        Contact Info
\* ------------------------------------------------------------ */

.contact-info {
    font-size: 14px;
    color: #666; 
}

.contact-info p {
    margin-bottom: 25px;
}

.contact-info a {
    color: #078ed2; 
}

.contact-info .contact-info-title {
    font-size: 16px;
    font-weight: 500;
    color: #535353; 
}

/*  Contact Info Primary  */

.contact-info-primary {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
    line-height: 1.33;
    padding-right: 25px;
}

.contact-info-primary h3 {
    font-size: 19px;
    line-height: 1.63;
    margin-bottom: 65px;
    font-weight: 300;
}

.contact-info-primary a {
    color: #078ed2;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.contact-info-primary a:hover {
    color: #4dcdb2;
}

.contact-info-primary .list-contacts-info li + li {
    margin-top: 55px;
}

.contact-info-primary .list-contacts-info li {
    position: relative;
    padding-left: 67px;
}

.contact-info-primary .icon-holder {
    display: block;
    height: 46px;
    width: 46px;
    line-height: 46px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info-primary .icon-holder i {
    color: #4dcdb2;
}

.intro-contacts .intro-container {
    background: url(../../img/icard_mobile/contact/intro-banner.jpg) no-repeat center center;
    background-size: cover;
    min-height: 509px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-row {
    display: flex;
    align-items: center;
}

.contact-form-row .section-img-contact img {
    width:100%;
    display: inline-block;
}

@media(max-width: 991px){
    .contact-form-row {
   display: block;
    }
    
    .contact-form-row .section-img-contact img {
    width:80%;
}
}



/*  Support section actions  */
.support-section .support-section-inner-actions {
    position: absolute;
    top: 20px;
    right: 30px;
}

.support-section .support-section-inner-actions i {
    color: #3a3a3a;
}


/*-----*/

/*-------------FEATURE PAGE -------------------*/

.image-instruction-loyalty-card {
    border-radius: 10px;
    box-shadow: 0 0 51px 0 rgba(41,43,43,.4);
    transition: all .6s ease-in-out;
}

.image-instruction-loyalty-card:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.instruction-loyalty-cards p {
    margin-top: 53px;
    font-size: 18px;
}

.instruction-loyalty-card-mobile {
    display: none;
}

.gift-cards-secondary .gift-cards-secondary-body{
    position:relative;
    padding-top:175%;
    width:100%;
    max-width:370px;
    margin:0 auto;
}

.gift-cards-secondary .gift-cards-secondary-body-image{
    position:absolute;
    top:-10%;
    bottom:0;
    left:7%;
    right:0;
    width:100%;
    height:auto;
    z-index:2;
}

.gift-card-outer {
    margin-top: 0px;
    padding: 30px 0;
}

.gift-card-secondary{
    min-height:200px;
    font-size:14px;
    line-height:1.71;
    margin-bottom:95px;
}

.gift-card-secondary h5 {
    line-height: 1.5;
    font-size: 19px;
    margin-bottom: 25px;
    margin-top: 15px;
    font-weight: 400;
    color: #535353;
}

.gift-card-secondary.gift-card-icon-top {
    padding:45px 15px 20px
}

.gift-card-feature {
    margin-bottom: 0;
}

.gift-card-icon-top.gift-card-feature {
    text-align: center;
}

.gift-card-secondary {
    min-height: 200px;
    font-size: 14px;
    line-height: 1.71;
    margin-bottom: 95px;
}

.gift-card-secondary p{
    font-weight: 300;
    font-size: 15px;
    line-height: 1.71;
}

.gift-card-feature{
    position: relative;
    margin-bottom: 50px;
    font-size: 18px;
}

.gift-card-feature .gift-card-icon {
    position: absolute;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: -60px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
    color:white;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.features-box{
    padding: 30px 10px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
}

/*COLOR BOX GIFT-CARDS-FEATURES */
.gift-card-feature.feature-green .gift-card-icon{
    background: #26ba92;
}

.gift-card-feature.feature-orange .gift-card-icon{
    background: #ffa53b;
}

.gift-card-feature.feature-pink .gift-card-icon{
    background: #fa4e9f;
}

.gift-card-feature.feature-purple .gift-card-icon {
    background: #844cea;
}

.mobile-send-request{
    width: 100%;
    display:none;
} 

.skew-icon {
    color: #fff;
}

.pay-feature-icon-top.pay-feature {
    width: 100%;
    min-height: 126px;
    margin: 0 auto;
    text-align: center;
}

.pay-feature {
    position: relative;
}

.pay-feature p {
    padding-top: 10px;
    font-size: 18px;
}

.pay-feature .pay-feature-icon {
    position: absolute;
    height: 90px;
    width: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: -60px;
    color: #fff;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
    background: #d2d2d2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pay-feature.feature-pink .pay-feature-icon {
    background: #fa4e9f;
}

.pay-feature.feature-orange .pay-feature-icon{
    background: #ffa53b;
}

.pay-feature.feature-light-blue .pay-feature-icon {
    background: #13ded3;
}

.pay-feature.feature-purple .pay-feature-icon{
    background: #844dea;
}

.list-squares {
    position: relative;
    top: 35px;
    left: 0;
}

.list-squares .square-icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 10px;
    left: 0vw;
    border-radius: 5px;
    background: #1aacdf;
    color: #fff;
}

.mobile-checkout-image {
    display: none;	
}

.checkout-section-image {
    position: relative;
    left: 160px;
    bottom: 80px;
    border-radius: 20px;
    box-shadow: 0 0 50px 0 rgba(48, 48, 49, .3)
}

.section-entry p {  
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

/*NFC wearables page*/
.wearables-gadgets{
    border-radius: 15px;
    box-shadow: 0px 0px 38px 10px rgba(224, 228, 249, 1);
}

.wearables .feature-icon {
    left: 14%;
}

.watch-nfc-image {
    position: absolute;
    z-index: -1;
    right: 130px;
    border-radius: 25px;
    box-shadow: 0 0 43px 1px rgba(22,21,21,.3);
}

.wearables p {
    margin: 7px 0 15px 94px;
    line-height: 1.77;
    font-weight: 400;
    font-size: 19px;
    text-align: left;
}

.wearables-security {
    position: absolute;
    float: right;
    top: -570px;
    width: 44%;
    right: 100px;
}

.wearables-security p {
    font-weight: 200;
}

.wearables-security .list-squares {
    left: 0;
    padding-bottom: 40px;
}

/* ------------------------------------------------------------ *\
        Section Legals Primary
\* ------------------------------------------------------------ */

.section-legals-primary  .section-aside-title {
    font-size: 27px;
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 40px;
}

.section-legals-primary .content {
    font-size: 16px;
}

.section-legals-primary .content h1 {
    font-size: 30px;
    font-weight: 400;
    margin-top: 0;
}

.section-legals-primary table th,
.section-legals-primary table td {
    padding: 5px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.legals {
    margin-top: 20px;
}

/* ------------------------------------------------------------ *\
        Base
\* ------------------------------------------------------------ */

body.e-giftcard {
    font-size: 16px;
    line-height: 1.63;
    color: #152037;
    letter-spacing: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    min-width: 320px;
}

body.e-giftcard br {
    display: none;
}

body.e-giftcard h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.12;
}

body.e-giftcard h2 {
    font-size: 42px;
    font-weight: 500;
}

body.e-giftcard h1,
body.e-giftcard h2,
body.e-giftcard h3,
body.e-giftcard h4,
body.e-giftcard h5,
body.e-giftcard h6 {
    font-family: 'Raleway', sans-serif;
    color: #152037;
}

/* ------------------------------------------------------------ *\
        Icons
\* ------------------------------------------------------------ */

.ico-arrow-right-red-sm {
    background: url(../../img/icard_mobile/christmas-campaign2018/ico-arrow-right-red-sm.png) no-repeat 0 0;
    width: 19px;
    height: 11px;
}

.ico-arrow-right-red {
    background: url(../../img/icard_mobile/christmas-campaign2018/ico-arrow-right-red.png) no-repeat 0 0;
    width: 66px;
    height: 42px;
}

.ico-arrow-left-red {
    background: url(../../img/icard_mobile/christmas-campaign2018/ico-arrow-left-red.png) no-repeat 0 0;
    width: 66px;
    height: 42px;
}

/* ------------------------------------------------------------ *\
        Header
\* ------------------------------------------------------------ */

.header-secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    padding-top: 25px;
}

/* ------------------------------------------------------------ *\
        Intro
\* ------------------------------------------------------------ */

.intro-tertiary {
    position: relative;
    padding-top: 175px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding-bottom: 250px;
}

.intro-tertiary .intro-content-actions {
    padding-top: 20px;
}

.intro-tertiary .intro-content-actions .btn {
    min-width: 1px;
    padding: 0;
    border-radius: 0;
}

.intro-tertiary .intro-content-actions .btn + .btn {
    margin-left: 25px;
}

.intro-tertiary h1 {
    margin-bottom: 40px;
}

.intro-tertiary .intro-container {
    position: relative;
    z-index: 1;
}

.intro-tertiary .intro-container:before {
    content: '';
    width: 30000px;
    height: 3500px;
    background: #fcfcfc;
    position: absolute;
    top: -3200px;
    left: 50%;
    z-index: -1;
    margin-left: -15000px;
    transform-origin: top center;
    -webkit-transform: rotate(23deg);
    -ms-transform: rotate(23deg);
    -o-transform: rotate(23deg);
    transform: rotate(23deg);

} 

.intro-tertiary .intro-image-secondary {
    position: absolute;
    top: -390px;
    right: calc(100% + 50px);
}

.intro-tertiary .intro-image-primary {
    position: absolute;
    top: 120px;
    right: calc(100% + 220px);	
}

.intro-tertiary .intro-image-tertiary {
    position: absolute;
    left: 40px;
    bottom: 160px;
}

.intro-tertiary .intro-image-alt {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    padding-left: 20px;

}

/* ------------------------------------------------------------ *\
        Countdown
\* ------------------------------------------------------------ */

.countdown {
    padding: 20px 48px;
    background: #fff;
    box-shadow: 0px 16px 25px rgba(4, 25, 1, .15);
    margin-bottom: 43px;
}

.countdown .countdown-foot {
    padding-top: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    border-top: 2px solid #d7d6da;
}

.list-countdown:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
} 

.list-countdown li {
    float: left;
    width: 25%;
    text-align: center;
    position: relative;
    padding: 0 12px 0 12px;
}

.list-countdown li:before {
    content: '';
    display: inline-block;
    background: #d7d6da;
    font-size: 51px;
    position: absolute;
    top: 0;
    right: 3px;
    height: 60px;
    width: 2px;
    -webkit-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    -o-transform: rotate(12deg);
    transform: rotate(12deg);
}

.list-countdown li:last-child:before {
    display: none;
}

.list-countdown li span,
.list-countdown li strong {
    display: block;
    font-family: 'Open Sans', sans-serif;
}

.list-countdown li span {
    font-size: 51px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 15px;
    color: #f53c5d;
    min-height: 40px;
    display: inline-block;
}

.list-countdown li strong {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #152037;
}

/* ------------------------------------------------------------ *\
        Section
\* ------------------------------------------------------------ */

body.e-giftcard .section {
    text-align: left;
    z-index: 2;
}

.e-giftcard .section .section-head,
.e-giftcard .section .section-body {
    position: relative;
}

body.e-giftcard .section .section-head {
    text-align: left;
    position: relative;
    z-index: 2;
}

body.e-giftcard .section .section-title {
    margin-bottom: 44px;
    line-height: 1.12;
}

body.e-giftcard .section .section-actions {
    padding-top: 32px;
}

body.e-giftcard .section .section-actions .btn {
    min-width: 1px;
    padding: 0;
    border-radius: 0;
}

body.e-giftcard .section .section-actions .btn ~ .btn {
    margin-left: 25px;
}

body.e-giftcard .section .section-head,
body.e-giftcard .section .section-body {
    position: relative;
}

/*  Secion E-Giftcard About  */

.section-e-giftcard-about .section-image-primary {
    position: absolute;
    top: 0;
    right: -45px;
    z-index: 10;
}

.section-e-giftcard-about {
    padding-top: 0;
}

.section-e-giftcard-about .section-head {
    padding-top: 200px;
}

.section-e-giftcard-about .section-image-secondary {
    position: absolute;
    top: -10px;
    right: calc(100% - 80px);
}

.section-e-giftcard-about .section-image {
    position: relative;
    z-index: 1;
}

.section-e-giftcard-about .section-image > img {
    margin-left: -80px;
}

/* Section E-Giftcard Steps  */

.section-e-giftcard-steps .section-image-primary {
    position: absolute;
    bottom: 0;
    right: 30px;
}

/*  Section E-Giftcard Testimonials */

.section-e-giftcard-testimonials {
    padding: 200px 0;
}

.section-e-giftcard-testimonials .section-head {
    padding-top: 100px;
}

.section-e-giftcard-testimonials .section-image-primary {
    position: absolute;
    top: -200px;
    right: 100px;
}

.section-e-giftcard-testimonials .section-image-secondary {
    position: absolute;
    top: -200px;
    right: 250px;
}

.section-e-giftcard-testimonials .section-image-tertiary {
    position: absolute;
    bottom: 0;
    right: -50px;
}

/*  Section E-Giftcard Callout  */

.section-e-giftcard-callout {
    position: relative;
    min-height: 900px;
    padding-top: 200px;
}

.section-e-giftcard-callout .section-head {
    padding-top: 50px;
}

.section-e-giftcard-callout .section-image-primary {
    position: absolute;
    left: 100%;
    top: 0;

}

.section-e-giftcard-callout .section-image {
    position: absolute;
    top: 0;
    right: 50%;
}

/*  Section E-Giftcard More About */

.section-e-giftcard-more-about .section-body {
    min-height: 400px;
}

.section-e-giftcard-more-about .section-image-primary {
    position: absolute;
    right: 25%;
    top: 86px;
}

.section-e-giftcard-more-about .section-image-secondary {
    position: absolute;
    left: calc(100% + 100px);
    top: -288px;
}

/*  Link Tertiary  */

.link-tertiary {
    font-weight: 600;
    font-size: 16px;
    color: #152037;
    line-height: 1;
}

.link-tertiary:hover {
    color: #152037;
    opacity: .7;
}

.link-tertiary span {
    display: inline-block;
    vertical-align: middle;
}

.link-tertiary span + i {
    margin-left: 10px;
}

.link-tertiary i {
    margin-top: 2px;
}

/* ------------------------------------------------------------ *\
        List Steps
\* ------------------------------------------------------------ */

body.e-giftcard .list-steps {
    font-size: 31px;
    font-weight: 300;
    text-align: left;
}

body.e-giftcard .list-steps li {
    min-height: 60px;
    position: relative;
    padding-left: 90px;
    padding-top: 2px;
}

body.e-giftcard .list-steps li strong {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #c6e1fa;
    color: #1b3055;
    font-weight: 700;
    border-radius: 50%;
}

body.e-giftcard .list-steps li:last-child strong {
    background: #c8e9e4;

}

body.e-giftcard .list-steps li + li {
    margin-top: 35px;
}

/* ------------------------------------------------------------ *\
        Footer
\* ------------------------------------------------------------ */

.footer-secondary {
    background-size: cover;
    background-position: center center;
    padding: 60px 0px;
}

.footer-secondary .footer-content {
    background: none;
    padding: 0;
}

.footer-secondary .footer-inner {
    text-align: center;
    margin-bottom: 140px;
}

/*  List Certificates Alt  */

.list-cards-secondary {
    position: static;
    padding-top: 10px;
}

.list-cards-secondary li {
    padding: 0 23px 10px 0;
}

.list-certificates-secondary {
    font-size: 14px;
    line-height: 1.71;
    color: #fff;
    margin-bottom: 0;
}

.list-certificates-secondary li+li {
    padding-top: 0;
}

/* ------------------------------------------------------------ *\
        Testimonial
\* ------------------------------------------------------------ */

.testimonial-alt {
    background: #fff;
    padding: 65px 38px;
    position: relative;
    box-shadow: 0 0px 20px rgba(4, 25, 1, .16);
    font-size: 16px;
    min-height: 460px;
    background-image: url(../../img/icard_mobile/christmas-campaign2018/christmas-tree.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 39px 97px;
}

.testimonial-alt blockquote {
    font-size: 16px;
    border: 0;
    padding: 0;
}

.testimonial-alt:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 58px 58px 0 0;
    border-color: #da1d4c transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-alt h4 {
    padding-top: 10px;
    font-size: 24px;
    font-weight: 600;
}

.testimonial-alt .testimonial-head {
    margin-bottom: 35px;
}

.testimonial-alt .testimonial-head:after {
    content: '';
    line-height: 0;
    display: table;
    clear: both;
} 

.testimonial-alt .testimonial-image {
    width: 60px !important;
    height: 60px;
    float: left;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 10px rgba(4, 25, 1, .16);
}

/* ------------------------------------------------------------ *\
        ScrollTop
\* ------------------------------------------------------------ */

.scrollToTarget,
.scrollTop {
    position: fixed;
    right: 104px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    background: #50afde;
    bottom: 100px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: -9999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.scrollToTarget.visible,
.scrollTop.visible {
    opacity: 1;
    visibility: visible;
    z-index: 9999;

}

.scrollToTarget .fa,
.scrollTop .fa {
    color: #fff;
    font-size: 33px;
    line-height: 1;
    margin-top: 4px;
}

.scrollToTarget {
    right: 30px;
    bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

/* ------------------------------------------------------------ *\
        Nav Lang Secondary
\* ------------------------------------------------------------ */

.nav-lang-secondary {
    margin: 13px -90px 0 0;
    background: #fff;
    border-radius: 7px;
}

.nav-lang-secondary>ul>li>a {
    color: #152037;
    padding: 10px 8px;
    border-radius: 7px;
    border: 1px solid #dcdadf;
}

/* ------------------------------------------------------------ *\
        Container
\* ------------------------------------------------------------ */

body.e-giftcard .container {
    padding: 0 15px;
}

/* ------------------------------------------------------------ *\
        Video Screen Outer
\* ------------------------------------------------------------ */

body.e-giftcard .video-screen-outer{
    max-width: 335px;
}

body.e-giftcard .video-screen-mobile {
    max-width: 335px;
    padding-top: 190%;
}

body.e-giftcard .section-e-giftcard-steps .video-screen .video-container {
    position: absolute;
    top: 5.9%;
    bottom: 3.8%;
    left: 3.2%;
    right: 2.3%;
    z-index: 2;
}

/* ------------------------------------------------------------ *\
        Bussines Page Redesign
\* ------------------------------------------------------------ */


/* ------------------------------------------------------------ *\
        Intro Bussines Primary
\* ------------------------------------------------------------ */
.intro-bussiness-primary .intro-container {
    background: url(../../img/icard_mobile/bussines-page/business-intro-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.intro-bussiness-primary h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
}

.intro-bussiness-primary h1 small {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}

.intro-bussiness-primary .intro-inner-primary {
    padding-top: 300px;
    text-align: left;
}

.intro-bussiness-primary .container {
    position: relative;
}

.intro-bussiness-primary .intro-inner-image {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.intro-bussiness-primary .intro-inner-image {
    max-width: 401px;
}

.intro-bussiness-primary .intro-inner-image img {
    width: 100%;
    height: auto;
}

/* ------------------------------------------------------------ *\
        Sections
\* ------------------------------------------------------------ */

.section-bussines .section-head {
    margin-bottom: 75px;
}


.section-bussines .section-title {
    line-height: 1.44;
}

.section-bussines .section-subtitle {
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.section-business-tertiary {
    padding: 0;
}

.section-bussines .link-secondary {
    color: #21abf0;
    text-decoration: underline;
}

.section-bussines .link-secondary:hover {
    text-decoration: none;
}

/*  Section Bussines Grey  */

.section-bussines-grey {
    background: #f5f5f5;
    padding: 70px 0 80px;
}

/*  Section bussines Secondary  */

.section-bussines-secondary {
    background: url(../../img/icard_mobile/bussines-page/business-cta-1.jpg);
    background-size: cover;
    background-position: center center;
    color: #fff;
    text-align: left;
    padding: 40px 0 0;

}

.section-bussines-secondary .section-image img {
    max-width: 100%;
    height: auto;
}

.section-bussines-secondary .section-head {
    text-align: left;
    padding-top: 185px;
}

/*  Section Bussines Callout  */

.section-business-callout {
    background: url(../../img/icard_mobile/bussines-page/business-cta-1.jpg);
    background-size: cover;
    background-position: center center;	
}

/*  Section Bussines Quaternary  */

.section-business-senary {
    font-size: 16px;
    padding-bottom: 0;
}

.section-business-senary .section-head {
    margin-bottom: 60px;
}

.section-bussines .section-title:last-child {
    margin-bottom: 0;
}

.section-business-primary {
    padding-top: 0;
    padding-bottom: 0;
}

.section-business-senary .section-business-inner p {
    text-align: justify;
}

.section-inner-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.section-business-senary .section-bussines-inner {
    margin: 70px 0 80px;
    line-height: 2.25;
}

.section-business-senary .section-business-inner-primary {
    position: relative; /* needed for image positioning */
    margin: 70px 0;
}

.section-business-senary .section-bussines-inner h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.section-business-senary .section-bussines-inner .section-inner-image {
    padding-left: 80px;
}

/*  Section Callout Tertiary */

.section-callout-tertiary.section {
    padding: 0;
}

.section-callout-tertiary .section-title {
    color: #fff;
}

.section-callout-tertiary  .section-inner {
    text-align: right;
    background: url(../../img/icard_mobile/bussines-page/section-callout-tertiary-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.section-callout-tertiary .section-inner .container {
    position: relative;
    padding-top: 180px;
    padding-bottom: 140px;
}

.section-callout-tertiary .section-inner .section-image {
    position: absolute;
    left: -350px;
    bottom: -80px;
    max-width: 1100px
}

.section-callout-tertiary .section-inner .section-image img {
    width: 100%;
    height: auto;
}

.section-callout-tertiary  .section-inner-secondary {
    padding: 100px 0 70px;
    background: #1b1b1b;
    text-align: center;
}
.section-callout-tertiary .section-inner .section-title {
    margin-bottom: 55px;
}

.section-callout-tertiary  .section-inner-secondary .section-title {
    margin-bottom: 50px;
}

.section-callout-tertiary  .section-inner-secondary .section-actions a {
    display: inline-block;
    margin: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
}

.section-callout-tertiary-alt .section-inner .section-image-alt img {
    width: 100%;
    height: auto;
}

.section-callout-tertiary-alt .section-inner .section-image-alt {
    bottom: 0;
    left: 210px;
    position: absolute;
    max-width: 280px;
}

.section-callout-tertiary-alt .section-inner {
    text-align: left;
}

.section-callout-tertiary-alt .section-inner-secondary {
    padding-top: 70px;
}

/* needed for image positioning */
.section-business-senary .section-bussines-inner .section-inner-image-primary {
    min-height: 440px;
    height: 100%;
}

.business-page .section-inner-image-primary img {
    width: 690px;
    max-width: none;
    position: absolute;
    bottom: 0;
}

.section-business-senary .section-bussines-inner-reverse .section-inner-image {
    padding-left: 0;
    padding-right: 60px;
}

.section-business-senary .section-bussines-inner .section-inner-image  img {
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
}

.section-business-senary .section-bussines-inner .section-inner-image-alt img {
    box-shadow: none;
}

.section-business-senary  .section-bussines-inner .section-inner-image-primary {
    padding: 0;
}

/*  Section Bussins Septnary  */

.section-business-callout-secondary {
    color: #fff;
    text-align: center;
    padding: 140px 0;
    background: url(../../img/icard_mobile/bussines-page/business-cta-2.jpg);
    background-size: cover;
    background-position: center center;	
}

.section-business-callout-secondary .section-title {
    margin-bottom: 77px;
    line-height: 1.44;
}

/*  Benefit Busssines  */

.benefit-bussines {
    font-size: 14px;
    line-height: 1.82;
    letter-spacing: 0.05em;
    color: #666666;
    margin-bottom: 60px;
    /*    text-align: center;*/
}

.benefit-bussines .benefit-bussines-image {
    display: block;
    width: 100px;
    height: 100px;
    position: relative;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
    margin: 0 0 27px;
    /*    text-align: center;*/
}

.benefit-bussines .benefit-bussines-image .img-currency-transfers {
    margin-top: 2px;
}

.benefit-bussines .benefit-bussines-image .img-mass-payments {
    margin-top: -2px;
}

.benefit-bussines .benefit-bussines-image .img-transfers {
    margin-left: 2px;
    margin-top: 1px;
}

.benefit-bussines .benefit-bussines-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.benefit-bussines h4 {
    font-size: 17px;
    color: #666666;
    margin-bottom: 19px;
}

.benefits-bussines-row {
    display:flex;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.benefits-bussines-col {
    flex:0 0 20%;   
    padding: 0 20px;
}

@media(max-width: 1199px){
    .benefits-bussines-col {
        flex: 0 0 30%;
    }
}

@media(max-width: 991px){
    .benefits-bussines-col {
        flex: 0 0 50%;
    }
}

@media(max-width: 767px){
    .benefits-bussines-col {
        flex: 0 0 100%;
    }
}


/*  Footer  */

.business-page .footer {
    margin-top: 0;
}

/*  Features Bussines  */

.features-bussines-offset div[class*="col-"] {
    padding-left: 45px;
    padding-right: 45px;
    margin-bottom: 100px;
}

.features-bussines-offset .row {
    margin-left: -45px;
    margin-right: -45px;
}

.feature-bussines-primary {
    box-shadow: 0 0 35px rgba(0, 0, 0, .3);
    max-width: 330px;
    margin: 0 auto; 
    height: 100%;
    font-size: 16px;

    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.feature-bussines-primary:hover {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.feature-bussines-primary .feature-bussines-image img {
    width: 100%;
    height: auto;
    max-width: 100%
}

.feature-bussines-primary .feature-bussines-content {
    background: #fff;
    padding: 40px 25px;
    min-height: 270px;
}

.feature-bussines-primary h3 {
    font-size: 26px;
    color: #303030;
    line-height: 1.09;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
    color: #535353;
    font-family: 'Caros', 'sans-serif';
}

.feature-bussines-alt .feature-bussines-content {
    background: #fff;
    padding: 40px 20px 30px;
    min-height: 245px;
}

.feature-bussines-alt h3 {
    /* position: relative; */
    padding-left: 45px;
    text-align: left;
    margin-bottom: 5px;
    font-size: 21px;
    min-height: 70px;
}

.feature-bussines-alt i {
    /* .feature-bussines-alt h3 i { */
    /* position: absolute;
    top: 0;
    left: 0; */
    display: block;
    float: left;
}

.feature-bussines-alt p {
    font-size: 0.9em;
}

/* ------------------------------------------------------------ *\
        Icons
\* ------------------------------------------------------------ */

.ico-check-round {
    background: url(../../img/icard_mobile/bussines-page/ico-circle-check.png);
    width: 32px;
    height: 32px;
}

.pdf_ico {
    background: url(../../img/icard_mobile/download.svg) top left no-repeat;
    height: 20px;
    padding-left: 30px;
    display: inline-block;
    padding-bottom: 26px;
}

/* ------------------------------------------------------------ *\
        Section Business Pricing
\* ------------------------------------------------------------ */

.section-business-pricing {
    padding-top: 0;
    padding-bottom: 0;
}

.section-business-pricing .section-subtitle {
    padding: 0;
}

.section-business-pricing .section-title {
    font-size: 36px;
}

/* ------------------------------------------------------------ *\
        Package Business
\* ------------------------------------------------------------ */

.packages-business {
    padding-top: 20px;
}

.package-business {
    position: relative;
    padding: 38px;
    background: #fcfcfc;
    font-size: 16px;
    color: #5a5858;
    letter-spacing: 0.05em;
    line-height: 1.38;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.package-business.active {
    background-color: #fff;
    box-shadow: 18px 18px 59px 9px rgba(29, 29, 29, 0.14);
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
} 

.package-business.active .package-price {
    color: #1be07d;
}

.package-business.active .package-actions .btn {
    opacity: 1;
}


.package-business.active ~ .packages-bussines-note {
    opacity: 1;
    visibility: visible;
}

.package-business .package-head {
    text-align: center;
    color: #131313;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 400;
}

.package-business .package-body {
    min-height: 575px;
}

.package-business h3{
    font-size: 41px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
}

.package-business .package-image {
    margin-bottom: 40px;
}

.package-business .package-business-subtitle {
    min-height: 60px;
}

.package-business .package-price {
    line-height: 1;
    margin-bottom: 33px;
    font-weight: 500;
    font-size: 42px;
    color: #131313;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.package-business .package-curr {
    font-size: 42px;

}

.package-business .package-price .package-price-size1 {
    font-size: 67px;
}

.package-business .package-price .package-price-size2 {
    font-size: 56px;
}

.package-business .package-actions {
    text-align: center;
    padding: 40px 0;
}

.package-business .package-actions .btn {
    opacity: 0.2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.package-business .package-foot {
    font-size: 15px;
    font-weight: 300;
    color: #898989;
    line-height: 2.14;
}

.package-business .package-foot p {
    margin-bottom: 15px;
}

.package-business .package-foot strong {
    color: #333333;
    font-weight: 700;
}

.package-business .package-foot a {
    font-weight: 500;
    color: #21abf0;
}

.packages-bussines-note {
    padding-top: 25px;
    font-size: 15px;
    color: #ccc;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* ------------------------------------------------------------ *\
        Package Business Nav
\* ------------------------------------------------------------ */

.packages-business-nav {
    max-width: 320px;
    margin: 0 auto 40px;
    display: none;
}

.packages-business-nav ul {
    display: -webkit-flex;
    display: flex;
}

.packages-business-nav ul li {
    flex: 0 0 50%;
}

.packages-business-nav ul li:first-child a {
    border-radius: 17px 0 0 17px;
}

.packages-business-nav ul li:last-child a {
    border-radius: 0 17px 17px 0;
}

.packages-business-nav a {
    display: block;
    color: #333333;
    border: 1px solid #333333;
    text-align: center;
    padding: 12px 10px;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.packages-business-nav a:hover,
.packages-business-nav li.active a {
    background: #333;
    color: #fff;
}

.packages-business .package-business-tab {
    display: block;
}


.packages-business .package-callout-text {
    font-weight: 400;
    margin-bottom: 30px;
}

.packages-business .package-callout-text strong {
    font-weight: 700;
}

.packages-business .package-callout-text strong,
.packages-business .package-callout-text {
    font-size: 21px;
    color: #333;
}

/* ------------------------------------------------------------ *\
        List Checks Tertiary
\* ------------------------------------------------------------ */

.list-checks-tertiary li {
    overflow: hidden;
}

.list-checks-tertiary li + li {
    margin-top: 36px;
}

.list-checks-tertiary .icon-holder {
    float: left;
    margin-right: 16px;
}

.list-checks-tertiary .icon-holder i {
    line-height: 1;
    color: #fff;
}

.list-checks-tertiary li p {
    overflow: hidden;
}

/* ------------------------------------------------------------ *\
        Main Offset
\* ------------------------------------------------------------ */

.main-offset-top-240  {
    padding-top: 100px; /* 220px */
}

/* ------------------------------------------------------------ *\
        FAQs Primary
\* ------------------------------------------------------------ */

.faq-primary {
    color: #535353;
    font-size: 16px;
    line-height: 2.25;
}

.faq-primary p,
.faq-primary .faq-content .list-decimal,
.faq-primary .faq-content .list-disc {
    margin-bottom: 35px;
}
.faq-primary p:last-child {
    margin-bottom: 0;
}

.faq-primary .faq-content {
    margin-bottom: 25px;
}



.faq-primary h2 {
    font-size: 24px;
    font-weight: 400;
    color: #535353;
    margin: 0 0 30px;
    line-height: 1;
}

.faq-primary .faq-foot {
    color: #b2b2b2;
    font-size: 15px;
    line-height: 1;
}

.faq-primary .faq-foot-message {
    color: #21abf0;
}

.faq-primary .faq-foot .btn-faq-reaction {
    font-size: 21px;
    display: inline-block;
    margin-left: 10px;
    color: #bcbbbb;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.faq-primary .faq-foot .faq-like.active,
.faq-primary .faq-foot .faq-like:hover {
    color: #21abf0;
}

.faq-primary .faq-foot .faq-dislike.active,
.faq-primary .faq-foot .faq-dislike:hover {
    color: #fb6060;
}

/*  Help Content  */

.help-content {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.help-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.help-content .help-content-title {
    margin-bottom: 45px;
}


/* ------------------------------------------------------------ *\
        Nav Quaternary
\* ------------------------------------------------------------ */

.nav-help-categories > ul > li {
    padding-top: 25px;
}

.nav-help-categories > ul > li:first-child {
    padding-top: 0;
}

.nav-help-categories > ul > li > a {
    font-size: 18px;
    color: #333333;
    line-height: 1;
    font-weight: 500;
    position: relative;
    display: block;
    max-width: 100%;
    padding-right: 20px;
    margin-bottom: 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

    padding-right: 30px;
}

.nav-help-categories.nav-help-active > ul > li > a {
    max-width: 260px;
}

.nav-help-categories > ul > li > a > .fa {
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-help-categories > ul > li.active > a {
    color: #078ed2;
    text-decoration: underline;
}

.nav-help-categories > ul > li.active > a > .fa {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-help-categories .active .nav-help {
    display: block;
}

.nav-help-categories.nav-quaternary > ul > li > a > .fa {
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 0;
    color: #078ed2;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-help-categories.nav-quaternary > ul > li > a:hover,
.nav-help-categories.nav-quaternary > ul > li.current > a,
.nav-help-categories.nav-quaternary > ul > li.active > a {
    color: #078ed2;
}

.nav-help-categories.nav-quaternary > ul > li > a:hover .fa,
.nav-help-categories.nav-quaternary > ul > li.current > a .fa,
.nav-help-categories.nav-quaternary > ul > li.active > a > .fa {
    opacity: 1;
    visibility: visible;
    color: #078ed2;
}

/* .nav-help {
        display: none;
} */

.nav-help > ul > li > a {
    font-size: 16px;
    color: #8d8c8c;
    line-height: 1;
    display: block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-help > ul > li > a:hover,
.nav-help > ul > li.active > a {
    color: #078ed2; /* #535353; */
    text-shadow: 0.5px 0px 0px #535353;
}

.nav-help > ul > li + li {
    margin-top: 20px;
}

.nav-help > ul {
    padding: 13px 0 13px 13px;
}

.section-legals-primary .nav-help-categories > ul > li > a:after {
    content: "";
    font-family: "fontello";
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    right: 20px;
    top: 3px;
    height:100%;
}

.nav-help-categories > ul > li.active > a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}


/*  Nav Help Alt  */

.nav-help-alt > ul > li > a {
    font-size: 16px;
    color: #8d8c8c;
    line-height: 1;
    display: block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-help-alt > ul > li > a:hover,
.nav-help-alt > ul > li.active > a {
    color: #535353;
    text-shadow: 0.5px 0px 0px #535353;
}

.nav-help-alt > ul > li + li {
    margin-top: 20px;
}

.nav-help-alt > ul {
    padding: 13px 0;
}

/*  Section Faqs  */

.section-help-primary .section-head {
    margin-bottom: 0px;
}

.section-help-primary {
    padding-top: 30px;  /* 10px; */
    padding-bottom: 0;
}

.section-help-primary  .section-aside {
    margin-right: 45px;
    padding-right: 45px;
    height: 100%;
}

.section-help-primary  .section-content {
    position: relative;
    height: 100%;
}

.section-help-primary  .section-content:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    left: -75px;
    background: #cacdcf;
}

/* ------------------------------------------------------------ *\
    Section Legals Primary
\* ------------------------------------------------------------ */

.section-legals-primary .section-aside {
    padding-right: 25px;
    margin-right: 25px;
}

/* ------------------------------------------------------------ *\
        List Stripes
\* ------------------------------------------------------------ */

.benefits .list-stripes-fees .list-stripes-item-alt {
    background: #f2f0f0;
    height: 60px;
} 

.benefits .list-stripes-fees .list-stripes-item-alt + li:last-child {
    height: 60px;
} 
/* sticky@home page for cash in  */
.cash-in-sticky {
    position: fixed;
    top: 150px;
    right: 0px;
    background-color: #20c19f;
    background-color:rgba(32, 193, 159, 0.80);
    z-index: 1000;
    height: 120px;
    width: 106px;
    border-radius: 20px 0 0 20px;
    display: none;
    text-decoration: none;
    font-size: 14px;

    box-shadow: -5px 9px 35px 0px rgba(100, 107, 109, 0.5);

}
.cash-in-sticky-inner {
    color:#fff;
    position: absolute;
    top: 50%;
    left: 55%;
    z-index: 1001;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
}
.cash-in-sticky-inner span {
    color: white;
    font-size: 14px;
}
.cash-in-sticky-inner img {
    width: 35px;
}

/* */
/* VISA INFINITE PAGE pREMIUM ACCOUNT */
/* */
.intro-visa-infinite .intro-video-background:after {
    background: transparent; 
    height: calc(100% - 147px);
    background: #181818;
    z-index: -1;
}
.intro-visa-infinite .intro-inner {
    top: 35%;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    -o-transform: translateY(-35%);
    transform: translateY(-35%);
}
.intro-visa-infinite h1 {
    margin-top: 0;
    margin-bottom: 10px;
}
.visa-infinite-btn, .visa-infinite-btn:visited  {
    background-color:#2c95ff;
    height: auto;
    padding: 15px 0;
    line-height: inherit;
}

.btn-primary.visa-infinite-btn {
    margin-top: 50px;
    margin-bottom: 15px;
    min-width: 170px;
}
.visa-infinite-btn.learn-more {
    background: none;
    border: 2px solid #2c95ff;
    color: #2c95ff;
}
.intro-visa-infinite .intro-entry p:first-of-type {
    font-size: 22px;
}
.visa-infinite-small-p {
    font-size: 12px;
}
.column-holder .visa-infinite-small-p {
    font-size: 14px;
}

.intro-visa-infinite .intro-video-background video {
    max-width: 1800px;
    height: auto;
}
/* two columns width picture @ one side */
.column-holder {
    text-align: left;
    margin-bottom: 80px;
}
.column-holder:last-of-type {
    margin-bottom: 0;
}
.column-holder p {
    font-size: 16px;
}
.column-holder-title {
    font-size: 24px;
    color:#0f0d0d;
    font-weight: 400;
    margin-bottom: 25px;
}
.column-holder-options {
    margin-top: 135px;
}
.column-holder.row-reverse {
    flex-direction: row-reverse;
    display: flex;
}													


.visa-infinite-benefits {
    min-height: 792px; 
}
.visa-infinite-benefits .img-left {
    position: absolute;
    right: 0;
}
.visa-infinite-benefits .column-holder-options {
    font-size: 36px;
    margin-top: 35px;
    margin-bottom: 30px;
}
.visa-infinite-benefits .text-position-fix {
    margin-top: 80px;
}
.visa-infinite-benefits .column-holder p:not(.visa-infinite-small-p) {
    font-size: 18px;
    margin-bottom: 30px;
}
.visa-infinite-services .features-box {
    width:306px;
    text-align: center;
    background: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.feature-icon.icon-on-top {
    left: 50%;
    top: -40px;
    width: 65px;
    height: 65px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    position: static;
    transform: none;
    background-color: #fff;
    margin-bottom: 10px;
}
.visa-infinite-services .icon-on-top .ico-font,
.left-outside-text-holder .ico-font {
    color:#2c95ff;
}
.visa-infinite-services .feature p {
    margin-left: 0;
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
}
/* feature box on hover */
.features-box.hover-feature {
    padding: 25px 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    box-shadow: none;
}
/*
.hover-feature:hover .feature-icon.icon-on-top {
    box-shadow: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.hover-feature:hover {
    box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
} */
.visa-infinite-row {
    display: flex;
    justify-content: center;
}
.visa-infinite-row div:first-of-type {
    margin-right: 20px;
}
.visa-infinite-services .feature-icon:hover {
    box-shadow: -5px 9px 35px 0px rgba(100, 107, 109, 0.5)!important;
    cursor: default;
}

.visa-infinite-bgr {
    background: url(../../img/icard_mobile/visa_infinite_page/map-bgr.png) no-repeat 50% 48px;
    background-size: contain;
    margin-bottom: 25px;
}
.visa-infinite-bgr .section .section-subtitle {
    padding: 10px 0;
}
.left-outside-text {
    position: relative;
}
.left-outside-text:after {
    content:'';
    position: absolute;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
    width: 57%;
    top: 0;
    z-index: -1;
    box-shadow: 0px 48px 45px 0 #ebebeb;
    left: 0;
    height: 100%;
}
.left-outside-text-holder {
    padding: 70px 30px; 
}
.left-outside-text img {
    position: absolute;
    left:-285px;
    top:-70px;
    z-index: -2;
}
.left-outside-text-holder .section-subtitle {
    padding-bottom: 20px;
}
.left-outside-text-holder .section-subtitle p {
    font-size: 18px;
    line-height: 30px;
}
.list-holder-txt h5 {
    font-size: 18px;
    font-weight: bold;
}
.list-holder-txt p {
    font-size: 15px;
}
.list-holder-txt .ico-font {
    font-size: 23px;
}
.list-holder-txt-inn {
    padding-left: 20px; 
    padding-top: 4px;
}
.list-holder-txt {
    display: flex;
    margin-bottom: 40px;
}
.left-outside-text-holder .row:last-of-type .list-holder-txt {
    margin-bottom: 0;
}
.cards-round {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.18); 
    border-radius: 16px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 30px;
}
.cards-round img.header-pic {
    border-radius: 16px 16px 0 0;
    width: 100%;
}
.cards-round h5 {
    font-size: 18px;
    font-weight: bold;
}
.cards-round p {
    font-size: 15px;
}
.cards-round-holder-txt {
    padding: 20px;
}
.cards-round-holder-txt a {
    color:#2c95ff;
    text-decoration: underline;
    font-weight: 500;
}
.cards-round-holder-txt a:hover {
    text-decoration:none;
}
.equal-height-center-row {
    flex-grow: 1;
    align-items: center;
    display: flex;
}
.visa-infinite-feedback {
    background: url(../../img/icard_mobile/visa_infinite_page/feedback-bgr.jpg) no-repeat center center;
    min-height:697px;
    background-size: cover;
}
.visa-infinite-feedback h4 {
    font-weight: bold;
    font-size: 24px;
    margin: 20px 0 10px;
}
.visa-infinite-feedback .quote-box p.quotes-img {
    font-size: 21px;
    font-weight: 200;
    color:#919090;
    margin-top: 40px;
}
.visa-infinite-feedback .author p {
    font-size: 20px;
    font-weight: 300;
}
.visa-infinite-feedback .quote-box {
    padding: 0 80px 10px;
}
.quote-box .quotes-img:before, .quote-box .quotes-img:after {
    position: absolute;
    content: '';
    width:35px;
    height:29px;
    top: -10px;
    left: -80px;
    background-image: url(../../img/icard_mobile/visa_infinite_page/quote-begin.png);
    background-repeat: no-repeat;
}
.quote-box .quotes-img:after {
    content: ''; 
    top:auto;
    bottom:-10px;
    left:auto;
    right:-80px;
    background-image:url(../../img/icard_mobile/visa_infinite_page/quote-end.png);
}
.visa-infinite-feedback .author img {
    border-radius: 50%;
    width:167px;
    height:168px;
    display: inline-block;
}
.visa-infinite-slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all .2s ease;
    border-radius: 30px;
}
.visa-infinite-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}
.visa-infinite-slider .owl-dot {
    display: inline-block;
}
.visa-infinite-slider .owl-dot.active span,.visa-infinite-slider .owl-dot:hover span {
    background: #5465fb;
}
.visa-infinite-world-map {
    color:#fff;
    margin-bottom: -70px;
}
.visa-infinite-world-map h2 {
    font-size: 41px;
    font-weight: bold;

}
.visa-infinite-world-map h3 {
    font-size: 46px;
    font-weight: bold;
}
.visa-infinite-world-map h3 span {
    font-size: 36px;
    font-weight: 400;
}
.visa-infinite-world-map {
    background: url(../../img/icard_mobile/visa_infinite_page/world-map.jpg) no-repeat center center;
    background-size: cover;
    min-height: 637px;
    align-items: center;
    display: flex;
}
.btn-large.visa-infinite-btn {
    min-width: 240px;
}
.intro-visa-infinite .intro-content img.position-absolute {
    right:-85px;
    top:180px;
    z-index: 1;
    position: absolute;
}
.intro-visa-infinite.intro .intro-video-background {
    z-index: -1; 
} 
/* visa infinite video section */
.visa-infinite-video {
    margin-bottom: 40px;
}
.visa-infinite-video .section-head {
    margin-bottom: 20px;
}
.visa-infinite-video .fa {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;

    color: #000;
    font-size: 30px;
    padding: 16px 18px 16px 22px;
    border-radius: 50%;
    background-color: #fff;
    opacity: .7;
}
@keyframes pulse-black {
    0% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {

        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.visa-infinite-video .fa:hover {
    animation: pulse-black 3s;
}
.visa-infinite-video-holder {
    position: relative;
    display: inline-block;
}

/* checkboxes custom */

/* Base for label styling */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked),
.cookies-custom-checkboxes[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label,
.cookies-custom-checkboxes[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
}
/* checkbox aspect */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before,
.cookies-custom-checkboxes[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 1.25em; height: 1.25em;
    border: 1px solid #fff;  /* ccc; */
    background: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after,
.cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    content: '\2713\0020';
    position: absolute;
    top: .15em; left: .22em;
    font-size: 1.3em;
    line-height: 0.8;
    color: #19acdf;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
.cookie .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after,
.cookie .cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    color: #1fc6a3;
}
/* checked mark aspect changes */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
.cookies-custom-checkboxes[type="checkbox"]:disabled:not(:checked) + label:before,
.cookies-custom-checkboxes[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}
.cookies-custom-checkboxes[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.cookies-custom-checkboxes[type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibility */
.cookies-custom-checkboxes[type="checkbox"]:checked:focus + label:before,
.cookies-custom-checkboxes[type="checkbox"]:not(:checked):focus + label:before {
    border: 1px solid #19acdf;
}

/* hover style just for information */
.cookies-custom-checkboxes label:hover:before {
    border: 2px solid #4778d9!important;
}
/* /checkboxes custom */

/* enter-phone-form-modal modal form @ VISA INFINITE LANDING PAGE */
.enter-phone-form-modal h4 {
    font-size: 28px;
    margin-top: 42px;
}
.enter-phone-form-modal p {
    font-size: 16px;
    margin-bottom: 35px;
}
.enter-phone-form-modal .modal-body {
    padding: 15px 40px 60px;
}
.enter-phone-form-modal .modal-header {
    border-bottom: none;
}
.enter-phone-form-modal .close {
    font-size: 45px;
    color: #535353;
    opacity: 1;
    font-weight: normal;
}
.enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after, .enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    color: #666;
}
.enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label, .enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label {
    font-size: 16px; 
}
.enter-phone-form-modal .checkbox .link {
    color: #535353;
    text-decoration: underline;
}
.enter-phone-form-modal .btn-primary {
    margin-top: 40px;
}
/* style changes for custom select  */
.enter-phone-form-modal .select-outer-primary .bootstrap-select > .btn,
.enter-phone-form-modal .subscribe .field {
    background-color: #fff;
    -webkit-box-shadow:none;
    box-shadow :none;
}
.enter-phone-form-modal .subscribe .field {
    border-radius: 0 10px 10px 0;
    border-width: 0 1px 0 0;
}
.enter-phone-form-modal .select-outer-primary .btn-default:active:hover, 
.enter-phone-form-modal .select-outer-primary .btn-default.active:hover, 
.enter-phone-form-modal .select-outer-primary .open>.dropdown-toggle.btn-default:hover {
    background-color: #fff;
    -webkit-box-shadow:none;
    box-shadow :none;
}
.enter-phone-form-modal .checkbox {
    margin-top: 20px;
}
.enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before, 
.enter-phone-form-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label:before {
    border: 1px solid #6a6a6a;
}

/* MODAL SMS SENT */
/* MODAL */
.sms-sent-modal {
    text-align: center; 
    color:#666;
}
.sms-sent-modal .modal-content {
    border-radius: 20px;
}
.sms-sent-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}
.sms-sent-modal h4 {
    font-weight: bold;
    font-size: 36px;
}
.sms-sent-modal .modal-body p {
    font-size: 24px;
}
.sms-sent-modal .share-div p {
    font-size: 18px; 
    color:#535353;
    font-weight: 500;
    margin-bottom: 20px;
}
.sms-sent-modal .fa {
    color:#078ed2;
    border-radius: 50%;
    height: 55px;
    line-height: 53px;
    width: 55px;
    border: 2px solid #078ed2;
    font-size: 27px;
    margin: 0 10px;
}
.sms-sent-modal .fa:hover, .sms-sent-modal .fa:active {
    opacity: .5;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}
.sms-sent-modal .modal-dialog img {
    position: static;
}
.sms-sent-modal .close {
    opacity:1;
    color:#555;
    line-height: 21px;
    font-size: 35px;
}
.sms-sent-modal .texts {
    padding: 30px 30px 0;
}
.sms-sent-modal .modal-footer {
    text-align: center;
    border-top:none;
    padding-bottom: 40px;
}
/* */
/* END VISA INFINITE PAGE pREMIUM ACCOUNT */
/* */

/* */
/* Mega top navigation */
/* */
.header-mega {
    height: auto;
    position: relative;
    padding-bottom: 10px;
    padding-top: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.header-mega.headerr-fixed {
    position: fixed;

    -webkit-animation-name: animate_header;
    -o-animation-name: animate_header;
    animation-name: animate_header;
    -webkit-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1
}
/*
.header-mega.headerr-fixed .nav > ul > li > a {
    color: #20c19f;
    padding-bottom: 24px; 
    text-shadow: none;
    }
*/
.header-mega.header .logo {
    width:72px;
}
.header-mega .nav-primary {
    padding-left: 0;
    margin-top: 22px;
}
.header-mega .nav > ul > li > a, .header-mega .nav-lang > ul > li > a {
    text-shadow:none;
    color:#474747;
}
.header-mega .nav > ul > li.current > a {
    color: #20c19f;
}
.header-mega .nav > ul > li.current > a::after, .header-mega .nav > ul > li > a:after {
    opacity:0;
    top: auto;
    bottom: -15px;
    height: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-mega .nav > ul > li.current > a:hover::after, .header-mega .nav > ul > li > a:hover::after {
    top: auto;
    bottom: -15px;
    height: 5px;
    opacity:1;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-mega .nav-lang > ul > li .btn-signup, .header-mega .nav-outer > ul > li .btn-signup, .header-mega .nav-outer > ul > li .btn-signup:hover, .header-mega .nav-lang > ul > li .btn-signup:hover {
    color:#fff;
}

.header-mega .dropdown.dropdown-mega{
    position: static;
}
.header-mega .dropdown-menu.dropdown-menu-mega {
    top: 98%;
    right: 0;
    background-color: #f5f5f5;
    padding-top: 75px;
    padding-bottom: 70px;
    min-height: 340px;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.header-mega .nav-outer {
    position: static;
}
.header-mega .contacts {
    color: #474747;
    margin-top: 25px;
}
.header-mega .nav-lang{
    margin-top: 22px;
}
.mega-menu-title {
    font-size: 25px;
    margin-bottom: 13px;
    color:#535353;
    display: inline-block;
}
.mega-menu-p {
    font-size: 15px;
}

.mega-submenu {
    padding-left: 20px;
    padding-top: 0;
}
.mega-submenu-i {
    color:#bdb9b9;
    margin-right: 10px;
}
.header-mega .nav a i.fa-angle-down {
    transform: rotate(-90deg);
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
.header-mega .nav .open > a i.fa-angle-down, .header-mega .nav .open > a:hover i.fa-angle-down, .header-mega .nav .open > a:focus i.fa-angle-down {
    transform: rotate(0);
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
.mega-submenu a {
    font-size: 16px;
    align-items: center;
    color:#303030;
    display: inline-flex;
    margin-bottom: 20px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
.mega-submenu a .ico-font {
    font-size: 30px;
}
.mega-submenu a .ico-font-nfc, .mega-submenu a .ico-font-gift {
    font-size: 25px;
}

.mega-submenu a:hover, .mega-submenu a:hover i {
    color:#3ea8fa;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.nav-outer .dropdown-menu .mega-submenu li.current a,
.nav-outer .dropdown-menu .mega-submenu li.current a i {
    color:#3ea8fa;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.dropdown-menu-mega .container {
    display: flex;
    justify-content: flex-start;  
}
.header-mega-col {
    min-width: 200px;
    max-width: 345px;
    margin-left: 20px;

    width: 320px;
}
.header-mega-col:first-of-type {
    margin-left: 0;
    margin-right: 30px;
    width: 345px;
}
.mega-menu-display-mobile {
    display: none;
}
.header-mega .nav-lang>ul>li.btn-signup-outer:before {
    border-left: 1px solid #ccc;
    content: '';
    left: -15px;
    position: absolute;
    width: 0;
    height: 100%;
}
.header-mega .nav-lang>ul>li.btn-signup-outer {
    padding-right: 0;
    padding-left: 0;
}
.mega-submenu a div {
    display: flex;
    align-items: center;
} 

/* ------------------------------------------------------------ *\
        Cookies
\* ------------------------------------------------------------ */

/* .cookie .cookie-inner {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    float: unset;
    width: 100%;
} */

.cookie .btn-close {
    color: #fff;
    position: absolute;
    top: 17px;
    right: 17px;
}

.cookie p {
    margin-bottom: 0;
}

.cookie .cookie-options {
    font-size: 14px;
}
.form-inline .form-group.cookie-options-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-options-inner {
    margin-top: 10px;
    margin-bottom: 10px;

    max-width: 100%;
}
.cookie-options-inner .btn-ghost {
    /* min-width: 130px; */
    margin-left: 10px;
    transition: all .5s ease;
    color: #fff;
    background: #1fc6a3;
    border:0;
    line-height: 50px;
}
#cookies-settings-modal {
    font-size: 15px;
}
#cookies-settings-modal .custom-control-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    font-size: 18px;
}
.cookies-settings-modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie .color-blue:focus, .cookie .color-blue {
    color: #19acdf;
    font-weight: bold;

}
.cookie .color-green:focus, .cookie .color-green {
    color: #1fc6a3;
    font-weight: bold;

}
.cookie .checkbox {
    margin-right: 10px;
    white-space: nowrap;
    float: right;
}

.cookie .align-flex-centers {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    /* width:auto; */
    /* flex-direction: column-reverse; */
}
.cookie .checkbox+.checkbox {
    margin-top:10px;
}
.cookie label {
    max-width:200px;
    white-space: nowrap;
}

#cookies-settings-modal .body-expanded {
    display: block;
}
#cookies-settings-modal .modal-dialog {
    max-height: 600px;
}
#cookies-settings-modal .cookies-settings-btn {
    color:#535353;
    font-size: 17px;
    font-weight: bold;
    display: flex;
    width: 95%;
    justify-content: space-between;
    align-items: center;
}
.cookies-settings-modal-li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.cookies-settings-modal-li.body-expanded a i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

#cookies-settings-modal .modal-footer {
    border:none;
    padding-top: 0;
}
.cookies-settings-modal-body {
    padding-left: 35px;
}

/*========================================================*\
    COOKIES - table
\*========================================================*/

.cookies-table table th,
.cookies-table table td {
    padding: 5px 10px;
    border: 1px solid #ddd;
}

/* checkboxes custom */

/* Base for label styling */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked),
.cookies-custom-checkboxes[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label,
.cookies-custom-checkboxes[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 1.95em;
    cursor: pointer;
}
/* checkbox aspect */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before,
.cookies-custom-checkboxes[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 1.25em; height: 1.25em;
    border: 1px solid #fff;  /* ccc; */
    background: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after,
.cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    content: '\2713\0020';
    position: absolute;
    top: .15em; left: .22em;
    font-size: 1.3em;
    line-height: 0.8;
    color: #19acdf;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
.cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
.cookies-custom-checkboxes[type="checkbox"]:disabled:not(:checked) + label:before,
.cookies-custom-checkboxes[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}
.cookies-custom-checkboxes[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.cookies-custom-checkboxes[type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibility */
.cookies-custom-checkboxes[type="checkbox"]:checked:focus + label:before,
.cookies-custom-checkboxes[type="checkbox"]:not(:checked):focus + label:before {
    border: 1px solid #19acdf;
}

/* hover style just for information */
.cookies-custom-checkboxes label:hover:before {
    border: 2px solid #4778d9!important;
}
/* /checkboxes custom */

/* some fixes for labels with long texts */
.cookie .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before, .cookie .cookies-custom-checkboxes[type="checkbox"]:checked + label:before {
    top: 50%;
    transform: translateY(-50%);
}
.cookie .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after, .cookie .cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    top: 50%;
    transform: translateY(-50%);
}

/* some fixes for checkboxes @modal */
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before,
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label:before {
    border: 1px solid #1fc6a3;

    top: 50%;
    transform: translateY(-50%);
}
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after,
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    top: 50%;
    transform: translateY(-50%);
    color:#1fc6a3;
}
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label,
#cookies-settings-modal .cookies-custom-checkboxes[type="checkbox"]:checked + label {
    margin-bottom: 0;
}

#cookies-settings-modal .close {
    padding: 0;
    margin: -2px 0 0; 
}

#cookies-settings-modal .modal-header {
    flex-direction: row-reverse;
}
.settings .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:before,
.settings .cookies-custom-checkboxes[type="checkbox"]:checked + label:before,
.settings .cookies-custom-checkboxes[type="checkbox"]:not(:checked) + label:after,
.settings .cookies-custom-checkboxes[type="checkbox"]:checked + label:after {
    display: none;
}
.settings .cookies-custom-checkboxes[type=checkbox]:not(:checked)+label, .settings .cookies-custom-checkboxes[type=checkbox]:checked+label,
.cookie .settings  label{
    padding: 0;
}
.cookie .settings .checkbox {
    margin-right: 25px;
}
.cookie .settings .checkbox.mr-0 {
    margin: 0;
}

.cookie .settings .checkbox label, .cookie .settings .checkbox a, .settings .cookie .checkbox i {
    font-weight: 100;
    font-size: 14px;
}
.cookie .settings .checkbox a {
    color: #fff;
    position: relative;
}
.cookie .settings .checkbox a:after {
    content:'';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -5px;
    left: 0;
}
.settings .cookies-custom-checkboxes[type=checkbox]:checked+label i{
    color:#1fc6a3;
}
.settings .cookies-custom-checkboxes[type=checkbox]:not(:checked)+label i.fa-check-square-o{
    display: none;
}
.settings .cookies-custom-checkboxes[type=checkbox]:checked+label i.fa-square-o{
    display: none;
}
.settings .cookies-custom-checkboxes[type=checkbox]:not(:checked)+label i, .settings .cookies-custom-checkboxes[type="checkbox"]:disabled:checked+label i{
    color:#909392;
}
.settings .cookies-custom-checkboxes[type=checkbox]:disabled+label {
    color: #fff;
}
button.cookie-button {
    background: #078ed2;
    border: 0;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 13px;
    font-weight: bold;
    z-index:1000;
}
img.button-cookie-icon {
    max-width: 30px;
}
.cookie .float-right {
    float: right;
}
.collapse.dark {
    background: #343434;
}
.cookie .card.card-body {
    display: flex;
    max-height: 200px;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
.cookie .flex-column {
    display: flex;
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    margin: 0;
}
html {
    --scrollbarBG: transparent;
    --thumbBG: #c0c0c0;
}
.cookie .nav-link{
    color:#fff;
    padding: 25px 20px;
    font-size: 14px;
}
.cookie .nav-link.active, .cookie-description thead tr, .cookie-description tbody tr:nth-child(even){
    background: #4d4c4c;
}
.cookie .tab-pane {
    border-left: solid 1px rgb(77, 76, 76);
}
.cookie .tab-pane p {
    margin: 5px 5px 15px 15px;
    font-size: 12px;
}
.cookie-description tr th:first-child, .cookie-description tr td:first-child {
    padding-left: 15px;
    padding-right: 5px;
}
.cookie .card.card-body::-webkit-scrollbar {
    width: 5px;
}
.cookie .card.card-body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
.cookie .card.card-body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}
table.cookie-description {
    table-layout: fixed;
    font-size: 12px;
}

/* ------------------------------------------------------------ *\
    Section Pdfs 
\* ------------------------------------------------------------ */

.section-bgr {
    background-color: #f5f5f5
}

.download-pdf-holder {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    text-align: left;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}
.download-pdf-holder.justify-content-center {
    justify-content: center;
    padding: 0;
}
.download-pdf-holder.w-auto {
    width: auto;
}
.download-pdf-holder .ico-font {
    color: #666;
    align-self: center;
    display: inline-block
}

.download-pdf-holder .h5 {
    font-size: 18px;
    color: #666;
    margin: 0 10px;
    vertical-align: super;
    display: inline-block
}

.download-pdf-holder:hover,
.download-pdf-holder:hover .ico-font,
.download-pdf-holder:hover .h5 {
    color: #078ed2;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.download-pdf-holder .pdf-title {
    display: inline-flex;
    align-items: center
}

.traveler-download-pdf {
    margin-top: 50px
}

@media(max-width: 991px){
    .download-pdf-holder {
        margin-bottom: 15px;
    }

    .download-pdf-holder .h5 {
        font-size: 14px;
    }

    .traveler-download-pdf {
        margin-top: 0;
    }

    .header .header-actions {
        display: block;
    }
}

@media (min-width: 992px) {
    .row-flex .col-md-7,
    .row.equal .col-md-7 {
        width: 58%;
        max-width: 58%;
    }

    .row-flex .col-md-5,
    .row.equal .col-md-5 {
        max-width: 41%;
        width: 41%;
    }

    .row-flex .col-md-4,
    .row.equal .col-md-4 {
        max-width: 33%;
        width: 33%;
    }
}

@media (min-width: 1200px) {
    .row-flex .col-md-4,
    .row.equal .col-lg-4 {
        max-width: 33%;
        width: 33%;
    }
}

