/*============= ALIGNES ===============*/
:root {
  --light: #fbfbfc;
  --dark: #f4f4f7;
  --card: #ffffff;
  --black: #000000;
  --stroke: #ecedf2;
  --primary: #d3b43b;
  --hover: #e14a0e;
  --head: #0f1a29;
  --text: #6f767f;
  --disable: #b7babf;
  --secondary: #1d9d41;
}





.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    margin-left: calc(-1 * (1920px - 1170px) / 2) !important;
    margin-right: calc(-1 * (1920px - 1170px) / 2) !important;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'TildaSans', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

.slider-next svg path,
.slider-prev svg path {
  stroke: var(--primary);
}

body {
  background-color: #FFFDF8;
  /* max-width: 1920px; */
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  text-decoration: none;
  color: var(--head);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--hover);
}

ul li {
  list-style-position: inside;
  color: var(--head);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: var(--head);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: var(--head);
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #20395E;
  margin-bottom: 50px;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #DFDFDF;
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: var(--head);
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 225px; */
  width: fit-content;
  height: 50px;
  padding: 15px 30px;
  background: var(--primary);
  border: 1px solid var(--primary);
  outline: none;
  color: var(--card);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}

.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

.btn:hover {
  color: #fff;
  background-color: var(--hover);
  /* letter-spacing: 1px; */
}

.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}

.btn:focus {
  letter-spacing: normal;
}

.btn.invert {
  background-color: var(--hover);
  color: #fff;
}

#main,
#primary {
  min-height: 83vh;
}

.title {
  font-size: 60px;
  color: var(--head);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}

.desc {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

input.error {
  border: 1px solid red !important;
  transition: .6s;
}

/*============ HEADER =================*/
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--card);
}

#header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

#header .header-wrap .logo-holder {
  width: 230px;
  height: fit-content;
}

#header .header-wrap .logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .header-wrap .menuTop {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

#header .header-wrap .menuTop .nav-menu-element {
  margin: 0;
}

#header .header-wrap .menuTop .nav-menu-element a {
  font-size: 16px;
  color: var(--head);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: .6s;
}

#header .header-wrap .menuTop .nav-menu-element a:hover {
  color: var(--disable);
  transition: .6s;
}

#header .header-wrap .right-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

#header .header-wrap .right-header .contact-holder {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#header .header-wrap .right-header .contact-holder .phones__holder .phone__item {
  white-space: nowrap;
  font-size: 24px;
  color: var(--head);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  transition: .6s;
}

#header .header-wrap .right-header .contact-holder .phones__holder .phone__item:hover {
  color: var(--hover);
  transition: .6s;
}

#header .header-wrap .right-header .contact-holder .email__holder .email__item {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-decoration-line: underline;
  transition: .6s;
}

#header .header-wrap .right-header .contact-holder .email__holder .email__item:hover {
  color: var(--hover);
  transition: .6s;
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: var(--primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--primary);
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: -10px;
  cursor: pointer;
  display: block;
  color: var(--primary);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu a:hover {
  color: var(--primary);
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header #mobile-mnu .menuTop li {
  margin: 0px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--primary);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--primary);
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A899A;
  transition: background-color .3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--head);
  padding: 40px 0 20px;
}

#footer .logo-holder{
	width: 250px;
}

#footer .logo-holder img{
	width: 100%;
	height: 100%;
}


#footer .footer-wrap .up-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-direction: column;
}

#footer .footer-wrap .center-footer .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

#footer .footer-wrap .center-footer .left-side .name-site {
  font-size: 32px;
  color: var(--card);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

#footer .footer-wrap .center-footer .left-side .desc-site {
  font-size: 14px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

#footer .footer-wrap .up-footer .right-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

#footer .footer-wrap .up-footer .right-side .soc__holder {
  display: flex;
  align-items: center;
  gap: 10px;
}

#footer .footer-wrap .up-footer .right-side .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-wrap .up-footer .right-side .soc__holder .soc__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#footer .footer-wrap .center-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* padding: 30px 0 20px; */
/*   border-bottom: 1px solid var(--text); */
  gap: 30px;
}

#footer .footer-wrap .up-footer .contacts-holder .name-holder {
  font-size: 16px;
  color: var(--card);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

#footer .footer-wrap .up-footer .contacts-holder .contacts-in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#footer .footer-wrap .up-footer .contacts-holder .contacts-in .phones__holder .phone__item,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .email__holder .email__item,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .link__holder .link__item,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .adresses__holder .adres-name,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .adresses__holder p {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: .6s;
}

#footer .footer-wrap .up-footer .contacts-holder .contacts-in .phones__holder .phone__item:hover,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .email__holder .email__item:hover,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .link__holder .link__item:hover {
  color: var(--card);
  transition: .6s;
}

#footer .footer-wrap .up-footer .contacts-holder .contacts-in .phones__holder,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .email__holder,
#footer .footer-wrap .up-footer .contacts-holder .contacts-in .link__holder {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

#footer .footer-wrap .center-footer .information-holder .information-name {
  font-size: 16px;
  color: var(--card);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

#footer .footer-wrap .center-footer .information-holder .information-in {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

#footer .footer-wrap .center-footer .information-holder .information-in .time__holder,
#footer .footer-wrap .center-footer .information-holder .information-in .req__holder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

#footer .footer-wrap .center-footer .information-holder .information-in .time__holder .text-time,
#footer .footer-wrap .center-footer .information-holder .information-in .req__holder .req-text p {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin: 0;
}

#footer .footer-wrap .center-footer .name-menu {
  font-size: 16px;
  color: var(--card);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}


#footer .footer-wrap .center-footer .footerMenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

#footer .footer-wrap .center-footer .footerMenu .nav-menu-element {
  margin: 0;
}

#footer .footer-wrap .center-footer .footerMenu .nav-menu-element a {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: .6s;
}

/* #footer .footer-wrap .center-footer .menu-menu,
#footer .footer-wrap .center-footer .menu-cats {
  width: 270px;
} */

#footer .footer-wrap .center-footer .footerMenu .nav-menu-element a:hover {
  color: var(--card);
  transition: .6s;
}

#footer .footer-wrap .footer-bottom .bottom-wrap {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

#footer .footer-wrap .footer-bottom .bottom-wrap .privacy_link,
#footer .footer-wrap .footer-bottom .bottom-wrap .dev {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: .6s;
  cursor: pointer;
}

#footer .footer-wrap .footer-bottom .bottom-wrap .copy-write {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: .6s;
}

#footer .footer-wrap .footer-bottom .bottom-wrap .privacy_link:hover,
#footer .footer-wrap .footer-bottom .bottom-wrap .dev:hover {
  color: var(--card);
}

#footer .footer-wrap .footer-bottom .warn {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-top: 20px;
  text-align: center;
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  height: fit-content;
  width: 570px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 99999;
  padding: 40px;
}

#modal-privacy.theme-modal {
  width: 100%;
  overflow-y: auto;
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: #374957;
  cursor: pointer;
}

.theme-modal .form__holder .form .name-form {
  font-size: 32px;
  color: var(--head);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.theme-modal .name-modal {
  font-size: 30px;
  color: var(--head);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

#modal-court {
  overflow-y: auto;
}

#modal-court .form__holder .form .name-form {
  margin-bottom: 20px;
}

#modal-court .form__holder .form .form-list ul {
  list-style: disc;
}

#modal-court .form__holder .form .form-subName {
  font-size: 20px;
  color: var(--head);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 30px 0 20px;
}

.theme-modal .form__holder .form .desc-form {
  font-size: 16px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin: 10px 0 30px;
}

.theme-modal .form__holder .form .inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.theme-modal .form__holder .form .inputs input,
.theme-modal .form__holder .form .inputs textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: var(--disable);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border: none;
  border-bottom: 1px solid var(--stroke);
  resize: none;
}

.theme-modal .form__holder .form .inputs input:focus,
.theme-modal .form__holder .form .inputs textarea:focus {
  outline: none;
}

.theme-modal .form__holder .form .inputs input::placeholder,
.theme-modal .form__holder .form .inputs textarea::placeholder {
  font-size: 16px;
  color: var(--disable);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.theme-modal .form__holder .form .form-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-modal .form__holder .form .form-bottom .privacy-agree {
  font-size: 12px;
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.theme-modal .form__holder .form .form-bottom .privacy-agree a {
  cursor: pointer;
  color: var(--primary);
}

.theme-modal .form__holder .form .form-bottom .privacy-agree a:hover {
  opacity: .6;
}

.theme-modal .form__holder .form .form-list li {
  margin: 0;
}

.theme-modal .form__holder .form .form-list li::marker {
  color: var(--primary);
  font-size: 30px;
}

/* ============= PAGE 404 =========== */
.error-404 {
  position: relative;
}

.error-404 .error-wrap {
  padding-top: 40px;
}

.error-404 .error-wrap .desc-top {
  font-size: 20px;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}


.error-404 .error-wrap .title {
  color: var(--card);
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  width: 65%;
}

.error-404 .error-wrap .desc-bot {
  font-size: 20px;
  color: var(--disable);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  width: 45%;
  margin: 30px 0 40px;
}

.error-404 .error-wrap .contacts-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 80px;
}

.error-404 .error-wrap .contacts-holder .phones__holder .phone__item {
  font-size: 20px;
  color: var(--card);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.error-404 .error-wrap .contacts-holder .phones__holder .phone__item:hover {
  color: var(--primary);
}

.error-404 .error-wrap .main-advantages {
  width: fit-content;
  /* padding-bottom: 60px; */
}

.error-404 .error-wrap .main-advantages .advantages-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 30px 0;
  border-radius: var(--border-radius, 0px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(15, 26, 41, 0.50);
  backdrop-filter: blur(30px);
}

.error-404 .error-wrap .main-advantages .advantages-wrap .advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 0 30px;
  border-right: 1px solid var(--text);
}

.error-404 .error-wrap .main-advantages .advantages-wrap .advantage-item:last-child {
  border: none;
}

.error-404 .error-wrap .main-advantages .advantages-wrap .advantage-item .number-item {
  font-size: 40px;
  color: var(--card);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.error-404 .error-wrap .main-advantages .advantages-wrap .advantage-item .desc-item {
  font-size: 16px;
  color: var(--disable);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.error-404 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 83vh;
  z-index: -1;
}

.error-404 .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ============= MEDIA QUERIES =========== */
@media (max-width: 1200px) {
  #header .header-wrap .menuTop {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }

  .error-404 .error-wrap .title {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 30px;
  }

  .error-404 .error-wrap {
    padding-top: 80px;
  }

  .error-404 .error-wrap .title {
    font-size: 35px;
    width: 100%;
  }

  .error-404 .error-wrap .desc-bot {
    width: 100%;
  }

  .error-404 .error-wrap .contacts-holder {
    margin-bottom: 40px;
  }

  .error-404 .error-wrap .main-advantages {
    padding-bottom: 40px;
  }

  .error-404 .background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: .3;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  #footer .footer-wrap .up-footer {
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer .footer-wrap .center-footer {
    flex-wrap: wrap;
    gap: 20px;
  }

  #footer .footer-wrap .center-footer .contacts-holder .name-holder,
  #footer .footer-wrap .center-footer .information-holder .information-name,
  #footer .footer-wrap .center-footer .name-menu {
    margin-bottom: 10px;
  }

  #footer .footer-wrap .footer-bottom .bottom-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #footer .footer-wrap .footer-bottom .warn {
    margin-top: 10px;
  }

  .theme-modal .form__holder .form .name-form {
    font-size: 25px;
  }

  #modal-court .form__holder .form .name-form {
    width: 90%;
  }

  .theme-modal {
    padding: 40px 20px;
  }
}

@media (max-width: 762px) {
  #header .header-wrap .right-header .btn {
    display: none;
  }

  #modal-privacy.theme-modal {
    padding: 20px;
  }

  .theme-modal .name-modal {
    font-size: 25px;
    width: 90%;
  }

  .error-404 .error-wrap .main-advantages .advantages-wrap {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    align-items: center;
    justify-content: center;
  }

  .error-404 .error-wrap .main-advantages .advantages-wrap .advantage-item {
    border: 0;
    padding: 0;
  }
}

@media (max-width: 540px) {
  #header .header-wrap .right-header .contact-holder .phones__holder {
    display: none;
  }

  #header .header-wrap .right-header .contact-holder .email__holder {
    display: none;
  }

  #footer .footer-wrap .up-footer .right-side {
    flex-wrap: wrap;
  }

  .theme-modal .form__holder .form .form-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .theme-modal .form__holder .form .form-bottom .privacy-agree {
    text-align: center;
  }
}

.soc__holder_fix{
      position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
}

.soc__holder_fix svg{
  width: 100%;
  height: 100%;
}

#footer .soc__holder{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer_flex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
	border-bottom: 1px solid var(--text);
	gap: 50px;
}
@media (max-width:530px) {
  .footer_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid var(--text);
    gap: 0px;
}
}

/*# sourceMappingURL=main.css.map */