@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  font-family: "Cuprum", Arial, sans-serif;
}

.block {
  overflow: hidden;
}

.block__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hamburger-menu {
  display: none;
}

.header {
  top: 0;
  position: fixed;
  z-index: 5;
  background-color: rgba(245, 245, 245, 0.95);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  width: 100%;
}
.header .header__inner {
  padding-right: 30px;
  padding-left: 30px;
  align-items: center;
  max-width: 1820px;
  padding-top: 10px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.header .header__logo img {
  max-width: 200px;
  width: 200px;
}

.nav__menu {
  margin-left: 20px;
  display: flex;
}

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

.b-social--header {
  display: flex;
  align-items: center;
}
.b-social--header img {
  width: 40px;
  margin: 10px;
  height: auto;
}

.header__lang {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 300;
}
.header__lang a {
  color: #2e2e2e;
  opacity: 0.5;
  transition: 0.3s;
}
.header__lang a:hover {
  opacity: 1;
}
.header__lang .lang--active {
  opacity: 1;
}

.lang {
  padding-right: 10px;
  padding-left: 5px;
}

.lang--ru {
  position: relative;
}
.lang--ru:after {
  height: 100%;
  content: "";
  width: 2px;
  background-color: #2e2e2e;
  position: absolute;
  right: 0;
  top: 0;
}

.nav__item {
  position: relative;
  margin-left: 35px;
  font-size: 20px;
  font-weight: 300;
}
.nav__item ::after {
  content: "";
  bottom: 20%;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-bottom: 2px solid #ba3e5a;
}
.nav__item :hover::after {
  bottom: -1px;
  opacity: 1;
}
.nav__item a {
  color: #2e2e2e;
}

.nav__item a.active {
  transition: 0.5s;
}
.nav__item a.active::after {
  content: "";
  bottom: 20%;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-bottom: 2px solid #ba3e5a;
  bottom: -1px;
  opacity: 1;
}

.b-director__inner {
  position: relative;
}

.b-director__text {
  top: 200px;
  right: 0;
  position: absolute;
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
  font-weight: 400;
  z-index: 1;
  text-align: right;
}

.director__title {
  color: #fff;
  margin-right: 20px;
  opacity: 0;
  animation: zoomIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
  transform: scale(0.9);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.17;
  border-bottom: 1px solid white;
}

.director__subtitle {
  transform: scale(0.9);
  margin-right: 20px;
  opacity: 0;
  animation: zoomIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.2s;
}

.director__slogan {
  transform: scale(0.9);
  margin-right: 20px;
  opacity: 0;
  animation: zoomIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.5s;
  width: 270px;
  margin-top: 15px;
}

.arrow__next-block::after {
  transition: 0.3s;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 50px;
  animation: arrow 1.7s infinite ease;
  position: absolute;
  content: "";
  width: 40px;
  height: 20px;
  justify-content: space-between;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  opacity: 1;
}

.arrow__next-block:hover::after {
  opacity: 0.7;
}

.b-director {
  background-image: url(../img/bgLow.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
  margin-top: 90px;
}

.b-director::after {
  opacity: 0;
  animation: opacityBg 1s forwards;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-attachment: scroll;
  background-position: left bottom;
  height: 100%;
  content: "";
  background-image: url(../img/noroot2.jpg);
}

.b-services {
  padding-top: 105px;
  padding-bottom: 165px;
  background-color: #f2f2f2;
}

.b-services__inner {
  text-align: center;
}

.page__title {
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  color: #061b35;
  font-size: 42px;
  line-height: 1.23;
  margin-bottom: 40px;
  max-width: 800px;
  text-align: center;
}

.page__subtitle {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
  max-width: 480px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: #061b35;
  text-align: center;
}

.b-services__cards {
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.card__text {
  width: 100%;
  padding: 30px 30px 40px;
  box-sizing: border-box;
  margin-top: 232px;
  line-height: 1.55;
}

.b-services__card {
  overflow: hidden;
  margin-left: 20px;
  margin-right: 20px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  flex-shrink: 0;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 415px;
  width: calc(100% / 3 - 40px);
}
.b-services__card:hover .card__list {
  opacity: 1;
  transform: translateY(-232px);
}
.b-services__card:hover .card__title {
  transform: translateY(-232px);
}

.card__title {
  transition: 0.3s;
  position: relative;
  padding-bottom: 40px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}
.card__title::after {
  left: 0;
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #fff;
}

.card__list {
  text-align: left;
  line-height: 1.55;
  font-size: 16px;
  transition: 0.3s;
  opacity: 0;
  margin-left: 15px;
}

.card__list--item {
  list-style: disc;
}

.b-advantages {
  padding-top: 120px;
}

.b-advantages__inner {
  opacity: 0;
}

.b-advantages__cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.b-advantages__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.b-advantages__card--img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.b-advantages__card--title {
  font-size: 24px;
  margin: 12px;
  line-height: 1.35;
  font-weight: 700;
  color: #061b35;
}

.b-advantages__card--description {
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  max-width: 320px;
}

.b-advantages__text {
  max-width: 560px;
}

.b-social {
  fill: #1d416d;
  height: auto;
  padding-bottom: 50px;
  opacity: 0;
  text-align: center;
}
.b-social img {
  padding-left: 5px;
  padding-right: 5px;
}

.b-contact__card {
  width: calc(100% / 2);
}

.b-contact {
  padding-top: 160px;
}

.b-contact__inner {
  flex-wrap: wrap;
  display: flex;
}

.b-contact__info {
  height: 100%;
  background-color: #1d416d;
}

#YMapsIDMoscow {
  max-width: 952px;
  height: 447px;
}

#YMapsIDArch {
  max-width: 952px;
  height: 447px;
}

.b-contact__info {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}
.b-contact__info * {
  margin-left: 90px;
  max-width: 220px;
}
.b-contact__info .b-contact__info--time {
  font-size: 16px;
}

.b-contact__info--adress {
  padding-top: 100px;
}

.b-contact__info--tel {
  margin-bottom: 40px;
  margin-top: 42px;
}

.showblock {
  transition: 1s;
  opacity: 1;
}

.b-owner__inner {
  display: flex;
}

.b-owner {
  margin-top: 135px;
}

.b-owner__card {
  margin-left: 20px;
  margin-right: 20px;
}

.b-owner__name {
  font-size: 26px;
  line-height: 1.23;
  font-weight: 700;
  color: #061b35;
}

.b-owner__post {
  margin-top: 5px;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}

.b-owner__mail {
  margin-bottom: 28px;
  color: #ba3e5a;
  font-size: 16px;
  line-height: 1.55;
}

.b-owner__title {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.55;
  font-family: "Cuprum", Arial, sans-serif;
  font-weight: 700;
  color: #061b35;
}

.b-owner__text {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  font-family: "Cuprum", Arial, sans-serif;
  font-weight: 400;
  color: #061b35;
}
.b-owner__text li {
  list-style: disc;
}

.b-owner__list {
  margin-left: 20px;
}

.b-owner__social {
  margin-top: 70px;
  margin-bottom: 40px;
  text-align: center;
}
.b-owner__social a {
  margin: 5px;
}

.slick-arrow {
  opacity: 0;
}

.b-partner {
  margin-top: 100px;
}

.b-partner__subtitle {
  max-width: 800px;
}

.b-slick__item {
  height: 110px;
  justify-content: center;
  margin-bottom: 30px;
}

.b-partner__slick {
  padding-left: 20px;
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: center;
}

.b-slick__item img {
  margin: auto;
  width: auto;
  max-width: 200px;
  max-height: 110px;
}

.slick--big img {
  max-width: 250px;
}

.b-reviews {
  margin-top: 100px;
}

.b-reviews__subtitle {
  margin-bottom: 40px;
}

.b-reviews__photo {
  width: 70px;
  border-radius: 100px;
  height: 70px;
  margin-right: 20px;
}

.b-reviews__text {
  flex-grow: 1;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.55;
}
.b-reviews__text:before {
  position: absolute;
  top: -6px;
  left: -20px;
  z-index: 2;
  content: "";
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/iconfinder_f10d_213175-blue.png);
}

.b-reviews__people {
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.b-reviews__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b-reviews__item {
  margin: 1.5rem;
  flex-direction: column;
  padding-top: 60px;
  position: relative;
  display: flex;
}

.b-reviews__title {
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  color: #061b35;
  font-size: 42px;
  line-height: 1.23;
  margin-bottom: 40px;
  max-width: 800px;
  text-align: center;
}

.b-reviews__name {
  font-size: 18px;
  line-height: 1.55;
  font-family: "Cuprum", Arial, sans-serif;
  font-weight: 700;
  color: #061b35;
}

.b-reviews__location {
  margin-top: 5px;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #b2b2b2;
  border-radius: 50%;
}

.slick-dots {
  display: flex !important;
  align-items: center;
  bottom: -40px;
  justify-content: center;
}
.slick-dots li {
  padding-left: 10px;
  padding-right: 10px;
}

.slick-active .dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #ff2b58;
}

.b-blog {
  text-align: center;
  background-color: #f2f2f2;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.b-blog__title {
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  color: #061b35;
  font-size: 42px;
  line-height: 1.23;
  margin-bottom: 40px;
  max-width: 800px;
  text-align: center;
}

.b-blog__news {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.b-blog__article {
  width: calc(100% / 2 - 40px);
  margin-bottom: 50px;
}
.b-blog__article:nth-child(odd) {
  margin-right: 20px;
  margin-left: 20px;
}
.b-blog__article:nth-child(even) {
  margin-right: 20px;
}

.b-blog__button {
  margin-top: 20px;
  margin-left: auto;
}

.b-blog__img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.b-blog__img:hover {
  opacity: 0.8;
}

.b-blog__time {
  color: #9698a3;
  margin-bottom: 20px;
}

.b-blog__name {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #061b35;
  transition: 0.4s;
}
.b-blog__name:hover {
  color: #1d416d;
}

.button {
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 1em 1.5em;
  line-height: 1.35;
  font-weight: 700;
  color: #1c3f69;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  min-height: 50px;
  min-width: 200px;
  border: 3px solid #1c3f69;
  transition: 0.3s;
  text-transform: uppercase;
}
.button:hover {
  background-color: #1d416d;
  color: #fff;
}

.b-article {
  margin-top: 120px;
  margin-bottom: 120px;
  margin-left: 40px;
  margin-right: 40px;
}

.b-article__paragraph--quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
.b-article__paragraph--quote:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/iconfinder_f10d_213175-blue.png);
}

.paragraph__name {
  margin-top: 20px;
  text-align: right;
  font-size: 18px;
  line-height: 1.55;
  font-family: "Cuprum", Arial, sans-serif;
  font-weight: 700;
  color: #061b35;
}
.paragraph__name:before {
  content: "— ";
}

.paragraph__job {
  text-align: right;
  margin-bottom: 10px;
  margin-top: 5px;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
}

.b-article__title {
  color: #86003d;
  font-size: 25px;
  margin-top: 45px;
  margin-bottom: 30px;
}

.b-article__image {
  width: 80%;
  height: auto;
}

.b-article__text {
  line-height: 1.55;
  max-width: 80%;
  color: #424242;
  margin-left: 0;
  font-size: 18px;
}

.b-article__paragraph--extra {
  color: #86003d;
  font-style: italic;
  margin-bottom: 10px;
}
.b-article__paragraph--extra a {
  transition: 0.3s;
  position: relative;
  color: #79acc8;
}
.b-article__paragraph--extra a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #79acc8;
}
.b-article__paragraph--extra a:hover {
  color: #2e4168;
}

.b-article__text--italic {
  font-style: italic;
}

.b-article__list--number {
  counter-reset: myCounter;
}
.b-article__list--number li {
  margin-bottom: 10px;
  list-style: none;
}
.b-article__list--number li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
}

.b-article__list--marker li {
  margin-bottom: 10px;
  list-style-position: inside !important;
  list-style: disc;
}

.b-article__text--substrate {
  padding: 20px;
  background-color: #f2f2f2;
}

.b-article__other {
  max-width: 25%;
}

.b-article__news {
  flex-grow: 1;
  width: 100%;
}

.b-article__item--title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #1f4068;
}

.b-article__inner {
  display: flex;
}

.b-article__post {
  margin-bottom: 50px;
}

.b-grid {
  margin-top: 120px;
}

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

.b-grid__article {
  width: calc(100% / 2 - 40px);
}
.b-grid__article:nth-child(odd) {
  margin-right: 20px;
  margin-left: 20px;
}
.b-grid__article:nth-child(even) {
  margin-right: 20px;
}

.b-footer {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  min-height: 110px;
  width: 100%;
  background-color: #1f4068;
}
.b-footer a {
  color: #fff;
}

.b-footer__inner {
  text-align: center;
  justify-content: space-between;
  display: flex;
  max-width: 1820px;
}

.b-footer__logo img {
  width: 180px;
  height: auto;
}

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

.b-footer__menu {
  display: flex;
  flex-direction: column;
}
.b-footer__menu ul {
  justify-content: space-between;
  min-width: 300px;
  display: flex;
}

.menu__item {
  font-size: 18px;
  padding-bottom: 10px;
}

.social--links {
  display: flex;
}
.social--links a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}

.b-footer__social {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.b-footer--bottom {
  padding-top: 20px;
  font-size: 20px;
}

.b-policy__inner {
  padding-top: 120px;
}

.b-policy__title {
  font-size: 28px;
}

.b-policy__inner p {
  font-size: 16px;
  padding-top: 15px;
}

.b-policy {
  padding-bottom: 35px;
}

.b-policy__inner {
  max-width: 780px;
}

.checklist {
  margin-top: 100px;
  color: #000f46;
}
.checklist__content {
  display: flex;
}
.checklist__image {
  max-width: 40%;
  height: auto;
  margin-right: 100px;
}
.checklist__title {
  max-width: 100%;
}
.checklist__form {
  margin-top: 25px;
}

.form__field {
  position: relative;
  margin-bottom: 20px;
}
.form__field .form__input {
  padding: 20px;
  padding-left: calc(3.6em + 1em);
}
.form input {
  border: 1px solid #cc6f84;
  width: 460px;
}
.form__mail {
  position: relative;
}
.form__mail:before {
  content: "";
  position: absolute;
  top: calc(3.9em / 2 + 1px - 0.7em);
  left: 20px;
  width: 25px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/mail.png");
}
.form__name {
  position: relative;
}
.form__name:before {
  content: "";
  position: absolute;
  top: calc(3.9em / 2 + 1px - 0.7em);
  left: 20px;
  width: 25px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/name.png");
}
.form__number {
  position: relative;
}
.form__number:before {
  content: "";
  position: absolute;
  top: calc(3.9em / 2 + 1px - 0.7em);
  left: 20px;
  width: 25px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/phone.png");
}
.form__question {
  position: relative;
  box-sizing: border-box;
}
.form__question textarea {
  padding-top: calc(3.9em / 2 + 1px - 0.7em);
  padding-left: calc(3.6em + 1em);
}
.form__question:before {
  content: "";
  position: absolute;
  top: calc(3.9em / 2 + 1px - 0.7em);
  left: 20px;
  width: 25px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/pencil.png");
}
.form__placeholder {
  position: absolute;
  top: calc(3.6em / 2 + 1px - 0.7em);
  margin-left: calc(2.4em + 1em);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
  padding-left: 3px;
  padding-right: 3px;
  box-sizing: border-box;
  pointer-events: none;
  font-size: 18px;
}
.form .focused {
  top: -0.5em;
  transform: scale(0.9);
}
.form__text {
  font-size: 20px;
  margin-bottom: 20px;
}
.form .button {
  margin-top: 10px;
}

.b-popup__field input {
  padding-left: calc(3.6em + 1em);
}

.b-popup__title {
  font-weight: 700;
  font-size: 28px;
}

.b-popup__subtitle {
  padding-top: 30px;
  font-size: 20px;
}

.callback__popup {
  border: 1px solid #000;
  text-align: center;
  max-width: 600px;
  color: #000f46;
  padding: 50px;
  width: 600px;
  background-color: #fff;
}
.callback__popup textarea {
  resize: none;
  width: 100%;
  height: 70px;
  border: 1px solid #cc6f84;
}
.callback__popup input {
  border: 1px solid #cc6f84;
  width: 100%;
}

.popup1 {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  background-color: rgba(255, 255, 255, 0);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}

.popup__inner {
  position: relative;
  width: 100%;
  margin: auto;
  background-color: #fff;
  box-sizing: border-box;
  transform: translateY(10vh);
}

.popup1.-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup__close:after,
.popup__close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: #b5b7c9;
}

.popup__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 5;
}

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

.b-popup__field {
  position: relative;
}

.checkbox {
  line-height: 24px;
  font-size: 16px;
  box-sizing: border-box;
}
.checkbox a {
  color: #000f46;
}

.checkbox input[type=checkbox] {
  opacity: 0;
}

.checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
}

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";
  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before {
  background-color: #fff;
  height: 16px;
  width: 16px;
  border: 1px solid;
  left: -3px;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
  top: 3px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 5px;
  width: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 0px;
  top: 7px;
}

/*Hide the checkmark by default*/
.checkbox input[type=checkbox] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type=checkbox]:checked + label::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type=checkbox]:focus + label::before {
  outline: #3b99fc auto 5px;
}

.checkbox__link {
  border-bottom: 1px solid;
}

.b-questions {
  margin-top: 100px;
  margin-bottom: 100px;
}

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

.b-questions__subtitle {
  margin-bottom: 10px;
}

.slick-dots li button:before {
  font-size: 8px;
}

@media screen and (max-width: 1335px) {
  .b-blog__name {
    font-size: 18px;
  }

  .b-director__text {
    right: 5%;
  }

  .b-services__card {
    width: calc(100% / 2 - 40px);
  }
  .b-services__card:hover .card__list {
    opacity: 1;
    transform: translateY(0px);
  }
  .b-services__card:hover .card__title {
    opacity: 1;
    transform: translateY(0px);
  }

  .card__text {
    margin-top: 0;
  }

  .card__list {
    opacity: 1;
  }

  .b-advantages__card {
    width: calc(100% / 3);
    margin-left: 0px;
    margin-right: 0px;
  }

  .b-contact {
    padding-top: 50px;
  }

  .checklist__image {
    max-width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .checklist__image {
    margin-right: 10px;
  }
}
@media screen and (max-width: 979px) {
  .b-blog__name {
    font-size: 24px;
  }

  .b-social--header {
    visibility: hidden;
  }

  .b-advantages__card {
    width: 100%;
  }

  .b-advantages__card--description {
    margin-left: auto;
    margin-right: auto;
  }

  .b-blog__article {
    margin-bottom: 20px;
    width: 90%;
  }
  .b-blog__article:nth-child(odd) {
    margin-right: auto;
    margin-left: auto;
  }
  .b-blog__article:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }

  .b-blog {
    text-align: center;
  }

  .b-blog__name {
    max-width: none;
  }

  .b-reviews__item {
    min-height: 150px;
  }

  .b-services__cards {
    text-align: center;
    display: block;
  }

  .b-services__card {
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - 50px);
  }
  .b-services__card:hover .card__list {
    opacity: 1;
    transform: translateY(0px);
  }
  .b-services__card:hover .card__title {
    opacity: 1;
    transform: translateY(0px);
  }

  .card__text {
    margin-top: 0;
  }

  .card__list {
    opacity: 1;
  }

  .hamburger-menu {
    display: block;
  }

  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
    background-color: #fff;
  }

  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    background-color: #fff;
    transform: rotate(0);
  }

  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    background-color: #fff;
    transform: rotate(90deg);
  }

  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    right: 0;
  }

  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
  }

  .menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition-duration: 0.25s;
  }

  .menu__btn > span::before {
    content: "";
    top: -8px;
  }

  .menu__btn > span::after {
    content: "";
    top: 8px;
  }

  .menu__box {
    z-index: 1;
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #1c3f69;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
    transition-duration: 0.25s;
  }

  .menu__item {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    transition-duration: 0.25s;
  }

  #menu__toggle {
    opacity: 0;
  }

  .nav__item {
    visibility: hidden;
  }

  .nav__item--hamb {
    margin: 40px;
  }
  .nav__item--hamb a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
  }
  .nav__item--hamb:last-child {
    position: absolute;
    bottom: 1%;
  }

  .header .header__inner {
    padding-bottom: 0;
  }

  .b-grid__inner {
    display: block;
    text-align: center;
  }

  .b-grid__article {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .b-grid__article:nth-child(odd) {
    margin-right: auto;
    margin-left: auto;
  }
  .b-grid__article:nth-child(even) {
    margin-right: auto;
  }

  .b-article__inner {
    display: block;
  }

  .b-article__other {
    max-width: 100%;
  }

  .b-article__other {
    margin-top: 50px;
  }

  .b-article__post {
    width: auto;
  }

  .b-article__text {
    max-width: 100%;
  }

  .b-article__image {
    width: 100%;
  }

  .b-owner__card {
    margin-left: 10%;
    margin-right: 10%;
  }

  .b-owner__img img {
    width: 100%;
  }

  .b-owner__info {
    margin-top: 20px;
  }

  .b-owner__inner {
    display: block;
  }

  .b-footer__logo {
    display: none;
  }

  .b-reviews__text {
    flex-grow: 1;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.55;
  }
  .b-reviews__text:before {
    left: 0;
  }

  .checklist .form__input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .b-blog {
    padding-top: 50px;
  }

  .b-reviews {
    margin-top: 50px;
  }

  .b-questions {
    margin-top: 50px;
  }

  .b-services {
    padding-top: 50px;
  }

  .b-advantages {
    padding-top: 50px;
  }

  .b-director__text {
    margin-top: 80px;
  }

  .b-reviews__content {
    margin-left: 25px;
  }

  .page__subtitle {
    margin-bottom: 40px;
    font-size: 18px;
    max-width: none;
    margin-right: 20px;
    margin-left: 20px;
  }

  .page__title {
    font-size: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .b-services {
    padding-bottom: 30px;
  }

  .b-contact__info * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .b-contact__info--adress {
    padding-top: 20px;
  }

  .b-contact__info--time {
    padding-bottom: 20px;
  }

  .callback__popup {
    max-width: 530px;
    width: auto;
  }

  .b-footer__menu {
    text-align: left;
  }

  .menu__item {
    padding-left: 0;
  }

  .b-footer__inner {
    align-items: baseline;
  }

  .b-contact__inner {
    flex-direction: column;
  }

  .b-contact__card:nth-child(3) {
    order: 4;
  }

  .b-contact__card {
    width: 100%;
  }

  .checklist__content {
    flex-direction: column;
  }

  .checklist__image {
    max-width: 80%;
    text-align: center;
    margin-right: 100px;
  }

  .form__text {
    text-align: center;
    font-size: 18px;
  }

  .form__fields {
    text-align: center;
    max-width: 360px;
    margin: auto;
  }

  .form__field:before {
    display: none;
  }

  .form__field .form__input {
    padding-left: calc(2.4em + 1em);
  }

  .callback__popup .form__placeholder {
    margin-left: calc(0.4em + 1em);
  }
  .callback__popup .form__input {
    padding-left: calc(1em + 1em);
  }

  .checklist__form {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .b-article {
    margin-left: 10px;
    margin-right: 10px;
  }

  .b-blog__article {
    margin-left: 10px;
    margin-right: 10px;
  }

  .b-reviews__subtitle {
    margin-bottom: 10px;
  }

  .b-reviews__text {
    font-size: 14px;
  }

  .card__title {
    padding-bottom: 20px;
  }
  .card__title:after {
    bottom: -10px;
  }

  .card__list {
    font-size: 14px;
  }

  .menu__item {
    display: none;
  }

  .b-footer__inner {
    align-items: center;
    flex-direction: column-reverse;
  }

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

  .b-popup__subtitle {
    font-size: 18px;
  }

  .callback__popup {
    padding: 50px 30px;
  }
  .callback__popup .form__placeholder {
    margin-left: calc(0.4em + 1em);
  }

  .checkbox label {
    padding-left: 0;
  }
}
@keyframes opacityBg {
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  100% {
    margin-right: 0px;
    opacity: 1;
    transform: scale(1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  55% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}