/*
Theme Name: DoCode Theme
Version: 1.0
Author URI: https://docode.pro
*/

@font-face{
	font-family:'Lato';
	src:url('/wp-content/themes/docode_theme/fonts/Lato-Light.ttf') format('truetype');
	font-weight:300;
	font-style:normal
}

@font-face{
	font-family:'Lato';
	src:url('/wp-content/themes/docode_theme/fonts/Lato-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal
}

@font-face{
	font-family:'Lato';
	src:url('/wp-content/themes/docode_theme/fonts/Lato-Bold.ttf') format('truetype');
	font-weight:600;
	font-style:normal
}

@font-face{
	font-family:'Lato';
	src:url('/wp-content/themes/docode_theme/fonts/Lato-Black.ttf') format('truetype');
	font-weight:800;
	font-style:normal
}


:root {
	--bl: #000;
	--wh-35: rgba(255, 255, 255, 0.35);
	--wh: #fff;
	--txt-gray: #9A9797;
	--gray: #ECEFF3;
	--act: #06482E;
	--act-14: rgba(6, 72, 46, 0.14);
	--ll-act: #E7F3D2;
	--l-act: #3C9718;
	--g-act: #0A7A52;
	--milk: #F6F6F6;
	--l-milk: #F9FAFB;
	--shadow: 0 0 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
	--d-shadow: 0rem 0.5rem 2rem 0.2rem rgba(0, 0, 0, 0.1);
	--grad: linear-gradient(90deg, var(--act), var(--bl));
	--grad-180: linear-gradient(270deg, var(--act), var(--bl));
	--ppl: #A230FF;
	--l-ppl: #FAF6FE;
}

:focus {
	outline: none;
}

::placeholder{
	color: var(--txt-gray);
}

liss:focus {
	
}

html{
	font-size: 10px;
}

body {
	font-family: 'Lato';
	font-size: 1.8rem;
	line-height: 150%;
}
button, input, select, textarea {
	
}

a {
	transition: .3s;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

[type="date"], [type="password"], [type="text"], [type="tel"], [type="email"], [type="number"], textarea, select {
	border: 0.1rem solid var(--txt-gray);
	height: 4rem;
	margin: 0;
	width: 100%;
	padding: 0 2rem;
	font-family: inherit;
	border-radius: 0.6rem;
	font-size: inherit;
}

textarea {
	
}

[type=button], [type=reset], [type=submit], button {
    background: var(--act);
    color: var(--wh);
    border: 0.1rem solid var(--act);
    padding: 1.2rem 3rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

[type=button]:not(:disabled):hover, 
[type=reset]:not(:disabled):hover, 
[type=submit]:not(:disabled):hover, 
button:not(:disabled):hover {
	color: var(--act);
	/* background: var(--wh); */
}

p, ul, ol {
    margin-bottom: 2rem;
}

table {
    border-top: 1px solid;
    border-left: 1px solid;
    border-collapse: collapse;
}

table td {
    border-bottom: 1px solid;
    border-right: 1px solid;
    padding: 5px;
}

.table_wrap {
    width: 100%;
    overflow: auto;
}

h1, .h1 {
	font-size: 5rem;
	color: var(--act);
	line-height: 130%;
}

h2, .h2 {
	font-size: 4rem;
	margin-bottom: 4rem;
	position: relative;
	font-weight: 600;
	line-height: 130%;
}

h3, .h3 {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 2rem;
	line-height: 110%;
}

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

iframe {
    max-width: 100%;
}

img.to_svg{
	display: none;
}

.container{
	width: 120rem;
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

.row{
	margin-left: -1.5rem;
	margin-right: -1.5rem;
	display: flex;
	flex-wrap: wrap;
}

.desc_hide, .decs_hide{
	display: none !important;
}

main {
    min-height: 75vh;
}

section {
    padding: 6rem 0 3rem;
    clear: both;
}

section.space {
    padding: 3rem;
}


/*** HEADER ***/
.head_row {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
}

.header_logo {
    display: block;
    margin: 2rem 2rem 2rem 0;
}

.header_logo h1 {
    font-size: inherit;
    margin: 0;
}

.header_logo img {
    width: 8rem;
    display: block;
}

.ul_main_menu {
    padding: 0;
    list-style: none;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-self: center;
    margin: 0 0 0 2rem;
}

a.head_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--wh);
    background: var(--l-act);
    position: relative;
    padding: 1rem 3rem;
    border: 0.1rem solid var(--l-act);
    letter-spacing: 0.1rem;
    align-self: center;
    margin-left: auto;
    border-radius: 0.8rem;
}

header {
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    background: var(--act);
    z-index: 100;
}

.desc_hide {
    display: none;
}

a.head_btn:hover {
	color: var(--l-act);
	background: var(--wh);
}

.header_search_form {
    background: var(--act);
    position: absolute;
    right: 0;
    height: 100%;
    transition: 2s;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    z-index: 1;
}

.search_open .header_search_form {
    pointer-events: all;
    width: 100%;
}

.header_search_form form {
    display: flex;
    align-items: center;
    width: 100%;
}

.header_search_form form button {
    padding: 0.4rem;
    margin: 0 2rem;
    background: transparent;
    border: none;
}

.header_search_form form button:hover path {
    fill: var(--l-act);
}

.header_search_form form button path {
	fill: var(--wh);
    transition: 0.3s;
}

.s_form_close {
    cursor: pointer;
    align-self: center;
    display: flex;
}

.header_search_form form svg {
    width: 2rem;
}

.s_form_close path {
	fill: var(--wh);
    transition: 0.3s;
}

.s_form_close:hover path {
    fill: var(--l-act);
}

.header_search {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 3rem;
}

.header_search path {
    transition: 0.3s;
    fill: var(--wh);
}

.header_search:hover path {
    fill: var(--l-act);
}

.ul_lang_menu {
    position: relative;
    margin: 0 3rem;
    padding: 0 1rem;
    text-transform: uppercase;
}

.ul_lang_menu li {
    list-style: none;
}

.ul_lang_menu .sub-menu {
    margin: 0;
    padding: 0 1rem 1rem;
    position: absolute;
    display: none;
    background: var(--act);
    left: 50%;
    transform: translateX(-50%);
}

.ul_lang_menu a {
    color: var(--wh);
}

.ul_lang_menu a:hover {
    color: var(--l-act);
}

.ul_lang_menu li:hover .sub-menu {
    display: block;
}

.ul_lang_menu .sub-menu li a {
    margin-top: 1rem;
    display: block;
}

.ul_main_menu a {
    color: var(--wh);
    position: relative;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-left: 2rem;
}

.ul_main_menu a:after {
    content: '';
    height: 0.2rem;
    display: block;
    background: var(--l-act);
    transition: 0.3s;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -0.5rem;
}

.ul_main_menu a:hover:after {
    width: 100%;
}

.ul_main_menu li {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.ul_main_menu li ul.sub-menu {
    position: absolute;
    z-index: 1;
    background: var(--milk);
    padding: 1rem;
    list-style: none;
    top: 100%;
    max-width: 250%;
    width: max-content;
    display: none;
}

.ul_main_menu li ul.sub-menu a {
    margin: 0;
}

.ul_main_menu li ul.sub-menu li {
    padding: 0 0 2rem;
}

.ul_main_menu li:hover ul.sub-menu {
    display: block;
}

.ul_main_menu li.menu-item-has-children:after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: url(/wp-content/themes/docode_theme/icons/angle.svg);
    filter: brightness(0);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
}
/*** END HEADER ***/

/*** BANNER ***/
section.banner {
    position: relative;
    padding: 0rem 0 0rem;
}

.main_banner_slide {
    position: relative;
    padding-top: 10rem;
    height: 50rem;
    overflow: hidden;
    width: 100%;
}

.main_banner_slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_banner_slide .container {
    position: relative;
}

.banner_text {
    font-size: 5.8rem;
    font-weight: 600;
    color: var(--wh);
    line-height: 130%;
    margin-bottom: 4rem;
}

.banner_desc {
    color: var(--wh);
    font-size: 3rem;
    margin-bottom: 4rem;
    line-height: 150%;
}

.banner_content {
    padding: 0rem 0rem;
    width: 55%;
}
/*** END BANNER ***/

/*** BANNER CASE ***/
section.img_banner_section {
    position: relative;
    padding: 4rem 0 6rem;
}

.banner_darker {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bl);
    opacity: 0.5;
}

.img_banner_content {
    position: relative;
    color: var(--wh);
    width: 80%;
}

section.img_banner_section .docode-breadcrumb, section.img_banner_section .docode-breadcrumb a {
    color: var(--wh);
}

section.img_banner_section .docode-breadcrumb a:hover {
    color: var(--act);
}

section.img_banner_section h1, section.img_banner_section .h1 {
    margin-bottom: 4rem;
    margin-top: 4rem;
    color: var(--wh);
}

.img_banner_actions {
    display: flex;
    flex-wrap: wrap;
}

.img_banner_actions a {
    margin-right: 4rem;
    margin-bottom: 4rem;
}

.img_banner_desc {
    margin-bottom: 4rem;
    line-height: 130%;
    font-size: 1.8rem;
}

.img_banner_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.img_banner_mark {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--wh);
    padding: 0.5rem 2rem;
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/*** END BANNER CASE ***/


/*** PACK ***/

.pack_card {
    margin: 0 1.5rem 3rem;
    width: calc(50% - 3rem);
    box-shadow: var(--shadow);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.pack_card_text {
    padding-left: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.pack_card ul, .wp-aditor ul {
    padding-left: 2rem;
}

.pack_card_text ul li {
    margin-top: 1rem;
}

.pack_card_text a {
    color: inherit;
    text-decoration: underline;
}

.pack_card_text a:hover {
    color: var(--act)
}

.pack_card_text:before {
    content: '';
    width: 0.1rem;
    height: calc(100% - 2rem);
    display: block;
    position: absolute;
    background: var(--bl);
    left: 0;
    top: 0;
}

.pack_card_btn {
    margin-top: auto;
}

.btn, .btn_light {
    display: block;
    background: var(--act);
    width: max-content;
    color: var(--wh);
    padding: 1rem 4rem;
    text-transform: uppercase;
    font-weight: 600;
    border: 0.1rem solid var(--act);
    transition: 0.3s;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    border-radius: 0.6rem;
    cursor: pointer;
}

.btn:hover {
    background: var(--wh);
    color: var(--act);
    /* opacity: 0.7; */
}

.btn_light {
    background: var(--wh);
    color: var(--act);
}

.btn_light:hover {
    background: var(--act);
    color: var(--wh) !important;
}

section.pack {
    padding-bottom: 2rem;
}

/*** END PACK ***/

/*** WHY ***/
section.why {
    position: relative;
    padding: 6rem 0 6rem;
    background: var(--l-milk);
}

section.why h2 {
    /* text-align: center; */
}

img.banner_fon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: transform 3s;
}

.main_banner img.banner_fon{
	animation: pulse 10s infinite alternate;
}

.why_desc {
	font-size: 2rem;
	text-align: center;
	color: var(--txt-gray);
	line-height: 150%;
	margin-bottom: 6rem;
}

img.why_right_img {
    float: right;
    width: 40%;
    margin: 0 0 2rem 2rem;
    border-radius: 1.6rem;
}

.why_card {
    position: relative;
    background: var(--wh);
    border-radius: 1rem;
    max-width: calc(50% - 3rem);
    margin: 0rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* background: var(--milk); */
    padding: 2rem 2rem 4rem;
    border-radius: 1.6rem;
}

.why_card img {
    width: 5rem;
    margin-bottom: 4rem;
}

.why_card_title {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 110%;
    /* text-align: center; */
}

section.card_digits {
    padding: 6rem 0 0;
}

section.card_digits h2 {
    text-align: center;
}

.card_digits .why_card {
    flex: 15%;
    background: var(--milk);
}

.why_card_digit {
    display: flex;
    width: 6rem;
    height: 6rem;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--wh);
    background: var(--act);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.why_card_text {
    /* margin-top: auto; */
    /* text-align: center; */
}
/*** END WHY ***/

/*** FEEDBACK ***/
section.feedback h2 {
    text-align: center;
}

.feedback_carousel {
    margin: 4rem -1.5rem 0;
    width: calc(100% + 3rem);
}

.feedback_card {
    border: 0.1rem solid var(--gray);
    border-radius: 1.6rem;
    display: flex;
    flex-direction: column;
    margin: 0 1.5rem;
    padding: 2rem;
    flex: 1;
}

.feedback_card_text {
    margin-bottom: 2rem;
}

.feedback_card_name {
    margin-top: auto;
    text-align: right;
    font-weight: 600;
}

.feedback_carousel .owl-stage {
    display: flex;
}

.feedback_carousel.owl-carousel .owl-item {
    display: flex;
    align-items: normal;
}

/**** END FEEDBACK ***/

/*** FAQ ***/
section.faq {
    background: var(--gray);
    padding: 6rem 0;
}

section.faq .why_desc {
    text-align: left;
}

.why_desc a {
    color: var(--act);
    text-decoration: underline;
}

.why_desc a:hover {
    color: var(--l-act);
}

.faq_list {
    margin-top: 4rem;
}

.faq_card {
    background: var(--wh);
    padding: 2rem 4rem;
    border-radius: 1.6rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s;
    font-size: 2rem;
}

.faq_card:hover {
    background: var(--milk);
}

.faq_question {
    font-weight: 600;
    padding-right: 8rem;
    position: relative;
    transition: 0.3s;
}

.faq_card.open .faq_question {
    color: var(--act);
}

.faq_angle {
    width: 4rem;
    height: 4rem;
    background: var(--act-14);
    border-radius: 50%;
    top: 50%;
    right: 0rem;
    position: absolute;
    transition: 0.3s;
    transform: translateY(-50%);
}

.faq_angle svg {
    width: 25%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq_angle svg path {
    fill: var(--act);
}

.faq_answer {
    margin-top: 1rem;
    padding-right: 8rem;
    display: none;
}

.faq_card.open .faq_angle {
    transform: translateY(-50%) rotate(180deg);
}

.faq_card.open .faq_answer {
    display: block;
}

/*** END FAQ ***/


/*** RESULT ***/
.result_content {
    margin: 0 1.5rem;
    width: 100%;
}

.result_card_left_col {
    width: calc(60% - 3rem);
    margin: 0 1.5rem;
}

.result_card_right_col {
    flex: 1;
}

.result_img {
    position: sticky;
    display: flex;
    justify-content: center;
    top: 8rem;
    overflow: hidden;
}

.result_img img {
    height: auto;
    width: 37rem;
	transition: 0.3s;
}

.row_1 {
    margin: 0 -1.5rem;
}

.result_card {
    float: left;
    position: relative;
    margin: 0px 0 4rem;
    padding-right: 2rem;
}

.result_card h2 {
    margin-bottom: 0;
}

.result_card_title {
    font-weight: 600;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-left: 4rem;
}

.result_card_title a {
    text-decoration: underline;
    color: var(--bl);
}

.result_card_title a:hover {
    color: var(--act);
}

.result_desc {
    font-size: 2.4rem;
	margin-top: 4rem;
}

.result_card_title svg {
    width: 3rem;
    height: 3rem;
    background: var(--act);
    border-radius: 50%;
    padding: 0.3rem;
    margin-right: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}

.result_card_title svg path {
    fill: var(--wh);
}

.result_card_text {
    margin-left: 4rem;
    /* font-size: 2rem; */
    line-height: 130%;
}

.result_left_img {
    position: relative;
    width: 40%;
    border-radius: 1rem;
    overflow: hidden;
    margin-right: 2rem;
}

.result_left_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result_left_content {
    flex: 1;
    padding-left: 3rem;
}

.result_left_content .result_card:before {
    width: 0.2rem;
    height: 100%;
    border-radius: 0;
    background: var(--act);
    top: 2.2rem;
    display: none;
}

.result_card_text svg {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: -0.7rem;
}

.result_card_text svg path {
    fill: var(--act);
}

.result_left_content .result_card {
    padding-left: 3rem;
    margin-bottom: 0;
    margin-top: 2rem;
}

.result_left_content .result_card:last-child:before {
    display: none;
}

.result_btn_wrap {
    width: 100%;
    margin: 3rem 0rem 0;
    display: flex;
    justify-content: center;
}
/*** END RESULT ***/

/*** LOGO CAROUSEL ***/
section.logo_carousel h2 {
    text-align: center;
}

.logo_carousel_desc {
    width: 80%;
    text-align: center;
    margin: 0 auto 4rem;
    color: var(--txt-gray);
    line-height: 150%;
}

body .owl-carousel .owl-nav button.owl-next img,
body .owl-carousel .owl-nav button.owl-prev img {
    width: 40%;
}

.logo_carousel_section.owl-carousel {
    padding: 0 6rem;
}

.logo_carousel_card {
    padding: 1rem 3rem;
    display: block;
}

.logo_carousel_section.owl-carousel .owl-stage {
    display: flex;
}

/*** END LOGO CAROUSEL ***/

/*** SOME POSTS ***/
section.posts h2 {text-align: center;}

.more_posts_space {
    padding: 2rem;
}

.archive_post_card {
    margin: 3rem 1.5rem 3rem;
    width: calc(25% - 3rem);
    display: flex;
}

a.any_post_card {
    position: relative;
    width: 100%;
    height: 27rem;
    border-radius: 0.3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--wh);
}

a.any_post_card:hover {
    box-shadow: var(--shadow);
}

a.any_post_card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    filter: grayscale(1);
}

.post_card_hover {
    position: relative;
    flex: 1 0 auto;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    overflow: hidden;
}

.post_card_btn_text {
    position: relative;
    height: 0;
    display: flex;
    color: var(--bl);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.post_card_title {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--wh);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.8rem;
}

.post_card_date {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--milk);
    font-size: 1.2rem;
}

.post_card_darker {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
}

a.any_post_card:hover .post_card_btn_text {
    opacity: 1;
    height: 4rem;
}

a.any_post_card:hover .post_card_darker {
    background: var(--act);
    opacity: 0.3;
}

.more_posts_row {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.main_posts_row {
    margin-top: 4rem;
}

.any_post_card_main {
    display: flex;
    margin-bottom: 3rem;
    color: var(--bl);
}

.any_post_card_main:hover {
    color: var(--l-act);
}

.main_post_card {
    width: calc(50% - 3rem);
    margin: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

.main_posts_col {
    width: calc(50% - 3rem);
    margin: 0 1.5rem;
}

.any_post_card_main .post_card_main_img {
    width: 20rem;
    height: 15rem;
    border-radius: 0.8rem;
    margin-right: 2rem;
    position: relative;
    overflow: hidden;
}

.post_card_main_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.any_post_card_main:hover .post_card_main_img img {
    transform: scale(1.1);
}

.post_card_main_text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post_card_main_title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.post_card_main_desc {
    margin-bottom: 1rem;
}

.post_card_main_btn {
    color: var(--act);
    text-decoration: underline;
    margin-top: auto;
    text-align: right;
}

.main_post_card .post_card_main_btn {
    text-align: left;
}

.main_post_card .any_post_card_main {
    flex-direction: column;
    flex: 1;
}

.main_post_card .any_post_card_main .post_card_main_img {
    width: 100%;
    height: 33rem;
    margin-bottom: 3rem;
}

.main_post_card .post_card_main_text {
    flex: 1;
}

.main_post_card .post_card_main_title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 130%;
}
/*** END SOME POSTS ***/

/*** CAROUSEL ***/
body .owl-carousel .owl-item {display: flex;align-items: center;}

.carousel_card {
    display: flex;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
    border-radius: 2rem;
    overflow: hidden;
    width: 100%;
    color: var(--bl);
}

a.carousel_card:hover {
    color: var(--act);
}

.carousel_card_img {
    position: relative;
    width: 50%;
    height: 40rem;
}

.carousel_section {
    width: 80%;
    margin: auto;
}

.carousel_card_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel_card_text {
    padding: 3rem;
    flex: 1;
}

.carousel_card_title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2rem;
}

.carousel_card_price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

body .owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 120rem;
    left: 50%;
}

body .owl-carousel .owl-nav button.owl-next, 
body .owl-carousel .owl-nav button.owl-prev {
    width: 4rem;
    height: 4rem;
    background: var(--act);
    transition: 0.3s;
    position: relative;
    pointer-events: all;
    border-radius: 50%;
    margin: 0;
    transform: rotate(90deg);
}

body .owl-carousel .owl-nav button.owl-next:hover, body .owl-carousel .owl-nav button.owl-prev:hover {
    opacity: 0.7;
}

.carousel_arrow {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    background: var(--milk);
    width: 1.3rem;
    height: 1.3rem;
    clip-path: polygon(20% 50%, 100% 0, 100% 100%);
}

body .owl-carousel .owl-nav button.owl-prev {
	transform: rotate(270deg);
}

body .owl-theme .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    transition: 0.3s;
    margin: 0;
}

body .owl-theme .owl-dots {
    margin-top: 2rem !important;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
}

button.owl-dot {
    margin: 0.5rem;
}

body .owl-theme .owl-dots .owl-dot.active span,
body .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--act);
}

section.carousel {
    padding: 3rem 0 3rem;
}

.carousel_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.carousel_title h2 {
    flex: 1;
    margin: 0;
}

.carousel_desc {
    width: 50%;
    border-left: 0.4rem solid var(--act);
    padding-left: 2rem;
    font-size: 1.6rem;
}


/*** END CAROUSEL ***/

/*** RELATED POSTS ***/
.archive_related_card {
    padding: 0 2rem;
}

.related_posts_carousel {
    margin: 0 -2rem;
    width: calc(100% + 4rem);
}

body  .related_posts_carousel.owl-theme .owl-dots {
    bottom: -3rem;
}

section.related_posts {
    padding: 3rem 0 5rem;
}

/*** END RELATED POSTS ***/

/*** CIT ***/
section.cit {
    background: var(--grad);
    color: var(--wh);
    padding: 7rem 0 6rem;
}

.cit_text {
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 0 10rem;
}

.cit_text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    font-size: 14rem;
    line-height: 1;
    opacity: 0.5;
}

.cit_text:after {
    content: '';
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    font-size: 14rem;
    line-height: 1;
    opacity: 0.5;
}

.cit_author {
    text-align: center;
    margin: 2rem;
    font-size: 2rem;
}

.cit_social {
    display: flex;
    margin: 3rem auto 0;
    width: 20%;
    justify-content: center;
}

.cit_social a {
    margin: 1rem;
}

.cit_social a:hover {
    opacity: 0.7;
}

.cit_social a svg {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}


/*** END CIT ***/

/*** FORM SECTION ***/
section.form {
    padding: 6rem 0;
    position: relative;
}

.form_section_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form_section_row > img {
    width: 34rem;
    height: auto;
    position: relative;
}


.form_section_container {
    width: 60%;
    box-shadow: var(--shadow);
    background: var(--milk);
    position: relative;
    border-radius: 0.6rem;
    padding: 3rem 3rem 1rem;
    margin-left: auto;
}

.form_section_wrap [type="password"], 
.form_section_wrap [type="text"],
.form_section_wrap [type="tel"],
.form_section_wrap [type="email"], 
.form_section_wrap [type="number"], 
.form_section_wrap textarea,
.form_section_wrap select {
    border: none;
    border-bottom: 0.1rem solid var(--gray);
    background: transparent;
    font-size: 1.6rem;
    height: 3rem;
}

.form_section_wrap .f_wrap p, .form_section_wrap .f_wrap_100 p {
    margin: 0;
}

.form_section_wrap .f_wrap label {
    left: 0;
    top: 1rem;
    line-height: 1;
    color: var(--gray);
}

.form_section_wrap select.wpcf7-form-control.wpcf7-not-valid, 
.form_section_wrap input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid {
    border: none;
    border-bottom: 0.1rem solid red;
}

label.checkbox_label:before,
.wpcf7-list-item label:before{
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--act);
    cursor: pointer;
    transition: 0.3s;
    background: var(--wh);
    border-radius: 0.3rem;
    margin-right: 1rem;
}

label.checkbox_label:hover:after,
.wpcf7-list-item label:hover:after{
    background: var(--milk);
}

label.checkbox_label:after,
.wpcf7-list-item label:after{
    content: '';
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    transition: 0.3s;
    top: 4px;
    left: 4px;
    cursor: pointer;
    border-radius: 3px;
}

label.checkbox_label.checked:after,
.wpcf7-list-item label.checked:after{
    background: var(--act);
}

label.checkbox_label.checked:after,
.wpcf7-list-item label.checked:after{
    background: var(--act);
}


.form_section_wrap {
	width: 100%;
}

section.form .h2 {
    color: var(--bl);
}

.form_section_wrap .f_wrap input[type="submit"] {
    border-radius: 0.3rem;
    background: var(--act);
}

.form_section_wrap .f_wrap input[type="submit"]:hover {
    background: var(--wh);
    color: var(--act);
}

.form_section_wrap .f_wrap .wpcf7-list-item label {
    position: relative;
    top: 0;
    pointer-events: all;
    display: flex;
    line-height: 110%;
    font-size: 1.4rem;
}

span.wpcf7-list-item-label a {
    color: var(--bl);
    text-decoration: underline;
    margin: 0 0.5rem;
}

span.wpcf7-list-item-label a:hover {
    color: var(--act);
}

.form_section_wrap .f_wrap .wpcf7-list-item {
    margin: 0;
    display: flex;
}

.form_section_row > img {
    width: 34rem;
    height: auto;
    position: relative;
}

.form_section_wrap .f_wrap .wpcf7-list-item label p {
    margin-left: 0.5rem;
}

.form_section_wrap .f_wrap label.onfocus {
    top: -0.5rem;
}
/*** END FORM SECTION ***/

/*** TITLE SECTION ***/
.docode-breadcrumb {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
}

.docode-breadcrumb a {
    color: var(--gray);
}

.docode-breadcrumb a:hover {
    color: var(--l-act);
}

section.title_section .docode-breadcrumb a, section.title_section .docode-breadcrumb {
    color: var(--bl);
}

section.title_section .docode-breadcrumb a:hover {
    color: var(--act);
}
/*** END TITLE SECTION ***/


/*** SERVICES ***/
section.services {
    padding: 4rem 0 1rem;
}

.any_service_card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    color: var(--bl);
    height: 28rem;
    overflow: hidden;
    width: 100%;
}

img.service_mark_icon {
    width: 2rem;
    height: 2rem;
    display: none;
    transition: 0.3s;
}

.mark_block img.service_mark_icon {
    display: block;
    margin: 2rem 2rem 3rem;
}

.service_card_title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding: 0 2rem;
    transition: 0.3s;
}

.mark_block .service_card_title {
    margin-top: 0;
    font-size: 2rem;
}

.mark_block .any_service_card {
    color: var(--wh);
    background: var(--act);
}

.service_card_price {
    margin-top: auto;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--act);
    background: var(--act);
}

.service_card_btn_text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wh);
    background: var(--act);
    transition: 0.3s;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service_card_desc {
    padding: 0 2rem;
}

.any_service_card:hover .service_card_btn_text {
    height: 6rem;
    opacity: 1;
}

.mark_block .service_card_price {
    color: var(--wh);
}

.any_service_card:hover img.service_mark_icon {
    height: 0;
    margin: 0 2rem;
}

.mark_block .any_service_card:hover {
    background: var(--wh);
    color: var(--bl);
}

.mark_block .any_service_card:hover .service_card_title {
    font-size: 1.4rem;
    margin-top: 2rem;
}

.mark_block .any_service_card:hover .service_card_price {
    color: var(--act);
}

.service_card_desc_inner {
    background: var(--wh);
    padding: 2rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    transition: 0.3s;
}

.mark_block .service_card_desc_inner {
    background: var(--act);
}

.mark_block .any_service_card:hover  .service_card_desc_inner {
    background: var(--wh);
}

/*** END SERVICES ***/

/*** TXT BTN ***/
.txt_btn_text {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    padding: 0 10rem;
}

section.txt_btn {
    color: var(--bl);
    padding: 3rem 0;
    /* background: var(--gray); */
}

.txt_btn_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.txt_btn_wrap {
    margin: 4rem 2rem 0;
    display: flex;
    justify-content: center;
}

/*** END TXT BTN ***/

/*** ASK LINK ***/
.ask_lnk_content {
    display: flex;
}

.ask_lnk_text {
    width: 70%;
    margin-left: 8rem;
    margin-bottom: 4rem;
}

.ask_lnk_desc {
    font-size: 1.8rem;
}

.ask_lnk_icon {
    width: 3rem;
    transform: rotate(135deg);
    margin-top: 1rem;
}

.ask_lnk_icon path {
    stroke: var(--act);
}

.ask_lnk_btn_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem 4rem;
}

.ask_lnk_btn_wrap a {
    display: block;
    padding: 1rem 3rem;
    border-radius: 0.3rem;
    box-shadow: var(--shadow);
    margin: 0 1rem 2rem;
    color: var(--bl);
    font-weight: 600;
    text-transform: uppercase;
}

section.ask_lnk .line_on {
    border-bottom: 0.1rem solid var(--bl);
}

section.ask_lnk {
    padding-bottom: 0;
    padding-top: 7rem;
}

.ask_lnk_btn_wrap a:hover {
    background: var(--act);
    color: var(--wh);
}

/*** END ASK LINK ***/

/*** TEST SECTION ***/
section.test {
    position: relative;
    padding: 7rem 0;
}

.test_content {
    width: 70%;
    margin: auto;
    text-align: center;
}

.test_desc {
    position: relative;
    font-size: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.test_btn {
    position: relative;
    display: flex;
    justify-content: center;
}

.test_btn a {
    padding: 1rem 3rem;
    display: block;
    border: 0.1rem solid var(--wh);
    border-radius: 5rem;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--act);
    background: var(--wh);
    font-weight: 600;
}

.test_btn a:hover {
    opacity: 0.7;
}

.fon_whiter {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--wh);
    opacity: 0.5;
}

.get_test_container {
    position: relative;
    box-shadow: var(--shadow);
    border: 0.1rem solid var(--milk);
    min-height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get_test_screen {
    position: relative;
    padding: 4rem;
    display: none;
}

.get_test_question {
    font-weight: 600;
    color: var(--act);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.get_test_item {
    background: var(--wh);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.get_test_screen.active{
	display: block;
}

.get_test_item:hover, .get_test_item.choosed {
    color: var(--wh);
    background: var(--act);
}

.get_test_title {
    color: var(--act);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
}

.get_test_results span {
    color: var(--act);
}

.get_test_actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.get_test_btn {
    padding: 1rem 3rem;
    border-radius: 5rem;
    background: var(--wh);
    color: var(--act);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0 1rem;
    font-size: 2rem;
}

.get_test_btn:hover {
    background: var(--act);
    color: var(--wh);
}
/*** END TEST SECTION ***/

/*** LIST BANNER ***/
section.list_banner_section {
    position: relative;
    padding: 4rem 0 8rem;
    overflow: hidden;
}

.banner_list_wrap {
    color: var(--wh);
}

section.list_banner_section h1 {
    color: var(--wh);
}

.list_banner_content {
    position: relative;
    width: 70%;
}

.banner_list_desc {
    margin-top: 4rem;
    font-size: 1.8rem;
}

.banner_list_wrap {
    margin-top: 4rem;
}

.banner_list_wrap_title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner_list_item {
    margin-bottom: 1rem;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
}

.banner_list_item.h2_item {
    font-weight: 500;
}

.banner_list_item.h3_item {
    padding-left: 1rem;
}

.banner_list_item:hover {
    color: var(--l-act);
}

.banner_list_item > div {
    margin-left: 0.5rem;
}

.banner_list_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/*** END LIST BANNER ***/

/*** WP EDITOR ***/
.wp_editor_section .wp_editor {
    /* padding: 0 10rem; */
    margin: auto;
    overflow-wrap: anywhere;
    font-size: 1.8rem;
    line-height: 130%;
}

.wp_editor a {
    color: var(--bl);
    text-decoration: underline;
    font-weight: 600;
}

.wp_editor a:hover {
    color: var(--act);
}

.wp_editor ul li, .wp_editor ol li {
    margin-bottom: 1rem;
}

.wp_editor h2, .wp_editor h3 {
    line-height: 130%;
    margin: 0 0 2rem;
}

.wp_editor h3, .wp_editor .h3 {
    font-size: 2.4rem;
}

.aligncenter {
    margin: 2rem auto;
    display: block;
}

/*** END WP EDITOR ***/

/*** IMG TXT ***/
.img_txt_content {
    display: flex;
    flex-wrap: wrap;
}

.img_txt_icon {
    position: relative;
    margin-right: 4rem;
    box-shadow: var(--shadow);
    border-radius: 0.3rem;
    width: 20rem;
    height: 20rem;
}

.img_txt_editor {
    flex: 1;
}

.img_txt_icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/*** END IMG TXT ***/

/*** DIGITS ***/
section.digits {
    padding: 7rem 0 4rem;
    background: var(--grad);
    color: var(--wh);
}

.digits_block {
    margin: 0 1.5rem 3rem;
    flex: 20%;
}

.digits_block_num {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'MTS';
}

.digits_block_desc {
    font-size: 2rem;
}
/*** END DIGITS ***/

/*** CONTACTS ***/
.contact_col {
    width: calc(25% - 3rem);
    margin: 3rem 1.5rem 6rem;
    border: 0.1rem solid var(--gray);
    border-radius: 1rem;
    padding: 2rem;
    flex: 1;
}

img.contact_icon {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin: 0 auto 4rem;
    display: block;
}

.contact_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.contact_link {
    color: var(--bl);
    margin-bottom: 1rem;
}

a.contact_link:hover {
    color: var(--act);
}

.contact_social {
    display: flex;
    flex-wrap: wrap;
}

.contact_social a {
    display: block;
    width: 3rem;
    height: 3rem;
    position: relative;
    margin: 0 2rem 2rem 0;
}

.contact_social a svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    filter: invert(1);
}

.contact_social a:hover {
    opacity: 0.7;
}

.contacts_map iframe {
    width: 100%;
}
/*** END CONTACTS ***/

/*** CARDS IMG ***/
section.cards_img {
    padding: 3rem 0 2rem;
}

.cards_img_desc {
    font-size: 2.4rem;
    margin-bottom: 4rem;
}

.cards_img_card {
    width: calc(50% - 3rem);
    margin: 0 1.5rem 3rem;
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.cards_img_card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards_img_text {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--wh);
    padding: 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    min-width: 80%;
    max-width: calc(100% - 2rem);
}

.cards_img_bottom {
    font-size: 2.4rem;
    line-height: 130%;
}
/*** END CARDS IMG ***/

/*** FOOETR ***/
.up_arrow {
    position: fixed;
    right: 2rem;
    bottom: 4rem;
    width: 5rem;
    height: 5rem;
    border: 0.1rem solid var(--wh);
    background: var(--act);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
    border-radius: 0.8rem;
}

.up_arrow path {
    stroke: var(--milk);
}

.up_arrow:hover {
    opacity: 1;
}

.up_arrow svg {
    width: 2rem;
}

footer {
    background: var(--bl);
    color: var(--wh););
    padding: 6rem 0 0rem;
}

.footer_logo {
    display: block;
    margin-bottom: 0.5rem;
}

.footer_row {
    display: flex;
    margin: 0 -1.5rem;
}

.footer_col {
    flex: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

.footer_logo img {
    width: 10rem;
    /* filter: grayscale(1) brightness(0) invert(1); */
}

.footer_desc {
    margin-top: 3rem;
    color: var(--gray);
}

footer a {
    color: var(--gray);
    text-decoration: underline;
}

footer a:hover {
    color: var(--l-act);
}

.footer_title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

a.footer_link {
    display: block;
    margin-top: 1rem;
}

.social_list {
    display: flex;
    align-items: center;
    margin: 1rem -1rem 0;
    flex-wrap: wrap;
}

.social_list a {
    display: block;
    margin: 1rem;
    background: var(--wh);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: relative;
}

.social_list a svg {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social_list a svg path {
    fill: var(--bl);
    transition: 0.3s;
}

.social_list a:hover svg path {
    fill: var(--l-act);
}

ul.footer_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_desc_links {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.copywrite {
    display: flex;
    justify-content: space-between;
    border-top: 0.1rem solid var(--gray);
    padding: 2rem 0 2rem;
    font-size: 1.4rem;
    color: var(--gray);
    margin-top: 2rem;
}

footer .copywrite a {
    text-decoration: none;
    color: var(--gray);
}

footer .copywrite a:hover {
    color: var(--wh);
}
/*** END FOOETR ***/

/*** CF 7 ***/
body .pum-theme-10 .pum-content + .pum-close, body .pum-theme-lightbox .pum-content + .pum-close {
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: var(--act);
    font-size: 3rem;
}

.f_wrap {
    width: calc(50% - 3rem);
    position: relative;
    margin: 0 1.5rem 3rem;
}

.f_wrap label {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 1rem;
    left: 1.5rem;
    transition: 0.3s;
}
label.onfocus {
    font-size: 10px;
    top: 0px;
}
.f_wrap img {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    transition: 0.3s;
    pointer-events: none;
}
input[type="submit"]:hover {
    border-color: var(--black);
    color: var(--black);
}

.f_wrap input[type="submit"]:hover + img {
    filter: contrast(0) brightness(0);
    right: 70px;
}
.f_wrap input[type="submit"] {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    background: transparent;
}

span.wpcf7-list-item {
    margin: 0;
}

input[type="checkbox"] {
    display: none;
}

span.wpcf7-list-item p {
    margin: 0;
}

span.wpcf7-list-item label {
    display: flex;
    position: relative;
}

.f_wrap_100 {
    width: 100%;
    margin: 0 1.5rem 3rem;
}

form.wpcf7-form  p {
    margin-bottom: 2rem;
    display: flex;
    /* flex-direction: column; */
    position: relative;
}

div.wpcf7 .ajax-loader {
    position: absolute;
    width: 40px;
    top: 50%;
    left: 100%;
    height: 40px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

select.wpcf7-form-control.wpcf7-not-valid, 
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid, 
textarea.wpcf7-form-control.wpcf7-validates-as-required.wpcf7-not-valid {
    border: 1px solid #f00;
}

span.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
}

form.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
}

.f_wrap p {
    margin: 0;
}

body .pum-theme-lightbox .pum-container {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem 2rem 0;
    margin: 0;
    background: var(--wh);
}

body .pum-theme-lightbox .pum-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: inherit;
    line-height: 110%;
}

.pum-content [type="password"], 
.pum-content [type="text"], 
.pum-content [type="tel"], 
.pum-content [type="email"], 
.pum-content [type="number"], 
.pum-content textarea, 
.pum-content select {
    background: var(--milk);
    border: 0.1rem solid;
    height: 4rem;
}

.f_wrap textarea {
    height: 6rem;
    padding-top: 2rem;
}

form.wpcf7-form  p {
    /* margin-bottom: 2rem; */
    display: flex;
    /* flex-direction: column; */
    position: relative;
    width: 100%;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.pum-content .f_wrap, .pum-content .f_wrap_100 {
    width: 100%;
    margin-bottom: 1rem;
}

span.wpcf7-list-item-label p {
    display: block;
    flex: 1;
    margin: 0;
}

span.wpcf7-list-item-label {
    flex: 1;
}

.pum-content .wpcf7 .wpcf7-submit {
    width: 100%;
}

span.wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/*** END CF 7 ***/

/*** MEMBER ***/
.member_foto_wrap {
    width: calc(25% - 3rem);
    margin: 0 1.5rem;
}

.member_text_wrap {
    margin: 0 1.5rem;
    flex: 1;
}

.member_foto_wrap img {
    width: 100%;
}

/*** END MEMBER ***/

/*** TEAM ***/
a.any_member_card {
    color: var(--bl);
    text-align: center;
    background: var(--milk);
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
}

.any_member_card img {
    width: 100%;
    height: 27rem;
    object-fit: cover;
}

.member_card_title {
    margin: 1rem 0;
    font-size: 2.4rem;
    font-family: 'MTS';
}

.member_card_rank {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

a.any_member_card:hover {
    background: var(--gray);
    color: var(--wh);
}

/*** END TEAM ***/

/*** TABLE RATING ***/
.filter-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0;
    align-items: center;
}

.filter-wrap {
    width: calc(25% - 1rem);
    margin-right: 2rem;
    background: var(--milk);
    padding: 1rem;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.rate-tax-box svg {
    margin-left: auto;
    transition: 0.3s;
    transform: rotate(90deg);
}
.filter-wrap:hover .rate-tax-box svg {
    transform: rotate(-90deg);
}
.rate-tax-box {
    display: flex;
    align-items: center;
}

.rate-tax-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 0 0.2rem 0.2rem;
    z-index: 2;
    transform-origin: 50% 0;
    transition: 0.3s;
    transform: scaleY(0);
}

.filter-wrap.open {
    /* background: var(--bl); */
    /* color: var(--wh); */
}

.rate-tax-list-outer {
    background: var(--wh);
    color: var(--bl);
    max-height: 30rem;
    overflow: auto;
    padding: 1rem 0;
}

.rate-tax-list-inner {
    display: flex;
    flex-direction: column;
}

.rate-tax-list-inner label {
    padding: 5px 10px;
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    color: var(--d-grey);
    font-weight: 400;
    position: relative;
}

.rate-tax-list-inner label:after {
    left: 1.4rem;
    top: 0.9rem;
}

.rate-tax-list-inner label input {
    margin-right: 10px;
    margin-bottom: 2px;
}

.rate-tax-list-inner label:hover {
    background: var(--act);
}

.filter-wrap.open .rate-tax-list {
    transform: scaleY(1);
    background: var(--milk);
}
.rate-tax-list-inner label.sub {
    margin-left: 10px;
}
.counter-wrap span {
    margin: 0 5px;
}
input.rate-search {
    border: none;
    border-bottom: 0.2rem solid var(--milk);
    height: 4rem;
}

.rate-tax-list svg {
    width: 1.4rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    pointer-events: none;
}

.rate-tax-box svg path {
    fill: var(--bl);
}

.counter-wrap {
    margin-left: auto;
}

.counter-wrap span {
    font-weight: 500;
}

.table-outer {
    margin: 2rem 0;
}

.table-body {
    position: relative;
}

.raiting-row {
    display: flex;
    border-bottom: 0.1rem solid var(--gray);
}

.table-head {
    display: flex;
    background: var(--gray);
    color: var(--wh);
}

.t-col {
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.t-col.name {
    width: 20%;
}

.t-col.rate {
    width: 10%;
}

.t-col.prognoz {
    width: 14%;
}

.t-col.otrasl {
    width: 15%;
}

.t-col.city {
    width: 13%;
}

.t-col.date {
    width: 10%;
}

.t-col.press {
    flex: 1;
}

.table-footer {
    display: flex;
    padding: 1rem 0rem;
	border-bottom: 0.1rem solid var(--gray)
}

.rate-page {
    margin: 0 0.5rem;
    transition: 0.3s;
    color: var(--gray);
    cursor: pointer;
    font-weight: 500;
    padding: 0 0.5rem;
}

.rate-page:hover {
    color: var(--act);
}

.rate-page.active {
    color: var(--bl);
}

.table-head .t-col {
    cursor: pointer;
    transition: 0.3s;
}

.table-head .t-col:hover {
    background: var(--act);
    color: var(--bl);
}

img.d-none.DESC, img.d-none.ASC {
    display: block !important;
}

.t-col.order img {
    width: 1.3rem;
    margin-left: 0.5rem;
	transition: 0.3s;
}

.t-col.order:hover img {
    filter: brightness(0);
}

sup {
    font-size: 0.7em;
    position: relative;
    top: -0.5em;
}

img.d-none.ASC {
    transform: rotate(180deg);
}

a.to_page {
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 0.1rem solid var(--bl);
}

a.to_page img {
    position: absolute;
    width: 70%;
    height: auto;
    transform: rotate(45deg);
    top: 0;
    right: 0.2rem;
    filter: brightness(0);
}

a.to_page:hover {
    border-color: var(--act);
}

.show-filter-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.show-filter {
    border: 0.1rem solid var(--gray);
    padding: 0.5rem 1rem;
    margin: 0 1rem 0 0;
    position: relative;
    padding-right: 2rem;
    transition: 0.3s;
    cursor: pointer;
}

.show-filter span {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.1rem;
    background: var(--gray);
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.show-filter span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

.show-filter:hover {
    color: var(--act);
    text-decoration: line-through;
}

.sns {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 130%;
}

section.after_table {
    padding: 0 0 3rem;
}

section.rating_table {
    padding-bottom: 0;
}

section.table-scale .table-head, section.table-future .table-head {pointer-events: none;}

.t-col.ts-name {
    width: 20%;
}

.t-col.ts-desc {
    flex: 1;
}

.t-col.tf-icon {
    width: 10%;
}

.t-col.tf-icon img {
    width: 20%;
}

.t-col.tf-name {
    width: 15%;
}

.t-col.tf-desc {
    flex: 1;
}



/*** END TABLE RATING ***/

/*** PDF SECTION ***/
.pdf_pro {
    height: 40rem;
}

.pdf_download {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/*** END PDF SECTION ***/


/*** LOADER ***/
.table-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.loader {
	width: 5rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(farthest-side,var(--act) 94%,#0000) top/8px 8px no-repeat,
		conic-gradient(#0000 30%,var(--act));
	-webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
	animation: l13 1s infinite linear;
}
@keyframes l13{
	100%{transform: rotate(1turn)}
}
/*** END LOADER ***/

/** DOWNLOAD DOCS ***/
.docs_section_wrap {
    display: flex;
    flex-direction: column;
}

a.download_doc {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
    background: var(--milk);
    color: var(--bl);
    margin-bottom: 2rem;
}


a.download_doc:hover {
    background: var(--gray);
    color: var(--wh);
}

img.doc_icon {
    width: 3rem;
    height: auto;
    filter: grayscale(1);
    transition: 0.3s;
}

a.download_doc span {
    flex: 1;
    font-weight: 600;
    margin-right: 10rem;
}

a:hover img.doc_icon {
    filter: grayscale(0);
}
/*** END DOWNLOAD DOCS ***/

/*** ARCHIVE POSTS ***/
section.title_section {
    padding: 4rem 0 0;
}

.archive_post_card.main_post_card {
    width: calc(33.333% - 3rem);
}

/*** END ARCIVE POSTS ***/

@media(max-width: 1220px){
	html{
	    font-size: 0.7vw;
	}
}

@media(max-width: 700px){
	html{
	    font-size: 2.4vw;
	}
	
	.btn, .btn_light {
		padding: 1rem;
	}
	
	.ul_main_menu {
	    display: none;
	}
	
	a.head_btn {
	    margin-left: auto;
	    padding: 0rem 1rem;
	}
	
	a.head_btn:after {
	    height: calc(100% + 0.3rem);
	    top: -0.2rem;
	}
	
	.banner_content {
	    width: 100%;
	    padding: 0rem 3rem;
	}
	
	.banner_text {
	    font-size: 4rem;
	}

	.banner_desc {
	    font-size: 2rem;
	}
	
	main {
	    min-height: unset;
	}
	
	.footer_col {
	    padding: 0;
	    flex: 100%;
	    margin-bottom: 4rem;
	}
	
	.footer_row {
	    flex-wrap: wrap;
	    margin: 0;
	}
	
	.footer_logo_links {
	    margin-top: 2rem;
	}
	
	.footer_title {
	    font-size: 3rem;
	}
	
	.footer_logo img {
	    width: 15rem;
	}
	
	body {
	    font-size: 2rem;
	    line-height: 130%;
	}

	body.menu_open {
	    overflow: hidden;
	}
	
	.social_list a svg {
	}

	.social_list a {
	    margin: 2rem;
	    width: 5rem;
	    height: 5rem;
	}
	
	.form_section_row > img {
	    margin: 0 auto 4rem;
	}
	
	.form_section_container {
	    margin: 0;
	    width: 100%;
	    flex: 100%;
	}
	
	.form_section_wrap {
	    width: 100%;
	}
	
	.form_section_row .f_wrap {
	    margin: 1rem 0;
	    width: 100%;
	    font-size: 2rem;
	}
	
	.form_section_wrap [type="password"],
	.form_section_wrap [type="text"], 
	.form_section_wrap [type="tel"],
	.form_section_wrap [type="email"], 
	.form_section_wrap [type="number"], 
	.form_section_wrap textarea, 
	.form_section_wrap select {
	    height: 5rem;
	}
	
	.social_list {
	    width: 100%;
	}
	
	.footer_col:last-child {
	    margin-bottom: 4rem;
	}

	.desc_hide {
	    display: block;
	}
	
	.burger {
	    border: 0.1rem solid var(--act);
	    border-radius: 1rem;
	    width: 4rem;
	    height: 4rem;
	    position: relative;
	    margin-left: 2rem;
	    align-self: center;
	}
	
	.burger span {
	    position: absolute;
	    display: block;
	    width: 70%;
	    height: 0.2rem;
	    background: var(--wh);
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    transition: 0.3s;
	}
	
	.burger span:first-child {
	    top: 23%;
	}
	
	.burger span:last-child {
	    bottom: 18%;
	    top: auto;
	}
	
	.menu_open .burger span {
	    opacity: 0;
	}
	
	.menu_open .burger span:nth-child(2) {
	    opacity: 1;
	    transform: translate(-50%, -50%) rotate(45deg);
	}
	
	.menu_open .burger span:nth-child(3) {
	    opacity: 1;
	    transform: translate(-50%, -50%) rotate(-45deg);
	}
	
	.header_mob_menu {
	    position: relative;
	    width: 100%;
	    height: calc(100vh - 6rem);
	    bottom: 0;
	    border-top: 0.2rem solid var(--gray);
	    padding-top: 4rem;
	    display: none;
	    overflow: auto;
	    background: var(--wh);
	}
	
	header {
	    width: 100%;
	    overflow: visible;
	    top: -5.2rem;
	}
	
	.ul_mob_menu {
	    padding: 0;
	    list-style: none;
	    font-size: 3rem;
	    margin: 0;
	}
	
	.ul_mob_menu li a {
	    color: var(--bl);
	    font-weight: 500;
	    font-size: 2rem;
	}
	
	.ul_mob_menu li {
	    margin-bottom: 2rem;
	    padding-bottom: 0rem;
	    text-align: center;
	    position: relative;
	}

	.modal-menu-arrow {
	    position: absolute;
	    right: 0;
	    top: 0rem;
	    width: 3rem;
	    height: 3rem;
	    border: 0.1rem solid var(--gray);
	    border-radius: 0.5rem;
	    background: url(/wp-content/themes/docode_theme/icons/angle.svg);
	    background-repeat: no-repeat;
	    background-position: center;
	    filter: brightness(0);
	    transform: rotate(90deg);
	}

	.ul_mob_menu li.open .modal-menu-arrow {
	    transform: rotate(-90deg);
	}

	.header_mob_menu li .sub-menu {
	    padding: 0;
	    list-style: none;
	    display: none;
	    width: 100%;
	}

	.header_mob_menu li.open .sub-menu {
	    display: block;
	}
	
	.ul_mob_menu li .sub-menu li {
	    margin-top: 1rem;
	    margin-bottom: 0;
	    border-bottom: 0.1rem solid;
	    padding-bottom: 1rem;
	    line-height: 0;
	}
	
	.ul_mob_menu li .sub-menu li a {
	    font-size: 1.6rem;
	    line-height: 110%;
	}
	
	.menu_open .header_mob_menu {
	    display: block;
	}
	
	.wp_editor_section .wp_editor {
	    line-height: 130%;
	    padding: 0;
	    font-size: 2rem;
	}

	.docode-breadcrumb {
	    font-size: 1.6rem;
	}

	.contact_col {
	    width: 100%;
	    margin: 0 1.5rem 3rem;
	    flex: 100%;
	}

	.contact_social a {
	    width: 4rem;
	    height: 4rem;
	    margin: 0 2rem 2rem;
	}

	.mob_hide {
	    display: none;
	}
	
	.header_search {
	    margin-left: auto;
	}
	
	.header_search_form form {
	    display: flex;
	    align-items: center;
	}
	
	.btn {
	    width: 100%;
	    text-align: center;
	}
	
	.carousel_title {flex-direction: column;}
	
	.carousel_desc {
	    width: 100%;
	    border-left: none;
	    border-top: 0.4rem solid var(--act);
	    padding: 4rem 0 0;
	    margin: 4rem 0 0;
	}
	
	.result_content {
	    padding: 0;
	    width: 100%;
	}
	
	.result_btn {
	    position: static;
	}
	
	.result_img {
	    margin: 1.5rem;
	}
	
	.why_card {
	    max-width: 100%;
	    flex: 100%;
	    position: relative;
	    /* padding-left: 7rem; */
	}
	
	.txt_btn_text {
	    padding: 0;
	}
	
	.archive_post_card {
	    width: 100%;
	}
	
	.any_member_card img {
	    height: 35rem;
	}
	
	h2, .h2 {
	    line-height: 110%;
	    font-size: 3.4rem;
	}

	.wp_editor h2, .wp_editor h3 {
	    line-height: 110%;
	}
	
	.f_wrap_100 {
	    margin: 1rem 0;
	}
	
	span.wpcf7-list-item label {
	    flex-wrap: wrap;
	    font-size: 1.4rem;
	    line-height: 110%;
	}
	
	form.wpcf7-form p {
		flex-direction: column;
	}

	.pack_card {
	    width: 100%;
	    padding-bottom: 0;
	}
	
	h1, .h1{
		font-size: 4rem;
	}

	.contacts_map {
	    margin-top: 3rem;
	}

	.digits_block {
	    flex: 100%;
	    margin-bottom: 6rem;
	    text-align: center;
	}
	
	.digits_block:last-child {
	    margin-bottom: 3rem;
	}
	
	.img_txt_icon {
	    margin: 0 auto 3rem;
	}
	
	.img_txt_editor {
	    flex: 100%;
	}
	
	.cit_text:before, .cit_text:after {
	    font-size: 4rem;
	}
	
	.cit_text {
	    font-size: 2rem;
	    padding: 0 3rem;
	}

	.filter-wrap {
	    flex: 60%;
	    margin: 0 0rem 1.5rem;
	    font-size: 1.6rem;
	    line-height: 130%;
	}
	
	.counter-wrap {
	    margin: 0;
	    flex: 100%;
	    text-align: center;
	    font-size: 1.6rem;
	}
	
	.table-outer {
	    width: 100%;
	    overflow: auto;
	}
	
	.table-inner {
	    width: 130rem;
	    font-size: 1.6rem;
	}

	.result_img {
	    position: relative;
	    width: 100%;
	    top: 0;
	}

	section.result {
	    padding: 3rem 0;
	}
	
	.result_card_left_col {
	    width: 100%;
	    margin: 0 1.5rem;
	}
	
	.decs_hide, .desc_hide {
	    display: block;
	}
	
	section {
	    padding: 3rem 0;
	}
	
	.logo_carousel_desc {
	    width: 100%;
	}

	section.card_digits .why_card {
    padding-left: 8rem;
}
	
	.why_card_digit {
	    position: absolute;
	    left: 1rem;
	}
	
	.main_post_card {
	    width: 100%;
	}
	
	.main_posts_col {
	    width: 100%;
	}
	
	.any_post_card_main .post_card_main_img {
	    width: 15rem;
	}
	
	.main_post_card .any_post_card_main .post_card_main_img {
	    width: 15rem;
	    height: 15rem;
	}
	
	.main_post_card .any_post_card_main {
	    flex-direction: row;
	}
	
	.main_post_card .post_card_main_title {
	    font-weight: 600;
	    margin-bottom: 1rem;
	    font-size: 2rem;
	}
	
	.faq_card {
	    padding: 2rem;
	}
	
	.faq_question {
	    padding-right: 4rem;
	}
	
	.faq_answer {
	    padding-right: 0;
	    padding-top: 1rem;
	}

	.archive_post_card.main_post_card {
		width: 100%;
		margin-bottom: 4rem;
	}

	.list_banner_content {
	    width: 100%;
	}

	img.why_right_img {
	    float: none;
	    width: 100%;
	    margin: 0 0 4rem;
	    max-height: 25rem;
	    object-fit: cover;
	}

	.cards_img_card {
	    width: 100%;
	}
	
	section.cards_img {
	    padding: 3rem 0 0;
	}
}

@media(min-width: 1500px){
	html{
		font-size: 12px
	}
}

@keyframes pulse {
  0% {
    transform: scale(1); 
  }
  100% {
    transform: scale(1.1); 
  }
}






