/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    --basic-color: #171C8F;
    --basic-font: "Inter", sans-serif;
}

body {
    font-family: var(--basic-font);
    color: #141414;
    margin: 0;
    /*font-weight: 300;*/
}
h1 {
    font-weight: 700;
    font-size: 56px;
    color: #000;
}
h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
p {
    line-height: 30px;
    font-size: 20px;
}
a {
    text-decoration: none;
}
.hidden {
    display: none;
}
.button_theme {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    border: 2px solid var(--basic-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px;
}
.button_theme:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button_theme_transparent {
    background: #fff;
    color: var(--basic-color);
}
.button_theme_transparent:hover {
    background: var(--basic-color);
    color: #fff;
}
.button_theme_bgcolor {
    background: var(--basic-color);
    color: #fff;
    transition: all .3s ease;
}

.button_theme_bgcolor:hover{
    opacity: .8;
    transition: all .3s ease;
}

.container {
    max-width: 1145px;
    margin: 0 auto;
}
header.top_header {
    margin: 40px 0 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header.top_header .logo {
    width: 213px;
}
header.top_header .logo img {
    max-width: 100%;
}
header.top_header .header_nav_menu {
    width: 660px;
}
header.top_header .header_nav_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0 15px;
}
header.top_header .header_nav_menu ul li {
    margin: 0 10px;
}
header.top_header .header_nav_menu ul li a {
    color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 15px;
}
header.top_header .header_nav_menu ul li a:hover {
    color: var(--basic-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header.top_header .lang {
    list-style: none;
    padding: 0;
}
header.top_header .lang select {
    border: 0;
    font-size: 16px;
    width: 45px;
    color: #000;
    font-family: var(--basic-font);
    outline: none;
}
header.top_header .head_buttons {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 264px;
}
header.top_header .head_buttons li {
    list-style: none;
}
header.top_header .head_buttons li a {
    font-size: 16px;
    padding: 12px 0;
    width: 122px;
}
/*
<a class="button_theme button_theme_transparent" href="#">Read more</a>
<a class="button_theme button_theme_bgcolor" href="#">Read more</a>
*/
.mob_menu {
    position: fixed;
    width: 470px;
    height: 100vh;
    background: var(--basic-color);
    top: 0;
    right: -470px;
    border-radius: 6px 0px 0px 6px;
    z-index: 9999999;
}
.social_links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.social_links li {
    margin-right: 10px;
}
.social_links li svg {
    fill: #000;
}
.hamburg {
    cursor: pointer;
    display: none;
}
.hamburg svg path {
    stroke: var(--basic-color);
}
/* .main_photo styles moved to css/components/front-page.css */

.section_mt {
    margin-top: 100px;
}
.section_mt h2 {
    margin: 0 0 25px 0;
    text-align: center;
}
.about .about_text {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
}
.about .about_text .about_text_block {
    margin: 0 15px;
}
.about .about_text .about_text_block:first-child {
    margin-left: 0;
}
.about .about_text .about_text_block:last-child {
    margin-right: 0;
}
.about .button_theme,
.short_news .button_theme{
    margin-top: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.issues h2 {
    margin: 0;
    text-align: center;
}
.issues .issues_row {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
}
.issues .issues_row .issues_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 40px 15px 0 15px;
    background: var(--basic-color);
    border-radius: 6px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 36px;
}
.issues .issues_row .issues_block:first-child {
    margin-left: 0;
}
.issues .issues_row .issues_block:last-child {
    margin-right: 0;
}
.issues .issues_row .issues_block .issues_block_head {
    padding-bottom: 85px;
}
.issues .issues_row .issues_block img {
    max-width: 24px;
}
.issues .issues_row .issues_block h3 {
    color: #fff;
    margin: 27px 0 24px 0;
}
.issues .issues_row .issues_block p {
    margin: 0;
    color: #fff;
}
a.fl-callout-cta-link {
    color: var(--basic-color);
    font-weight: 700;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
a.fl-callout-cta-link:after {
    content: '';
    background: url(../img/svg/arrow-left-green.svg) no-repeat;
    width: 16px;
    height: 12px;
    margin-left: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a.fl-callout-cta-link:hover:after {
    margin-left: 15px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sponsors .sponsors_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.sponsors .sponsors_row .sponsors_block {
    width: 17%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px;
    margin: 15px 15px 0 15px;
    border: 2px solid rgba(196, 196, 196, 0.25);
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
}
.sponsors .sponsors_row .sponsors_block:first-child {
    margin-left: 0;
}
.sponsors .sponsors_row .sponsors_block:last-child {
    margin-right: 0;
}
.sponsors .sponsors_row .sponsors_block img {
    max-width: 100%;
}
.tabs_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.tabs_buttons ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #C4C4C4;
    border-radius: 6px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tabs_buttons ul li {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    border-right: 1px solid #C4C4C4;
    cursor: pointer;
    padding: 14px 0;
    width: 138px;
    text-align: center;
}
.tabs_buttons ul li:last-child {
    border-right: 0;
}
.tabs_buttons ul li.active {
    background: var(--basic-color);
    color: #fff;
}
.tab_content {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}
.tab_content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tab_content .last-post {
    width: calc(50% - 15px);
    position: relative;
    height: 480px;
    border-radius: 6px;
    overflow: hidden;
}
.tab_content .last-post .tab_content_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.tab_content .last-post .tab_content_row {
    z-index: 2;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.tab_content .last-post .tab_content_row a {
    color: #fff;
}
.tab_content .last-post .tab_content_row h2 {
    text-align: left;
}
.tab_content .last-post .tab_content_row p {
    margin-bottom: 0;
    font-size: 18px;
}
.tab_content .last-post .tab_content_row .tab_content_data {
    color: #fff;
}
.tab_content .other-posts {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.tab_content .other-posts .tab_content_row {
    width: calc(50% - 15px);
}
.tab_content .other-posts .tab_content_bg {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    overflow: hidden;
    background-position: center;
}
.tab_content .other-posts .tab_content_data {
    color: #979797;
    margin-top: 12px;
}
.tab_content .other-posts h3 {
    font-size: 20px;
}
.tab_content .other-posts a {
    color: #000;
}
.last-post,
.other-posts .tab_content_row {
    margin-top: 30px;
}
.short_news .tabs_buttons {
    margin-bottom: 30px;
}
.theme_spoiler {
    border-top: 1px solid #C4C4C4;
}
.theme_spoiler .theme_spoiler_visibility svg {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.theme_spoiler.active .theme_spoiler_visibility svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.theme_spoiler p {
    margin: 0;
    padding: 24px 0;
}
.theme_spoiler:last-child {
    border-bottom: 1px solid #C4C4C4;
}
.theme_spoiler_visibility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}
.theme_spoiler_visibility p {
    width: calc(100% - 40px);
}
.theme_spoiler_hidden {
    display: none;
}
.theme_spoiler_hidden p {
    padding-top: 0;
}
.newsletter h2 {
    text-align: left;
}
.newsletter .newsletter_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}
.newsletter .newsletter_infotext {
    width: 48%;
}
.newsletter .newsletter_form {
    width: 48%;
}
footer.site_footer {
    padding-bottom: 30px;
}
footer.site_footer .container {
    padding-top: 60px;
    border-top: 1px solid var(--basic-color);
}
footer.site_footer .top_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer.site_footer .top_footer .footer-logo {
    max-width: 264px;
}
footer.site_footer .top_footer .footer-logo img {
    max-width: 100%;
}
footer.site_footer .top_footer .footer-logo p {
    font-size: 15px;
    line-height: 20px;
}
footer.site_footer .top_footer .footer_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer.site_footer .top_footer .footer_menu li {
    margin-bottom: 15px;
}
footer.site_footer .top_footer .footer_menu li a {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}
footer.site_footer .top_footer .footer_contact_info {
    max-width: 265px;
}
footer.site_footer .top_footer .footer_contact_info .footer_contact_info_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
}
footer.site_footer .top_footer .footer_contact_info .footer_contact_info_block .footer_icon {
    width: 10px;
}
footer.site_footer .top_footer .footer_contact_info .footer_contact_info_block .footer_icon svg path {
    stroke: var(--basic-color);
}
footer.site_footer .top_footer .footer_contact_info .footer_contact_info_block p,
footer.site_footer .top_footer .footer_contact_info .footer_contact_info_block a {
    font-size: 16px;
    margin: 0;
    line-height: 23px;
    color: #141414;
    padding-left: 20px;
}
footer.site_footer .footer_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    margin-top: 30px;
    align-items: center;
}
footer.site_footer .copyrite {
    font-size: 12px;
    width: 412px;
}
footer.site_footer .privacy {
    width: 465px;
    margin-top:-3px;
}
footer.site_footer .privacy a {
    color: var(--basic-color);
    font-size: 12px;
}
footer.site_footer .social_links svg path {
    fill: var(--basic-color);
}

.content-container{
    max-width: 750px;
    margin: 0 auto;
}

.back_button{
    color: var(--basic-color);
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.back_button svg{
    margin-right: 10px;
}

.post_date{
    margin-top: 20px;
    color:#979797;
    font-size: 16px;
}

.issues_white{
    text-align: center;
}

.issues_white h1{
    margin: 0;
}

.issues.issues_white .issues_row .issues_block .issues_block_head{
    padding-bottom: 0;
}

.issues.issues_white .issues_row .issues_block{
    background: transparent;
    border: 2px solid #C4C4C4;
    box-sizing: border-box;
}

.issues.issues_white .issues_row .issues_block .issues_block_head svg path{
    stroke: var(--basic-color);
}

.issues.issues_white .issues_row .issues_block h3{
    color: var(--basic-color);
}

.issues.issues_white .issues_row .issues_block p{
    color: #141414;
}


.short_issues{
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.short_issues .short_issues_image{
    width: 460px;
    height: 360px;
    background-size:cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}

.short_issues_content{
    display:flex;
    width: calc(100% - 500px);
    justify-content: space-between;
    flex-direction: column;
}

.short_issues_content h2{
    margin: 0;
}

.short_issues .fl-callout-title > a{
    color:#000;
    text-decoration: none !important;
}

.short_issues .issues_block_read_more a{
    color:var(--basic-color);
}

.short_issues .issues_block_read_more a:after{
    background: url(../img/svg/arrow-left-green.svg) no-repeat;
}

.fsSectionHeader{
    display: none !important;
}

.fsForm select.fsRequired, .fsForm textarea.fsRequired, .fsRowBody input[type=email].fsRequired, .fsRowBody input[type=number].fsRequired, .fsRowBody input[type=tel].fsRequired, .fsRowBody input[type=text].fsRequired,
.fsForm select, .fsForm textarea, .fsRowBody input[type=email], .fsRowBody input[type=number], .fsRowBody input[type=tel], .fsRowBody input[type=text] {
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 2px solid #C4C4C4 !important;
}

.fsRowBody input[type=checkbox], .fsRowBody input[type=radio]{
    width: 24px !important;
    height: 24px !important;
    background: var(--basic-color) !important;
    border-radius: 6px !important;
}

.fsRowBody input[type=checkbox]:before, .fsRowBody input[type=checkbox]:checked:before, .fsRowBody input[type=radio]:before, .fsRowBody input[type=radio]:checked:before {
    width: 24px !important;
    height: 24px !important;
    margin-right: 7px !important;
    border: 2px solid #979797 !important;
    background-color: #fff !important;
    border-radius: 6px !important;

}

.fsRowBody input[type=checkbox]:checked:before {
    border-color: var(--basic-color) !important;
    background-color: var(--basic-color) !important;
}

.fsForm .ui-slider-handle:focus, .fsForm input:focus, .fsForm select:focus, .fsForm textarea:focus {
    border-color: var(--basic-color) !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.fsBody .fsLabel, .fsBody label {
    font-size: 14px !important;
}

label.fsOptionLabel {
    line-height: 35px !important;
    color: #000 !important;
}

.fsForm .fsSubmit {
    margin-top: 0 !important;
    padding: 0 !important;
}

.fsForm .fsSubmit > input{
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    border: 2px solid var(--basic-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px !important;
    width: 100%;
    background: var(--basic-color) !important;
}

.wf-active .fsBody, .wf-active .fsBody input, .wf-active .fsBody select, .wf-active .fsBody textarea{
    font-family: var(--basic-font) !important;
}

.fsBody .fsSubField.fsFieldAddress, .fsBody .fsSubField.fsFieldAddress2 {
    margin-bottom: 25px !important;
}

.fsBody .fsSupporting {
    color: #595d64 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.fsBody,
.fsBody .fsForm {
    margin: 0 !important;
    padding: 0 !important;
}

#google_language_translator select.goog-te-combo {
    width: 125px;
    font-size: 11px;
    font-family: var(--basic-font);
}

.logged-in-as a{
    color: var(--basic-color);
    font-size: 16px;
}

.comment-form p{
    font-size: 16px;
}

.comment-form label{
    display: block;
}
.comment-form textarea,
.comment-form input#author,
.comment-form input#email,
.comment-form input#url{
    background-color: #fff;
    border-radius: 6px;
    border: 2px solid #C4C4C4;
    padding: 7px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    color: #595d64;
    width: 100%;
    max-width: 400px;
}

.comment-form input[type="submit" i] {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    border: 2px solid var(--basic-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    padding: 12px 15px;
    background: var(--basic-color);
    color: #fff;
    font-family: var(--basic-font);
    cursor: pointer;
}

.comment-form-cookies-consent{
    display: flex;
    align-items: center;
}

.footer_contact_info .button_theme_bgcolor{
    font-size: 16px;
    padding: 10px;
    margin-bottom: 15px;
}
/*Custon 02.06.2022*/
.head_buttons .button_theme_bgcolor:hover{
    background: #fff;
    color: var(--basic-color);
}

.mob_buttons .head_buttons.sub_header{
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    list-style: none;
}

.mob_buttons .head_buttons.sub_header li{
    width: 48%;
}

/*CF7 Form*/
.cf input[type="text"],
.cf input[type="tel"],
.cf input[type="email"],
.cf input[type="number"],
.cf select,
.cf textarea,
.cf label,
.cf .wpcf7-form-control-wrap{
    display: block;
    width: 100%;
}

.cf .wpcf7-form-control-wrap{
    margin-top:10px;
}

.cf label{
    margin-bottom: 25px;
    color: #595d64;
    font-size: 14px;
}
.cf input[type="text"],
.cf input[type="tel"],
.cf input[type="email"],
.cf input[type="number"],
.cf select,
.cf textarea{
    padding: 7px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    color: #595d64;
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 2px solid #C4C4C4 !important;
    box-sizing: border-box;
}

.cf input[type=checkbox], .cf input[type=radio] {
    -webkit-appearance: none;
    position: relative;
    float: left;
    margin: 0 7px 0 0;
    padding: 0;
    border: none;
    vertical-align: middle;
    overflow: hidden;
    box-sizing: border-box;
    outline: 0!important;
    font-family: var(--basic-font) !important;
    width: 24px !important;
    height: 24px !important;
    background: var(--basic-color) !important;
    border-radius: 6px !important;
}

.cf input[type=checkbox]:before, .cf input[type=radio]:before {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    border: 2px solid #979797;
    background-color: #fff;
    border-radius: 6px;
    content: "";
    display: inline-block;
    margin-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: border,background-color;
    -moz-transition-property: border,background-color;
    -o-transition-property: border,background-color;
    transition-property: border,background-color;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.cf input[type=checkbox]:checked:before,
.cf input[type=radio]:checked:before{
    background-size: 65%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 765.2'%3E%3Cpath fill='%23ffffff' d='M960,233.4L468.2,725.1c-53.4,53.4-140,53.4-193.3,0L40,490.3c-53.4-53.4-53.4-140,0-193.3c53.4-53.4,140-53.4,193.3,0 l138.2,138.2L766.6,40c53.4-53.4,140-53.4,193.3,0C1013.3,93.4,1013.3,180,960,233.4z'/%3E%3C/svg%3E");
    background-color: var(--basic-color);
    border-color: var(--basic-color);
}

.cf .wpcf7-list-item.first{
    margin-left:0;
}

.cf-submit input[type=submit]{
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    border: 2px solid var(--basic-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px !important;
    width: 100%;
    background: var(--basic-color) !important;
    font-family: var(--basic-font) !important;
    border: none;
    color: #fff;
    cursor: pointer;
}

.cf .wpcf7-list-item label{
    display:flex;
    align-items:center;
}

.cf select{
    padding:6px;
}
.wpcf7-list-item {
    margin: 0 1rem 0 0 !important;
}
.cf.cf-custom-adress{
    display:flex;
    justify-content: space-between;
}

.cf.cf-custom-adress div{
    width:30%
}

.cf.cf-col-2{
    display: flex;
    justify-content: space-between;
}

.cf.cf-col-2 div{
    width: 48%;
}
/*Custon 02.06.2022*/
.head_buttons .button_theme_bgcolor:hover{
    background: #fff;
    color: var(--basic-color);
}

.mob_buttons .head_buttons.sub_header{
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    list-style: none;
}

.mob_buttons .head_buttons.sub_header li{
    width: 48%;
}
/*Archive page*/
.arhive_container{
    display:flex;
    flex-wrap: wrap;
}

.arhive_container .arhive_article{
    width: 30%;
    margin: 1.5%;
}

.arhive_container .arhive_article h1{
    font-size: 26px;
}


.post-thumbnail img{
    max-width: 100%;
    height: auto;
}

.post_tags{
    font-size:14px;
}

.post_tags a{
    color: #0e6631;
    border-bottom: 1px dashed;
    line-height: 30px;
    margin-left: 5px;
}


/* .main_photo text styles → css/components/front-page.css */

.main_info_block{
    display: flex;
    justify-content: space-between;
    margin-top:120px;
}

.main_info_block svg{
    width: 130px;
}

.main_info_block_text{
    width: calc(100% - 200px);
}

.main_info_block_text span{
    color: var(--basic-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.32px;
    line-height: 132%;
}

.main_info_block_text p{
    margin-top: 24px;
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: -0.18px;
}

.issues .issues_row .issues_block {
    transition: all .3s ease;
}

.issues .issues_row .issues_block:hover{
    transition: all .3s ease;
}

.owl_nav_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.issues-owl__nav{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    margin-top: -20px;
    z-index: 5;
}

.issues-owl__nav .owl_arrow_prev, .issues-owl__nav .owl_arrow_next {
    width: 40px;
    height: 40px;
}

.issues-owl__nav svg{
    cursor: pointer;
}
.issues .issues_row .issues_block .issues_block_head {
    padding-bottom: 0;
}
.issues .issues_row .issues_block {
    height: 400px;
    min-height: auto;
}

.issues_row .owl-item{
    border-radius: 6px;
    box-sizing: border-box;
}

.issues_row{
    padding: 0 60px;
    box-sizing: border-box;
}

.ussues_wrapper{
    position: relative;
}

.issues .issues_row .issues_block p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.issues .issues_row .issues_block ul{
    box-sizing: border-box;
    color: #fff;
    margin: 0;
    padding-left: 16px;
}

.issues .issues_row .issues_block ul li{
    margin:5px 0;
}

.issues_block:hover p{
    font-weight: 600 !important;
}

.issues_block_read_more{
    display: flex;
    align-items: center;
}

.issues_block .show_arrow{
    opacity: 0;
    transition: all .3 ease;
    margin-left: 5px;
}

.issues_block:hover .show_arrow{
    opacity: 1;
    transition: all .3s ease;
}


@media(max-width:1200px){
    .issues .issues_row .issues_block {
        height: 400px;
        min-height: auto;
    }
}

/* responsive .main_photo → css/components/front-page.css */

@media(min-width: 1200px) {
    .nav__item--hidden-desctop {
        display:none
    }

}

footer.site_footer .privacy{
    text-align: center;
    margin-top: 0;
}

footer.site_footer .privacy a:last-child{
    margin-left: 15px;
}

@media (max-width: 767px) {
    footer.site_footer .privacy {
        margin: 15px 0;
        text-align: left;
    }
}
@media(max-width: 1200px) {
    .mob_menu_bottom .social_links li svg{
        fill: #fff !important;
    }
}

.endorsed_row{
    margin-top: 40px;
}

.endorsed_block{
    border: 2px solid #ECECEC;
    border-radius: 6px;
    text-align: center;
    padding: 24px;
    min-height: 230px;
}

.endorsed_block p{
    line-height: 21px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 20px;
    margin-bottom: 0;
}
.endorsed .owl_nav_title h2{
    margin:0;
}

.endorsed_block img{
    display: inline-block !important;
    height: 130px !important;
    width: auto !important;
}

.issues .owl_nav_title{
    justify-content: center;
}

@media(max-width: 767px){
    .endorsed .owl_nav_title{
        display: block;
    }

    .endorsed .owl_nav_title h2{
        text-align: left;
        margin-bottom: 10px;
    }
}

#google_language_translator div.skiptranslate{
    font-size: 0 !important;
}
#google_language_translator div.skiptranslate > * {
    display: none !important;
}

#google_language_translator div.skiptranslate > div{
    display:block !important;
}

/* Custom Reviews Css */
.strong-form input[type="text"], .strong-form input[type="email"], .strong-form input[type="url"], .strong-form input[type="file"], .strong-form select, .strong-form textarea{
    padding: 7px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px;
    color: #595d64;
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 2px solid #C4C4C4 !important;
    box-sizing: border-box;
}

.strong-form label {
    font-weight: 500 !important;
    margin-bottom: 5px;
    color: #595d64  !important;
    font-size: 14px  !important;
    font-family: 'Inter';
}

.strong-form .required.symbol:after {
    content: '*';
    color: #FF0000;
    font-weight: 300 !important;
    margin: 0 2px  !important;
    position: relative;
    top: -1px  !important;
    font-size: 16px  !important;
}

.strong-form .form-field .after {
    font-size: 12px !important;
    font-style: italic;
    margin-top: 5px;
    color: #636363 !important;
}

#post-7360 .strong-view{
    max-width: 700px;
}

.post-7360 h1{
    margin:0;
    text-align:center;
}

.wpmtst-submit label{
    width: 100% !important;
}

.wpmtst-submit input{
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    border: 2px solid var(--basic-color) !important;
    -webkit-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
    border-radius: 6px !important;
    width: 100%;
    background: var(--basic-color) !important;
    font-family: var(--basic-font) !important;
    border: none;
    color: #fff;
    cursor: pointer;
}

.field-i_agree_to_allow_my_testimonial_to_be_published_on_this_website_,
.field-i_m_ok_with_sharing_my_name_publicly_{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.field-i_agree_to_allow_my_testimonial_to_be_published_on_this_website_ input,
.field-i_m_ok_with_sharing_my_name_publicly_ input{
    margin-left:0 !important;
}
.field-i_agree_to_allow_my_testimonial_to_be_published_on_this_website_ .field-wrap > label,
.field-i_m_ok_with_sharing_my_name_publicly_ .field-wrap > label{
    opacity: 0 !important;
}


.wpmtst-testimonial-heading{
    font-size: 18px;
}

.testimonial-content p{
    font-size: 16px;
    line-height: 144%;
    margin: 15px 0;
}

.testimonial-content a{
    display: block;
    color: #00907c;
}

.strong-view.wpmtst-default .wpmtst-testimonial-inner{
    border-radius: 6px;
}

.strong-view.controls-type-sides-outside{
    box-sizing: border-box;
}

.form-field.field-profession{
    display: none !important;
}

@media(min-width: 767px){
    .strong-view.wpmtst-default .wpmtst-testimonial-inner{
        height: 310px !important;
    }
}

#google_language_translator{
    height: 32px;
}

.show-reviews-posts-share-button{
    background: conic-gradient(from 268.29deg at 106.47% 109.82%, #00907c 0deg, #072630 275.62deg, #00907c 360deg);
    color: #fff;
}
.show-reviews-posts-share-button:hover{
    background: conic-gradient(from 268.29deg at 106.47% 109.82%, #00907c 0deg, #072630 275.62deg, #00907c 360deg);
    color: #fff;
}

.show-review-posts-row a.more-button {
    border: 2px solid #00907c;
}
.show-review-posts-row a.more-button:hover{
    background: #00907c !important;
    color:#fff;
}

.show-review-posts-row .page-numbers:hover, .show-review-posts-row .page-numbers.current, .show-review-posts-row .prev.page-numbers:hover, .show-review-posts-row .next.page-numbers:hover {
    background: #00907c !important;
    color: #FFFFFF !important;
    border-color: #00907c !important;
}