/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}


@font-face {
    font-family: 'Proxima';
    src: url('../fonts/ProximaNova-Extrabld.eot');
    src: local('Proxima Nova Extrabold'), local('ProximaNova-Extrabld'),
        url('../fonts/ProximaNova-Extrabld.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Extrabld.woff2') format('woff2'),
        url('../fonts/ProximaNova-Extrabld.woff') format('woff'),
        url('../fonts/ProximaNova-Extrabld.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
        url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('../fonts/ProximaNova-Bold.woff') format('woff'),
        url('../fonts/ProximaNova-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('../fonts/ProximaNova-Regular.eot');
    src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
        url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('../fonts/ProximaNova-Regular.woff') format('woff'),
        url('../fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima';
    src: url('../fonts/ProximaNova-Light.eot');
    src: local('Proxima Nova Light'), local('ProximaNova-Light'),
        url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Light.woff2') format('woff2'),
        url('../fonts/ProximaNova-Light.woff') format('woff'),
        url('../fonts/ProximaNova-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}





/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body
{
    margin: 0;

    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #212121;
    --font_size: 15px;
    --font_size_title: 50px;
    --font_family: 'Proxima';
    --contact_width: 500px;
}


::selection
{
    color: #fff;

    background: #476FFD;
}

::-moz-selection
{
    color: #fff;

    background: #476FFD;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}
/*
html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #de041d;
}

html.custom_scroll
{
    scrollbar-color: #de041d #ccc;
    scrollbar-width: thin;
}

*/
body
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.overlay
{
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



.supports_error
{
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show
{
    display: flex;
}




/*------------
    Header
------------*/

header
{    
    z-index: 9;
    top: 0;
    left: 0;
    padding: 30px 0;
    width: 100%;

    background: #4E7524;
}


header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
    display: flex;
}

header .logo
{
    color: currentColor;

    display: flex;

    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    margin-right: 64px;
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    color: #FFFFFF;
}

.link {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.link a:first-child {
    margin-right: 18px;
}
.link .green {
    width: 170px;
    height: 42px;
    border: 1px solid #F9F9F9;
    border-radius: 9px;
    background: #4E7524;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all .3s;
}
.link .green:hover {
    background: #fff;
    color: #416718;
}
.link .white {
    width: 140px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 9px;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: var(--text_color);
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    transition: all .3s;
    border:1px solid white;
}
.link .white:hover {
    background: #416718;
    color: #fff;
    border: 1px solid #fff;
}
header .logo img
{
    display: block;
}

header .logo img + img
{
    margin-left: 19px;
}



header .mob_menu_btn
{
    display: none;

    width: 30px;
    height: 28px;
    margin-right: -5px;
    margin-left: auto;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .mob_menu_btn .icon
{
    display: block;

    width: 20px;
    height: 18px;
}



header .menu .close_btn
{
    color: #de041d;

    position: absolute;
    top: 42px;
    left: 22px;

    display: none;

    width: 20px;
    height: 20px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .close_btn .icon
{
    display: block;

    width: 18px;
    height: 18px;
}


header .menu .item + .item
{
    margin-left: 40px;
}

header .menu .item > a
{
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    
    color: #FFFFFF;

    position: relative;

    display: flex;

    padding: 12px 0;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

header .menu .item:hover > a,
header .menu .item.current-menu-item > a
{
    border-bottom: 1px solid #fff;
}

header .menu .item.current-menu-item > a:after
{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    width: 100%;
    height: 5px;
    margin: auto;

    content: '';

    background: #de041d;
}




/* first_section */

.first_section {
    padding: 75px 0px 0px;
    background: #4E7524;
}
.first_section .cont {
    display: flex;
    justify-content: space-between;
}
.first_section .link .green,
.first_section .link .white {
    width: 200px;
    height: 60px;
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
}
.first_section .title {
    font-weight: 800;
    font-size: 76px;
    line-height: 86px;
    color: #FFFFFF;
    margin-bottom: 26px;
}
.first_section ul {
    list-style: none;
    margin-bottom: 49px;
}
.first_section ul li {
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 176.9%;
    color: #FFFFFF;
    padding-left: 34px;
}
.first_section ul li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: 17px;
    top: 15px;
    background: #fff;
}
.first_section-img {
    margin-top: -100px;
    margin-right: -45px;
    width: 672px;
    height: 714px;
}
.first_section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* services */

.services {
    background: #fff;
}
.block {
    padding: 90px 0;
}
.block_head {
    margin-bottom: 48px;
}
.block_head .title {
    font-weight: 800;
    font-size: var(--font_size_title);
    line-height: 113.8%;
    text-align: center;
    color: var(--text_color);
}
.services_items {
    display: flex;
    justify-content: space-between;
    margin-left: -60px;
    margin-bottom: -40px;
}
.services_items > * {
    margin-left: 60px;
    margin-bottom: 40px;
    width: calc(100%/3 - 60px);
    text-align: center;
}
.services_item-icon {
    position: relative;
    background: #4E7524;
    box-shadow: 5px 15px 40px rgba(30, 35, 66, 0.15);
    border-radius: 35px;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.services_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 167.8%;
    color: var(--text_color);
    margin-bottom: 7px;
}
.services_item-text {
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 167.8%;
    color: var(--text_color);
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.services_item-button {
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 9px;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: #4F7625;
    padding: 12px;
    text-decoration: none;
    transition: all .3s;
}
.services_item-button:hover {
    background: #4F7625;
    color: #fff;
}



/* advantages */

.advantages {
    background: #F7F7F7;
}
.advantages .block_head {
    margin-bottom: 72px;
}
.advantages_title {
    margin-bottom: 14px;
}
.advantages_text {
    font-weight: 300;
    font-size: 22px;
    line-height: 113.8%;
    text-align: center;
    color: var(--text_color);
}
.advantages_items {
    display: flex;
    margin-left: -30px;
    margin-bottom: -55px;
    flex-wrap: wrap;
}
.advantages_items > * {
    margin-left: 30px;
    margin-bottom: 55px;
    width: calc(100%/3 - 30px);
}
.advantages_item {
    display: flex;
}
.advantages_item-icon {
    background: #FFFFFF;
    box-shadow: 5px 15px 40px rgba(30, 35, 66, 0.15);
    border-radius: 20px;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.advantages_item-info {
    margin-left: 28px;
}
.advantages_item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 147.8%;
    color: var(--text_color);
}
.advantages_item-text {
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 167.8%;
    color: var(--text_color);
}




/* documents */

.documents_items {
    display: flex;
}
.documents_items > * {
    width: calc(100%/3);
    text-align: center;
    padding: 68px 0 59px;
    text-decoration: none;
}
.documents_item:nth-child(1) {
    background: #61863A;
}
.documents_item:nth-child(2) {
    background: #4E7524;
}
.documents_item:nth-child(3) {
    background: #3E690F;
}
.documents_item-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 167.8%;
    color: #FFFFFF;
    margin-top: 22px;
}
.documents_item{	
    transition: 0.3s;
}
.documents_item:hover{
	transform: scale(1.1);
}



/* footer */

footer {
    padding-bottom: 61px;
    padding-top: 64px;
    background: #f7f7f7;
}
.footer_items {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #D6D6D6; 
    padding-top: 46px;   
}
.footer_items > * {
    width: 25%;
    margin-right: 22px;
}
.footer_item:nth-child(1) {
    display: flex;
    flex-direction: column;
}
.footer_item:nth-child(2) {
    width: 150px;
    margin-top: 15px;
}
.footer_item:nth-child(3) {
    width: 320px;
    margin-top: 15px;
}
.footer_item:nth-child(4) {
    margin-right: 0;
}
.footer_logo {
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    color: var(--text_color);
    text-decoration: none;
}
footer .copy {
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 18px;
    color: var(--text_color);
}
.footer_item-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: var(--text_color);   
    margin-bottom: 23px;
}
footer .link .white {
    border: 1px solid #D7D7D7;
    width: 109px;
}
footer .link .green {
    width: 140px;
}
.footer_item ul {
    list-style: none;
}
.footer_item ul li a {
    text-decoration: none;
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 24px;    
    color: var(--text_color);
}
footer .link {
    margin-left: 0;
    display: flex;
    align-items: flex-end;
}



/* lk */

.lk .header {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #F7F7F7;
}
.lk .header .cont {
    max-width: 1600px;
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
}
.lk .header .logo {
    font-size: 40px;
    line-height: 49px;
    color: #FFFFFF;
    padding: 31px 64px;
    background: #416718;
    width: 301px; 
    margin-right: 0;   
    justify-content: center;
}
.lk .header .user {
    display: flex;
    align-items: center;
}
.lk .header .user_info {
    margin-right: 20px;
    text-align: end;
}
.lk .header .user_text {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: var(--text_color);
}
.lk .header .user_name {
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 16px;
    color: var(--text_color);
}
.lk .header .logout {
    width: 113px;
    height: 42px;
    border: 1px solid #4E7524;
    border-radius: 9px;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 42px;
    text-align: center;
    color: var(--text_color);
    text-decoration: none;
    transition: all .3s;
}
.lk .header .logout:hover {
    background: #4E7524;
    color: #fff;
}


.header-mob {
    display: none;
}
.overlay--lk {
    display: none;
}


.main-content_aside {
    width: 301px;
    padding: 0 30px;
    padding-bottom: 30px;
    background: #4E7524;
}
.main-content_aside .lk-menu {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    margin-bottom: 41px;
}
.main-content_aside .lk-menu a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 14px 30px;
    text-decoration: none;    
    margin-left: -30px;
    margin-right: -30px;
    transition: all .4s;
}
.main-content_aside .lk-menu a.active,
.main-content_aside .lk-menu a:hover {
	background: #416718;
    color: #fff;
}
.main-content_aside .lk-menu .callback {
    background: #FFFFFF;
    border-radius: 9px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--text_color);
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 30px;
}
.main-content_aside .lk-menu .callback:hover {
    background: #416718;
    color: #fff;
}

.main-content_aside .user {
    display: none;
}

.main-content_body {
    display: flex;
    max-width: 1078px;
}
.main-content_form {
    width: calc(100% - 301px);
    padding: 44px 40px 75px 58px;
}

.main-content_form-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 113.8%;
    color: var(--text_color);
    padding-bottom: 11px;
    position: relative;
    /*margin-left: 22px;*/
    margin-bottom: 44px;
}
.main-content_form-title::before {
    position: absolute;
    content: "";
    /*left: -22px;*/
    bottom: 0;
    width: 110px;
    height: 3px;
    background: #4E7524;
}
.main-content_form-title::after {
    position: absolute;
    content: "";
    left: 110px;
    bottom: 1px;
    width: 1090px;
    height: 1px;
    background: #D9D9D9;
}
.form-item {
    margin-bottom: 44px;
}
.form-item:last-child {
    margin-bottom: 0;
}
.form-item_title {
    font-weight: 800;
    font-size: 24px;
    line-height: 113.8%;
    color: var(--text_color);
    padding-bottom: 13px;
    position: relative;
    margin-bottom: 40px;
}
.form-item_title::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #4E7524;
}
.main-content_form .name {
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: var(--text_color);
}
.main-content_form .name2 {
    font-size: 18px;
}
.main-content_form .line .field {
    display: flex;
    align-items: center;
}
.main-content_form label {
    font-weight: 700;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: var(--text_color);
    width: 212px;
}
.main-content_form .column {
    display: flex;
    flex-direction: column;
    width: calc(100% - 212px);
}
.main-content_form .field.columns {
    align-items: flex-start;
}
.main-content_form .line .form-text {
    display: block;
    text-align: end;
    font-weight: 400;
    font-size: 13px;
    line-height: 113.8%;
    color: #ABABAB;
    margin-top: 12px;
}
.main-content_form .line {
    margin-bottom: 30px;
}
.main-content_form .line:last-child {
    margin-bottom: 0px;
}
.main-content_form .nice-select {
    width: calc(100% - 212px);
    height: 50px;
    line-height: 50px;
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
}
.main-content_form .nice-select:after {
    border-bottom: 2px solid #4E7524;
    border-right: 2px solid #4E7524;
    height: 9px;
    margin-top: -4px;
    right: 19px;
    width: 9px;
}
.main-content_form .nice-select .list {
    width: 100%;
}
input::-webkit-input-placeholder {
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #B9B9B9;
}
input::-moz-placeholder {
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #B9B9B9;
}
input:-moz-placeholder {
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #B9B9B9;
}
input:-ms-input-placeholder {
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #B9B9B9;
}
.main-content_form .field input,
.main-content_form .field.columns input {
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 11px;
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #000;
    height: 50px;
    padding: 0 25px;
    width: 100%;
}
.main-content_form .field input {
    font-family: var(--font_family);
    width: calc(100% - 212px);
}
.main-content_form .field.columns input:last-child {
    margin-bottom: 0;
}
.main-content_form .line .form-text.fst {
    text-align: start;
    margin-left: 212px;
}

.main-content_form .file label {
    width: 100%;
    flex-wrap: nowrap;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-content_form .file_btn {
    height: 50px;
    line-height: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    text-decoration-line: underline;
    color: #4E7524;
}

.main-content_form .file.file-uploader {
    width: calc(100% - 212px);
}
.main-content_form .hidden-inputs {
    display: none;
}
.main-content_form .file-chooser__input {
    display: none;
}
.main-content_form .file .file-list {
    display: flex;
    align-items: center;
}
.main-content_form .file .file-list li {
    display: flex;
}
.main-content_form .file .file-list .file-list__name {
    margin-right: 5px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.main-content_form .file .field.file-chooser {
    display: flex;
    flex-direction: column;
}
.main-content_form .file .file-uploader__message-area {
    margin-left: 10px;
    display: none;
}

.main-content_form textarea {
    font-family: var(--font_family);
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    resize: none;
    width: calc(100% - 212px);
    height: 200px;
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #000;
    padding: 25px;
}
.mb0 {
    margin-bottom: 0 !important;
}
.main-content_form .field.valut span {
    font-weight: 400;
    font-size: 22px;
    line-height: 113.8%;
    color: var(--text_color);
    margin-left: 16px;
    display: block;
}
.main-content_form .field.valut input {
    width: calc(100% - 277px);
}

.main-content_form .submit {
    background: #4E7524;
    border-radius: 9px;
    width: 183px;
    height: 52px;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    transition: all .3s;
}
.main-content_form .submit:hover, footer .link .green:hover {
    background: #FFFFFF;
    color:#000;
    border: 1px solid #D6D6D6;
}

.main-content_form .submit + .submit{
    margin-left: 30px;
}



.page.text_block{
    margin-top: 20px;
}

.page.text_block h1{
    text-align: center;
    margin-bottom: 30px;
}

.error{
    border: 1px solid red !important;
}

.um input[type=submit].um-button, .um input[type=submit].um-button:focus, .um a.um-button, .um a.um-button.um-disabled:hover, .um a.um-button.um-disabled:focus, .um a.um-button.um-disabled:active{
	background: #4E7524 !important;
}

.um input[type=submit].um-button:hover{
	color:#000 !important;
	background: #fff !important;
	box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
	border: 1px solid #D7D7D7 !important;
}

.um .um-button.um-alt, .um input[type=submit].um-button.um-alt{
	    border: 1px solid #D7D7D7 !important;
	    background: #FFFFFF !important;
}

.um .um-button.um-alt:hover{
	background: #4E7524 !important;
	color:#fff !important;
}

.um-right.um-half{
    display: none;
}



/* forex */
.forex_title {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;    
    color: #FFFFFF; 
    margin-bottom: 23px;
}
.forex_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.forex_valut {
    display: flex;
    align-items: center;
}
.forex_valut-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    margin-right: 11px;
}
.forex_valut span {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;    
    color: rgba(255, 255, 255, 0.36);  
}
.forex_course {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    text-align: right;    
    color: #FFFFFF; 
}
.forex_link {
    margin-top: 23px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration: underline;
    color: #FFFFFF;
    display: block;
    transition: all .4s;
}
.forex_link:hover {
    text-decoration: none;
}




/* history */
.lk2 .main-content_body {
    display: flex;
    max-width: 1600px;
    padding-right: 20px;
}
.history {
    width: calc(100% - 301px);
    padding-top: 44px;
    padding-left: 59px;
}
.payment-account {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 25px 32px 30px;   
    margin-bottom: 63px; 
}
.payment-account_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.payment-account_title {
    font-weight: 800;
    font-size: 24px;
    line-height: 113.8%;
    color: #212121;
}
.payment-account_link {
    font-weight: 400;
    font-size: 14px;
    line-height: 113.8%;
    text-decoration: underline;
    color: #4E7524;
}
.payment-account_items {
    display: flex;
    margin-left: -21px;
    flex-wrap: wrap;
    margin-bottom: -20px;
}
.payment-account_items > * {
    width: calc(100%/5 - 21px);
    margin-left: 21px;
    padding: 10px 17px 14px;
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
}
.payment-account_item-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 113.8%;
    color: #212121;
    margin-bottom: 5px;
}
.payment-account_item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 113.8%;
    color: #212121;
}
.history_title {
    font-weight: 800;
    font-size: 42px;
    line-height: 113.8%;
    color: #212121;
    margin-bottom: 21px;
}
.history_form-wrap {
    display: flex;
    align-items: center;
    padding: 18px 28px 15px;
    background: #F7F7F7;
    border-radius: 10px;
    margin-bottom: 30px;
}
.history_form .input_calendar {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    font-family: var(--font_family);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    padding: 12px 17px;
    margin-right: 13px;
    width: 220px;
    flex-shrink: 0;
}
.history_form .input_calendar::-webkit-input-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    font-family: var(--font_family);
}
.history_form .input_calendar::-moz-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    font-family: var(--font_family);
}
.history_form .input_calendar:-moz-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    font-family: var(--font_family);
}
.history_form .input_calendar:-ms-input-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    font-family: var(--font_family);
}
.history_form .input_search {
    position: relative;
    width: calc(100%);
    height: 44px;
}
.history_form .input_search img {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
}
.history_form .input_search input {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    font-family: var(--font_family);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    padding: 12px 30px 12px 42px;
}
.history_form .input_search input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #9A9A9A;
    font-family: var(--font_family);
}
.history_form .input_search input::-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #9A9A9A;
    font-family: var(--font_family);
}
.history_form .input_search input:-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #9A9A9A;
    font-family: var(--font_family);
}
.history_form .input_search input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #9A9A9A;
    font-family: var(--font_family);
}
input[type=text]::-ms-clear {  
    display: none; 
    width : 0; 
    height: 0; 
}
input[type=text]::-ms-reveal {  
    display: none; 
    width : 0; 
    height: 0; 
}
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; 
}
.history_form-text {
    font-weight: 700;
    font-size: 15px;
    line-height: 167.8%;
    color: #4E7524;
    margin-left: 21px;
    margin-bottom: 6px;
}
.air-datepicker-cell.-selected- {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    height: 28px;
}
.air-datepicker-cell {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #212121;
}
.air-datepicker-body--day-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #AAAAAA;
}
.air-datepicker-cell.-range-from- {
    border-radius: 10px;
}
.air-datepicker.-inline- {
    width: 245px;
    padding: 20px;
}
.air-datepicker--navigation {
    width: 245px;
}
.air-datepicker-cell.-in-range-:hover {
    border-radius: 10px;
    color: #212121;
    background: #ECF8DE;
}
.air-datepicker-cell.-in-range- {
    border-radius: 10px;
    color: #212121;
    background: #ECF8DE;   
}
.air-datepicker-nav--action path {
    stroke: #4E7524;
}
.air-datepicker-nav--title,
.air-datepicker-nav--title i {
    font-family: var(--font_family);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #212121;
}
.air-datepicker-cell {
    margin: 4px;
    height: 28px;
}
.air-datepicker-cell.-in-range- {
    height: 28px;
}
.air-datepicker-nav {
    border-bottom: none;
}



.history {
    margin-bottom: 85px;
}
.history table {
    border-collapse: separate; 
    border-spacing: 0 3px;    
    width: 100%;    
}
.history table thead tr th {
    font-weight: 400;
    font-size: 16px;
    line-height: 167.8%;
    color: #212121;    
}
.history table thead tr th a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 167.8%;
    color: #212121;  
}
.history table thead tr th a img {
    margin-left: 6px;
}
.history table thead tr th:nth-child(1) {
    padding: 5px 20px;
    text-align: start;
}
.history table thead tr th:nth-child(2) {
    padding: 5px 20px 5px 0;
    text-align: start;
}
.history table thead tr th:nth-child(3) {
    padding: 5px 15px 5px 35px;
    text-align: end;
}
.history table thead tr th:nth-child(4) {
    padding: 5px 40px 5px 10px;
    text-align: end;
}
.history table tbody tr {
    border-radius: 10px;
    margin-bottom: 3px;
    font-weight: 400;
    font-size: 15px;
    line-height: 167.8%;
    color: #212121;
    vertical-align: top;
}
.history table tbody tr:nth-child(2n + 1) {
    background: #EEEEEE;
}
.history table tbody tr:nth-child(2n) {    
    background: #F7F7F7;
}
.history table tbody tr td:nth-child(1) {
    padding: 19px 20px;
    border-radius: 10px 0 0 10px;
    width: 15%;
}
.history table tbody tr td:nth-child(2) {
    padding: 19px 21px 19px 0;
    width: 43%;
}
.history table tbody tr td:nth-child(3) {
    padding: 19px 5px 19px 35px;
    text-align: end;
}
.history table tbody tr td:nth-child(4) {
    padding: 19px 33px 19px 5px;
    color: #4E7524;
    text-align: end;
    width: 15%;
    white-space: nowrap;
}
.history table tbody tr td:nth-child(5) {
    padding: 20px;    
    border-radius: 0px 10px 10px 0;
    text-align: center;
    width: 15%;
}

.pay .main-content_form-title {
    margin-left: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 113.8%;
    color: #212121;
    padding-bottom: 15px;
    margin-bottom: 33px;
}
.pay .main-content_form-title::before {
    width: 188px;
    left: 0;
}
.pay .main-content_form-title::after {
    left: 188px;
    width: calc(100% - 188px);
}
.pay-date {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 15px;
    line-height: 167.8%;
    color: #4E7524;
}

.pay_item + .pay-date{
    margin-top: 20px;
}
.pay_item {    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 23px;
    background: #EEEEEE;
    border-radius: 10px;
    margin-bottom: 3px;
}
.pay_item:nth-child(2n) {
    background: #F7F7F7;
}
.pay_item-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 167.8%;
    color: #212121;
    margin-right: 25px;
}
.pay_item-info {
    display: flex;
    align-items: center;
}
.pay_item-summa {
    font-weight: 700;
    font-size: 15px;
    line-height: 167.8%;
    color: #4E7524; 
    margin-right: 40px;
    white-space: nowrap;
}
.pay_item-link {
    font-weight: 400;
    font-size: 13px;
    line-height: 167.8%;
    text-decoration-line: underline;
    color: #212121; 
    transition: all .4s;
}
.pay_item-link:hover {
    color: #4E7524; 
}
.um-misc-ul{
    display: none;
}
.um-misc-ul a{
    color: #4E7524;
}

.forex_item.hide{
    display: none;
}

.list_orders{

}

.order{
    display: flex;
    background: #F7F7F7;
    border-radius: 10px;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
}

.order + .order{
    margin-top: 10px;
}
.order_sum{
    font-weight: 400;
    font-size: 32px;
    line-height: 113.8%;
    margin-bottom: 5px;
}

.order-right a{
    padding: 0 10px;
    display: block;
}



.text_block .aligncenter,
.text_block div.aligncenter {
    display: block;
    margin: 5px auto
}

.text_block .alignright {
    float: right;
    margin: 20px 0 20px 20px
}

.text_block .alignleft {
    float: left;
    margin: 20px 20px 20px 0
}

.text_block a img.alignright {
    float: right;
    margin: 20px 0 20px 20px
}

.text_block a img.alignnone {
    margin: 20px 20px 20px 0
}

.text_block a img.alignleft {
    float: left;
    margin: 20px 20px 20px 0
}

.text_block a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.text_block .wp-caption {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center
}

.text_block .wp-caption.alignnone {
    margin: 20px 20px 20px 0
}

.text_block .wp-caption.alignleft {
    margin: 20px 20px 20px 0
}

.text_block .wp-caption.alignright {
    margin: 20px 0 20px 20px
}

.text_block .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto
}

.text_block .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px
}

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

.text_block iframe {
    max-width: 100%
}

/*----------------
    Pagination
----------------*/
.pagination
{
    display: flex;

    margin-top: 45px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}


.pagination > * + *
{
    margin-left: 10px;
}

.pagination a, .pagination span
{
    color: #212121;
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;

    display: inline-block;

    width: 50px;
    height: 50px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .1em;
    text-transform: uppercase;

    border-radius: 50%;
    background: #F7F7F7
}

.pagination a:hover,
.pagination .current
{
    color: #fff;

    background: #4E7524;
}


.pagination a.next, .pagination a.prev{
    display: none;
}

.history table thead tr th a.active img{
    transform: rotateX(180deg);
}

.warning{
    font-size:20px;
    color:red;
    display: none;
}

.modal{
    width: 100%;
    max-width: 360px;
    display: none
}

.modal_title{
    font-weight: 800;
    font-size: 24px;
    line-height: 113.8%;
    color: var(--text_color);
    padding-bottom: 13px;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.modal .line{
margin-bottom: 15px;
}

.modal input{
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 11px;
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #000;
    height: 50px;
    padding: 0 25px;
    width: 100%;
}

.modal textarea{
    font-family: var(--font_family);
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    resize: none;
    width: 100%;
    height: 200px;
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 113.8%;
    color: #000;
    padding: 25px;
}
.modal form button {
    background: #4E7524;
    border-radius: 9px;
    width: 183px;
    height: 52px;
    font-weight: 600;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    transition: all .3s;
    width: 100%;
}

.modal form button:hover{
    background: #FFFFFF;
    color: #000;
    border: 1px solid #D6D6D6;
}

#modal_exel{
    max-width: 400px;
}

.air-datepicker-global-container{
    z-index: 1500;
}

#table_exel{
    display: none;
}

#modal_exel .nice-select{
    background: #F7F7F7;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 11px;
    font-family: 'Proxima';
    font-weight: 400;
    font-size: var(--font_size);
    line-height: 50px;
    color: #000;
    height: 50px;
    padding: 0 25px;
    width: 100%;
}

.label{
    font-weight: 700;
    font-size: 16px;
    line-height: 167.8%;
    color: #212121;
    margin-bottom: 10px;
}

.generate_excel{
    margin-top: 20px;
}

.history table tbody tr td:nth-child(5) button{
    color:#4E7524;
}

.hide_btc.active{
    display: none;
}

.show_btc{
    display: none;
}

.show_btc.active{
    display: block;
}


.um.um-register input[type=submit].um-button
{
    background: #4E7524 !important;
    font-weight: 600 !important;
    height: 42px !important;
    border: 1px solid #F9F9F9;
    border-radius: 9px;
    background: #4E7524;
    font-size: var(--font_size);
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    transition: all .3s;
    width: 140px;
}

.um-register .um-postmessage{
	text-align: center;
}


.contacts{
    display: flex;
    margin-top: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
}

.contacts_info{
    width: var(--contact_width);
}

.contacts_map{
    width: calc(100% - var(--contact_width) - 40px);
    border-radius: 20px;
    overflow: hidden;
}

.contacts_info h1{
    font-weight: 800 !important;
    font-size: 50px !important;
    line-height: 113.8% !important;
    text-align: left !important;
}

.contact_item{
    display: flex;
    margin-bottom: 30px;
}

.contact_icon{
    margin-right: 28px;
    background: #FFFFFF;
    box-shadow: 5px 15px 40px rgba(30, 35, 66, 0.15);
    border-radius: 20px;
    display: flex;
    height: 82px;
    width: 82px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.contact_item strong{
    font-weight: 700;
    font-size: 24px;
    line-height: 167.8%;
}

.about{
    margin-top: 60px !important;
}
.about p{
    font-weight: 400;
    font-size: 17px;
    line-height: 175.3%;
}
.about h1{
    font-weight: 800 !important;
    font-size: 50px !important;
    line-height: 113.8% !important;
    text-align: left !important;
}

.text_block blockquote{
    background: #4E7524;
    border-radius: 20px;
    padding:30px;
}

.text_block blockquote p{
    color:#fff;
}

.info_for_auto{
    
}