/* Front */
html  {
    font-size: 18px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    overflow-x: hidden;
    /*background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #131535;*/
    background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #073D48;
}

img {
    max-width: 100%;
}

svg {
    display: block;
}

a,
button,
input,
textarea,
button,
select {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button {
    cursor: pointer;
    outline: 0;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    outline: 0;
}

a,
a:hover {
    text-decoration: none;
}

a {
    color: #794DDB;
}

a:hover {
    color: rgba(0,0,0,0.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.section-default {
    padding: 85px 0;
}

.container {
    padding: 0 30px;
}

@media (min-width: 1250px) {
    .container {
        max-width: 1224px;
    }
}

.modal {
    color: #5D5D5D;
}

.table {
    color: #fff;
}
/*--------------------------------------------------------------
  ##  Buttons
  --------------------------------------------------------------*/
.btn-wrapper {
    margin-top: 1.5rem;
    display: flex;
}

.btn-main-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 216px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 16px;
    margin-left: 1rem;
}

.btn-main-outline img {
    margin-right: 10px;
}


.btn-main-outline:hover {
    color: #FFFFFF;
    opacity: 0.6;
    transition: 0.3s;
}

.btn-main {
    min-width: 170px;
    padding: 20px;
    /*display: inline-block;*/
    text-align: center;
    text-transform: uppercase;
    background: #246BFD;
    box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    white-space: nowrap;

}

.btn-main:hover {
    color: #fff;
    background: linear-gradient(135deg, #873FDA 0%, #695EDC 100%);
}

.btn-main:focus {
    border: none;
    outline: none;
}

.btn-outline {
    border-color: #794DDB;
    color: #794DDB;
    background: #fff;
}

.btn-outline:hover {
    background: #794DDB;
    color: #fff;
}

.btn-secondary {
    border-color: #30E3D4;
    color: #fff;
    background: #30E3D4;
}

.btn-secondary:hover {
    background: #084A7F;
    color: #fff;
}

/* Back To Top */

.return-to-top {
    position: fixed;
    bottom: -30px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #246BFD;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s ease;
}

.return-to-top > i {
    position: relative;
    overflow: hidden;
    font-size: 12px;
    width: inherit;
    height: inherit;
    line-height: inherit;
    display: block;
    color: transparent;
    text-shadow: 0px 0px #fff, 0px 50px #fff;
    -webkit-transition: text-shadow .2s ease;
    -o-transition: text-shadow .2s ease;
    transition: text-shadow .2s ease;
    z-index: 1;
}

.return-to-top > i:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: solid 2px #fff;
    transform: rotate(135deg);
    border-top: 0;
    border-right: 0;
    top: 18px;
    left: 17px;
    position: absolute;
}

.return-to-top:hover {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
    text-shadow: 0px -50px #fff, 0px 0px #fff;
}

.return-to-top.back-top {
    bottom: 20px;
    opacity: 1;
}

/*--------------------------------------------------------------
  ##  List
  --------------------------------------------------------------*/
.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px;
}

.list li:before {
    content: "вЂў";
    position: absolute;
    left: 0;
    top: 0;
    color: #794DDB;
}

.list.list-features li {
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
}

.list.list-features li:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EAF4E 0%, #20DF78 100%);
}

@keyframes pixFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes pixFadeDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes pixFadeRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pixBounceIn {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.pixFade {
    -webkit-animation-name: pixFade;
    animation-name: pixFade;
}

.pixFadeUp {
    -webkit-animation-name: pixFadeUp;
    animation-name: pixFadeUp;
}

.pixFadeDown {
    -webkit-animation-name: pixFadeDown;
    animation-name: pixFadeDown;
}

.pixFadeLeft {
    -webkit-animation-name: pixFadeLeft;
    animation-name: pixFadeLeft;
}

.pixFadeRight {
    -webkit-animation-name: pixFadeRight;
    animation-name: pixFadeRight;
}

.pixZoomIn {
    -webkit-animation-name: pixZoomIn;
    animation-name: pixZoomIn;
}

.pixBounceIn {
    -webkit-animation-name: pixBounceIn;
    animation-name: pixBounceIn;
}

.zoomIn {
    -webkit-animation-name: zoomin;
    animation-name: zoomin;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
}

.page-loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-loader svg {
    display: none;
}

.blobs {
    -webkit-filter: url(app.css#goo);
    filter: url(app.css#goo);
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 70px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.blobs .blob-center {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    background: #246BFD;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-animation: blob-grow linear 3.4s infinite;
    animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 -10px 40px -5px #246BFD;
    box-shadow: 0 -10px 40px -5px #246BFD;
}

.blob {
    position: absolute;
    background: #246BFD;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-animation: blobs ease-out 3.4s infinite;
    animation: blobs ease-out 3.4s infinite;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    -ms-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
    opacity: 0;
}

.blob:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blob:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.blob:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.blob:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@-webkit-keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

@keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

/*--------------------------------------------------------------
  ##  Header
  --------------------------------------------------------------*/
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-header.header-light .site-main-menu li > a {
    color: #fff;
}

.site-header.pix-header-fixed.header-light .site-main-menu li > a {
    color: #fff;
}

.site-header .inverse-logo {
    display: none;
}

.site-header.header-light .sticky-logo,
.site-header.header-light .main-logo,
.site-header.pix-header-fixed.header-light .inverse-logo {
    display: none !important;
}

.site-header.header-light .inverse-logo,
.site-header.pix-header-fixed.header-light .sticky-logo {
    display: inline-block !important;
}

.site-logo {
    max-width: 200px;
}

.site-header .header-inner {
    position: relative;
}

.site-header .header-inner .site-logo a {
    display: block;
    max-width: 200px;
}

.site-header .header-inner .site-logo a img {
    width: 100%;
}

.site-header .header-inner .site-logo a .sticky-logo {
    display: none;
}

.site-header .header-inner .site-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.site-header .header-inner .site-nav .menu-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.site-header .site-mobile-logo {
    display: none;
}

.site-header .site-main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-header .site-main-menu li {
    margin: 0 23px;
    position: relative;
    padding: 15px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li:last-child {
    margin-right: 0;
}

.site-header .site-main-menu li > a {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: #fff;
}

.site-header .site-main-menu li > a:hover {
    text-decoration: underline;
}

.site-header .toggle-menu .bar {
    background: #fff;
}

.site-header .header-inner .site-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-sticky {
    display: none;
}

.pix-header-fixed {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(79, 35, 35, 0.08);
    box-shadow: 0px 10px 20px 0px rgba(79, 35, 35, 0.08);
    -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
    /*background: #0E1029;*/
    background: #073D48;
}

.pix-header-fixed .header-inner .site-logo .logo-sticky {
    display: block;
}

.pix-header-fixed .header-inner .site-logo .logo-main {
    display: none;
}

.pix-header-fixed .header-inner .site-nav .nav-right .nav-btn {
    background: transparent;
    color: #fa7070;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #fa7070;
}

.pix-header-fixed .header-inner .site-nav .nav-right .nav-btn:hover {
    background: #fa7070;
    color: #fff;
}

.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn,
.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn.style-two {
    border-color: #7052fb;
    color: #7052fb;
}

.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn:hover,
.pix-header-fixed .header-inner .site-nav.nav-two .nav-right .nav-btn.style-two:hover {
    background: #7052fb;
    color: #fff;
    border-color: #7052fb;
}

.pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a:hover, .pix-header-fixed .header-inner .site-nav.nav-two .site-main-menu li a.current_page {
    color: #7052fb;
}

.pix-header-fixed .site-main-menu li {
    padding: 15px 0;
}

.pix-header-fixed .site-main-menu li.menu-item-has-children:after {
    color: #333;
}

.pix-header-fixed .site-logo .main-logo {
    display: none;
}

.pix-header-fixed .site-logo .sticky-logo {
    display: block;
}

.pix-header-fixed.header-five .header-inner .site-nav .nav-right .nav-btn {
    color: #7052fb;
    border: 2px solid #7052fb;
}

.pix-header-fixed.header-five .header-inner .site-nav .nav-right .nav-btn:hover {
    background: #7052fb;
    border-color: #7052fb;
    color: #fff;
}

.mask-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3333;
    top: 0;
    left: 0;
}

.close-menu {
    display: none;
}

.hidden {
    display: none;
}

.contact-img-sm {
    display: none;
}

/*--------------------------------------------------------------
  ##  Banner
  --------------------------------------------------------------*/
.banner {
    position: relative;
    padding-top: 100px;
    /*background: url("/web/20220314073329im_/assets/images/banner-bg.svg") top/cover no-repeat;*/
}

.banner .banner-title {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 120%;
    color: #FFFFFF;
}

.banner .banner-title-sm {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 120%;
    color: #FFFFFF;
}

.banner .description {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.7;
}

.decor {
    width: 370px;
    height: 370px;
    background: linear-gradient(140.73deg, #873FDA 16.19%, #695EDC 85.01%);
    mix-blend-mode: screen;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 30%;
}

.decor-middle {
    width: 500px;
    height: 500px;
}

.decor-bottom {
    width: 626px;
    height: 626px;
}

.banner-bottom {
    /*background: #0E1029;*/
    background: #073D48;
    position: relative;
}

.banner-bottom .btn-wrapper {
    margin-top: 0;
}

/*--------------------------------------------------------------
  ##  Section Title
  --------------------------------------------------------------*/
.section-title {
    margin-bottom: 43px;
}

h2.title {
    font-style: normal;
    font-weight: bold;
    font-size: 42px;
    line-height: 140%;
    color: #FFFFFF;
}

.card.features-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.feature {
    display: flex;
}

.feature:not(:last-child) {
    margin-right: 30px;
}

.feature-icon {
    margin-right: 24px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(121, 77, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    color: #084A7F;
    font-weight: 900;
    font-size: 24px;
}

.feature-text {
    color: #233333;
}

.terms-privacy {
    padding-bottom: 50px;
}

.terms-privacy p {
    opacity: 0.7;
    font-size: 16px;
}

.tooltip-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #EDEFF5;
    line-height: 17px;
    font-size: 10px;
    color: #794DDB;
    text-align: center;
    vertical-align: 6px;
}

.tooltip-icon:before {
    content: "?";
}

.tooltip-inner {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 16px;
    color: #999999;
}

.bs-tooltip-top .arrow::before {
    border-top-color: #fff;
}

.tooltip.show {
    opacity: 1;
}

.price-block-head {
    display: inline-block;
    padding: 15px 20px;
    background: #F2F5FA;
    border-radius: 58px;
    justify-content: center;
    margin-bottom: 20px;
}

.price-block-head-item {
    display: inline-block;
    font-size: 18px;
    color: #999999;
    margin-left: 30px;
}

.price-block-head-item:before {
    content: "";
    display: inline-block;
    font-size: 18px;
    color: #999999;
    width: 17px;
    height: 23px;
    margin-right: 20px;
    vertical-align: middle;
    /*background: url("/web/20220314073329im_/assets/images/icon-light.svg") center/contain no-repeat;*/
}

.price-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
}

.price-label {

}

.price-title {
    font-size: 2rem;
    font-weight: 700;
    color: #233333;
}

.price-value {
    color: #794DDB;
    font-size: 2.5rem;
    font-weight: 700;
}

.price-text {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}
/*--------------------------------------------------------------
  ##  Faq's
  --------------------------------------------------------------*/

.section-faqs:before {
    content: "";
    border-radius: 0 0 100% 100%;
    display: block;
    width: 200%;
    height: 75%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(300deg, #2338F3 -0.37%, #5BC2FF 91.56%);
}

.faq {
    position: relative;
}

.option-item.card {
    display: flex;
    flex-grow: 1;
    height: 100%;
    border: 0;
    padding: 71px 45px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 48px;
}

.accordion-card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .1);
    padding: 14px 32px 14px 0;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.accordion-card:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: 0;
    z-index: 0;
    /*background: linear-gradient(90deg, rgba(14,16,41,1) 50%, rgba(255,255,255,0) 100%);*/
    background: linear-gradient(90deg, rgba(7, 61, 72, 1) 50%, rgba(255,255,255,0) 100%);
}

.accordion-card .btn {
    text-align: left;
    width: 100%;
    padding: 0;
    text-decoration: none;
}

.card + .card {
    margin-top: 20px;
}

.faq .card-header {
    border: 0;
    border-radius: 0;
    background: none;
    padding: 0;
    position: relative;
    z-index: 10;
}

.faq .card-header h5 {
    margin-bottom: 0;
}

.accordion-card .btn-link:before,
.accordion-card .btn-link:after {
    content: '';
    width: 19px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    right: 0;
}

.accordion-card .btn-link:before {

    transform: translateY(-50%);
}

.accordion-card .btn-link:after {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
}

.accordion-card .collapsed.btn-link:after {
    opacity: 1;
}

.collapse {
    position: relative;
    z-index: 10;
}

.faq .card h5 {
    position: relative;
    margin: 0;
}

.faq .card .highlight {
    color: #794DDB;
}

.card-body .font-small {
    text-align: left;
}

.faq .card-body {
    padding: 0.5rem 0 0;
}

.faq .card-body p {
    margin-bottom: 0;
}

.faq .card .btn-link {
    padding: 0;
    font-size: 24px;
    color: #232222;
    text-decoration: none;
    white-space: normal;
    text-align: left;
    width: 100%;
    position: relative;
    transition: all 0.3s;
    font-weight: 700;
}

.contact-img {
    transform: translateX(-150px);
}

.contact-img-mob {
    display: none;
}

.contact-block:before,
.contact-block:after {
    content: "";
    width: 150px;
    height: 220px;
    position: absolute;
    top: -50px;
    left: -100px;
    /*background: url("/web/20220314073329im_/assets/images/bg-icon-light.svg") center/contain no-repeat;*/
    transform: rotate(-30deg);
    z-index: -1;
}

.contact-block:after {
    background-image: url("../images/bg-icon-shield.svg");
    transform: rotate(30deg);
    bottom: -100px;
    right: -100px;
    top: auto;
    left: auto;
}

.contact-page .hero-row {
    padding: 86px 85px 0;
}

/*--------------------------------------------------------------
  ##  Footer
  --------------------------------------------------------------*/

.footer {
    /*background: url("/web/20220314073329im_/assets/images/banner-bg.svg") top/cover no-repeat;*/
}

.contact-page .footer {
    /*background: #0E1029;*/
    background: #073D48;
}

.footer-content {
    padding: 65px 0;
}

.footer p {
    font-size: 14px;
}

.footer-link {
    font-size: 14px;
    color: #999;
    display: block;
    padding: 12px 0;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    /*text-align: center;*/
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 20px;
}

.footer-link:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-logo {
    display: block;
    margin: -40px 0 25px -15px;
}

.social-link {
    display: inline-flex;
    background: rgba(121, 77, 219, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 18px;
}

.copyright {
    color: #fff;
    padding: 35px 0;
    text-align: center;
    font-size: 14px;
}

.cookie-bar {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #8343db;
    padding: 10px;
    z-index: 100;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
}

.cookie-bar.show {
    display: flex;
}

.cookie-bar p {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.cookie-btn {
    color: #fff;
    padding: 5px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    transition: all 0.4s;
    margin-left: 15px;
    white-space: nowrap;
    cursor: pointer;
}

a.cookie-btn:hover {
    background: #fff;
    color: #8343db !important;
}

.cookie-link {
    margin-left: 15px;
    display: inline-block;
    color: #fff;
}

.cookie-link:hover {
    text-decoration: underline;
}

.uninstall-image {
    border: 10px solid #8442da;
    border-radius: 42px;
    margin-top: 25px;
}

.banner.inner-page {
    padding-bottom: 90px;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /*background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #131535;*/
    background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #073D48;
}

.contact-page .container {
    max-width: 1584px;
}

.banner.inner-page .contact-block {
    background: transparent;
    padding: 20px 0;
}

.inner-page .footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    font-size: 14px;
}

.image-404 {
    max-width: 550px;
    display: inline-block;
}

.removed-page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 700px;
    height: 80vh;
}

.removed-page-logo {
    margin-bottom: 30px;
}

.removed-image {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.page-banner {
    padding: 150px 0 50px;
}

h2.contact-page-title {
    color: #fff;
    font-size: 64px;
}

.contact-page-taxt {
    opacity: 0.7;
    color: #fff;
    font-size: 16px;
    max-width: 576px;
}

.form-control {
    padding: 17px 24px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    border-radius: 8px;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
}

.form-control::placeholder {
    color: #fff;
    font-weight: 500;
}

.form-control:focus {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #246BFD;
    box-shadow: 0 0 0 0.2rem rgba(25, 24, 51, .25);
}

.contact-block button {
    border: 0;
    width: 336px;
    height: 68px;
    max-width: 100%;
}

.font-small {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.7;
}

.font-strong {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
}

.hiw {
    /*background: linear-gradient(-105.22deg, rgba(255, 255, 255, 0.1) 18.53%, rgba(255, 255, 255, 0) 86.38%), #131535;*/
    background: linear-gradient(-105.22deg, rgba(255, 255, 255, 0.1) 18.53%, rgba(255, 255, 255, 0) 86.38%), #073D48;
    padding-bottom: 0;
    padding-top: 0;
}

.font-normal {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.7;
}

#features {
    /*background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #131535;*/
    background: linear-gradient(123.95deg, rgba(255, 255, 255, 0.1) 4.88%, rgba(255, 255, 255, 0) 89.67%), #073D48;
}

#features .btn-main{
    margin-top: 28px;
}

.section-review {
    padding: 59px 0;
}

.bg-to-right {
    /*background: linear-gradient(264.77deg, rgba(255, 255, 255, 0.1) 15.36%, rgba(255, 255, 255, 0) 88.98%), #131535;*/
    background: linear-gradient(264.77deg, rgba(255, 255, 255, 0.1) 15.36%, rgba(255, 255, 255, 0) 88.98%), #073D48;
}

.font-medium {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: #FFFFFF;
    opacity: 0.7;
}
.opacity1 {
    opacity: 1;
}

#option {
    /*background: #0E1029;*/
    background: #073D48;
}

#option .row{
    padding-right: 10%;
}

.option-title {
    font-weight: bold;
    font-size: 42px;
    line-height: 49px;
    text-align: center;
    color: #FFFFFF;
}

.option-label {
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 24px;
}

.option-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.option-text {
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
}

.bg-light-dark {
    /*background: linear-gradient(54.78deg, rgba(255, 255, 255, 0.1) 18.53%, rgba(255, 255, 255, 0) 86.38%), #131535;*/
    background: linear-gradient(54.78deg, rgba(255, 255, 255, 0.1) 18.53%, rgba(255, 255, 255, 0) 86.38%), #073D48;
}

#faq {
    /*background: #0E1029;*/
    background: #073D48;
    padding: 0;
}

#faq .section-title {
    padding-top: 85px;
}

#accordion {
    margin-bottom: 85px;
}

.btn-link {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: #FFFFFF;
}

.btn-link:hover {
    color: #ffffff;
    opacity: 0.7;
    transition: 0.3s;
}

.hero-row {
    position: relative;
    padding: 85px 85px 100px;
    /*padding: 85px 85px 0;*/
    margin: 0 -85px;
}

.hero-row:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url("/web/20220314073329im_/assets/images/hero-bg.svg");*/
    background-repeat: no-repeat;
    background-size: 100%;
}

.sm-show {
    display: none;
}

.popupholder {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.popupholder.active {
    display: flex;
}

.popup-overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.popup-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
}

.popup-body video{
    max-width: 100%;
}

.popup-close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: -23px;
    top: -23px;
    cursor: pointer;
}

.popup-close:before,
.popup-close:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.popup-close:before{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    /*-webkit-box-shadow: 0 0 0 100px #131535 inset !important;*/
    -webkit-box-shadow: 0 0 0 100px #073D48 inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
}

@media screen and (min-width: 1400px) {
    .container {
        max-width: 1640px;
    }
}
