body {
  margin: 0;
  overflow-x: hidden;
  font-family: Montserrat;
}
h1, h2, h3, h4, h5, p {
  margin: 0;
  transition: all 350ms;
}
a {
  text-decoration: none;
  color: unset;
  transition: all 350ms;
}

.button {
  height: 52px;
  max-height: 52px;
  border: #529BEF solid 1px;
  background: #529BEF;
  color: white;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-sizing: border-box;
  transition: all 350ms;
  position: relative;
}
.button svg {
  display: none;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button.alt {
  background: white;
  color: #529BEF;
}
.button.alt:disabled {
  background: #e7e7e7;
  color: #3c3c3c;
  border-color: #6a6a6a;
}
.button.alt:disabled svg {
  display: block;
}
.button.search-button {
  background: #E50E19;
  border-color: #E50E19;
}
.upper {
  text-transform: uppercase;
}
.noscroll {
  overflow: hidden !important;
}
.divider {
  width: 100%;
  border-top: 1px solid #38383880;
}

.fader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 390;
  background: rgba(0, 0, 0, .65);
  display: none;
}
.fader.active {
  display: flex;
}
.dialog {
  background: white;
  position: fixed;
  top: 150%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 400;
  width: 100vw;
  max-width: 900px;
  height: auto;
  max-height: 87vh;
  overflow: hidden;
  transition: all 350ms;
  font-family: Montserrat;
}
.dialog.active {
  top: 50%;
  transform: translate(-50%, -50%);
}
.dialog .content {
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: auto;
  max-height: 87vh;
  padding: 60px;
}
.dialog .content button.close-dialog {
  position: absolute;
  right: 13px;
  top: 13px;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 9999rem;
  padding: 3px;
  cursor: pointer;
}
.dialog .content button.close-dialog svg {
  fill: #999999;
  transition: all 350ms;
}
.dialog .content button.close-dialog:hover svg {
  fill: #333333;
}
.dialog .content .container {
  display: none;
  flex-direction: column;
}
.dialog .content .container.active {
  display: flex;
}
.dialog .content .container h2 {
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  line-height: 43.88px;
  text-align: left;
  color: #383838;
}
.dialog .content .container h3 {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  line-height: 20.88px;
  text-align: left;
  color: #383838;
  margin-top: 24px;
}
.dialog .content .container form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 32px;
  margin-top: 60px;
}
.dialog .content .container .form-field {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.dialog .content .container .form-field.long {
  grid-column: span 2 / span 2;
}
.dialog .content .container .form-field.row {
  flex-direction: row;
  align-items: center;
}
.dialog .content .container .form-field label {
  font-size: 20px;
  font-weight: 500;
  line-height: 24.38px;
  text-align: left;
  color: #383838;
}
.dialog .content .container .form-field:has(input[type="checkbox"]) label {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: #383838;
}
.dialog .content .container .form-field input,
.dialog .content .container .form-field textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  padding: 16px;
  box-sizing: border-box;
  border: #E3E8ED solid 1px;
  outline: none;
  background: white;
  font-family: Montserrat;
}
.dialog .content .container .form-field input {
  height: 52px;
}
.dialog .content .container .form-field input[type="checkbox"] {
  height: 24px;
  width: 24px;
  margin: 0;
  margin-right: 16px;
}
.dialog .content .container .form-field a {
  color: #529BEF;
  text-decoration: underline;
}
.dialog .content .container .button {
  margin-top: 60px;
  width: 240px;
}

.selector {
  position: relative;
}
.selector .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  box-sizing: border-box;
  border: #E3E8ED solid 1px;
  padding: 16px;
  cursor: pointer;
}
.selector .title p {
  overflow: hidden;
  height: 20px;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
}
.selector .title svg {
  margin-left: 16px;
  transition: all 350ms;
}
.selector .title input.selector-search-field {
  display: none;
  height: 20px;
  padding: 0;
  background: white;
  outline: none !important;
  border: none !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
}
.selector.active .title svg {
  transform: rotate(180deg);
}
.selector.active .title p {
  display: none;
}
.selector.active .title input.selector-search-field {
  display: block;
}
.selector .autocomplete {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 24px;
  width: 100%;
  max-height: 0;
  z-index: 4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: white;
  box-shadow: 0px 10px 40px 0px #0000001A;
  transition: max-height 350ms;
}
.selector.active .autocomplete {

  overflow: auto;
  max-height: 250px;

}
.selector .autocomplete .item {
  padding: 10px;
  margin: 0 8px;
  cursor: pointer;
  color: #383838;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  transition: all 350ms;
}
.selector .autocomplete .item:first-child {
  margin-top: 8px;
}
.selector .autocomplete .item:last-child {
  margin-bottom: 8px;
}
.selector .autocomplete .item:hover,
.selector .autocomplete .item.active {
  background: #529BEF30;
}

.file-selector {
  width: 100%;
  display: flex;
  align-items: center;
  height: 52px;
  box-sizing: border-box;
  border: #E3E8ED solid 1px;
  cursor: pointer;
  position: relative;
}
.file-selector input[type="file"] {
  display: none;
}
.file-selector svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
}
.file-selector label {
  font-family: Montserrat;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 19.5px !important;
  text-align: left !important;
  color: #38383880 !important;
  margin: 0 16px 0 52px !important;
  cursor: pointer;
}

.notification {
  position: fixed;
  left: 0;
  bottom: -100px;
  z-index: 410;
  width: 100vw;
  padding: 15px 24px;
  color: white;
  transition: all 350ms;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  font-family: Montserrat;
  box-sizing: border-box;
}
.notification.active {
  bottom: 0;
}
.notification.error {
  background: #CF0000;
}
.notification.success {
  background: #26bb79;
}
.notification.warn {
  background: #d3951e;
}

.hidden {
  display: none !important;
}
.blue {
  color: #529BEF;
}

footer article, header {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  display: flex;
  flex-direction: column;
  color: #383838;
}
header .top {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .top .logo, header .top .logo svg {
  height: 88px;
  width: 276px;
  overflow: hidden;
}
header .top .searchbar {
  margin: 0 32px;
  height: 52px;
  flex: 1;
  position: relative;
  box-sizing: border-box;
}
header .top .searchbar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
}
header .top .searchbar input {
  width: 100%;
  height: 52px;
  border: #38383880 solid 1px;
  outline: none;
  background: white;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  padding: 0 16px 0 52px;
  box-sizing: border-box;
}
header .top .personal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
header .top .personal .links {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-right: 24px;
}
header .top .personal .links a {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-align: right;
  transition: all 350ms;
}
header .top .personal .links a[title="Email"] {
  font-weight: 400;
}
header .top .personal .links a:hover, header .top .personal .links a:active {
  color: #529BEF;
}
header .top .personal .language-selector {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 24px;
}
header .top .personal .language-selector .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: white;
  width: 100%;
  height: 100%;
}
header .top .personal .language-selector .title label {
  cursor: pointer;
  transition: all 350ms;
}
header .top .personal .language-selector .title svg {
  fill: #383838;
  transition: all 350ms;
  margin-left: 8px;
}
header .top .personal .language-selector .title:hover label {
  color: #529BEF;
}
header .top .personal .language-selector .title:hover svg {
  fill: #529BEF;
}
header .top .personal .language-selector.active .title svg {
  transform: rotate(180deg);
}
header .top .personal .language-selector a, header .top .personal .language-selector label {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
}
header .top .personal .language-selector .languages {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 16px;
  width: auto;
  background: white;
  border: 1px solid #e3e8ed;
  border-top: none;
  border-bottom: none;
  font-family: Montserrat;
  z-index: 301;
  max-height: 0px;
  transition: all 350ms;
  overflow: hidden;
}
header .top .personal .language-selector.active .languages {
  max-height: 380px;
}
header .top .personal .language-selector .languages a {
  cursor: pointer;
  padding: 16px 12px;
  border-bottom: 1px solid #e3e8ed;
}
header .top .personal .language-selector .languages a:first-child {
  border-top: 1px solid #e3e8ed;
}
header .top .personal .language-selector .languages a:hover, header .top .personal .language-selector .languages a:active {
  background: #529BEF;
  color: white;
}
header .top .personal a.account {
  cursor: pointer;
}
header .top .personal a.account svg {
  fill: #383838;
  transition: all 350ms;
}
header .top .personal a.account:hover svg {
  fill: #529BEF;
}

header .mobile-menu {
  display: none;
}
header .burger {
  display: none;
  cursor: pointer;
  transition: all;
  transition-duration: 300ms;
}
header .search-button-container, header .mobile-search {
  display: none;
}

header .bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .bottom .menu {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}
header .bottom .menu .item {
  height: auto;
  display: flex;
  flex-direction: column;
  transition: all 350ms;
  position: relative;
}
header .bottom .menu .item a {
  cursor: pointer;
  transition: all 350ms;
}
header .bottom .menu .item .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
header .bottom .menu .item a.title {
  border: none !important;
  padding: 0;
}
header .bottom .menu .item a.title:hover {
  background: white !important;
}
header .bottom .menu .item .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #529BEF;
  transition: all 350ms;
}
header .bottom .menu .item .title:hover::after {
  width: 100%;
}
header .bottom .menu .item .title svg {
  margin-left: 8px;
  transition: all 350ms;
}
header .bottom .menu .item .elements {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #38383880;
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  z-index: 300;
  max-height: 0;
  overflow: hidden;
  transition: all 350ms;
  border-left: 1px solid #38383880;
  border-right: 1px solid #38383880;
  min-width: 320px;
}
header .bottom .menu .item a {
  padding: 16px;
  background: white;
  border-bottom: 1px solid #383838;
}
header .bottom .menu .item a:first-child {
  border-top: 1px solid #38383880;
}
header .bottom .menu .item a:hover, header .bottom .menu .item a:active {
  background: #529BEF;
}
header .bottom .menu .item:hover .elements {
  max-height: 450px;
}
header .bottom .menu .item:hover .title svg {
  transform: rotate(180deg);
}

footer {
  display: flex;
  flex-direction: column;
  background: #F5F8FF;
  padding: 60px 0 20px;
}
footer .button {
  width: 276px;
  min-width: 276px;
}
footer .button.alt {
  background: #F5F8FF;
}
footer .links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 67px;
  row-gap: 40px;
}
footer .links .section {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: #383838;
}
footer .links .section h5 {
  font-weight: 600;
}
footer .links .section a {
  opacity: .5;
  font-weight: 400;
}
footer .links .section a:hover {
  opacity: 1;
}
footer .links .section a.first {
  margin-top: 8px;
}
footer .contacts {
  border-top: #38383833 solid 1px;
  border-bottom: #38383833 solid 1px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
}
footer .contacts .general {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .contacts .general .logo {
  height: 88px;
  width: 276px;
  overflow: hidden;
}
footer .contacts .general .searchbar {
  margin: 0 32px;
  height: 52px;
  flex: 1;
  position: relative;
  box-sizing: border-box;
}
footer .contacts .general .searchbar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
}
footer .contacts .general .searchbar input {
  width: 100%;
  height: 52px;
  border: #38383880 solid 1px;
  outline: none;
  background: #F5F8FF;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  padding: 0 16px 0 52px;
  box-sizing: border-box;
}
footer .contacts .contacts-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .contacts .contacts-grid .grid {
  display: flex;
  flex-direction: row;
  margin-right: 32px;
}
footer .contacts .contacts-grid .grid .element {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  font-size: 16px;
  line-height: 19.5px;
  text-align: left;
}
footer .contacts .contacts-grid .grid .element:not(:first-child) {
  margin-left: 93px;
}
footer .contacts .contacts-grid .grid .element .address {
  font-weight: 600;
  color: #383838;
}
footer .contacts .contacts-grid .grid .element .time {
  font-weight: 400;
  color: #38383880;
}
footer .contacts .contacts-grid .grid .element a {
  color: #529BEF;
  font-weight: 500;
  white-space: nowrap;
}
footer .contacts .contacts-grid .grid .element a.email {
  font-weight: 600;
}
footer .contacts .contacts-grid .grid .element .social {
  display: flex;
  flex-direction: row;
}
footer .contacts .contacts-grid .grid .element .social svg {
  margin-right: 20px;
}
footer .credentials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .credentials .content {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
}
footer .credentials .content .copyright {
  color: #38383880;
}
footer .credentials .content a {
  color: #529BEF;
}
footer .credentials .logos {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
footer .credentials .logos a:not(:first-child) {
  margin-left: 20px;
  margin-right: 0;
}
footer .credentials .logos .minzdrav {
  height: 48px;
  width: 49px;
  min-height: 48px;
  min-width: 49px;
}
footer .credentials .logos .cniioiz {
  height: 48px;
  width: 59px;
  min-height: 48px;
  min-width: 59px;
}
footer .credentials .logos .roszdravnadzor {
  height: 48px;
  width: 44px;
  min-height: 48px;
  min-width: 44px;
}
footer .credentials .logos .project {
  height: 48px;
  width: 65px;
  min-height: 48px;
  min-width: 65px;
}

.search-autocomplete {
  position: absolute;
  margin-top: 16px;
  width: 100%;
  background: white;
  z-index: 20;
  display: flex;
  flex-direction: column;
  max-height: 0px;
  transition: all 350ms;
  overflow: hidden;
}
.active .search-autocomplete {
  max-height: 350px;
  border: #529BEF solid 1px;
  //overflow-y: auto;
}
.search-autocomplete .total-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 8px 16px 0;
  font-size: 14px;
  font-weight: 500;
}
.search-autocomplete .results {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin: 16px;
}
.search-autocomplete .results a {
  font-size: 13px;
  font-weight: 400;
  transition: all 350ms;
}
.search-autocomplete .results a:hover {
  color: #529BEF;
}
.search-autocomplete .show-all {
  white-space: nowrap;
  margin: 0 auto 16px;
  font-size: 15px;
  font-weight: 500;
  color: #529BEF;
  cursor: pointer;
  transition: all 350ms;
}
.search-autocomplete .show-all:hover {
  color: #1c77e3;
}

@media screen and (max-width: 1280px) {
  header .top .personal .links {
    display: none;
  }
  header .bottom .menu {
    column-gap: 24px;
  }
  footer article, header {
    margin: 0px 24px;
    width: auto;
  }
}
@media screen and (max-width: 1150px) {
  header .bottom .menu {
    column-gap: 16px;
  }
  header .bottom .menu .item .title {
    font-size: 13px;
  }
  footer .contacts .contacts-grid .grid .element:not(:first-child) {
    margin-left: 55px;
  }
}
@media screen and (max-width: 1100px) {
  footer .contacts .general .searchbar {
    display: none;
  }
  footer .contacts .contacts-grid .grid .element:not(:first-child) {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .button {
    height: 64px;
    max-height: 64px;
  }

  header .top {
    padding: 16px 0;
  }
  header .bottom {
    padding: 0;
  }
  header .top .searchbar, header .top .personal a.account, header .bottom .menu, header .bottom .button.desktop {
    display: none;
  }
  header .top .personal .search-button-container {
    display: flex;
  }
  header .top .personal .search-button {
    margin-right: 24px;
    background: white;
    cursor: pointer;
    border: none;
    outline: none;
  }
  header .top .personal .search-button svg {
    fill: #383838;
    transition: all;
  }
  header .top .personal .mobile-search {
    position: fixed;
    display: flex;
    align-items: center;
    top: -100px;
    left: 0;
    background: white;
    z-index: 302;
    width: 100vw;
    height: 79px;
    padding: 16px;
    box-sizing: border-box;
    transition: all 350ms;
  }
  header .top .personal .active .mobile-search {
    top: 0;
  }
  header .top .personal .mobile-search input {
    width: 100%;
    height: 47px;
    border: #38383880 solid 1px;
    outline: none;
    background: #F5F8FF;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    padding: 0 16px;
    box-sizing: border-box;
  }
  header .top .personal .mobile-search button {
    border: none;
    outline: none;
    background: white;
    margin-left: 16px;
  }
  header .mobile-menu {
    display: flex;
    flex-direction: column;
    background: white;
    height: 0;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 79px;
    z-index: 300;
    transition: all 350ms;
    box-sizing: border-box;
  }
  header .mobile-menu .content {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    //background: palegoldenrod;
    row-gap: 40px;
  }
  header .mobile-menu .content .navigation-items {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin: 40px 20px 0;
  }
  header .mobile-menu .content .navigation-items .item {
    max-height: 40px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 350ms;
  }
  header .mobile-menu .content .navigation-items .item a {
    transition: all 350ms;
  }
  header .mobile-menu .content .navigation-items .item .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    text-align: left;
    text-transform: uppercase;
  }
  header .mobile-menu .content .navigation-items .item .title svg {
    margin-left: 8px;
    transition: all 350ms;
  }
  header .mobile-menu .content .navigation-items .item .elements {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    margin-top: 20px;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #38383880;
  }
  header .mobile-menu .content .navigation-items .item a:hover, header .mobile-menu .content .navigation-items .item a:active {
    color: #529BEF;
  }
  header .mobile-menu .content .navigation-items .item.active {
    max-height: 350px;
  }
  header .mobile-menu .content .navigation-items .item.active .title svg {
    transform: rotate(180deg);
  }
  header .mobile-menu .content .actions {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  header .mobile-menu .content .contacts {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
  }
  header .mobile-menu .content .contacts .address {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    text-align: left;
    color: #383838;
  }
  header .mobile-menu .content .contacts .working-hours {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    color: #38383880;
    text-transform: uppercase;
    margin-top: 20px;
  }
  header .mobile-menu .content .contacts .phones {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 30px;
  }
  header .mobile-menu .content .contacts .phones a {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    text-align: left;
    cursor: pointer;
    color: #529BEF;
  }
  header .mobile-menu .content .contacts a[title="Email"] {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.5px;
    text-align: left;
    color: #529BEF;
    cursor: pointer;
  }
  header .mobile-menu .content .contacts .social {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
  }
  header .mobile-menu .content .contacts .social svg {
    margin-right: 20px;
  }
  header .burger {
    display: unset;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  header .burger span {
    position: relative;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 26px;
    border-radius: 2px;
    background: #383838;
    height: 2px;
  }
  header.active .burger span:first-child {
    -webkit-transform: translateY(8px) rotate(-45deg);
    -ms-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  header.active .burger span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  header.active .burger span:last-child {
    -webkit-transform: translateY(-8px) rotate(45deg);
    -ms-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  header.active .mobile-menu {
    height: calc(100vh - 79px);
    max-height: calc(100vh - 79px);
  }


  footer {
    padding: 40px 0;
  }
  footer .links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .links .section {
    row-gap: 14px;
  }
  footer .links .section a.first {
    margin-top: 6px;
  }
  footer .contacts .contacts-grid .grid {
    flex-direction: column;
    row-gap: 20px;
  }
  footer .contacts .contacts-grid .grid .element:not(:first-child) {
    margin-left: 0;
  }
  footer .contacts .contacts-grid button {
    display: none;
  }
}
@media screen and (max-width: 900px) {

}
@media screen and (max-width: 800px) {
  .dialog.active {
    top: 100%;
    transform: translate(-50%, -100%);
  }
  .dialog .content {
    padding: 36px 24px;
  }
  .dialog .content .container form {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 30px;
    margin-top: 30px;
  }
  .dialog .content .container h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 29.26px;
    text-align: center;
  }
  .dialog .content .container .form-field label {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
  }
  .dialog .content .container .form-field.long {
    grid-column: span 1 / span 1;
  }
  .dialog .content .container .form-field.row {
    align-items: flex-start;
  }
  .dialog .content .container .button {
    width: 100%;
    margin-top: 30px;
  }

  .notification {
    padding: 16px;
  }

  header .top .logo, header .top .logo svg {
    height: 47px;
    width: 150px;
  }

  footer article, header {
    margin: 0px 20px;
  }
  footer .links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .button, footer .button {
    width: 100%;
  }

  footer .contacts .general {
    flex-direction: column;
    row-gap: 40px;
  }
  footer .contacts .general .logo {
    width: 100%;
    height: auto;
  }
  footer .credentials {
    flex-direction: column;
    row-gap: 40px;
  }
  footer .credentials .logos {
    justify-content: flex-start;
  }
  footer .credentials .logos a:not(:first-child) {
    margin-left: 0;
  }
  footer .credentials .logos a:not(:last-child) {
    margin-right: 20px;
  }
}

div#gt_float_wrapper {
  opacity: 0 !important;
  left: -100vw !important;
}