* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a,
.information-mfo a {
    color: #f28a2a;
    text-decoration: none;
}

a:hover,
.information-mfo a:hover {
    text-decoration: underline;
}

input:focus:invalid {
  box-shadow: 0 0 5px 1px #ff7b01bf;
}

h1 {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 48px;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
html {
	overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #F9F9FF;
}

.site,
.site-page {
    display: block;
    background: url(./img/site-bg-full.png) no-repeat center 15%;
    background-size: inherit;
}

.site-page {
    background: url(./img/site-bg-full.png) no-repeat center -5%;
}

.site-nf {
	display: block;
    background: url(./img/site-bg-full.png) no-repeat center 100%;
    background-size: inherit;
    background-position-y: 5%;
}

.head {
    display: block;
}

.head-cont,
.head-cont-mini {
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
	padding: 0 40px;
    background-position: 80%;
    background-repeat: no-repeat;
    background-size: 38%;
}

/*----*/
.nav-bar-btn,
.menu {
    display: none;
}

.nav-menu {
    padding: 0;
}

.nav-menu li {
    list-style: none;
    margin: 10px 0;
}

.nav-menu .btn {
    width: 100%;
}

.nav-link {
    color: #2a69ca;
}

/*----- burger ------*/
.nav-bar-btn {
    position: absolute;
    left: 5%;
    top: 15px;
    width: 40px;
    height: 36px;
    background: none;
    border: none;
}

.nav-bar-btn:focus {
    outline: none;
}

.head-burger {
    display: flex;
    justify-content: flex-end;
    width: 34px;
    height: 2px;
    background: #ff7b01;
    margin: 2px 3px;
    position: absolute;
    top: 15px;
    transition: all ease 0.5s;
}

.head-burger::before,
.head-burger::after {
    content: "";
    display: block;
    height: 2px;
    background: #ff7b01;
    position: absolute;
    transition: all ease 0.5s;
}

.head-burger::before {
    width: 28px;
}

.head-burger::after {
    width: 24px;
}

.head-burger::before {
    top: -7px;
}

.head-burger::after {
    top: 7px;
}

.in-active {
    background: #fff;
    transition: all ease 0.5s;
}

.in-active::before {
    transform: rotate(-45deg);
    top: 0;
    transition: all ease 0.5s;
    width: 34px;
}

.in-active::after {
    transform: rotate(45deg);
    top: 0;
    transition: all ease 0.5s;
    width: 34px;
}

/*------ all cat menu ---*/
.all-cat-menu {
  display: block;
  overflow: auto;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 61px;
  left: 0;
  background-color: #00000061;
  padding: 0px 50px 50px;
  text-align: center;
  z-index:-1;
  transition: 0.5s;
  opacity: 0;
}

.all-cat-menu__cont {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Montserrat';
  max-width: 1280px;
  height: 460px;
  background: #fff;
  margin: 0 auto;
  padding: 20px;
  border-radius: 0px 0px 6px 6px;
  overflow: hidden;
}

.main-cat-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 250px;
  list-style: none;
  position: relative;
}

.main-cat-menu li {
  display: block;
  width: 100%;
  padding: 5px;
}

.main-cat-menu__button {
/*   position: relative; */
  display: inline-block;
}

.main-cat-menu__link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: url(/wp-content/themes/zroblu/img/Vector22.svg) no-repeat right;
  color: #414342;
}

.main-cat-menu__link:hover {
  color: #f68812;
}

.main-cat-menu__dropdown,
.main-cat-menu__dropdown-services {
  display: none;
  position: absolute;
  left: 300px;
  top: 0;
  background-color: #fff;
  width: 340px;
/*   height: 380px; */
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  text-align: left;
  padding: 15px 0;
}

.main-cat-menu__dropdown {
  width: 300px;
  left: 250px;
  top: -10px;
}

.main-cat-menu__button:hover .main-cat-menu__dropdown {
  display: block;
}

.main-cat-menu__dropdown li:hover .main-cat-menu__dropdown-services {
  display: block;
}

/*---- all cat mobile menu ---*/
.mobile-cat-container .mobile-cat-container__body {
    width: 100%;
    margin: 0 auto;
    height: 0;
    line-height: 18px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
}
.mobile-cat-container .mobile-cat-container__body p {
	margin: 10px;
    text-align: left;
	font-family: 'Montserrat';
}
.mobile-cat-container label {
    cursor: pointer;
    display: block;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    margin: 0 0 5px;
	text-align: left;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
	font-size:14px;
    color: #2F2F2F;
}
.mobile-cat-container input{
    display: none;
}
.mobile-cat-container label:before {
    content: '\276F';
    float: right;
	color: #ff8a1e;
}

.mobile-cat-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.mobile-cat-container input:checked + label + .mobile-cat-container__body {
    height: auto;
    margin-top: -5px;
    color: #2F2F2F;
}

.mobile-cat-container__body a {
	color: #2F2F2F;
}

.mobile-cat-container__body a:hover {
	color: #ff8a1e;
}
/*---*/
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 12;
}

.header-wrap {
	display: block;
	max-width: 1280px;
    margin: 0 auto;
    padding: 5px 50px;
	position: relative;
}

.header-style {
    background: #fff;
    box-shadow: 0 10px 20px -12px rgb(0 0 0 / 42%), 0 3px 20px 0 rgb(0 0 0 / 12%),
        0 8px 10px -5px rgb(0 0 0 / 20%);
}

.header-bg {
    background: #F9F9FF;
}

.header a,
.header-menu,
.nav-bar-btn,
.footer-menu {
    z-index: 9;
}

.header-menu-leng {
    color: #2F2F2F;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    background: none;
}

.logo {
    display: flex;
    align-items: center;
    color: #050505;
    text-decoration: none;
    outline: none;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

.logo img {
    width: 58px;
    height: 58px;
    margin-right: 5px;
	transition: ease 0.5s;
}

.header-menu,
.header-menu-leng,
.header-menu-city,
.header-phone,
.header-button,
.header-menu-city-mobile,
.header-phone-mobile,
.header-button-mobile,
.head-mail-mobile,
.footer-button,
.footer-menu,
.footer-mail-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer-menu {
	list-style-type: none;
}

.footer-menu a:hover {
	color: #2F2F2F;
}

.header-phone {
	padding: 5px 15px;
}

.header-menu-phone-widget {
	display: none;
}

.header-menu .primary-menu-container .menu-wrapper {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.header-menu .primary-menu-container .menu-wrapper li {
    color: #2F2F2F;
    text-decoration: none;
    padding: 5px 15px;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
	list-style: none;
}

.header-menu .primary-menu-container .menu-wrapper li a, .price-box__cont-left a {
	color: #2F2F2F;
}

.header-menu .primary-menu-container .menu-wrapper li a:hover {
	color: #2F2F2F;
}

.wpglobus-current-language {
	position: relative;
	right: 0;
	text-transform: uppercase;
}

.sub-menu {
	position: absolute;
    top: 20px;
    left: 0;
}

.wpglobus_flag_uk,
.wpglobus_flag_ru {
	background: none!important;
}

.header-menu__link,
.footer-menu__link,
.footer-bottom-cont,
.footer-bottom-cont a {
    color: #2F2F2F;
    text-decoration: none;
    padding: 5px 15px;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    ;
}

.open-services {
  background-color: rgba(117, 190, 218, 0.0);
  border: rgba(117, 190, 218, 0.0);
  cursor: pointer;
}

.header-button,
.header-button-mobile,
.price-button,
.footer-button {
	display: block;
    padding: 12px 20px;
    background: #FF7B01;
    border: none;
    box-shadow: 0px 4px 6px rgba(255, 138, 1, 0.3);
    border-radius: 6px;
    color: #fff;
	text-align: center;
}

.lengv-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 14px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
    -webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
    margin: 0 3px;
}

.header-phone a,
.header-phone-mobile a,
.footer-phone a,
.footer-mail-mobile a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #383938;
}

.site-content {
      margin-top: 85px;
}

section,
.comments-area {
    width: 100%;
    text-align: center;
	margin-bottom: 135px;
}

.comments-area {
    margin-bottom: 45px;
}

.section-padding {
    padding: 10px 40px;
}

section h1 {
    font-family: 'Montserrat';
    font-size: 2rem;
    font-weight: 600;
    width: 100%;
}

.align-cont {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    text-align: left;
}

.container {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
	font-family: 'Montserrat';
	color: #383938;
}

.section-content {
	margin-bottom: 0px;
}

.entry-content ul, .entry-content ol, .services-description ul, .services-description ol {
	display: block;
    width: 100%;
    text-align: left;
    list-style-position: inside;
    margin-left: 25px;
}

.container-direction {
    flex-direction: column;
}

.container-center {
    align-items: center;
}

.cont-marg {
    margin: 0.5% 2%;
}

#first {
	min-height: 390px;
}

#first,
.main-box {
    margin-top: 8%;
}

.about-us-box,
.contacts-box {
    margin-top: 130px;
}
.about-us-cont__box {
	font-family: 'Montserrat';
	font-size: 18px;
	line-height: 33px;
	flex-direction: column
}
.about-us-cont {
	font-family: 'Montserrat';
    text-align: left;
    margin: 0 8%;
}
.align-cont li {
	list-style-type: none;
}
.activity-cont,
.not-found-cont {
    display: flex;
    flex-direction: column;
    width: 45%;
    text-align: left;
    margin-top: 60px;
}

.activity-cont__title,
.not-found__title,
.wp-block-heading {
    display: block;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 45px;
    line-height: 52px;
    color: #1A1B26;
}

.activity-cont__subtitle,
.not-found__subtitle {
    display: block;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    margin: 19px 0;
}

.activity-cont__btn {
    display: flex;
    align-items: center;
    width: 100%;
}

.activity-btn {
	width: 260px;
    font-family: 'Montserrat';
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
    padding: 24px;
	margin: 17px 0;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #FF7B01;
    color: #fff;
}

.btn,
.form-submit .submit {
    display: block;
    width: 60%;
    background-color: #ffffff;
    padding: 17px;
    color: #ff7b01 !important;
    border: 1px solid #ff7b01;
    font-family: 'Montserrat';
    font-size: 14px;
    margin: 20px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 6px;
}

.btn {
	padding: 0px;
}

.btn a,
.card-item-btn a,
.comment-box-btn a {
	display: block;
	padding: 17px;
}

.form-submit .submit {
	width: 300px;
}

.consalt-btn {
    display: none;
}

.main-container__title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-container__title {
    display: block;
    text-align: left;
}

.main-container__title,
.slider-container__title {
    color: #383938;
    font-family: 'Montserrat';
    font-size: 30px;
    margin: 1% 0;
}

.slider-container__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-wedoit,
.about-us-cont__box {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 32.9374px #ececf4;
    -webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.box-wedoit,
.box-number-one,
.box-contacts {
    display: flex;
    width: 32%;
    text-align: center;
}

.box-contacts {
    flex-direction: column;
    align-items: center;
}

.box-number-one,
.box-contacts {
    background: #FFFFFF;
    box-shadow: 0px 0px 32.9374px #ececf4;
    -webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	margin: 1% 0;
    padding: 10px;
}

.wedoit-logo,
.number-one-logo,
.contacts-logo {
    display: flex;
    align-items: center;
}

.wedoit-logo img,
.number-one-logo img {
	width: 58px;
	height: 58px;
}

.wedoit-title,
.number-one-title,
.contacts-info {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.wedoit-description,
.number-one-description,
.comment-user-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.wedoit-text,
.number-one-text,
.contacts-text {
    padding: 2%;
    width: 100%;
}

.service,
.card-item-box,
.team-item-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-item,
.comment-item,
.team-item,
.job-item,
.comment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
    box-shadow: 5px 0px 25px #ececf4;
    -webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
    margin: 1% 0;
    padding: 10px;
}

.comment-item {
	width: 31%;
}

.card-item,
.team-item,
.job-item,
.comment {
	width: 32%;
}

.elem-card-item {
	margin: 0 1%;
}

.service p,
.card-item-box p,
.team-item-box p {
    padding: 1% 2%;
}

.team-item-box {
	width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.team-item-slider {
    display: flex;
    position: relative;
    left: 0;
    transition: all ease 1s;
}

.card-item-info,
.job-item-info {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.bx-controls-direction {
    display: block;
    position: absolute;
    top: -55px;
    right: 0;
}

.owl-nav {
    position: absolute;
    top: -55px;
    right: 90px;
}

.bx-wrapper .bx-prev,
.owl-prev {
    left: 4px !important;
    background: url(./img/slider-prev.png) no-repeat !important;
    width: 35px !important;
}

.bx-wrapper .bx-next,
.owl-next {
    right: -74px !important;
    background: url(./img/slider-next.png) no-repeat !important;
    width: 35px !important;
}

.carousel-slider-nav-icon,
.owl-dots {
    display: none !important;
}

.comment-item,
.team-item,
.comment {
    margin: 1%;
}
.comment-item {
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
}

.comment {
    width: 60%;
    margin: 10px auto;
}

.comment-item-box {
	width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.comment-item-slider-line {
    display: flex;
    position: relative;
    left: 0;
    transition: all ease 1s;
}

.slider-button-top {}

.slider-button-bottom {
    display: none;
}

.comment-item-btn,
.team-item-btn {
    background: none;
    border: none;
    -webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    padding: 10px 20px;
    font-family: 'Montserrat';
    font-size: .9rem;
    color: orangered;
    cursor: pointer;
}

.comment-item-btn:hover,
.comment-item-btn:active,
.team-item-btn:hover,
.team-item-btn:active {
    color: orangered;
}

.team-item {
    margin: 1%;
}

.master-photo img {
    max-width: 260px;
    max-height: 300px;
}

.card-item-logo,
.job-item-logo,
.services-item-logo,
.popup-item-logo {
    margin: 0 auto;
}

.card-item-logo,
.services-item-logo,
.popup-item-logo,
.feedback-item-logo {
    -webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
    border: none;
    padding: 15px;
    background: #EAF0FE;
}

.card-item-logo,
.job-item-logo,
.popup-item-logo,
.feedback-item-logo {
    max-width: 90px;
}

.feedback-item-logo {
	margin: 0 auto;
}

.services-item-logo {
    max-width: 200px;
}

.services-image {
    width: 168px;
	height: 160px;
}

.card-item-title,
.card-item-price,
.job-item-title,
.team-item-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    color: #2F2F2F;
    margin: 10px 0;
}

.card-item-title a {
	color: #2F2F2F;
}

.card-item-price {
    margin: 19px 0;
}

.comment-user {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.comment-user-ava {
    padding: 5px 25px;
}

.comment-user-ava img {
    width: 80px;
	height: 78px;	
}

.comment-user-rating img {
    width: 102px;
	height: 18px;
}

.comment-user-info,
.price-cont {
    text-align: left;
}

.comment-user-name {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 18px;
    color: #2F2F2F;
}

.comment-user-cat {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    color: #FF7B01;
}

.comment-box-btn {
    display: block;
	width: 300px;
    padding: 10px 0;
    margin: 0 auto;
}

.feedback {
    display: flex;
    margin: 0 auto;
    background: radial-gradient(32.46% 99.93% at 50% 50%, #696BFF 0%, #4143E3 100%);
    -webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
    width: 100%;
	overflow: hidden;
}

.feedback-bg {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 65px;
    background: url(./img/mask-group.svg) no-repeat;
}

.feedback-right {
	width: 45%;
    color: #fff;
    margin-right: 5%;
}

.feedback-left {
	width: 45%;
    color: #fff;
    text-align: left;
    margin-left: 5%;
}

.feedback-left h3,
.lang-feedback-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 42px;
}

.feedback-left p {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 18px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10%;
}

.feedback-input {
    display: block;
    width: 100%;
}

.comment-respond form {
    margin: 1% 3%;
}

.feedback-input input,
.select-box,
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-title input {
    width: 100%;
    padding: 18px 29px;
    margin-bottom: 10px;
    border: 1px solid #FFFFFF;
    -webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
    background: none;
    color: #fff;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-title input {
    border: 1px solid #cbcbcb;
    color: #20242e;
    background: #fff;
}

.comment-form-comment textarea {
    max-width: 650px
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-title input {
    max-width: 350px;
    padding: 10px;
	margin-left: 5px;
}

.popup-title,
.feedback-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 26px;
    text-align: center;
	padding: 20px 0;
}

.feedback-title {
	padding: 0;
}
.popup-info,
.feedback-info {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.popup-input input {
    width: 100%;
    padding: 18px 29px;
    margin-bottom: 10px;
    background: #F9F9FF;
    border: 1px solid #D0DAF2;
    -webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	transition: all 1s ease 0s;
}

.popup-input input::placeholder {
    color: #645e5e;
}

.form-invalid {
	box-shadow: 0 0 5px 1px #ff7272;
}

.form-valid {
	box-shadow: 0 0 5px 1px #72ff76;
}

.popup-send-error {
	color: #ff7272;
    text-align: center;
}

.popup-btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.popup-btn-info {
    margin: 15px 0;
}

.popup-soc {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.popup-soc img {
    margin: 0 3px;
}

.popup-resalt,
.feedback-resalt {
	margin: 20px;
}

.option-box {
    background: #5658f2;
    border: 1px solid #FFFFFF;
}

::placeholder {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 15px;
}

.feedback-form textarea {
    width: 100%;
    height: auto;
    padding: 5px 10px;
}

.feedback-btn-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}

.feedback-form-btn,
.close-feedback-thx {
    width: 50%;
    padding: 5% 10%;
    background: none;
    background: #FFFFFF;
    border: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #2F2F2F;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
}

.close-feedback-thx {
	margin: 0 auto;
    padding: 10px;
}

.feedback-btn-box p {
    font-family: 'Montserrat';
    font-size: 9px;
}

.social-box {
	display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: -5px;
}


.popup-soc,
.popup-btn-info {
	display: none;
}

.social-box img,
.social-box a {
    width: 35px;
	height: 35px;
}

.footer-mail-mobile {
    display: none;
}

/* faq акордеон */
.price-box,
details {
	display: flex;
    overflow: hidden;
}
.elem-price-box {
	display: block;
}
.price-box,
.elem-price-box,
details {
    background: #FFFFFF;
    box-shadow: 0px 0px 32.9374px rgb(233 233 233 / 80%);
    -webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
    padding: 15px;
    text-align: left;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    margin: 0.5% 0;
}

summary::-webkit-details-marker {
    display: none;
}

summary::-moz-list-bullet {
    list-style-type: none;
}

summary::marker {
    display: none;
}

.price-box__cont,
summary {
    display: block;
    padding: .3em 1em .3em .9em;
    font-family: 'Montserrat';
    font-size: 18px;
	line-height: 26px;
    position: relative;
	width: 100%;
}

summary {
    cursor: pointer;
}

.price-box__cont-left,
.price-box__cont-right,
.price-box__cont{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price-box__cont-left {
font-weight: 500;
font-size: 18px;
line-height: 22px;
}

.price-box__cont-right span {
	padding: 0 15px;
}

summary:before {
    top: .4em;
    right: .3em;
    color: transparent;
    background: url("/wp-content/themes/zroblu/img/faq-arrow.svg") no-repeat 50% 50% / 1em 1em;
    width: 1em;
    height: 1em;
    content: "";
    position: absolute;
    transition: transform .5s;
}

details[open]>summary:before {
    transform: scale(1, -1);
}

summary~* {
    padding: 0 1em 10px 1.4em;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
	font-weight: 400;
}

@keyframes sweep {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

summary:focus {
    outline: 0;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), inset 0 0 2px rgba(0, 0, 0, 0.3);
}

body,
.footer h3,
.footer p {
    text-align: left;
}

.footer {
    padding: 20px 3%;
    color: #2F2F2F;
    background: #F9F9FF;
}

.container-wrap {
    flex-direction: column;
}

.footer-top-cont,
.footer-bottom-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 25px 40px;
}

.footer-top-cont {
    border-bottom: 1px solid #ccccd9;
}


.footer-top-cont__left-side,
.footer-top-cont__right-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-phone {
	margin: 0 25px;
}

.footer p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer img {
    width: 70px;
    height: 70px;
}

/* slider team */
.carousel-slider__post {
    background: #FFFFFF !important;
    box-shadow: 0px 0px 32.9374px #ececf4 !important;
	-webkit-border-radius: 16px!important;
	-moz-border-radius: 16px!important;
    border-radius: 16px !important;
    margin: 10px !important;
}

.carousel-slider__post-header {
    background: #F9F9FF;
    border: 1px solid #F9F9FF;
    border-radius: 8px 8px 0px 0px;
    margin: 10px;
}

.carousel-slider__post-title {
    font-family: 'Montserrat' !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #2F2F2F !important;
    margin: 5px !important;
    min-height: 1.75em !important;
}

.carousel-slider__post-meta {
    display: none !important;
}

.carousel-slider__post-image {
    background-size: 62% !important;
    background-repeat: no-repeat;
    background-color: #ffffff00 !important;
}

.carousel-slider__post-excerpt {
    text-align: center !important;
    margin: 0rem 1rem 1rem !important;
}

/* comments style */
.comment-form-comment label,
.comment-metadata a {
    display: none;
}

.edit-link a {
    display: block;
}

.nav-previous,
.nav-previous a,
.nav-next,
.nav-next a,
.meta-nav,
.comment-author {
    display: flex;
    align-items: center;
}

.nav-previous,
.nav-next,
.comment-author {
    justify-content: center;
}

.comment-author img {
    margin-right: 10px;
}

.meta-nav {
    margin-right: 5px;
}

/* Dropdown menu css */
.select {
    display: block;
/*     max-width: 215px; */
    width: 100%;
	text-align: left;
}

.city-select,
.mobile-city-select,
.leng-select {
	color: #ff7b01;
    padding: 5px 20px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.leng-select {
	color: #2F2F2F;
}

.city-select__list {
	display: none;
    position: absolute;
    top: 65px;
    left: 15%;
    width: 25%;
}

.leng-select__list {
	display: none;
	position: absolute;
    top: 65px;
    right: 4%;
    width: 60px;
    text-align: center;
}

.city-select__list,
.leng-select__list {
    cursor: pointer;
	background: #FFFFFF;
    box-shadow: 0px 0px 32.9374px #dfdfdf;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 10px;	
}

.mobile-city-select__list {
	display: none;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
	background: #FFFFFF;
	border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px;
}

.city-select__list.on,
.mobile-city-select__list.on {
    display: block;
}

.city-select__item span,
.mobile-city-select__item span {
    display: block;
    padding: 10px 15px;
}

.city-select__item span:hover {
    color: #ff7b01;
}

.city-select:after,
.mobile-city-select:after {
    content: '\276F';
    display: block;
    color: #f68812;
    position: absolute;
    right: 5px;
    top: 5px;
/*     opacity: 1; */

    -webkit-transition: all .27s ease-in-out;
        -o-transition: all .27s ease-in-out;
            transition: all .27s ease-in-out;

    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}

.city-select.on:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

.select-box {
	text-align: left;
}
.new-select-box__list {
	margin-top: 10px;
}
.new-select-box:before {
    content: '\276F';
    float: right;
    color: #fff;
	transform: rotate(90deg);
}

.new-select-box__item {
	padding:10px 0;
}
/*------ стилізація коментаря ---------*/
.comment-body {
	display: grid;
    grid-template-columns: 25% auto;
    grid-template-rows: auto;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
	align-items: center;
    justify-items: center;
}

.comment-meta {
    grid-area: 1 / 1 / 2 / 2;
}

.comment-content {
	grid-area: 1 / 2 / 2 / 3;
	border-left: 1px solid #d5d5d559;
	padding: 5px;
}

.reply {
	display: none;
	grid-area: 2 / 1 / 3 / 3;
}

.comment-edit-link {
	margin-top: 10px;
}
@media (max-width: 640px) {
	.comment-body {
		display: flex;
    	flex-direction: column;
	}
	
	.comment-content {
		border-left: none;
		border-top: 1px solid #d5d5d559;
		margin: 5px 0;
	}
}
	
@media (max-width: 1024px) {
	.site {
    	background: url(./img/site-bg-full.png) no-repeat center 30%;
	}
    .header-menu__link {
        padding: 5px;
    }

    .header {
        padding: 5px;
    }

	.head-cont {
		background-position: 90%;
	}
	
	.header-wrap {
		padding: 5px 30px;
	}
    .logo {
        margin-left: 10%;
    }

    .header-menu,
	.header-menu-city {
        display: none;
    }

    .nav-menu li,
    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
    }

    .mobile-menu-head,
    .header-menu__mobile-cont,
    .header-menu-city select,
    .head-mail-mobile a,
    .header-phone-mobile a {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        color: #2F2F2F;
        line-height: 24px;
    }

	.header-menu-city select {
		color: #FF7B01;
		background: none;
	}
	
    .mobile-menu-head {
        border-bottom: 1px solid #EAF0FE;
    }

    .header-menu__mobile-cont {
        font-size: 14px;
        line-height: 22px;
        border-bottom: 1px solid #EAF0FE;
    }

    .header-menu__link-mobile {
		font-size: 14px;
		color: #2F2F2F;
		background: url(/wp-content/themes/zroblu/img/Vector22.svg) no-repeat right;
		width: 100%;
		text-align: left;
    }

    .mobile-menu-head span {
        font-family: 'Montserrat';
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: #2F2F2F;
    }

    .mobile-menu-close {
        border: none;
        background: none;
    }

	
    .mobile-menu-close img {
        width: 18px;
		height: 18px;
    }
	
    .header-menu-city-mobile select {
        color: #FF7B01;
        border: none;
        border-bottom: 1px dashed #FF7B01;
        border: 1px solid #fff;
    	background: #fff;
    }

    .head-mail a {
        font-size: 16px;
    }

	.activity-cont__title, 
	.not-found__title {
		font-size: 46px;
    	line-height: 50px;
	}
	
	section, .comments-area {
		margin-bottom: 90px;
	}
	
    section h1 {
        font-size: 18px;
    }

    .menu {
        display: block;
        overflow: auto;
        position: fixed;
        width: 100%;
        height: 100%;
        top: -100%;
        left: 0;
        background-color: #fff;
        text-align: center;
        z-index: 13;
        transition: 0.5s;
    }

    .menu.active {
        top: 0;
    }

    .nav-bar-btn {
        display: block;
    }

    .activity-cont,
    .not-found-cont {
        width: 55%;
        flex-direction: column;
        text-align: left;
    }

    .activity-cont {
        margin-top: 60px;
    }

    .not-found__title span {
        line-height: 38px;
        margin: 5px;
    }

    .not-found__subtitle span {
        line-height: 24px;
        margin: 5px;
    }

    .information-mfo:nth-child(even) {
        box-shadow: -5px 0 4px -2px rgb(0 0 0 / 80%);
        border-bottom: none;
        background: #2a69ca;
        color: #fff;
    }

    .information-mfo:nth-child(even) h3 {
        color: #fff !important;
        background: transparent;
    }

    .information-mfo:nth-child(even) a {
        color: #073478 !important;
    }

/*     .logo img, */
    .footer img {
        width: 50px;
        height: 50px;
    }

    .box-wedoit {
        flex-direction: column;
        align-items: center;
    }

    .card-item,
	.job-item,
    .box-number-one,
    .box-contacts {
        width: 48%;
    }

    .feedback-left h3 {
        font-size: 38px;
    }

    .footer-top-cont,
    .footer-bottom-cont {
        flex-direction: column;
    }

    .footer-mail-mobile,
    .footer-phone,
    .footer-top-cont input {
        margin: 10px;
    }

    .footer-mail-mobile {
        display: block;
    }
}

@media (max-width: 875px) {
	.header-wrap {
		padding: 5px 15px;
	}
	.head-cont {
		background-position-y: 95px;
	}
	
	.activity-cont__title, 
	.not-found__title {
		font-size: 42px;
    	line-height: 46px;
	}

	.section-padding {
    	padding: 10px 20px;
	}
}

@media (max-width: 767px) {
	#first, .main-box {
    	margin-top: 15%;
	}
	.head-cont {
		position: relative;
/* 		background: url(./img/Vector.svg) no-repeat center; */
		background-position: center;
	}
	.head-cont:after {
		content: "";
		background: url(./img/Vector.svg) no-repeat center;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: -1;
	}
	.site,
	.site-nf {
		display: block;
		background: url(./img/site-bg-mobile-full.svg) no-repeat center;
		background-size: 195%;
		background-position-y: -70px;
	}
	
    .header-menu-city,
    .header-phone,
    .header-button {
        display: none;
    }

	.header-menu-leng {
		align-items: flex-start;
	}
	
	.header-menu-phone-widget {
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		margin-right: 15px;
	}
    .logo {
        margin-left: 42%;
    }

    .activity-cont,
    .not-found-cont {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

	.activity-cont,
    .not-found-cont {
        height: 600px;
    }

	.activity-cont__title, 
	.not-found__title {
		font-size: 30px;
		line-height: 36px;
	}
    .activity-cont__subtitle {
        display: none;
    }

    .activity-cont__btn {
        justify-content: center;
        margin-left: 0;
    }

    .block-wedoit {
        flex-direction: column;
    }

    .box-wedoit {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }

    .card-item,
	.job-item {
        width: 100%;
        margin: 2% 1.66%
    }

    .feedback-left h3 {
        font-size: 30px;
    }

    .feedback-left p {
        font-size: 14px;
    }

    .slider-button {
        position: relative;
        justify-content: space-between;
    }

    .aboutus-box-img {
        display: none;
    }

    .block-wedoit {
        flex-direction: column;
    }

    .box-wedoit {
        width: 100%;
        margin: 15px 0;
    }

    .feedback-form {
        margin: 0 10%;
        width: 80%;
    }

    .feedback-bg {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .feedback-left,
    .feedback-right {
        width: 100%;
    }

    .header-button {
        display: none;
    }

    .consalt-btn {
        display: block;
        width: 50%;
        margin: 0 auto;
    }

    .comment {
        width: 90%;
    }
	.site-404 {
    background: none;
	}
	
	.price-box {
		margin-bottom: 15px;
	}
	.price-box__cont-left {
		padding: 0 10px;
    	width: 100%;
	}
	
	.price-box__cont-right {
		width: 100%;
    	align-items: flex-start;	
	}
	
	.price-box__cont-right, .price-box__cont {
		flex-direction: column;
	}
	
	.price-box__cont-right span {
		margin: 10px;
		padding: 0;
	}

	.footer-top-cont__right-side {
		flex-direction: column;
	}
	
	.footer-top-cont__left-side {
		align-items: flex-start;
	}
	
}

@media (max-width: 640px) {
	.head-cont {
		background-position-y: 45%;
    	background-size: 60%;
	}
	
	.wedoit-logo,
	.number-one-logo {
		width: 20%;
	}
	
	.wedoit-text,
	.number-one-text {
		width: 80%;
	}
	
    .slider-button-top {
        display: none;
    }

    .slider-button-bottom {
        display: block;
    }
	.slider-button-bottom img {
        width: 30px;
		height: 16px;
    }
}

@media (max-width: 480px) {
	#first, .main-box {
    	margin-top: 20%;
	}
	
	.head-cont {
		background-position-y: 45%;
		background-size: 65%;
	}
	
    .btn {
        padding: 7px;
    }

	.logo {
		margin-left: 35%;
	}
	
    .footer-menu {
		flex-direction: column;
	}
	
    .footer img {
        width: 45px;
        height: 45px;
    }

    .header-phone a {
        display: none;
    }

    .activity-cont__title,
    .not-found__title {
        margin: 0;
    }
	.not-found__subtitle {
		font-size: 18px;
    	line-height: 26px;
    	margin: 5px 0;
	}
	
    .box-number-one,
    .box-contacts,
    .comment-item,
    details {
        width: 100%;
        margin: 10px 0;
    }

    .feedback-left h3 {
        font-size: 22px;
    }

    .footer-bottom-cont {
        flex-direction: column;
        margin-top: 10px;
    }
}

@media (max-width: 360px) {
	.feedback-left h3, .lang-feedback-title {
		font-family: 'Montserrat';
		font-weight: 700;
		font-size: 34px;
	}
	
	.feedback-form-btn, .close-feedback-thx {
		padding: 5%;
	}
}
/* elementor header */
	.elem-head-wrap {
		display: flex;
		padding: 50px 0;
	}
	.elem-box-wrap {
		background: #fff;
		box-shadow: 5px 0px 25px #ececf4;
		-webkit-border-radius: 16px;
		-moz-border-radius: 16px;
		border-radius: 16px;
		padding: 10px;
		margin: 1%;
		width:calc(94%/3)!important;
	}
	.elem-head-wrap__left-side {

	}

	.elem-head-wrap__right-side {

	}
/* down header city */

    .head-city-wrap {
        display: none;
    }

    @media (max-width: 767px) {
		.elem-head-wrap {
			min-height: 530px;

		}
		.elem-head-wrap__right-side {
        	display: none;
    	}
        .head-city-wrap {
            display: flex;
        }

        .style-select-none {
            border: none;
            background: none;
        }

        .head-city-left {
            display: block;
            width: 28%;
            margin-right: 2%;
            padding: 8px 0px;
        }

        .head-city-right {
            display: block;
            width: 70%;
        }

        #first {
            margin-bottom: 5px;
        }
		.elem-box-wrap {
			width: 100%!important;
		}
    }

@font-face {
 font-family: Montserrat;
 src: url(/wp-content/themes/zroblu/fonts/Montserrat-VariableFont_wght.ttf);
 }
.entry-content ul, .entry-content ol {
	margin-bottom:10px;
}