:root {
--color-black: #000;
--color-white: #fff;
--color-green: #cdfc81;
--color-gray: #f9f9f9;
--color-gray-2: #d9d9d9;
--color-yellow: #ffd25e;
--color-violet: #2a1c53;
--color-violet-light: #765cf6;
--color-blue: #0098ff;
--arrow-left: url("data:image/svg+xml;charset=utf8,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.5' y='1.5' width='61' height='61' rx='6.5' stroke='%232A1C53' stroke-width='3'/%3E%3Cpath d='M36 43L24.6863 31.6863L36 20.3726' stroke='%232A1C53' stroke-width='4'/%3E%3C/svg%3E");
--arrow-right: url("data:image/svg+xml;charset=utf8,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.5' y='1.5' width='61' height='61' rx='6.5' stroke='%232A1C53' stroke-width='3'/%3E%3Cpath d='M28 43L39.3137 31.6863L28 20.3726' stroke='%232A1C53' stroke-width='4'/%3E%3C/svg%3E");
--arrow-right-hover: url("data:image/svg+xml;charset=utf8,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='64' height='64' rx='8' fill='%232A1C53'/%3E%3Cpath d='M28 43L39.3137 31.6863L28 20.3726' stroke='%23765CF6' stroke-width='4'/%3E%3C/svg%3E");
--arrow-left-hover: url("data:image/svg+xml;charset=utf8,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='64' height='64' rx='8' fill='%232A1C53'/%3E%3Cpath d='M36 43L24.6863 31.6863L36 20.3726' stroke='%23765CF6' stroke-width='4'/%3E%3C/svg%3E");
--arrow-down: url("data:image/svg+xml;charset=utf8,%3Csvg  viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
--arrow-down-green: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2368BA00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
--arrow-down-white: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
::-moz-selection {
background-color: #cdfc81;
}
::selection {
background-color: #cdfc81;
}
html { scroll-behavior: smooth;
}
body {
font-family: "Gilroy", sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.1em;
letter-spacing: 0.01em;
position: relative;
overflow-x: hidden;
color: var(--color-black);
}
body section {
overflow: hidden;
}
.container {
max-width: 1160px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-bottom: 0;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
p span,
li span {
font-weight: 700;
}
p {
margin-bottom: 20px;
}
ul,
ol,
li {
list-style: none;
margin: 0;
padding: 0;
}
a,
a:hover {
text-decoration: none;
color: var(--color-black);
}
img {
max-width: 100%;
}
.container {
max-width: 1200px;
}
.button {
display: inline-block;
padding: 18px 32px;
text-transform: uppercase;
font-weight: 700;
font-size: 18px;
line-height: 28px;
color: var(--color-white);
background-color: var(--color-violet);
border-radius: 8px;
border: none;
}
.button:hover {
color: var(--color-violet-light);
}
.btnScale:hover {
animation: button-hover-scale 3s;
}
@keyframes button-hover-scale {
0% {
transform: scale(1);
}
100% {
transform: scale(1.1);
}
}
.btnUp {
transition: 0.3s;
}
.btnUp:hover {
transform: translateY(-5px) !important;
}
.btnUp:focus {
transform: translateY(0);
}
.arrow-left {
display: block;
width: 64px;
height: 64px;
background: var(--arrow-left) no-repeat center center / contain;
}
.arrow-right {
display: block;
width: 64px;
height: 64px;
background: var(--arrow-right) no-repeat center center / contain;
}
.agreeForm {
display: none !important;
}   .header {
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 0px 0px 32px 32px;
padding: 12px;
position: sticky;
position: -webkit-sticky;
top: 0;
left: 0;
z-index: 999;
width: 100%;
}
.header__wrap {
}
.header__wrap_item.header-menu {
margin-right: auto;
margin-left: 58px;
}
.header-menu.blogHeader-menu {
display: none;
}
.header-menu.blogHeader-menu .menu > li > a {
display: block;
}
.header-menu.blogHeader-menu .blogMain__form {
text-align: center;
margin-left: 0;
margin-bottom: 30px;
}
.header-logo-btn {
display: block;
}
.header-menu-nav .menu {
display: flex;
position: relative;
}
.header-menu-nav .menu > li.loginMenuNone {
display: none;
}
.header-menu-nav .menu > li > a {
display: flex;
align-items: center;
}
.header-menu-nav .menu > li > a.header-inside-login {
background: none;
}
.header-menu-nav .menu > li:not(:last-child) {
margin-right: 38px;
}
.header-menu-nav .menu > li > a {
font-weight: 700;
font-size: 16px;
line-height: 28px; margin: 6px 0;
cursor: pointer;
}
.header-menu-nav .menu > li:hover > a {
color: var(--color-violet-light);
}
.header-menu-nav .menu > li:hover .sub-menu {
display: flex;
opacity: 1;
}
.header-menu-nav .menu li .sub-menu {
display: none;
opacity: 0;
position: absolute;
top: 60px;
z-index: 9;
padding: 16px 20px;
flex-direction: column;
flex-wrap: wrap;
align-items: start;
padding: 24px;
border-radius: 16px;
background: #fff;
box-shadow: 0px 12px 28px 0px rgba(118, 115, 192, 0.1);
white-space: nowrap;
}
.header-menu-nav .menu li .sub-menu li {
margin: 8px 0;
}
.header-menu-nav .menu li .sub-menu li a {
font-size: 14px;
font-weight: 700;
line-height: 23px;
}
.header-menu-nav .menu li .sub-menu li a:hover {
color: var(--color-violet-light);
}
.header-menu-nav .menu > li.menu-item-has-children > a::after {
content: "";
margin-left: 11px;
background-image: var(--arrow-down);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
width: 8px;
height: 4px;
display: inline-block;
transition: 0.4s;
}
li.menu-item-has-children {
position: relative;
}
li.menu-item-has-children:after {
content: "";
display: block;
position: absolute;
bottom: -100%;
left: 0px;
width: 100%;
height: 100%;
}
.header-inside {
display: flex;
align-items: center;
}
.header-inside a {
font-weight: 700;
font-size: 16px;
line-height: 28px;
display: block;
}
.header-inside-login {
margin-right: 20px;
}
.header-inside-login:hover {
color: var(--color-violet-light);
}
.header-inside-signup {
font-weight: 700;
font-size: 16px;
line-height: 28px;
padding: 6px 20px;
background-color: var(--color-violet);
color: var(--color-white);
border-radius: 8px;
margin-right: 20px;
}
.header-inside-signup span {
display: inline-block;
width: 18px;
height: 18px;
margin-right: 6px;
}
.header-inside-signup:hover {
color: var(--color-violet-light);
}
.header-inside-signup:hover svg path {
stroke: var(--color-violet-light);
}  .header__wrap_item.header-menu .wpml-ls-statics-shortcode_actions {
display: none;
opacity: 0;
visibility: hidden;
max-width: 300px;
width: 100%;
margin: 0 auto;
}
.header__wrap_item.header-menu .wpml-ls-legacy-dropdown .wpml-ls-item {
display: flex;
}
.header__wrap_item.header-menu .wpml-ls-legacy-dropdown a {
border: none;
background: none;
padding: 0;
font-size: 14px;
font-weight: 700;
line-height: 23px;
position: relative;
width: 46px;
height: 30px;
display: flex;
align-items: center;
color: #000;
}
.header__wrap_item.header-menu .wpml-ls-legacy-dropdown a span {
margin-left: 30px;
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
a.wpml-ls-item-toggle:after {
display: none;
}
.header__wrap_item.header-menu .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
visibility: visible;
position: static;
border: none;
display: flex;
}
.header__wrap_item.header-menu .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li {
margin-left: 16px;
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
.wpml-ls-sub-menu
a:hover {
color: #765cf6;
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
.wpml-ls-item
> a::before {
content: "";
position: absolute;
top: 2px;
left: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
display: block;
width: 24px;
height: 24px;
border-radius: 100%;
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
.wpml-ls-item-en
> a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-eng.svg);
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
.wpml-ls-item-pt-br
> a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-prt.svg);
}
.header__wrap_item.header-menu
.wpml-ls-legacy-dropdown
.wpml-ls-item-es
> a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-esp.svg);
} .header-inside .wpml-ls-statics-shortcode_actions {
width: auto;
}
.header-inside .wpml-ls-statics-shortcode_actions a {
padding: 0;
border: none;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item {
width: 68px;
position: relative;
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-sub-menu
.wpml-ls-item:hover
> a
span {
color: #765cf6 !important;
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-item
.header-inside
.wpml-ls-statics-shortcode_actions
ul:not(.wpml-ls-sub-menu)
> .wpml-ls-item:hover::after {
display: block;
}
.header-inside
.wpml-ls-statics-shortcode_actions
ul:not(.wpml-ls-sub-menu)
> .wpml-ls-item::after {
content: "";
display: none;
width: 85px;
height: 30px;
background: transparent;
position: absolute;
bottom: -27px;
left: -17px;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item a {
display: flex;
align-items: center;
position: relative;
padding-left: 32px;
background: transparent !important;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item:hover a,
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item a:hover {
background: none;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item > a::after {
border: none;
position: static;
width: 10px;
height: 6px;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/lang-down.svg) no-repeat center center /
contain;
margin-left: 8px;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item > a::before {
content: "";
position: absolute;
top: 2px;
left: 0;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
display: block;
width: 24px;
height: 24px;
border-radius: 100%;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item-en > a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-eng.svg);
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-item-pt-br
> a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-prt.svg);
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item-es > a::before {
background-image: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/mon-esp.svg);
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-item
a
.wpml-ls-native {
font-size: 16px;
font-weight: 700;
line-height: 28px;
color: #000;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu {
border: none;
padding: 24px;
background: #fff;
width: 98px;
border-radius: 16px;
left: -22px;
top: 54px;
box-shadow: 0px 12px 28px 0px #7673c01a;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu::after {
content: "";
display: block;
width: 100%;
height: 30px;
position: absolute;
top: -30px;
left: 0;
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-sub-menu
.wpml-ls-item:hover
> a {
color: #765cf6;
}
.header-inside
.wpml-ls-statics-shortcode_actions
.wpml-ls-sub-menu
li:first-child {
margin-bottom: 8px;
}
.header-inside .wpml-ls-statics-shortcode_actions {
} .header__burger {
display: none;
margin-left: 15px;
}
.header__burger_btn {
background-color: transparent;
border: none;
cursor: pointer;
display: flex;
align-items: center;
}
.line {
fill: none;
stroke: var(--color-black);
stroke-width: 6;
transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
stroke-dasharray: 60 207;
stroke-width: 6;
}
.line2 {
stroke-dasharray: 60 60;
stroke-width: 6;
}
.line3 {
stroke-dasharray: 60 207;
stroke-width: 6;
}
.opened .line1 {
stroke-dasharray: 90 207;
stroke-dashoffset: -134;
stroke-width: 6;
}
.opened .line2 {
stroke-dasharray: 1 60;
stroke-dashoffset: -30;
stroke-width: 6;
}
.opened .line3 {
stroke-dasharray: 90 207;
stroke-dashoffset: -134;
stroke-width: 6;
}
.menuNone {
cursor: pointer;
}
.menuNone > a {
pointer-events: none;
}  .homeMain {
padding: 0 0 185px;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/home_bg_image.svg) no-repeat right / cover;
}
.homeMain__info {
margin-top: 150px;
max-width: 440px;
}
.homeMain_info_title {
font-size: 56px;
line-height: 67px;
position: relative;
margin-bottom: 12px;
}
.homeMain_info_title-bg {
position: absolute;
top: -10px;
left: -20px;
display: none;
width: 276px;
height: 80px;
border: 3px solid var(--color-green);
border-radius: 100px;
z-index: -1;
}
.homeMain__info_desc {
font-size: 16px;
line-height: 28px;
margin-bottom: 30px;
max-width: 385px;
}
.homeMain__info_btn {
}
.homeMain__wrap {
display: flex;
margin-top: 150px;
}
.homeMain__wrap_list {
margin: 0 10px;
}
.homeMain__wrap_list:nth-child(2) {
margin-top: -110px;
}
.homeMain__wrap_list-item {
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: relative;
z-index: 1;
}
.homeMain__wrap_list-item svg {
width: 80px;
height: 80px;
}
.homeMain__wrap_list-item::before {
content: "";
border-radius: 16px;
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: linear-gradient(
180deg,
#765cf6 0%,
rgba(118, 92, 246, 0.8) 100%
);
box-shadow: 0px 8.9px 20.7667px rgba(118, 115, 192, 0.1);
backdrop-filter: blur(6px);
z-index: 0;
}
.homeMain__wrap_list-item::after {
content: "";
width: 100%;
height: 100%;
position: absolute;
background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 200 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.5' y='1.5' width='197' height='197' rx='14.5' stroke='%23CDFC81' stroke-width='3'/%3E%3C/svg%3E")
no-repeat center center / contain;
display: none;
z-index: -1;
}
@keyframes listBorder {
from {
bottom: 0px;
right: 0px;
}
to {
bottom: -10px;
right: -10px;
}
}
.homeMain__wrap_list-item:hover::after {
display: block;
animation: listBorder 0.4s linear forwards;
}
.homeMain__wrap_list-item:hover span {
color: var(--color-green);
}
.homeMain__wrap_list-item:hover svg .homeMain__icon_hover {
fill: #fff;
opacity: 0.4;
}
.homeMain__wrap_list-item:nth-child(1) {
margin-bottom: 20px;
}
.homeMain__wrap_list-item svg {
z-index: 2;
}
.homeMain__wrap_list-item span {
text-align: center;
display: block;
color: var(--color-white);
font-weight: 700;
font-size: 16px;
line-height: 28px;
margin: 20px auto 0;
z-index: 2;
max-width: 150px;
}  .homeTraffic {
background-color: var(--color-violet);
border-radius: 32px;
margin: 0 20px;
padding: 68px 0 80px;
text-align: center;
}
.homeTraffic__wrap {
text-align: center;
max-width: 1100px;
margin: 0 auto;
}
.homeTraffic__wrap_title {
color: var(--color-green);
font-size: 48px;
line-height: 60px;
}
.homeTraffic__wrap_desc {
color: var(--color-white);
font-size: 22px;
line-height: 34px;
margin: 20px 0 44px;
}
.homeTraffic__wrap_link {
background-color: var(--color-white);
color: var(--color-violet);
}  .multiHome {
padding-top: 156px;
}
.multiHome__title {
text-align: center;
max-width: 983px;
margin: 0 auto 65px;
font-size: 48px;
line-height: 60px;
}
.multiHome__title span {
font-weight: 700;
}
.multiHome__left {
}
.multiHome__left svg {
width: 100%;
}
.multiHome__right {
margin-left: 50px;
padding: 60px 10px 83px 40px;
position: relative;
}
.multiHome__right_bg {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(1, 0, 0, -1, 0, 0);
z-index: -1;
}
.multiHome__right_wrap {
max-width: 432px;
}
.multiHome_right_wrap-title {
font-size: 32px;
line-height: 44px;
margin-bottom: 50px;
}
.multiHome_right_wrap-title span {
font-weight: 700;
}
.multiHome_right_wrap-colum {
}
.mrwc__item {
display: flex;
align-items: center;
}
.mrwc__item:first-child {
margin-bottom: 40px;
}
.mrwc__item_icon {
display: inline-block;
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 16px;
max-width: 100px;
width: 100%;
height: 100px;
margin-right: 30px;
position: relative;
}
.mrwc__item_icon::after {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
width: 60px;
height: 60px;
}
.icon-plus::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1611_3153)'%3E%3Cpath d='M61.2462 25.4472L41.7203 17.6369C41.4876 17.5444 41.2284 17.5444 40.9957 17.6369L21.4698 25.4472C21.2887 25.5198 21.1333 25.6449 21.0239 25.8065C20.9145 25.9681 20.8559 26.1587 20.8558 26.3539V49.785C20.8559 49.9801 20.9145 50.1708 21.0239 50.3324C21.1333 50.494 21.2887 50.6191 21.4698 50.6917L40.9957 58.502C41.2283 58.5948 41.4877 58.5948 41.7203 58.502L61.2462 50.6917C61.4274 50.6191 61.5827 50.494 61.6921 50.3324C61.8016 50.1708 61.8601 49.9801 61.8602 49.785V26.3539C61.8601 26.1587 61.8015 25.9681 61.6921 25.8065C61.5827 25.6449 61.4274 25.5198 61.2462 25.4472ZM56.3647 29.2132L42.3343 34.8253V52.7139C42.3343 52.9728 42.2315 53.2211 42.0484 53.4042C41.8653 53.5873 41.6169 53.6902 41.358 53.6902C41.0991 53.6902 40.8508 53.5873 40.6677 53.4042C40.4846 53.2211 40.3817 52.9728 40.3817 52.7139V34.8253L26.3513 29.2132C26.2321 29.1657 26.1235 29.0952 26.0316 29.0057C25.9397 28.9162 25.8663 28.8094 25.8157 28.6915C25.7651 28.5737 25.7382 28.447 25.7365 28.3187C25.7349 28.1904 25.7586 28.063 25.8062 27.9439C25.8538 27.8248 25.9244 27.7162 26.014 27.6244C26.1035 27.5325 26.2104 27.4593 26.3283 27.4087C26.4462 27.3582 26.5729 27.3314 26.7012 27.3299C26.8295 27.3283 26.9568 27.3521 27.0759 27.3998L41.358 33.1127L55.6401 27.3998C55.7592 27.3521 55.8866 27.3283 56.0148 27.3299C56.1431 27.3314 56.2698 27.3582 56.3878 27.4087C56.5057 27.4593 56.6125 27.5325 56.7021 27.6244C56.7917 27.7162 56.8623 27.8248 56.9099 27.9439C56.9575 28.063 56.9811 28.1904 56.9795 28.3187C56.9779 28.447 56.951 28.5737 56.9003 28.6915C56.8497 28.8094 56.7763 28.9162 56.6844 29.0057C56.5925 29.0952 56.4839 29.1657 56.3647 29.2132Z' fill='%23765CF6' fill-opacity='0.8'/%3E%3Cpath d='M26.7887 30.5183L30.0498 31.7607C30.2816 31.8498 30.4686 32.0271 30.5698 32.2539C30.671 32.4806 30.6782 32.7382 30.5897 32.9702C30.5012 33.2022 30.3243 33.3897 30.0978 33.4914C29.8713 33.5932 29.6137 33.601 29.3815 33.513L26.1204 32.2707C25.8886 32.1816 25.7016 32.0043 25.6004 31.7775C25.4992 31.5508 25.4921 31.2931 25.5805 31.0611C25.669 30.8291 25.8459 30.6417 26.0724 30.5399C26.2989 30.4382 26.5565 30.4304 26.7887 30.5183Z' fill='%232A1C53'/%3E%3Cpath d='M33.3091 33.0031L36.5702 34.245C36.6853 34.2887 36.7906 34.3547 36.8802 34.4392C36.9698 34.5237 37.0418 34.6249 37.0922 34.7372C37.1427 34.8495 37.1705 34.9707 37.1741 35.0937C37.1777 35.2168 37.157 35.3394 37.1132 35.4544C37.0695 35.5695 37.0035 35.6748 36.919 35.7644C36.8345 35.8539 36.7332 35.9259 36.6209 35.9764C36.5086 36.0268 36.3875 36.0546 36.2644 36.0582C36.1414 36.0618 36.0188 36.0411 35.9037 35.9973L32.6426 34.7554C32.5274 34.7118 32.4218 34.6459 32.332 34.5614C32.2422 34.477 32.17 34.3757 32.1194 34.2633C32.0688 34.1509 32.0409 34.0296 32.0372 33.9064C32.0336 33.7832 32.0543 33.6605 32.0981 33.5453C32.1419 33.4301 32.208 33.3247 32.2926 33.2351C32.3772 33.1455 32.4787 33.0734 32.5911 33.0231C32.7036 32.9727 32.8249 32.945 32.9481 32.9416C33.0713 32.9381 33.194 32.959 33.3091 33.0031Z' fill='%232A1C53'/%3E%3Cpath d='M13.7442 33.5127L17.0053 32.2708C17.1204 32.2271 17.2257 32.1611 17.3153 32.0766C17.4048 31.9922 17.4769 31.8909 17.5273 31.7786C17.5777 31.6663 17.6055 31.5451 17.6091 31.4221C17.6127 31.299 17.5921 31.1765 17.5483 31.0614C17.5045 30.9463 17.4385 30.841 17.3541 30.7514C17.2696 30.6619 17.1683 30.5899 17.056 30.5394C16.9437 30.489 16.8225 30.4612 16.6995 30.4576C16.5764 30.454 16.4539 30.4747 16.3388 30.5185L13.0777 31.7604C12.9626 31.8042 12.8573 31.8702 12.7678 31.9546C12.6782 32.0391 12.6061 32.1404 12.5557 32.2527C12.5053 32.365 12.4775 32.4861 12.4739 32.6092C12.4703 32.7322 12.491 32.8548 12.5347 32.9699C12.5785 33.0849 12.6445 33.1902 12.729 33.2798C12.8134 33.3694 12.9147 33.4414 13.027 33.4918C13.1393 33.5422 13.2605 33.57 13.3835 33.5736C13.5066 33.5772 13.6292 33.5565 13.7442 33.5127Z' fill='%232A1C53'/%3E%3Cpath d='M10.4837 34.755L7.2226 35.9974C6.99039 36.0853 6.73278 36.0775 6.50628 35.9757C6.27979 35.874 6.1029 35.6866 6.01441 35.4546C5.92592 35.2226 5.93307 34.9649 6.03427 34.7382C6.13548 34.5114 6.32248 34.3341 6.55427 34.245L9.81538 33.0026C10.0476 32.9147 10.3052 32.9225 10.5317 33.0243C10.7582 33.126 10.9351 33.3134 11.0236 33.5455C11.1121 33.7775 11.1049 34.0351 11.0037 34.2618C10.9025 34.4886 10.7155 34.6659 10.4837 34.755Z' fill='%232A1C53'/%3E%3Cpath d='M20.8996 15.1938C20.7238 15.018 20.625 14.7795 20.625 14.5309V10.7809C20.625 10.5323 20.7238 10.2938 20.8996 10.118C21.0754 9.94217 21.3139 9.8434 21.5625 9.8434C21.8111 9.8434 22.0496 9.94217 22.2254 10.118C22.4012 10.2938 22.5 10.5323 22.5 10.7809V14.5309C22.5 14.7795 22.4012 15.018 22.2254 15.1938C22.0496 15.3696 21.8111 15.4684 21.5625 15.4684C21.3139 15.4684 21.0754 15.3696 20.8996 15.1938Z' fill='%232A1C53'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M41.5842 9.90486L21.8967 2.40486C21.6813 2.32338 21.4437 2.32338 21.2283 2.40486L1.54083 9.90486C1.36333 9.97257 1.21059 10.0926 1.10285 10.2491C0.995103 10.4055 0.937441 10.591 0.9375 10.781V37.031C0.937441 37.221 0.995103 37.4065 1.10285 37.563C1.21059 37.7194 1.36333 37.8395 1.54083 37.9072L21.2283 45.4072C21.4436 45.489 21.6814 45.489 21.8967 45.4072L41.5842 37.9072C41.7617 37.8395 41.9144 37.7194 42.0222 37.563C42.1299 37.4065 42.1876 37.221 42.1875 37.031V10.781C42.1876 10.591 42.1299 10.4055 42.0222 10.2491C41.9144 10.0926 41.7617 9.97257 41.5842 9.90486ZM39.8309 35.4874C39.5986 35.3993 39.3408 35.4069 39.1141 35.5086C38.8874 35.6103 38.7103 35.7978 38.6216 36.0299C38.5636 36.1866 38.5491 36.3561 38.5796 36.5204C38.6101 36.6847 38.6844 36.8378 38.7948 36.9633L22.5 43.1705V30.8916L22.8589 31.0284C23.0911 31.1163 23.3487 31.1085 23.5752 31.0068C23.8017 30.905 23.9786 30.7176 24.0671 30.4856C24.1556 30.2536 24.1484 29.9959 24.0472 29.7692C23.946 29.5424 23.759 29.3651 23.5272 29.276L22.5 28.8847V18.9273L40.3125 12.1416V35.6708L39.8309 35.4874ZM4.50348 36.0299C4.41464 35.7979 4.2375 35.6105 4.01083 35.5089C3.78416 35.4072 3.52644 35.3995 3.2941 35.4874L2.8125 35.6708V12.1416L20.625 18.9273V28.8847L19.5978 29.276C19.366 29.3651 19.179 29.5424 19.0778 29.7692C18.9766 29.9959 18.9694 30.2536 19.0579 30.4856C19.1464 30.7176 19.3233 30.905 19.5498 31.0068C19.7763 31.1085 20.0339 31.1163 20.2661 31.0284L20.625 30.8916V43.1705L4.33031 36.9633C4.44064 36.8378 4.51498 36.6848 4.54546 36.5204C4.57595 36.3561 4.56144 36.1866 4.50348 36.0299ZM21.5625 7.96852C21.6856 7.96855 21.8075 7.94432 21.9213 7.89722C22.0351 7.85012 22.1384 7.78106 22.2255 7.694C22.3125 7.60694 22.3816 7.50358 22.4287 7.38982C22.4758 7.27607 22.5 7.15414 22.5 7.03102V4.64156L38.6164 10.7809L21.5625 17.2776L4.50857 10.7808L20.625 4.64156V7.03102C20.625 7.15414 20.6492 7.27607 20.6963 7.38982C20.7434 7.50358 20.8125 7.60694 20.8995 7.694C20.9866 7.78106 21.0899 7.85012 21.2037 7.89722C21.3175 7.94432 21.4394 7.96855 21.5625 7.96852Z' fill='%232A1C53'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1611_3153'%3E%3Crect width='60' height='60' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.arrowUp-icon::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M37.0038 35.5197C36.9199 35.833 36.9225 36.1632 37.0113 36.4752C37.1 36.7872 37.2716 37.0693 37.5078 37.2917C37.9434 37.6156 38.4122 37.8924 38.9062 38.1174V33.6302C38.4287 33.7002 37.9862 33.9215 37.6438 34.2616C37.3013 34.6017 37.077 35.0426 37.0038 35.5197Z' fill='%23765CF6' fill-opacity='0.8'/%3E%3Cpath d='M40.8087 40.898L40.7812 40.8881V46.2377C41.2585 46.0204 41.6752 45.6892 41.9948 45.2734C42.3144 44.8575 42.527 44.3696 42.6141 43.8524C42.7407 43.2231 42.6251 42.5692 42.2904 42.0214C41.9557 41.4737 41.4265 41.0725 40.8087 40.898Z' fill='%23765CF6' fill-opacity='0.8'/%3E%3Cpath d='M38.9063 19.6875C35.0124 19.6875 31.2061 20.8422 27.9685 23.0054C24.7309 25.1687 22.2075 28.2435 20.7174 31.8409C19.2273 35.4383 18.8374 39.3968 19.597 43.2158C20.3567 47.0348 22.2317 50.5428 24.9851 53.2962C27.7384 56.0495 31.2464 57.9246 35.0654 58.6842C38.8844 59.4439 42.8429 59.054 46.4403 57.5639C50.0378 56.0738 53.1125 53.5504 55.2758 50.3128C57.4391 47.0752 58.5938 43.2688 58.5938 39.375C58.5879 34.1553 56.5118 29.1512 52.821 25.4603C49.1301 21.7694 44.1259 19.6934 38.9063 19.6875ZM44.4635 44.1632C44.3047 45.1204 43.8727 46.0114 43.2195 46.7288C42.5662 47.4463 41.7195 47.9596 40.7813 48.2071V49.6875C40.7813 49.9361 40.6825 50.1746 40.5067 50.3504C40.3309 50.5262 40.0924 50.625 39.8438 50.625C39.5951 50.625 39.3567 50.5262 39.1808 50.3504C39.005 50.1746 38.9063 49.9361 38.9063 49.6875V48.379C37.5324 48.4069 36.1871 47.9854 35.0748 47.1785C34.8667 47.0424 34.7212 46.8292 34.6703 46.5858C34.6194 46.3425 34.6672 46.0888 34.8033 45.8807C34.9394 45.6726 35.1526 45.5271 35.396 45.4762C35.6394 45.4253 35.893 45.4732 36.1011 45.6093C36.907 46.2185 37.8964 46.5352 38.9063 46.5073V40.1698C37.9955 39.8182 37.136 39.3463 36.3506 38.7666C35.8424 38.3338 35.4627 37.7698 35.253 37.1361C35.0433 36.5023 35.0116 35.8232 35.1613 35.1727C35.3165 34.2639 35.768 33.432 36.4454 32.8067C37.1228 32.1813 37.988 31.7976 38.9063 31.7152V30.9375C38.9063 30.6889 39.005 30.4504 39.1808 30.2746C39.3567 30.0988 39.5951 30 39.8438 30C40.0924 30 40.3309 30.0988 40.5067 30.2746C40.6825 30.4504 40.7813 30.6889 40.7813 30.9375V31.7579C41.6599 31.9255 42.4816 32.3137 43.169 32.8862C43.3525 33.054 43.4618 33.2878 43.4729 33.5362C43.484 33.7846 43.396 34.0272 43.2282 34.2107C43.0605 34.3942 42.8266 34.5036 42.5782 34.5147C42.3298 34.5258 42.0872 34.4378 41.9037 34.27C41.5695 34.0082 41.1886 33.8123 40.7813 33.6927V38.8939C41.0004 38.9748 41.2188 39.0541 41.4336 39.1302C42.47 39.4484 43.3524 40.1381 43.9116 41.0669C44.4707 41.9958 44.6673 43.0984 44.4635 44.1632Z' fill='%23765CF6' fill-opacity='0.8'/%3E%3Cpath d='M37.9688 0.9375H4.21875C3.47308 0.938314 2.75818 1.23489 2.23091 1.76216C1.70364 2.28943 1.40706 3.00433 1.40625 3.75V37.5C1.40706 38.2457 1.70364 38.9606 2.23091 39.4878C2.75818 40.0151 3.47308 40.3117 4.21875 40.3125H37.9688C38.7144 40.3117 39.4293 40.0151 39.9566 39.4878C40.4839 38.9606 40.7804 38.2457 40.7812 37.5V3.75C40.7804 3.00433 40.4839 2.28943 39.9566 1.76216C39.4293 1.23489 38.7144 0.938314 37.9688 0.9375ZM38.9062 37.5C38.9059 37.7485 38.8071 37.9868 38.6313 38.1626C38.4556 38.3383 38.2173 38.4372 37.9688 38.4375H4.21875C3.97021 38.4372 3.73194 38.3383 3.55619 38.1626C3.38045 37.9868 3.28157 37.7485 3.28125 37.5V3.75C3.28157 3.50146 3.38045 3.26319 3.55619 3.08744C3.73194 2.9117 3.97021 2.81282 4.21875 2.8125H37.9688C38.2173 2.81282 38.4556 2.9117 38.6313 3.08744C38.8071 3.26319 38.9059 3.50146 38.9062 3.75V37.5Z' fill='%23151A6A'/%3E%3Cpath d='M11.7188 27.1875H7.96875C7.47162 27.188 6.995 27.3857 6.64347 27.7372C6.29195 28.0887 6.09425 28.5654 6.09375 29.0625V34.6875C6.09425 35.1846 6.29195 35.6613 6.64347 36.0128C6.995 36.3643 7.47162 36.562 7.96875 36.5625H11.7188C12.2159 36.562 12.6925 36.3643 13.044 36.0128C13.3955 35.6613 13.5933 35.1846 13.5938 34.6875V29.0625C13.5933 28.5654 13.3955 28.0887 13.044 27.7372C12.6925 27.3857 12.2159 27.188 11.7188 27.1875ZM7.96875 34.6875V29.0625H11.7188L11.7201 34.6875H7.96875Z' fill='%23151A6A'/%3E%3Cpath d='M22.9688 19.6875H19.2188C18.7216 19.688 18.245 19.8857 17.8935 20.2372C17.5419 20.5887 17.3442 21.0654 17.3438 21.5625V34.6875C17.3442 35.1846 17.5419 35.6613 17.8935 36.0128C18.245 36.3643 18.7216 36.562 19.2188 36.5625H22.9688C23.4659 36.562 23.9425 36.3643 24.294 36.0128C24.6456 35.6613 24.8433 35.1846 24.8438 34.6875V21.5625C24.8433 21.0654 24.6456 20.5887 24.294 20.2372C23.9425 19.8857 23.4659 19.688 22.9688 19.6875ZM19.2188 34.6875V21.5625H22.9688L22.9701 34.6875H19.2188Z' fill='%23151A6A'/%3E%3Cpath d='M34.2188 12.1875H30.4688C29.9716 12.188 29.495 12.3857 29.1435 12.7372C28.7919 13.0887 28.5942 13.5654 28.5938 14.0625V34.6875C28.5942 35.1846 28.7919 35.6613 29.1435 36.0128C29.495 36.3643 29.9716 36.562 30.4688 36.5625H34.2188C34.7159 36.562 35.1925 36.3643 35.544 36.0128C35.8955 35.6613 36.0933 35.1846 36.0938 34.6875V14.0625C36.0933 13.5654 35.8955 13.0887 35.544 12.7372C35.1925 12.3857 34.7159 12.188 34.2188 12.1875ZM30.4688 34.6875V14.0625H34.2188L34.2201 34.6875H30.4688Z' fill='%23151A6A'/%3E%3Cpath d='M11.3736 11.8568V8.09475C11.5837 8.17889 11.7809 8.29211 11.9596 8.43109C12.1435 8.59713 12.3857 8.6836 12.6332 8.67159C12.8807 8.65957 13.1133 8.55006 13.2803 8.36698C13.4473 8.18391 13.535 7.94217 13.5243 7.69461C13.5135 7.44705 13.4052 7.21382 13.223 7.0459C12.6885 6.59702 12.0544 6.28255 11.3736 6.12877V5.625C11.3736 5.37636 11.2748 5.1379 11.099 4.96209C10.9232 4.78627 10.6848 4.6875 10.4361 4.6875C10.1875 4.6875 9.94902 4.78627 9.77321 4.96209C9.59739 5.1379 9.49862 5.37636 9.49862 5.625V6.08757C8.75723 6.18894 8.06742 6.52388 7.52927 7.0438C6.99111 7.56372 6.6326 8.24158 6.50575 8.97904C6.37955 9.53305 6.40792 10.1111 6.58778 10.6501C6.76763 11.1891 7.09205 11.6683 7.52565 12.0355C8.13239 12.487 8.7957 12.857 9.49862 13.136V17.8862C8.79123 17.8739 8.10637 17.6353 7.54442 17.2055C7.33633 17.0694 7.08269 17.0216 6.83932 17.0725C6.59594 17.1234 6.38276 17.2689 6.24666 17.477C6.11056 17.6851 6.06271 17.9387 6.11361 18.1821C6.16452 18.4254 6.31003 18.6386 6.51812 18.7747C7.38441 19.4064 8.42652 19.7514 9.49862 19.7615V20.625C9.49862 20.8736 9.59739 21.1121 9.77321 21.2879C9.94902 21.4637 10.1875 21.5625 10.4361 21.5625C10.6848 21.5625 10.9232 21.4637 11.099 21.2879C11.2748 21.1121 11.3736 20.8736 11.3736 20.625V19.5726C12.1234 19.3407 12.7948 18.9066 13.3139 18.3181C13.8331 17.7295 14.18 17.0093 14.3166 16.2364C14.6445 14.2858 13.7473 12.7222 11.3736 11.8568ZM8.68288 10.5602C8.52291 10.4024 8.40765 10.2051 8.34886 9.98828C8.29007 9.77147 8.28986 9.54294 8.34826 9.32602C8.39562 9.02021 8.52889 8.73415 8.73256 8.50115C8.93622 8.26816 9.20189 8.09783 9.49862 8.01V11.0601C9.21234 10.9181 8.93934 10.7508 8.68288 10.5602ZM12.4677 15.9256C12.41 16.2585 12.2828 16.5756 12.0943 16.856C11.9058 17.1364 11.6602 17.3738 11.3736 17.5528V13.8773C11.762 14.0431 12.0821 14.3365 12.2811 14.7089C12.48 15.0814 12.5458 15.5106 12.4677 15.9256Z' fill='%23151A6A'/%3E%3C/svg%3E");
}
.mrwc__item p {
font-size: 22px;
line-height: 34px;
margin-bottom: 0;
width: 100%;
}
.mrwc__item p span {
font-weight: 700;
display: block;
}  .monetize {
padding: 103px 0 106px;
position: relative;
}
.monetize-bg {
display: block;
width: 98%;
height: 100%;
position: absolute;
left: 1%;
top: 0;
border-radius: 32px;
background-color: var(--color-yellow);
z-index: -1;
}
.monetize__title {
color: var(--color-black);
margin-bottom: 28px;
font-size: 48px;
line-height: 60px;
text-align: center;
}
.monetize__title span {
font-weight: 700;
}
.monetize__text {
color: var(--color-black);
font-size: 22px;
line-height: 34px;
text-align: center;
margin-bottom: 70px;
}
.monetize__mob_slider {
position: relative;
}
.monetize__mob_slider .swiper-button-next,
.monetize__mob_slider .swiper-button-prev,
.monetize__mob_slider .swiper-pagination {
display: none;
}
.monetize__wrap {
display: flex;
justify-content: center;
max-width: 800px;
margin: 0 auto;
}
.monetize__wrap_item {
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.06);
border-radius: 32px;
width: 240px;
height: 234px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
cursor: pointer;
}
.monetize__wrap_column:not(:last-child) {
margin-right: 40px;
}
.monetize__wrap_column:nth-child(odd) {
margin-top: 66px;
display: flex;
flex-direction: column;
justify-content: center;
}
.monetize__wrap_item:first-child {
margin-bottom: 40px;
}
.monetize__wrap_item-icon {
display: inline-block;
margin-bottom: 20px;
width: 60px;
height: 60px;
}
.monetize__wrap_item-name {
display: inline-block;
font-weight: 700;
font-size: 22px;
line-height: 34px;
text-align: center;
color: var(--color-black);
}
.monetize__wrap_item:hover {
background-color: var(--color-violet);
}
.monetize__wrap_item:hover svg path {
fill: var(--color-black);
}  .formats {
padding: 101px 0 115px;
overflow: visible; }
.formats-bg {
display: block; width: 100%;
height: 100%; position: absolute;
top: 0px;
left: 50%;
transform: translate(-50%, 0);
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/make-money-bg.svg) no-repeat center center /
contain;
z-index: -1;
}
.formats__wrap {
text-align: center;
}
.formats__wrap_title {
font-size: 48px;
line-height: 60px;
margin-bottom: 28px;
}
.formats__wrap_title span {
font-weight: 700;
}
.formats__wrap_desc {
font-size: 22px;
line-height: 34px;
max-width: 650px;
margin: 0 auto 49px;
}
.formats__tab {
}
.formats__tab .navSelect {
display: none;
}
.formats__tab .nav {
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 100px;
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
padding: 0 114px;
position: relative;
}
.formats__tab .nav-item {
transition-duration: 0.3s;
}
.formats__tab .nav-link {
border: none;
color: var(--color-black);
background-color: transparent;
font-weight: 700;
font-size: 16px;
line-height: 28px;
padding: 14px 32px;
position: relative;
z-index: 1;
border-radius: 7px;
}
.formats__tab .nav-item.active .nav-link {
color: var(--color-violet-light);
cursor: default;
}
.formats__tab .nav-item:not(.active) .nav-link:hover {
background-color: var(--color-violet);
color: var(--color-white);
}
.formats__tab .selector {
position: absolute;
top: 0px;
left: 0px;
background-color: var(--color-green-light);
border: 2px solid var(--color-violet);
border-radius: 8px;
width: 130px;
height: 100%;
z-index: 1;
transition-duration: 0.3s;
opacity: 0;
}
.formats__tab .tab-content {
margin-top: 80px;
}
.formats__tab_content {
}
.ftc__wrap {
display: flex;
}
.ftc__wrap_icon {
position: relative;
max-width: 560px;
} .ftc__wrap_icon img {
position: relative;
z-index: 2;
}
.ftc__wrap_info {
margin-left: 60px;
max-width: 440px;
}
.ftc__wrap_info-title {
font-weight: 700;
font-size: 32px;
line-height: 44px;
margin-bottom: 17px;
}
.ftc__wrap_info p {
font-size: 16px;
line-height: 28px;
margin-bottom: 23px;
}
.ftc__wrap_info p span {
font-weight: 700;
}
.ftc__wrap_info ul {
margin-bottom: 40px;
}
.ftc__wrap_info ul li {
font-size: 16px;
line-height: 28px;
margin-bottom: 10px;
position: relative;
padding-left: 30px;
}
.ftc__wrap_info ul li::before {
content: "";
display: inline-block;
width: 20px;
height: 20px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4C0 1.79086 1.79086 0 4 0H16C18.2091 0 20 1.79086 20 4V16C20 18.2091 18.2091 20 16 20H4C1.79086 20 0 18.2091 0 16V4Z' fill='%23CDFC81'/%3E%3Cpath d='M9.94453 5.45459C9.48453 5.45459 9.11453 5.82459 9.11453 6.28459V9.10459H6.28453C6.06453 9.10459 5.85453 9.19459 5.69453 9.34459C5.54453 9.50459 5.45453 9.71359 5.45453 9.93459C5.45453 10.3946 5.82453 10.7646 6.28453 10.7746H9.11453V13.6046C9.11453 14.0646 9.48453 14.4346 9.94453 14.4346C10.4045 14.4346 10.7745 14.0646 10.7745 13.6046V10.7746H13.6145C14.0745 10.7646 14.4445 10.3946 14.4445 9.93459C14.4445 9.47459 14.0745 9.10459 13.6145 9.10459H10.7745V6.28459C10.7745 5.82459 10.4045 5.45459 9.94453 5.45459Z' fill='%232A1C53'/%3E%3C/svg%3E")
no-repeat center center / contain;
position: absolute;
left: 0;
top: 0;
}
.ftc__wrap_info .button {
}
.learnFormat {
padding-bottom: 150px;
}  .platform {
padding-bottom: 120px;
overflow: visible; }
.platform__bg {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 941px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='1450' height='941' viewBox='0 0 1450 941' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 751.618C45.2882 754.881 82.9847 775.772 114.057 822.631C382.516 1227.49 479.804 281.932 758.987 671.358C1083.71 1124.3 920.713 -32.4015 1315.5 722C1371.62 829.236 1341.1 364.87 1435 4.52734' stroke='url(%23paint0_linear_1913_6158)' stroke-width='30'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1913_6158' x1='2487.5' y1='-330' x2='25.3084' y2='64.7169' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.448947' stop-color='%23765CF6' stop-opacity='0'/%3E%3Cstop offset='0.476354' stop-color='%23765CF6' stop-opacity='0.109086'/%3E%3Cstop offset='0.488014' stop-color='%23765CF6' stop-opacity='0.175362'/%3E%3Cstop offset='0.56485' stop-color='%23765CF6' stop-opacity='0.385417'/%3E%3Cstop offset='0.808931' stop-color='%23148EFD' stop-opacity='0.0642933'/%3E%3Cstop offset='1' stop-color='%230098FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
no-repeat center center / contain;
}
.platform .container {
z-index: 2;
position: relative;
}
.platform__title {
font-size: 48px;
line-height: 60px;
text-align: center;
margin-bottom: 63px;
}
.platform__title span {
font-weight: 700;
}
.platform__slider .swiper-button-next,
.platform__slider .swiper-button-prev,
.platform__slider .swiper-pagination {
display: none;
}
.platform-wrap-item:nth-child(-n + 3) {
margin-bottom: 40px;
}
.platform__card {
background: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
padding: 40px 27px 40px 27px;
max-width: 360px;
height: 100%;
margin: 0 auto;
}
.platform__card_head {
margin-bottom: 19px;
display: flex;
align-items: center;
}
.platform__card_head-icon {
display: inline-block;
margin-right: 14px;
}
.platform__card_head-title {
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.platform__card_desc {
font-size: 16px;
line-height: 28px;
margin-bottom: 0;
}  .payout {
position: relative;
padding: 101px 0 109px;
text-align: center;
}
.payout::after {
content: "";
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
left: 1%;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -1;
}
.payout__title {
margin-bottom: 63px;
font-size: 48px;
line-height: 60px;
}
.payout__title span {
font-weight: 700;
}
.payout__wrap {
max-width: 1100px;
margin: 0 auto;
}
.payout__slider .swiper-slide {
width: auto;
border: 1px solid var(--color-black);
border-radius: 100px;
}
.payout__slider_item {
}
.payout__slider_item-icon {
background: var(--color-white);
border-radius: 100px;  margin: 0 auto;
height: 80px;
padding: 0 40px;
display: inline-flex;
justify-content: center;
align-items: center;
}
.payout__desc p {
margin: 60px auto 0;
max-width: 682px;
font-size: 22px;
line-height: 34px;
}
.payout__desc a {
font-weight: 700;
cursor: pointer;
text-decoration: underline;
}
.payout__desc a:hover {
text-decoration: underline;
}  .enjoy {
padding: 101px 0 139px;
}
.enjoy__title {
text-align: center;
font-size: 48px;
line-height: 60px;
max-width: 991px;
margin: 0 auto;
}
.enjoy__title span {
font-weight: 700;
}
.enjoy__cards {
display: flex;
justify-content: center; margin-top: 43px;
height: 100%;
}
.enjoy__cards_item {
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
padding: 40px 27px;
max-width: 360px;
margin: 0 20px;
}
.enjoy__cards_item-head {
display: flex;
align-items: center;
margin-bottom: 27px;
}
.enjoy__cards_item-head .ecih-icon {
margin-right: 13px;
}
.enjoy__cards_item-head .ecih-title {
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.enjoy__cards_item-desc {
font-size: 16px;
line-height: 28px;
margin-bottom: 0;
}  .trust {
position: relative;
padding: 101px 0 150px;
}
.trust-bg {
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
left: 1%;
background-color: var(--color-violet);
border-radius: 32px;
z-index: -1;
}
.trust__title {
text-align: center;
font-size: 48px;
line-height: 60px;
color: var(--color-green);
}
.trust__title span {
font-weight: 700;
}
.trust__wrap {
position: relative;
}
.trust__wrap .swiper-button-prev {
left: 25%;
top: 120%;
width: 64px;
height: 64px;
background: var(--arrow-left) no-repeat center / contain;
}
.trust__wrap .swiper-button-next {
right: 25%;
top: 120%;
width: 64px;
height: 64px;
background: var(--arrow-right) no-repeat center / contain;
}
.trust__wrap .swiper-button-next::after,
.trust__wrap .swiper-button-prev::after {
content: "";
}
.trust__wrap .swiper-button-next:hover,
.trust__wrap .swiper-button-prev:hover {
opacity: 0.7;
}
.trust__wrap .swiper-button-next,
.trust__wrap .swiper-button-prev {
display: none;
}
.trust__wrap .swiper-button-next {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='41' height='40' viewBox='0 0 41 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' width='40' height='40' rx='4' fill='white'/%3E%3Cpath d='M18 26.875L25.0711 19.8039L18 12.7329' stroke='%232A1C53' stroke-width='4'/%3E%3C/svg%3E");
}
.trust__wrap .swiper-button-prev {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='41' height='40' viewBox='0 0 41 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' width='40' height='40' rx='4' fill='white'/%3E%3Cpath d='M23 26.875L15.9289 19.8039L23 12.7329' stroke='%232A1C53' stroke-width='4'/%3E%3C/svg%3E");
}
.trust__slider {
margin-top: 63px;
position: relative;
}
.trust__wrap .swiper-pagination {
bottom: -40px;
}
.trust__wrap .swiper-pagination span {
background-color: var(--color-white);
width: 12px;
height: 12px;
opacity: 1;
margin: 0 20px !important;
}
.trust__wrap .swiper-pagination span.swiper-pagination-bullet-active {
background-color: var(--color-violet-light);
} .tsi__wrap {  padding: 40px 40px 30px;
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.06);
border-radius: 32px;
position: relative;
margin: 15px;
}
.tsi__wrap::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
right: -10px;
bottom: -10px;
border: 3px solid #cdfc81;
border-radius: 32px;
z-index: -1;
}
.tsi__wrap_name {
display: inline-block;
background-color: var(--color-green);
border-radius: 16px;
padding: 15px 30px;
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 26px;
}
.tsi__wrap_text {
font-size: 22px;
line-height: 37px;
margin-bottom: 18px;
}
.tsi__wrap_company {
display: inline-block;
font-weight: 700;
font-size: 16px;
line-height: 28px;
}  .learn {
padding: 101px 0 52px;
position: relative;
}
.learn__title {
text-align: center;
font-size: 48px;
line-height: 60px;
margin: 0 auto 63px;
max-width: 800px;
}
.learn__title span {
font-weight: 700;
}
.learn__desc {
text-align: center;
font-size: 22px;
line-height: 34px;
}
.learn__wrap {
position: relative;
}
.learn__slider {
}
.learn__wrap .swiper-button-prev {
left: 23%;
width: 64px;
height: 64px;
background: var(--arrow-left) no-repeat center / contain;
}
.learn__wrap .swiper-button-next {
right: 23%;
width: 64px;
height: 64px;
background: var(--arrow-right) no-repeat center / contain;
}
.learn__wrap .swiper-button-next:hover {
background-image: var(--arrow-right-hover);
}
.learn__wrap .swiper-button-prev:hover {
background-image: var(--arrow-left-hover);
}
.learn__wrap .swiper-button-next::after,
.learn__wrap .swiper-button-prev::after {
content: "";
}
.learn__wrap .swiper-pagination {
display: flex;
justify-content: center;
bottom: -50px;
}
.learn__wrap .swiper-pagination span {
display: block;
width: 12px;
height: 12px;
margin: 0 20px !important;
background-color: var(--color-violet);
border-radius: 50%;
opacity: 1;
}
.learn__wrap .swiper-pagination span.swiper-pagination-bullet-active {
background-color: var(--color-violet-light);
}
.learn__slider_item {
display: flex !important;
justify-content: center;
}
.learn__slider_item a {
max-width: 560px;
}
.learn__slider_item-link img {
background: var(--color-gray-2);
border-radius: 32px;
}  .footer {
padding: 101px 0 20px;
position: relative;
}
.footer-bg {
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/footer-bg-light.svg) no-repeat center
center / cover;
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
z-index: -1;
filter: blur(10px);
}
.footer__top {
text-align: center;
}
.footer__top_title {
font-size: 48px;
line-height: 60px;
}
.footer__top_title span {
display: block;
font-weight: 700;
}
.footer__top_btn {
margin-top: 43px;
}
.footer__bottom {
margin-top: 120px;
padding: 94px 15px 24px;
position: relative;
}
.footer__bottom-bg {
display: block;
width: 98%;
height: 100%;
background: var(--color-white);
border-radius: 32px;
position: absolute;
top: 0;
left: 1%;
z-index: -1;
}
.footer__bottom_left {
}
.fbl-logo {
display: block;
width: 171px;
height: 35px;
}
.fbl-desc {
margin-top: 46px;
max-width: 447px;
font-size: 16px;
line-height: 28px;
}
.fbl-app {
margin: 56px 0 30px;
}
.fbl-app a {
display: block;
width: 190px;
height: 57px;
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
}
.fbl-app-store {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='170' height='57' viewBox='0 0 170 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='170' height='57' rx='8' fill='black'/%3E%3Cpath d='M36.0725 28.7201C36.0875 27.5482 36.3961 26.3992 36.9697 25.38C37.5433 24.3608 38.3632 23.5044 39.3532 22.8906C38.7243 21.9848 37.8946 21.2394 36.9301 20.7135C35.9656 20.1876 34.8927 19.8958 33.7968 19.8613C31.4591 19.6137 29.1927 21.272 28.0014 21.272C26.787 21.272 24.9529 19.8858 22.9778 19.9268C21.7002 19.9685 20.4551 20.3431 19.3639 21.0143C18.2726 21.6855 17.3723 22.6303 16.7507 23.7567C14.0583 28.4579 16.0666 35.3671 18.6457 39.1671C19.9361 41.0279 21.4442 43.1065 23.4176 43.0327C25.3486 42.952 26.0698 41.7909 28.4007 41.7909C30.71 41.7909 31.3871 43.0327 33.4 42.9859C35.472 42.952 36.7776 41.1168 38.0227 39.2384C38.9499 37.9124 39.6633 36.4469 40.1366 34.8961C38.9329 34.3826 37.9056 33.5232 37.1829 32.4249C36.4602 31.3267 36.074 30.0382 36.0725 28.7201Z' fill='white'/%3E%3Cpath d='M32.2695 17.3628C33.3993 15.995 33.9561 14.237 33.8214 12.4619C32.0954 12.6448 30.501 13.4767 29.3559 14.792C28.7961 15.4346 28.3673 16.1821 28.094 16.9919C27.8208 17.8017 27.7086 18.6579 27.7636 19.5114C28.6269 19.5203 29.4809 19.3316 30.2614 18.9594C31.0419 18.5872 31.7285 18.0413 32.2695 17.3628Z' fill='white'/%3E%3Cpath d='M60.4819 38.3219H53.8922L52.3097 43.0343H49.5186L55.7603 25.5995H58.6601L64.9022 43.0343H62.063L60.4819 38.3219ZM54.5747 36.1472H59.7981L57.2232 28.4993H57.1516L54.5747 36.1472Z' fill='white'/%3E%3Cpath d='M78.3821 36.6792C78.3821 40.6295 76.2856 43.1668 73.1221 43.1668C72.3207 43.2091 71.5236 43.023 70.8223 42.6298C70.1209 42.2365 69.5435 41.6521 69.1561 40.9433H69.0963V47.2393H66.5088V30.3229H69.014V32.4373H69.0615C69.4665 31.7319 70.0535 31.1504 70.7601 30.7546C71.4666 30.3589 72.2664 30.1637 73.0742 30.1898C76.2733 30.1898 78.3821 32.7401 78.3821 36.6792ZM75.7231 36.6792C75.7231 34.1057 74.4042 32.4138 72.3921 32.4138C70.4154 32.4138 69.0858 34.1413 69.0858 36.6792C69.0858 39.2404 70.4153 40.9556 72.3921 40.9556C74.4037 40.9556 75.7231 39.2761 75.7231 36.6792Z' fill='white'/%3E%3Cpath d='M92.254 36.679C92.254 40.6293 90.1574 43.1666 86.9939 43.1666C86.1925 43.2089 85.3955 43.0227 84.6941 42.6294C83.9928 42.2361 83.4154 41.6515 83.0282 40.9427H82.9684V47.2388H80.3809V30.3227H82.8851V32.4371H82.9326C83.3376 31.7316 83.9247 31.1501 84.6314 30.7544C85.3382 30.3587 86.138 30.1636 86.9459 30.1898C90.1453 30.1896 92.254 32.7399 92.254 36.679ZM89.5949 36.679C89.5949 34.1055 88.2762 32.4136 86.2641 32.4136C84.2873 32.4136 82.9577 34.1411 82.9577 36.679C82.9577 39.2402 84.2873 40.9555 86.2641 40.9555C88.2762 40.9555 89.595 39.2759 89.595 36.679H89.5949Z' fill='white'/%3E%3Cpath d='M101.423 38.1764C101.615 39.9054 103.28 41.0407 105.556 41.0407C107.737 41.0407 109.305 39.9054 109.305 38.3464C109.305 36.9932 108.359 36.1829 106.119 35.6276L103.878 35.0832C100.704 34.3097 99.2299 32.8128 99.2299 30.3832C99.2299 27.3749 101.829 25.3086 105.521 25.3086C109.174 25.3086 111.677 27.3748 111.762 30.3832H109.15C108.994 28.6433 107.568 27.593 105.484 27.593C103.4 27.593 101.974 28.6553 101.974 30.2025C101.974 31.4351 102.884 32.1604 105.113 32.7156L107.017 33.1873C110.564 34.033 112.038 35.4702 112.038 38.0204C112.038 41.2822 109.462 43.3252 105.364 43.3252C101.53 43.3252 98.9414 41.3302 98.7744 38.1766L101.423 38.1764Z' fill='white'/%3E%3Cpath d='M117.622 27.3145V30.3227H120.018V32.3889H117.622V39.397C117.622 40.4856 118.102 40.993 119.155 40.993C119.44 40.988 119.724 40.9678 120.006 40.9327V42.9863C119.533 43.0755 119.051 43.116 118.569 43.107C116.017 43.107 115.022 42.1403 115.022 39.6752V32.3892H113.189V30.3227H115.022V27.3145H117.622Z' fill='white'/%3E%3Cpath d='M121.407 36.6789C121.407 32.6795 123.743 30.1662 127.385 30.1662C131.04 30.1662 133.364 32.6794 133.364 36.6789C133.364 40.6894 131.052 43.1916 127.385 43.1916C123.718 43.1916 121.407 40.6894 121.407 36.6789ZM130.728 36.6789C130.728 33.9354 129.482 32.316 127.385 32.316C125.289 32.316 124.043 33.9476 124.043 36.6789C124.043 39.4334 125.289 41.0404 127.385 41.0404C129.482 41.0404 130.728 39.4334 130.728 36.6789Z' fill='white'/%3E%3Cpath d='M135.497 30.3224H137.965V32.4862H138.025C138.192 31.8106 138.584 31.2135 139.137 30.7953C139.689 30.3771 140.367 30.1632 141.057 30.1897C141.355 30.1886 141.652 30.2213 141.943 30.2871V32.7276C141.567 32.6116 141.174 32.5583 140.781 32.5699C140.405 32.5547 140.03 32.6216 139.682 32.7661C139.335 32.9106 139.022 33.1293 138.766 33.4071C138.51 33.6849 138.316 34.0153 138.199 34.3756C138.081 34.7359 138.042 35.1176 138.085 35.4945V43.0341H135.497L135.497 30.3224Z' fill='white'/%3E%3Cpath d='M153.871 39.3005C153.524 41.608 151.295 43.1916 148.444 43.1916C144.777 43.1916 142.502 40.714 142.502 36.7393C142.502 32.7521 144.79 30.1662 148.336 30.1662C151.823 30.1662 154.016 32.5821 154.016 36.4362V37.3302H145.114V37.4879C145.072 37.9556 145.13 38.4269 145.284 38.8704C145.437 39.3138 145.682 39.7192 146.003 40.0598C146.324 40.4003 146.712 40.6682 147.144 40.8455C147.575 41.0229 148.038 41.1057 148.504 41.0884C149.115 41.1462 149.729 41.0035 150.253 40.6813C150.778 40.3592 151.185 39.8749 151.415 39.3006L153.871 39.3005ZM145.125 35.5066H151.427C151.449 35.1058 151.393 34.7045 151.261 34.3256C151.129 33.9468 150.925 33.5978 150.66 33.2986C150.394 32.9994 150.073 32.7558 149.714 32.5818C149.356 32.4078 148.966 32.3068 148.569 32.2845C148.491 32.2801 148.413 32.2788 148.335 32.2804C147.489 32.2754 146.675 32.6095 146.073 33.2094C145.472 33.8093 145.131 34.6257 145.125 35.4792C145.125 35.4884 145.125 35.4975 145.125 35.5066Z' fill='white'/%3E%3Cpath d='M54.2505 12.4773C54.7929 12.438 55.3372 12.5207 55.8441 12.7193C56.351 12.9178 56.8079 13.2274 57.1818 13.6256C57.5557 14.0238 57.8374 14.5008 58.0064 15.022C58.1754 15.5433 58.2276 16.0959 58.1592 16.64C58.1592 19.3163 56.7249 20.8547 54.2505 20.8547H51.25V12.4773H54.2505ZM52.5402 19.67H54.1064C54.494 19.6933 54.8818 19.6292 55.2418 19.4823C55.6017 19.3354 55.9246 19.1095 56.187 18.8209C56.4494 18.5323 56.6447 18.1883 56.7587 17.8139C56.8727 17.4396 56.9024 17.0444 56.8459 16.657C56.8983 16.2711 56.8655 15.8784 56.7497 15.5068C56.634 15.1352 56.4382 14.7941 56.1764 14.5078C55.9146 14.2215 55.5933 13.9971 55.2354 13.8507C54.8775 13.7044 54.492 13.6396 54.1064 13.6611H52.5402V19.67Z' fill='white'/%3E%3Cpath d='M59.6166 17.6895C59.5771 17.274 59.6243 16.8548 59.7549 16.4588C59.8855 16.0628 60.0968 15.6986 60.3752 15.3898C60.6535 15.0809 60.9928 14.8341 61.3713 14.6653C61.7497 14.4964 62.159 14.4092 62.5728 14.4092C62.9867 14.4092 63.396 14.4964 63.7744 14.6653C64.1529 14.8341 64.4922 15.0809 64.7705 15.3898C65.0489 15.6986 65.2602 16.0628 65.3908 16.4588C65.5214 16.8548 65.5686 17.274 65.5291 17.6895C65.5693 18.1054 65.5228 18.5252 65.3925 18.9219C65.2623 19.3186 65.0511 19.6834 64.7727 19.9929C64.4943 20.3024 64.1547 20.5497 63.7759 20.7189C63.397 20.8882 62.9872 20.9756 62.5728 20.9756C62.1585 20.9756 61.7487 20.8882 61.3698 20.7189C60.991 20.5497 60.6514 20.3024 60.373 19.9929C60.0946 19.6834 59.8834 19.3186 59.7532 18.9219C59.6229 18.5252 59.5764 18.1054 59.6166 17.6895ZM64.2567 17.6895C64.2567 16.3191 63.6462 15.5177 62.5749 15.5177C61.4995 15.5177 60.8946 16.3191 60.8946 17.6895C60.8946 19.0708 61.4996 19.8657 62.5749 19.8657C63.6462 19.8657 64.2567 19.065 64.2567 17.6895Z' fill='white'/%3E%3Cpath d='M73.3886 20.8533H72.1052L70.8096 16.1971H70.7117L69.4214 20.8533H68.1503L66.4219 14.5312H67.6768L68.7997 19.3554H68.8918L70.1804 14.5312H71.3668L72.6554 19.3554H72.7533L73.8708 14.5312H75.1083L73.3886 20.8533Z' fill='white'/%3E%3Cpath d='M76.5635 14.5316H77.7545V15.5359H77.8465C78.0034 15.1751 78.2679 14.8728 78.6032 14.6709C78.9385 14.469 79.328 14.3776 79.7172 14.4095C80.0223 14.3864 80.3286 14.4327 80.6134 14.5452C80.8983 14.6576 81.1544 14.8333 81.3628 15.0592C81.5712 15.285 81.7266 15.5553 81.8173 15.8499C81.908 16.1445 81.9319 16.456 81.887 16.7612V20.8538H80.6495V17.0743C80.6495 16.0583 80.2118 15.5531 79.2968 15.5531C79.0897 15.5433 78.8829 15.5789 78.6907 15.6573C78.4985 15.7356 78.3254 15.855 78.1832 16.0072C78.0411 16.1594 77.9332 16.3407 77.8671 16.5389C77.8009 16.737 77.778 16.9473 77.8 17.1552V20.8536H76.5625L76.5635 14.5316Z' fill='white'/%3E%3Cpath d='M83.8585 12.0635H85.096V20.8535H83.8585V12.0635Z' fill='white'/%3E%3Cpath d='M86.8157 17.6892C86.7764 17.2738 86.8236 16.8546 86.9543 16.4586C87.085 16.0626 87.2963 15.6985 87.5746 15.3897C87.853 15.0808 88.1923 14.8341 88.5708 14.6652C88.9492 14.4964 89.3585 14.4092 89.7724 14.4092C90.1862 14.4092 90.5955 14.4964 90.974 14.6652C91.3524 14.8341 91.6917 15.0808 91.9701 15.3897C92.2485 15.6985 92.4598 16.0626 92.5905 16.4586C92.7212 16.8546 92.7684 17.2738 92.729 17.6892C92.7691 18.1052 92.7226 18.5249 92.5922 18.9216C92.4619 19.3183 92.2507 19.6831 91.9723 19.9926C91.6938 20.302 91.3542 20.5493 90.9754 20.7185C90.5965 20.8878 90.1867 20.9752 89.7724 20.9752C89.358 20.9752 88.9482 20.8878 88.5694 20.7185C88.1905 20.5493 87.8509 20.302 87.5725 19.9926C87.294 19.6831 87.0829 19.3183 86.9525 18.9216C86.8222 18.5249 86.7756 18.1052 86.8157 17.6892ZM91.4558 17.6892C91.4558 16.3189 90.8454 15.5175 89.7741 15.5175C88.6988 15.5175 88.0937 16.3189 88.0937 17.6892C88.0937 19.0706 88.6988 19.8655 89.7741 19.8655C90.8455 19.8658 91.4558 19.0652 91.4558 17.6892Z' fill='white'/%3E%3Cpath d='M94.0312 19.0654C94.0312 17.9274 94.8715 17.2714 96.3631 17.1779L98.0608 17.0792V16.5337C98.0608 15.866 97.623 15.489 96.7774 15.489C96.0867 15.489 95.6082 15.7447 95.4708 16.1917H94.2733C94.3997 15.1057 95.4125 14.4092 96.8346 14.4092C98.4063 14.4092 99.2928 15.1982 99.2928 16.5339V20.8536H98.1018V19.9652H98.0039C97.8052 20.2839 97.5262 20.5437 97.1954 20.7181C96.8646 20.8925 96.4938 20.9752 96.1209 20.9578C95.6214 21.0102 95.1217 20.8604 94.7317 20.5412C94.3417 20.2221 94.0935 19.7598 94.0415 19.256C94.0349 19.1925 94.0315 19.1289 94.0312 19.0654ZM98.0608 18.5253V17.9967L96.53 18.0954C95.6666 18.1536 95.2751 18.4498 95.2751 19.0071C95.2751 19.5762 95.7645 19.9072 96.4375 19.9072C96.6306 19.927 96.8256 19.9082 97.0115 19.8519C97.1974 19.7956 97.3704 19.7029 97.5208 19.5791C97.6711 19.4554 97.7958 19.303 97.8878 19.1306C97.9797 18.9582 98.0371 18.7693 98.0566 18.5746L98.0608 18.5253Z' fill='white'/%3E%3Cpath d='M100.919 17.6898C100.919 15.6921 101.937 14.4266 103.521 14.4266C103.913 14.4083 104.302 14.5029 104.642 14.6993C104.983 14.8957 105.261 15.1858 105.444 15.5357H105.536V12.0635H106.773V20.8535H105.587V19.8547H105.489C105.292 20.2023 105.005 20.4889 104.658 20.6834C104.311 20.8779 103.918 20.973 103.521 20.9583C101.926 20.9578 100.919 19.6922 100.919 17.6898ZM102.197 17.6898C102.197 19.0306 102.824 19.8376 103.872 19.8376C104.915 19.8376 105.56 19.019 105.56 17.6953C105.56 16.3777 104.908 15.5475 103.872 15.5475C102.831 15.5475 102.197 16.3598 102.197 17.6898Z' fill='white'/%3E%3Cpath d='M111.892 17.6889C111.853 17.2735 111.9 16.8544 112.03 16.4584C112.161 16.0624 112.372 15.6984 112.651 15.3896C112.929 15.0808 113.268 14.8341 113.647 14.6652C114.025 14.4964 114.434 14.4092 114.848 14.4092C115.262 14.4092 115.671 14.4964 116.05 14.6652C116.428 14.8341 116.767 15.0808 117.046 15.3896C117.324 15.6984 117.535 16.0624 117.666 16.4584C117.797 16.8544 117.844 17.2735 117.805 17.6889C117.845 18.1048 117.798 18.5245 117.668 18.9212C117.537 19.3178 117.326 19.6826 117.048 19.992C116.769 20.3014 116.43 20.5487 116.051 20.7179C115.672 20.8871 115.263 20.9745 114.848 20.9745C114.434 20.9745 114.024 20.8871 113.645 20.7179C113.267 20.5487 112.927 20.3014 112.649 19.992C112.37 19.6826 112.159 19.3178 112.029 18.9212C111.898 18.5245 111.852 18.1048 111.892 17.6889ZM116.532 17.6889C116.532 16.3186 115.922 15.5172 114.85 15.5172C113.775 15.5172 113.17 16.3186 113.17 17.6889C113.17 19.0703 113.775 19.8652 114.85 19.8652C115.922 19.8655 116.532 19.0648 116.532 17.6889Z' fill='white'/%3E%3Cpath d='M119.465 14.5316H120.656V15.5359H120.748C120.905 15.1751 121.169 14.8728 121.505 14.6709C121.84 14.469 122.229 14.3776 122.619 14.4095C122.924 14.3864 123.23 14.4327 123.515 14.5452C123.8 14.6576 124.056 14.8333 124.264 15.0592C124.473 15.285 124.628 15.5553 124.719 15.8499C124.809 16.1445 124.833 16.456 124.788 16.7612V20.8538H123.551V17.0743C123.551 16.0583 123.113 15.5531 122.198 15.5531C121.991 15.5433 121.784 15.5788 121.592 15.6572C121.4 15.7356 121.227 15.855 121.085 16.0071C120.942 16.1593 120.835 16.3407 120.768 16.5389C120.702 16.737 120.679 16.9473 120.701 17.1552V20.8536H119.464L119.465 14.5316Z' fill='white'/%3E%3Cpath d='M131.779 12.9568V14.5595H133.137V15.6105H131.779V18.8612C131.779 19.5234 132.049 19.8134 132.665 19.8134C132.823 19.8129 132.98 19.8032 133.137 19.7846V20.8238C132.915 20.864 132.69 20.8853 132.464 20.8876C131.088 20.8876 130.54 20.3995 130.54 19.1806V15.6104H129.545V14.5595H130.54V12.9568H131.779Z' fill='white'/%3E%3Cpath d='M134.827 12.0635H136.054V15.5474H136.152C136.316 15.1833 136.588 14.8792 136.93 14.6765C137.272 14.4739 137.668 14.3825 138.063 14.4149C138.367 14.3982 138.67 14.4493 138.951 14.5645C139.233 14.6797 139.486 14.8561 139.692 15.0812C139.898 15.3064 140.053 15.5746 140.144 15.8668C140.236 16.159 140.263 16.468 140.222 16.7718V20.8535H138.984V17.0797C138.984 16.0698 138.517 15.5584 137.643 15.5584C137.43 15.5409 137.217 15.5704 137.016 15.6449C136.816 15.7193 136.635 15.837 136.484 15.9897C136.334 16.1423 136.219 16.3263 136.146 16.5286C136.074 16.731 136.046 16.9468 136.065 17.1611V20.8536H134.827L134.827 12.0635Z' fill='white'/%3E%3Cpath d='M147.436 19.1464C147.268 19.7242 146.904 20.224 146.407 20.5584C145.91 20.8928 145.313 21.0404 144.719 20.9755C144.306 20.9865 143.896 20.9068 143.517 20.7418C143.137 20.5768 142.798 20.3305 142.522 20.02C142.247 19.7095 142.042 19.3423 141.921 18.9438C141.8 18.5453 141.767 18.1251 141.824 17.7123C141.769 17.2983 141.802 16.8771 141.923 16.4774C142.043 16.0777 142.247 15.7088 142.521 15.3956C142.796 15.0824 143.133 14.8322 143.511 14.6621C143.89 14.4919 144.3 14.4057 144.714 14.4093C146.458 14.4093 147.511 15.6111 147.511 17.5964V18.0317H143.084V18.1017C143.047 18.5432 143.186 18.9815 143.469 19.32C143.753 19.6585 144.158 19.8695 144.596 19.9066C144.648 19.9111 144.701 19.913 144.753 19.9124C145.049 19.9482 145.349 19.8945 145.615 19.758C145.88 19.6215 146.1 19.4085 146.245 19.146L147.436 19.1464ZM143.084 17.109H146.25C146.28 16.7056 146.15 16.3067 145.888 16.0003C145.626 15.6939 145.254 15.5049 144.854 15.4749C144.805 15.4714 144.756 15.4701 144.707 15.4712C144.497 15.4686 144.288 15.5077 144.092 15.5865C143.897 15.6653 143.719 15.7822 143.568 15.9304C143.417 16.0786 143.297 16.2554 143.214 16.4505C143.131 16.6456 143.087 16.8553 143.084 17.0677C143.084 17.0814 143.084 17.0952 143.084 17.1089L143.084 17.109Z' fill='white'/%3E%3C/svg%3E");
}
.fbl-app-play {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='170' height='57' viewBox='0 0 170 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='170' height='57' rx='8' fill='black'/%3E%3Cpath d='M58.8758 15.7198C58.899 16.1929 58.8265 16.6658 58.6628 17.1098C58.499 17.5537 58.2473 17.9594 57.9231 18.3021C57.5598 18.6822 57.121 18.9807 56.6354 19.1779C56.1499 19.3752 55.6285 19.4669 55.1054 19.4469C54.5789 19.4517 54.0569 19.3502 53.5698 19.1486C53.0828 18.9469 52.6407 18.6491 52.2694 18.2727C51.8982 17.8962 51.6053 17.4487 51.408 16.9565C51.2107 16.4642 51.113 15.9372 51.1205 15.4063C51.1131 14.8754 51.2109 14.3484 51.4082 13.8562C51.6056 13.364 51.8984 12.9165 52.2697 12.5401C52.6409 12.1636 53.083 11.8658 53.5699 11.664C54.0569 11.4623 54.579 11.3608 55.1054 11.3654C55.6466 11.3637 56.1825 11.4741 56.6798 11.6897C57.1416 11.8784 57.5527 12.1746 57.8795 12.554L57.2053 13.2347C56.9484 12.9297 56.6254 12.6883 56.2613 12.5292C55.8972 12.37 55.5017 12.2974 55.1054 12.3168C54.7064 12.3147 54.3112 12.3938 53.9433 12.5494C53.5754 12.705 53.2424 12.9339 52.9643 13.2224C52.6862 13.5109 52.4687 13.853 52.3247 14.2282C52.1808 14.6035 52.1135 15.0042 52.1268 15.4063C52.1173 16.0086 52.2853 16.6002 52.6097 17.1061C52.934 17.612 53.4 18.0093 53.9485 18.2478C54.4971 18.4862 55.1035 18.5551 55.6908 18.4455C56.2782 18.3359 56.8201 18.0529 57.2478 17.6324C57.6413 17.2046 57.8695 16.6485 57.8907 16.0653H55.1054V15.1362H58.8221C58.8572 15.3288 58.8752 15.5241 58.8758 15.7198Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M64.7682 12.4897H61.275V14.9427H64.425V15.872H61.275V18.3246H64.7682V19.2747H60.29V11.5391H64.7682V12.4897Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M68.9235 19.2747H67.9372V12.4897H65.7949V11.5391H71.0659V12.4896H68.9235V19.2747Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M74.8799 19.2747V11.5391H75.8649V19.2747H74.8799Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M80.2369 19.2747H79.2506V12.4897H77.1084V11.5391H82.3789V12.4896H80.2366L80.2369 19.2747Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M92.3577 18.2742C91.6111 19.0248 90.5999 19.4464 89.5456 19.4464C88.4914 19.4464 87.4801 19.0248 86.7335 18.2742C86.3642 17.8969 86.0738 17.4486 85.8797 16.9559C85.6856 16.4632 85.5918 15.9361 85.6037 15.4061C85.5918 14.8761 85.6857 14.3491 85.8798 13.8564C86.0739 13.3636 86.3642 12.9153 86.7335 12.5381C87.1026 12.1658 87.5408 11.8706 88.023 11.6694C88.5053 11.4681 89.0222 11.3648 89.5442 11.3652C90.0661 11.3657 90.5828 11.47 91.0648 11.6721C91.5467 11.8742 91.9844 12.1702 92.3527 12.5431C92.7223 12.9194 93.0132 13.3667 93.2082 13.8585C93.4031 14.3503 93.4981 14.8766 93.4875 15.4061C93.4991 15.9361 93.4051 16.463 93.2111 16.9557C93.017 17.4484 92.7268 17.8967 92.3577 18.2742ZM87.4613 17.6266C88.0143 18.1832 88.7637 18.4958 89.545 18.4958C90.3263 18.4958 91.0756 18.1832 91.6286 17.6266C91.9122 17.3338 92.134 16.9861 92.2805 16.6044C92.4271 16.2228 92.4954 15.8151 92.4814 15.4061C92.4954 14.9971 92.4271 14.5895 92.2805 14.2079C92.134 13.8262 91.9122 13.4785 91.6286 13.1858C91.0757 12.6291 90.3263 12.3164 89.545 12.3164C88.7636 12.3164 88.0142 12.6291 87.4613 13.1858C87.1782 13.4788 86.9568 13.8266 86.8105 14.2081C86.6641 14.5897 86.5959 14.9972 86.6099 15.4061C86.5959 15.815 86.6641 16.2225 86.8105 16.6041C86.9568 16.9857 87.1782 17.3335 87.4613 17.6266Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M94.8711 19.2747V11.5391H96.0709L99.7987 17.5567H99.8411L99.7987 16.0658V11.5391H100.785V19.2747H99.7563L95.8561 12.9655H95.8136L95.8561 14.4563V19.2747H94.8711Z' fill='white' stroke='white' stroke-width='0.2' stroke-miterlimit='10'/%3E%3Cpath d='M85.3607 30.5573C84.2863 30.5614 83.2371 30.8865 82.3456 31.4915C81.4542 32.0965 80.7605 32.9544 80.3522 33.9567C79.9438 34.959 79.8391 36.0609 80.0512 37.1232C80.2633 38.1855 80.7828 39.1606 81.544 39.9254C82.3053 40.6902 83.2742 41.2103 84.3283 41.4202C85.3825 41.6301 86.4747 41.5203 87.467 41.1046C88.4593 40.689 89.3073 39.9861 89.9038 39.0848C90.5003 38.1835 90.8187 37.1242 90.8186 36.0406C90.8292 35.3158 90.6952 34.5962 90.4244 33.9248C90.1536 33.2533 89.7516 32.6436 89.2424 32.132C88.7331 31.6204 88.1271 31.2174 87.4602 30.9468C86.7934 30.6763 86.0794 30.5438 85.3607 30.5573ZM85.3607 39.3639C84.6991 39.4115 84.0385 39.2572 83.465 38.9209C82.8916 38.5846 82.4318 38.082 82.1455 37.4785C81.8593 36.875 81.7598 36.1985 81.8601 35.5372C81.9604 34.8759 82.2558 34.2603 82.7078 33.7707C83.1599 33.2811 83.7476 32.94 84.3945 32.792C85.0415 32.644 85.7176 32.6958 86.3349 32.9407C86.9522 33.1856 87.4821 33.6123 87.8556 34.1652C88.2291 34.7181 88.4289 35.3716 88.4289 36.0406C88.449 36.4632 88.3851 36.8856 88.2409 37.283C88.0966 37.6803 87.8751 38.0445 87.5892 38.3542C87.3033 38.6638 86.9588 38.9127 86.5761 39.0861C86.1934 39.2595 85.7802 39.354 85.3607 39.3639ZM73.4546 30.5573C72.3801 30.5613 71.3308 30.8864 70.4394 31.4914C69.5479 32.0964 68.8542 32.9542 68.4458 33.9565C68.0374 34.9589 67.9327 36.0607 68.1448 37.1231C68.3569 38.1854 68.8764 39.1605 69.6376 39.9253C70.3988 40.6901 71.3677 41.2103 72.4218 41.4202C73.476 41.6301 74.5682 41.5203 75.5605 41.1047C76.5529 40.689 77.4008 39.9862 77.9974 39.0849C78.5939 38.1836 78.9123 37.1242 78.9123 36.0406C78.9228 35.3158 78.7888 34.5963 78.518 33.9248C78.2472 33.2534 77.8452 32.6437 77.336 32.1321C76.8269 31.6205 76.2208 31.2175 75.554 30.9469C74.8872 30.6763 74.1732 30.5438 73.4546 30.5573ZM73.4546 39.3639C72.7929 39.4115 72.1323 39.2572 71.5588 38.9209C70.9854 38.5846 70.5256 38.082 70.2393 37.4785C69.9531 36.875 69.8536 36.1985 69.9539 35.5372C70.0542 34.8759 70.3496 34.2603 70.8016 33.7707C71.2537 33.2811 71.8414 32.94 72.4883 32.792C73.1353 32.644 73.8114 32.6958 74.4287 32.9407C75.046 33.1856 75.5759 33.6123 75.9494 34.1652C76.3229 34.7181 76.5227 35.3716 76.5228 36.0406C76.5429 36.4632 76.4789 36.8856 76.3347 37.283C76.1905 37.6803 75.9689 38.0445 75.683 38.3542C75.3971 38.6639 75.0527 38.9127 74.67 39.0861C74.2873 39.2595 73.874 39.354 73.4546 39.3639ZM59.2914 32.2397V34.566H64.8112C64.7315 35.657 64.2888 36.689 63.5548 37.4946C63.0016 38.0632 62.3365 38.5085 61.6021 38.8019C60.8678 39.0953 60.0806 39.2301 59.2914 39.1977C57.6787 39.1747 56.1398 38.5125 55.0074 37.3542C53.875 36.1959 53.2401 34.6347 53.2401 33.0081C53.2401 31.3815 53.875 29.8203 55.0074 28.662C56.1398 27.5037 57.6787 26.8415 59.2914 26.8185C60.8411 26.798 62.3362 27.3952 63.4519 28.4801L65.0788 26.8393C64.3177 26.0793 63.4136 25.4802 62.4198 25.0771C61.426 24.6741 60.3625 24.4752 59.2914 24.4922C58.172 24.4755 57.0605 24.6835 56.0216 25.104C54.9826 25.5245 54.0369 26.1491 53.2394 26.9415C52.442 27.7339 51.8087 28.6784 51.3765 29.7198C50.9443 30.7613 50.7217 31.8791 50.7217 33.0081C50.7217 34.1371 50.9443 35.2549 51.3765 36.2964C51.8087 37.3379 52.442 38.2823 53.2394 39.0747C54.0369 39.8671 54.9826 40.4917 56.0216 40.9122C57.0605 41.3327 58.172 41.5407 59.2914 41.524C60.385 41.5698 61.4758 41.3805 62.4913 40.9687C63.5069 40.5569 64.4239 39.932 65.1817 39.1354C66.5272 37.6544 67.2443 35.7011 67.1796 33.6936C67.185 33.2059 67.1435 32.7189 67.0559 32.2393L59.2914 32.2397ZM117.214 34.0466C116.887 33.0534 116.265 32.1857 115.432 31.5615C114.599 30.9372 113.596 30.5866 112.559 30.5573C111.86 30.5616 111.17 30.7088 110.529 30.9899C109.889 31.271 109.311 31.6802 108.832 32.1927C108.353 32.7053 107.981 33.3105 107.741 33.9719C107.5 34.6332 107.394 35.337 107.431 36.0406C107.415 36.7615 107.544 37.4782 107.809 38.148C108.074 38.8177 108.47 39.4266 108.974 39.9385C109.477 40.4503 110.078 40.8545 110.74 41.1269C111.402 41.3993 112.112 41.5344 112.827 41.524C113.723 41.529 114.605 41.3095 115.396 40.8854C116.187 40.4612 116.861 39.8456 117.358 39.0939L115.504 37.8477C115.226 38.3128 114.834 38.6971 114.364 38.9629C113.895 39.2287 113.365 39.3669 112.827 39.3639C112.273 39.3853 111.725 39.2383 111.255 38.942C110.785 38.6457 110.414 38.2138 110.19 37.7023L117.461 34.6699L117.214 34.0466ZM109.799 35.8745C109.773 35.4754 109.827 35.0752 109.957 34.6972C110.086 34.3193 110.289 33.9712 110.554 33.6733C110.818 33.3755 111.139 33.1338 111.498 32.9626C111.856 32.7913 112.245 32.6938 112.641 32.6759C113.053 32.6485 113.465 32.7442 113.824 32.951C114.183 33.1579 114.473 33.4667 114.659 33.839L109.799 35.8745ZM103.888 41.1918H106.277V25.0739H103.888V41.1918ZM99.9749 31.7828H99.8931C99.5299 31.3848 99.0866 31.0696 98.5928 30.8583C98.0991 30.6469 97.5664 30.5444 97.0302 30.5574C95.6283 30.6178 94.3038 31.2219 93.333 32.2436C92.3623 33.2653 91.8203 34.6257 91.8203 36.0407C91.8203 37.4558 92.3623 38.8161 93.333 39.8379C94.3038 40.8596 95.6283 41.4637 97.0302 41.5241C97.5685 41.5386 98.1035 41.4346 98.5979 41.2194C99.0923 41.0042 99.5343 40.6829 99.8931 40.2779H99.9749V41.0672C99.9749 43.1651 98.8628 44.2866 97.0709 44.2866C96.4737 44.2722 95.8943 44.0789 95.4065 43.7311C94.9187 43.3834 94.5445 42.8971 94.3318 42.3342L92.2516 43.2066C92.6436 44.1693 93.3118 44.9919 94.1704 45.5692C95.029 46.1465 96.039 46.452 97.0709 46.4467C99.8719 46.4467 102.24 44.7852 102.24 40.7349V30.8895H99.9749V31.7828ZM97.2358 39.3637C96.8205 39.3517 96.4119 39.2563 96.0337 39.083C95.6556 38.9096 95.3155 38.6619 95.0336 38.3543C94.7516 38.0467 94.5334 37.6854 94.3917 37.2916C94.25 36.8978 94.1877 36.4795 94.2085 36.0611C94.1855 35.6401 94.2459 35.2188 94.3863 34.8216C94.5267 34.4245 94.7442 34.0596 95.0261 33.7482C95.3079 33.4369 95.6485 33.1853 96.0279 33.0083C96.4074 32.8312 96.818 32.7323 97.2358 32.7171C97.6466 32.7374 98.0492 32.8408 98.4195 33.0213C98.7898 33.2018 99.1204 33.4556 99.3914 33.7677C99.6623 34.0797 99.8682 34.4436 99.9968 34.8376C100.125 35.2316 100.174 35.6477 100.14 36.0611C100.172 36.4719 100.121 36.8851 99.9917 37.2758C99.8618 37.6666 99.6552 38.0269 99.3841 38.3352C99.113 38.6436 98.783 38.8936 98.4138 39.0703C98.0447 39.2471 97.644 39.3469 97.2358 39.3639V39.3637ZM128.404 25.0739H122.688V41.1918H125.073V35.0858H128.404C129.078 35.1221 129.753 35.0195 130.386 34.7843C131.02 34.5491 131.599 34.1863 132.089 33.7179C132.579 33.2495 132.969 32.6854 133.236 32.06C133.502 31.4346 133.64 30.761 133.64 30.0802C133.64 29.3995 133.502 28.7258 133.236 28.1004C132.969 27.475 132.579 26.9109 132.089 26.4425C131.599 25.9742 131.02 25.6113 130.386 25.3762C129.753 25.141 129.078 25.0384 128.404 25.0747V25.0739ZM128.466 32.8419H125.073V27.3174H128.466C128.83 27.3099 129.192 27.3759 129.531 27.5113C129.87 27.6468 130.178 27.8491 130.439 28.1064C130.699 28.3636 130.906 28.6706 131.047 29.0095C131.188 29.3484 131.261 29.7122 131.261 30.0798C131.261 30.4473 131.188 30.8112 131.047 31.15C130.906 31.4889 130.699 31.7959 130.439 32.0532C130.178 32.3104 129.87 32.5127 129.531 32.6482C129.192 32.7837 128.83 32.8496 128.466 32.8421V32.8419ZM143.208 30.5273C142.337 30.4761 141.471 30.6823 140.715 31.1206C139.959 31.559 139.346 32.2104 138.952 32.9949L141.069 33.8866C141.279 33.4972 141.597 33.178 141.985 32.968C142.372 32.7581 142.811 32.6665 143.249 32.7046C143.854 32.645 144.458 32.8297 144.928 33.2183C145.398 33.6069 145.696 34.1677 145.757 34.7777V34.9437C144.991 34.5333 144.137 34.3196 143.269 34.3216C140.987 34.3216 138.664 35.5865 138.664 37.9503C138.686 38.4485 138.807 38.9371 139.02 39.3872C139.233 39.8372 139.534 40.2395 139.904 40.5702C140.274 40.9009 140.706 41.1533 141.175 41.3123C141.643 41.4714 142.139 41.5338 142.632 41.496C143.233 41.5317 143.832 41.4043 144.367 41.1272C144.902 40.85 145.354 40.4333 145.675 39.9202H145.757V41.1643H148.06V34.9857C148.06 32.1242 145.942 30.5275 143.208 30.5275L143.208 30.5273ZM142.92 39.3606C142.139 39.3606 141.049 38.9667 141.049 37.992C141.049 36.748 142.406 36.271 143.578 36.271C144.339 36.2506 145.092 36.4368 145.757 36.8102C145.67 37.5093 145.334 38.1528 144.813 38.6216C144.291 39.0905 143.619 39.3531 142.92 39.3608L142.92 39.3606ZM156.449 30.8799L153.715 37.8678H153.633L150.795 30.8801H148.225L152.481 40.6465L150.055 46.0791H152.543L159.102 30.8801L156.449 30.8799ZM134.963 41.1918H137.348V25.0741H134.963V41.1918Z' fill='white'/%3E%3Cpath d='M11.5963 12.2323C11.1771 12.7378 10.9654 13.3858 11.0047 14.0436V42.5569C10.9652 43.2148 11.1769 43.8631 11.5963 44.3686L11.6909 44.4614L27.529 28.489V28.1121L11.6909 12.1387L11.5963 12.2323Z' fill='url(%23paint0_linear_852_4709)'/%3E%3Cpath d='M32.8073 33.8155L27.5283 28.4891V28.1122L32.8085 22.7871L32.9276 22.8555L39.1826 26.4398C40.9692 27.4634 40.9692 29.1385 39.1826 30.1632L32.9276 33.7475L32.8073 33.8155Z' fill='url(//monetag.com/wp-content/themes/pubbrand/%23paint1_linear_852_4709)'/%3E%3Cpath d='M32.9286 33.7458L27.5293 28.2999L11.5967 44.3684C11.9607 44.6922 12.4256 44.8773 12.9108 44.8918C13.396 44.9063 13.8709 44.7491 14.2533 44.4476L32.9283 33.7462' fill='url(//monetag.com/wp-content/themes/pubbrand/%23paint2_linear_852_4709)'/%3E%3Cpath d='M32.9283 22.8546L14.2533 12.1532C13.8709 11.8516 13.396 11.6945 12.9108 11.7089C12.4256 11.7234 11.9607 11.9086 11.5967 12.2324L27.5293 28.3004L32.9283 22.8546Z' fill='url(//monetag.com/wp-content/themes/pubbrand/%23paint3_linear_852_4709)'/%3E%3Cpath opacity='0.2' d='M32.8096 33.6251L14.2533 44.2579C13.8857 44.5402 13.437 44.6942 12.9749 44.6967C12.5128 44.6992 12.0625 44.5501 11.6919 44.2718L11.5967 44.3678L11.6913 44.4606L11.6919 44.4599C12.0625 44.7383 12.5128 44.8876 12.9749 44.8851C13.437 44.8826 13.8857 44.7286 14.2533 44.4462L32.9283 33.7448L32.8096 33.6251Z' fill='black'/%3E%3Cpath opacity='0.12' d='M11.5963 44.1804C11.1771 43.6749 10.9654 43.0269 11.0046 42.3691V42.5575C10.9654 43.2152 11.1771 43.8631 11.5963 44.3685L11.6915 44.2725L11.5963 44.1804Z' fill='black'/%3E%3Cpath opacity='0.12' d='M39.1836 29.9736L32.8096 33.6262L32.9286 33.7462L39.1836 30.1619C39.5515 30.0008 39.8698 29.7432 40.1054 29.4159C40.3411 29.0886 40.4854 28.7036 40.5234 28.3009C40.4444 28.6656 40.2821 29.0066 40.0495 29.297C39.817 29.5873 39.5205 29.819 39.1836 29.9736Z' fill='black'/%3E%3Cpath opacity='0.25' d='M14.2532 12.3421L39.1835 26.6272C39.5205 26.7818 39.817 27.0135 40.0496 27.304C40.2822 27.5945 40.4444 27.9356 40.5232 28.3004C40.4855 27.8976 40.3413 27.5124 40.1056 27.185C39.87 26.8576 39.5515 26.5999 39.1835 26.4389L14.2532 12.1538C12.4664 11.13 11.0049 11.9804 11.0049 14.0443V14.2326C11.0049 12.1689 12.4664 11.3184 14.2532 12.3421Z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_852_4709' x1='26.1245' y1='13.7429' x2='4.48838' y2='35.1967' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2300A0FF'/%3E%3Cstop offset='0.0066' stop-color='%2300A1FF'/%3E%3Cstop offset='0.2601' stop-color='%2300BEFF'/%3E%3Cstop offset='0.5122' stop-color='%2300D2FF'/%3E%3Cstop offset='0.7604' stop-color='%2300DFFF'/%3E%3Cstop offset='1' stop-color='%2300E3FF'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_852_4709' x1='41.5091' y1='28.3013' x2='10.5759' y2='28.3013' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFE000'/%3E%3Cstop offset='0.4087' stop-color='%23FFBD00'/%3E%3Cstop offset='0.7754' stop-color='%23FFA500'/%3E%3Cstop offset='1' stop-color='%23FF9C00'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_852_4709' x1='29.9948' y1='31.2591' x2='0.654543' y2='60.352' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF3A44'/%3E%3Cstop offset='1' stop-color='%23C31162'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_852_4709' x1='7.58473' y1='2.74114' x2='20.6863' y2='15.7324' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2332A071'/%3E%3Cstop offset='0.0685' stop-color='%232DA771'/%3E%3Cstop offset='0.4762' stop-color='%2315CF74'/%3E%3Cstop offset='0.8009' stop-color='%2306E775'/%3E%3Cstop offset='1' stop-color='%2300F076'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.fbl-pay {
display: flex;
}
.fbl-pay-item {
display: block;
width: 40px;
height: 26px;
background-position: center center;
background-size: contain;
background-repeat: no-repeat;
}
.fbl-pay-item:nth-child(2) {
margin-right: 7.5px;
}
.fbl-pay-item:nth-child(odd) {
margin-right: 2px;
}
.fbl-pay-visa {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.46 0H0v25.27h39.46V0Z' fill='%23fff'/%3E%3Cpath d='M38.79 21.16H.66v3.45h38.13v-3.45Z' fill='%23F7B600'/%3E%3Cpath d='M38.79.66H.66v3.45h38.13V.66ZM15.92 7.9l-3.94 9.48H9.41L7.47 9.82A1.04 1.04 0 0 0 6.9 9c-.77-.37-1.57-.64-2.4-.8l.06-.28h4.13a1.13 1.13 0 0 1 1.12.96l1.03 5.49 2.53-6.45h2.55Zm10.07 6.4c0-2.51-3.43-2.65-3.4-3.77 0-.34.32-.7 1.02-.79.83-.08 1.65.07 2.4.42l.43-2a6.5 6.5 0 0 0-2.28-.42c-2.4 0-4.09 1.28-4.1 3.13-.02 1.36 1.2 2.12 2.12 2.58.95.46 1.27.76 1.26 1.17 0 .64-.75.92-1.45.93a5.05 5.05 0 0 1-2.5-.6l-.44 2.08c.86.34 1.78.5 2.7.5 2.56 0 4.23-1.27 4.24-3.24m6.34 3.1h2.25L32.62 7.9h-2.08a1.1 1.1 0 0 0-1.03.7l-3.65 8.78h2.55l.51-1.42h3.12l.3 1.42Zm-2.7-3.36 1.27-3.56.74 3.56h-2.02ZM19.38 7.9l-2 9.47h-2.44l2.01-9.47h2.43Z' fill='%231A1F71'/%3E%3C/svg%3E");
}
.fbl-pay-visa-el {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.79 25.27H.34V0h39.47v25.27h-.02Z' fill='%23fff'/%3E%3Cpath d='M1 21.16h38.13v3.45H1v-3.45Z' fill='%23F7B600'/%3E%3Cpath d='M1 4.11h38.13V.66H1v3.45ZM19.3 7.22l-1.9 9.01h-2.32l1.92-9h2.3Zm9.73 5.82 1.22-3.38.7 3.38h-1.92Zm2.58 3.2h2.14l-1.87-9.02H29.9a1.04 1.04 0 0 0-.99.66l-3.46 8.35h2.42l.48-1.34h2.97l.28 1.34Zm-6.03-2.95c0-2.38-3.26-2.5-3.24-3.57 0-.32.31-.67.98-.76.78-.07 1.57.07 2.28.4l.4-1.9c-.69-.26-1.42-.4-2.16-.4-2.28 0-3.9 1.22-3.9 2.98-.02 1.3 1.14 2.02 2.02 2.45.9.44 1.2.72 1.2 1.12 0 .6-.72.87-1.38.88a4.8 4.8 0 0 1-2.38-.57l-.42 1.98c.82.32 1.7.48 2.57.47 2.43 0 4.02-1.2 4.03-3.08M16 7.22l-3.74 9.01H9.82L7.97 9.04a1 1 0 0 0-.54-.79c-.73-.35-1.5-.6-2.28-.77l.05-.26h3.93a1.07 1.07 0 0 1 1.07.92l.97 5.21 2.4-6.13H16ZM22.26 18.71h-.93v.88h1.05v.27H21V17.4h1.31v.27h-1v.77h.94v.26ZM22.86 17.28h.32v2.58h-.32v-2.58ZM24.9 18.81a.46.46 0 0 0-.25-.47.45.45 0 0 0-.19-.04.52.52 0 0 0-.48.51h.92Zm-.92.23a.56.56 0 0 0 .35.57c.08.03.16.04.24.04.17 0 .33-.03.48-.1l.06.24a1.41 1.41 0 0 1-.92.05.81.81 0 0 1-.52-.83.85.85 0 0 1 .48-.86.73.73 0 0 1 1.03.44c.03.1.04.2.03.3l-.01.15h-1.22ZM26.93 19.8a1.21 1.21 0 0 1-.84.04.83.83 0 0 1-.52-.84.9.9 0 0 1 .57-.88.88.88 0 0 1 .36-.05c.15 0 .3.03.44.09l-.07.24a.77.77 0 0 0-.62-.03.6.6 0 0 0-.36.61.6.6 0 0 0 .36.61.6.6 0 0 0 .24.05.9.9 0 0 0 .39-.08l.05.24ZM27.82 17.68v.42h.45v.25h-.45v.94c0 .22.06.34.24.34.06 0 .12 0 .18-.02l.02.24a.86.86 0 0 1-.28.05.45.45 0 0 1-.35-.14.7.7 0 0 1-.12-.46v-.95h-.27v-.25h.27v-.32l.31-.1ZM28.72 18.65c0-.2 0-.38-.02-.55h.28l.01.35H29a.53.53 0 0 1 .49-.38h.09v.3h-.11a.44.44 0 0 0-.43.4V19.86h-.32v-1.2ZM30.14 18.98c0 .39.22.68.53.68.3 0 .53-.29.53-.68 0-.3-.15-.67-.52-.67-.38 0-.54.34-.54.67m1.38-.01a.87.87 0 0 1-.52.86.85.85 0 0 1-.35.07.82.82 0 0 1-.79-.56.84.84 0 0 1-.04-.34.87.87 0 0 1 .52-.87.84.84 0 0 1 .34-.06.82.82 0 0 1 .8.55c.04.11.05.23.04.35M32 18.58v-.48h.27l.02.3a.65.65 0 0 1 .58-.33c.24 0 .62.14.62.74v1.05h-.32v-1.01c0-.29-.1-.52-.4-.52a.46.46 0 0 0-.43.32.45.45 0 0 0-.02.15v1.06h-.31v-1.28Z' fill='%231A1F71'/%3E%3C/svg%3E");
}
.fbl-pay-master {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.66 0H.19v25.27h39.47V0Z' fill='%23000'/%3E%3Cpath d='M12.23 22.07v-1.25a.75.75 0 0 0-.4-.72.73.73 0 0 0-.38-.08.76.76 0 0 0-.7.36.73.73 0 0 0-.65-.36.65.65 0 0 0-.59.3v-.25h-.43v2h.44v-1.1a.47.47 0 0 1 .22-.47.46.46 0 0 1 .26-.06c.29 0 .44.19.44.53v1.11h.43v-1.11a.47.47 0 0 1 .4-.53h.09c.3 0 .43.19.43.53v1.11h.44Zm6.45-2h-.7v-.6h-.44v.6h-.4v.4h.4v.92c0 .46.18.74.7.74a1 1 0 0 0 .54-.15l-.13-.38a.8.8 0 0 1-.38.12c-.2 0-.29-.14-.29-.34v-.91h.7v-.4Zm3.69-.05a.58.58 0 0 0-.52.3v-.25h-.43v2h.43v-1.12c0-.33.14-.52.41-.52.1 0 .19.02.27.05l.14-.41a.92.92 0 0 0-.31-.06Zm-5.57.2a1.48 1.48 0 0 0-.81-.2c-.5 0-.83.24-.83.64 0 .33.24.53.68.59l.21.03c.24.03.35.1.35.2 0 .16-.16.25-.45.25-.24 0-.47-.06-.66-.2l-.21.33c.25.18.55.27.86.26.57 0 .9-.27.9-.65s-.26-.54-.69-.6l-.2-.03c-.2-.03-.34-.06-.34-.2 0-.13.14-.23.37-.23.22 0 .44.06.63.17l.19-.35Zm11.57-.2a.58.58 0 0 0-.52.3v-.25h-.43v2h.43v-1.12c0-.33.14-.52.41-.52.1 0 .19.02.28.05l.13-.41a.92.92 0 0 0-.3-.06Zm-5.57 1.05a1.02 1.02 0 0 0 .97 1.04h.1c.25.02.5-.07.7-.24l-.2-.35a.87.87 0 0 1-.52.18.63.63 0 0 1-.56-.44.65.65 0 0 1 .16-.65c.1-.11.25-.18.4-.19.19 0 .37.07.52.18l.2-.35c-.2-.17-.45-.25-.7-.24a1 1 0 0 0-.97.57 1.02 1.02 0 0 0-.1.48Zm4.05 0v-1h-.43v.24a.75.75 0 0 0-.63-.3c-.27 0-.54.12-.73.32a1.05 1.05 0 0 0 .73 1.78.75.75 0 0 0 .63-.29v.24h.43v-1Zm-1.6 0a.6.6 0 0 1 .63-.57c.15 0 .3.08.4.2a.6.6 0 0 1-.03.84.6.6 0 0 1-1-.47Zm-5.22-1.05a1.03 1.03 0 0 0-.95.66 1.05 1.05 0 0 0 .24 1.14c.2.2.46.3.74.3.3 0 .59-.09.82-.28l-.2-.32a.94.94 0 0 1-.58.2.55.55 0 0 1-.6-.48h1.48v-.17a.96.96 0 0 0-.56-.97.94.94 0 0 0-.39-.08Zm0 .39a.49.49 0 0 1 .46.3.5.5 0 0 1 .04.18h-1.04a.52.52 0 0 1 .53-.48Zm10.82.66v-1.8h-.41v1.04a.76.76 0 0 0-.63-.3c-.27 0-.54.12-.73.32a1.05 1.05 0 0 0 .73 1.78.75.75 0 0 0 .63-.29v.24h.41v-.99Zm.72.71a.2.2 0 0 1 .14.06.2.2 0 0 1-.06.32.2.2 0 0 1-.08.02.2.2 0 0 1-.19-.13.2.2 0 0 1 0-.15.2.2 0 0 1 .2-.12Zm0 .35a.15.15 0 0 0 .1-.04.16.16 0 0 0 0-.21.15.15 0 0 0-.17-.03.15.15 0 0 0-.04.03.16.16 0 0 0 0 .2l.05.04.07.01Zm.01-.25.06.02a.05.05 0 0 1 .02.05.05.05 0 0 1-.02.03.07.07 0 0 1-.04.02l.06.07h-.05l-.06-.07h-.01v.07h-.04v-.18h.08Zm-.04.04v.05h.07a.02.02 0 0 0 0-.02v-.02h-.03l-.04-.01Zm-2.29-.85a.6.6 0 0 1 .64-.57c.16.01.3.08.41.2a.6.6 0 0 1-.44 1.01.6.6 0 0 1-.6-.64Zm-14.58 0v-1h-.44v.24a.75.75 0 0 0-.62-.3 1.03 1.03 0 0 0-1.04 1.06 1.03 1.03 0 0 0 1.04 1.05.75.75 0 0 0 .62-.3v.24h.44v-.99Zm-1.61 0a.6.6 0 0 1 .63-.57.6.6 0 0 1 .57.64.6.6 0 0 1-.6.57.6.6 0 0 1-.6-.59v-.05Z' fill='%23fff'/%3E%3Cpath d='M23.2 4.81h-6.55v11.86h6.55V4.8Z' fill='%23FF5F00'/%3E%3Cpath d='M17.07 10.74a7.58 7.58 0 0 1 2.86-5.93A7.43 7.43 0 0 0 8.1 8.71a7.6 7.6 0 0 0 2.58 7.96 7.44 7.44 0 0 0 9.24 0 7.52 7.52 0 0 1-2.86-5.93Z' fill='%23EB001B'/%3E%3Cpath d='M32.02 10.74c0 2-.78 3.92-2.19 5.33a7.45 7.45 0 0 1-9.9.6A7.52 7.52 0 0 0 22.5 8.7a7.56 7.56 0 0 0-2.58-3.89 7.45 7.45 0 0 1 12.1 5.93ZM31.3 15.41v-.24h.1v-.05h-.24v.05h.1v.24h.05Zm.49 0v-.3h-.08l-.08.22-.1-.21h-.06v.3h.06v-.23l.08.2h.05l.09-.2v.22h.04Z' fill='%23F79E1B'/%3E%3C/svg%3E");
}
.fbl-pay-maestro {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0H.54v25.27H40V0Z' fill='%23000'/%3E%3Cpath d='M15.5 22.04V20.8a.75.75 0 0 0-.42-.72.73.73 0 0 0-.37-.08.76.76 0 0 0-.7.36.73.73 0 0 0-.65-.36.65.65 0 0 0-.58.3v-.25h-.44v2h.44v-1.1a.47.47 0 0 1 .4-.53h.09c.28 0 .43.18.43.52v1.11h.43v-1.1a.47.47 0 0 1 .4-.53h.09c.3 0 .44.18.44.52v1.11h.43Zm2.42-1v-1h-.44v.25a.75.75 0 0 0-.62-.3 1.05 1.05 0 0 0 0 2.1.75.75 0 0 0 .62-.3v.25h.44v-1Zm-1.6 0a.6.6 0 0 1 .63-.56c.16 0 .3.08.41.2a.6.6 0 0 1-.03.84.6.6 0 0 1-.41.17.6.6 0 0 1-.43-.17.6.6 0 0 1-.18-.48ZM27.14 20a1.04 1.04 0 0 1 .98.63c.1.27.1.57 0 .84a1.01 1.01 0 0 1-.56.55c-.28.11-.58.11-.86 0a1.02 1.02 0 0 1-.55-.55c-.11-.27-.11-.57 0-.84a1.02 1.02 0 0 1 .55-.55c.14-.06.29-.09.44-.09Zm0 .42a.64.64 0 0 0-.25.04.59.59 0 0 0-.32.34.73.73 0 0 0 0 .52.58.58 0 0 0 .33.34.67.67 0 0 0 .7-.13.6.6 0 0 0 .12-.2.73.73 0 0 0 0-.53.6.6 0 0 0-.13-.2.6.6 0 0 0-.2-.14.64.64 0 0 0-.25-.06v.02Zm-6.88.62a.96.96 0 0 0-.56-.96.94.94 0 0 0-.38-.08 1.03 1.03 0 0 0-1.03 1.06 1.05 1.05 0 0 0 1.06 1.03c.3.01.58-.09.8-.28l-.2-.32a.94.94 0 0 1-.58.2.55.55 0 0 1-.6-.48h1.48v-.17Zm-1.48-.17a.52.52 0 0 1 .87-.35c.1.1.15.22.15.35H18.8Zm3.3-.32c-.2-.1-.4-.16-.63-.17-.24 0-.38.1-.38.24 0 .14.15.17.34.2l.2.02c.44.07.7.25.7.6s-.33.66-.9.66c-.3 0-.6-.09-.86-.26l.2-.34c.2.14.43.21.67.2.3 0 .45-.08.45-.24 0-.11-.11-.17-.35-.2l-.2-.04c-.45-.06-.7-.26-.7-.59 0-.4.33-.64.84-.64.28 0 .56.07.8.21l-.19.35Zm2.07-.1h-.7v.9c0 .2.07.33.28.33a.8.8 0 0 0 .39-.11l.12.37a1 1 0 0 1-.54.15c-.51 0-.69-.27-.69-.74v-.9h-.4v-.4h.4v-.61h.44v.6h.7v.4Zm1.5-.46c.1 0 .2.02.3.06l-.13.42a.7.7 0 0 0-.27-.05c-.28 0-.42.18-.42.51v1.12h-.43v-2h.43v.24a.59.59 0 0 1 .52-.29Zm2.98 1.76a.2.2 0 0 1 .14.06l.05.06a.2.2 0 0 1-.1.26.2.2 0 0 1-.09.02.2.2 0 0 1-.19-.12.2.2 0 0 1 .05-.22.2.2 0 0 1 .13-.06h.01Zm0 .36a.15.15 0 0 0 .11-.05.16.16 0 0 0 0-.22.15.15 0 0 0-.17-.03.15.15 0 0 0-.05.03.16.16 0 0 0 0 .21.15.15 0 0 0 .11.05Zm.01-.25.06.01a.05.05 0 0 1 .02.05.05.05 0 0 1-.02.04.07.07 0 0 1-.04.02l.06.06h-.05l-.06-.06h-.01v.06h-.04v-.19h.08Zm-.04.03v.05h.07a.02.02 0 0 0 0-.02v-.01h-.03l-.04-.02Z' fill='%23fff'/%3E%3Cpath d='M23.54 4.78H17v11.86h6.54V4.78Z' fill='%237673C0'/%3E%3Cpath d='M17.41 10.71a7.58 7.58 0 0 1 2.86-5.93 7.43 7.43 0 0 0-10.5 1.27 7.59 7.59 0 0 0 1.26 10.59 7.44 7.44 0 0 0 9.24 0 7.52 7.52 0 0 1-2.86-5.93Z' fill='%23EB001B'/%3E%3Cpath d='M31.65 15.38v-.23h.1v-.05h-.25v.05h.1v.24h.05Zm.48 0v-.3h-.07l-.09.22-.09-.21h-.07v.3h.05v-.23l.08.2H32l.08-.2v.22h.05ZM32.36 10.71a7.6 7.6 0 0 1-4.61 6.97 7.42 7.42 0 0 1-7.48-1.04 7.56 7.56 0 0 0 0-11.86 7.43 7.43 0 0 1 10.5 1.27 7.58 7.58 0 0 1 1.6 4.66Z' fill='%2300A1DF'/%3E%3C/svg%3E");
}
.fbr-title {
display: block;
font-weight: 700;
font-size: 32px;
line-height: 44px;
margin-bottom: 35px;
}
.fbr-title:hover {
color: rgba(118, 92, 246, 1);
}
.fbr-support {
display: inline-block;
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 17px;
}
.fbr-mail {
display: inline-block;
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.fbr-support:hover,
.fbr-mail:hover {
color: var(--color-green-hover);
text-decoration: underline;
}
.fbr-social {
margin-top: 56px;
display: flex;
}
.fbr-social-link {
display: block;
width: 40px;
height: 40px;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
.fbr-social-link:not(:last-child) {
margin-right: 10px;
}
.fbr-social-link:focus {
transform: translateY(0) !important;
}
.fbr-social-ins {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='8' fill='%232A1C53'/%3E%3Cpath d='M25.8036 9.58371C28.2691 9.58371 30.2679 11.5824 30.2679 14.048V25.9528C30.2679 28.4183 28.2691 30.417 25.8036 30.417H14.1964C11.7309 30.417 9.73214 28.4183 9.73214 25.9528V14.048C9.73214 11.5824 11.7309 9.58371 14.1964 9.58371H25.8036ZM25.8036 7.35156H14.1964C10.504 7.35156 7.5 10.3555 7.5 14.048V25.9528C7.5 29.6452 10.504 32.6492 14.1964 32.6492H25.8036C29.496 32.6492 32.5 29.6452 32.5 25.9528V14.048C32.5 10.3555 29.496 7.35156 25.8036 7.35156Z' fill='white'/%3E%3Cpath d='M20.0002 15.8698C22.2808 15.8698 24.1296 17.7187 24.1296 19.9993C24.1296 22.2799 22.2808 24.1288 20.0002 24.1288C17.7195 24.1288 15.8707 22.2799 15.8707 19.9993C15.8707 17.7187 17.7195 15.8698 20.0002 15.8698ZM20.0002 13.6377C16.4924 13.6377 13.6385 16.4915 13.6385 19.9993C13.6385 23.5071 16.4924 26.3609 20.0002 26.3609C23.508 26.3609 26.3618 23.5071 26.3618 19.9993C26.3618 16.4915 23.508 13.6377 20.0002 13.6377Z' fill='white'/%3E%3Cpath d='M26.7336 14.9033C27.5966 14.9033 28.2961 14.2038 28.2961 13.3408C28.2961 12.4779 27.5966 11.7783 26.7336 11.7783C25.8707 11.7783 25.1711 12.4779 25.1711 13.3408C25.1711 14.2038 25.8707 14.9033 26.7336 14.9033Z' fill='white'/%3E%3C/svg%3E");
}
.fbr-social-ins:hover {
}
.fbr-social-twi {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='8' fill='%232A1C53'/%3E%3Cg clip-path='url(%23clip0_190_645)'%3E%3Crect width='27' height='28' transform='translate(7 7)' fill='white'/%3E%3Cpath d='M20.3114 19.2505L14.891 11.666H12L18.7145 21.0605L19.5597 22.2423L25.307 30.2905H28.198L21.1531 20.4323L20.3114 19.2505Z' fill='%232A1C53'/%3E%3Cpath d='M32.2132 6.33301H7.78711C6.43197 6.33301 5.3335 7.43148 5.3335 8.78662V33.2127C5.3335 34.5679 6.43197 35.6663 7.78711 35.6663H32.2132C33.5684 35.6663 34.6668 34.5679 34.6668 33.2127V8.78662C34.6668 7.43148 33.5684 6.33301 32.2132 6.33301ZM24.314 31.6663L18.4972 23.3823L11.2154 31.6663H9.3335L17.6627 22.1934L9.3335 10.333H15.6864L21.1932 18.1756L28.0929 10.333H29.9748L22.0321 19.3672L30.6668 31.6663H24.314Z' fill='%232A1C53'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_190_645'%3E%3Crect width='27' height='28' fill='white' transform='translate(7 7)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.fbr-social-twi:hover {
}
.fbr-social-fac {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='8' fill='%232A1C53'/%3E%3Cpath d='M27.7852 25.7813L28.6719 20H23.125V16.2483C23.125 14.6667 23.8998 13.125 26.3843 13.125H28.9063V8.20313C28.9063 8.20313 26.6175 7.8125 24.4293 7.8125C19.8609 7.8125 16.875 10.5812 16.875 15.5938V20H11.7969V25.7813H16.875L16.875 40H23.125V25.7813H27.7852Z' fill='white'/%3E%3C/svg%3E");
}
.fbr-social-fac:hover {
}
.fbr-social-lin {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='8' fill='%232A1C53'/%3E%3Cpath d='M14.9 15H10.4V28.6H14.9V15Z' fill='white'/%3E%3Cpath d='M12.6 13.1C11.1 13.1 10.1 12.1 10.1 10.8C10.1 9.5 11.1 8.5 12.7 8.5C14.2 8.5 15.2 9.5 15.2 10.8C15.2 12.1 14.2 13.1 12.6 13.1Z' fill='white'/%3E%3Cpath d='M31.2 28.5006H26.7V21.2006C26.7 19.4006 26 18.1006 24.4 18.1006C23.2 18.1006 22.4 18.9006 22.1 19.8006C22 20.1006 22 20.5006 22 20.9006V28.5006H17.5C17.5 28.5006 17.6 16.2006 17.5 14.9006H22V16.8006C22.6 15.9006 23.7 14.6006 26.1 14.6006C29.1 14.6006 31.3 16.5006 31.3 20.7006V28.5006H31.2Z' fill='white'/%3E%3C/svg%3E");
}
.fbr-social-lin:hover {
}
.fbr-social-you {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 0C3.58172 0 0 3.58172 0 8V32C0 36.4183 3.58172 40 8 40H32C36.4183 40 40 36.4183 40 32V8C40 3.58172 36.4183 0 32 0H8ZM31.9824 26.0324C32.4969 24.0765 32.4969 20.0204 32.4969 20.0204C32.4969 20.0204 32.5177 15.9442 31.9824 13.9883C31.694 12.9178 30.8499 12.0734 29.7794 11.7853C27.8235 11.25 20 11.25 20 11.25C20 11.25 12.1765 11.25 10.2206 11.7648C9.17053 12.0529 8.30566 12.9178 8.01758 13.9883C7.50275 15.9442 7.50275 20 7.50275 20C7.50275 20 7.50275 24.0765 8.01758 26.0117C8.30597 27.0822 9.15009 27.9266 10.2206 28.2147C12.197 28.75 20 28.75 20 28.75C20 28.75 27.8235 28.75 29.7794 28.2352C30.8499 27.9471 31.694 27.103 31.9824 26.0324Z' fill='%232A1C53'/%3E%3Cpath d='M17.5089 23.7468L24.0146 19.9999L17.5089 16.2529V23.7468Z' fill='%232A1C53'/%3E%3C/svg%3E");
}
.fbr-social-you:hover {
}
.fbr-social-tel {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='40' height='40' rx='8' fill='%232A1C53'/%3E%3Cpath d='M24 14.8005L15 23.2005C14.7 23.5005 14.5 23.9005 14.4 24.3005L14.1 26.6005C14.1 26.9005 13.6 26.9005 13.5 26.6005L12.3 22.5005C12.2 22.0005 12.4 21.5005 12.8 21.3005L23.7 14.6005C24 14.4005 24.2 14.7005 24 14.8005ZM28.4 10.2005L5.39995 19.1005C4.79995 19.3005 4.79995 20.1005 5.39995 20.3005L11 22.4005L13.2 29.4005C13.3 29.8005 13.9 30.0005 14.2 29.7005L17.3 27.2005C17.6 26.9005 18.1 26.9005 18.4 27.2005L24 31.3005C24.4 31.6005 24.9 31.4005 25 30.9005L29.2 11.0005C29.3 10.4005 28.7999 10.0005 28.4 10.2005Z' fill='white'/%3E%3C/svg%3E");
}
.footer__bottom_menu ul {
display: flex;
flex-wrap: wrap;
}
.footer__bottom_menu ul li:not(:last-child) {
margin-right: 30px;
}
.footer__bottom_menu ul li a {
font-weight: 700;
font-size: 16px;
line-height: 28px;
}
.footer__bottom_menu ul li a:hover {
color: var(--color-black);
text-decoration: underline;
}
.footer__bottom_copyright {
font-size: 14px;
line-height: 23px;
opacity: 0.4;
}   .error404 {
}
.error404 .footer {
padding-top: 20px;
}
.error404 .footer-bg {
display: none;
}
.error404 .footer__bottom {
margin-top: 0;
}
.error404 .mainError {
padding: 100px 0 180px;
}
.mainError__line {
top: 0;
right: 0;
z-index: -1;
display: block;
width: 100%;
height: 100%;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='920' height='696' viewBox='0 0 920 696' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3' filter='url(%23filter0_f_69_8082)'%3E%3Cpath d='M1125 83.4166C659.004 47.3041 590.089 304.658 465.505 515.689C374.081 670.551 219.395 650.048 122 627.526' stroke='url(//monetag.com/wp-content/themes/pubbrand/%23paint0_linear_69_8082)' stroke-width='32' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cg filter='url(//monetag.com/wp-content/themes/pubbrand/%23filter1_f_69_8082)'%3E%3Cpath d='M5 681.903C119.669 686.86 112.735 499.967 253.538 499.967C338.339 499.967 346.339 592.67 452.474 592.67C586.333 592.67 498.342 329.432 637.544 329.432C700.479 329.432 751.667 385.946 809.281 385.946C936.216 385.946 810.861 14 1125 14' stroke='url(//monetag.com/wp-content/themes/pubbrand/%23paint1_linear_69_8082)' stroke-width='20'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_69_8082' x='99.9965' y='58.0028' width='1047' height='606.995' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='3' result='effect1_foregroundBlur_69_8082'/%3E%3C/filter%3E%3Cfilter id='filter1_f_69_8082' x='0.568054' y='0' width='1128.43' height='696' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='2' result='effect1_foregroundBlur_69_8082'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_69_8082' x1='-23.0402' y1='379.468' x2='1416.53' y2='379.468' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.0677' stop-color='white' stop-opacity='0'/%3E%3Cstop offset='0.1909' stop-color='%2300DBC7' stop-opacity='0.4'/%3E%3Cstop offset='0.2119' stop-color='%2300DBC7' stop-opacity='0.4794'/%3E%3Cstop offset='0.348958' stop-color='%23755BF6'/%3E%3Cstop offset='0.489583' stop-color='%230286FF'/%3E%3Cstop offset='0.844216' stop-color='%230286FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_69_8082' x1='109.002' y1='681.903' x2='923.994' y2='137.675' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23ECF1FE' stop-opacity='0'/%3E%3Cstop offset='0.317708' stop-color='%239786F8'/%3E%3Cstop offset='0.645833' stop-color='%23765CF6'/%3E%3Cstop offset='0.973958' stop-color='%23765CF6' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
no-repeat center right / contain;
}
.mainError__wrap {
text-align: center;
}
.mainError__wrap_numb {
margin: 0 auto 30px;
display: block;
width: 100%;
max-width: 491px;
height: 203px;  }
.mainError__wrap_desc {
font-size: 22px;
line-height: 34px;
margin-bottom: 50px;
}
.mainError__wrap_btn {
} .blogError {
padding: 60px 0 80px;
}
.blogError__title {
font-size: 48px;
line-height: 60px;
}
.blogError__title span {
font-weight: 700;
}
.blogError__icon {
margin: 20px 0;
}
.blogError__icon svg {
max-width: 100%;
height: auto;
}
.blogError__subtitle {
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.blogError__desc {
font-weight: 400;
font-size: 32px;
line-height: 44px;
margin-bottom: 50px;
}
.blogError__btn {
}  .technic {
padding: 100px 0 76px;
position: relative;
}
.technicBody,
.technicBody section {
overflow: visible;
}
.technic__bg {
display: block; width: 100%;
height: 600px;
position: absolute;
top: 0;
left: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/bg_hero.svg) no-repeat center center /
cover;
}
.technic__name {
font-weight: 700;
font-size: 48px;
line-height: 60px;
}
.technicBody {
position: relative;
}
.technicBody__content {
max-width: 763px;
}
.technicBody__content h1 {
font-weight: 700;
font-size: 32px;
line-height: 44px;
margin-bottom: 30px;
}
.technicBody__content p {
font-size: 16px;
line-height: 28px;
margin-bottom: 24px;
}
.technicBody__content h2 {
font-weight: 700;
margin-bottom: 30px;
}
.title_size_h2 {
font-size: 32px;
line-height: 44px;
}
.title_size_h3 {
font-size: 26px;
line-height: 36px;
}
.title_size_h4 {
font-size: 22px;
line-height: 34px;
}
.technicBody__content ol {
margin-bottom: 30px;
padding-left: 30px;
}
.technicBody__content ol li {
font-size: 16px;
line-height: 28px;
font-weight: 700;
list-style: decimal;
}
.technicBody__content ol li:not(:last-child) {
margin-bottom: 12px;
}
.technicBody__content article:first-child {
padding-top: 100px !important;
}
.technicBody__content article:not(:first-child) {
padding-top: 100px;
}
.cookies-policy .technicBody__content article:not(:first-child),
.privacy-policy .technicBody__content article:not(:first-child) {
padding-top: 80px !important;
}
.technicBody.cookies-policy
.technicBody__content
article:is(:nth-child(2), :nth-child(3), :nth-child(4)),
.technicBody.privacy-policy
.technicBody__content
article:is(:nth-child(2), :nth-child(3), :nth-child(4)) {
padding-top: 100px;
}
.technicBody__content article {
overflow-x: hidden;
}
.technicBody__content article p:last-child {
margin-bottom: 0;
}
.technicBody__content article a {
font-weight: 700;
}
.technicBody__content article a:hover {
text-decoration: underline;
}
.technicBody__content article table {
overflow-x: scroll;
margin-top: 30px;
}
.technicBody__content article table,
.technicBody__content article th,
.technicBody__content article td {
border: 1px solid #c8befb;
padding: 15px;
font-size: 14px;
line-height: 23px;
}
.technicBody__content article table thead {
}
.technicBody__content article table tbody {
}
.technicBody__content article table td {
vertical-align: top; width: 33%;
}
.technicBody__content article table td ul {
margin-top: 10px;
margin-bottom: 0;
}
.technicBody__content article table td ul br {
display: none;
}
.technicBody__content article table td ul li {
font-size: 14px;
line-height: 23px;
}
.technicBody__content .technicBody_create_text {
margin-top: 20px;
}
.technicBody__content h3 {
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 30px;
}
.technicBody__content ul {
margin-bottom: 24px;
}
.technicBody__content ul li {
font-size: 16px;
line-height: 28px;
margin-left: 30px;
position: relative;
}
.technicBody__content ul li::before {
content: "";
position: absolute;
top: 10px;
left: -15px;
display: block;
width: 4px;
height: 4px;
background-color: var(--color-violet-light);
border-radius: 50%;
}
.technicBody__content ul li:not(:last-child) {
margin-bottom: 15px;
}
.technicBody__content_btn {
border: none;
background: none;
text-decoration: underline;
font-size: 22px;
line-height: 34px;
margin-top: 30px;
outline: none;
}
.technicBody__content_modal {
}
.technicBody__content_modal .modal-content {
box-shadow: 0px 8.9px 20.7667px rgba(118, 115, 192, 0.1);
backdrop-filter: blur(6px);
border-radius: 8px;
border: none;
}
.technicBody__content_modal .btn-close {
position: absolute;
top: 20px;
right: 20px;
width: 14px;
height: 14px;
padding: 0;
}
.technicBody__content_modal .modal-body {
padding: 40px 31px;
text-align: center;
font-size: 22px;
line-height: 34px;
}
.modal-backdrop {
background-color: #2a1c53;
opacity: 0.2;
}
.technicBody__date {
font-weight: 700;
font-size: 16px;
line-height: 28px;
margin: 24px 0 0;
} .technicBody__aside {
padding-top: 100px; }
.technicBody__aside-sticky {
margin-left: auto;
max-width: 360px;
background-color: var(--color-white);
padding: 40px 27px;
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
}
.technicBody__aside * {
margin-bottom: 12px;
}
.technicBody__aside_list li a {
font-weight: 700;
font-size: 16px;
line-height: 28px;
}
.technicBody__aside_list li a.active {
color: var(--color-violet-light);
}
.technicBody__aside_list li:not(.active) a:hover {
text-decoration: underline;
}  .blogMain {
position: relative;
padding: 40px 0 60px;
}
.blogMain::after {
content: "";
display: none;
max-width: 1440px;
width: 100%;
height: 980px;
position: absolute;
top: 300px;
left: 50%;
transform: translate(-50%, 0px); background: linear-gradient(
112.32deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
opacity: 0.3;
filter: blur(50px);
z-index: -1;
}
.blogMain__category {
margin-bottom: 40px;
width: 100%;
}
.blogMain__category .category__menu {
width: 100%;
background: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 100px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding: 0 40px;
} .blogMain__category .category__menu .category__menu_item button,
.blogMain__category .category__menu .category__menu_item a {
display: block;
padding: 14px 32px;
border: 2px solid transparent;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
line-height: 28px;
background: none;
}
.blogMain__category
.category__menu
.category__menu_item
button:not(.active):hover,
.blogMain__category .category__menu .category__menu_item a:not(.active):hover {
background-color: var(--color-violet);
color: var(--color-white);
}
.blogMain__category .category__menu .category__menu_item button.active,
.blogMain__category .category__menu .category__menu_item a.active,
.category .reviewCat .blogMain__category .reviews a {
border-color: #2a1c53;
color: #765cf6;
cursor: auto;
pointer-events: none;
}
.no-posts {
height: 20vh;
}
.blogMain__post-big {
display: flex;
height: 100%;
}
.blogMain__post-big .blogMain__post_img {
max-width: 560px;
height: 100%;
}
.blogMain__post-big .blogMain__post_wrap {
margin-left: 40px;
max-width: 560px;
}
.blogMain__post-big .bpw-title {
font-weight: 700;
font-size: 32px;
line-height: 44px;
margin: 15px 0 17px;
}
.blogMain__post-mini {
max-width: 360px;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.blogMain__post_img {
position: relative;
width: 100%;
}
.blogMain__post_img::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
bottom: -10px;
right: -10px;
background: linear-gradient(
75.96deg,
#cdfc81 0%,
rgba(205, 252, 129, 0) 100%
);
z-index: -1;
}
.blogMain__post_img a {
display: flex;
width: 100%;
}
body.search-results .blogMain__post_img a {
width: 360px;
}
body.search-results .postLike__wrap .blogMain__post_img a {
width: 100%;
}
.blogMain__post_img img {
width: 100%;
}
.blogMain__post-mini {
margin-top: 70px;
}
.blogMain__post-mini .blogMain__post_wrap {
background: linear-gradient(
180deg,
#ffffff 0%,
rgba(255, 255, 255, 0.9) 100%
);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
padding: 40px 16px;
margin-top: 20px;
}
.bpw-category {
flex-wrap: wrap;
}
.bpw-category a {
font-weight: 700;
font-size: 16px;
line-height: 28px;
color: #765cf6;
}
.bpw-category a::after {
content: "|";
font-weight: 700;
line-height: 16px;
color: var(--color-violet-light);
margin: 0 4px;
}
.bpw-category a:hover {
text-decoration: underline;
}
.bpw-category time {
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
.bpw-title {
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.bpw-desc {
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
.bpw-desc span {
font-weight: 400;
background: #cdfc81;
padding: 4px 0;
}
.bpw-person-avatar {
width: 23px;
height: 23px;
border-radius: 100px;
}
.bpw-person-name {
display: inline-block;
font-weight: 400;
font-size: 16px;
line-height: 28px;
margin-left: 10px;
}
.blogMain__banner {
margin-top: 100px;
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.46);
border-radius: 32px;
padding: 20px 24px;
}
.blogMain__banner p {
margin: 0 20px 0 0;
font-weight: 400;
font-size: 32px;
line-height: 44px;
}
.blogMain__banner_img {
display: block;
max-width: 550px;
width: 100%;
height: 100%;
}
.blogMain__banner_img img {
width: 100%;
height: 100%;
}
.category-reviews .wpml-ls-statics-shortcode_actions,
.category-marketing-tools-reviews .wpml-ls-statics-shortcode_actions,
.category-marketing-resources-reviews .wpml-ls-statics-shortcode_actions {
display: none;
opacity: 0;
visibility: hidden;
}
.categReview {
padding-top: 40px;
}
.categReview__title {
font-weight: 700;
font-size: 48px;
line-height: 60px;
text-align: center;
margin-bottom: 36px;
}
.categReview .blogMain__post-mini {
margin-top: 0;
}
.categReview__itemF {
margin-bottom: 120px;
}
.categReview__itemS {
}
.removeLoadMore .categReview__btn {
display: none !important;
}
.categReview #newBlogFirst > div:not(:nth-child(-n + 3)),
.categReview #newBlogSec > div:not(:nth-child(-n + 3)) {
margin-top: 36px;
} .wp-block-image img {
filter: drop-shadow(0px 12px 28px rgba(118, 115, 192, 0.1));
}
.mfp-bg {
background: #765cf6;
opacity: 0.7;
}
.mfp-title {
display: none;
}
.mfp-arrow-left {
left: 10%;
}
.mfp-arrow-right {
right: 10%;
}
.mfp-arrow:before {
display: none;
}
.mfp-arrow:after {
border: none;
width: 16px;
height: 16px;
opacity: 1;
}
.mfp-arrow-right:after {
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='17' height='26' viewBox='0 0 17 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 24.2156L13.3137 12.9019L2 1.58816' stroke='white' stroke-width='4'/%3E%3C/svg%3E")
no-repeat center center / contain;
}
.mfp-arrow-left:after {
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='17' height='26' viewBox='0 0 17 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 24.2156L3.68629 12.9019L15 1.58816' stroke='white' stroke-width='4'/%3E%3C/svg%3E")
no-repeat center center / contain;
}
.blogPage .header,
.single-post .header,
.search .header,
.archive .header {
box-shadow: none;
}
.error404 .header::after,
.blogPage .header::after,
.single-post .header::after,
.search .header::after,
.archive .header::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/blog-header-bg.svg) no-repeat center
center / cover;
border-radius: 0px 0px 32px 32px;
z-index: -1;
}
.error404 .header-inside-go,
.blogPage .header-inside-go,
.single-post .header-inside-go,
.search .header-inside-go,
.archive .header-inside-go {
background: var(--color-white);
border-radius: 8px;
padding: 6px 20px;
margin-right: 10px;
}
.error404 .header-inside-go:hover,
.blogPage .header-inside-go:hover,
.single-post .header-inside-go:hover,
.search .header-inside-go:hover,
.archive .header-inside-go:hover {
color: var(--color-violet-light);
}
.error404 .header-inside-login,
.blogPage .header-inside-login,
.single-post .header-inside-login,
.search .header-inside-login,
.archive .header-inside-login {
background: var(--color-white);
border-radius: 8px;
padding: 6px 20px;
margin-right: 10px;
}
.error404 .header-inside-signup,
.blogPage .header-inside-signup,
.single-post .header-inside-signup,
.search .header-inside-signup,
.archive .header-inside-signup {
position: relative;
border: none;
}
.error404::after,
.blogPage::after,
.single-post::after,
.search::after,
.archive::after {
content: "";
display: block;
width: 100%;
height: 1395px;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/blog-footer-bg.svg) no-repeat center
center / cover;
position: absolute;
bottom: 0;
left: 0;
z-index: -1;
filter: blur(5px);
}
.error404 .footer-bg,
.blogPage .footer-bg,
.single-post .footer-bg,
.search .footer-bg,
.archive .footer-bg {
display: none;
}
.error404 .footer__bottom,
.blogPage .footer__bottom,
.single-post .footer__bottom,
.search .footer__bottom,
.archive .footer__bottom {
margin-top: 0;
}
.error404 .footer__bottom .container,
.blogPage .footer__bottom .container,
.single-post .footer__bottom .container,
.search .footer__bottom .container,
.archive .footer__bottom .container {
position: relative;
z-index: 2;
}
.error404 .footer__bottom-bg,
.blogPage .footer__bottom-bg,
.single-post .footer__bottom-bg,
.search .footer__bottom-bg,
.archive .footer__bottom-bg {
z-index: 1;
}
.blogPage::before {
content: "";
display: block;
max-width: 1440px;
width: 100%;
height: 980px;
position: absolute;
top: 300px;
left: 50%;
transform: translate(-50%, 0px); background: linear-gradient(
112.32deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
opacity: 0.3;
filter: blur(50px);
z-index: -1;
} .blogMain__form {
margin-left: 12px;
}
.blogMain__form_btn {
position: relative;
width: 56px;
height: 56px;
background: var(--color-white);
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 100px;
border: none;
}
.blogMain__form_btn::after {
content: "";
display: block;
width: 17px;
height: 17px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9549 14.9547L12.4805 12.4802' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Ccircle cx='7.59056' cy='7.59104' r='6.16364' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E")
no-repeat center center / contain;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.blogMain__form_btn.s-active::after {
width: 14px;
height: 14px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L14 14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M14 2L2 14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.blogMain__form_active.d-none { }
.blogMain__form_active {
position: absolute;
top: 0;
right: 70px;
background: var(--color-white);
border-radius: 100px;
z-index: 2;
animation: fade 0.2s linear forwards;
}
@keyframes fade {
0% { transform: translateX(100px);
opacity: 0;
}
100% { transform: translateX(0);
opacity: 1;
}
}
.blogMain__form_active form {
width: 310px;
height: 60px;
display: flex;
align-items: center;
padding: 8px 30px;
background: #d3e2ff;
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 100px;
}
.blogMain__form_active input[type="text"] {
border: none;
color: #765cf6;
font-weight: 700;
font-size: 16px;
line-height: 28px;
background: #d3e2ff;
width: 100%;
outline: none;
}
.blogMain__form_active input[type="text"]::placeholder {
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: var(--color-black);
}
.blogMain__form_active #searchsubmit {
border: none;
font-size: 0;
display: block;
width: 18px;
height: 18px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9549 15.9545L13.4805 13.4801' stroke='%23765CF6' stroke-width='2.4' stroke-linecap='round'/%3E%3Ccircle cx='8.59056' cy='8.59092' r='6.16364' stroke='%23765CF6' stroke-width='2.4'/%3E%3C/svg%3E")
no-repeat center center / contain;
} .blogTitle {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 43px;
text-align: center;
font-weight: 400;
font-size: 48px;
line-height: 60px;
}
.blogTitle strong {
}
.blogTitle span {
background-position: center;
background-repeat: no-repeat;
background-size: contain;
width: 48px;
height: 48px;
display: inline-block;
margin: 0 15px;
} .blogLearn {
padding: 42px 0 120px;
}
.blogLearn__title {
}
.blogLearn .blogMain__post-medium {
max-width: 560px;
margin: 0 auto;
}
.blogLearn .blogMain__post_img {
margin-bottom: 49px;
}
.blogLearn .blogMain__post_wrap {
}
.blogLearn .blogMain__post_wrap time {
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
.blogLearn .blogMain__post_wrap .bpw-title {
font-weight: 700;
font-size: 32px;
line-height: 44px;
margin: 15px 0 20px;
} .blogCase {
position: relative;
padding: 82px 0 120px;
}
.blogCase::after {
content: "";
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
left: 1%;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(1, 0, 0, -1, 0, 0);
z-index: -1;
}
.blogCase__title {
}
.blogCase__wrap {
padding: 0 15px;
}
.blogCase__wrap_item {
display: flex;
align-items: center;
}
.blogCase__wrap_item:not(:last-child) {
margin-bottom: 50px;
}
.blogCase__wrap_item-image {
max-width: 360px;
min-width: 360px;
height: 188px;
}
.blogCase__wrap_item-info {
margin-left: 50px;
height: 100%;
}
.blogCase__wrap_item-info .bpw-title {
margin: 10px 0;
} .blogSeo {
padding: 100px 0 123px;
max-width: 1760px;
margin: 0 auto;
}
.blogSeo__title {
}
.blogSeo__slider {
padding-bottom: 100px;
}
.blogSeo__slider .swiper-wrapper {
}
.blogSeo__slider .swiper-slide {
}
.blogSeo__slider_item {
display: flex;
justify-content: center;
}
.blogSeo__slider_item-wrap {
max-width: 560px;
padding: 0 15px;
}
.blogSeo__slider_item-wrap-img {
margin-bottom: 50px;
}
.blogSeo__slider_item-wrap-info h2 {
margin-top: 15px;
font-weight: 700;
font-size: 32px;
line-height: 44px;
}
.blogSeo__slider_item-wrap-info {
}
.blogSeo__slider .swiper-pagination {
bottom: 0;
}
.blogSeo__slider .swiper-pagination span {
background-color: #000 !important;
width: 12px;
height: 12px;
opacity: 1 !important;
margin: 0 10px !important;
}
.blogSeo__slider .swiper-pagination span.swiper-pagination-bullet-active {
background-color: #765cf6 !important;
} .promoBlog {
position: relative;
padding: 60px 0;
overflow: visible;
}
.promoBlog::after {
content: "";
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
left: 1%;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
z-index: -1;
}
.promoBlog__wrap {
margin: 0 15px;
}
.promoBlog__wrap_info {
max-width: 760px;
}
.promoBlog__wrap_info-title {
font-weight: 700;
font-size: 56px;
line-height: 67px;
}
.promoBlog__wrap_info-desc {
font-weight: 400;
font-size: 16px;
line-height: 28px;
margin: 12px 0 30px;
}
.promoBlog__wrap_info-btn {
}
.promoBlog__wrap_img {
position: absolute;
top: -110px;
right: 0;
max-width: 360px;
} .blogDigital {
padding-top: 102px;
}
.blogDigital__title {
}
.blogDigital .blogMain__post-mini {
margin-top: 0;
} .blogBtn {
margin-top: 63px;
}  .newslater .modal-dialog {
max-width: 580px;
}
.newslater .modal-content {
padding: 40px 38px;
border: none;
}
.newslater .modal-header {
padding: 0;
border: none;
}
.newslater .modal-title {
font-size: 22px;
font-weight: 700;
line-height: 34px;
}
.newslater .modal-body {
padding: 0;
margin-top: 20px;
}
.newslater .btn-close {
position: absolute;
top: 20px;
right: 20px;
}
.newslater__form_mail {
display: flex;
}
.newslater__form_mail-input {
max-width: 363px;
width: 100%;
height: auto;
margin-right: 10px;
}
.newslater__form_mail-input .formEmail {
display: block;
width: 100%;
height: 100%;
background: #f9f9f9;
border: 1px solid #c8befb;
border-radius: 8px;
padding: 6px 20px;
outline: none !important;
font-weight: 700;
font-size: 16px;
line-height: 28px;
color: #765cf6;
}
.newslater__form_mail-input .typeMail {
border: 1px solid red;
}
.newslater__form_mail-input .formEmail::placeholder {
font-weight: 400;
}
.newslater__form_mail-subs {
position: relative;
}
.newslater__form_mail-subs .formSubmitCheck {
display: none;
opacity: 0;
overflow: hidden;
}
.newslater__form_mail-subs .formSubmitCheck.active {
opacity: 1;
overflow: visible;
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
z-index: 1;
background: none;
border: none;
cursor: pointer;
}
.newslater__form_mail-subs:hover .formSubmit {
color: #765cf6;
}
.newslater__form_mail-subs .formSubmit {
width: 114px;
background: #2a1c53;
padding: 6px 20px;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
line-height: 28px;
color: #fff;
border: none;
cursor: pointer;
}
.newslater__form_mail-subs .formSubmit:hover {
color: #765cf6;
}
.newslater__form_mail-validate {
display: none;
font-size: 12px;
font-weight: 400;
line-height: 14px;
color: #ff3a44;
margin-top: 8px;
}
.newslater__form_mail-validate.active {
display: block;
}
.newslater__form_checkbox {
margin-top: 15px;
display: flex;
align-items: flex-start;
font-size: 14px;
font-weight: 400;
line-height: 28px;
}
.newslater__form_checkbox a {
display: inline-block;
margin: 0;
font-weight: bold;
color: #765cf6;
}
.newslater__form_checkbox a:hover {
text-decoration: underline;
}
.formCheck {
display: grid;
place-content: center;
min-width: 24px;
min-height: 24px;
appearance: none;
background-color: #fff;
margin: 0 8px 0 0;
border: 1px solid #c8befb;
border-radius: 8px;
cursor: pointer;
}
.formCheck.typeCheck {
border: 1px solid red;
}
.formCheck::before {
content: "";
width: 16px;
height: 16px;
opacity: 0;
transform: scale(0);
transition: 120ms transform ease-in-out;
box-shadow: none;
background: #765cf6;
border-radius: 5px;
}
.formCheck:checked::before {
transform: scale(1);
opacity: 1;
}
.newslater .subscribeForm__item:first-child {
width: 100%;
margin-right: 10px;
}
.newslater .modal-content::after {
content: "";
position: absolute;
display: none;
width: 100%;
height: 100%;
z-index: -1;
top: 10px;
left: 10px;
border-radius: 8px;
}
.newslater.emailError .modal-content::after {
display: block;
background: linear-gradient(
75.96deg,
#ff3a44 0%,
rgba(255, 58, 68, 0) 100%
);
}
.newslater__validation.good {
background: linear-gradient(
75.96deg,
#cdfc81 0%,
rgba(205, 252, 129, 0) 100%
);
}
.newslater .subscribeSuccess {
text-align: center;
}
.newslater .subscribeSuccess p {
font-weight: 400;
font-size: 22px;
line-height: 34px;
}
// Success
.newslaterSuccess {
}
.newslaterSuccess .modal-dialog {
max-width: 580px;
}
.newslaterSuccess .modal-content {
padding: 40px 38px;
position: relative;
border: none;
}
.newslaterSuccess .modal-content::after {
content: "";
position: absolute;
display: block;
width: 100%;
height: 100%;
z-index: -1;
top: 10px;
left: 10px;
border-radius: 8px;
background: linear-gradient(
75.96deg,
#cdfc81 0%,
rgba(205, 252, 129, 0) 100%
);
}
.newslaterSuccess .modal-header {
padding: 0;
border: none;
}
.newslaterSuccess .modal-title {
font-size: 22px;
font-weight: 700;
line-height: 34px;
}
.newslaterSuccess .modal-body {
padding: 0;
margin-top: 33px;
}
.newslaterSuccess .btn-close {
position: absolute;
top: 20px;
right: 20px;
}
.newslaterSuccess__info {
text-align: center;
}
.newslaterSuccess__info_title {
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin: 0;
}
.newslaterSuccess__info_desc {
display: block;
margin-top: 10px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
} .postMain {
padding-top: 40px;
}
.postMain__title {
margin: 20px 0 15px;
font-weight: 700;
font-size: 48px;
line-height: 60px;
}
.postMain__info {
margin-bottom: 36px;
}
.postMain__info .bpw-person {
margin-right: 40px;
}
.postMain__content {
max-width: 760px;
}
.postMain__content_video {
}
.postMain__content_video iframe {
aspect-ratio: 16 / 9;
width: 100%;
height: auto;
}
.blogMain__post-big .postMain__content_video iframe {
}
.blogMain__post-big .postMain__content_video {
height: 100%;
}
.postMain__content_img {
}
.postMain__content_img img {
width: 100%;
}
.postMain__content_desc > * {
margin-top: 30px;
}
.postMain__content_desc p {
font-weight: 400;
font-size: 18px;
line-height: 30px;
margin-bottom: 0 !important;
}
.postMain__content_tags {
margin-top: 60px;
}
.postMain__content_desc ol {
padding-left: 17px;
}
.postMain__content_desc ol li {
list-style: decimal !important;
line-height: 30px;
}
.postMain__content_desc ol li:not(:last-child) {
margin-bottom: 10px;
}
.postMain__content_desc ol li::marker {
font-weight: 700;
color: #765cf6;
}
.postMain__content_tags ul {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.postMain__content_tags ul li {
margin: 0 5px 5px;
}
.postMain__content_tags ul li a {
border: 2px solid #2a1c53;
border-radius: 8px;
display: block;
padding: 6px 20px;
font-weight: 700 !important;
font-size: 16px;
line-height: 28px;
color: #000;
text-decoration: none !important;
}
.postMain__content_tags ul li a:hover {
color: #765cf6;
}
.postMain__content_disqus {
margin-top: 110px;
}
.postMain__sidebar {
max-width: 360px;
}
.postMain__sidebar > div:not(:first-child) {
margin-top: 30px;
}
.postMain__sidebar .widget_media_image {
text-align: center;
}
.postMain__sidebar .widget_mc4wp_form_widget {
}
.postMain__sidebar .widget_mc4wp_form_widget .widget-title {
font-weight: 700;
font-size: 18px;
line-height: 30px;
margin-bottom: 10px;
}
.postMain__sidebar .widget_mc4wp_form_widget {
background: linear-gradient(
117.78deg,
rgba(144, 182, 255, 0.6) 0%,
rgba(234, 214, 221, 0) 93.75%
),
#ffffff;
border-radius: 32px;
padding: 40px 20px;
}
.postMain__sidebar
.widget_mc4wp_form_widget
form
.subscribeForm__item:first-child {
margin-bottom: 10px;
}
.postMain__sidebar .widget_mc4wp_form_widget form .subscribeForm__item_email {
background: var(--color-white);
border: 1px solid #c8befb;
border-radius: 8px;
width: 100%;
height: 40px;
padding: 6px 10px;
outline: none;
font-weight: 700;
font-size: 16px;
line-height: 28px;
color: #765cf6;
}
.postMain__sidebar
.widget_mc4wp_form_widget
form
.subscribeForm__item_email::placeholder {
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
.postMain__sidebar .widget_mc4wp_form_widget form .subscribeForm__item_submit {
font-weight: 700;
font-size: 16px;
line-height: 28px;
width: 114px;
height: 40px;
background: #2a1c53;
border-radius: 8px;
border: none;
color: var(--color-white);
}
.postMain__sidebar
.widget_mc4wp_form_widget
form
.subscribeForm__item_submit:hover {
color: #765cf6;
}
.mc4wp-error {
display: none !important;
}
.postMain__lwptoc {
}
.postMain__lwptoc .lwptoc_i {
width: 100%;
padding: 20px;
background: linear-gradient(
75.21deg,
#cdfc81 20.89%,
rgba(205, 252, 129, 0) 77.21%
) !important;
border-radius: 32px !important;
}
.postMain__lwptoc .lwptoc_header {
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 9px;
}
.postMain__lwptoc .lwptoc_header .lwptoc_title {
color: #000 !important;
}
.postMain__lwptoc .lwptoc_items .lwptoc_item a {
font-weight: 700;
font-size: 18px;
line-height: 30px;
color: var(--color-black) !important;
}
.postMain__lwptoc .lwptoc_items .lwptoc_item a:hover {
border-bottom: 1px solid !important;
}
.postMain__lwptoc .lwptoc_items .lwptoc_item a .lwptoc_item_number::after {
content: ".";
}
.wp-block-image figure,
.wp-block-embed {
margin-right: 0 !important;
margin-bottom: 50px !important;
}
.wp-block-separator {
background: none;
border: 1px dashed rgba(118, 92, 246, 0.4);
opacity: 1;
margin: 60px 0 !important;
}
.wp-block-button__link {
text-decoration: none !important;
padding: 18px 30px;
font-weight: 700;
font-size: 18px;
line-height: 28px;
text-transform: uppercase;
transition: 0.3s;
}
.wp-block-button__link:hover {
color: var(--color-violet-light) !important;
transform: translateY(-5px);
}
.postMain__content_desc h2 {
font-size: 32px;
line-height: 44px;
}
.postMain__content_desc h3 {
font-size: 22px;
line-height: 34px;
}
.postMain__content_desc h4 {
font-size: 18px;
line-height: 27px;
}
.postMain__content_desc a {
font-weight: 700;
text-decoration: underline;
}
.postMain__content_desc a:hover {
color: #765cf6;
}
.postMain__content_desc ul {
}
.postMain__content_desc ul li {
font-weight: 400;
font-size: 18px;
line-height: 30px;
margin-left: 30px;
position: relative;
}
.postMain__content_desc ul li:not(:last-child) {
margin-bottom: 10px;
}
.postMain__content_desc ul li::before {
content: "";
display: block;
position: absolute;
top: 13px;
left: -18px;
width: 4px;
height: 4px;
background: #765cf6;
border-radius: 50%;
}
.postMain__content_desc .wp-element-caption {
font-weight: 400;
font-size: 14px;
line-height: 23px;
margin-top: 12px;
margin-bottom: 0;
} .postLike {
padding-top: 150px;
}
.search-results .postLike {
padding-top: 120px;
}
.postLike .blogMain__post-mini {
margin-top: 0;
}
.postLike__title {
font-weight: 400;
font-size: 48px;
line-height: 60px;
margin-bottom: 63px;
}
.postLike__wrap {
max-width: 1160px;
margin: 0 auto;
}
.postLike__slider {
padding-bottom: 50px;
}
.postLike__slider .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: var(--color-violet);
opacity: 1;
margin: 0 10px;
}
.postLike__slider .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--color-violet-light);
} .searchPagi {
margin-top: 40px;
}
.searchMain {
padding: 40px 0 0;
}
.searchMain__title {
margin-bottom: 36px;
font-weight: 700;
font-size: 48px;
line-height: 60px;
}
.searchMain__wrap {
}
.searchMain__wrap_post {
}
.searchMain__wrap_post:not(:last-child) {
margin-bottom: 30px;
}
.searchMain__wrap_post .blogMain__post_img {
max-width: 360px;
margin-right: 40px;
margin-bottom: 25px;
}
.searchMain__wrap_post h2 {
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin: 10px 0;
}
.searchMain__wrap_error p {
font-weight: 400;
font-size: 22px;
line-height: 34px;
margin-bottom: 29px;
}
.searchMain__wrap_error form {
}
.searchMain__wrap_error form input[type="text"] {
background: #d3e2ff;
border: 1px solid #c8befb;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
line-height: 28px;
padding: 6px 10px;
height: 40px;
width: 238px;
outline: none;
color: #765cf6;
}
.searchMain__wrap_error form input[type="text"]::placeholder {
font-weight: 400;
}
.searchMain__wrap_error form input[type="submit"] {
background: #2a1c53;
border-radius: 8px;
padding: 6px 20px;
font-weight: 700;
font-size: 16px;
line-height: 28px;
color: var(--color-white);
margin-left: 10px;
border: none;
}
.searchMain__wrap_error form input[type="submit"]:hover {
color: #765cf6;
}    .leftIcon.element-animation {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
-webkit-transition-delay: 3.5s;
-o-transition-delay: 3.5s;
transition-delay: 3.5s;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
.leftIcon.element-animation.element-show {
opacity: 0.4;
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.rightIcon.element-animation {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
-webkit-transition-delay: 3s;
-o-transition-delay: 3s;
transition-delay: 3s;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
.rightIcon.element-animation.element-show {
opacity: 0.4;
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.homeMain_info_title.element-animation::before,
.homeMain_info_title.element-animation .homeMain_info_title-bg::after,
.homeMain_info_title.element-animation .homeMain_info_title-bg::before {
-webkit-transition: all 1.5s;
-o-transition: all 1.5s;
transition: all 1.5s;
-webkit-transition-delay: 3.5s;
-o-transition-delay: 3.5s;
transition-delay: 3.5s;
opacity: 0;
}
.homeMain_info_title.element-animation.element-show::before,
.homeMain_info_title.element-animation.element-show
.homeMain_info_title-bg::after,
.homeMain_info_title.element-animation.element-show
.homeMain_info_title-bg::before {
opacity: 1;
}
.text-animate.element-animation {
opacity: 0;
-webkit-transition: all 1.5s;
-o-transition: all 1.5s;
transition: all 1.5s;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
.text-animate.element-animation.element-show {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.sticky-animation {
opacity: 0;
transform: translateY(150px);
transition: 1s all ease;
}
.sticky-animation.active {
transform: translateY(0px);
opacity: 1;
}  .contact {
padding: 100px 0 70px;
position: relative;
}
.contact__head {
margin-bottom: 172px;
text-align: center;
}
.contact__head_title {
font-weight: 700;
font-size: 48px;
line-height: 60px;
}
.contact__wrap {
}
.contact__wrap-form {
max-width: 760px;
width: 100%;
}
.contact__wrap-form .screen-reader-response {
display: none;
opacity: 0;
overflow: hidden;
}
.contact__wrap-sidebar {
max-width: 360px;
width: 100%;
margin-left: auto;
}
.contact__wrap-form span {
display: block;
width: 100%;
}
.contact__wrap-form span .wpcf7-not-valid-tip {
margin: 10px 0 0 20px;
display: none;
}
.contact__wrap-form span input,
.contact__wrap-form span select,
.contact__wrap-form span textarea {
display: block;
width: 100%;
height: 48px;
padding: 10px 20px;
background: #f4f8ff;
border: 1px solid #d3e2ff;
border-radius: 16px;
font-size: 16px;
line-height: 28px;
}
.contact__wrap-form span input {
font-weight: 700;
color: #765cf6;
}
.contact__wrap-form span .wpcf7-not-valid {
border-color: #ff0000;
}
.contact__wrap-form span textarea {
font-weight: 700;
height: 104px;
color: #765cf6;
}
.contact__wrap-form span select {
-webkit-appearance: none;
-moz-appearance: none;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-position: calc(100% - 15px) 20px;
background-size: 10px 6px;
background-repeat: no-repeat;
}
.contact__wrap-form span select.active {
color: #765cf6;
font-weight: 700;
}
.contact__wrap-form span select:focus,
.contact__wrap-form span textarea:focus,
.contact__wrap-form span input:focus {
outline: none !important;
border-color: #765cf6;
}
.contact__wrap-form span select option::placeholder,
.contact__wrap-form span textarea::placeholder,
.contact__wrap-form span input::placeholder {
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: #000000;
}
.contact__wrap_item .form-subtitle {
margin: 8px 0 9px;
font-weight: 700;
font-size: 22px;
line-height: 34px;
}
.contact__wrap_item .form-item {
margin-bottom: 30px;
}
.contact__wrap_item .form-btn {
margin-top: 10px;
display: inline-block;
}
.contact__wrap_item .form-btn .wpcf7-submit {
padding: 18px 32px;
background: #2a1c53;
border-radius: 8px;
font-weight: 700;
font-size: 18px;
line-height: 28px;
text-transform: uppercase;
color: #fff;
border: none;
transition: 0.3s;
}
.contact__wrap_item .form-btn .wpcf7-submit:hover {
color: var(--color-violet-light);
transform: translateY(-5px);
}
.contact__wrap-form-desc {
margin-top: 44px;
}
.contact__wrap-form-desc p {
font-size: 22px;
line-height: 34px;
margin: 0;
}
.contact__wrap-form-desc a {
font-weight: 700;
text-decoration: underline;
}
.contact__wrap-form-desc a:hover {
color: var(--color-violet-light);
}
.wpcf7-spinner {
display: none !important;
}
.wpcf7-response-output {
display: inline-block;
margin: 0 0 0 20px !important;
padding: 0 !important;
border: 0 !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #ff0000 !important;
}
.wpcf7-response-output.success {
opacity: 0;
color: #a4d65e !important;
}
.contact__wrap_item article {
padding: 40px 27px;
background: #ffffff;
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
}
.contact__wrap_item article:not(:last-child) {
margin-bottom: 20px;
}
.contact__wrap_item article h2 {
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 19px;
}
.contact__wrap_item article div {
font-weight: 400;
font-size: 16px;
line-height: 28px;
margin: 0;
}
.contact__wrap_item article div a {
font-weight: 700;
text-decoration: underline;
}
.contact__wrap_item article div a:hover {
color: var(--color-violet-light);
}
#cfPopup .modal-dialog {
max-width: 560px;
}
#cfPopup .modal-content {
padding: 40px 31px;
position: relative;
border: none !important;
border-radius: 8px;
}
#cfPopup .modal-content::after {
content: "";
display: block;
width: 100%;
height: 100%;
background: linear-gradient(
75.96deg,
#cdfc81 0%,
rgba(205, 252, 129, 0) 100%
);
border-radius: 8px;
position: absolute;
top: 10px;
left: 10px;
z-index: -1;
}
#cfPopup .btn-close {
position: absolute;
top: 20px;
right: 20px;
display: block;
width: 14px;
height: 14px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L13 13' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M13 1L1 13' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
no-repeat center center / contain;
opacity: 1;
}
#cfPopup .modal-body {
margin: 0;
padding: 0;
text-align: center;
}
#cfPopup .modal-body-title {
font-weight: 700;
font-size: 22px;
line-height: 34px;
text-align: center;
color: #000000;
}
#cfPopup .modal-body-contact {
margin-top: 20px;
}
#cfPopup .modal-body-contact .contact-desc {
font-size: 22px;
line-height: 34px;
}
.page-template-page-contact .footer {
padding-top: 180px;
z-index: 1;
}
.page-template-page-contact .footer__bottom {
margin-top: 0px;
}  .multiWrap {
position: relative;
overflow-x: hidden;
max-width: 1440px;
margin: 0 auto;
}
.multiWrap > span {
display: block;
position: absolute;
z-index: -1;
}
.multiWrap > span svg {
width: 100%;
height: 100%;
}
.multiWrapBg {
top: 50%;
left: 50%;
right: 50%;
transform: translate(-50%, -50%);
width: 1440px;
height: 980px;
}
.multiWrapLine {
width: 880px;
height: 669px;
right: 0;
top: 0;
}
.multiWrapOracle {
width: 774px;
height: 774px;
top: 0;
right: 0;
}  .multiMain {
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/multitag_bg_line.svg) no-repeat right /
contain;
overflow: hidden;
padding-bottom: 100px;
position: relative;
}
.multiWrap::after {
content: "";
display: block;
max-width: 674px;
width: 100%;
height: 674px;
position: absolute;
top: -60px;
right: 77px;
border-radius: 674px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(50px);
z-index: -1;
}
.multiWrap::before {
content: "";
position: absolute;
top: 0;
left: -80px;
display: block;
width: 100%;
height: 980px;
border-radius: 1440px;
opacity: 0.2;
background: linear-gradient(
112deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
filter: blur(50px);
z-index: -1;
}
.multiMain__info {
max-width: 480px;
margin-top: 100px;
}
.multiMain__info_title {
font-size: 48px;
line-height: 60px;
position: relative;
margin-bottom: 30px;
}
.multiMain__info_title span {
display: inline;
}
.multiMain__info_title span.homeMain_info_title-bg {
display: none;
}
.multiMain__info_title.homeMain_info_title .homeMain_info_title-bg::after {
width: 280px;
height: 80px;
right: 20%;
}
.multiMain__info_title.homeMain_info_title .homeMain_info_title-bg::before {
width: 280px;
height: 80px;
right: 105px;
}
.multiMain__info_title.homeMain_info_title::before {
width: 195px;
height: 80px;
left: 20%;
}
.multiMain__info_list {
max-width: 432px;
margin-bottom: 20px;
}
.multiMain__info_list li {
position: relative;
padding-left: 34px;
font-size: 16px;
line-height: 28px;
}
.multiMain__info_list li:not(:last-child) {
margin-bottom: 10px;
}
.multiMain__info_list li::before {
content: "";
display: inline-block;
height: 20px;
width: 20px;
position: absolute;
top: 7px;
left: 0px;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/multiMain_lit_item.svg) no-repeat center
center / contain;
}
.multiMain__info_list li span {
font-weight: 700;
}
.multiMain__info_btn {
}
.multiMain__icon {
margin-top: 100px;
max-width: 610px;
width: 100%;
height: 350px;
position: relative;
}
.multiMain__icon svg {
width: 100%;
height: 100%;
}
.multiMain__icon_hover {
position: relative;
}
.multiMain__icon_hover-rect {
opacity: 0;
}
.multiMain__icon_hover:hover .multiMain__icon_hover-rect {
animation: multiBorder 0.4s linear forwards;
}
@keyframes multiBorder {
from {
opacity: 0;
bottom: 0px;
right: 0px;
}
to {
opacity: 1;
bottom: -10px;
right: -10px;
}
} .multiMain__icon.element-animation .multiMain__first {
opacity: 0;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
}
.multiMain__icon.element-animation.element-show .multiMain__first {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__first_border {
opacity: 0;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
-webkit-transition-delay: 2s;
-o-transition-delay: 2s;
transition-delay: 2s;
-webkit-transform: translateX(40px);
-ms-transform: translateX(40px);
transform: translateX(40px);
}
.multiMain__icon.element-animation.element-show .multiMain__first_border {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}  .multiMain__icon.element-animation .multiMain__second {
opacity: 0;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
-webkit-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.multiMain__icon.element-animation.element-show .multiMain__second {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__third {
opacity: 0;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
-webkit-transition-delay: 1s;
-o-transition-delay: 1s;
transition-delay: 1s;
}
.multiMain__icon.element-animation.element-show .multiMain__third {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__fourth {
opacity: 0;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
-webkit-transition-delay: 1.5s;
-o-transition-delay: 1.5s;
transition-delay: 1.5s;
}
.multiMain__icon.element-animation.element-show .multiMain__fourth {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__fifth {
opacity: 0;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
-webkit-transition-delay: 1.8s;
-o-transition-delay: 1.8s;
transition-delay: 1.8s;
}
.multiMain__icon.element-animation.element-show .multiMain__fifth {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__six {
opacity: 0;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
-webkit-transform: translate(30px, 20px);
-ms-transform: translate(30px, 20px);
transform: translate(30px, 20px);
-webkit-transition-delay: 2s;
-o-transition-delay: 2s;
transition-delay: 2s;
}
.multiMain__icon.element-animation.element-show .multiMain__six {
opacity: 1;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}  .multiMain__icon.element-animation .multiMain__seven {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
-webkit-transform: translateX(-120px);
-ms-transform: translateX(-120px);
transform: translateX(-120px);
-webkit-transition-delay: 2.2s;
-o-transition-delay: 2.2s;
transition-delay: 2.2s;
}
.multiMain__icon.element-animation.element-show .multiMain__seven {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}  .multiMain__icon.element-animation::after {
opacity: 0;
-webkit-transition: all 0.1s;
-o-transition: all 0.1s;
transition: all 0.1s;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
-webkit-transition-delay: 3s;
-o-transition-delay: 3s;
transition-delay: 3s;
}
.multiMain__icon.element-animation.element-show::after {
opacity: 0.4;
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}   .multiSecond {
padding: 0 0 100px;
}
.multiSecond__title {
text-align: center;
font-size: 48px;
line-height: 60px;
margin-bottom: 74px;
}
.multiSecond__card {
background-color: var(--color-white);
box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.06);
border-radius: 32px;
padding: 40px 40px 60px;
position: relative;
} .multiSecond__card_icon {
display: block;
width: 90px;
height: 90px;
margin: 0 auto 20px;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
.multiSecond__card_icon.icon-1 {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.4'%3E%3Cpath d='M38.8517 9.3558C40.5606 8.42307 41.415 7.9567 42.2931 7.68531C44.0565 7.14025 45.9435 7.14025 47.7069 7.68531C48.585 7.9567 49.4394 8.42307 51.1483 9.3558L62.6175 15.6158L73.6255 21.8487C75.4128 22.8607 76.3064 23.3667 77.0279 24.0055C78.4774 25.2889 79.4834 26.9983 79.9016 28.8886C80.1098 29.8295 80.1182 30.8564 80.1352 32.9102L80.235 45L80.1352 57.0898C80.1182 59.1436 80.1098 60.1705 79.9016 61.1114C79.4834 63.0017 78.4774 64.7111 77.0279 65.9945C76.3065 66.6333 75.4128 67.1393 73.6255 68.1513L62.6175 74.3842L51.1483 80.6442C49.4394 81.5769 48.585 82.0433 47.7069 82.3147C45.9435 82.8597 44.0565 82.8597 42.2931 82.3147C41.415 82.0433 40.5606 81.5769 38.8517 80.6442L27.3825 74.3842L16.3745 68.1513C14.5872 67.1393 13.6935 66.6333 12.9721 65.9945C11.5226 64.7111 10.5166 63.0017 10.0984 61.1114C9.89023 60.1705 9.88176 59.1436 9.8648 57.0898L9.765 45L9.8648 32.9102C9.88176 30.8564 9.89023 29.8295 10.0984 28.8886C10.5166 26.9983 11.5226 25.2889 12.9721 24.0055C13.6936 23.3667 14.5872 22.8607 16.3745 21.8487L27.3825 15.6158L38.8517 9.3558Z' fill='%23B590FF'/%3E%3Cpath d='M45 47.2288L69.75 32.743' stroke='white' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M45 47.2288L20.25 32.743' stroke='white' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M45 48.3423V70.6281' stroke='white' stroke-width='6' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}
.multiSecond__card_icon.icon-2 {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg  viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.4'%3E%3Crect x='9' y='9' width='72' height='72' rx='36' fill='%23B590FF'/%3E%3Cpath d='M48.6 27V41.4H63' stroke='white' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M41.4 63L41.4 48.6L27 48.6' stroke='white' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}
.multiSecond__card_desc p {
font-size: 22px;
line-height: 34px;
text-align: center;
margin-bottom: 0;
}
.multiSecond__text p {
margin: 40px auto 0;
text-align: center;
max-width: 956px;
font-size: 22px;
line-height: 34px;
} .multiSecond__card.element-animation {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.multiSecond__card.element-animation.element-show {
opacity: 1;
}
.multiSecond__card.element-animation::after {
opacity: 0;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-webkit-transition-delay: 2.5s;
-o-transition-delay: 2.5s;
transition-delay: 2.5s;
}
.multiSecond__card.element-animation.element-show::after {
opacity: 0.4;
}
.multiSecond__card.element-animation .multiSecond__card_icon {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
-webkit-transition-delay: 1s;
-o-transition-delay: 1s;
transition-delay: 1s;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
.multiSecond__card.element-animation.element-show .multiSecond__card_icon {
opacity: 1;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.multiSecond__card.element-animation .multiSecond__card_desc {
opacity: 0;
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
-webkit-transition-delay: 1.5s;
-o-transition-delay: 1.5s;
transition-delay: 1.5s;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
.multiSecond__card.element-animation.element-show .multiSecond__card_desc {
opacity: 1;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}  .multiWork {
padding: 100px 0 100px;
position: relative;
}
.multiWork::after {
content: "";
display: block;
width: 98.5%;
height: 100%;
position: absolute;
top: 0;
right: 0;
margin: 0 20px;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -1;
}
.multiWork__title {
font-size: 48px;
line-height: 60px;
text-align: center;
}
.multiWork__title p {
margin-bottom: 0;
}
.multiWork__wrap {
margin-top: 63px;
position: relative;
}
.multiWork__wrap_video { position: absolute;
top: 50%;
left: 0;
transform: translate(0, -50%);
width: 100%;
}
.multiWork__wrap_video-btn {
position: relative;
}
.multiWork__wrap_video-btn button {
display: block;
border-radius: 50%;
width: 120px;
height: 120px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #2a1c53;
border: 4px solid #cdfc81;
}
.multiWork__wrap_video-btn button span {
display: inline-block;
margin-left: 3px;
width: 23px;
height: 26px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}
.multiWork__wrap_video-btn button::after {
content: "";
display: block;
width: 64px;
height: 64px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
border-radius: 50%;
}
.multiWork__wrap_video-btn button:hover {
background: #765cf6;
}
.multiWork__wrap_video-btn img {
}
.multiWork__wrap_video-frame {
width: 100%;
height: 100%;
display: none;
aspect-ratio: 16 / 9;
}
.multiWork__wrap_desc {
margin-left: 30px;
}
.mwi__list {
max-width: 555px;
margin: 0;
}
.mwi__list_item {
position: relative;
font-size: 32px;
line-height: 44px;
padding-left: 42px;
}
.mwi__list_item:not(:last-child) {
margin-bottom: 40px;
}
.mwi__list_item::after {
content: "";
display: block;
width: 22px;
height: 22px;
position: absolute;
top: 15px;
left: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/check-multitag.svg) no-repeat center
center / contain;
}
.mwi__btn {
}  .platformMulti {
padding: 100px 0;
position: relative;
overflow: hidden;
}
.platformMulti::after {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
right: -20px;
bottom: -200px;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/multitag_bg_benefit.svg) no-repeat right
bottom / contain;
z-index: -1;
}
.platformMulti::before {
content: "";
display: block;
max-width: 1440px;
width: 100%;
height: 400px;
position: absolute;
left: 50%;
bottom: -200px;
transform: translate(-50%, 0);
border-radius: 1440px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(100px);
z-index: -1;
}  .monetizeMulti {
overflow-x: hidden;
}
.monetizeMulti .monetize-bg {
background-color: #2a1c53;
}
.monetizeMulti .monetize__title {
color: #cdfc81;
font-size: 48px;
line-height: 60px;
margin-bottom: 20px;
}
.monetizeMulti .monetize__text {
max-width: 940px;
margin: 0 auto 40px;
padding: 0 30px;
font-size: 22px;
font-weight: 400;
line-height: 34px;
color: #ffffff;
}
.monetizeMulti {
}
.monetizeMulti .monetize__wrap_item-icon {
width: 80px;
height: 80px;
}
.monetizeMulti .monetize__wrap_item {
position: relative;
z-index: 1;
}
.monetizeMulti .monetize__wrap_item > span {
z-index: 1;
}
.monetizeMulti .monetize__wrap_item::before {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fff;
border-radius: 16px;
z-index: 0;
}
.monetizeMulti .monetize__wrap_item::after {
content: "";
display: none;
width: 100%;
height: 100%;
position: absolute;
bottom: 0px;
right: 0px;
border: 3px solid #cdfc81;
border-radius: 16px;
z-index: -1;
animation: listBorder 0.4s linear forwards;
}
.monetizeMulti .monetize__wrap_item:hover::before {
background-color: #765cf6;
}
.monetizeMulti .monetize__wrap_item:hover::after {
display: block;
bottom: -10px;
right: -10px;
}
.monetizeMulti .monetize__wrap_item:hover .monetize__wrap_item-name {
color: #fff;
}
.monetizeMulti .monetize__wrap_item:hover svg path:first-child {
fill: rgba(255, 255, 255, 0.46);
}
.monetizeMulti {
}  .toolMulti {
padding: 100px 0;
text-align: center;
}
.toolMulti__title {
font-size: 48px;
line-height: 60px;
margin-bottom: 40px;
}
.toolMulti__btn {
}  .trustMulti {
background: none;
position: relative;
padding: 100px 0;
}
.trustMulti::after {
content: "";
display: block;
width: 98.5%;
height: 100%;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
position: absolute;
top: 0;
left: 20px;
z-index: -1;
}
.trustMulti .trust__title {
font-size: 48px;
line-height: 60px;
text-align: center;
color: #000;
margin-bottom: 40px;
}
.trustMulti__wrap {
}
.trustMulti__slider {
max-width: 840px;
}
.trustMulti__slider .tsi__wrap {
box-shadow: none;
margin: 0;
padding: 40px;
}
.trustMulti__slider .tsi__wrap_name {
background-color: #765cf6;
margin-bottom: 30px;
padding: 15px 30px;
font-weight: 700;
font-size: 22px;
line-height: 34px;
text-align: center;
color: #fff;
}
.trustMulti__slider .tsi__wrap_text {
margin-bottom: 30px;
}
.trustMulti__slider .tsi__wrap_text p {
font-weight: 400;
font-size: 32px;
line-height: 44px;
}
.trustMulti__slider .tsi__wrap_company {
font-weight: 700;
font-size: 16px;
line-height: 28px;
}
.tsi__wrap::after {
display: none;
}  .learnMulti {
padding: 100px 0;
}
.learnMulti .learn__wrap {
}
.learnMulti .learn__wrap .swiper-pagination {  }
.learnMulti .learn__wrap .swiper-pagination span {
margin: 0 10px !important;
}
.learnMulti .learn__title {
margin-bottom: 30px;
}
.learnMulti .learn__desc {
margin-bottom: 40px;
}  .page-template-page-multitag {
}
.page-template-page-multitag::after {
content: "";
display: block;
width: 100%;
height: 1209px;
position: absolute;
left: 0;
bottom: 0;
background: linear-gradient(
8.41deg,
rgba(144, 182, 255, 0.6) 7.04%,
rgba(234, 214, 221, 0) 88.71%
);
border-radius: 32px 32px 0px 0px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -3;
}
.page-template-page-multitag .footer {
padding-top: 0;
}
.page-template-page-multitag .footer__bottom {
margin-top: 0;
}
.page-template-page-multitag .footer-bg {
display: none;
}   .smartlink {
}
.page-template-page-smartlink .multiWrap {
overflow-x: hidden;
}
.page-template-page-smartlink .homeMain__info {
margin-top: 0;
}
.page-template-page-smartlink .footer__bottom {
margin-top: 0;
}
.page-template-page-smartlink .footer-bg {
display: none;
}
.page-template-page-smartlink::after {
content: "";
display: block;
width: 100%;
height: 1209px;
position: absolute;
left: 0;
bottom: 0;
background: linear-gradient(
8.41deg,
rgba(144, 182, 255, 0.6) 7.04%,
rgba(234, 214, 221, 0) 88.71%
);
border-radius: 32px 32px 0px 0px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -3;
} .smartlink__main {
position: relative;
max-width: 1440px;
margin: 0 auto;
}
.smartlink__main::before {
content: "";
display: block;
max-width: 674px;
width: 100%;
height: 674px;
position: absolute;
top: -60px;
right: 77px;
border-radius: 674px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(50px);
}
.smartlink__bgOracle {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 980px;
border-radius: 1440px;
opacity: 0.2;
background: linear-gradient(
112deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
filter: blur(50px);
z-index: -1;
}
.smartlinkMain {
padding: 100px 0;
position: relative;
}
.smartlinkMain::after {
content: "";
display: block;
max-width: 928px;
width: 100%;
height: 575px;
position: absolute;
right: 0;
top: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/smartlink_bg_line_image.svg) no-repeat top
right / contain;
z-index: -1;
}
.smartlink__main .multiMain {
padding-top: 100px;
}
.smartlink__main .multiMain__icon {
max-width: 560px;
margin-top: 0;
}
.smartlink__main .homeMain_info_title-bg {
width: 310px;
top: -10px;
}
.smartlink__main_info-title {
position: relative;
}
.smartlink__main_info-desc {
margin: 20px 0 30px;
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: #000000;
max-width: 420px;
}
.smartlinkWorks {
padding-bottom: 100px;
}
.smartlinkWorks__wrap {
text-align: center;
}
.smartlinkWorks__wrap_title {
font-weight: 400;
font-size: 48px;
line-height: 60px;
text-align: center;
color: #000000;
}
.smartlinkWorks__wrap_desc {
text-align: center;
color: #000000;
margin: 20px 0 60px;
}
.smartlinkWorks__wrap_desc p {
font-weight: 400;
font-size: 16px;
line-height: 28px;
margin: 0;
}
.smartlinkWorks__wrap_box {
display: flex;
justify-content: space-between;
align-items: center;
}
.smartlinkWorks__wrap_box-item.swb-item-box {
width: 200px;
}
.swb-item-box-info {
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 16px;
padding: 40px 20px;
}
.swb-item-box-info-icon {
display: block;
min-width: 60px;
max-width: 60px;
height: 60px;
margin: 0 auto;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
margin-bottom: 8px;
}
.swb-item-box-info-desc {
font-weight: 700;
font-size: 16px;
line-height: 28px;
text-align: center;
color: #000000;
margin-bottom: 0;
}
.smartlinkWorks__wrap_box-item.swb-item-oracle {
}
.swb-item-oracle-info {
border: 2px dashed #c8befc;
border-radius: 32px;
padding: 20px;
}
.swb-item-oracle-info-top {
width: 180px;
height: 180px;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
filter: drop-shadow(0px 12px 28px rgba(118, 115, 192, 0.1));
border-radius: 400px;
padding: 27px 20px;
}
.swb-item-oracle-info-top span {
display: block;
width: 60px;
height: 60px;
margin: 0 auto;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
margin-bottom: 8px;
}
.swb-item-oracle-info-bottom {
margin-top: -27px;
z-index: -1;
}
.swb-item-oracle-info-top p {
font-weight: 700;
font-size: 16px;
line-height: 28px;
text-align: center;
color: #000000;
margin: 0 auto;
width: 140px;
}
.swb-item-oracle-info-bottom p {
display: flex;
justify-content: center;
align-items: center;
width: 160px;
height: 160px;
background: linear-gradient(
180deg,
#765cf6 0%,
rgba(118, 92, 246, 0.8) 100%
);
border-radius: 400px;
font-weight: 400;
font-size: 14px;
line-height: 23px;
text-align: center;
color: #ffffff;
padding: 20px 20px 0;
margin: 0 auto;
}
.smartlinkWorks__wrap_box-item.swb-item-line {
width: 100px;
}
.swb-item-line-icon {
display: block;
width: 100%;
height: 12px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
margin-bottom: 20px;
}
.swb-item-line-desc {
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: #000000;
} .smartlinkPub {
padding: 100px 0;
}
.smartlinkPub .monetize-bg {
background-color: #2a1c53;
}
.smartlinkPub__title {
font-size: 48px;
line-height: 60px;
text-align: center;
color: #cdfc81;
text-align: center;
}
.smartlinkPub__title span {
font-weight: 700;
}
.smartlinkPub__title span:first-child {
display: block;
}
.smartlinkPub__text {
}
.smartlinkPub__wrap {
margin-top: 40px;
display: flex;
justify-content: space-between;
}
.smartlinkPub__wrap_column {
max-width: 360px;
padding: 40px 18px 49px 18px;
background: #fff;
box-shadow: 0px 12px 28px rgba(118, 115, 192, 0.1);
border-radius: 32px;
position: relative;
}
.smartlinkPub__wrap_column {
}
.smartlinkPub__wrap_column::before {
content: "";
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #fff;
border-radius: 16px;
z-index: 0;
}
.smartlinkPub__wrap_column::after {
content: "";
display: none;
width: 100%;
height: 100%;
position: absolute;
bottom: 0px;
right: 0px;
border: 3px solid #cdfc81;
border-radius: 16px;
z-index: -1;
animation: listBorder 0.4s linear forwards;
}
.smartlinkPub__wrap_column:hover::after {
display: block;
bottom: -10px;
right: -10px;
}
.smartlinkPub__wrap_column:hover::before {
background-color: #765cf6;
}
.smartlinkPub__wrap_column-head {
display: flex;
align-items: center;
margin-bottom: 19px;
position: relative;
z-index: 1;
}
.smartlinkPub__wrap_column-head span {
display: block;
width: 60px;
height: 60px;
}
.smartlinkPub__wrap_column:hover
.smartlinkPub__wrap_column-head
span
svg
.smartlinkPub-green
path {
fill: rgba(255, 255, 255, 0.46);
}
.smartlinkPub__wrap_column-head h3 {
font-weight: 700;
font-size: 22px;
line-height: 34px;
color: #000000;
margin-left: 10px;
}
.smartlinkPub__wrap_column-body {
position: relative;
z-index: 1;
}
.smartlinkPub__wrap_column-body p {
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: #000000;
margin: 0;
}
.smartlinkPub__wrap_column:hover .smartlinkPub__wrap_column-head h3,
.smartlinkPub__wrap_column:hover .smartlinkPub__wrap_column-body p {
color: #fff;
}
.smartlinkPub__button {
margin-top: 40px;
text-align: center;
}
.smartlinkPub__button a {
display: inline-block;
padding: 18px 32px;
background: #fff;
border-radius: 8px;
font-weight: 700;
font-size: 18px;
line-height: 28px;
text-transform: uppercase;
color: #2a1c53;
} .smartlinkBen {
padding: 100px 0 0;
}
.smartlinkBen__title {
text-align: center;
font-weight: 400;
font-size: 48px;
line-height: 60px;
margin-bottom: 40px;
}
.smartlinkBen__title span {
font-weight: 700;
}
.smartlinkBen__wrap {
display: flex;
align-items: center;
}
.smartlinkBen__wrap {
}
.smartlinkBen__wrap_nav {
max-width: 360px;
width: 100%;
border: none;
}
.smartlinkBen__wrap_nav li {
width: 100%;
}
.smartlinkBen__wrap_nav .nav-link {
border: none;
padding: 20px 21px 20px 30px;
border-radius: 16px;
background: #e9f0ff;
color: #000;
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 20px;
text-align: left;
width: 100%;
}
.smartlinkBen__wrap_nav .nav-link.active {
background: #765cf6;
color: #fff;
}
.smartlinkBen__wrap_nav .nav-link:not(.active):hover {
background: #2a1c53;
color: #fff;
}
.smartlinkBen__wrap_content {
max-width: 768px;
margin-left: 40px;
font-size: 32px;
line-height: 44px;
}
.smartlinkBen__wrap_content .accordion-item {
border: none;
}
.smartlinkBen__wrap_content .accordion-button {
border: none;
padding: 20px 21px 20px 30px;
border-radius: 16px !important;
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 20px;
text-align: left;
width: 100%;
box-shadow: none;
background: #765cf6;
color: #fff;
}
.smartlinkBen__wrap_content .accordion-button.collapsed {
background: #e9f0ff;
color: #000;
}
.smartlinkBen__wrap_content .accordion-button::after {
display: none;
}
.smartlinkBen__wrap_content {
}
.smartlinkBen__wrap_content .accordion-body {
padding: 0;
}
.smartlinkProf__slider_item-name {
margin-top: 20px;
font-weight: 700;
font-size: 22px;
line-height: 34px;
color: #000000;
padding: 0 27px;
}
.smartlinkProf .swiper-pagination span {
margin: 0 10px !important;
} .smartlinkInst {
padding-top: 100px;
text-align: center;
}
.smartlinkInst_title {
font-weight: 400;
font-size: 48px;
line-height: 60px;
color: #000;
margin: 0 auto 40px;
max-width: 991px;
}
.smartlinkInst_title span {
font-weight: 700;
}
.smartlinkInst_btn {
display: inline-block;
background: #2a1c53;
border-radius: 8px;
align-items: center;
padding: 18px 32px;
font-weight: 700;
font-size: 18px;
line-height: 28px;
text-transform: uppercase;
color: #ffffff;
}   .format__bgOracle {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 980px;
border-radius: 1440px;
opacity: 0.2;
background: linear-gradient(
112deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
filter: blur(50px);
}
.formatMain {
padding: 0 0 100px;
position: relative;
max-width: 1440px;
margin: 0 auto;
}
.formatMain::after {
content: "";
display: block;
max-width: 928px;
width: 100%;
height: 575px;
position: absolute;
right: 0;
top: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/smartlink_bg_line_image.svg) no-repeat top
right / cover;
z-index: -1;
}
.formatMain::before {
content: "";
display: block;
max-width: 674px;
width: 100%;
height: 674px;
position: absolute;
top: -60px;
right: 77px;
border-radius: 674px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(50px);
z-index: -1;
}
.s1Formats__wrap_desc {
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.s1Formats__wrap_desc p:not(:last-child) {
margin-bottom: 10px;
}
.formatMain__animation {
margin-top: 100px;
width: 580px;
}
.formatMain__animation dotlottie-player {
margin: 0 auto;
}
.formatMain__animation_item svg {
width: 100%;
}
.formatMain__animation_item,
.formatMain__animation_item-mob {
width: 100%;
max-height: 398px;
height: 100%;
display: none;
}
.formatMain__animation_item.active,
.formatMain__animation_item-mob.active {
display: block;
}
.formatMain__animation_choise {
display: flex;
background: rgba(255, 255, 255, 0.46);
box-shadow: 0px 8.899998664855957px 20.766664505004883px 0px
rgba(118, 115, 192, 0.1);
padding: 6px;
width: 230px;
margin: 32px auto 0;
border-radius: 100px;
}
.fac-btn {
font-size: 16px;
font-weight: 700;
line-height: 28px;
color: rgba(42, 28, 83, 1);
border: none;
background: none;
width: 109px;
height: 36px;
border-radius: 100px;
}
.fac-btn.active {
background: rgba(118, 92, 246, 1);
color: var(--color-white);
}
.formatMain .multiMain__info {
max-width: 530px;
margin-top: 157px;
}
.platformFormat {
padding: 100px 0;
position: relative;
}
.platformFormat::after {
content: "";
display: block;
width: 100%;
height: 400px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 1440px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(100px);
z-index: -1;
}
.platformFormat .platform__title {
margin-bottom: 30px;
}
.platformFormat .platform__desc {
font-size: 22px;
font-weight: 400;
line-height: 34px;
text-align: center;
max-width: 900px;
margin: 0 auto;
}
.platformFormat .platform-wrap {
margin-top: 30px;
}
.platformFormat .platform__card {
max-width: 560px;
padding: 40px;
text-align: center;
}
.platformFormat .platform__card_head {
display: block;
margin-bottom: 20px;
}
.platformFormat .platform__card_head-icon {
margin-right: 0;
margin-bottom: 20px;
}
.platformFormat .platform__card_desc {
font-size: 22px;
font-weight: 400;
line-height: 34px;
}
.platformFormat .platform-wrap-item:nth-child(-n + 3) {
margin-bottom: 0;
}
.platformFormat .platform-wrap-item:nth-child(-n + 2) {
margin-bottom: 30px;
}
.platformFormat .platformMulti__bg_shadow {
transform: none;
right: auto;
bottom: auto;
top: 250px;
left: -150px;
}
.toolFormat {
padding-bottom: 100px;
}
.toolFormat .toolMulti__title {
font-size: 48px;
line-height: 60px;
margin-bottom: 40px;
}
.page-template-pade-sub-format .footer__bottom {
margin-top: 0;
}
.page-template-pade-sub-format .footer-bg {
}  .page-template-page-inapp .footer-bg {
display: none;
}
.page-template-page-inapp .footer__bottom {
margin-top: 0;
}
.page-template-page-inapp .footer {
padding-top: 0;
}
.page-template-page-inapp::after {
content: "";
display: block;
width: 100%;
height: 1209px;
position: absolute;
left: 0;
bottom: 0;
background: linear-gradient(
8.41deg,
rgba(144, 182, 255, 0.6) 7.04%,
rgba(234, 214, 221, 0) 88.71%
);
border-radius: 32px 32px 0px 0px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -3;
}
.inappFirst {
position: relative;
overflow: hidden;
max-width: 1440px;
margin: 0 auto;
}
.inappFirst::after {
content: "";
display: block;
max-width: 674px;
width: 100%;
height: 674px;
position: absolute;
top: -60px;
right: 135px;
border-radius: 674px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(50px);
z-index: -1;
}
.inappFirst::before {
content: "";
position: absolute;
top: 0;
left: -80px;
display: block;
width: 100%;
height: 980px;
border-radius: 1440px;
opacity: 0.2;
background: linear-gradient(
112deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
filter: blur(50px);
z-index: -1;
}
.inappMain {
padding: 112px 0;
position: relative;
}
.inappMain::after {
content: "";
display: block;
max-width: 1120px;
width: 100%;
height: 668px;
position: absolute;
top: 0;
right: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_bg_line.svg) no-repeat right / contain;
z-index: -1;
}
.inappMain_info_title {
font-size: 48px;
font-weight: 400;
line-height: 60px;
margin-bottom: 16px;
max-width: 470px;
}
.inappMain__info_desc {
margin-bottom: 32px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.inappMain__info_btn {
}
.inappMain__wrap {
max-width: 536px;
margin: 0 auto;
}
.inappMain__wrap svg {
width: 100%;
height: 100%;
}
.inappDisc {
padding-bottom: 112px;
z-index: 1;
position: relative;
}
.inappDisc__title {
text-align: center;
margin-bottom: 32px;
color: #000;
font-size: 48px;
font-weight: 400;
line-height: 60px;
}
.inappDisc__tabs {
}
.inappDisc__tabs_nav {
border-radius: 100px;
background: #fff;
box-shadow: 0px 12px 28px 0px rgba(118, 115, 192, 0.1);
padding: 0 90px;
justify-content: space-around;
}
.inappDisc__tabs_nav .nav-item {
}
.inappDisc__tabs_nav .nav-item .nav-link {
padding: 14px 32px;
border-radius: 8px;
border: 2px solid transparent;
background: #fff;
text-align: center;
font-size: 16px;
font-weight: 700;
line-height: 28px;
color: #000;
}
.inappDisc__tabs_nav .nav-item .nav-link.active {
color: #765cf6;
border-color: #2a1c53;
cursor: default;
}
.inappDisc__tabs_nav .nav-item .nav-link:not(.active):hover {
background-color: var(--color-violet);
color: var(--color-white);
}
.inappDisc__tabs_content {
margin-top: 32px;
}
.inappDisc__tabs_content {
}
.iDtc__item {
display: flex;
align-items: center;
}
.iDtc__item_img {
min-width: 580px;
max-width: 580px;
text-align: center;
}
.iDtc__item_img img {
height: 470px;
}
.iDtc__wrap_info-title {
color: #000;
font-size: 32px;
font-weight: 700;
line-height: 44px;
text-transform: uppercase;
margin-bottom: 16px;
}
.iDtc__wrap_info-desc {
}
.iDtc__wrap_info-desc p {
margin-bottom: 16px;
color: #000;
font-size: 22px;
font-weight: 400;
line-height: 34px;
}
.iDtc__wrap_info-link {
} .inappThird {
padding-bottom: 112px;
position: relative;
}
.inappThird::after {
content: "";
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_perfect_bg.svg) no-repeat center
center / cover;
display: block;
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
transform: translate(0, -50%);
}
.inappThird__title {
color: #000;
font-size: 48px;
font-weight: 400;
line-height: 60px;
text-align: center;
}
.inappThirdWrap {
display: flex;
flex-wrap: wrap;
}
.inappThird__item {
padding: 32px;
margin-top: 32px;
text-align: center;
border-radius: 32px;
background: #fff;
box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.06);
width: 48%;
}
.inappThird__item:nth-child(2n-1) {
margin-right: 32px;
}
.inappThird__item_icon {
width: 80px;
height: 80px;
margin: 0 auto;
display: block;
}
.inappThird__item_title {
color: #000;
text-align: center;
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin: 16px 0;
}
.inappThird__item_desc {
color: #000;
font-size: 22px;
font-weight: 400;
line-height: 34px;
max-width: 474px;
margin: 0;
}
.inappFourth {
padding-top: 0;
}
.inappFive {
padding: 112px 0;
}   .page-template-page-rtb .footer-bg {
display: none;
}
.page-template-page-rtb .footer__bottom {
margin-top: 0;
}
.page-template-page-rtb::after {
content: "";
display: block;
width: 100%;
height: 1209px;
position: absolute;
left: 0;
bottom: 0;
background: linear-gradient(
8.41deg,
rgba(144, 182, 255, 0.6) 7.04%,
rgba(234, 214, 221, 0) 88.71%
);
border-radius: 32px 32px 0px 0px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -3;
}
.rtbsec1-2 {
position: relative;
}
.rtbsec1-2::before {
content: "";
position: absolute;
top: 0;
left: -80px;
display: block;
width: 100%;
height: 980px;
border-radius: 1440px;
opacity: 0.2;
background: linear-gradient(
112deg,
rgba(144, 182, 255, 0) 30.73%,
rgba(144, 182, 255, 0.6) 43.72%,
#ead6dd 76.93%
);
filter: blur(50px);
z-index: -1;
}
.rtbsec1-2::after {
content: "";
display: block;
max-width: 674px;
width: 100%;
height: 674px;
position: absolute;
top: -60px;
right: 135px;
border-radius: 674px;
opacity: 0.4;
background: linear-gradient(112deg, #90b6ff 30.73%, #ead6dd 76.93%);
filter: blur(50px);
z-index: -1;
} .rtbsec1 {
padding: 112px 0 56px;
position: relative;
}
.rtbsec1-2__line {
display: block;
max-width: 1120px;
width: 100%;
height: 668px;
position: absolute;
top: 0;
right: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_bg_line.svg) no-repeat right /
contain;
z-index: -1;
}
.rtbsec1__wrap {
}
.rtbsec1__wrap_title {
font-size: 48px;
font-weight: 400;
line-height: 60px;
margin-bottom: 16px;
max-width: 488px;
}
.rtbsec1__wrap_desc {
font-size: 16px;
font-weight: 400;
line-height: 28px;
max-width: 418px;
}
.rtbsec1__wrap_btn {
}
.rtbsec1__icon svg {
width: 100%;
height: 100%;
}  .rtbsec2 {
padding: 56px 0;
}
.rtbsec2__title {
max-width: 760px;
margin: 0 auto 16px;
text-align: center;
font-size: 48px;
font-weight: 400;
line-height: 60px;
}
.rtbsec2__desc {
font-size: 16px;
font-weight: 400;
line-height: 28px;
max-width: 1020px;
margin: 0 auto 32px;
text-align: center;
}
.rtbsec2__wrap {
display: flex;
}
.rtbsec2__wrap_item:first-child {
margin-right: 40px;
}
.rtbsec2__wrap_item {
max-width: 560px;
width: 100%;
padding: 32px;
box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.06);
text-align: center;
border-radius: 32px;
}
.rtbsec2__wrap_item-icon {
width: 80px;
height: 80px;
display: block;
margin: 0 auto;
}
.rtbsec2__wrap_item-title {
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin: 16px 0;
}
.rtbsec2__wrap_item-desc {
font-size: 22px;
font-weight: 400;
line-height: 34px;
margin-bottom: 0;
}
.rtbsec2__visual {
margin-top: 36px;
text-align: center;
}
.rtbsec2__visual_img {
margin: 0 65px;
}
.rtbsec2__visual_img-mob svg,
.rtbsec2__visual_img svg {
width: 100%;
height: 100%;
}
.rtbsec2__visual_img-mob {
display: none;
}
.rtbsec2__visual_desc {
margin-top: 32px;
font-size: 22px;
font-weight: 400;
line-height: 34px;
}
.rtbsec2__visual_desc p {
margin-bottom: 0;
}
.rtbsec2__visual_desc a {
border-bottom: 2px solid #000;
}  .rtbsec3 {
padding: 56px 0;
}
.rtbsec3__wrap {
}
.rtbsec3__wrap_title {
text-align: center;
margin-bottom: 32px;
font-size: 48px;
line-height: 60px;
}
.rtbsec3__wrap_slider {
}
.rtbsec3__wrap_slider .swiper-wrapper {
}
.rtbsec3__wrap_slider .swiper-button-next,
.rtbsec3__wrap_slider .swiper-button-prev {
transform: translate(-30%, -48%);
width: 64px;
height: 64px;
top: 48%;
}
.rtbsec3__wrap_slider .swiper-button-next::after,
.rtbsec3__wrap_slider .swiper-button-prev::after {
content: "";
}
.rtbsec3__wrap_slider .swiper-button-next {
right: 28%;
background: var(--arrow-right) no-repeat center / contain;
}
.rtbsec3__wrap_slider .swiper-button-prev {
left: 30%;
background: var(--arrow-left) no-repeat center / contain;
}
.rtbsec3__wrap_slider .swiper-pagination {
display: flex;
justify-content: center;
position: static;
margin-top: 32px;
}
.rtbsec3__wrap_slider .swiper-pagination {
}
.rtbsec3__wrap_slider .swiper-pagination .swiper-pagination-bullet {
display: block;
width: 12px;
height: 12px;
margin: 0 10px !important;
background-color: var(--color-violet);
border-radius: 50%;
opacity: 1;
}
.rtbsec3__wrap_slider .swiper-pagination .swiper-pagination-bullet-active {
background-color: var(--color-violet-light);
}
.rtbsec3-slide {
display: flex;
justify-content: center;
}
.rtbsec3-slide-box {
max-width: 400px;
margin: 0 auto;
}
.rtbsec3-slide-img {
}
.rtbsec3-slide-title {
margin-top: 32px;
font-size: 32px;
font-weight: 700;
line-height: 44px;
text-align: center;
}
.rtbsec3__wrap_slider .swiper-wrapper {
}  .rtbsec4 {
padding: 56px 0;
position: relative;
}
.rtbsec4::after {
content: "";
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_perfect_bg.svg) no-repeat center
center / cover;
display: block;
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
transform: translate(0, -50%);
}
.rtbsec4-bg {
display: block;
position: absolute;
bottom: 0;
right: 0;
width: 1440px;
height: 1429px;
z-index: -1;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='1440' height='1429' viewBox='0 0 1440 1429' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-626 1414C-299.616 1346.6 -12.6674 1004.63 131.557 1222.13C400.016 1626.99 497.304 681.432 776.487 1070.86C1101.21 1523.8 938.213 367.099 1333 1121.5C1420.64 1288.98 1296.96 62.1977 1766 15' stroke='url(%23paint0_linear_316_6233)' stroke-width='30'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_316_6233' x1='2505' y1='69.5001' x2='42.8085' y2='464.217' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.295574' stop-color='%23765CF6' stop-opacity='0'/%3E%3Cstop offset='0.423868' stop-color='%23765CF6' stop-opacity='0'/%3E%3Cstop offset='0.56485' stop-color='%23765CF6' stop-opacity='0.385417'/%3E%3Cstop offset='0.808931' stop-color='%23148EFD' stop-opacity='0.0642933'/%3E%3Cstop offset='1' stop-color='%230098FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
no-repeat center center / contain;
}
.rtbsec4__title {
text-align: center;
font-size: 48px;
line-height: 60px;
}
.rtbsec4__box {
display: flex;
flex-wrap: wrap;
}
.rtbsec4__box_item {
flex: 0 0 auto;
width: 50%;
}
.rtbsec4-col {
margin-top: 32px;
}
.rtbsec4__wrap {
text-align: center;
padding: 32px 32px 56px;
border-radius: 32px;
background: #fff;
box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.06);
position: relative;
z-index: 3;
min-height: 356px;
height: 100%;
}
.rtbsec4__wrap_icon {
display: block;
width: 80px;
height: 80px;
margin: 0 auto;
}
.rtbsec4__wrap_title {
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin: 16px 0;
}
.rtbsec4__wrap_desc {
font-size: 22px;
font-weight: 400;
line-height: 34px;
}
.rtbsec4__btn {
margin-top: 48px;
}  .rtbsec5 {
padding: 56px 0 112px;
}
.rtbsec5__wrap {
text-align: center;
}
.rtbsec5__wrap_title {
font-size: 48px;
line-height: 60px;
}
.rtbsec5__wrap_desc {
margin-top: 16px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.rtbsec5__box {
margin-top: 32px;
display: flex;
justify-content: center;
align-items: center;
}
.rtbsec5__box_item {
width: 168px;
height: 168px;
border-radius: 400px;
padding: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-right: -16px;
}
.rtbsec5__box_item:nth-child(odd) {
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
}
.rtbsec5__box_item:nth-child(even) {
background: linear-gradient(
180deg,
#765cf6 0%,
rgba(118, 92, 246, 0.8) 100%
);
}
.rtbsec5__box_item:nth-child(even) p {
color: #fff;
}
.rtbsec5__box_item p {
font-size: 21px;
font-weight: 700;
line-height: 34px;
margin-bottom: 0;
}  .rtbsec6 {
padding: 56px 0;
position: relative;
}
.rtbsec6::after {
content: "";
width: 98%;
height: 100%;
display: flex;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, 0);
z-index: -1;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
}
.rtbsec6__wrap {
}
.rtbsec6__wrap_title {
text-align: center;
font-size: 48px;
line-height: 60px;
}
.rtbsec6__wrap_slider {
margin-top: 32px;
}
.rtbsec6__wrap_slider-item {
display: flex;
justify-content: center;
}
.rtbsec6__wrap_slider-item-img {
background: rgba(255, 255, 255, 1);
border: 1px solid rgba(0, 0, 0, 1);
border-radius: 100px;
padding: 12px 40px; height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.rtbsec6__wrap_slider .swiper-pagination {
position: static;
margin-top: 32px;
}
.rtbsec6__wrap_slider .swiper-pagination-bullet {
background: rgba(42, 28, 83, 1);
margin: 0 8px;
width: 12px;
height: 12px;
opacity: 1;
}
.rtbsec6__wrap_slider .swiper-pagination-bullet-active {
background: rgba(118, 92, 246, 1);
}  .rtbsec7 {
padding: 112px 0 0;
}
.rtbsec7__title {
margin-bottom: 32px;
font-size: 48px;
line-height: 60px;
}   .socTrafSec1-2-wrap {
position: relative;
}
.socTrafSec1-2-wrap::after {
content: "";
display: block;
max-width: 1120px;
width: 100%;
height: 668px;
position: absolute;
top: 0;
right: 0;
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_bg_line.svg)
no-repeat right / contain;
z-index: -1;
}
.socTrafSec1 {
padding: 121px 0 112px;
position: relative;
}
.socTrafSec1__wrap {
display: flex;
}
.socTrafSec1__wrap_left {
width: 50%;
}
.socTrafSec1__wrap_left-title {
font-size: 48px;
font-weight: 400;
line-height: 60px;
margin-bottom: 20px;
max-width: 453px;
}
.socTrafSec1__wrap_left-title span {
font-weight: 700;
}
.socTrafSec1__wrap_left-desc {
font-size: 16px;
font-weight: 400;
line-height: 28px;
margin-bottom: 30px;
max-width: 453px;
}
.socTrafSec1__wrap_left-link {
}
.socTrafSec1__wrap_right {
width: 50%;
position: relative;
}
.socTrafSec1__wrap_right-bg {
position: absolute;
top: -80px;
left: 50%;
transform: translate(-50%, 0);
display: block;
width: 355px;
}
.swr-slider__item_box {
max-width: 440px;
margin: 0 auto;
}
.socTrafSec1__wrap_right-slider {
padding-bottom: 91px;
}
.swiper-slide .swr-slider__item {
}
.swr-slider__item_box-img {
position: relative;
}
.swr-slider__item_box-img img {
border-radius: 16px;
}
.swr-slider__item_box-img a {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.swr-slider__item_box-info {
border-radius: 16px;
background-color: #fff;
padding: 16px;
margin: -1px 12px 0;
position: relative;
z-index: 2;
}
.swr-slider__item_box-info h2 {
font-size: 25px;
font-weight: 700;
line-height: 36px;
}
.swr-slider__item-5 .swr-slider__item_box-info h2 {
font-size: 19px;
}
.swr-slider__item_box-info p {
font-size: 16px;
font-weight: 400;
line-height: 28px;
margin-bottom: 0;
}
.socTrafSec1__wrap_right .swiper-pagination {
bottom: 0;
}
.socTrafSec1__wrap_right .swiper-pagination .swiper-pagination-bullet {
border: 1px solid rgba(0, 0, 0, 0.3);
width: 12px;
height: 12px;
background-color: #fff;
margin: 0 10px;
}
.socTrafSec1__wrap_right .swiper-pagination .swiper-pagination-bullet-active {
background-color: rgba(118, 92, 246, 1);
border-color: transparent;
} .socTrafSec2 {
padding-bottom: 112px;
}
.socTrafSec2__title {
text-align: center;
font-size: 48px;
font-weight: 400;
line-height: 60px;
margin-bottom: 32px;
}
.socTrafSec2__tabs_btn {
max-width: 685px;
width: 100%;
margin: 0 auto 32px;
box-shadow: 0px 12px 28px 0px rgba(118, 115, 192, 0.1);
background: rgba(255, 255, 255, 1);
padding: 0 90px;
border-radius: 160px;
justify-content: center;
}
.socTrafSec2__tabs_btn li:not(:last-child) {
margin-right: 16px;
}
.socTrafSec2__tabs_btn li button {
border-radius: 8px;
border: 2px solid transparent;
padding: 14px 32px 14px 32px;
background-color: #fff;
font-size: 16px;
font-weight: 700;
line-height: 28px;
color: rgba(42, 28, 83, 1);
}
.socTrafSec2__tabs_btn li button.active {
border: 2px solid rgba(42, 28, 83, 1);
color: rgba(118, 92, 246, 1);
}
.socTrafSec2__tabs_btn li button.active:hover {
color: rgba(118, 92, 246, 1);
}
.socTrafSec2__tabs_btn li button:hover {
color: rgba(42, 28, 83, 1);
}
.socTrafSec2__tabs_btn li button:not(.active):hover {
background-color: var(--color-violet);
color: var(--color-white);
}
.socTrafSec2__tabs_content {
}
.socTrafSec2__tabs_content-left-top {
text-align: center;
margin-bottom: 48px;
}
.sTS2bc-left-top__title {
font-size: 32px;
font-weight: 700;
line-height: 44px;
margin-bottom: 16px;
}
.sTS2bc-left-top__desc {
font-family: "Gilroy", sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 28px;
margin: 0 auto 32px;
max-width: 824px;
}
.sTS2bc-left-top__images {
display: flex;
justify-content: space-between;
}
.sTS2bc-left-top__images_item {
max-width: 360px;
position: relative;
}
.sTS2bc-left-top__images_item:not(:last-child) {
margin-right: 40px;
}
.sTS2bc-left-top__images_item p {
margin: 16px 0 0;
font-family: "Gilroy";
font-size: 22px;
font-weight: 700;
line-height: 34px;
text-align: center;
}
.sTS2bc-left-top__images_item span {
display: flex;
justify-content: center;
align-items: center;
width: 48px;
height: 48px;
position: absolute;
left: -20px;
top: -20px;
background: #fff;
border: 1px dashed rgba(118, 92, 246, 1);
box-shadow: 0px 15px 28px 0px rgba(32, 21, 71, 0.05);
color: rgba(118, 92, 246, 1);
border-radius: 50%;
font-weight: 900;
font-size: 18px;
line-height: 1;
}
.socTrafSec2__tabs_content-left-bottom {
}
.sTS2bc-right-bottom__title {
font-size: 32px;
font-weight: 400;
line-height: 44px;
text-align: center;
margin-bottom: 24px;
}
.sTS2bc-right-bottom__wrap {
display: flex;
align-items: center;
}
.sTS2bc-right-bottom__wrap_video {
max-width: 600px;
width: 100%;
height: 306px;
position: relative;
}
.sTS2bc-right-bottom__wrap_video iframe {
width: 100%;
height: 100%;
}
.sTS2bc-right-bottom__wrap_video-prev {
position: relative;
}
.sTS2bc-right-bottom__wrap_video-prev button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: block;
width: 106px;
height: 106px;
border: none;
background: none;
border-radius: 50%;
}
.sTS2bc-right-bottom__wrap_video-prev button svg {
}
.sTS2bc-video-icon {
}
.sTS2bc-video-icon-bg {
}
.sTS2bc-right-bottom__wrap_video-prev button:hover .sTS2bc-video-icon-bg {
fill: #765cf6;
}
.sTS2bc-left-bottom__wrap_video-frame {
width: 100%;
}
.sTS2bc-right-bottom__wrap-desc {
max-width: 520px;
margin-left: 40px;
}
.sTS2bc-right-bottom__wrap-desc p {
font-family: "Gilroy";
font-size: 16px;
font-weight: 400;
line-height: 28px;
margin-bottom: 0;
}
.sTS2bc-right-bottom__wrap-desc p:not(:last-child) {
margin-bottom: 16px;
}
.sTS2bc-right-bottom__wrap-desc a {
margin-top: 30px;
} .socTrafSec3 {
position: relative;
padding-bottom: 50px;
}
.socTrafSec3::after {
content: "";
background: url(https://static.monetag.com/wp-content/themes/pubbrand/assets/images/inApp_perfect_bg.svg)
no-repeat left / contain;
display: block;
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
transform: translate(0, -50%);
}
.socTrafSec3__title {
font-size: 48px;
font-weight: 400;
line-height: 60px;
text-align: center;
margin-bottom: 32px;
}
.socTrafSec3__wrap {
height: 100%;
}
.socTrafSec3__wrap_item {
max-width: 564px;
width: 100%;
min-height: 312px;
height: 100%;
margin: 0 auto;
padding: 32px;
border-radius: 32px;
background: #fff;
text-align: center;
box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.06);
}
.socTrafSec3__wrap .socTrafSec3__wrap-col:nth-child(-n + 2) {
margin-bottom: 30px;
}
.socTrafSec3__wrap_item span {
display: block;
width: 80px;
height: 80px;
margin: 0 auto;
}
.socTrafSec3__wrap_item h3 {
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin: 16px 0;
}
.socTrafSec3__wrap_item p {
font-size: 22px;
font-weight: 400;
line-height: 34px;
margin: 0;
}
.page-template-page-social-media-traffic .footer {
padding-top: 70px;
}
.page-template-page-social-media-traffic .wpml-ls-statics-shortcode_actions {
}   .refProgS2 {
padding: 112px 0 0;
}
.refProgS2__title {
max-width: 940px;
text-align: center;
margin: 0 auto 32px;
font-size: 48px;
font-weight: 400;
line-height: 60px;
}
.refProgS2__wrap {
display: flex;
justify-content: space-between;
}
.refProgS2__wrap_item {
padding: 40px 25px;
background-color: #fff;
box-shadow: 0px 12px 28px 0px #7673c01a;
border-radius: 32px;
max-width: 360px;
}
.refProgS2__wrap_item:not(:last-child) {
margin-right: 32px;
}
.refProgS2__wrap_item-top {
display: flex;
align-items: center;
}
.refProgS2__wrap_item-top span {
display: block;
margin-right: 14px;
width: 60px;
height: 60px;
}
.refProgS2__wrap_item-top h3 {
font-size: 22px;
font-weight: 700;
line-height: 34px;
}
.refProgS2__wrap_item-bottom {
margin-top: 19px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.refProgS2__btn {
margin-top: 48px;
text-align: center;
}  .refProgS3 {
padding: 112px 0;
}
.refProgS3__title {
font-size: 48px;
font-weight: 400;
line-height: 60px;
text-align: center;
margin-bottom: 32px;
}
.refProgS3__wrap {
display: flex;
justify-content: space-between;
align-items: center;
}
.refProgS3__wrap_img {
max-width: 528px;
width: 100%;
margin-right: 32px;
}
.refProgS3__wrap_img svg {
width: 100%;
height: auto;
}
.refProgS3__wrap_info {
width: 100%;
}
.refProgS3__wrap_info-name {
font-family: "Gilroy", sans-serif;
font-size: 32px;
font-weight: 400;
line-height: 44px;
margin-bottom: 0;
}
.refProgS3__wrap_info-name span {
font-weight: 700;
}
.refProgS3__wrap_info-name:not(:last-child) {
margin-bottom: 32px;
}
.refProgS3__btn {
text-align: center;
margin-top: 48px;
}  .refProgS4 {
position: relative;
padding: 80px 0;
}
.refProgS4::after {
content: "";
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
left: 1%;
background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -1;
}
.benefit {
}
.benefit__title {
text-align: center;
font-size: 48px;
line-height: 60px;
max-width: 764px;
margin: 0 auto 32px;
}
.benefit__wrap .swiper-wrapper {
align-items: center;
}
.benefit__slider_item div {
padding: 40px 24px;
background-color: #fff;
max-width: 360px;
width: 100%;
border-radius: 32px;
margin: 0 auto;
}
.benefit__slider_item-title {
font-size: 32px;
font-weight: 700;
line-height: 44px;
text-align: center;
margin-bottom: 24px;
}
.benefit__slider_item p {
position: relative;
padding-left: 32px;
}
.benefit__slider_item p::before {
content: "";
display: block;
width: 24px;
height: 24px;
background: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23CDFC81'/%3E%3Cpath d='M11.1348 19.0138V18.921L11.0424 18.9141C10.1239 18.8446 9.24479 18.5282 8.50487 17.9887L8.50498 17.9886L8.50003 17.9854C8.30362 17.8591 8.16868 17.6545 8.1188 17.4268C8.06951 17.194 8.11896 16.954 8.24588 16.7637L8.24589 16.7637L8.2468 16.7623C8.37468 16.5633 8.57196 16.4235 8.80221 16.3817L8.80222 16.3817L8.80569 16.381C9.03045 16.3318 9.26959 16.3735 9.46698 16.4993C9.92076 16.8388 10.4548 17.0569 11.0207 17.1377L11.1348 17.154V17.0387V12.4669V12.4027L11.0765 12.376C10.1867 11.9683 9.44581 11.5201 8.97528 10.9172C8.50925 10.32 8.30095 9.56115 8.49705 8.51148L8.49726 8.5103C8.61201 7.85241 8.91013 7.24897 9.36821 6.76798L9.36821 6.76799L9.36878 6.76737C9.81925 6.28636 10.4073 5.95028 11.0566 5.80513L11.1348 5.78766V5.70754V4.98361C11.1348 4.75081 11.2263 4.52435 11.3888 4.35401C11.5592 4.19151 11.7856 4.1 12.0184 4.1C12.2523 4.1 12.4784 4.19227 12.6402 4.35399C12.8102 4.524 12.902 4.75033 12.902 4.98361V5.63672V5.72041L12.9844 5.73516C13.7138 5.86568 14.3973 6.18013 14.9737 6.64808C15.1438 6.81242 15.2479 7.03104 15.2549 7.26073L15.2548 7.26074L15.255 7.26376C15.269 7.49517 15.1849 7.72064 15.0294 7.89037C14.8666 8.06723 14.6473 8.1666 14.4124 8.18084C14.1813 8.19485 13.9549 8.11096 13.7763 7.95378L13.7764 7.95364L13.7716 7.94992C13.5501 7.77759 13.3039 7.64636 13.0336 7.55628L12.902 7.51241V7.65115V11.1449V11.2136L12.9661 11.2383C13.1718 11.3174 13.3695 11.3885 13.566 11.4593L13.5662 11.4593L13.5661 11.4594L13.5705 11.4608C14.4126 11.7211 15.1244 12.2798 15.576 13.0299C16.0276 13.78 16.1884 14.6758 16.0276 15.5411L16.0275 15.5418C15.8892 16.3177 15.5281 17.0476 14.9827 17.6314L14.9822 17.6319C14.445 18.2152 13.7463 18.6223 12.9778 18.8145L12.902 18.8334V18.9115V19.7377C12.902 19.9714 12.81 20.1967 12.6417 20.358L12.6416 20.3579L12.6387 20.361C12.4774 20.5293 12.2521 20.6213 12.0184 20.6213C11.7851 20.6213 11.5588 20.5295 11.3888 20.3595C11.2271 20.1977 11.1348 19.9716 11.1348 19.7377V19.0138ZM14.0558 13.958L14.0553 13.9572C13.8227 13.5751 13.4571 13.2839 13.032 13.1505L12.902 13.1097V13.2459V16.842V17.0094L13.0494 16.93C13.3675 16.7587 13.6471 16.5291 13.8617 16.2322C14.0752 15.9447 14.223 15.6 14.2808 15.2462C14.3635 14.8063 14.2888 14.3491 14.0558 13.958ZM11.0024 10.3346L11.1348 10.38V10.24V7.80066V7.61605L10.9802 7.71689C10.788 7.84224 10.621 8.00909 10.4955 8.20117C10.3621 8.39324 10.2791 8.60891 10.2373 8.83094C10.1452 9.12915 10.1713 9.45259 10.3159 9.7339C10.454 10.018 10.7032 10.232 11.0024 10.3346Z' fill='%232A1C53' stroke='%23CDFC81' stroke-width='0.2'/%3E%3C/svg%3E")
no-repeat center center / contain;
position: absolute;
left: 0;
top: 5px;
}
.benefit__slider_item-subtitle {
font-size: 22px;
font-weight: 700;
line-height: 34px;
margin-bottom: 24px;
}
.benefit__slider_item-desc {
font-size: 16px;
font-weight: 400;
line-height: 34px;
}
.refProgS4__btn {
margin-top: 48px;
text-align: center;
} .refProgWorks {
padding: 112px 0 0;
}
.refProgWorks__title {
font-size: 48px;
line-height: 60px;
text-align: center;
}
.refProgWorks__wrap {
display: flex;
align-items: center;
margin: 32px 0 48px;
}
.refProgWorks__wrap_img {
max-width: 760px;
width: 100%;
margin-right: 20px;
}
.refProgWorks__wrap_inf {
max-width: 360px;
width: 100%;
margin-left: 40px;
}
.refProgWorks__wrap_inf ul {
}
.refProgWorks__wrap_inf ul li {
font-size: 22px;
line-height: 34px;
list-style: decimal;
}
.refProgWorks__wrap_inf ul li::marker {
font-weight: 700;
}
.refProgWorks__wrap_inf ul li:not(:last-child) {
margin-bottom: 32px;
}
.refProgWorks__wrap_inf ul li p {
margin: 0;
}
.refProgWorks__wrap_inf ul li a {
text-decoration: underline;
color: #000;
font-weight: 700;
}
.refProgWorks__btn {
text-align: center;
}  .refProgS5 {
padding-top: 112px;
padding-bottom: 0;
}
.refProgS5 .socTrafSec3__wrap_item span {
display: inline;
}
.refProgS5__btn {
margin-top: 48px;
text-align: center;
} .page-template-page-referral-program .footer {
padding-top: 0;
}    .tma__main {
}
.tma__main_top {
padding-bottom: 112px;
}
.tma__main_top .rtbsec1__icon {
max-width: 556px;
}
.tma__main_top .rtbsec1__wrap_title {
max-width: 470px;
}
.tma__main_top .rtbsec1__wrap_desc {
margin-bottom: 32px;
}
.tma__main_top .rtbsec1__wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
height: 100%;
}
.tma__main_bottom {
padding-bottom: 112px;
} .tma__what {
}
.tma__what .inappDisc__tabs_nav {
max-width: 861px;
width: 100%;
margin: 0 auto;
}
.tma__what .learn__wrap .swiper-button-next,
.tma__what .learn__wrap .swiper-button-prev {
transform: translateY(-70%);
}
.tma__what .iDtc__wrap_info {
margin-right: 64px;
}
.tma__what .iDtc__wrap_info-desc {
margin-bottom: 32px;
}
.tma__what .iDtc__wrap_info-desc p {
font-size: 16px;
line-height: 28px;
margin-bottom: 0;
}
.tma__what .iDtc__wrap_info-desc p:not(:last-child) {
margin-bottom: 16px;
}
.tma__what .iDtc__wrap_info-desc p:first-child {
margin-bottom: 32px;
}
.tma__what .iDtc__item_img {
padding: 32px;
background: rgba(244, 248, 255, 1);
border-radius: 32px;
height: 569px;
}
.tma__what .iDtc__item_img-anim {
max-width: 303px;
margin: 0 auto;
}
.tma__what .iDtc__item_btn {
display: none;
} .tma__read {
padding-bottom: 112px;
}
.tma__read .learn__wrap .swiper-pagination {
position: static;
margin-top: 40px;
}
.tma__read .learn__title {
margin-bottom: 32px;
} .faq {
position: relative;
padding: 80px 0;
-webkit-transition: max-height ease-in-out 0.3s, opacity ease-in-out 0.3s;
-o-transition: max-height ease-in-out 0.3s, opacity ease-in-out 0.3s;
transition: max-height ease-in-out 0.3s, opacity ease-in-out 0.3s;
}
.faq::after {
content: "";
display: block;
width: 98%;
height: 100%;
position: absolute;
top: 0;
right: 1%; background: linear-gradient(
51.9deg,
#cdfc81 17.62%,
rgba(205, 252, 129, 0) 103.47%
);
border-radius: 32px;
transform: matrix(-1, 0, 0, 1, 0, 0);
z-index: -1;
}
.faq__title {
font-weight: 700;
font-size: 48px;
line-height: 60px;
}
.telAccord-item {
background: none;
border-bottom: 2px solid rgba(200, 190, 252, 1);
}
.telAccord-item.telAccord-open .telAccord-header span {
background-color: #765cf6;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
transition: all ease-in-out 0.3s;
}
.telAccord-item.telAccord-open .telAccord-header span svg path {
fill: #fff;
}
.telAccord-header {
border: none;
background: none;
outline: none;
font-weight: 700;
font-size: 22px;
line-height: 34px;
color: rgba(0, 0, 0, 1);
padding: 40px 0 30px;
width: 100%;
text-align: left;
display: flex;
justify-content: space-between;
}
.telAccord-header:focus {
box-shadow: none;
}
.telAccord-header span {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
min-width: 40px;
height: 40px;
min-height: 40px;
background: #fff;
border-radius: 100%;
transition: all ease-in-out 0.3s;
-webkit-transform: rotate(0);
transform: rotate(0);
}
.telAccord-header:hover span {
background-color: #765cf6;
}
.telAccord-header:hover span svg path {
fill: #fff;
} .faq .telAccord-header {
padding-right: 50px;
position: relative;
}
.faq .telAccord-header span {
position: absolute;
right: 0;
}
.telAccord-header:not(.collapsed) {
box-shadow: none;
}
.faq__accordion .accordion-collapse { }
.telAccord-content {
font-weight: 400;
font-size: 16px;
line-height: 28px;
max-width: 1037px;
margin-bottom: 24px;
max-height: 0;
overflow: hidden;
-webkit-transition: max-height 0.3s ease-in-out;
-o-transition: max-height 0.3s ease-in-out;
transition: max-height 0.3s ease-in-out;
}
.telAccord-content p {
margin-bottom: 0;
}
.telAccord-content a {
text-decoration: underline;
font-weight: 700;
}
.faq__btn {
margin-top: 48px;
}
.faq .accordion-collapse.collapse:not(.show) {
opacity: 0;
}
.accordion-collapse.collapse.show {
height: max-content;
opacity: 1;
} .page-template-page-telegram-mini-app-monetization .footer {
padding-top: 112px;
}
.page-template-page-telegram-mini-app-monetization .footer__bottom {
margin-top: 0;
}
.tma__read .learn__wrap .swiper-button-next,
.tma__read .learn__wrap .swiper-button-prev {
transform: translate(0, -100%);
} .wpml-ls-first-item.wpml-ls-last-item {
display: none!important;
}