/* USER VARIABLES SECTION */
:root {
    --gray: #BCBCBC;
    --red: #E93636;
    --purple: #3b1b67;
    --purple-light: #8A6FB0;
    --yellow: #FFD87A;
    --dark-purple: #2C0E55;
    --green: #00FF47;
    --green-hover: #03EB44;
    --green-active: #0AD042;
    --black: #1f1f1f;
    --text: #484848;
    --white: #F4EDFD;
    --regular-text: 18px;
    --lineheight: 1.4;
    --lineheight-title: 1.3;
    --userfont: Noto Sans, sans-serif;
    --altfont: Mulish, sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: 16px; max-width: 1231px; }
.row, .row > * { --bs-gutter-x: 12px; }


/* GENERAL CSS SETTINGS */
::placeholder { color: var(--gray); font-size: 18px; }
input:not([type='radio']), textarea { outline: none !important; }

body {
    font-family: var(--userfont);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--white);
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background-color: var(--purple);
}
.body-overflow {
    overflow: hidden;
}
@media screen and (max-width: 767.98px) {
    body {
        font-size: 16px;
    }
}
div:not(.mfp-wrap)::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
div:not(.mfp-wrap)::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
div:not(.mfp-wrap)::-webkit-scrollbar-thumb {
    background: var(--purple);
    border: 0px none #ffffff;
    border-radius: 10em;
}
div:not(.mfp-wrap)::-webkit-scrollbar-thumb:hover,
div:not(.mfp-wrap)::-webkit-scrollbar-thumb:active {
    background: var(--purple);
}
div:not(.mfp-wrap)::-webkit-scrollbar-track {
    background: #eee;
    border: 0px none #ffffff;
    border-radius: 10em;
}
div:not(.mfp-wrap)::-webkit-scrollbar-track:hover,
div:not(.mfp-wrap)::-webkit-scrollbar-track:active {
    background: #eee;
}
div:not(.mfp-wrap)::-webkit-scrollbar-corner {
    background: transparent;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    text-decoration: none;
    transition: all .2s ease-in-out;
    color: var(--green);
}
a:hover {
    color: var(--green-hover);
}
a:active {
    color: var(--green-active);
}

button:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: var(--lineheight-title);
    color: #fff;
    font-family: var(--altfont);
    font-weight: 800;
    margin-top: 0;
}
h1, .h1 {
    font-size: 44px;
}
h2, .h2 {
    font-size: 36px;
}
h2 {
    margin-bottom: 36px;
}
.h2 {
    margin-bottom: 56px;
}
h3, .h3 {
    font-size: 24px;
}

img {
    width: auto;
    height: auto;
}
img, svg {
    vertical-align: middle;
}
p {
    margin: .9em 0;
}
b, strong {
    font-weight: 700;
}

/* USER STYLES */
input:not([type='radio'], [type='checkbox'], [type='submit']), textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--userfont);
    font-weight: normal;
    color: var(--text);
    font-size: 18px;
    border: 1px solid var(--gray);
    border-radius: 10em;
    background-color: #fff;
    padding: 0 24px;
    height: 60px;
    line-height: 60px;
    width: 100%;
    display: block;
    transition: all .25s ease-in-out;
    margin-bottom: 12px;
}

input:not([type='radio']):hover, input:not([type='radio']):focus, textarea:hover, textarea:focus {
    outline: none;
}

textarea {
    overflow: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: var(--lineheight);
    height: auto;
}

@media screen and (max-width: 767.98px) {
    input:not([type='radio'], [type='checkbox'], [type='submit']) {
        height: 46px;
        line-height: 46px;
        font-size: 16px;
    }
    ::placeholder {
        font-size: 16px;
    }
    textarea {
        border-radius: 8px;
    }
}

label {
    display: block;
}
section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}
@media screen and (max-width: 767.98px) {
    h1, .h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h2 {
        margin-bottom: 40px;
    }
    .h2 {
        margin-bottom: 40px;
    }
    h3, .h3 {
        font-size: 22px;
    }
    h4, .h4 {
        font-size: 18px;
        text-transform: uppercase;
    }

    section {
        padding: 80px 0;
    }
}


.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.alt_font {
    font-family: var(--altfont);
    font-weight: 800;
}
.text-center {
    text-align: center;
}


.link-purple {
    color: var(--purple);
    text-decoration: underline;
    display: inline-block;
}
.link-purple:hover {
    color: var(--dark-purple);
}
.link-purple:active {
    color: var(--purple);
}




/* Buttons */
.btn {
    display: inline-block;
    box-shadow: none;
    border: none;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
    padding: 0 24px;
    text-decoration: none;
    transition: all .25s ease;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border-radius: 10em;
    white-space: nowrap;
}
.btn:focus {
    outline: none;
}
.btn-green {
    background-color: var(--green);
    color: var(--black);
}
.btn-green:hover {
    background-color: var(--green-hover);
    color: var(--black);
}
.btn-green:active {
    background-color: var(--green-active);
    color: var(--black);
}
.btn-purple {
    background-color: var(--purple);
    color: #fff;
}
.btn-purple:hover {
    background-color: var(--dark-purple);
}
@media screen and (max-width: 767.98px) {
    .btn {
        display: block;
        width: 100%;
        font-size: 16px;
        height: 46px;
        line-height: 46px;
        max-width: 460px;
    }
}



/* Header */
.header {
    background-color: var(--purple) !important;
    padding-bottom: 22px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all .25s ease;
}
.header >.container {
    padding-top: 32px;
    transition: all .25s ease;
}
.header.headroom--not-top {
    padding-bottom: 10px;
}
.header.headroom--not-top >.container {
    padding-top: 10px;
}
.header .logo {
    display: inline-block;
}
.header .logo img {
    max-width: 100%;
    height: auto;
}

/* Nav Menu */
.nav-menu {
    padding-left: 11px;
    position: relative;
    z-index: 2;
}
.nav-menu ul {
    padding: 0;
    margin: 0;
}
.nav-menu ul li {
    list-style-type: none;
}
.nav-menu >ul >li {
    display: inline-block;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    font-size: 16px;
}
.nav-menu >ul >li >a {
    color: var(--white);
    padding: 7px 15px;
    display: inline-block;
    cursor: pointer;
}
.nav-menu >ul >li >span {
    color: var(--white);
    padding: 7px 15px;
    border-radius: 16px 16px 0px 0px;
    display: inline-block;
    font-size: 16px;
    border: 1px solid transparent;
    border-bottom: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.nav-menu >ul >li >span >svg {
    transition: all .25s ease;
    margin-left: 7px;
}

.nav-menu >ul >li:hover >span {
    background-color: var(--purple-light);
    border-color: var(--white)
}
.nav-menu >ul >li:hover >span >svg {
    transform: scale(1, -1);
}
.nav-menu >ul >li:hover .submenu_wrapper {
    display: flex;
}
.nav-menu >ul >li >a:hover {
    color: var(--green);
}

.submenu_wrapper {
    position: absolute;
    left: -103px;
    top: calc(100% - 1px);
    /*width: 684px;*/
    width: 444px;
    border-radius: 16px;
    background-color: var(--purple-light);
    border: 1px solid var(--white);
    overflow: hidden;
    display: none;
}
.submenu_wrapper ul li {
    margin-bottom: 15px;
}
.submenu_wrapper ul li:last-child {
    margin-bottom: 0;
}
.submenu__left_wrapper {
    /*width: calc(100% - 240px);*/
    width: 100%;
}
.submenu__left_wrapper .submenu--flex a {
    color: var(--white);
}
.submenu__left_wrapper .submenu--flex a:hover {
    color: var(--green);
}
.submenu--flex {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    padding-top: 0;
}
.submenu--flex .item:not(:last-child) {
    margin-right: 24px;
}
.submenu--title {
    color: var(--white);
    margin-bottom: 15px;
    padding: 24px;
    padding-bottom: 0;
}
.submenu--subtitle {
    color: var(--white);
    margin-bottom: 15px;
    background-color: var(--purple);
    border-radius: 0px 32px 32px 0px;
    display: inline-block;
    padding: 5px 12px;
    font-size: 16px;
}
.submenu__left--bottom {
    padding: 9px 24px;
    background-color: var(--purple);
}
.submenu__left--bottom a {
    text-decoration: underline;
    color: var(--green);
}
.submenu__left--bottom a:hover {
    color: var(--green-hover);
}
.submenu__right_wrapper {
    background-color: var(--white);
    width: 240px;
    padding: 24px;
}
.submenu__right_wrapper .submenu--title {
    padding: 0;
}
.submenu__right_wrapper a {
    color: var(--text);
}
.submenu__right_wrapper a:hover {
    color: var(--purple);
}
.submenu__right_wrapper .item:not(:first-child) {
    margin-top: 24px;
}
.submenu__right_wrapper .submenu--title {
    color: var(--black);
}



/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    z-index: 900;
    overflow: auto;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 16px;
}
.mobile-menu ul {
    padding: 0;
    margin: 0;
}
.mobile-menu ul li {
    list-style-type: none;
    margin-bottom: 40px;
}
.mobile-menu ul li a {
    font-size: 18px;
    text-decoration: none;
}
@media screen and (min-width: 1199.98px) {
    .mobile-menu {
        display: none !important;
    }
    .nav-menu {
        display: block !important;
    }
}
@media screen and (max-width: 1199.98px) {
    .header {
        background-color: var(--purple-light) !important;
        padding-bottom: 0;
    }
    .header >.container {
        padding-top: 0;
    }
    .header > .container > .row {
        overflow: hidden;
    }
    .header .logo {
        line-height: 60px;
    }
    .header.headroom--not-top {
        padding-bottom: 0;
    }
    .header.headroom--not-top >.container {
        padding-top: 0;
    }
    .header >.container {
        padding-top: 0;
    }
    .header .logo img {
        max-width: 87px;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 59px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: auto;
        background-color: var(--purple-light);
        padding: 12px 16px;
        padding-bottom: 30px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .nav-menu >ul >li {
        display: block;
    }

    .submenu_wrapper {
        position: relative;
        display: block;
        top: 0;
        left: 0;
        border: none;
        width: 100%;
        border-radius: 0;
        background-color: transparent;
        padding: 0;
    }
    .nav-menu ul {
        width: 100%;
    }
    .submenu__left_wrapper {
        width: 100%;
    }
    .submenu__right_wrapper {
        width: 100%;
        padding: 0;
        background-color: transparent;
    }
    .submenu--title {
        padding: 0;
        margin-bottom: 0;
        margin-top: 16px;
    }
    .submenu__left_wrapper .submenu--title {
        margin-top: 0;
    }
    .submenu--title ~ * {
        display: none;
    }
    .submenu--flex {
        padding: 0;
    }
    .submenu__left--bottom {
        display: none;
    }
    .nav-menu >ul >li:hover .submenu_wrapper {
        display: block;
    }
    .submenu__right.language-toggle.active .language_tab.language_tab_active .language-toggle__btn_wrapper .submenu--title {
        color: var(--white);
    }
    .submenu__right_wrapper a {
        color: var(--white);
    }
    .submenu__right_wrapper a:hover {
        color: var(--green);
    }
    .submenu_wrapper ul li {
        margin-bottom: 12px;
    }
    .nav-menu >ul >li:not(:first-child) {
        margin-top: 16px;
    }
    .nav-menu >ul >li >a {
        padding: 0;
        font-family: var(--altfont);
        font-weight: 800;
    }
    .nav-menu >ul >li >a > svg {
        display: none;
    }
    .submenu--flex .item br {
        display: none;
    }
    .nav-menu >ul >li >span {
        display: none;
    }
    .submenu__right_wrapper .submenu--title {
        color: var(--white);
    }
    .submenu--title {
        font-size: 18px;
        position: relative;
        padding-right: 25px;
    }
    .submenu--title::after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70711 8.82584C8.31658 9.21636 7.68342 9.21636 7.29289 8.82584L0.707106 2.24005C0.316582 1.84952 0.316583 1.21636 0.707107 0.825835L0.726226 0.806716C1.11675 0.416192 1.74992 0.416192 2.14044 0.806716L8 6.66628L13.8596 0.806715C14.2501 0.416191 14.8832 0.416192 15.2738 0.806715L15.2929 0.825835C15.6834 1.21636 15.6834 1.84952 15.2929 2.24005L8.70711 8.82584Z' fill='%23F4EDFD'/%3E%3C/svg%3E%0A");
        width: 16px;
        height: 10px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }
    .submenu--title.active::after {
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70711 0.806488C8.31658 0.415964 7.68342 0.415965 7.29289 0.806489L0.707106 7.39228C0.316582 7.7828 0.316583 8.41596 0.707107 8.80649L0.726226 8.82561C1.11675 9.21613 1.74992 9.21613 2.14044 8.82561L8 2.96605L13.8596 8.82561C14.2501 9.21613 14.8832 9.21613 15.2738 8.82561L15.2929 8.80649C15.6834 8.41596 15.6834 7.7828 15.2929 7.39227L8.70711 0.806488Z' fill='%2300FF47'/%3E%3C/svg%3E%0A");
    }
    .submenu--subtitle {
        margin-top: 0;
        padding: 7px 12px;
    }
    .submenu--flex .item {
        margin-top: 16px;
    }
    .submenu--subtitle + ul {
        padding-left: 16px;
    }
    .submenu__right_wrapper .item:not(:first-child) {
        margin-top: 0;
    }
    .header_link--login_wrap {
        border-top: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
        padding: 24px 0;
        width: 100%;
        margin-top: auto;
    }
    .nav-menu >ul {
        margin-bottom: 24px;
    }
    .nav-menu > .wrap-button {
        margin-top: 24px;
        text-align: center;
        width: 100%;
    }
    .nav-menu > .wrap-button .btn {
        margin: auto;
    }
    .nav-menu > .wrap-button .descr {
        font-size: 14px;
        color: var(--white);
        margin-top: 16px;
    }
}







.top_head_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
}
.top_head_banner.color-1 {
    background-color: #8A6FB0;
}
.top_head_banner.color-2 {
    background-color: #009EB0;
}
.top_head_banner img {
    margin: auto;
}
@media screen and (max-width: 767.98px) {
    .top_head_banner img {
        margin: 0;
    }
}





.language-toggle_wrapper {
    position: relative;
    display: inline-block;
    margin-left: auto;
}
.language-toggle {
    position: absolute;
    top: 17px;
    left: -48px;
    border: 1px solid transparent;
    padding: 13px 10px;
    transition: none;
}
.language-toggle.active {
    background: var(--purple-light);
    border-radius: 16px;
    border: 1px solid var(--white);
}
.language-toggle.active .language_tab svg {
    transform: rotate(180deg);
    fill: var(--white);
}
.language-toggle.active .language_tab.language_tab_active .language-toggle__btn {
    color: var(--white);
}
.language_tab.language_tab_active:hover .language-toggle__btn {
    color: var(--green) !important;
}
.language-toggle .language_tab {
    display: none;
    cursor: pointer;
    font-size: 16px;
}
.language-toggle .language_tab svg {
    fill: var(--white);
    position: absolute;
    top: 10px;
    left: 100%;
    transition: all .25s ease
}
.language-toggle .language_tab.language_tab_active {
    display: block;
    position: absolute;
    top: -30px;
    left: 11px
}
.language-toggle .language_tab.language_tab_active:hover {
    color: var(--green);
}
.language-toggle .language_tab.language_tab_active:hover svg {
    fill: var(--green);
}
.language-toggle .language_tab.language_tab_active .language-toggle__btn {
    padding-right: 6px;
    white-space: nowrap;
}
.language-toggle .language_tab:first-child {
    margin-bottom: 4px
}
.language-toggle .language_tab .language-toggle__btn {
    line-height: 24px;
    letter-spacing: -.2px;
    color: var(--white);
    text-decoration: none;
    transition: all .25s ease;
    border-radius: 8px;
}
.language-toggle .language_tab:not(.language_tab_active) .language-toggle__btn {
    width: 56px;
    padding: 7px 5px;
    padding-right: 2px;
    display: inline-block;
}
.language-toggle .language_tab:not(.language_tab_active) .language-toggle__btn:hover {
    color: var(--green);
}
.language-toggle .language_tab .language-toggle__splitter {
    display: none
}







.header_right {
    display: flex;
    align-items: center;
}
.header_right > *:not(:last-child) {
    margin-right: 32px;
}
.header_link--login {
    font-size: 16px;
    color: var(--white);
    display: inline-block;
    text-decoration: none;
}
.header_link--login:hover {
    color: var(--green);
}
.header_link--register {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
}

@media screen and (max-width: 1199.98px) {
    .header_right_mobile {
        height: 60px;
        line-height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header_link--register {
        width: auto;
        padding-left: 14px;
        padding-right: 14px;
        height: 42px;
        line-height: 42px;
        margin-right: 5px;
        white-space: nowrap;
    }
    .header.header-menu-active .header_link--register {
        display: none !important;
    }
}



/* header nav second */
.header_blog_nav {
    display: inline-flex;
    position: relative;
    flex-wrap: wrap;
    margin-top: 8px;
}
.header_blog_nav .wrap_flex {
    display: flex;
}
.header_blog_nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
}
.header_blog_nav li {
    margin-right: 10px;
    display: block;
}
.header_blog_nav li:last-child {
    margin-right: 0;
}
.header_blog_nav li a {
    color: #fff;
    font-size: 14px;
    display: block;
    height: 36px;
    line-height: 34px;
    border-radius: 10em;
    border: 1px solid #fff;
    padding: 0 16px;
}
.header_blog_nav li.current-menu-item a {
    opacity: .5;
    pointer-events: none;
}
.header_blog_nav li a:hover {
    background-color: #fff;
    color: var(--purple);
}
.header_search-icon {
    margin-left: 10px;
    height: 36px;
    background-color: var(--green);
    transition: background-color .25s ease;
    border-radius: 24px;
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    position: relative;
}
.header_search-icon .default-icon {
    fill: transparent;
    pointer-events: none;
}
.header_search-icon .default-icon path {
    stroke: var(--purple)
}
.header_search-icon:hover {
    background-color: var(--green-hover);
}
.header_search-icon:active {
    background-color: var(--green-active);
}
.header_search-icon .close-icon {
    display: none;
    pointer-events: none;
}
.header_search-icon.active {
    border-radius: 16px 16px 0 0;
    border-color: var(--white);
    border-bottom-color: transparent;
}
.header_search-icon::before {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    height: 0px;
    background-color: var(--green);
    transition: background-color .25s ease;
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
    z-index: 1;
}
.header_search-icon.active::before {
    height: 10px;
}
.header_search-icon.active:hover::before {
    background-color: var(--green-hover);
}
.header_search-icon.active:active::before {
    background-color: var(--green-active);
}
.header_search-icon.active .close-icon {
    display: block;
}
.header_search-icon.active .close-icon path {
    stroke: var(--black);
}
.header_search-icon.active .default-icon {
    display: none;
}

.header_searchBox {
    position: absolute;
    top: calc(100% + 8px);
    background-color: #fff;
    border: 1px solid var(--white);
    padding: 35px 16px;
    padding-bottom: 8px;
    border-radius: 16px 0 0 0;
    display: none;
    left: 0;
    width: 100%;
}
.header_searchBox label {
    position: relative;
}
.header_searchBox label svg {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    fill: transparent;
    display: none;
    cursor: pointer;
}
.header_searchBox label svg path {
    stroke: var(--black);
    transition: all .25s ease;
}
.header_searchBox label svg:hover path {
    stroke: var(--purple)
}
.header_searchBox label span {
    position: absolute;
    left: 0;
    color: var(--gray);
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .25s ease;
}
.header_searchBox label span.active {
    font-size: 14px;
    top: -20px;
    transform: translateY(0);
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }


.header_searchBox form {
    position: relative;
    display: block;
    width: 100%;
}
.header_searchBox input.search-field {
    border: none;
    border-bottom: 1px solid var(--purple);
    border-radius: 0;
    padding: 0;
    padding-right: 58px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    color: var(--purple);
}
.header_searchBox .btn-submit-2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_searchBox .btn-submit-2 svg {
    pointer-events: none;
    fill: transparent;
}
.header_searchBox .btn-submit-2 svg path {
    stroke: var(--gray);
    transition: all .25s ease;
}
.header_searchBox .btn-submit-2.active svg path {
    stroke: var(--black);
}
.header_searchBox .btn-submit-2:hover svg path {
    stroke: var(--purple);
}

@media screen and (max-width: 1199.98px) {
    .header_searchBox input.search-field {
        font-size: 18px;
        height: 28px;
        line-height: 28px;
        padding-right: 51px;
    }
    .header_searchBox label svg {
        right: 27px;
    }
    .header_searchBox label span {
        font-size: 18px;
    }
    .header_blog_nav {
        position: absolute;
        left: 0px;
        right: 0px;
        top: calc(100% - 1px);
        padding-top: 9px;
        display: flex;
        margin: 0;
        background-color: var(--purple);
    }
    .header_blog_nav .wrap_flex {
        overflow: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        position: relative;
        margin-left: -16px;
        width: calc(100% - -32px);
        padding-right: 16px;
        padding-left: 16px;
    }
    .header_blog_nav .wrap_flex::-webkit-scrollbar {
        display: none;
    }
    .header {
        margin-bottom: 50px;
    }
    .header_blog_nav ul {
        margin-left: calc(49px + 16px);
    }
    .header_blog_nav li {
        margin-right: 8px;
        white-space: nowrap;
    }
    .header_blog_nav li a {
        padding: 0 8px;
        background-color: var(--purple);
    }
    .header_search-icon {
        width: 41px;
        min-width: 41px;
        margin: 0;
        position: absolute;
        left: 32px;
        top: 0;
        border-radius: 16px;
    }
    .header_searchBox {
        left: 16px;
        right: 16px;
        width: auto;
        max-width: 410px;
        border-radius: 0 8px 0 0;
        top: calc(100% - 2px);
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 42px;
    }
    .header_search-icon svg {
        max-width: 18px;
        max-height: 18px;
    }
    .header_search-icon.active {
        border-radius: 8px 8px 0 0;
    }
    .header_searchBox .btn-submit-2 svg {
        max-width: 19px;
        max-height: 19px;
    }
    .header_searchBox label span.active {
        top: -30px;
    }
}
@media screen and (max-width: 768px) {
    .header_searchBox {
        max-width: 100%;
    }
}
/* header nav second / */






.hamburger {
    padding: 0 15px;
    display: inline-block;
    float: right;
    margin-right: -15px;
}
.hamburger-box {
    height: 36px;
    width: 36px;
    display: block;
}
.hamburger-inner {
    margin-right: -15px;
    text-indent: -3000px
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background-color: var(--white);
    width: 36px;
    height: 2px;
}
.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: var(--white);
}












/* Footer */
.footer {
    overflow: hidden;
    background-color: var(--purple);
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 32px;
}
.footer a {
    color: var(--white);
    text-decoration: none;
}
.footer a:hover {
    color: var(--green);
}
.footer-menu-col .h3 {
    color: #fff;
    margin-bottom: 27px;
}
.footer-menu-col ul {
    margin: 0;
    padding: 0;
}
.footer-menu-col li {
    list-style-type: none;
    margin-top: 12px;
    font-size: 16px;
}
.footer-menu-col li:first-child {
    margin-top: 0;
}
.footer_copyright {
    font-size: 16px;
    color: var(--white);
    margin-top: 24px;
}
.footer_agency {
    text-align: right;
    font-size: 16px;
    color: var(--purple-light);
    margin-top: 24px;
}
.footer_agency a {
    color: var(--purple-light);
    text-decoration: underline;
}
.footer-contacts {
    position: relative;
}
.footer_logo {
    display: inline-block;
    margin-bottom: 8px;
}
.footer_logo img {
    max-width: 98px;
    height: auto;
}


.social-links a {
    display: inline-block;
    margin-right: 12px;
    margin-top: 16px;

}
.social-links a img {
    vertical-align: top;
}
.social-links a:last-child {
    margin-right: 0;
}

.footer-language {
    position: absolute;
    left: 160px;
    top: 16px;
}

.footer-dropdown-phones {
    width: 100%;
    position: relative;
    margin-top: 25px;
    max-width: 272px;
}
.footer-dropdown-phones .wrap-btn {
    position: relative
}
.footer-dropdown-phones .wrap-btn.active svg {
    transform: translateY(-50%) rotate(180deg)
}
.footer-dropdown-phones .wrap-btn.active .button {
    border-radius: 3px 3px 0 0
}
.footer-dropdown-phones .wrap-btn svg {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .1s ease;
    pointer-events: none
}
.footer-dropdown-phones .wrap-btn .button {
    display: block;
    box-shadow: none;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    width: 100%;
    padding: 8.5px 13px;
    padding-right: 85px;
    font-size: 14px;
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    display: flex;
    line-height: 1.5;
    transition: border-radius .1s ease;
}
.footer-dropdown-phones .wrap-btn .button:hover {
    color: var(--purple)
}
.footer-dropdown-phones .wrap-btn .button span, .footer-dropdown-phones .wrap-btn .button strong {
    font-weight: 600;
    width: 50%;
    white-space: nowrap
}
.footer-dropdown-phones .wrap-btn .button:focus {
    outline: 0
}
.footer-dropdown-phones li, .footer-dropdown-phones ul {
    list-style-type: none;
    padding: 0;
    margin: 0
}
.footer-dropdown-phones ul {
    border-radius: 0 0 3px 3px;
    overflow: hidden;
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    right: 0
}
.footer-dropdown-phones li a {
    background-color: #fff;
    width: 100%;
    padding: 7px 13px;
    padding-right: 85px;
    font-size: 14px;
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    display: flex
}
.footer-dropdown-phones li a span, .footer-dropdown-phones li a strong {
    font-weight: 600;
    width: 50%;
    white-space: nowrap
}
.footer-dropdown-phones li a:hover {
    color: var(--purple)
}

@media screen and (max-width: 1199.98px) {
    .footer_logo {
        margin-bottom: 30px;
    }
    .footer-dropdown-phones ul {
        bottom: 38px;
        top: auto;
    }
    .footer-dropdown-phones .wrap-btn.active .button {
        border-radius: 0 0 3px 3px;
    }
    .footer-dropdown-phones ul {
        border-radius: 3px 3px 0 0;
    }
}
@media screen and (max-width: 991.98px) {
    .footer_logo {
        margin-bottom: 4px;
    }
    .footer-menu-col {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .footer-contacts {
        margin-bottom: 30px;
    }
    .footer-menu-col ul {
        display: none;
    }
    .footer-menu-col {
        border-bottom: 1px solid var(--purple-light);
        padding: 20px 0;
        margin: 0;
    }
    .footer-menu-col .h3 {
        margin: 0;
        font-size: 18px;
        position: relative;
        padding-right: 40px;
    }
    .footer-menu-col .h3::after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70711 8.82584C8.31658 9.21636 7.68342 9.21636 7.29289 8.82584L0.707106 2.24005C0.316582 1.84952 0.316583 1.21636 0.707107 0.825835L0.726226 0.806716C1.11675 0.416192 1.74992 0.416192 2.14044 0.806716L8 6.66628L13.8596 0.806715C14.2501 0.416191 14.8832 0.416192 15.2738 0.806715L15.2929 0.825835C15.6834 1.21636 15.6834 1.84952 15.2929 2.24005L8.70711 8.82584Z' fill='%23F4EDFD'/%3E%3C/svg%3E%0A");
        width: 16px;
        height: 10px;
        background-size: contain;
        background-position: center;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .footer-menu-col.active .h3::after {
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70711 0.806488C8.31658 0.415964 7.68342 0.415965 7.29289 0.806489L0.707106 7.39228C0.316582 7.7828 0.316583 8.41596 0.707107 8.80649L0.726226 8.82561C1.11675 9.21613 1.74992 9.21613 2.14044 8.82561L8 2.96605L13.8596 8.82561C14.2501 9.21613 14.8832 9.21613 15.2738 8.82561L15.2929 8.80649C15.6834 8.41596 15.6834 7.7828 15.2929 7.39227L8.70711 0.806488Z' fill='%2300FF47'/%3E%3C/svg%3E%0A");
    }
    .footer-menu-col ul {
        margin-top: 15px;
        margin-left: 15px;
    }
    .footer_agency {
        text-align: left;
        font-size: 14px;
        margin-top: 4px;
    }
    .footer_copyright {
        font-size: 14px;
    }
    .footer-dropdown-phones {
        max-width: 300px;
    }
}













.h2 b {
    position: relative;
    display: inline-block;
}
.h2 b::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 4px;
    background-color: var(--green);
}
@media screen and (max-width: 768px) {
    .connect_section .h2 b::before {
        height: 4px;
        top: -3px;
    }
}














.breadcrumbs_wrapper {
    padding-bottom: 68px;
    padding-top: 28px;
}
.breadcrumbs_wrapper span {
    color: var(--gray);
    transition: all .25s ease;
}
.breadcrumbs_wrapper a span {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}
.breadcrumbs_wrapper a:hover span {
    color: var(--green);
    border-color: var(--green);
}

.breadcrumbs_white_section span {
    color: var(--text);
}
.breadcrumbs_white_section a span {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}
.breadcrumbs_white_section a:hover span {
    color: var(--purple);
    border-color: var(--purple);
}
@media screen and (max-width: 768px) {
    .breadcrumbs_wrapper {
        padding-top: 48px;
        padding-bottom: 32px;
    }
}




.label-checkbox-v1 {
    font-size: 14px;
    margin-top: 12px;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    text-align: left;
}
.label-checkbox-v1 a {
    color: var(--dark-purple);
    text-decoration: underline;
}
.label-checkbox-v1 a:hover {
    color: var(--dark-purple);
}
.label-checkbox-v1 input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.label-checkbox-v1 .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 10em;
    background-color: #fff;
    border: 1px solid #BCBCBC;
}

.label-checkbox-v1 + .error-form {
    color: var(--red);
    font-size: 12px;
    margin-top: 8px;
    font-weight: 600;
    display: none;
    text-align: left;
}
.label-checkbox-v1.invalid .checkmark {
    border-color: var(--red);
}
.label-checkbox-v1 .checkmark:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 6px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: all .25s ease;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.78857 5.28754L3.07356 2.85181C2.84917 2.62984 2.57473 2.5191 2.25027 2.5191C1.92583 2.5191 1.65152 2.62987 1.42716 2.85181L1.07866 3.196C0.854367 3.41763 0.742187 3.68888 0.742187 4.00941C0.742187 4.32994 0.854367 4.60107 1.07866 4.82305L4.96072 8.42122C5.18511 8.64301 5.45952 8.75391 5.78402 8.75391C6.10851 8.75391 6.3827 8.64304 6.60719 8.42122L12.5288 2.56019C12.7532 2.33821 12.8654 2.06712 12.8654 1.74656C12.8654 1.426 12.7532 1.15477 12.5288 0.933141L12.1805 0.588956C11.9562 0.366978 11.6833 0.256241 11.3618 0.256241C11.0405 0.256241 10.7645 0.367009 10.5341 0.588956L5.78857 5.28754Z' fill='white'/%3E%3C/svg%3E");
}
.label-checkbox-v1 input:checked ~ .checkmark {
    opacity: 1;
    background-color: var(--dark-purple);
    border-color: var(--dark-purple)
}
.label-checkbox-v1 input:checked ~ .checkmark::after {
    opacity: 1;
}








.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    transform: scale(0.8);
    opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}











.big_preview {
    display: flex;
}
.big_preview__img {
    width: 472px;
    margin-right: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--black);
    display: block;
    transition: filter .25s ease;
}
.big_preview__img:hover {
    filter: drop-shadow(0px 4px 4px rgba(244, 237, 253, 0.13)) drop-shadow(2px 4px 8px rgba(244, 237, 253, 0.24));
}
.big_preview__img img {
    width: 100%;
    height: 100%;
    object-position: 50% 10%;
    object-fit: cover;
}
.big_preview__text {
    width: calc(100% - 472px - 20px);
    display: flex;
    flex-direction: column;
}
.big_preview__text .line-background .line {
    margin-top: -1px;
    margin-bottom: -1px;
}

.big_preview_text {
    margin-bottom: 6px;
    margin-top: 20px;
    line-height: 1.6;
}
.big_preview_bottom {
    margin-top: auto;
}
.balloon_yellow {
    display: inline-flex;
    background-color: var(--yellow);
    align-items: center;
    height: 40px;
    justify-content: center;
    padding-left: 2px;
    padding-right: 16px;
    border-radius: 10em;
    margin-right: 8px;
    vertical-align: top;
    margin-top: 10px;
}
.balloon_yellow:last-child {
    margin-right: 0;
}
.balloon_yellow .wrap_img {
    width: 36px;
    margin-right: 10px;
    border-radius: 10em;
    overflow: hidden;
}
.balloon_yellow .wrap_img img {
    height: 36px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.balloon_yellow .wrap_text {
    width: calc(100% - 36px - 10px);
    white-space: nowrap;
    line-height: 40px;
    margin-top: -2px;
}
.balloon_yellow span {
    color: var(--text);
    font-size: 14px;
}
.balloon_yellow strong {
    color: var(--black);
    font-size: 14px;
}
a.balloon_yellow:hover strong {
    text-decoration: underline;
}

.balloon_white {
    margin-top: 10px;
    display: inline-flex;
    height: 40px;
    border-radius: 10em;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background-color: #fff;
    color: var(--black);
    font-size: 14px;
    vertical-align: top;
}
.balloon_white:last-child {
    margin-right: 0;
}






/* background title */
.preview_bg--title {
    position: relative;
    z-index: 2;
}
.preview_bg a:hover span {
    text-decoration: underline;
}
.preview_bg .category_name {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    line-height: 22px;
    padding-bottom: 1px;
}
.preview_bg .category_name::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.preview_bg .category_name .line {
    padding-left: 44px;
}
.preview_bg-cat-1 .category_name::before {
    background-image: url("../img/category-icon-1.svg");
}
.preview_bg-cat-1 .line {
    background: var(--white);
    color: var(--black);
}

.preview_bg-cat-2 .category_name .line {
    padding-left: 44px;
}
.preview_bg-cat-2 .category_name::before {
    background-image: url("../img/category-icon-2.svg");
}
.preview_bg-cat-2 .category_name .line {
    padding-left: 44px;
}
.preview_bg-cat-2 .line {
    background: var(--purple);
    color: #fff;
}

.preview_bg-cat-3 .category_name::before {
    background-image: url("../img/category-icon-3.svg");
}
.preview_bg-cat-3 .line {
    background: #fff;
    color: var(--black);
}

.preview_bg-cat-4 .category_name::before {
    background-image: url("../img/category-icon-4.svg");
}
.preview_bg-cat-4 .line {
    background: var(--white);
    color: var(--black);
}

.preview_bg {
    padding: 4px 16px;
}
.line-background .line {
    border-radius: 8px;
    display: inline-block;
    padding: 4px 16px;
    margin: -3px -16px;
}

.category_name {
    line-height: 22px;
}
.category_name.line-background .line {
    border-radius: 8px 8px 0 0;
}

.title_name {
    display: block;
    color: var(--black);
}
.title_name.h1 {
    line-height: 57px;
    margin: 0;
}
.title_name.h2 {
    line-height: 47px;
    margin: 0;
}
.title_name.line-background .line {
    border-radius: 0 16px 16px 0;
}
.title_name.line-background .line:last-of-type {
    border-radius: 0 16px 16px 16px;
}


.preview_item .preview_bg .category_name {
    font-size: 14px;
    line-height: 22px;
}
.preview_item .title_name.h2 {
    line-height: 25px;
    font-size: 18px;
}
.preview_item .preview_item__img img {
    width: 100%;
    height: 214px;
    object-position: center;
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
    transition: filter .25s ease;
}
.preview_item .preview_item__img:hover img {
    filter: drop-shadow(0px 4px 4px rgba(244, 237, 253, 0.13)) drop-shadow(2px 4px 8px rgba(244, 237, 253, 0.24));
}
.row-preview_item > div {
    margin-top: 32px;
}
.row-preview_item > div.col-lg-6:nth-child(-n + 2) {
    margin-top: 0;
}
.preview_item__text {
    margin-top: -28px;
}
.preview_item_bottom {
    font-size: 14px;
    margin-top: 16px;
    color: #fff;
    padding-left: 10px;
}
.preview_item .line-background .line {
    padding: 4px 12px;
}
.preview_item .preview_bg .category_name .line {
    padding-left: 44px;
}
.preview_item .preview_bg .category_name::before {
    left: 2px;
}

.preview_item {
    position: relative;
}
.preview_item--author {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    padding: 0 10px;
    border-radius: 10em;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    background-color: var(--purple);
    z-index: 2;
}
.preview_item--author.alt_white {
    background-color: #fff;
}
.preview_item--author:hover strong {
    text-decoration: underline;
}
.preview_item--author span {
    color: var(--white);
}
.preview_item--author.alt_white span {
    color: var(--text);
}
.preview_item--author strong {
    font-weight: normal;
    color: #fff;
}
.preview_item--author.alt_white strong {
    color: var(--black);
}

.preview_wrap_img {
    position: relative;
}

.preview_item__img--bottom {
    bottom: 13px;
    top: auto;
}
@media screen and (max-width: 992px) {
    .big_preview__img img {
        max-height: 400px;
    }
    .big_preview {
        display: block;
    }
    .big_preview__img {
        margin-right: 0;
        width: 100%;
    }
    .big_preview__text {
        width: 100%;
        display: block;
        margin-top: 10px;
    }
    .big_preview_bottom {
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .preview_item__text {
        margin-top: -24px;
    }
    .preview_item--author {
        height: 20px;
        line-height: 20px;
        top: 8px;
        right: 8px;
        padding: 0 8px;
    }
    .preview_item__img--bottom {
        bottom: auto;
        top: auto;
        position: relative;
        margin-top: 8px;
        right: auto;
    }
    .preview_wrap_img {
        text-align: right;
    }
    .trending_section .preview_item_bottom {
        margin-top: 9px;
    }

    .big_preview__img img {
        max-height: 300px;
    }
    .preview_item .preview_item__img img {
        height: 158px;
        object-position: 50% 5%;
    }
    .preview_item_bottom {
        padding-left: 8px;
    }
    .row-preview_item > div {
        margin-top: 24px;
    }
    .preview_item .preview_bg .category_name .line {
        padding-left: 36px;
    }
    .preview_item .preview_bg {
        padding: 2px 8px;
    }
    .preview_item .line-background .line {
        padding: 2px 8px;
        margin: -1px -8px;
    }
    .preview_item .preview_bg .category_name {
        line-height: 20px;
    }
    .preview_item .title_name.h2 {
        line-height: 21px;
        font-size: 16px;
    }

    .title_name.h1 {
        line-height: 38px;
    }
    .title_name.h2 {
        line-height: 33px;
    }
    .preview_bg .category_name {
        font-size: 22px;
        line-height: 28px;
        padding-bottom: 0;
    }
    .preview_bg {
        padding: 0 8px;
    }
    .line-background .line {
        padding: 0 8px;
        margin: 0 -8px;
    }
    .title_name.line-background .line {
        border-radius: 0 8px 8px 0;
    }
    .title_name.line-background .line:last-of-type {
        border-radius: 0 8px 8px 8px;
    }
    .category_name.line-background .line {
        border-radius: 4px 4px 0 0;
    }
    .preview_bg .category_name .line {
        padding-left: 36px;
    }
    .preview_bg .category_name::before {
        height: 20px;
    }
    .big_preview__img img {
        min-height: 218px;
    }
    .big_preview_text {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .big_preview__img img {
        max-height: 218px;
    }
    .row-preview_item > div.col-lg-6:nth-child(n + 2) {
        margin-top: 24px;
    }
    .big_preview_bottom {
        text-align: right;
    }
    .balloon_yellow {
        margin-right: 0;
    }
}





/* sidebar banners */
.sidebar_banners {
    margin-left: auto;
    max-width: 373px;
}
.sidebar_banner {
    position: relative;
    padding: 32px 28px;
    padding-top: 52px;
    border-radius: 16px;
    overflow: hidden;
    margin-left: auto;
    background-color: #3367EE;
    margin-top: 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.sidebar_banner:first-child {
    margin-top: 0;
}
.sidebar_banner .h3 {
    margin-bottom: 12px;
    padding-right: 88px;
    color: #fff;
}
.sidebar_banner p {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 24px;
    color: #fff;
}
.sidebar_banner .link {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: var(--green);
    margin-top: auto;
}
.sidebar_banner .link:hover {
    color: var(--green-hover);
}
.sidebar_banner .link:active {
    color: var(--green-active);
}
.sidebar_banner .main-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    max-width: 84px;
    z-index: -1;
}
.sidebar_banner .link img {
    margin-right: 8px;
    max-width: 20px;
}
.sidebar_banner.alt_colors {
    color: var(--text);
}
.sidebar_banner.alt_colors .h3 {
    color: var(--black);
}
.sidebar_banner.alt_colors p {
    color: var(--text);
}
.sidebar_banner.alt_colors .link {
    color: var(--purple);
}
.sidebar_banner.alt_colors .link:hover {
    color: var(--black);
}
@media screen and (max-width: 992px)  {
    .sidebar_banners {
        margin-top: 24px;
        display: flex;
        max-width: 100%;
        justify-content: space-between;
    }
    .sidebar_banner	{
        width: calc(50% - 6px);
        margin: 0;
    }
}
@media screen and (max-width: 768px) {
    .sidebar_banners {
        display: block;
    }
    .sidebar_banner {
        width: 100%;
        padding: 20px;
        padding-bottom: 25px;
    }
    .sidebar_banner:not(:first-child) {
        margin-top: 24px;
    }
    .sidebar_banner .h3 {
        margin-bottom: 16px;
    }
    .sidebar_banner .link img {
        margin-right: 10px;
    }
    .sidebar_banner p {
        padding-right: 100px;
    }
}

@media screen and (max-width: 576px) {
    .sidebar_banner .main-icon {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 10px;
    }
    .sidebar_banner .h3 {
        padding-right: 0;
    }
    .sidebar_banner p {
        padding-right: 0;
    }
    .sidebar_banners {
        margin: 0;
    }
}











.title-with-icon {
    display: flex;
    margin-bottom: 56px;
    align-items: center;
}
.title-with-icon .h2 {
    margin: 0;
}
.title-with-icon img {
    margin-left: 8px;
}

.center-title-wrap {
    text-align: center;
    margin-bottom: 56px;
}
.center-title-wrap .h2 {
    margin: 0;
}
.center-title-wrap p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    .center-title-wrap {
        text-align: left;
    }
}

@media screen and (max-width: 576px) {
    .center-title-wrap {
        margin-bottom: 40px;
    }
    .center-title-wrap p {
        font-size: 16px;
        margin-top: 16px;
    }
    .title-with-icon {
        margin-bottom: 40px;
    }
    .title-with-icon img {
        max-height: 30px;
    }
}













.newsletter_section {
    background-color: var(--white);
    color: var(--text);
    z-index: 1;
}
.newsletter_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/newsletter-bg-1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: 50% 10%;
}
.newsletter_composition {
    max-width: 740px;
    margin: auto;
    text-align: center;
}
.newsletter_composition .h2 {
    color: var(--black);
    margin-bottom: 16px;
}
.newsletter_composition p {
    margin-bottom: 0;
    margin-top: 16px;
}

.newsletter_form {
    margin: auto;
    margin-top: 36px;
    max-width: 588px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.newsletter_form .label-checkbox-v1 {
    width: 100%;
    background: transparent !important;
}
.newsletter_form .input {
    width: 60%;
    margin: 0;
}
.newsletter_form .btn {
    width: calc(40% - 12px);
    margin-left: 12px;
    padding: 0;
}
.newsletter-mobile-bg {
    display: none;
}
@media screen and (max-width: 992px) {
    .newsletter_section::before {
        background-position: 30% 10%;
    }
}
@media screen and (max-width: 768px) {
    .newsletter_form {
        margin-top: 28px;
        display: block;
    }
    .newsletter_form .input {
        width: 100%;
        margin-bottom: 12px;
    }
    .newsletter_form .btn {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    .newsletter_section {
        padding-top: 83px;
        padding-bottom: 82px;
    }
    .newsletter_composition {
        text-align: left;
    }
    .newsletter_composition p {
        margin-top: 8px;
    }
    .newsletter_section::before {
        display: none;
    }
    .newsletter-mobile-bg {
        display: block;
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .newsletter-mobile-bg img {
        position: absolute;
    }
    .newsletter-mobile-bg img:nth-child(1) {
        left: 0;
        top: 0;
    }
    .newsletter-mobile-bg img:nth-child(2) {
        right: 0;
        top: 0;
    }
    .newsletter-mobile-bg img:nth-child(3) {
        left: 0;
        bottom: 0;
    }
    .newsletter-mobile-bg img:nth-child(4) {
        right: 0;
        bottom: 0;
    }
}









.btn-submit {
    position: relative;
    transition: all .25s ease;
}
.btn-submit::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px dashed var(--black);
    animation: rotateLoading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-radius: 10em;
    opacity: 0;
    transition: all .25s ease;
}
@keyframes rotateLoading {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.btn-submit.loading {
    color: transparent !important;
    pointer-events: none;
}
.btn-submit.loading::before {
    opacity: 1;
}










.popup-thankyou {
    background-color: #fff;
    margin: 30px auto;
    max-width: 475px;
    padding: 40px 34px;
    padding-top: 60px;
    box-shadow: 2px 2px 10px rgba(59, 27, 103, 0.24);
    border-radius: 33px;
    position: relative;
}
.popup-thankyou .h2 {
    margin-bottom: 20px;
    color: var(--black);
}
.popup-thankyou p {
    margin: 0;
    font-size: 20px;
    color: var(--text);
}
.popup-thankyou .mfp-close {
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    transition: all .25s ease;
    background-color: var(--green);
    border-radius: 10em;
    opacity: 1;
}

.popup-thankyou .mfp-close svg {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-thankyou .mfp-close svg path {
    stroke: var(--purple);
}
.popup-thankyou .mfp-close:hover {
    background-color: var(--green-hover);
}
.popup-thankyou .mfp-close:active {
    top: 16px;
    background-color: var(--green-active);
}
@media screen and (max-width: 768px)  {
    .popup-thankyou {
        padding: 24px 14px;
        padding-top: 38px;
        border-radius: 24px;
    }
    .popup-thankyou .mfp-close {
        width: 27px;
        height: 27px;
        top: 14px;
        right: 14px;
    }
    .popup-thankyou .mfp-close:active svg {
        top: 14px;
    }
    .popup-thankyou p {
        font-size: 16px;
    }
    .popup-thankyou .h2 {
        margin-bottom: 12px;
    }
}