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

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

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

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



:root {
	--bl: #000;
	--wh: #fff;
	--gray: #757575;
	--act: #8637FF;
	--milk: #EFEFEF;
	--shadow: 0 0 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
}

:focus {
	outline: none;
}

::placeholder{
	color: var(--bl);
}

liss:focus {
	
}

html{
	font-size: 0.8vw;
}

body {
	font-family: 'Montserrat';
	font-size: 1.6rem;
}
button, input, select, textarea {
	
}

a {
	transition: .3s;
	text-decoration: none;
	color: var(--act);
}
a:hover {
	text-decoration: none;
}

[type="password"],[type="text"], [type="tel"], [type="email"], [type="number"], textarea, select {
	border: 0.1rem solid var(--gray);
	height: 4rem;
	margin: 0;
	width: 100%;
}

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 {
    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;
	color: var(--act);
	margin-bottom: 2rem;
	position: relative;
	font-weight: 600;
	line-height: 110%;
}

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: 118rem;
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

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

main {
    min-height: 75vh;
}

section {
    padding: 4rem 0;
}

section.space {
    padding: 2rem;
}


/*** HEADER ***/
.head_row {
    display: flex;
    width: 100%;
}

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

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

.header_logo img {
    width: 17rem;
    display: block;
    max-width: 17rem;
}

.ul_main_menu {
    padding: 0;
    list-style: none;
    display: flex;
    flex: 1;
    justify-content: space-around;
    text-transform: uppercase;
    align-self: center;
    margin: 0 3rem;
}

a.head_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--wh);
    background: var(--act);
    nter;
    position: relative;
    padding: 0 3rem;
    border: 0.1rem solid var(--act);
    border-right: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

header {
    overflow: hidden;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    background: var(--wh);
    z-index: 100;
    font-size: 1.4rem;
}

.desc_hide {
    display: none;
}

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

a.head_btn:hover:after {
    /* background: var(--wh); */
}

.ul_main_menu a {
    color: var(--bl);
    position: relative;
}

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

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


/*** END HEADER ***/

/*** BANNER ***/
section.banner {
    position: relative;
    padding: 4rem 0 10rem;
    /* min-height: 75vh; */
}

img.banner_fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.banner_content {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
    color: var(--bl);
    position: relative;
    border-radius: 2rem;
    padding: 4rem;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
}

.banner_text {
    font-size: 6rem;
    font-weight: 600;
    line-height: 110%;
    position: absolute;
    transition: 0.7s;
    top: 0;
    left: 0;
    opacity: 0;
}

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

a.banner_btn {
    background: var(--act);
    color: var(--wh);
    border-radius: 5rem;
    padding: 1rem 3rem;
    font-size: 2.6rem;
    font-weight: 600;
    display: block;
    width: max-content;
    border: 0.1rem solid var(--act);
}

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

.banner_text_wrap {
    position: relative;
    flex: 1;
    padding-top: 35rem;
}

.banner_side {
    width: 22%;
    margin-left: 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    padding-top: 2rem;
}

.banner_side_list {
    margin-top: 4rem;
}

.banner_side_text {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 0.1rem solid var(--act);
}

.banner_side_text:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.banner_text.active {
    opacity: 1;
}
/*** 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: 60%;
}

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 {
    color: var(--wh);
    margin-bottom: 4rem;
    margin-top: 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: 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 {
    display: block;
    background: var(--act);
    width: max-content;
    color: var(--wh);
    padding: 1rem 4rem;
    border-radius: 5rem;
    text-transform: uppercase;
    font-weight: 600;
    border: 0.1rem solid var(--act);
    letter-spacing: 0.1rem;
    transition: 0.3s;
    font-size: 2rem;
}

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

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

/*** END PACK ***/

/*** WHY ***/
section.why {
    position: relative;
    padding: 6rem 0;
}

.why_card {
    position: relative;
    background: var(--wh);
    border-radius: 2rem;
    padding: 2rem;
    width: calc(25% - 3rem);
    margin: 3rem 1.5rem 0rem;
}

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

.why_card_title {
    margin-bottom: 2rem;
    font-weight: 600;
}

/*** END WHY ***/

/*** RESULT ***/
.result_content {
    margin: 0 1.5rem;
    width: calc(50% - 3rem);
    padding-right: 10rem;
    padding-bottom: 10rem;
}

.result_img {
    flex: 1;
    position: relative;
}

.result_img img {
    height: 100%;
    width: 70%;
    position: absolute;
    right: 0;
    object-fit: cover;
    object-position: 0 30%;
}

.result_card {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    position: relative;
}

.result_card:before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    background: var(--bl);
    left: 0;
    border-radius: 50%;
    top: 0.7rem;
}

.result_card_title {
    /* font-size: 1.6rem; */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result_btn {
    position: absolute;
    bottom: 0;
    left: 7rem;
    z-index: 1;
}
/*** END RESULT ***/

/*** SOME POSTS ***/
section.posts {
    background: var(--milk);
    padding: 6rem 0 0rem;
}

.more_posts_space {
    padding: 2rem;
}

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

a.any_post_card {
    position: relative;
    width: 100%;
    height: 27rem;
    border-radius: 2rem;
    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: 2rem;
    border-bottom-left-radius: 2rem;
    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_darker {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.45);
}

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

a.any_post_card:hover .post_card_darker {
    background: #8637FFbb;
}

.more_posts_row {
    display: flex;
    background: var(--act);
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.more_posts_btn {
    position: relative;
    background: var(--milk);
}

.more_posts_btn:before {
    content: '';
    background: var(--milk);
    position: absolute;
    height: 100%;
    width: 50vw;
    left: 0;
    transform: translateX(-100%);
    border-bottom-right-radius: 2rem;
}

.more_posts_btn:after {
    content: '';
    background: var(--milk);
    position: absolute;
    height: 100%;
    width: 50vw;
    right: 0;
    transform: translateX(100%);
    border-bottom-left-radius: 2rem;
    top: 0;
}

a.more_posts_link {
    color: var(--wh);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    width: 20rem;
    display: block;
    text-align: center;
    padding: 2rem 2rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background: var(--act);
}

a.more_posts_link:hover {
    color: lightgray;
}
/*** END SOME POSTS ***/

/*** CAROUSEL ***/
body .owl-carousel .owl-item {
    padding: 1rem;
}

.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;
}

body .owl-carousel .owl-nav button.owl-next, body .owl-carousel .owl-nav button.owl-prev {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--milk);
    transition: 0.3s;
    border-radius: 50%;
    position: relative;
    pointer-events: all;
}

body .owl-carousel .owl-nav button.owl-next:hover, body .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--act);
}

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

body .owl-carousel .owl-nav button.owl-next:hover .carousel_arrow, body .owl-carousel .owl-nav button.owl-prev:hover .carousel_arrow {
    background: var(--wh);
}

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

body .owl-theme .owl-dots .owl-dot span {
    width: 2rem;
    height: 0.8rem;
    border-radius: 0;
    margin: 0.5rem;
    transition: 0.3s;
}

body .owl-theme .owl-dots {
    margin-top: 1.3rem;
}

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

section.carousel {
    padding: 4rem 0 5rem;
}

.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 ***/

/*** CIT ***/
section.cit {
    background: var(--act);
    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: 7rem 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 {
    flex: 1;
    box-shadow: var(--shadow);
    background: #fffa;
    margin-left: 10rem;
    position: relative;
    border-radius: 2rem;
    padding: 3rem 3rem 1rem;
}

.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: 2rem;
    height: 3rem;
}

.form_section_wrap .f_wrap 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;
}

.form_section_row .f_wrap {
    width: 100%;
    margin: 0 0 2rem;
}

.form_section_wrap {
	width: 50%;
}

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

.form_section_wrap .f_wrap input[type="submit"] {
    border-radius: 5rem;
    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;
    align-items: flex-start;
}

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

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

.form_section_container {
    flex: 1;
    box-shadow: var(--shadow);
    background: #fffd;
    margin-left: 10rem;
}

.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(--act);
    font-weight: 600;
    text-transform: uppercase;
}

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

.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: 2.6rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 0 10rem;
}

section.txt_btn {
    background: var(--act);
    color: var(--wh);
    padding: 7rem 0;
}

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

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

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

/*** 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: 1rem;
    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;
}

.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(--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 h2, .wp_editor h3 {
    line-height: 130%;
    margin: 0 0 2rem;
}

.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: 1rem;
    width: 20rem;
    height: 20rem;
}

.img_txt_editor {
    flex: 1;
}

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

/*** END IMG TXT ***/

/*** GOALS ***/
.goals_block {
    width: calc(50% - 3rem);
    margin: 0 1.5rem 3rem;
}

.goals_list_wrap {
    margin-top: 2rem;
}

.goals_list_title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

section.goals {
    padding: 4rem 0 1rem;
}

/*** END GOALS ***/

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

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

.digits_block_num {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
/*** END DIGITS ***/

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

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;
    text-align: 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 ***/




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

.up_arrow:hover {
    opacity: 0.7;
}

.up_arrow svg {
    width: 2.7rem;
}

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

.footer_logo {
    display: block;
}

.footer_row {
    display: flex;
}

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

.footer_logo img {
    width: 18rem;
    filter: grayscale(1) brightness(0) invert(1);
    margin-top: 0.4rem;
}

.footer_logo_links {
    margin-top: 3rem;
}

footer a {
    color: var(--wh);
}

footer a:hover {
    opacity: 0.7;
}

.footer_title {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

a.footer_link {
    display: block;
    /* text-align: center; */
    margin-top: 1rem;
}

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

.social_list a {
    display: block;
    margin: 1rem;
}

.social_list a svg {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}
/*** 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% - 2rem);
    position: relative;
    margin: 0 1rem 2rem;
}

.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;
}

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-image: url(/wp-content/uploads/2020/07/Spinner-1s-200px.gif);
    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;
}

/*** END CF 7 ***/







@media(max-width: 700px){
	html{
	    font-size: 1.6vw;
	}
	
	.ul_main_menu {
	    display: none;
	}
	
	a.head_btn {
	    margin-left: auto;
	    order: 1;
	    margin-right: 2rem;
	    font-size: 1.6rem;
	}
	
	a.head_btn:after {
	    height: calc(100% + 0.3rem);
	    top: -0.2rem;
	}
	
	.banner_content {
	    width: 100%;
	}
	
	.banner_text {
	    font-size: 5rem;
	}
	
	main {
	    min-height: unset;
	    padding-top: 6rem;
	}
	
	.footer_col {
	    padding: 0;
	    flex: 100%;
	    margin-bottom: 8rem;
	}
	
	.footer_row {
	    flex-wrap: wrap;
	}
	
	.footer_logo_links {
	    margin-top: 2rem;
	}
	
	.footer_title {
	    font-size: 3rem;
	}
	
	.footer_logo img {
	    width: 25rem;
	}
	
	body {
	    font-size: 2.4rem;
	    line-height: 130%;
	}
	
	.social_list a svg {
	    width: 6rem;
	    height: 6rem;
	}

	.social_list a {
	    margin: 2rem;
	}
	
	footer {
	    font-size: 2.6rem;
	}

	.banner_side {
	    font-size: 2.4rem;
	    display: flex;
	    width: 100%;
	    margin: 2rem 0 0;
	    align-items: center;
	}
	
	.banner_side_list {
	    margin-left: 4rem;
	    margin-top: 0;
	}
	
	.pack_card {
	    flex: 100%;
	}
	
	.why_card {
	    width: calc(100% - 3rem);
	}
	
	.result_content {
	    width: 100%;
	    padding-right: 0;
	    padding-bottom: 2rem;
	}
	
	.result_img {
	    height: 5rem;
	}
	
	.result_img img {
	    width: 100%;
	    display: none;
	}
	
	.result_btn {
	    left: 50%;
	    transform: translate(-50%, -50%);
	    top: 4rem;
	    height: max-content;
	}
	
	.archive_post_card {
	    width: calc(100% - 3rem);
	}
	
	a.more_posts_link {
	    width: 50rem;
	    font-size: 2.4rem;
	}
	
	.carousel_desc {
	    width: 100%;
	    padding-left: 0;
	    padding-top: 2rem;
	    margin-top: 2rem;
	    border-left: none;
	    border-top: 0.4rem solid var(--act);
	}
	
	.carousel_title {
	    margin-bottom: 4rem;
	}
	
	.carousel_section {
	    width: 100%;
	}
	
	.cit_text:before, .cit_text:after {
	    font-size: 10rem;
	}
	
	.cit_text {
	    padding: 0 5rem;
	}
	
	.cit_author {
	    font-size: 3rem;
	}
	
	.cit_social a svg {
	    width: 5rem;
	    height: 5rem;
	}
	
	.cit_social a svg {
	    margin: 0 2rem;
	}
	
	.cit_social {
	    width: 100%;
	}
	
	.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-bottom: 3rem;
	    margin-top: 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: 0;
	}

	.desc_hide {
	    display: block;
	}
	
	.burger {
	    border: 0.1rem solid var(--act);
	    border-radius: 1rem;
	    width: 5rem;
	    height: 5rem;
	    position: relative;
	    margin-left: 0;
	    align-self: center;
	    order: 2;
	}
	
	.burger span {
	    position: absolute;
	    display: block;
	    width: 70%;
	    height: 0.2rem;
	    background: var(--bl);
	    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;
	}
	
	header {
	    position: fixed;
	    width: 100%;
	    overflow: visible;
	}
	
	.ul_mob_menu {
	    padding: 0;
	    list-style: none;
	    font-size: 3rem;
	    margin: 0;
	}
	
	.ul_mob_menu li a {
	    color: var(--act);
	    font-weight: 500;
	}
	
	.ul_mob_menu li {
	    margin-bottom: 3rem;
	    padding-bottom: 3rem;
	    text-align: center;
	}
	
	.menu_open .header_mob_menu {
	    display: block;
	    padding-top: 10rem;
	}

	.ask_lnk_desc {
	    font-size: 2.5rem;
	    line-height: 130%;
	}
	
	.ask_lnk_text {
	    flex: 1;
	}
	
	.test_desc {
	    font-size: 2.5rem;
	    font-weight: 500;
	}
	
	.test_content {
	    width: 100%;
	}

	.img_banner_desc {
	    font-size: 2.5rem;
	}
	
	.wp_editor_section .wp_editor {
	    font-size: initial;
	    line-height: 130%;
	    padding: 0;
	}
	
	.goals_block {
	    width: 100%;
	    margin-bottom: 8rem;
	}
	
	.goals_list_title {
	    font-size: 3rem;
	}
	
	.goals_list_wrap {
	    margin-top: 4rem;
	}

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

	.contact_col {
	    width: calc(100% - 3rem);
	}

	.contact_social a {
	    width: 5rem;
	    height: 5rem;
	    margin: 0 2rem;
	    text-align: left;
	}

	a.banner_btn {
	    padding: 1.4rem 3rem;
	    text-align: center;
	    width: 100%;
	}
	
	.btn {
	    width: 100%;
	    text-align: center;
	    padding: 1.4rem;
	}
	
	.carousel_card_img {
	    width: 100%;
	    background: var(--bl);
	}
	
	.carousel_card_text {
	    position: absolute;
	    top: 50%;
	    left: 0;
	    color: var(--wh);
	    transform: translateY(-50%);
	}
	
	.carousel_card_img img {
	    opacity: 0.3;
	}
	
	[type=button], [type=reset], [type=submit], button {
	    padding: 2rem;
	    font-size: 2rem;
	}

	.banner_list_desc {
	    font-size: initial;
	}
	
	.mark_block .service_card_title {
	    font-size: initial;
	}
	
	.service_card_title {
	    font-size: initial;
	}

	.txt_btn_wrap a {
	    font-size: initial;
	    text-align: center;
	    width: 100%;
	    padding: 1.4rem;
	}
	
	.ask_lnk_btn_wrap a {
	    font-size: 2rem;
	}
	
	.test_btn a {
	    width: 100%;
	    padding: 1.4rem;
	    font-size: initial;
	}

	.banner_list_wrap_title {
	    font-size: 3rem;
	}
}


/*** FORM MURAVIEW ***/
.popup-container {
    z-index: 1992;
    display: none;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popup-block {
    z-index: 1992;
    position: absolute;
    top: 15%;
    left: 50%;
    width: 80%;
    max-width: 1200px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 50px;
    -webkit-transform: translateY(-300px) translateX(-50%);
    -ms-transform: translateY(-300px) translateX(-50%);
    transform: translateY(-300px) translateX(-50%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.popup-block.active {
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
}
.popup-block__close {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
.popup-block__close svg path {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.popup-block__close:hover svg path {
    fill: #fc0303;
}
.popup-block__inner {
    padding: 30px;
}
.popup-block__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--act);
    margin-bottom: 30px;
    font-weight: 600
}
.popup-block__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.popup-block__form__block--left {
    width: 35%;
    margin-right: 40px;
}
.popup-block__form__block--right {
    width: calc(65% - 40px);
}
.popup-block__form__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--bl);
    margin-bottom: 1rem;
    font-weight: 600;
}
.popup-block__form__input {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    border: none;
    border: 1px solid var(--bl);
    border-radius: 1rem;
    padding: 1rem 1rem;
    height: 3.4rem;
}
.popup-block__form__input:focus {
    outline: none;
    border-color: var(--act);
}
.popup-block__form__textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    border: 1px solid var(--bl);
    border-radius: 1rem;
    padding: 1rem 2rem;
    height: 14rem;
    resize: none;
}
.popup-block__form__textarea:focus {
    outline: none;
    border-color: var(--act);
}
.popup-block__form .iti {
    width: 100%;
}
.popup-block__form .intl-tel-input {
    width: 100%;
}
.popup-block__budget {
    margin-bottom: 30px;
}
.popup-block__budget .popup-block__budget__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.popup-block__budget .popup-block__budget__select label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}
.popup-block__budget .popup-block__budget__select label input[type="radio"]:checked,
.popup-block__budget .popup-block__budget__select label input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.popup-block__budget .popup-block__budget__select label input[type="radio"]:checked+.select__text {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--act)), to(var(--act))), var(--act);
    background: -webkit-linear-gradient(top, var(--act) 0%, var(--act) 100%), var(--act);
    background: -o-linear-gradient(top, var(--act) 0%, var(--act) 100%), var(--act);
    background: linear-gradient(180deg, var(--act) 0%, var(--act) 100%), var(--act);
    color: #fff;
}

.pum-content form.wpcf7-form p {
    margin-bottom: 0rem;
}

span.wpcf7-form-control-wrap {
    margin-bottom: 2rem;
}

.popup-block__form__desc a:hover {
    color: var(--bl);
}

.popup-block__budget .popup-block__budget__select label .select__text {
    z-index: 1;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #323232;
    background: #F3F5F6;
    border: 1px solid rgba(34, 34, 34, 0.1);
    border-radius: 10px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 9.5px 30.89px;
    font-weight: 600
}
.popup-block__budget .popup-block__budget__select label:last-child {
    margin-right: 0;
}
.popup-block__budget .rangeslider__handle {
    width: auto;
    min-width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #7c91d2;
    border-radius: 10px;
}
.popup-block__budget .rangeslider__handle:after {
    content: none;
}
.popup-block__budget .rangeslider__fill {
    background: -webkit-gradient(linear, left top, right top, from(#abe0ed), to(#7c91d2));
    background: -webkit-linear-gradient(left, #abe0ed, #7c91d2);
    background: -o-linear-gradient(left, #abe0ed, #7c91d2);
    background: linear-gradient(to right, #abe0ed, #7c91d2);
    position: absolute;
}
.popup-block__budget .range {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}
.popup-block__budget .range .min {
    padding-top: 5px;
    padding-left: 10px;
    color: #323232;
}
.popup-block__budget .range .max {
    padding-top: 5px;
    padding-right: 10px;
    color: #323232;
}
.popup-block__form__btn {
    cursor: pointer;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: #7c91d2;
    border: 1px solid #7c91d2;
    border-radius: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 15px 40px;
    margin-left: auto;
    margin-bottom: 15px;
}
.popup-block__form__btn:focus {
    outline: none;
}
.popup-block__form__btn:hover {
    color: #323232;
    background-color: transparent;
}
.popup-block__form__desc {
    font-family: 'Montserrat';
    font-size: 1.4rem;
    text-align: right;
    margin-left: auto;
    margin-top: 2rem;
}
.popup-block__form__desc a {
    text-decoration: underline;
    color: var(--act);
}

.wpcf7-spinner {
    background: var(--act););
    position: absolute;
    bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
    .popup-block__form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .popup-block__form__block--left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .popup-block__form__block--right {
        width: 100%;
    }
    .popup-block__form__btn {
        margin-right: auto;
    }
    .popup-block__form__desc {
        text-align: center;
        margin-right: auto;
    }
}
@media only screen and (max-width: 576px) {
    .popup-block {
        width: 100%;
        top: 0;
        border-radius: 0;
        margin-bottom: 0;
    }
    .popup-block__inner {
        padding: 35px;
    }
    .popup-block__budget__select label {
        margin-bottom: 10px;
    }
    .popup-block__form__desc {
        max-width: 100%;
    }

	.popup-block__form__title p {
	    margin-bottom: 1rem !important;!i;!;
	}
	
	form.wpcf7-form p {
	    margin-bottom: 2rem;
	    font-size: initial;
	}
	
	.popup-block__form__title {
	    margin-bottom: 0;
	}
	
	.popup-block__form__block--left {
	    margin-bottom: 0rem;
	}
	
	.popup-block__form__input {
	    font-size: 3rem;
	    padding: 2rem;
	    height: auto;
	}
	
	body .pum-theme-10 .pum-title, body .pum-theme-lightbox .pum-title {
	    font-size: 4rem;
	}

	.result_card:before {
	    top: 1rem;
	    width: 0.7rem;
	    height: 0.7rem;
	}
}

.popup-overlay {
    display: none;
    z-index: 1991;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(23, 23, 23, 0.8);
}

@media only screen and (max-width: 576px) {
    .numbers__item__text {
        font-size: 46px !important;
    }
}

.publication__wrap:nth-child(2) .publication__item {
    pointer-events: none;
}

body .pum-theme-10 .pum-container, body .pum-theme-lightbox .pum-container {
    border: none;
    border-radius: 2rem;
    overflow: hidden;
    padding: 2rem 3rem;
}

body .pum-theme-10 .pum-title, body .pum-theme-lightbox .pum-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bl);
    margin-bottom: 3rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn {
    margin-left: auto;
    font-size: 1.6rem;
}

.popup-block__form__desc p {
    display: block !important;
    font-weight: 400;
    font-size: 1.2rem;
}

/*** END FORM MURAVIEW ***/
