* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* $color-text: #73818c; */
body {
  font-size: 17px;
  font-family: "Oswald", sans-serif;
  color: #29292a;
}

.container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
container__map {
	margin: 0 auto;
}

.dark__subtitle {
  color: #db383a;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.dark__title {
  color: #fff;
  max-width: 600px;
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.dark__text {
  color: #fdfdfe;
  margin-bottom: 65px;
}

.none {
  display: none;
}

.white__title {
  color: #374b5c;
  max-width: 600px;
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.white__text {
  max-width: 600px;
  font-size: 18px;
  padding-bottom: 25px;
}

.header {
  /*  padding-top: 30px; */
  height: 200px;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.logo__link {
  text-align: center;
}

.logo__icon {
  width: 120px;
}

.logo__name {
  color: #fdfdfe;
}
.nav__item a:hover {
  color: #db383a;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__contact-tel {
  position: relative;
}
.header__contact-tel::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background-image: url(./../../perspektiva/img/pnone-25.png);
  background-repeat: no-repeat;
  background-position: center;
}

.header__contact-phono {
  color: #fdfdfe;
}

.nav-button {
  display: none;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	    column-gap: 12px;
}

.nav__link {
  color: #fdfdfe;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 15px;
}

@media (max-width: 900px) {
  .nav__list {
    display: none;
  }
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .nav-button {
    display: block;
    top: 3px;
    right: 30px;
    position: fixed;
    width: 54px;
    height: 50px;
    z-index: 9;
  }
  .nav.open .nav__list {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #374b5c;
    z-index: 1;
    padding: 46px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 35px;
    font-size: 34px;
    font-weight: 600;
  }
.nav.open .nav__drop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 180px;
  right: 0; }
	
	.nav.open .dropdown::after {
          left: 85px;
        top: 33px; }
	
  .nav__link {
    -webkit-transition: color 3s ease;
    transition: color 3s ease;
  }
  .nav__link:hover {
    color: #ffb342;
  }
  .flesh {
    margin-top: -7px;
  }
}
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.socials__item {
  width: 30px;
  height: 30px;
}

.socials__link.socials__icon {
  color: #fdfdfe;
  fill: antiquewhite;
}

.socials__icon {
  width: 30px;
  height: 30px;
}

.banner {
  margin-top: -250px;
  padding-top: 300px;
  padding-bottom: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.85)), color-stop(rgba(49, 67, 82, 0.85)), to(rgba(49, 67, 82, 0.85))), url("./../../perspektiva/img/header-bg.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85)), url("./../../perspektiva/img/header-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /*  height: 100vh; */
}

.banner__row {
  max-width: 650px;
}

.bannerr__subtitle {
  color: #db383a;
  font-size: 20px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.banner__title {
  color: #fff;
  font-weight: 600;
  font-size: 70px;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.banner__text {
  color: #fff;
  padding-bottom: 60px;
}
.banner__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner__btn {
  margin-right: 45px;
}

.banner__btn-accept {
  background-color: #db383a;
  padding: 15px 30px 15px 30px;
  font-size: 18px;
  text-transform: uppercase;
  color: #101018;
  max-width: 160px;
  margin-right: 25px;
}

.banner__btn-link {
  color: #fdfdfe;
  text-transform: uppercase;
}

.services {
  padding: 90px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), to(rgba(255, 255, 255, 0.7))), url("./../img/services-bg.jpg");
  background: linear-gradient(#ffffff 40%, rgba(255, 255, 255, 0.7) 100%), url("./../img/services-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.services__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}

.services__subtitle {
  color: #db383a;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  max-width: 1000px;
}

.services__item {
  max-width: 260px;
  text-align: center;
}

.services__name {
  font-weight: 500;
  font-size: 28px;
  padding-bottom: 15px;
  line-height: 1.1;
  color: #374b5c;
}

.services__description {
  line-height: 1.8;
  padding-bottom: 20px;
}
.services__description span {
  font-weight: 500;
}

.services_view {
  color: #db383a;
  letter-spacing: 4px;
}

.benefits {
  padding: 70px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.85)), color-stop(rgba(49, 67, 82, 0.85)), to(rgba(49, 67, 82, 0.85))), url("./../img/benefits-bg.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85)), url("./../img/benefits-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.benefits__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin-bottom: -250px;
}

.benefits__item {
  padding: 30px;
  background-color: #fdfdfe;
  border: 1px solid #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
}

.benefits__item-img {
  width: 60px;
  height: auto;
}

.benefits__name {
  font-weight: 500;
  text-align: center;
}

.benefits__description {
  text-align: center;
}

.questions {
  padding-top: 300px;
  padding-bottom: 100px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), to(rgba(255, 255, 255, 0.7))), url("./../img/services-bg.jpg");
  background: linear-gradient(#ffffff 40%, rgba(255, 255, 255, 0.7) 100%), url("./../img/services-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.questions__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.questions__content {
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}

.questions__subtitle {
  color: #db383a;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.questions__title {
  color: #374b5c;
  max-width: 600px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.questions__text {
  padding-bottom: 50px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #b6b6b6;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #f3f3f3;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #101018;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #db383a;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #db383a;
  border: 1px solid #db383a;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #db383a;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 200ms linear, max-height 200ms linear;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  color: #29292a;
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.contact {
  padding: 70px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.85)), color-stop(rgba(49, 67, 82, 0.678)), to(rgba(49, 67, 82, 0.85))), url("./../img/benefits-bg.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.678), rgba(49, 67, 82, 0.85)), url("./../img/benefits-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	padding-bottom: 45px;
}

.contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact__inner {
  font-size: 18px;
  line-height: 1.1;
}

.contact__title {
  color: #db383a;
  padding-bottom: 15px;
}
.contact__title--footer {
  padding-top: 20px;
}

.contact__street {
  color: #fdfdfe;
  padding-bottom: 15px;
  position: relative;
}
.contact__street::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 11px;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background-image: url(./../../perspektiva/img/location-25.png);
  background-repeat: no-repeat;
  background-position: center;
}

.contact__mail {
  position: relative;
}
.contact__mail::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 11px;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background-image: url(./../../perspektiva/img/mail-25.png);
  background-repeat: no-repeat;
  background-position: center;
}
.contact__mail a {
  color: #fdfdfe;
}

.contact__phone {
  padding-bottom: 15px;
  position: relative;
}
.contact__phone::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 13px;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background-image: url(./../../perspektiva/img/pnone-25.png);
  background-repeat: no-repeat;
  background-position: center;
}
.contact__phone a {
  color: #fdfdfe;
}

.contact__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__map {

  width: 100%;
}

.footer {
  background-color: #314352;
  -webkit-transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  color: #b4b4b4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 60px 0;
}

.footer__list {
  display: grid;
  gap: 15px;
}

.footer__link {
  color: #b4b4b4;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 18px;
}
.footer__link--title {
  color: #fdfdfe;
}

.footer__content {
  display: grid;
  gap: 15px;
}

.footer__content-title {
  color: #fdfdfe;
  font-size: 18px;
}

.footer__content-text {
  line-height: 1.4;
}

.footer__contact {
  padding-left: 35px;
}

.footer__bottom {
  -webkit-box-shadow: inset 0 4px 100px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 4px 100px rgba(0, 0, 0, 0.2);
  width: 100%;
  min-width: 50px;
  padding: 25px;
	display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.contact--page {
background-image: url(./../../perspektiva/img/wrapper-bg.png);
  padding: 45px 0 0 0;

}

.header--page {
  height: 180px;
  background-color: #374b5c;
}

.header__bottom {
  padding: 15px 0;
  height: 380px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.87)), to(rgba(49, 67, 82, 0.85))), url("./../img/bg-page.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.87), rgba(49, 67, 82, 0.85) 100%), url("./../img/bg-page.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__bottom-title {
  color: #fdfdfe;
  font-weight: 500;
  font-size: 50px;
}



.contact__address--page {
  margin: 35px 0;
}

.contact__phone--page a,
.contact__mail--page a,
.contact__street--page {
  color: #29292a;
  padding-bottom: 20px;
}
.contact__mail--page a:hover {
	color: #db383a;
}
.contact__street--page::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 11px;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background-image: url(./../../perspektiva/img/location.svg);
    background-repeat: no-repeat;
    background-position: center;
	
}
.contact__mail--page::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 11px;
  width: 30px;
    height: 30px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background-image: url(./../../perspektiva/img/email.svg);
    background-repeat: no-repeat;
    background-position: center;
	
}
.call {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.87)), to(rgba(49, 67, 82, 0.85))), url("./../img/services-bg-page.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.87), rgba(49, 67, 82, 0.85) 100%), url("./../img/services-bg-page.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container__services {
  max-width: 1000px;
  padding: 35px;
margin: 0 auto;
}

.call__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 0;
}

.call__text {
  line-height: 1.1;
  text-align: center;
}

.call__title {
  color: #fdfdfe;
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 15px;
}

.call__phone a {
  color: #db383a;
  font-size: 48px;
  font-weight: 500;
}
.call__email {
  position: relative;
  margin-top: 15px; }

.call__email::before {
    content: "";
    position: absolute;
        left: 400px;
    top: 15px;
    width: 30px;
    height: 30px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background-image: url(./../../perspektiva/img/mail-25.png);
    background-repeat: no-repeat;
    background-position: center;
}

.call__email a {
	color: #fdfdfe;
font-size: 22px;
}

.call__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.call__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(157, 157, 157, 0.3);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px;
}

.call__card-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}

.call__card-text {
  color: #b4b4b4;
  font-size: 17px;
  font-weight: 400;
}

.scroll-to-top {
  position: relative;
}

.btn-position {
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 20;
}

.btn-style {
  background-color: #374b5c;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: #fff;
  cursor: pointer;
  -webkit-animation: movebtn 3s ease-in-out infinite;
          animation: movebtn 3s ease-in-out infinite;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn-style:hover {
  -webkit-animation: none;
          animation: none;
  background: #fff;
  color: #374b5c;
  border: 1px solid #374b5c;
}

@-webkit-keyframes movebtn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes movebtn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  25% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.found {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.85)), color-stop(rgba(49, 67, 82, 0.85)), to(rgba(49, 67, 82, 0.85))), url("./../img/header-bg.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85), rgba(49, 67, 82, 0.85)), url("./../img/header-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.found__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fdfdfe;
  height: 100vh;
  overflow: hidden;
  row-gap: 15px;
}

.found__title {
  font-size: 140px;
  line-height: 1.1;
  font-weight: 600;
}

.found__title span {
  color: rgba(255, 255, 255, 0.4549019608);
}

.found__subtitle {
  font-size: 1.6rem;
  line-height: 1.1;
}

.found__button {
  margin-top: 15px;
  padding: 15px 30px 15px 30px;
  background-color: #db383a;
  text-transform: uppercase;
  -webkit-transition: all 4s ease;
  transition: all 4s ease;
}
.found__button a {
  color: #101018;
}
.found__button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  font-weight: 500;
}

.about {
  padding: 90px 0;
  background-image: url(./../../perspektiva/img/wrapper-bg.png);
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.politic__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	flex-direction: column;

  -webkit-row-gap: 15px;
     -moz-row-gap: 15px;
          row-gap: 15px;

}


.about__inner {
  width: 50%;
}

.about__img {
  width: 80%;
  -webkit-filter: brightness(100%) contrast(100%) saturate(25%) blur(0px) hue-rotate(0deg);
          filter: brightness(100%) contrast(100%) saturate(25%) blur(0px) hue-rotate(0deg);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}
.about__img:hover {
  -webkit-filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
          filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.white__text--ital {
  font-style: italic;
  font-size: 15px;
}

.accreditation {
  padding-bottom: 90px;
}

.accreditation__title {
  font-size: 40px;
  margin-bottom: 20px;
}

.accreditation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.accreditation__img1 {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  width: 60%;
}

.accreditation__img2 {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  width: 40%;
}

.choose {
  padding: 90px 0;
}

.choose__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.choose__img {
  height: 250px;
  width: 50%;
}

.choose__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.choose__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
	margin-top: 25px;
}

.choose__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.choose__card-img {
  padding-top: 10px;
}

.choose__card-bg {
  width: 80px;
  height: 80px;
}

.choose__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.choose__card-title {
  font-size: 21px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .banner__title {
    font-size: 55px;
  }
  .services__header {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    font-size: 40px;
  }
  .questions__title {
    font-size: 40px;
  }
  .footer__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .questions__title {
    font-size: 40px;
  }
  .questions__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .questions__content {
    max-width: 600px;
  }
  .dark__text {
    margin-bottom: 45px;
  }
  .header__bottom {
    height: 280px;
  }
  .header__bottom-title {
    font-size: 60px;
  }
}
@media (max-width: 890px) {
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about__inner {
    width: 100%;
  }
  .about__img {
    max-width: 350px;
  }
}
@media (max-width: 867px) {
  .benefits__row {
    gap: 25px;
  }
  .benefits__item {
    padding: 20px;
  }
  .call__row {
    row-gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .choose__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .choose__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .banner__row {
    text-align: center;
  }
  .banner__title {
    font-size: 40px;
  }
  .services__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    text-align: center;
  }
  .services__cards {
	  grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
  .white__title {
    font-size: 40px;
  }
  .benefits__row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 677px) {
  .footer__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .call__phone a {
    font-size: 42px;
  }
  .call__card {
    padding: 25px;
  }
  .accreditation__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
  .choose__img {
    height: 180px;
  }
  .white__title {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .header__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
  .banner__title {
    font-size: 35px;
  }
  .accordion button .accordion-title {
    padding: 1em 1em 1em 0;
  }
  .accordion button {
    font-size: 1.1rem;
  }
  .questions__title {
    font-size: 30px;
  }
	.banner__btn-accept {
    margin-right: 5px; 
		padding: 10px 17px;
    font-size: 17px;
	} 
}


@media (max-width: 360px) {
  .banner {
    padding-top: 320px;
  }
}
@media (max-width: 340px) {
  .white__title {
    font-size: 28px;
  }
}
.register {
  background-image: url(./../../perspektiva/img/wrapper-bg.png);
  padding: 60px 0;
}

.register__row {
  display: flex;
}
.register__content {
  display: flex;
  flex-direction: column;
}
.register__title {
  color: #374b5c;
  max-width: 600px;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.registr__card {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.registr__contact {
  display: flex;
  column-gap: 15px;
  transition: all 10s ease;
}
.registr__contact :hover {
  color: #db383a;

}
.registr__phone a {
  color: inherit;
}

.socials__item :hover {
  fill: #db383a;
}
.wpcourses-breadcrumbs a {
 color: #fdfdfe;
    text-transform: uppercase;

}
.wpcourses-breadcrumbs:hover > a {
  color: #db383a;
}
.wpcourses-breadcrumbs-sep {
   color: #fdfdfe;
}
.wpcourses-breadcrumbs-last {
	 color: #fdfdfe;
    text-transform: uppercase;
  text-decoration: underline;
 
}

#wpcf7-f48-o2{
  color: #374b5c;
   background-color: #f6f6f8;
  margin: 0 auto;
  max-width: 600px;
  padding: 25px;
  border: 1px solid #9f9f9f;
} 

#wpcf7-f48-o1 {
  color: #374b5c;
  background-color: #C7D0CC;
  margin: 0 auto;
  max-width: 600px;
  padding: 25px;
  border: 1px solid #9f9f9f;
} 
#wpcf7-f48-o1 input,
textarea, select {
  border: 1px solid #eaeaea;

  background-color: #fff;
  padding: 5px 15px;
  margin: 4px 0 8px 0;

  color: #29292a;
}

.wpcf7-form p {
  margin-bottom: 25px;
}
.wpcf7-form p:nth-of-type(3)
{
  margin-bottom: 5px;
}

.font__checkboxes {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
	margin-top: 15px;
}
.wpcf7-list-item-label {
  padding-left: 15px;
}

.form__text-small {
	font-size: 14px;
}
.form__text-title{
	font-size: 24px;
}

.wpcf7-submit{
background-color: #db383a!important;
	color:#fff!important;
padding: 10px 15px
}


.wpcf7 input[type="text"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 select:focus, .wpcf7 input[type="checkbox"]:focus{
border:1px solid #fff;
-moz-box-shadow: 0 0 6px #fff;
-webkit-box-shadow: 0 0 6px #fff;
box-shadow:0 0 6px #fff;   
}
.wpcf7-not-valid{
border:1px solid red!important;
}

.wpcf7 form.invalid .wpcf7-response-output{
border-color: #dc3232!important;
   }
.contact__phone-page {
	    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.contact__phone-page
	 :hover {
  color: #db383a;
}
@media (max-width: 410px) {
  #wpcf7-f48-o1 input,
  textarea,
  select {
    max-width: 90%;
  }
  .font__checkboxes {
    row-gap: 7px;
    margin-top: 10px;
  }
  .wpcf7-form p {
    margin: 10px;
  }
  .form__text-small {
    font-size: 12px;
  }
}
.what__subtitle--padding {
    padding-top: 30px;
	text-align: center;
}
}
.what {
  padding: 60px 0px;
}

.what__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.what__title {
  color: #374b5c;
  max-width: 600px;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.what__subtitle {
  color: #db383a;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.what__text {
  font-size: 18px;
  padding-bottom: 25px;
}

.what__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.what__item {
  position: relative;
  padding-left: 30px;
}

.what__item::before {
  content: " ";
  color: #db383a;
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background-image: url(https://lab-perspektiva.ru/wp-content/themes/perspektiva/img/checkmark.png);
  background-repeat: no-repeat;
  background-position: center;
}

.what__img {
  max-width: 30%;
}

.sbkts {
  padding: 60px 0px;
}

.sbkts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.sbkts__img {
  max-width: 40%;
}

.sbkts__content  {
  max-width: 60%;
}

.sbkts__title, .epsm__title {
  color: #374b5c;
  max-width: 600px;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.epsm__title {
	 margin-top: 75px;
}

.sbkts__text {
  font-size: 18px;
  padding-bottom: 25px;
}

.sbkts__title2 {
  color: #374b5c;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 60px 0px 30px 0px;
}

.sbkts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.sbkts__item {
  position: relative;
  padding-left: 40px;
}

.sbkts__item::before {
  content: " ";
  color: #db383a;
  position: absolute;
  display: block;
  left: 0px;
  top: 5px;
  width: 28px;
  height: 21px;
  margin-right: 10px;
  background-image: url(https://lab-perspektiva.ru/wp-content/themes/perspektiva/img/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
}

.doks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  padding-left: 25px;
}
.doks__item--thick {
	font-weight: 700;
}
.doks__item::marker {
  color: #db383a;
}
.doks__sublist {
    list-style-type: decimal;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 25px;
}

.doks__subitem {
    margin-bottom: 5px;
    line-height: 1.5;
}

.doks__subitem:last-child {
    margin-bottom: 0;
}
.doks__explanation {
    margin-top: 20px;
    padding-left: 25px;
   
}
.form {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 67, 82, 0.87)), to(rgba(49, 67, 82, 0.85))), url("https://lab-perspektiva.ru/wp-content/themes/perspektiva/img/services-bg-page.jpg");
  background: linear-gradient(rgba(49, 67, 82, 0.87), rgba(49, 67, 82, 0.85) 100%), url("https://lab-perspektiva.ru/wp-content/themes/perspektiva/img/services-bg-page.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 0px;
}

.form__title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #374b5c;
  background-color: #C7D0CC;
padding: 20px;
    border: 1px solid #9f9f9f;
    max-width: 1000px;
	 -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;


}
.wpcf7-form-control-wrap {
  background-color: #fff;
}

#wpcf7-f53-o3 input, textarea, select {
  padding: 5px 15px;
}
#wpcf7-f53-o1 input, textarea, select {
  padding: 5px 15px;
}




.sbkts__btn {
	margin-top: 45px;
	transition: all 0.3s ease-in;
}
 .sbkts__btn :hover {
	background-color: #c11f21;
	 color: #fff;
 }
.decoration__btn {
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in; }

.decoration__btn:hover {
  background-color: #c11f21; }


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Скрыто по умолчанию */
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.cookie-btn.accept {
  background: #27ae60;
  color: white;
}

.cookie-btn.reject {
  background: #e74c3c;
  color: white;
}

.cookie-btn:hover {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .cookie-banner {
    padding: 15px 20px;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cookie-content p {
    font-size: 14px;
    max-width: 80%;
  }

  .cookie-buttons {
    justify-content: flex-end;
  }

  .cookie-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}


.basic {
	margin-top: 40px;
}

.what__text--thick {
	margin-top: 45px;
	margin-bottom: 40px;
	font-weight: 700;
	text-align: center;
}

.document__row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.document__content {
	margin-bottom: 25px;
	width: 70%;
}

.document__text {
	margin-top: 15px;
	margin-bottom: 15px;
}
.document__text span {
	font-weight: 700;
}
.document__subtitle {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.document__text-min {
	text-align: center;
}
.tabl {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tabl__header {
  background-color: #f5f5f5;
}

.tabl__row {
  border-bottom: 2px solid #737883;
  transition: background-color 0.2s ease;
	
}

.tabl__row:nth-child(even) {
  background-color: #fafafa;
}

.tabl__row:hover {
  background-color: #f0f7ff;
}

.tabl__cell {
  padding: 16px 12px;
  border: 2px solid #737883;
  vertical-align: top;
  text-align: left;
  line-height: 1.4;
}

.tabl__cell--header {
  font-weight: bold;
  background-color: #2c3e50;
  color: #fff;
  border-bottom: 2px solid #34495e;
  padding: 14px 12px;
}

.tabl__cell--number {
  font-weight: bold;
  text-align: center;
  background-color: #f9f9f9;
  width: 50px;
}

.tabl__cell--case {
  min-width: 200px;
}

.tabl__cell--docs {
  min-width: 300px;
}

.tabl__doc-section {
  margin-bottom: 16px;
}

.tabl__doc-section:last-child {
  margin-bottom: 0;
}

.tabl__doc-title {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 13px;
}

.tabl__doc-list {
  margin: 8px 0;
  padding-left: 20px;
}

.tabl__doc-item {
  margin-bottom: 6px;
  line-height: 1.4;
}

.tabl__doc-text {
  line-height: 1.4;
  color: #555;
  display: block;
}


@media (max-width: 1024px) {
  .tabl {
    font-size: 13px;
  }
  
  .tabl__cell {
    padding: 14px 10px;
  }
  
  .tabl__doc-list {
    padding-left: 18px;
  }
}


@media (max-width: 768px) {
  .tabl {
    display: block;
    font-size: 14px;
    box-shadow: none;
    border: 2px solid #737883;
  }
  
  .tabl__header {
    display: none;
  }
  
  .tabl__body {
    display: block;
  }
  
  .tabl__row {
    display: block;
    margin-bottom: 20px;
    border: 2px solid #737883;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
		border-bottom: 2px solid #737883;
  }
  
  .tabl__row:nth-child(even) {
    background: white;
  }
  
  .tabl__cell {
    display: block;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid #737883;
    position: relative;
    padding-left: 40%;
	padding-bottom: 25px;  
  }
  
  .tabl__cell:last-child {
    border-bottom: none;
  }
  
  .tabl__cell::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    width: 35%;
    font-weight: bold;
    color: #2c3e50;
    font-size: 12px;
  }
  
  .tabl__cell--number {
    background-color: #f8f9fa;
    font-weight: bold;
    padding-left: 15px;
    text-align: left;
  }
  
  .tabl__cell--number::before {
    display: none;
  }
  
  .tabl__doc-section {
    margin-bottom: 12px;
  }
  
  .tabl__doc-title {
    font-size: 14px;
  }
  
  .tabl__doc-list {
    padding-left: 16px;
  }
}


@media (max-width: 480px) {
  .tabl__cell {
    padding-left: 45%;
  }
  
  .tabl__cell::before {
    width: 40%;
    font-size: 11px;
  }
  
  .tabl {
    font-size: 13px;
  }
  
  .tabl__doc-list {
    padding-left: 14px;
  }
}





@media (max-width: 930px) {
  .form__wrapper {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }
@media (max-width: 767px) {
  .sbkts__title {
    font-size: 30px; }

  .sbkts__title2 {
    font-size: 25px; } }
@media (max-width: 700px) {
  .what__row {
   -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 35px; }

  .sbkts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 35px; } }
@media (max-width: 530px) {
  .sbkts__title {
    font-size: 25px; }

  .sbkts__title2 {
    font-size: 20px; }

  #wpcf7-f53-o3 input,
  textarea,
  select {
    max-width: 350px; }

  #wpcf7-f53-o1 input,
  textarea,
  select {
    max-width: 350px; } }
@media (max-width: 430px) {
  .sbkts__title {
    font-size: 23px; }

  .sbkts__title2 {
    font-size: 20px; }

  #wpcf7-f53-o3 input,
  textarea,
  select {
    max-width: 250px; }

  #wpcf7-f53-o1 input,
  textarea,
  select {
    max-width: 250px; } }
@media (max-width: 370px) {
  .sbkts__title {
    font-size: 20px; }

  .sbkts__title2 {
    font-size: 18px; }

  #wpcf7-f53-o3 input,
  textarea,
  select {
    max-width: 200px; }

  #wpcf7-f53-o1 input,
  textarea,
  select {
    max-width: 200px; } }


.dropdown {
  position: relative; }

  .dropdown::after {
    content: "";
    position: absolute;
    left: 73px;
    top: 50%;
    width: 15px;
    height: 15px;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    background-image: url(https://lab-perspektiva.ru/wp-content/themes/perspektiva/img/small-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center; }


.nav__drop {
  display: none;
  position: absolute;
  background-color: rgba(55, 75, 92, 0.85);
	 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  z-index: 1;
  padding: 10px; }

.drop__link {
  color: #fdfdfe;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1;
  padding: 5px 0px; }

.drop__link a:hover {
  color: #db383a; }


.dropdown:hover .nav__drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px; }

@media (max-width: 500px) {
  .header__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;   }
  .header--page {
    height: 280px;
  }
  .header__contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__bottom {
    height: 220px;
  }
  .header__bottom-title {
    font-size: 40px;
  }
  .services__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .dark__title {
    font-size: 40px;
  }
  .questions__title {
    font-size: 35px;
  }
  .contact__address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
  .call__phone a {
    font-size: 36px;
  }
  .call__card {
    padding: 20px;
  }
  .accreditation__title {
    font-size: 30px;
    text-align: center;
  }
  .choose__img {
    height: 140px;
  }
  .choose__card-bg {
    width: 60px;
    height: 60px;
  }
	.what__title {
  font-size: 35px;
}
}
@media (max-width: 385px) {
  .banner__title {
    font-size: 30px;
  }
  .white__title {
    font-size: 30px;
  }
  .call__phone a {
    font-size: 30px;
  }
  .choose__img {
    height: 100px;
  }
  .choose__card-bg {
    width: 40px;
    height: 40px;
  }
	  .banner__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; } 
	.what__title {
  font-size: 25px;
}
}

