: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 {
padding: 11px 20px;
background-color: var(--color-white);
border-radius: 8px;
margin-right: 10px;
}
.header-inside-signup span {
display: inline-block;
width: 18px;
height: 18px;
}
.header-inside-signup:hover {
color: var(--color-violet-light);
background-color: #2a1c53;
}
.header-inside-signup svg path {
stroke: #765cf6;
}
.header-inside-earning {
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-earning:hover {
color: 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://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://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://monetag.com/wp-content/themes/pubbrand/assets/images/mon-esp.svg);
} .header-inside .wpml-ls-statics-shortcode_actions {
width: 68px;
}
.header-inside .wpml-ls-statics-shortcode_actions a {
padding: 0;
border: none;
}
.header-inside .wpml-ls-statics-shortcode_actions .wpml-ls-item {
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://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://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://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://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://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://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://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 0 24px;
position: relative;
}
.footer__bottom .container {
padding: 0 24px !important;
}
.footer__bottom-bg {
display: block;
width: 100%;
height: 100%;
background: var(--color-white);
border-radius: 32px;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.fbl-logo {
display: block;
width: 171px;
height: 35px;
}
.fbl-desc {
margin-top: 38px;
margin-bottom: 0;
max-width: 660px;
font-size: 16px;
line-height: 28px;
}
.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: 24px;
}
.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: 8px;
}
.fbr-mail {
display: inline-block;
font-weight: 700;
font-size: 22px;
line-height: 34px;
margin-bottom: 8px;
}
.fbr-support:hover,
.fbr-mail:hover,
.footer__bottom_right-pr-link:hover {
color: var(--color-green-hover);
text-decoration: underline;
}
.footer__bottom_right-pr {}
.footer__bottom_right-pr * {
display: block;
font-weight: 700;
font-size: 22px;
line-height: 34px;
color: var(--color-black);
}
.footer__bottom_right-pr-name {}
.footer__bottom_right-pr-link {}
.fbr-social {
margin-top: 24px;
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-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-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-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-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-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");
}
.fbr-location {
margin-top: 24px;
}
.fbr-location p {
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: var(--color-black);
margin-bottom: 0;
}
.fbr-location-br {
display: none;
}
.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: 14px;
line-height: 24px;
}
.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;
}
.footer__trustpilot {
margin-top: 24px;
display: inline-flex;
align-items: center;
gap: 16px;
background: rgba(233, 240, 255, 1);
padding: 13px 16px;
border-radius: 8px;
}
.footer__trustpilot_item {
display: block;
font-weight: 700;
font-size: 12px;
line-height: 18px;
color: rgba(42, 28, 83, 1);
}
.footer__trustpilot_item span {
font-weight: 700;
font-size: 16px;
line-height: 18px;
margin-right: 16px;
}
.footer__botto_navi {
margin-top: -192px;
margin-bottom: 38px;
gap: 24px;
}
.footer__botto_navi-item-name {
font-weight: 700;
font-size: 14px;
line-height: 24px;
color: rgba(0, 0, 0, 1);
margin-bottom: 8px;
}
a.footer__botto_navi-item-name:hover {
text-decoration: underline;
}
.footer__botto_navi-item-list li {
min-width: 145px;
}
.footer__botto_navi-item-list li:not(:last-child) {
margin-bottom: 8px;
}
.footer__botto_navi-item-list li a {
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: rgba(0, 0, 0, 1);
}
.footer__botto_navi-item-list li a:hover {
font-weight: 700;
text-decoration: underline;
}   .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(%23paint0_linear_69_8082)' stroke-width='32' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cg filter='url(%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(%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://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://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://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://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://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://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://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://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://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;  }
.inappMain-bg {
display: block;
max-width: 1120px;
width: 100%;
height: 668px;
position: absolute;
top: 0;
right: 0;
background: url(https://monetag.com/wp-content/themes/pubbrand/assets/images/inApp_bg_line.svg) no-repeat right / contain;
z-index: -1;
}
.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_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 {
max-width: 800px;
text-align: center;
margin: 0 auto 32px;
color: #000;
font-size: 48px;
font-weight: 400;
line-height: 60px;
}
.inappDisc__tabs_nav {
border-radius: 100px;
background: #fff;
box-shadow: 0px 12px 28px 0px rgba(118, 115, 192, 0.1);
padding: 0 60px;
justify-content: space-around;
}
.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;
}
.iDtc__item {
display: flex;
align-items: center;
gap: 32px;
}
.iDtc__item_img { width: 100%;
max-width: 580px;
text-align: center;
}
.iDtc__item_img img {
max-height: 470px;
height: auto;
}
.iDtc__wrap_info {
width: 100%;
}
.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 p {
margin-bottom: 16px;
color: #000;
font-size: 22px;
font-weight: 400;
line-height: 34px;
} .inappThird {
padding-bottom: 112px;
position: relative;
}
.inappThird::after {
content: "";
background: url(https://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;
margin-bottom: 30px;
}
.inappThird__desc {
text-align: center;
max-width: 1060px;
margin: 0 auto;
}
.inappThird__desc p {
font-size: 22px;
line-height: 34px;
color: var(--color-black);
margin: 0;
}
.inappThird__desc p:not(:last-child){
margin-bottom: 8px;
}
@media screen and (max-width: 576px) {
.inappThird__desc p {
font-size: 14px;
line-height: 23px;
}
}
.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://monetag.com/wp-content/themes/pubbrand/assets/images/inApp_bg_line.svg) no-repeat right /
contain;
z-index: -1;
}
.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__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_title {
text-align: center;
margin-bottom: 32px;
font-size: 48px;
line-height: 60px;
}
.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 .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-title {
margin-top: 32px;
font-size: 32px;
font-weight: 700;
line-height: 44px;
text-align: center;
}  .rtbsec4 {
padding: 56px 0;
position: relative;
}
.rtbsec4::after {
content: "";
background: url(https://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_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_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;
}
.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-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;
}
.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: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;
}   .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__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 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: 535px;
}
.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 {
width: 100%;
margin: 0 auto;
justify-content: center;
gap: 16px;
}
.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 img {
height: 100%;
}
.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%);
}