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

:root {
  --accent-color: #158149;
  --accent-color-copy: rgba(21, 129, 73, 1);
  --accent-color-light: #d4ebf4;
  --accent-color-dark: #1e5b55;
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #5A6A7B;
}

html,
body {
  height: 100%;
}

.site {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

ul {
  margin: 0;
  list-style: none;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

main#primary {
  padding-top: 165px;
}

._title-h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: 0.01em;
  color: var(--accent-color);
}

/* #header style */

header.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 2;
  top: 0;
  transition: all 0.3s ease-in-out;
}

header.site-header._header-scroll .header__top-wrapper{
  padding: 0;
}

.sub-menu._header-scroll {
  transform: translateY(-35px);
}


.site-branding.logo {
  max-width: 270px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
}

.logo .custom-logo-link {
  width: 100%;
  margin-right: 13px;
}

.logo img {
  width: 100%;
  max-height: 45px;
  object-fit: contain;
}

.logo__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: var(--accent-color);
}

.logo__title span {
  color: var(--accent-color-dark);
}

.logo__subtitle {
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  color: var(--color-grey);
}

.header__top {
  background-color: var(--color-white);
  z-index: 3;
}

.header__bottom-address {
  display: none;
}

.header__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.2s ease-in-out;
}

.header__address {
  text-align: right;
  justify-self: flex-end;
  flex-grow: 1;
  margin: 0 45px 0 20px;
  color: var(--color-grey);
  line-height: 1;
}

.header__bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__top-right,
.header__bottom-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__bottom {
  background-color: var(--accent-color);
  z-index: 3;
  /* padding: 20px 0; */
}

.main-navigation {
  max-width: 685px;
}

.main-navigation li {
  margin: 0 30px;
}

.main-navigation li.menu-item-has-children {
  padding-right: 15px;
}

.main-navigation li.menu-item-has-children::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 6px;
  right: 0;
  top: 28px;
  transition: transform 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/icons/arrow-for-menu.svg);
}

.main-navigation li.menu-item-has-children:hover::after {
  transform:rotateX(180deg) ;
}

.main-navigation ul li:first-child {
  margin-left: 0;
}

.main-navigation a {
  color: var(--color-white);
  font-weight: 500;
  padding: 20px 0;
}

.main-navigation ul li>  ul {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0!important;
  right: 0;
  top: -100%;
  opacity: 0;
  z-index: -1;
}

.main-navigation ul li>  ul li {
  border: 1px solid #ccc;
  padding: 10px 20px;
  margin: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

/* .main-navigation ul ul li:first-child {
  margin-left: 20px;
} */


.main-navigation ul li:hover > ul {
  top: 155px;
  opacity: 1;
}

.main-navigation ul li > ul li:hover {
  opacity: 0.75;
}

.main-navigation ul ul a {
  color: var(--color-grey);
  margin: 0 auto;
}

.header__schedule {
  color: var(--color-white);
  margin-right: 25px;
}

.header__schedule span {
  font-weight: 700;
}

.header__phone {
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

.header__phone:hover {
  opacity: 0.75;
}

.header__phone--mobile {
	display: none;	
	color: var(--color-black);
}

.phone__contact {
  position: relative;
  padding-left: 25px;
}

.phone__contact::before {
  content: '';
  position: absolute; 
  width: 17px;
  height: 17px;
  left: 0;
  top: 0;
  background-image: url(../img/icons/phone-icon-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header__phone--mobile.phone__contact::before {
	background-image: url(../img/icons/phone-icon-accent.svg);
}

.header__bottom .language-selection {
  display: none;
}

.header-main__right-lang__def {
  font-weight: 700;
  color: var(--accent-color);
}

.header-main__right-lang__active {
  font-weight: 500;
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}

.header-main__right-lang__active:hover {
  color: var(--accent-color-dark);
}
/* #header style end ---------------------*/

/* #address style */
.address {
  position: relative;
  padding-left: 35px;
}

.address::before {
  content: '';
  position: absolute; 
  width: 30px;
  height: 30px;
  left: 0;
  top: -7px;
  background-image: url(../img/icons/map-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* #address end --------------------- */

/* #btn style */
.btn {
  padding: 10px 25px;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.btn--accent {
  background-color: var(--accent-color);
}

.btn--accent:hover {
  color: var(--accent-color);
  background-color: var(--color-white);
}

.btn--light {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background-color: var(--color-white);
}

.btn--light:hover {
  background-color: #F0F7FF;
}

.btn--white {
  border: 1px solid var(--color-white);
  color: var(--color-black);
  background-color: var(--color-white);
}

.btn--white:hover {
  color: var(--color-black);
  background-color: #F0F7FF;
}


/* #btn end style --------------------------------- */

/* #burger button */

.burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 15px 9px;
  z-index: 7;
  position: relative;
  transition: all 0.3s ease;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.burger__span {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  display: block;
}

.burger__top {
  transform-origin: left;
}

.burger__bottom {
  transform-origin: left;
}

.burger._active {
  transition: all 0.3s ease;
}

.burger._active .burger__top {
  transform: rotate(45deg) translateX(-50%);
  transition: all 0.3s ease;
  left: 50%;
  width: 20px;
  top: 18px;
  position: absolute;
}

.burger._active .burger__center {
  opacity: 0;
}

.burger._active .burger__bottom {
  transition: all 0.3s ease;
  width: 20px;
  top: 18px;
  position: absolute;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%);
}

/* #burger button end------------------------- */

/* #callback */

.callback-popup {
  background-color: #D4EBF4;
  padding: 165px;
}

.callback-popup__wrapper {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}

.callback-popup__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #0B0B0C;
  margin-bottom: 20px;
}

.callback-popup__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4D4D56;
  margin-bottom: 25px;
}

.callback-popup form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.callback-popup form .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}

.callback-popup .consultation__input input {
  border: none!important;
}

.callback-popup .consultation__input input:focus-visible {
  outline-color: #A3D4E6;
}

.callback-popup .btn {
  padding: 15px 75px;
  border-radius: 35px;
}

.callback-popup .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
/* #callback end -----------------------------*/

/* #footer start */

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

.footer__top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer__top {
  padding: 55px 0;
  background-color: #F6F6F6;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__menu-list {
  max-width: 450px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__menu-item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  max-width: 220px;
  width: 100%;
}

.footer__menu-item {
  max-width: 180px;
  margin: 0 10px;
}

.footer__menu-item li {
  margin-bottom: 20px;
}

.footer__menu-item a {
  color:  #5C6375;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.footer__menu-item a:hover {
  opacity: 0.75;
}

.footer__menu-contact {
    text-align: right;
}

.footer__phone {
  color: #314046;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
}

.footer__phone:hover {
  opacity: 0.75;
}

.footer__phone.phone__contact::before {
  background-image: url(../img/icons/phone-icon-accent.svg);
}

.footer__schedule {
  color: var(--color-grey);
  margin-bottom: 20px;
}

.footer__address {
  color: var(--color-grey);
}

.footer__bottom {
  background-color: var(--accent-color);
  color: var(--color-white);
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.01em;
  padding: 23px 0;
}

/* #footer end--------------------------- */

/* #hero start */

.hero {
  padding-top: 10px;
}

.hero__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.hero__left {
  width: 40%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__title {
  font-weight: 400;
  font-size: 56px;
  line-height: 112%;
  letter-spacing: 0.01em;
  color: #0B0B0C;
  margin-bottom: 20px;
}

.hero__dest {
  color: #4D4D56;
  margin-bottom: 40px;
}

.hero__btn {
  padding: 12px 45px;
}

.hero__img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.hero__form {
  position: absolute;
  z-index: 1;
  padding: 40px 45px;
  max-width: 938px;
  width: 100%;
  background-color: #d4f4e2;
  border-radius: 35px;
  text-align: center;
  bottom: -155px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__form-title {
  font-weight: 300;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #304268;
  margin-bottom: 25px;
}

.hero__form-form {
  max-width: 850px;
  width: 100%;
}

/* #hero-end ---------------------------- */

/* #cost-form  */
.cost-form {
    
}
  
.cost-form.banner__form {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 27px;
  width: calc(100% - 30px);
  max-width: 800px;
  margin: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
  
.cost-form__title {
  text-align: center;
}
  
.cost-form__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 13px;
}
  
.cost-form__item input {
  font-weight: 700;
}

  .cost-form__item-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 255px;
    margin-right: 15px;
  }
  
  .cost-form__subtitle {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #304268;
    margin-bottom: 9px;
    text-align: left;
  }
  
  .cost-form__trigger {
    display: none;
  }
  
  .cost-form__age input {
    width: 78px;
    height: 62px;
    padding: 8px 16px;
    border-radius: 6px;
    background: #fff;
    border: none;
    text-align: center;
  }
  
  .cost-form__age input::-webkit-inner-spin-button,
  .cost-form__age input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .cost-form__age input[type="number"] {
    -moz-appearance: textfield;
    border: 1px solid #fff;
  }

  .cost-form__gender.cost-form__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 155px;
  }
  
  .cost-form__radio-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    border: none;
  }
  
  .cost-form__custom-radio {
    height: 100%;
    width: 50%;
    position: relative;
    background: #fff;
    margin: 0 2px;
    border-radius: 6px;
  }
  
  /* .cost-form__custom-radio:not(:last-child) {
    border-right: 1px solid #000;
  } */
  
  .cost-form__custom-radio input[type="radio"] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
  }


  .cost-form__custom-radio._active {
    border: 2px solid #000;
  }
  
  /* .cost-form__custom-radio
    input[type="radio"]:checked
    + .cost-form__svg-wrapper
    svg {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }
  
  .cost-form__custom-radio
    input[type="radio"]:checked
    + .cost-form__svg-wrapper
    svg.gender_hover {
    opacity: 1;
    visibility: visible;
    transition: 0.2s;
  }
  
  .cost-form__custom-radio
    input[type="radio"]:checked
    + .cost-form__svg-wrapper
    svg.gender_hover
    path {
    fill: #1a5be5;
    transition: 0.2s;
  } */
  
  .cost-form__svg-wrapper {
    width: 73px;
    height: 62px;
    position: relative;
    padding: 11px;
    border: 2px solid #fff;
    border-radius: 6px;
  }

   .cost-form__custom-radio
    input[type="radio"]:checked
    + .cost-form__svg-wrapper {
    border-color: #000;
    transition: 0.2s;
  }
  

  
  .cost-form__svg-wrapper svg {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    transition: 0.2s;
  }
  
  .cost-form__svg-wrapper svg.gender_hover {
    opacity: 0;
    visibility: hidden;
  }
  
  .cost-form__svg-wrapper svg.gender_hover path {
    transition: 0.2s;
  }
  
  .cost-form__city,
  .cost-form__health {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  
  /* .cost-form__item input[type="text"],
  .cost-form__item input[type="tel"], */
  .cost-form__status {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 8px 32px 8px 16px;
    position: relative;
    width: 100%;
    min-width: 300px;
    height: 62px;
    display: flex;
    align-items: center;
  }
  
  /* .cost-form__item input[type="text"]-text,
  .cost-form__item input[type="tel"]-text, */
  .cost-form__status-text {
    color: #79A8BC;
    font-size: 14px;
  }
  
  .cost-form__item input[type="text"]-text[data-haschecked="true"],
  .cost-form__item input[type="tel"]-text[data-haschecked="true"],
  .cost-form__status-text[data-haschecked="true"] {
    font-weight: 700;
    color: #000;
  }
  
  .cost-form__arrow {
    background: 0 0;
    border: none;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .cost-form__arrow.open {
    transform: translateY(-50%) rotateX(180deg);
    transition: 0.2s;
  }
  
  .cost-form__arrow::before {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .cost-form__checkbox-wrapper {
    background: #fff;
    width: 100%;
    padding: 25px;
    border-radius: 8px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    box-shadow: 0 0 4px 2px rgba(115, 115, 117, 0.15);
  }
  
  .cost-form__checkbox-wrapper.open {
    opacity: 1;
    visibility: visible;
    transition: 0.2s;
  }
  
  .cost-form__checkbox-wrapper ul li {
    list-style: none;
    display: flex;
    color: #304268;
    font-weight: 500;
  }
  
  .cost-form__checkbox-wrapper ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .cost-form__checkbox-wrapper label {
    text-align: left;
  }
  
  .cost-form__custom-checkbox {
    margin-right: 15px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    position: relative;
  }
  
  .cost-form__custom-checkbox input[type="checkbox"] {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
  }
  
  .cost-form__custom-checkbox input[type="checkbox"]:checked + .custom-checkbox {
    background: #304268;
    transition: 0.2s;
    display: flex;
  }
  
  .cost-form__custom-checkbox
    input[type="checkbox"]:checked
    + .custom-checkbox::before {
    content: "";
    background: url(../img/checkbox.svg) center no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    transition: 0.2s;
    margin: auto;
  }
  
  .cost-form__custom-checkbox .custom-checkbox {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #304268;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: 0.2s;
  }
  
  #cost-form__form {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #cost-form__form .cost-form__item {
    margin-bottom: 13px;
  }

  .cost-form__btn {
    padding: 21px 75px;
    border-radius: 30px;
  }
  

/* #cost-form-end ------------------------- */

/* #reasons start */

.reasons {
  padding-top: 235px;
  padding-bottom: 110px;
  background-color: #F2F2F2;
}

.reasons__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reasons__info {
  max-width: 785px;
  width: 100%;
}

.reasons__title {
  font-weight: 300;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.reasons__subtitle {
  font-weight: 400;
  line-height: 150%;
  font-size: 36px;
  letter-spacing: 0.01em;
  color: #1A1A1A;
  margin-bottom: 55px;
}

.reasons__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  list-style: none;
  margin: 0;
}

.reasons__item{
  background-color: #FCFCFC;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.reasons__item-img {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 8px;
}

.reasons__item-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 4px;
  transition:all 0.2s ease-in-out;
}

.reasons__item-desc {
  transition:all 0.2s ease-in-out;
}

.reasons__item:hover {
  background-color: var(--accent-color);
}

.reasons__item:hover .reasons__item-desc {
  color: var(--color-white);
}

.reasons__item path {
  transition: all 0.2s ease-in-out;
}

.reasons__item:hover path {
  fill: var(--color-white);
}

.reasons__item:hover .reasons__item-img::after {
  background-color: var(--color-white);
}
/* #reasons-end ------------------------- */

/* #infoBox start */
.infoBox {
  position: relative;
  padding: 155px 0;
  background-color: var(--accent-color);
  color: #FFFFFF;
}

.infoBox__wrapper {
  max-width: 540px;
  width: 100%;
}

.infoBox__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgb(47, 132, 88) 0%, rgba(21, 129, 73, 1) 40%);
  padding: 8px;
  margin-bottom: 20px;
}

.infoBox__desc {
  margin-bottom: 30px;
}

.infoBox__schedule {
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 15px;
}

.infoBox__img {
  position: absolute;
  top: 0;
  right: 0;
}

.infoBox__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 215px;
  width: 100%;
}

.infoBox__btn svg {
  margin-right: 8px;
}

.infoBox,
.infoBox__img {
  height: 655px;
}

/* #infoBox end ------------------------- */

/* #action */

.action {
  max-height: 500px;
  height: 100%;
  padding: 50px 0;
}

.action__wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #F6F6F6;
  align-items: center;
}

.action__wrapper div {
  flex: 1 1 50%;
}

.action__desc {
  padding: 112px 64px;
  height: 100%;
}

.action__title {
  font-weight: 300;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.action__text {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #4D4D56;
}

.action__img {
  position: relative;
  height: 400px;
}

.action__img img {
  object-fit: cover;
  height: 100%;
  object-position: top;
}

.action__img-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  color: var(--color-white);
  background-color: var(--accent-color);
  padding: 10px 20px;
  font-weight: 300;
  font-size: 22px;
  line-height: 150%;
}

/* #action end --------------------------- */

/* #services */

.services {
  padding: 90px 0;
  
}


.services__title {
  text-align: center;
  margin-bottom: 20px;
}

.services__subtitle {
  max-width: 540px;
  width: 100%;
  text-align: center;
  color: #4D4D56;
  margin: 0 auto 55px;
}

.services__list-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.services__item {
  padding: 38px 32px;
  background-color: #d1f5bb;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.services__item:hover {
  -webkit-box-shadow: 1px 15px 15px -7px rgba(8,94,102,0.26);
-moz-box-shadow: 1px 15px 15px -7px rgba(8,94,102,0.26);
box-shadow: 1px 15px 15px -7px rgba(8,94,102,0.26);
}

.services__item-img {
  border-radius: 50%;
  background-color: #fff;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services__item-desc {
  text-align: center;
  flex-grow: 1;
  color: #304268;
}

/* #services-end ------------------------ */

/* #consultation */

.consultation {
  padding: 65px 0;
  background-color: var(--accent-color-light);
}

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

.consultation__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #0B0B0C;
  margin-bottom: 20px;
}

.consultation__subtitle {
  max-width: 375px;
  width: 100%;
  color: #4D4D56;
  margin-bottom: 25px;
}

.consultation__img {
  max-width: 390px;
  width: 100%;
  max-height: 305px;
}

.consultation__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.consultation__left {
  margin-right: 20px;
}

.consultation__form {
  position: relative;
}

.consultation__form  form{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.consultation__input {
  max-width: 250px;
  width: 100%;
  margin-right: 25px;
}

.consultation__input input {
  width: 100%;
  padding: 14px 15px 14px 25px !important;
  background-color: var(--color-white);
  border-color: var(--color-white)!important;
  border-radius: 6px!important;
}

.consultation__input input::placeholder {
  color: #79A8BC;
}

.consultation__form input[type="submit"] {
  padding: 15px 75px;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  background-color: var(--accent-color);
  cursor: pointer;
}

.consultation__form input[type="submit"]:hover {
  background-color: var(--color-white);
  color: var(--accent-color);
  border-color: var(--accent-color)!important;
}

.consultation__form .wpcf7-spinner {position: absolute;left: 0;
top: 0;}

.consultation__form .wpcf7 form.invalid .wpcf7-response-output,.consultation__form .wpcf7 form.unaccepted .wpcf7-response-output,.consultation__form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0!important;
  position: absolute;
  top: 101%;
  font-size: 12px;
}
/* #consultation-end --------------------------- */

/* #infoBox2 */

.infoBox2 {
  position: relative;
  padding: 155px 0;
  background-color: var(--accent-color);
  color: #FFFFFF;
}

.infoBox2__wrapper {
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}

.infoBox2__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.01em;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgb(47, 132, 88) 0%, rgba(21, 129, 73, 1) 40%);  padding: 8px;
  margin-bottom: 45px;
}

.infoBox2__desc {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

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


.infoBox2__desc ul li {
  position: relative;
  margin-bottom: 25px;
  padding-left: 33px;
}

.infoBox2__desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-image: url('../img/icons/list-item-check.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.infoBox2__img {
  position: absolute;
  top: 0;
  left: 0;
}


.infoBox2,
.infoBox2__img {
  height: 655px;
}
/* #infoBox2-end ------------------------------ */

/* #teams */
.teams {
  padding: 105px 0 180px;
}

.teams__wrapper {
  position: relative;
}

.teams__title {
  position: absolute;
  left: 0;
  top: 0;
}

.teams__list-wrapper {
  min-width: 0;
}

.teams__list {
  padding-top: 110px;
}


.teams__item-img {
  max-width: 310px;
  width: 100%;
  height: 310px;
  object-fit: cover;
  margin-bottom: 30px;
}

.teams__item-name {
  font-size: 20px;
  max-width: 245px;
  width: 100%;
  color: #0B0B0C;
  margin-bottom: 15px;
}

.teams__buttons-wrapper {
  position: absolute;
  top: 25px;
  right: 0;
  width: 120px;
  height: 50px;
}

.teams__button-prev,
.teams__button-next {
  top: 25px;
  width: 50px;
  height: 50px;
}

.teams__button-prev {
  right: 70px;
  left: auto;
}

.teams__button-prev::after,
.teams__button-next::after {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 0;
}

.teams__button-prev::after {
  background-image: url(../img/icons/arrow-left-circle.svg);
}

.teams__button-next::after {
  background-image: url(../img/icons/arrow-right-circle.svg);
}
/* #teams-end */

/* #everydayLife */

.everydayLife {
  padding: 75px 0;
  background-color: #d6ffef;
  background-position: left bottom;
  background-size: 60%;
  background-repeat: no-repeat;
  background-image: url('../img/icons/bg-schedule.svg');
}

.everydayLife__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 0;
}

.everydayLife__left {
  max-width: 460px;
  width: 100%;
}

.everydayLife__pretitle {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.everydayLife__title {
  color: var(--color-black);
}

.everydayLife__right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 0;
}

.everydayLife__box {
  position: relative;
  max-width: 530px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 30px 60px 120px 60px;
  margin-right: 70px;
  overflow: hidden;
}

.everydayLife__box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/icons/schedule/schedule-line-bg.svg');
}

.everydayLife__box-item {
  opacity: 0.4;
}

.everydayLife__box-item-top {
  position: relative;
  padding-left: 75px;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.everydayLife__box-item .everydayLife__box-item-top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 65px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/icons/schedule/schedule-icon-2.svg');
}

.everydayLife__box-item:nth-child(1) .everydayLife__box-item-top::before,
.everydayLife__box-item:nth-child(6) .everydayLife__box-item-top::before {
  background-image: url('../img/icons/schedule/schedule-icon-1.svg');
}

.everydayLife__box-item:nth-child(7) .everydayLife__box-item-top::before {
  background-image: url('../img/icons/schedule/schedule-icon-3.svg');
}

.everydayLife__box-item-time {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #4D4D56;
  display: none;
}


.everydayLife__box-item.swiper-slide-active {
  opacity: 1;
}

.everydayLife__box-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 15px;
}

.everydayLife__box-item-desc {
  color: #4D4D56;
}

.everydayLife__box-buttons {
  position: absolute;
  top: auto;
  bottom: 40px;
  left: 55px;
  width: 120px;
  z-index: 2 ;
  height: 50px;
}

.everydayLife-button-prev,
.everydayLife-button-next {
  width: 50px;
  height: 50px;
}

.everydayLife-button-prev {
  right: 70px;
  left: auto;
}

.everydayLife-button-prev::after,
.everydayLife-button-next::after {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 0;
}

.everydayLife-button-prev::after {
  background-image: url(../img/icons/arrow-left-circle.svg);
}

.everydayLife-button-next::after {
  background-image: url(../img/icons/arrow-right-circle.svg);
}

.everydayLife__thumb {
  max-width: 115px;
  width: 100%;
  height: auto;
}

.everydayLife__thumb-wrapper {
  border-top: 2px solid #B6D7FF;
  padding-top: 75px;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.everydayLife__thumb-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 53px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/icons/clock-icon.svg');
}

.everydayLife__thumb-item {
  padding: 15px 0;
  border-bottom: 2px solid #B6D7FF;
  font-weight: 700;
  font-size: 17px;
  width: 100% !important;
  
  line-height: 140%;
  color: #4C669F;  
  cursor: pointer;
}

.everydayLife__thumb-item.swiper-slide-thumb-active {
  color: #304268;
}

/* #everydayLife-end ----------------------------------- */

/* #gallery */
.galleryBlock {
  padding: 90px 0;
}

.galleryBlock__title {
  margin-bottom: 55px;
  text-align: center; 
}

.galleryBlock__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 20px;
}

.galleryBlock__item {
  cursor: pointer;
  overflow: hidden;
}

.galleryBlock__item img {
  max-height: 280px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.35s ease-in-out;
}

.galleryBlock__item:hover img {
  transform: scale(1.1);
}
/* #gallery-end ------------------------------- */

/* #section-seo */
.section-seo {
	padding: 30px 0;
}

.btn-see-more.more-link {
    display: inline-block;
    color: #fff;
    cursor: pointer;
}

.btn-see-more:hover {
  color: var(--accent-color);
}

.max-lines {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 210px;
    line-height: 1.8em;
}

.section-seo__description {
    margin-bottom: 30px;
}

.section-seo__description h2,
.entry-content h2  {
    margin-bottom: 25px;
}

.section-seo__description h3,
.section-seo__description h4,
.section-seo__description h5,
.section-seo__description h6,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 15px;
}

.entry-content ul {
    margin-bottom: 20px;
}

.section-seo__description ul {
    margin-bottom: 25px;
    margin-left: 25px;
    list-style: disc;
}

.max-lines._active {
    max-height: 100%;
}
/* #section-seo-end-------------------------------- */

/* #blog  main page*/
.section-blog {
  padding: 90px 0 60px;
}

.section-blog__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.section-blog__top {
  margin-bottom: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-blog__allBlog {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #306859;
}

.last-news__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.last-news__image {
  margin-bottom: 25px;
}

.last-news__image img {
  width: 100%;
}

.last-news__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #0B0B0C;
  margin-bottom: 10px;
}

.last-news__card-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #0B0B0C;
  margin-bottom: 15px;
}

.last-news__card-text {
  flex-grow: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4D4D56;
}

.last-news__btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #158149;
}
/* #blog main-page-end --------------------------------------- */

/* #Blog-page  */

main#primary.blog {
  padding-top: 165px;
}

.blog__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.blog__title {
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1A;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #C7CEDF;
  margin-bottom: 60px;
}

.blog .section-blog__wrapper {
  margin-bottom: 70px;
}

.blog__pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.blog__pagination .page-numbers {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #5A6A8C;
  padding: 6px 8px 6px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.blog__pagination .page-numbers:hover {
  background: #4b536748;
  color: var(--color-white);
}

.blog__pagination .page-numbers.current {
  background: #495777;
  color: var(--color-white);
}

/* #Blog-page end -------------------------------------------- */

/* #section map */
.section-map {
  padding: 45px 0;
}

.section-map__wrapper {
  width: 100%;
}

.section-map__wrapper iframe {
  width: 100%;
  height: 460px;
}
/* #section map-end ------------------------------- */

/* #contact-map-page */

.contact-map {
  padding: 60px 0 90px;
}

.contact-map__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-map__left {
  max-width: 465px;
  width: 100%;
  margin-right: 20px;
}

.contact-map__title {
  margin-bottom: 20px;
}

.contact-map__subtitle {
  margin-bottom: 40px;
}

.contact-map__contact {
  list-style: none;
  margin: 0;
}

.contact-map__contact li {
  margin-bottom: 20px;
  padding-left: 27px;
  color: #435A70;
  position: relative;
}

.contact-map__contact li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-map__contact li:nth-child(1)::before {
  background-image: url('../img/icons/phone-icon-grey.svg');
}

.contact-map__contact li:nth-child(2)::before {
  background-image: url('../img/icons/time-icon-grey.svg');
}

.contact-map__contact li:nth-child(3)::before {
  background-image: url('../img/icons/map-icon-grey.svg');
}

.contact-map__contact li a {
  color: #435A70;
  transition:all 0.2s ease-in-out;
}

.contact-map__contact li a:hover {
  opacity: 0.75;
}

.contact-map__right {
  width: 100%;
}

.contact-map__right iframe {
  width: 100%;
  height: 375px;
}

.error-404 {
  text-align: center;
}

.error-404__number {
  font-size: 130px;
  color: var(--accent-color);
  font-weight: 700;
}
/* #contact-map-page-end -------------------------- */

/* #customPage */

main#primary.custom-site-main {
  padding-top: 140px;
}

.customPage {
  margin-bottom: 50px;
}

.customPage__title {
  font-weight: 400;
  line-height: 150%;
  color: #1A1A1A;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #C7CEDF;
  margin-bottom: 60px;
}

.customPage__wrapper {
  display: flex;
  justify-content: space-between;
}

.customPage__content {
  margin-right: 40px;
  max-width: 840px;
  font-size: 15px;
  width: 100%;
}

.customPage__content figure.content-img img{
  height: 300px;
}

.customPage__content figure {
  margin-bottom: 30px;
}

.customPage__content figure img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 420px;
}

.customPage__content .post-thumbnail {
  display: none;
}

.customPage__content h1 {
  display: none;
}

.customPage__content-h2 {
  margin-bottom: 25px;
}

.customPage__content h3 {
  margin-bottom: 20px;
}

.customPage__content ul {
  padding-left: 30px;
}

.customPage__content blockquote {
  background-color: #F2F2F2;
  padding: 20px 30px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

.customPage__content blockquote p {
  margin-bottom: 0;
}

.customPage__content .entry-content {
  margin-top: 0;
}

.customPage__sidebar {
  max-width: 420px;
  width: 100%;
}

.customPage__sidebar .section-blog__wrapper {
  display: flex;
  flex-direction: column;
}

.customPage__sidebar-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #158149;
  margin-bottom: 20px;
}

.customPage__sidebar .last-news__card-title {
  font-size: 18px;
  margin-bottom: 20px;
}
/* #customPage-end -------------------------------- */

@media screen and (max-width: 1360px){
  .infoBox__img{
    max-width: 550px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }

  .infoBox2__img{
    max-width: 550px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}

@media screen and (max-width: 1200px){
  .main-navigation a {
    padding: 16px 0;
  }

  .main-navigation li.menu-item-has-children::after {
    top: 24px;
  }

  .header__bottom-right {
    flex-direction: column;
    align-items: flex-end;
  }

  .header__schedule {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .main-navigation li {
    margin: 0 20px;
  }

  .hero__title {
    font-size: 45px;
  }

  .reasons__img {
    max-width: 580px;
  }

  .infoBox__img {
    max-width: 500px;
  }

  .infoBox2__img {
    max-width: 500px;
  }

  .action__text {
    font-size: 30px;
  }

  .consultation__img {
    max-width: 340px;
  }

  .everydayLife__left {
    max-width: 420px;
  }

  .everydayLife__box {
    padding: 30px 40px 120px 40px;
    margin-right: 35px;
  }

  .customPage__sidebar {
    max-width: 330px;
  }
}

@media screen and (max-width: 1100px){
  .hero__dest {
    color: #4D4D56;
    margin-bottom: 20px;
  }

  .reasons__img {
    max-width: 500px;
  }

  .infoBox__img {
    max-width: 435px;
  }

  .infoBox__wrapper {
    max-width: 480px;
  }

  .infoBox2__img {
    max-width: 435px;
  }

  .infoBox2__wrapper {
    max-width: 480px;
  }

  .action__desc{
    padding: 75px 55px;
  }

  .consultation__form input[type="submit"] {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 992px) {
  .header__bottom .language-selection {
    display: block;
  }

  .header-main__right-lang {
    margin-bottom: 25px;
  }

  .header-main__right-lang__def {
    font-weight: 500;
    color: var(--color-white);
  }

  .header-main__right-lang__active {
    font-weight: 500;
    color: #bbbcbd;
    transition: all 0.3s ease-in-out;
  }

  .header-main__right-lang__active:hover {
    color: var(--color-black);
  }

	.header__phone--mobile {
		display:block;
	}
  main#primary.blog {
    padding-top: 50px;
  }

  .main-navigation ul li {
    width: 96%;
  }

  .main-navigation a {
    display: inline-block!important;
  }

  .main-navigation ul li.menu-item-has-children> ul {
    display: block;
    max-width: 350px;
    margin: 0;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 1;
    min-height: 1500px;
    height: 100%;
    overflow: scroll;
  }

  .main-navigation ul li.menu-item-has-children:hover> ul,
  .main-navigation ul li.menu-item-has-children:focus> ul {
    /* left: 0!important; */
    transform: translateX(0);
  }
  .main-navigation ul li > ul li {
    padding: 0;
    width: 100%;
  }

  .main-navigation ul li > ul a {
    width: 100%;
    padding: 10px 10px;
  }

  .callback-popup {
    padding: 50px;
  }
  
  .burger {
    display: flex;
  }

  header#masthead {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 6;
  }

  main {
    padding-top: 75px;
  }

  .header__top {
    border-bottom: 1px solid #D2E5ED;
  }

  .site-branding.logo {
    max-width: 210px;
  }

  .header__top-wrapper {
    padding: 15px 0;
  }

  .header__top-right {
    display: none;
  }

  .header__bottom {
    position: fixed;
    height: 100vh;
    z-index: 5;
    top: 0;
    width: 400px;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
  }

  .header__bottom._active {
    transform: translateX(0);
  }

  .header__bottom-wrapper {
    flex-direction: column;
    align-items: center;
    padding-top: 65px;
  }

  .header__bottom-right {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
  }

  .header__bottom-address.header__address {
    margin: 0;
  }

  .header__bottom-address .address {
    margin-bottom: 25px;
  }

  .header__bottom-address .address::before {
    background-image: url(../img/icons/map-icon.svg);
  }

  .header__bottom-address {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
  }


  .main-navigation {
    margin-bottom: 40px;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-navigation li {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .main-navigation a {
    font-size: 18px;
  }

  .site-branding.logo.footer__logo {
    margin-right: 0;
  }

  .footer__top {
    padding: 50px 0;
  }

  .footer__top-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer__menu-contact {
    text-align: center;
  }

  /* hero */

  .hero__wrapper {
    flex-direction: column;
    align-items: center;

  }

  .hero__left {
    margin-right: 0;
    margin-bottom: 25px;
    max-width: 505px;
    width: 100%;
  }

  .hero__img {
    width: 100%;
    max-height: 450px;
  }

  .hero__form {
    padding: 30px 25px;
  }

  .cost-form__btn {
    padding: 21px 35px;
  }

  .cost-form__status {
    min-width: 260px;
  }
  /* #hero-end----------- */

  /* #reasons */
  .reasons__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .reasons__wrapper ._container {
    margin-right: auto;
  }

  .reasons__img {
    max-width: 100%;
    object-fit: cover;
    margin-bottom: 40px;
  }

  .reasons__info {
    max-width: 100%;
  }
  /* #reasons end------------------------------ */

  /* #infoBox*/

  .infoBox {
    height: auto;
    padding-bottom: 50px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .infoBox ._container {
    order: 2;
  }

  .infoBox__img {
    position: relative;
    max-width: 100%;
    order: 1;
    margin-bottom: 30px;
  }

  .infoBox__wrapper {
    max-width: 505px;
    order: 2;
  }
  /* #infoBox end ------------------------------*/

  /* #action */

  .action {
    max-height: 100%;
  }

  .action__wrapper {
    flex-direction: column;
  }

  /* #action end -------------------------------*/
  .services__item {
    padding: 25px 20px;
  }

  /* #consultation  */
  .consultation__wrapper {
    flex-direction: column;
  }

  .consultation__img {
    order: 1;
    margin-bottom: 35px;
  }

  .consultation__left {
    order: 2;
    text-align: center;
    margin-right: 0;
  }

  .consultation__subtitle {
    margin: 0 auto 25px;
  }

  .consultation__form input[type="submit"] {
    width: 100%;
  }
  /* #consultation-end -------------------------*/

  /* #infoBox2*/

  .infoBox2 {
    height: auto;
    padding-bottom: 50px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .infoBox2 ._container {
    /* order: 2; */
  }

  .infoBox2__img {
    position: relative;
    max-width: 100%;
    /* order: 1; */
    margin-bottom: 30px;
  }

  .infoBox2__wrapper {
    max-width: 505px;
    /* order: 2; */
  }
  /* #infoBox2 end ------------------------------*/

  /* #everydayLife */
  .everydayLife__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .everydayLife__left {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contact-map {
    padding: 40px 0 70px;
  }

  .contact-map__wrapper {
    flex-direction: column;
  }

  .contact-map__right {
    order: 1;
    margin-bottom: 30px;
  }

  .contact-map__left {
    order: 2;
    max-width: 100%;
  }
  /* #everydayLife-end--------------------------- */

  .section-blog__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  /* #customPage */
  main#primary.custom-site-main {
    padding-top: 65px;
  }

  .customPage__wrapper {
    flex-direction: column;
  }

  .customPage__content {
    margin-right: 0;
    max-width: 100%;
  }

  .customPage__sidebar {
    max-width: 100%;
  }

  .customPage__sidebar .section-blog__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  /* #customPage-end ---------------------------- */
}

@media screen and (max-width: 768px) {
  .site-branding.logo.footer__logo {
    order: 1;
  }

  .callback-popup {
    padding: 35px 25px;
  }

  .callback-popup form {
    flex-direction: column;
  }

  .callback-popup__title {
    font-size: 24px;
  }

  .callback-popup form .consultation__input {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .callback-popup .consultation__btn-wrapper .btn{
    margin: 0 auto;
    display: block;
  }

  .cost-form__inner {
    flex-direction: column;
    align-items: center;
  }

  .cost-form__item-wrapper {
    margin-right: 0;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .cost-form__health {
    margin-bottom: 30px;
  }

  .cost-form__btn {
    padding: 21px 35px;
    max-width: 320px;
    width: 100%;
  }

  .cost-form__status {
    min-width: 320px;
  }

  .reasons {
    padding-top: 400px;
  }

  .footer__menu-contact {
    order: 2;
    margin-bottom: 40px;
  }

  .footer__menu-item-wrapper {
    max-width: 100%;
    padding: 40px 0;
    border-top: 1px solid var(--color-grey) ;
    border-bottom: 1px solid var(--color-grey) ;
    margin-bottom: 40px;
    justify-content: space-around;
  }

  .footer__menu-list {
    order: 3;
    flex-direction: column;
    align-items: center;
  }

  .footer__menu-item {
    text-align: center;
  }

  .hero__form {
    bottom: -340px;
  }

  .services__list-wrapper {
    display: flex;
    grid-gap: unset;
  }

  .consultation__left {
    width: 100%;
  }

  .consultation__form form {
    display: flex;
    flex-direction: column;
  }

  .consultation__input {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .consultation__btn-wrapper {
    width: 100%;
  }

  .infoBox2 {
    padding-bottom: 0;
  }

  .infoBox2__desc {
    flex-direction: column;
    font-size: 16px;
  }

  .teams {
    padding: 65px 0 110px;
  }

  .teams__list {
    padding: 80px 0 100px;
  }

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

  .teams__item-img {
    margin-bottom: 25px;
  }

  .teams__item-name {
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .teams__buttons-wrapper {
    top: auto;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .galleryBlock {
    padding: 50px 0;
  }

  .galleryBlock__title {
    margin-bottom: 30px;
  }

  .galleryBlock__list {
    display: flex;
    grid-template-columns: none;
    grid-gap: 0;
  }

  .galleryBlock__item {
    width: 100%;
    height: 200px;
    transition: all 0.2s ease-in-out;
  }

  .galleryBlock__item.swiper-slide.swiper-slide-next,
  .galleryBlock__item.swiper-slide.swiper-slide-prev {
    opacity: 0.5;
    height: 145px;
  }

  .section-map {
    padding: 40px 0;
  }

  .section-map__wrapper iframe {
    height: 510px;
  }

  .everydayLife__box {
    margin-right: 0;
  }

  .everydayLife__box-item-top {
    width: 83%;
  }

  .everydayLife__box-item-time {
    display: block;
  }

  .everydayLife__thumb {
    display: none;
  }

  .section-blog__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .last-news__image {
    margin-bottom: 20px;
  }

  .last-news__card-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .main-navigation ul li.menu-item-has-children> ul {

  }
	

  body {
    font-size: 14px;
  }

  .site-branding.logo {
    max-width: 135px;
	margin-right: 10px;
  }

  .callback-popup .consultation__btn-wrapper .btn {
    width: 100%;
  }

  .header__bottom {
    width: 100%;
  }

  .header__bottom-right {
    align-items: center;
  }

  .header__btn {
    padding: 16px 35px;
    border-radius: 26px;
  }

  ._title-h2 {
    font-size: 24px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 15px;
  }

  .hero__img {
    max-height: 320px;
  }

  .hero__form {
    padding: 30px 20px;
    bottom: -350px;
  }

  .hero__form-title{
    font-size: 19px;
  }

  .hero__form-form {
    height: 265px;
  }
	
  .header__phone--mobile {
	font-size: 12px;
	padding-left: 20px;
	margin-right: 10px;
  }

  .cost-form__item-wrapper {
    height: 76px;
  }

  .cost-form__age input {
    width: 56px;
  }

  .cost-form__age {
    margin-right: 20px;
  }

  .cost-form__item-wrapper,
  .cost-form__btn {
    max-width: 305px;
  }

  .cost-form__status {
    min-width: 305px;
  }

  .cost-form__item-wrapper {
    justify-content: flex-start;
  }

  .cost-form__custom-radio input[type="radio"],
  .cost-form__age input,
  .cost-form__custom-radio,
  .cost-form__radio-wrapper,
  .cost-form__svg-wrapper,
  .cost-form__status {
    height: 50px;
  }

  .cost-form__svg-wrapper {
    padding: 9px;
  }

  .cost-form__custom-radio input[type="radio"]:checked + .cost-form__svg-wrapper {
    border-color: var(--accent-color);
    transition: 0.2s;
  }

  .reasons__img {
    max-height: 500px;
  }

  .reasons__title {
    margin-bottom: 17px;
    font-size: 40px;
  }

  .reasons__subtitle {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 150%;
  }

  .reasons__item {
    text-align: center;
  }

  .reasons__item-img::after {
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .reasons__item-desc {
    color: #7E7A7A;
  }

  .infoBox__img {
    max-height: 300px;
  }

  .infoBox__title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .infoBox__desc {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .infoBox__btn {
    max-width: 100%;
  }


  .infoBox2__img {
    max-height: 300px;
  }

  .infoBox2__title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .action__wrapper div{
    flex: 1 1 100%;
  }

  .action__img {
    height: 100%;
    max-height: 220px;
  }

  .action__img img {
    height: 220px;
  }

  .action__img-text {
    padding: 5px 20px;
    font-size: 16px;
  }

  .action__desc {
    padding: 20px 25px 40px;
    height: 100%;
  }

  .action__title {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .action__text {
    font-size: 24px;
  }

  .services {
    padding: 50px 0;
  }

  .services__title {
    margin-bottom: 15px;
  }

  .services__subtitle {
    margin-bottom: 30px;
  }

  .consultation {
    padding: 40px 0 70px 0;
  }

  .consultation__title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .consultation__img {
    max-height: 280px;
  }

  .everydayLife {
    padding: 40px 0;
  }

  .everydayLife__pretitle {
    margin-bottom: 10px;
  }

  .everydayLife__box {
    padding: 30px 20px 70px 20px;
    max-width: 355px
  }

  .everydayLife__box-buttons {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-blog__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .last-news__image img {
    height: 237px;
    object-fit: cover;
  }

  .custom-site-main .wp-block-columns{
    flex-direction: column;
  }

  .customPage__sidebar .section-blog__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .customPage__content figure img {
    height: 240px;
  }

  .customPage__sidebar-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}